@charset "UTF-8";

html{
  overflow: auto;
}

 body {
    background-image: url(../img/bgi2.jpg) ;
    background-repeat:repeat;
    min-height: 100vh;
    list-style: none;
    font-family: 'Zen Maru Gothic', sans-serif;
    text-decoration: none;
    overflow: hidden;


  }
 h1,h2,h3,h4,h5,h6,p {
  color: rgb(53, 50, 48);
 }
h1{
  font-family: 'Roboto', sans-serif;
  /* font-size: clamp(1.875rem, 1.458rem + 2.22vw, 3.125rem); */
  font-size:clamp(1.375rem, 0.852rem + 2.61vw, 2.813rem);
  text-decoration: underline;
}

h2{
  font-family: 'Roboto', sans-serif;
  /* font-size: clamp(1.875rem, 1.458rem + 2.22vw, 3.125rem); */
  font-size: clamp(1.375rem, 0.852rem + 2.61vw, 2.813rem);
  text-decoration: underline;
  
}

  h6{
   font-size: clamp(1rem, 0.958rem + 0.22vw, 1.125rem); 
  }

  ul{
    list-style: none;
  }


  /* ナビゲーションメニュー*/

  .g-nav h1{
    text-decoration:underline;
    font-size: clamp(1.125rem, 1.083rem + 0.22vw, 1.25rem);
    text-align: center;
    margin-top: 20%;
    padding: 10px;

  }

  .g-nav{
    
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position:fixed;
  z-index: 999;
    /*ナビのスタート位置と形状*/
  top:0;
    right: -120%;
  width:100%;
    height: 100vh;/*ナビの高さ*/
  background:#fff;
    /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
.g-nav.panelactive{
    right: 0;

}

/*ナビゲーションの縦スクロール*/
.g-nav.panelactive {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 80%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
.g-nav ul {
  padding: 0;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    display: block;
    text-align: center;
}

/*リストのレイアウト設定*/

.g-nav li{
  list-style: none;
 
}

.g-nav li a{
  color: #333;
  text-decoration: none;
  padding:10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(1rem, 0.917rem + 0.44vw, 1.25rem);
  
}

.g-nav a:hover{
  color: #85c7d7;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1{
  
  position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
  top:10px;
  right: 10px;
  cursor: pointer;
    width: 50px;
    height:50px;
}
  
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
  background-color: #44444e;
    width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
  top:15px; 
}

.openbtn1 span:nth-of-type(2) {
  top:23px;
}

.openbtn1 span:nth-of-type(3) {
  top:31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*ハンバーガーメニューここまで*/



/*画面をスクロールするとしたからふわっと表示*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

.scroll_left {
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  
  
}
.scroll_left.on {
  transform: translateX(0);
  opacity: 1.0;
}

.scroll_right {
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
}
.scroll_right.on {
  transform: translateX(0);
  opacity: 1.0;
}


  
  /* タブレット以下のスマホサイズ時に表示しないnav*/

/* .nav-menu{
  display: none;
} */
  
.pc-nav{
  display: none;
} 

.logo img{
  width: 50%;
}
/* ここまで */


.img-box{
  width: 100%;
  height: 100vw;
  overflow: hidden;
  position: relative;
}
.img-box>div{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vw;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 10;
  opacity: 0;
  animation-name: fade;
  animation-duration: 12s;
  animation-iteration-count: infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}




@keyframes fade {
  0%{
    opacity: 0;
  }
  20%{
    opacity: 1;
  }
  80%{
    opacity: 0;
    transition:transform 0.2s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  100%{
    opacity: 0;
    z-index: 0;
  }
}
/* 1枚目のスライド */
.img-box>div:first-of-type{
  background-image: url(/img/main-s1.jpg);
}

/* 2枚目のスライド */
.img-box>div:nth-of-type(2){
  background-image: url(/img/main-s5.jpg);
  animation-delay: 4s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3枚目のスライド */
.img-box>div:last-of-type{
  background-image: url(/img/main-s3.jpg);
  animation-delay: 8s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.top-montemps {
  width: 100%;

  text-align: center;
  animation-name: fadeIn;
  animation-duration: 5s;
  position: absolute;
  z-index: 99;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;

}

.main-visual{
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;

}

.top-montemps img{
  width: 50%;
  padding-top: 70%;

}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ここまでtest */

.br-none2{
  display: none;
}

.parent{
  display: flex;
  width: 80%;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
  justify-content: space-around; 
}
/* ここまで */

/*スライダーのボタンを消す*/
.slick-dots li button:before{
  content: ''!important;
  height:100%!important;
  width: 100%!important;
}

@keyframes zoomin {
  0% {
    opacity: 0;
    transform: scale(0.7);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: scale(1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}

/* gallery section  */

.row img{
  width: 100%;
}

.gallery-sec{
  margin-top: 200px;
}

/* concept sec */
#concept img{
  width: 90%; 
  display: block;
  margin: 0 auto;
}


  #concept p,#saloninfo p{
    /* font-size:clamp(1rem, 0.958rem + 0.22vw, 1.125rem); */
    font-size: clamp(1.125rem, 1.083rem + 0.22vw, 1.25rem);
    line-height: 35px;
  }

.concept .text_body{
  background: rgba(226, 253, 255, 0.60);
  padding: 20px;
}
.concept{
  display: flex;
  flex-direction: column-reverse;
  width: 85%;
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 100px;
}

  a{
    text-decoration: none;
    color: black;
  }

  .shadow {
    box-shadow: 1rem 1rem rgba(0,0,0,.35) !important;
}

/* consept test*/
/* #test img{
 
  display: block;
  margin: 0 auto;
} */

#test{
  margin-top: 100px;
  margin-bottom: 100px;

 }

  #test img{
    width: 50%;
  }


.text-body {
  width: 60%;
  background: rgba(226, 253, 255, 0.60);
  padding: clamp(0.625rem, 0.417rem + 1.11vw, 1.25rem);
  font-size:clamp(0.875rem, 0.75rem + 0.67vw, 1.25rem);

}


/* news section */

.news-text p{
  font-size: clamp(0.875rem, 0.833rem + 0.22vw, 1rem);
}

#news{
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url(../img/news-bgi.jpg);
  background-repeat: no-repeat;
  margin-top: 100px;
  margin-bottom: 100px;
}



img {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background-color: transparent; 
}

.main-img img{
  width: 100%;
  margin-bottom: 100px;
}

/* saloninfo section */

#saloninfo img{
  width: 90%; 
  display: block;
  margin: 0 auto;
}

.saloninfo{
  display: flex;
  flex-direction: column-reverse;
  width: 85%;
  margin: 0 auto;
  margin-bottom: 30px;
}
#saloninfo .text_body{
  padding: 20px;
}


