@charset "UTF-8";

/* 基本設定:　ページ全体　*/
body {
    margin: 0;
    width: 100%;
    height: auto;
    font-family: 'メイリオ',
    'Hiragino kaku Gothic Pro',
        sans-serif;
}

.wrap{
    width: 100%;
    height: auto;
}

/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/

#splash {
    /*fixedで全面に固定*/
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	background:#333;
	text-align:center;
	color:#fff;
}

/* Loadingバー中央配置　*/
#splash_text {
	position: absolute;
	top: 50%;
	left: 50%;
    z-index: 999;
	width: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
}

/*IE11対策用バーの線の高さ※*/
#splash_text svg{
    height: 2px;
}

/*========= ページトップへリンクボタンCSS ===============*/

/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background-color: rgba(122, 122, 122, 0.8);
	border-radius: 5px;
	width: 50px;
	height: 50px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:1.5rem;
	transition:all 0.3s;
}

#page-top a:hover{
	background: #777;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(200px);
}


/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}



/*============  PC大きい画面の設定  ===================*/

@media(min-width: 768px){

  /*ヘッダー*/
    
header {
    height: 75px;
    position: absolute;
    top: 0;
    left: 0;
    z-index:100;
    width: 100%;
    background-color: rgba(255,255,255,0.8);
    
}
    
 /*ヘッダーを画面上部に固定*/
    
.head-fixed{
    position: fixed;
} 


.head-container{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    max-width: 1000px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    
}
    
  
    
    header .head-container-small{
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
        
    }
    
   
   
   
 .head-tell{
        display: none;
    }
    
      
      .headC{
        display: none;
    }

    
  
 /*ヘッダーA: サイト名*/

.headA img{
    	width: 200px;
        margin-bottom: -10px;
    }


/*ヘッダーB: ナビケーションメニュー*/
.headB ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.headB a{
   margin-top: 10px;
    display: block !important;
    padding: 16px;
    color:  #382f2f;
    font-size: 18px;
    text-decoration: none;
}

.headB a:hover{
    background-color: rgba(83, 99, 87, 0.8);
    background-color: #a3a3a3;
    color: #fff;  
    
}
    
    
    /* #conA{
    display:flex;
    align-items: center;
    justify-content: center;

  background-image: linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.1)),url(../video/test.mp4);
    background-position: center;
    background-size: cover;
    color: #fff;
    text-align: center; 
        
}

   
    
 /*アニメーション設定----*/

/*@keyframes changeTiming{
    0%{
        background-image: url(../img/img03_01.jpg);

    }
  
50%{
        background-image: url(../img/img01_01.jpg);

    }
 
    
    100%{
        background-image: url(../img/img03_01.jpg);
    }
}

#conA{
    animation-name: changeTiming;
    animation-duration: 12s;
    animation-delay: 5s;
    animation-iteration-count :infinite;
    /*animation-fill-mode: forwards;
} */

/*アニメーション設定ここまで―――*/ 
    
   
   #conA h1{
        margin-top: 115px;
        font-size: 45px;
        font-family: 'メイリオ',
        'Hiragino kaku Gothic Pro',
         serif;
         color: #777;
    }
    
    #conA p{
        font-size: 18px;
    }    
  
    
    .video-wrap {
        position: relative;
    }

    .video-wrap h1{ 
        font-family: serif;          
        color: #fff;
        font-size: 200%;
        position: absolute;
        left: 12%;
        top: 40%;
        z-index: 1;
    }
    .video-wrap p {
        font-family: serif;          
        color: #fff;
        font-size: 120%;
        position: absolute;
        left: 10%;
        top: 55%;
        z-index: 1;
      }
      video{
        width: 100%;
        height: auto;

      }
    

      .video-wrap02{
        display: none;
        height: 0;
      }

   #sinryou {
        height:110px;
        max-width: 1000px;
        width:auto;
        margin: 50px auto;
        padding-top: 10px;
       padding-bottom: 10px;
       text-align: left;
        border-top: 1px solid #9c9c9c ;
        border-bottom: 1px solid #9c9c9c;
}
    
    #sinryou h2{
        font-size: 30px;
        color: #7a7a7a;
        margin-left: 10%;
        margin-bottom: 5px;
        
    }
    
    #sinryou p{
        font-size: 18px;
        margin-top: 5px;
        color: #474a48;
        margin-left: 10%;
    }

    
    .syoujyou{
        max-width: 950px;
        width:auto;
        margin: 20px auto;
        
    }  
    
    

