@charset "UTF-8";
@media (min-width: 1000px) {
body{
    min-width: 1000px;
}
.container{
    width: 100%;
    margin: 0 auto;

}
.menu{
    width: 100%;
    display: flex;
    align-items: center;
    

}
.openbtn,#g-nav,#g-nav-list{
    display: none;
}
.title{
    width: 20%;

}
.title img{
    width: 100%;
}
.home{
    width: 80%;
    
    }
    .home ul{
        width: 60%;
        height: 10px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin-left: 300px;
        font-family: serif;
       
       

    }
    .home li{
        list-style: none;
    }
    .home a{
        text-decoration: none;
    }
.header{
    width: 90%;
    height: 400px;
    margin: 0 auto;
    background-image: url(../img/mainvisual.png);
    background-size: cover;
    align-items: center;
    justify-content: center;
}

.contents1{
    width: 90%;
    display: flex;
    margin-top: 50px;
    justify-content: center;

}
.contents-img{
    width: 30%;
}
.contents1-text{
    width: 60%;
    height: 50px;
    font-family: 'Noto Serif JP', serif;
    padding-left: 10%;

}
.contents1-text dd{
  
    margin-top: 30px; 

}
/*↑brでよいのか*/
.contents2{
     width: 90%;
     margin: 0 auto;
  
}
.contents2 img{
    width: 100%;
}
.sp{
    display: none;
}
    /*.pc{ display: block !important;
    }
    .sp{display: none!important};
/*pcとspの表示画像を変える*/

.contents3{
    width: 100%;
    text-align: center;
  
    
}
.contents4 {
    width: 100%;
    text-align: center;
    margin-top: 50px;
   

}