/* reserve sec */
#reserve{
  margin-top: 100px;
  margin-bottom: 100px;
  }

  #reserve img{
    width: 100%;
  }
  
  .reserve-button p{
    font-size: clamp(1rem, 0.5rem + 2.67vw, 2.5rem);
    font-family: 'Roboto', sans-serif;
  }
  

/* footer */

footer{
  background-color: rgb(175, 241, 250);
  }
  

.last{
  width: 90%;
  margin: 0 auto;
  display: block;
  font-size: 0.9em;
  text-align: center;
  margin-bottom: 30px;

  }
  
  .adress{
    padding-top: 30px;
  }
  .adress h6{
    margin-bottom: 10px;
  }

  .adress p{
    margin-bottom: 5px;
  }

  h6.close{
    margin-top: 30px;
  }
  
.copyright{
  font-size: 0.9em;
  text-align: center;
  padding-bottom: 20px;

}

.adress button{
  width: 200px;
  margin: auto;
  padding: 2px;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
 
}

/* menu page */

#menu-sec{
  margin: 0 auto;
}

#menu-sec li{
  font-size: clamp(0.875rem, 0.833rem + 0.22vw, 1rem);
}



/* info page */

.info-text p{
  font-size: clamp(0.875rem, 0.833rem + 0.22vw, 1rem);
}

.salon-info-p{
  font-size: clamp(1rem, 0.917rem + 0.44vw, 1.25rem);
  margin-top: 100px;
  margin-bottom: 100px;
}
/* staff page  */

/* #staff-sec{
  background-image: url(/img/bgi-3.jpg);
} */

.staff-page-bgi{
  background-image: url(/img/bgi-2.jpg);
  background-size:contain;
  padding-top: 100px;
  padding-bottom: 100px;
}

#staff-sec .parent{
  display: flex;
  flex-direction: column-reverse;
  width: 85%;
  margin: 0 auto;
  margin-bottom: 50px;
}
#staff-sec .parent2 {
  display: flex;
  flex-direction: column-reverse;
  width: 85%;
  margin: 0 auto;
  margin-bottom: 50px;
}

.staff{
  background-color: #fff;
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
}


.staff-sec-img img{
  width: 100%;
  display: block;
}