.syoujyou h2{
    margin-left: 8%;
    padding-left: 5px;
    font-size: 26px;
    color: #7a7a7a;
    border-left: 10px solid #a3a3a3;
    }    
    

    
.greet01 {
    display: flex;
    max-width: 1000px;
    width: 850px;
    height: 280px;
    margin: 10px auto;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: left;
    /*border-bottom:1px solid #9c9c9c;*/
}


    
.photo01 img{
    height: 242px;
    width: auto;
    margin-left: 10px;
    } 
    
 .text01{
     width: 610px;
     height: 200px;
     padding: 20px;
     border: 1px solid #9c9c9c;
    }  
    
 .text01 p{
    font-size: 16px;
    margin-left: 10px;
    margin-bottom: 10px;
    color: #474a48;
    
} 

.news {
    width: 850px;
    height: 250px;
    margin: 40px auto;
    padding: 40px;
    padding-top: 5px;
    background:#fff;
    border-bottom:  1px solid #9c9c9c;
}

.news h2{
    padding-left: 40px;
    margin-top: 20px;
    font-size: 26px;
    color: #7a7a7a;
    border-bottom: 1px solid #9c9c9c;  
    
}

.news p{
    font-size: 16px;
    margin-left: 30px;
    color: #474a48;
    line-height: 1.8;
}
    
   
    
    #jikan_h h2{
        margin-left: 20%;
        font-size: 26px;
        color: #7a7a7a;
    }
    
    .jikan{
        width: auto;
        background-color:#bfbfbf;
    }
    
    .jikan table{
        width:600px;
        height: 220px;
        margin: 0 auto;
        border-collapse: collapse;
        color: #fff;
        border: 1px solid #fff;
        font-size: 22px;
        background-color:#bfbfbf;
        
        
        
    }
    
    .jikan th,
    .jikan td{
        padding: 10px;
        border: 1px solid #fff;
        background-color: #bfbfbf;
    }
    
    .yoyaku{
        height: auto;
    }
    
    .yoyaku p{
     font-size: 20px;
     color:  #666769;
     margin-left: 30%;
}
    
    
  .yoyaku h2{
     font-size: 24px;
     color:  #666769;
     margin-left: 30%;
}
    
    .contact-wrap{
        max-width: 1000px;
        width:auto;
        margin: 0 auto;
        text-align: center;
    }
   
    .contact{
        width: 850px;
        height: 270px;
        margin: 50px auto;
        background-image: url(../img/img04_01.jpg);
        background-repeat:no-repeat;
        background-size: 560px;
        border-top: 1px solid #9c9c9c;
        border-bottom: 1px solid #9c9c9c;
        text-align:center;
    }
    
    .contact img{
        width:80px;
        margin-left: 300px;
        margin-top: 30px;
        }
    
    .contact h2{
        font-size: 30px;
        color:  #666769;
        margin-left: 300px;
    }
            
.contact a{
    margin-top: 10px;
    font-size: 30px;
    color: #666769;
    margin-left: 300px;
}
    
    
    address {
        
        margin: 0 auto;
    }
    
    #jyusyo_01 h1{
    font-size: 26px;
    color: #7a7a7a;
    margin-left: 20%;
    margin-bottom: 0px;
    margin-top: 50px;
    
    
}
    
.jyusyo{
    width:  800px;
    margin:10px auto;
    margin-bottom: 50px;
    padding: 10px;
    text-align: center;
    border-top: 1px solid #9c9c9c;
    border-bottom: 1px solid #9c9c9c;
}

.jyusyo p{
    font-size: 18px;
    font-style: normal;
    color: #666769;
    line-height: 1.5;
    text-align: left;
    margin-left: 200px;
}
    