.check-box {
    background-image: url(../img/check.png);
    background-repeat: no-repeat;
    min-height: 17px;
    line-height: 25px;
    padding-left: 27px;
    margin: 18px 0px 12px 300px;
    font-size: 16px;
    background-position: left 4px;
}
.contents5{
    width: 80%;
    margin: 0 auto;
    text-align: center;
    margin-top:50px;

}
.contents5 img{
    width: 70%;
}
.contents6{
    width: 100%;
    color: rgb(85, 59, 59);
  text-align: center;
    padding-top: 50px;


}
.contents7{
    width: 30%;
    margin: 0 auto;
    margin-top: 40px;
    text-align: center;
 

}
.contents8{
    width: 70%;
    margin-top: 50px;
  padding-left: 15%;

}
.contents9ins{
    width: 90%;
    margin: 0 auto;
    text-align: center;
}
.contents9ins ul{
    width: 90%;
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin: 0 auto;
}
.contents9ins li{
    list-style: none;
}
.voice{
    width: 70%;
    margin-top: 50px;
    padding-left: 15%;


}
#voicelist{
    width: 50%;
  margin: 0 auto;
}
.snsicon{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.snsicon1{
width: 5%;
margin-right: 10px;
} 
.snsicon1 img{
    width: 100%;
}
.snsicon2{
width: 5%;
}
.snsicon2 img{
    width: 100%;
}
.profile{

    width: 90%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    margin-top: 50px;
    
   }
   .profile img{
    width: 20%;
   }
   .profile p{
    width: 60%;
    font-size: smaller;
    padding-left: 30px;
    
   }

.fooder{
width: 100%;
text-align: center;
margin-top: 30px;
    
}
}
@media (min-width: 601px) and (max-width:999px) {
    /* 大枠 */
    body{
      min-width:601px;
      max-width:999px;
      margin: 0 auto;
    }
    .container {
      width: 100%;
    }
    
    .menu{
        width: 100%;
        display: flex;
        align-items: center;
        
    
    }
    .title{
        width: 20%;
    
    }
    .title img{
        width: 100%;
    }
    .home{
       display: none;
        }
        #g-nav{
            /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
            position:fixed;
            z-index: 999;
            /*ナビのスタート位置と形状*/
            top:0;
            right: -120%;
            width:100%;
            height: 100vh;/*ナビの高さ*/
            background:#c1baba;
            /*動き*/
            transition: all 0.6s;
        }
        
        /*アクティブクラスがついたら位置を0に*/
        #g-nav.panelactive{
            right: 0;
        }
        
        /*ナビゲーションの縦スクロール*/
        #g-nav.panelactive #g-nav-list{
            /*ナビの数が増えた場合縦スクロール*/
            position: fixed;
            z-index: 999; 
            width: 100%;
            height: 100vh;/*表示する高さ*/
            overflow: auto;
            -webkit-overflow-scrolling: touch;
        }
        
        /*ナビゲーション*/
        #g-nav ul {
            /*ナビゲーション天地中央揃え*/
            position: absolute;
            z-index: 999;
            top:50%;
            left:50%;
            transform: translate(-50%,-50%);
        }
        
        /*リストのレイアウト設定*/
        
        #g-nav li{
            list-style: none;
            text-align: center;
        }
        
        #g-nav li a{
            color: #333;
            text-decoration: none;
            padding:10px;
            display: block;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: bold;
        }
        
        /*========= ボタンのためのCSS ===============*/
        .openbtn{
            position:fixed;
            z-index: 9999;/*ボタンを最前面に*/
            top:10px;
            right: 10px;
            cursor: pointer;
            width: 50px;
            height:50px;
        }
            
        /*×に変化*/	
        .openbtn span{
            display: inline-block;
            transition: all .4s;
            position: absolute;
            left: 14px;
            height: 3px;
            border-radius: 2px;
            background-color: #666;
              width: 45%;
          }
        
        .openbtn span:nth-of-type(1) {
            top:15px;	
        }
        
        .openbtn span:nth-of-type(2) {
            top:23px;
        }
        
        .openbtn span:nth-of-type(3) {
            top:31px;
        }
        
        .openbtn.active span:nth-of-type(1) {
            top: 18px;
            left: 18px;
            transform: translateY(6px) rotate(-45deg);
            width: 30%;
        }
        
        .openbtn.active span:nth-of-type(2) {
            opacity: 0;
        }
        
        .openbtn.active span:nth-of-type(3){
            top: 30px;
            left: 18px;
            transform: translateY(-6px) rotate(45deg);
            width: 30%;
        }
        
        
        
      
        
        
        
        section{
            padding:100px 30px;
        }
        
        section:nth-child(2n){
            background:#f3f3f3;	
        }
        
        
        
        
            

    .header{
        width: 90%;
        height: 250px;
        margin: 0 auto;
        background-image: url(../img/mainvisual.png);
        background-size: cover;
        align-items: center;
        justify-content: center;
    }
    
    .contents1{
        width: 90%;
        display: flex;
        margin-top: 50px;
        justify-content: center;
    
    }
    .contents-img{
        width: 30%;
    }
    .contents1-text{
        width: 60%;
        height: 50px;
        font-family: 'Noto Serif JP', serif;
        padding-left: 10%;
    
    }
    .contents1-text h3{
        padding-left: 20px;

    }
    .contents1-text dd{
      
        margin-top: 30px; 
        font-size: small;
        margin-left: 20px;
    
    }
    
    .contents2{
         width: 90%;
         margin: 0 auto;
      
    }
    .contents2 img{
        width: 100%;
    
    }