#recruit{
  margin-top: 100px;
}

/* reserve page */
#reserve{
margin-top: 100px;
margin-bottom: 100px;
}

.map {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.tell-btn{
  width: 300px;
  border: 2px solid #1DADEB;
  background-color: #fff;
  margin: 0 auto;
  padding: 15px;
  font-size: clamp(1rem, 0.932rem + 0.36vw, 1.25rem);
  display: block;
  margin-bottom: 30px;

}

.hp-btn{
  width: 300px;
  border: 2px solid #ED6060;
  background-color: #fff;
  margin: 0 auto;
  padding: 15px;
  font-size: clamp(1rem, 0.932rem + 0.36vw, 1.25rem);
  display: block;
  margin-bottom: 10px;
}



/*-------------------------------------------
 ▼ Medium md 768px-991px タブレットサイズ
 -------------------------------------------*/
 @media screen and (min-width: 768px) {

  .logo img{
    width: 100%;
    
  }

  .br-none{
    display: none;
  }
 

  .nav-hb{
    display:none;
  }


  .nav-menu{
    display:contents;
 
  }
  

  /*ナビゲーションメニュー*/


/* ここからtosaya*/
/* .g-nav ul{
  display: flex;
  justify-content: center;
    margin: 0;
    padding: 0;
  
}


.g-nav a{
  color: rgb(0, 0, 0);
  padding: 0px 20px;
  font-size: 20px;
  text-decoration: none;
}

.g-nav a:hover{
  color: rgb(54, 196, 137);
} */

/* ここまで tosaya*/


.s-nav{
  display: none;
}

  .pc-nav{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
 
  }

/* .pc-nav-logo{
  width: 10%;
} */

  .pc-nav ul{
    display: flex;
    justify-content: center;
    list-style: none;
      margin: 0;
      padding: 0;
  }
  
  .pc-nav a{
    color: rgb(0, 0, 0);

    padding: 0px 15px;
    font-size: clamp(0.875rem, 0.807rem + 0.36vw, 1.125rem);
    text-decoration: none;
  }
  
  .pc-nav a:hover{
     color: #85c7d7;;
  }

  .top-montemps img{
    width: 40%;
    padding-top: 30%;
  
  }

  /* 1枚目のスライド */
.img-box>div:first-of-type{
  background-image: url(/img/main-p1.jpg);
}

/* 2枚目のスライド */
.img-box>div:nth-of-type(2){
  background-image: url(/img/main-p2.jpg);
  animation-delay: 4s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3枚目のスライド */
.img-box>div:last-of-type{
  background-image: url(/img/main-p3.jpg);
  animation-delay: 8s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.img-box{
  height: 46vw;
}
.img-box>div{
  height: 46vw;
}

  /* concept */
  .concept {
  display: flex;
  width: 80%;
  flex-direction: row-reverse;
  justify-content: space-around;
  }
   .concept:nth-child(even)  {
    flex-direction: row-reverse;
  }
 
  .concept p,#saloninfo p{
    line-height: 50px;
  }
 .concept .text_body{
  margin: 0;
 }

 #test img{
  width: 80%;
}

.text-body {
  width: 60%;
 
 
}
/* gallery section */

.gallery-sec{
  margin-top: 300px;
}

/* saloninfo section */

.saloninfo{
  display: flex;
  margin: 0 auto;
  flex-direction: row;
  justify-content: space-around;
}

.more{
  margin-top: 40px;
}

  .last{
    width: 100%;
    text-align: left;
   
    /* background-color: #d3a76e; */
      display: flex;
     justify-content: space-around;
     font-size: 0.8rem;
    }
   
/* menu page */


/* staff page  */

.staff-page-bgi{
  background-image: url(/img/bgi-2.jpg);
  background-size:cover;
  padding-top: 100px;
  padding-bottom: 100px;
}


#staff-sec .parent {
display: flex;
  width: 80%;
  flex-direction: row-reverse;
  justify-content: space-around;
}
#staff-sec .parent2 {
  display: flex;
    width: 80%;
    flex-direction: row;
    justify-content: space-around;
  }
#staff-sec .parent:nth-child(even)  {
  flex-direction: row;
}

.text_body{
  width: 50%;
}



 /* test */

 .introduce-container{
  width: 80vw;
  margin: 0 auto;
  padding-top: 40px;
  display: flex;
}



}


 /* ==================
PCサイズ
=====================*/
@media screen and (min-width: 1024px) {

  
.news{
  background-size: 100% auto;
}

.text-body {
  width: 50%;

}
}