.jyusyo iframe{
    width: 800px;
    height: 450px;    
}   
    
 .conB .container{
        display: flex;
        margin: 0 auto;
        max-width:  1000px;
        /*max-width:  var(--large-width);*/
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
        background: #fff;
        text-align: center;
    }
    
    .conB .photo {
        margin-left: 50px;
        width: 280px;
        height: 280px;
    }
    
    .conB .text{
        height: 170px;
        width: 600px;
        margin-top: 20px;
        border:1px solid #b9b6b6;
        color: #3e3e3f;
    }
    
    .conB h2{
        margin-top: 40px;
   
    }
    .conB p{
         color: #3e3e3f;
    }
    
	.conB img{
		width:  220px;
        height: 220px;
 	   margin-top: 20px;
    }
    
#introduction{
    height: 250px;
    width: 100%;
    background:#bfbfbf;
    text-align: center;
    padding-top: 30px;
}

#introduction h2{
     margin-top:80px;
    font-size: 38px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

  .aisatu {
        height:80px;
        width: 900px;
        margin: 20px auto;
        padding-top: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid #9c9c9c;
        border-top: 1px solid #9c9c9c;
        text-align: left;
    
}
   
    
.aisatu h2{
    margin-left: 0;
    padding-left: 7px;
    font-size: 26px;
    color: #7a7a7a;
    border-left: 10px solid #a3a3a3;
    }        
    
.greet02 {
    display: flex;
    width: 900px;
    height: auto;
    margin: 0 auto;
    padding: 30px;
/*    background: #9c9c9c;*/
   
}
    
.photo{
    width: 300px;
    height: auto;
    
}    
    
.photo img{
    width: 280px;
    height: 280px;
    
    } 
    
.text03 {
    width: 600px;
    height: auto;
    }
    
 .text03 p{
    font-size: 16px;
    margin-left: 10px;
    color: #474a48;
    line-height: 1.7;
    text-align: left;  
   
}    

.box {
    width: 900px;
    display: flex;
   margin: 50px auto;
    
}    

    
    
.keireki {
    width: 450px;
    padding: 10px;
    border: 1px solid #9c9c9c;
    }
    
    .keireki h3{
        color: #7a7a7a;
    }
    
.sikaku {
     width: 450px;
    padding: 10px;
    border: 1px solid #9c9c9c;
    }  
    
    .sikaku h2{
        color: #7a7a7a;
    }
    

/*フッター*/
    
footer{
        height: 300px;
        padding-top: 50px;
        color: #fff;
        background: #bfbfbf;
        text-align: center;
    }
    
    
    
     
    .footername h2{
        font-size: 24px;
        color: #fff;
        font-family: 'Montserrat', sans-serif;
    }

    .copyright small {
        font-size: 18px;
        color: #fff;
        font-family: 'Montserrat', sans-serif;
    }
    
}




/*======== モバイル画面の設定 ========*/