.sp{
    display: none;
}
    
    .contents3{
        width: 100%;
        text-align: center;

      
        
    }
    .contents3 img{
        width: 30%;
    }
    .contents4 {
        width: 100%;
        text-align: center;
        margin-top: 50px;
       
    
    }
    .contents4 img{
        width: 90%;
    }
    
    .check-box {
        background-image: url(../img/check.png);
        background-repeat: no-repeat;
        min-height: 17px;
        line-height: 25px;
        padding-left: 27px;
       margin-left: 150px;
        font-size: 16px;
        background-position: left 4px;
    }
    .contents5{
        width: 80%;
        margin: 0 auto;
        text-align: center;
        margin-top:50px;
    
    }
    .contents5 img{
        width: 70%;
    }
    .contents6{
        width: 100%;
        color: rgb(85, 59, 59);
      text-align: center;
        padding-top: 50px;
    
    
    }
    .contents7{
        width: 30%;
        margin: 0 auto;
        margin-top: 40px;
        text-align: center;
     
    
    }
    .contents8{
        width: 70%;
        margin-top: 50px;
      padding-left: 15%;
    
    }
    .contents9ins{
        width: 90%;
        margin: 0 auto;
        text-align: center;
    }
    .contents9ins ul{
        width: 90%;
        display: flex;
        justify-content: space-around;
        text-align: center;
        margin: 0 auto;
    }
    .contents9ins li{
        list-style: none;
    }
    .voice{
        width: 70%;
        margin-top: 50px;
        padding-left: 15%;
    
    
    }
    #voicelist{
        width: 50%;
      margin: 0 auto;
    }
    #voicelist h5{
        text-align: right;
        font-weight: 200;
    }
    .snsicon{
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
    .snsicon1{
    width: 5%;
    margin-right: 10px;
    } 
    .snsicon1 img{
        width: 100%;
    }
    .snsicon2{
    width: 5%;
    }
    .snsicon2 img{
        width: 100%;
    }
    .profile{
    
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 0 auto;
        margin-top: 50px;
        
       }
       .profile img{
        width: 30%;
       }
       .profile p{
        width: 60%;
        font-size: smaller;
        padding-left: 30px;
        
       }
    
    .fooder{
    width: 100%;
    text-align: center;
    margin-top: 30px;
        
    }
}

/*ここからspレスポンシブです*/

@media (max-width: 600px) {
    body{
      max-width: 600px;
    }
    /* 大枠 */
    .container {
      width:100%;
    }
    
    .menu{
        width: 100%;
        display: flex;
        align-items: center;
        
    
    }
    .title{
        width: 40%;
    
    }
    .title img{
        width: 100%;
        
    }
    #g-nav{
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position:fixed;
        z-index: 999;
        /*ナビのスタート位置と形状*/
        top:0;
        right: -120%;
        width:100%;
        height: 100vh;/*ナビの高さ*/
        background:#c1baba;
        /*動き*/
        transition: all 0.6s;
    }
    
    /*アクティブクラスがついたら位置を0に*/
    #g-nav.panelactive{
        right: 0;
    }
    
    /*ナビゲーションの縦スクロール*/
    #g-nav.panelactive #g-nav-list{
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999; 
        width: 100%;
        height: 100vh;/*表示する高さ*/
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /*ナビゲーション*/
    #g-nav ul {
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top:50%;
        left:50%;
        transform: translate(-50%,-50%);
    }
    
    /*リストのレイアウト設定*/
    
    #g-nav li{
        list-style: none;
        text-align: center;
    }
    
    #g-nav li a{
        color: #333;
        text-decoration: none;
        padding:10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
    }
    
    /*========= ボタンのためのCSS ===============*/
    .openbtn{
        position:fixed;
        z-index: 9999;/*ボタンを最前面に*/
        top:10px;
        right: 10px;
        cursor: pointer;
        width: 50px;
        height:50px;
    }
        
    /*×に変化*/	
    .openbtn span{
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #666;
          width: 45%;
      }
    
    .openbtn span:nth-of-type(1) {
        top:15px;	
    }
    
    .openbtn span:nth-of-type(2) {
        top:23px;
    }
    
    .openbtn span:nth-of-type(3) {
        top:31px;
    }
    
    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }
    
    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }
    
    .openbtn.active span:nth-of-type(3){
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }
    
    
    
    /*========= レイアウトのためのCSS ===============*/
    
    h1{
        font-size:1.2rem;
    }
    
    h2{
        font-size:1.2rem;
        text-align: center;
        margin: 0 0 30px 0;
    }
    
    p{
        margin-top:20px;	
    }
    
    small{
        color:#fff;
        display: block;
        text-align: center;
    }
    
    #header{
        width:100%;
        background:#333;
        color:#fff;
        text-align: center;
        padding: 20px;
    }
    
    section{
        padding:100px 30px;
    }
    
    section:nth-child(2n){
        background:#f3f3f3;	
    }
    
    #footer{
        background:#333;
        padding:20px;
    }
    
    
    .home{
        display: none;
        }
        .home ul{
            
            height: 10px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            
    
        }
        .home li{
            list-style: none;
        }
    .header{
        width: 90%;
        height: 400px;
        margin: 0 auto;
        background-image: url(../img/mainvisualsp.png);
        background-size: cover;
        align-items: center;
        justify-content: center;
    }
    
    .contents1{
        width: 90%;
        display: block;
        margin-top: 50px;
        margin: 0 auto;
        
    
    }
    .contents-img{
        width: 50%;
    
       margin: 0 auto;
    }
    .contents-img img{
        width: 100%;
        margin-top: ;
    }
    .contents1-text{
        width: 80%;
        font-family: 'Noto Serif JP', serif;
        margin: 0 auto;
      
    }