@media(max-width:767px){

/*ヘッダー*/
header {
    height: 82px;
    position: absolute;
    top: 0;
    left: 0;
    z-index:100;
    width: 100%;
    background-color: rgba(255,255,255,0.9);
    
}


/*ヘッダーを画面上部に固定*/
    .head-fixed{
        position: fixed;
        width: 100%;
}

/*ヘッダーA: サイト名*/

 
.headA img{
    width: 180px;
    margin-top: 15px;
    margin-left: 10px;
    margin-bottom: -10px;

}

	
/*.head-tell {
    display:inline;
    padding: 0px;
   
}
.head-tell a{
    color: #a3a3a3;
    font-size: 16px;
}

.head-tell img{
    width:28px;
    margin-bottom: 0px;
}*/

/*ヘッダーheadB: ナビケーションメニュー*/
.headB ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.headB a{
    display: block;
    padding: 18px;
    color: #fff;
     font-family: 'Montserrat', sans-serif;
     background:rgba(0,0,0,0.5);
    font-size: 19px;
    text-decoration: none;
}

.headB a:hover{
    color: #fff;
    background:rgba(0,0,0,0.5);

}

　

   .head-container{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
   }

  .container-small{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    
}



/*ハンバーガーメニュー*/

    .headC{
        margin-top: 5px;
        margin-bottom: 2px;
        margin-right: 10px;
        padding:0;
        border:none;
        outline: none;
        background: none;
        font-size: 32px;
        color: #65646E;
        opacity: 0.5;
       cursor: pointer;
    }
    
    .headC:hover{
        opacity: 0.3;
       
    }
    
    .headC p{
        font-size: 15px;
        margin-top: 2px;
        margin-bottom: 2px;
    }
    
    .headB{
        display: none;
    }



/*コンテンツA:ヒーローイメージ*/

/*#conA{
    display:flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
    min-height: 300px;
    background-image: linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.1)),url(../img/img03.jpg);
    background-position: center;
    background-size: cover;
    color: #fff;
    text-align: center;
        
}


/*アニメーション設定----*/

/*@keyframes changeTiming{
    0%{
        background-image: url(../img/img03.jpg);

    }
    

    50%{
        background-image: url(../img/img01.jpg);
    

    }

    100%{
        background-image: url(../img/img03.jpg);
    }
}

#conA{
    animation-name: changeTiming;
    animation-duration: 14s;
    animation-delay: 6s;
    animation-iteration-count :infinite;
    animation-fill-mode: forwards;
}

/*アニメーション設定ここまで―――*/


/*#conA h1{
    margin-top: 90px;
    font-family: 'メイリオ',
        'Hiragino kaku Gothic Pro',
        sans-serif;
    font-size: 9vw;
    letter-spacing: 0.1em;
    margin-left: 0.2em;
    line-height: 1.3;
}

#conA p{
    margin: 30px 10px;
    margin-top: 50px;
    font-size: 17px;
    line-height: 1.5;
}*/

.video-wrap{
    display: none;
    height: 0;
}

.video-wrap02 {
        position: relative;
        margin-top:  100px;
    }

    .video-wrap02 h1{ font-family: sans-serif;          
        color: #fff;
        font-size: 26px;
        position: absolute;
        left: 20%;
        top: 220px;
        z-index: 1;
    }
    .video-wrap02 p {
        font-family: sans-serif;          
        color: #fff;
        font-size: 18px;
        position: absolute;
        left:20%;
        right: 5%;
        top: 320px;
        z-index: 1;
      }
      video{
        width: 100%;
        height: auto;
      }
    


/*コンテンツgreet:概要*/

#sinryou {
    margin: 0 auto;
    margin-top: 30px;
    height:120px;
    border-top:  1px solid #9c9c9c;
    border-bottom: 1px solid #9c9c9c;
    text-align: center;
}

#sinryou h2{
    font-size: 26px;
    font-family: 'メイリオ',
        'Hiragino kaku Gothic Pro',
         sans-serif;
     color: #7a7a7a;
    margin-top: 30px;
    margin-bottom: 10px;

}
    #sinryou p{
        font-size: 18px;
        color:  #a3a3a3;
        font-family: 'メイリオ',
        'Hiragino kaku Gothic Pro',
         sans-serif;
        
    }


.syoujyou h2{
    margin-left: 30px;
    margin-top: 30px;
    font-size: 24px;
    color: #7a7a7a;
    padding-left: 5px;
    border-left: 10px solid  #a3a3a3;
    }

.greet01 {
    flex-direction: column;
    height: auto;
    margin: 0 auto;
    padding: 20px 30px;
    line-height: 1.8;
    text-align: left;
    border-bottom: 1px solid #ccc;
    background: #fff;
}


.greet01 img{
    width: 250px;
    height:auto;
}

.greet01  p{
    font-size: 16px;
    color: #474a48;

}
.text01{
    height: auto;
}

.order1 {
    order: 1;
  }
  .order2 {
    order: 2;
  }
  .order3 {
    order: 4;
  }
  .order4 {
    order: 3;
  }


.news {
    padding: 30px;
    border-bottom:  1px solid #ccc;
}

.news h2{
    margin-left: 5px;
    font-size: 24px;
    color: #7a7a7a;
    border-bottom: 1px solid #9c9c9c;  
    
}