.contents1 h3{
    text-align: center;
}
 
       
    .contents1-text dd{
      
        margin-top: 30px; 
       
    }
    /*↑brでよいのか*/
    .contents2{
         width: 50%;
         margin: 0 auto;
         margin-top: 50px;
        
      
    }
    .contents2 img{
        width: 100%;
       
    }
    .pc{
        display: none;
    }
    .contents3{
        width: 100%;
        text-align: center;
      }
    .contents3 img{
        width: 30%;
        margin-top: 50px;
    }
    .contents4 {
        width: 100%;
        text-align: center;
        margin-top: 50px;
       
    
    }
    .contents4 img{
        width: 100%;
    }
    .check-box {
        width: 90%;
        background-image: url(../img/check.png);
        background-repeat: no-repeat;
        min-height: 17px;
        line-height: 25px;
        padding-left: 27px;
        margin: 0 auto;
        background-position: left 4px;
        font-size: small;
    }
    .contents5{
        width: 100%;
        margin: 0 auto;
        text-align: center;
        margin-top:50px;
    
    }
    .contents5 img{
        width: 90%;
    }
    .contents6{
        width: 100%;
        color: rgb(85, 59, 59);
      text-align: center;
        padding-top: 50px;
        font-size: small;
    
    
    }
    .contents7{
        width: 30%;
        margin: 0 auto;
        margin-top: 40px;
        text-align: center;
     
    
    }
    .contents8{
        width: 70%;
        margin-top: 50px;
      padding-left: 15%;
    
    }
    .contents9ins{
        width: 90%;
        margin: 0 auto;
        text-align: center;
    }
    .contents9ins ul{
        width: 90%;
        justify-content: space-around;
        text-align: center;
        margin: 0 auto;
    }
    .contents9ins li{
        list-style: none;
    }
    .voice{
        width: 70%;
        margin-top: 50px;
        padding-left: 15%;
    
    
    }
    #voicelist{
        width: 50%;
      margin: 0 auto;
    }
    #voicelist h5{
        margin-left: 150px;
    }
    .snsicon{
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
    .snsicon1{
    width: 10%;
    margin-right: 10px;
    } 
    .snsicon1 img{
        width: 100%;
    }
    .snsicon2{
    width: 10%;
    }
    .snsicon2 img{
        width: 100%;
        margin-bottom: 20px;
    }
    .profile{
    width: 90%;
    text-align: center;
    margin: 0;
        
       }
       .profile img{
        width: 50%;
        margin-bottom: 10px;
     
       
       }
       .profile p{
        width: 80%;
        font-size: smaller;
        margin: 0 auto;
       
     
        
       }
    
    .fooder{
    width: 100%;
    text-align: center;
    margin-top: 30px;
        
    }
}