.news p{
    font-size: 16px;
    color: #474a48;
    line-height: 1.8;
}

    
#jikan_h h2{
        font-size: 24px;
        color: #7a7a7a;
        margin-left: 35px;
        margin-top:20px; 
    }
    
    
    .jikan{
        margin: 0 ; 
    }
    
    .jikan table{
        margin: 0 ;
        height: 150px;
        width: 100%;
        border-collapse: collapse;
        color: #fff;
        background: #bfbfbf;
        border: 1px solid #fff;
        font-size: 18px;
        
    }
    
    .jikan th,
    .jikan td{
        padding: 8px;
        border: 1px solid #fff;
        background-color: #bfbfbf; 
        
    }

.yoyaku p{
     font-size: 18px;
     color:  #666769;
     margin-left: 25px;
}

.yoyaku h2{
     font-size: 20px;
     color: #7a7a7a;
     margin-left: 25px;
}


.contact{
    height: 175px;
    margin-top: 40px;
    margin-bottom: 20px;
    background-image: url(../img/img04.jpg);
    background-repeat: no-repeat;
    padding: 30px;
    border-top: 1px solid #9c9c9c;
    border-bottom: 1px solid #9c9c9c;
    text-align: center;

}


.contact img{
    width: 80px;
    margin-left: 80px;
}

.contact h2{
    color: #666769;
    font-size: 24px;
    margin-left: 80px;
}

.contact a{
    font-size: 26px;
    margin-left: 70px;
    color: #666769;
    
}

#jyusyo_01 h1{
    font-size: 24px;
    color: #7a7a7a;
    margin-left: 35px;
    margin-bottom: 0px;
    margin-top: 50px;
    
    
}

.jyusyo{
    margin:20px 15px;
    padding: 10px;
    padding-bottom: 30px;
    border-top: 1px solid #9c9c9c;
    border-bottom: 1px solid #9c9c9c;
    text-align: left;
}

.jyusyo p{
    font-size: 16px;
    font-style: normal;
    color: #666769;
    line-height: 1.5;
}

.jyusyo iframe{
    width: 95%;
    height: 400px;
    text-align: center;    
}




#introduction{
    height: 160px;
    background:#bfbfbf;
    text-align: center;
    padding-top: 40px;
}

#introduction h2{
     margin-top:20px;
    font-size: 28px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
}

  .aisatu {
        height:100px;
        margin: 20px auto;
        padding-top: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #9c9c9c;
        border-top: 1px solid #9c9c9c;
        text-align: center;
    
}
    
   

.aisatu h2{
    margin-top:35px;
    font-size: 24px;
    font-family: 'メイリオ',
        'Hiragino kaku Gothic Pro',
         sans-serif;
    color: #7a7a7a;
}




.greet02 {
    display: block;
    margin-top: 30px;
    margin-bottom: 50px;
    margin-left: 20px;
    padding: 10px 30px;
    line-height: 1.8;
    text-align: left;
    border-bottom: 1px solid #ccc;
    background: #fff;
}



.greet02 img{
    width: 240px;
}

.text03  p{
    font-size: 16px;
    color: #474a48;

}

.box{  
    display: block;
    margin-bottom: 30px;
    
}

.keireki h3{
    margin-left: 20px;
        color: #7a7a7a;
    }
 


.keireki li{
    margin-left: 10px;
    padding: 3px;
    color: #474a48;
    
}

.sikaku h3{
    margin-left: 20px;
        color: #7a7a7a;
    }



.sikaku li{
    margin-left: 10px;
    padding: 3px;
    color: #474a48;
    
}


/* フッター */
    footer{
        height: 200px;
        padding-top: 30px;
        color: #fff;
        background-color: #bfbfbf;
        border-top: 1px solid #9c9c9c;
        text-align: center;
    }

    
    .footername h2{
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    letter-spacing: 0.1em;
    }    
    
    .copyright small{
        font-size: 13px;
        text-align: center;
        font-family: 'Montserrat', sans-serif;
        margin-bottom: 20px;
    }


)

   
  









