/* =========================================================
   Base
   ========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-black: #000;
  --color-black-strong: #000000;
  --color-white: #fff;
  --color-body: #222;
  --color-primary: #61824A;
  --color-primary-soft: #4FB657;
  --color-accent-brown: #A98E3F;
  --color-muted-bg: #f5f5f5;
  --color-deep-green: #256440;
  --color-hero-dot: #FAF2CC;
  --color-border-muted: #aaa;

  --font-base-sans: 'Zen Kaku Gothic New', sans-serif;
  --font-klee: 'Klee One', cursive;
  --font-klee-sans: 'Klee One', sans-serif;
  --font-inter: 'Inter';
  --font-title-jp: "Zen Maru Gothic";
  --font-round-jp: "Tsukushi A Round Gothic";

  --radius-xs: 0.4rem;
  --transition-base: 0.3s;
}

html {
  font-size: 62.5%; /* 10px = 1rem */
}

body {
  font-size: 1.6rem; /* デフォルト 16px */
  line-height: 1.6;
  color: var(--color-black-strong);
  background-color: var(--color-white);
}

header {
  margin: 5px;
  margin-bottom: 10px;
  font-family: var(--font-base-sans);
}

.container {
  width: min(100% - 4rem, 120rem); /* 最大1200px・両サイド2rem余白 */
  margin-inline: auto;
}

/* === Typography === */
h1 { font-size: 2.4rem; margin-bottom: 1.6rem; }
h2 { font-size: 2rem;  margin-bottom: 1.2rem; }
h3 { font-size: 1.8rem; margin-bottom: 1rem; }

/* === Links === */
a {
  color: inherit;
  text-decoration: none;
}

/* === Buttons & Forms === */
button,
input[type="submit"] {
  font: inherit;
  padding: 0.8rem 1.6rem;
  border: none;
  cursor: pointer;
}

/* === Media === */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === WordPress Block Support === */
.wp-block-image img {
  border-radius: var(--radius-xs); /* 必要に応じて調整 */
}

.h1display {
  display: none;
}

.wp-block-button__link {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-xs);
  text-align: center;
}

em {
  font-style: normal;
}

/* =========================================================
   Header
   ========================================================= */

#access, 
#book {
  scroll-margin-top: 20px;
}

.sp_only{
    display: none;
}

.headerTitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.headerTitle div img{
  margin-left:10px ;

}
.headerLogo {
  width: 75%;
}

.headerNav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  width:95%;
  justify-content: right;
}

.headerNav li {
  margin-right: 13px;
  position: relative; 
  
}

.headerNav li:last-child {
  margin-right: 0;
}

.headerNav li a {
  text-decoration: none;
  color: inherit;
  position: relative;
  padding: 0 4px;
  padding-bottom: 15px;
  font-family: var(--font-base-sans);
  font-weight: 500;
}

.headerNav li a:hover::after {
  content: "•";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-primary);
  font-size: 5rem;
}

.headerNav li:hover{
    color: var(--color-primary);
}


.headerNav li.active.temp-disabled {
  color: initial;
}

.headerNav li.active.temp-disabled a::after {
  content: none;
}

.headerNav li.active{
    color: var(--color-primary);
}


.headerNav li.active a::after {
  content: "•";
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-primary);
  font-size: 5rem;
}

.otoiawase{
    margin-left: 20px;
}

@media screen and (max-width: 1024px) {
 .otoiawase{
    margin-left: 0px;
}
.headerNav li {
  margin-right: 10px;
}
}

@media screen and (max-width: 810px) {
    .pc_only {
  display: none;
}

.sp_only {
  display: block;
}

.headerLogo {
  width: 40%;
}

.hum {
  width: 25px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 1001; 
}

.line1, .line2, .line3 {
  width: 100%;
  height: 2px;
  background-color: var(--color-black);
  position: absolute;
  left: 0;
  transition: var(--transition-base);
}

.line1 { top: 0; }
.line2 { top: 9px; }
.line3 { top: 18px; }

.hum {
  display: block;
  margin-right: 10px;
}


.spNav.active ~ .hum {
  display: none;
}

.spNav_close {
  position: absolute;
  top: 80px;
  right: 10%;
  padding:0;
 
  border: none;
  cursor: pointer;
}


header {
  position: relative;
}

.spNav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
 

  opacity: 0;
  pointer-events: none; 
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
  z-index: 999;

  background-image: url("img/spheaderBack.png");
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;
 
}

.spLitop{
    margin-top: 170px;
}

.spNav.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.spNav li {
 
  font-size: 1.7rem;
  list-style: none;
  margin-left: 15%;
  margin-bottom: 5%;
  
}

.spNav li a {
  text-decoration: none;
  color: inherit;
  position: relative;
  padding: 0 4px;
  padding-bottom: 15px;
}

.spNav li.active{
    color: var(--color-primary);


}

.spNav li a:hover::before {
   content: "•";
  position: absolute;
  bottom: -13px;
  left: -20px;
  
  color: var(--color-primary);
  font-size: 5rem;
}

.spNav li.active a::before {
  content: "•";
  position: absolute;
  bottom: -13px;
  left: -20px;
  
  color: var(--color-primary);
  font-size: 5rem;
}

.spNav li.active.temp-disabled {
  color: initial;
}

.spNav li.active.temp-disabled a::before {
  content: none;
}

    
 
}

/* =========================================================
   First View / Hero
   ========================================================= */
.top .hero {
  position: relative;
  width: 100%;
}

.top .hero img {
  width: 100%;
  height: auto; 
  display: block;
}

.top .hero-text {
  position: absolute;
  z-index: 100;
  top: 55%;      
  right: 2%;     
  transform: translateX(-15%); 
  color: var(--color-black-strong); 
  font-size: 1.7vw;
  font-family: var(--font-base-sans);
  font-weight: 500;
   transition: top 0.8s ease;
 
}

.top-slider .swiper-slide img {
  width: 100%;
  height: 90%;
  object-fit: cover;
  aspect-ratio: 15.5/8;
}

.hero-text.lower {
    top: 75%;
}



.kirei {
  display: inline-flex;   
  gap: 0.05em;           
}



span {
  opacity: 0;
  animation: fadeIn 1s forwards;
}


.char {
  position: relative;

}

.char::after {
  content: "●";
  position: absolute;
  left: 50%;
  bottom: -1.5em;   
  transform: translateX(-50%);
  font-size: 0.6em; 
  color: var(--color-hero-dot);  
  line-height: 1;
}




@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.8) rotate(-10deg);
    filter: blur(4px);
  }
  50% {
    opacity: 0.7;
    transform: translateY(-5px) scale(1.05) rotate(2deg);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
    filter: none;
  }
}

@media screen and (min-width: 1200px) {
  .top .hero {
    height: 88vh;
    overflow: hidden;
  }

  .top .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;   
    object-position: 50% 80%;
  }

  
}




@media screen and (max-width: 900px) {
    .top-slider .swiper-slide img{
      aspect-ratio: 5/3;

    }
    .top .hero-text {
      top:40;
        font-size: 1.6rem;
        right:0;


    }
    

    .hero-text.lower {
    top: 75%;
  }

    


}

@media screen and (max-width: 380px) {
.top .hero-text {
      top:37%;
      font-size: 1.6rem;
      left:15%;
      width:100%;
      text-align: center;
       


    }

   
}

.conceptDiv{
    width:65%;
    margin: 0 auto;
    margin-top: 7%;
     font-family: var(--font-klee);
}

.conseptTittleH3{
  text-align: center;

}

.conp{
  margin-top: 5%;
}

.conceptDiv p{
    font-size: 2.0rem;
}

.on1020{
  display: none;
}

@media screen and (max-width: 1200px) {
    .conceptDiv{
      width:75%;
    }
}

@media screen and (max-width: 1100px) {
  .conceptDiv{
      width:80%;
    }
}


@media screen and (max-width: 1020px) {
    .conceptDiv{
        width:65%;
    }
    .on1020{
      display: block;
      
    }

    .l2{
      display: block;
      margin-top: 3%;
    }
}

@media screen and (max-width: 930px) {
  .conceptDiv{
        width:75%;
    }
}

@media screen and (max-width: 810px) {
    .conceptDiv{
      width:85%;
    }

    .l2{
      display: block;
      margin-top: 0%;
    }
}

@media screen and (max-width: 500px) {
  .conceptDiv{
      width:95%;
    }

    .conceptDiv p{
    font-size: 1.6rem;
}
}

/* =========================================================
   Instagram
   ========================================================= */

.insta{
  margin-top: 8%;
}

.InstagramTittle{
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-primary-soft);
  font-family: 'klee','Work Sans', serif;
  margin-left: 50px;
  font-weight: 100;

}



.InstagramTittle h2 {
  margin-bottom:0 !important ;
  font-size: 4.0rem;
}
.InstagramTittle div{
  margin-left: 3%;

}

.InstagramTittle div img{
  width:60%;
  text-align: center;
  margin: 0 auto;
}

.instapulg{
  width:60%;
  margin: 0 auto;
  margin-top: 7%;
}

.instaButton{
  margin-top: 5%;
}

.instaButton img{
 margin:  0 auto;
  
  
}



@media screen and (max-width: 1000px) {
  .insta{
    margin-top: 10%;
  }

  .InstagramTittle{
    margin-left: 0px;

  }
}

@media screen and (max-width: 800px) {
    .instapulg{
      margin-top: 8%;
    }

    .InstagramTittle{
    margin-left: 20px;

  }
  .instapulg{
    width:50%;
   
  }
}


@media screen and (max-width: 600px) {

  .conceptDiv p{
    font-size: 1.6rem;
  }
  .insta{
    margin-top: 13%;
  }

  .instapulg{
    width:60%;
     margin-top: 12%;
  }

 

  
   
}

@media screen and (max-width: 500px) {
  .instapulg{
    width:60%;
  }
}
/* =========================================================
   Price
   ========================================================= */

.price{
  margin-top: 9%;
 
  padding-top: 3%;
  
   background-image: url("img/priceBack.png");
  background-size: cover;      
  background-position: center; 
  background-repeat: no-repeat;

  padding-bottom: 5%;

}



.accordion{
  width:95%;
  margin: 0 auto;
  margin-top: 5%;
}

.accordion-item {
  margin-top: 3%;
}

.accordion-header {
  width: 100%;
  padding: 1rem;
  background: none;
  border: none;
  font-size: 2.4rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Inter', serif;
  border-bottom: 2px solid var(--color-border-muted);
  color: var(--color-black);
  

}

.accordion-header span {
  width: 100%;          
  text-align:left;    
}


.accordion-header .arrow {
   transform: rotate(90deg);
   width:80%;
   margin-left:20% ;


 
}

.accordion-content {
  width:85%;
  max-height: 0;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.accordion-item.active .accordion-content {
  border-top: none;
  max-height: 2500px !important;
  padding: 1rem;
}

.accordion-item.active .arrow {
   transform: rotate(360deg);

 
}




.price-table{
  width:80%;
  border-collapse: separate; 
  border-spacing: 0 25px; 
  margin-top: 3%;
 
}


.menu{
  width:70%;
  font-family: 'nunito-sans', sans-serif;
  font-weight: 600 
}

/* .cutMenu{

  font-family: 'Noto Sans Javanese', 'Noto Sans', 'Inter', sans-serif;

  font-weight: 500 !important;
}  */

.priceTd{
   font-family: var(--font-inter); 
  font-weight: 400 !important;
}

.notesHena{
  padding-left: 3%;
  width: 70%;


}

.note1{
  font-family: var(--font-inter);
  font-weight: 400;

}

.organic{
  display: flex;
   justify-content: space-between;
     margin-bottom: 3%;
     margin-top: 4%;
}


.toHena{
  display: flex;
  width:20%;
  align-items: top;
 
}

.toHena p{
  font-family: 'Amiri Quran Colored', sans-serif;

}

.toHena div{
  margin-top: 2%;
  margin-left: 5%;
  
}

.shampoo{
  margin-top: 0;

}

.subHead{
  text-align: center;
  margin-bottom: 30px;
  margin-top: 5px;

}

.subHead2{
  margin-top: 5%;
}

.price-table tr.maegami td {
  padding-top: 5%;
}

.yaji3 {
  animation: arrowMove 1.5s ease-in-out infinite;
}

.kitsukeYaji{
  width:100%;
  justify-content: right;
  margin-top: 5%;

}
.kitsukeYaji div {
  margin-top: 0;

}




@keyframes arrowMove {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px); 
  }
}

@media screen and (max-width: 1000px) {
  .price{
    margin-top: 13%;
  }

}

@media screen and (max-width: 810px) {
  .menu{
  width:85%;
  }

  .organic{
    display: block;
    margin-bottom: 10%;
  }

  .notesHena{
    width:100%;

  }

  .toHena{
    width:100%;
    justify-content: center;
    margin-top: 10%;
   
  }

  .toHena div{
    margin-top: 0;
  }

 
}

@media screen and (max-width: 600px) {
   .price{
    margin-top: 18%;
  }

  .accordion-content{
    width:100%;
  }

  .accordion{
    width:100%;
  }

  .accordion-header {
    font-size: 2.0rem;
    text-align: left;
  }

  .accordion-header .arrow {
    
    width: 60%;
    margin-left: 40%;
}
}

 .off_450{
    display: none;
  }



  

@media screen and (max-width: 450px) {
  .off_450{
    display: block;
  }

  .toHena{
    margin-top: 15%;
  }
}



/* =========================================================
   About Us
   ========================================================= */
.aboutUs{
  margin-top: 7%;
}

.aboutContent{
  width:100%;
  margin: 0 auto;
  margin-top: 3%;
  font-family: var(--font-klee-sans);
  font-weight: 600;
}

.staff-item {
  width:50% ;
  margin-top: 10%;
  display: flex !important;
  justify-content: center;
  
}

.staff-photo {
  
  object-fit: cover;
}

.staff-info{
  margin-left: 5%;
  font-family: var(--font-klee-sans);
  font-weight: 600;

}

.staff-info h3 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  
}

.staff-info p {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.staff-info ul {
  list-style: none;
  padding-left: 1rem;
  font-size: 1.6rem;
  margin-top: 5%;
  line-height: 2em;
}
.about2{
  margin: 0 auto;
  margin-top: 2.5%;
  width:90%;
  
}

@media screen and (max-width: 860px) {
  .staff-item{
   flex-direction: column;
  }

  .staff-item img{
    width:40%;
    margin: 0 auto;
    
    
  }  

  .staff-info{
    width:70%;
    margin: 0 auto;
    text-align: center;
    margin-top: 5%;
  }
}

@media screen and (max-width: 550px) {
  .aboutContent{
    margin-top: 8%;
  }
   .staff-item img{
    width:60%;
    margin-top: 8%;
   }
  .staff-info{
    width:95%;
    margin-top: 10%;
  }
  
}

@media screen and (max-width: 420px) {
  .aboutUs{
  margin-top: 10%;
}

  .staff-info p{
    padding-left: 1rem;
    text-align: left;
  }
  .gino{
    text-align: left;
  }

  .about2{
 
  width:100%;
  
}
}

@media screen and (max-width: 400px) {
    .conceptDiv {
        width: 100%;
    }

   

}
/* =========================================================
   Access
   ========================================================= */
.access{
  margin-top: 8%;
}

.accessTittle{
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-primary-soft);
  font-family: 'klee','Work Sans', serif;

}

.accessTittle h2 {
  margin-bottom:0 !important ;
  font-size: 4.0rem;
}

.shop-info{
  width: 60%;
  margin: 0 auto;
  text-align: left;
  margin-top: 3%;
  border-collapse: collapse;
  font-size: 1.6rem;
  font-family: var(--font-inter);
  line-height: 1;
  
}

.shop-info th {
  text-align: left;
  white-space: nowrap;
  padding: 0.8rem 1.2rem 0.8rem 0;
  vertical-align: top;
  font-weight: 400;
  width: 20%;
}

.shop-info td {
  padding: 0.8rem 0;
}

.map{
  width: 60%;
  margin: 0 auto;
  text-align: center;
  margin-top: 3%;
}

iframe{
  width: 100%;
}

.reserve-info{
   width: 65%;
  margin: 0 auto;
  margin-top: 8%;

}

.reserve-info th{
  width: 20%;
}
.howToBook{
  width:12%;
  text-align: left;
  vertical-align: top; 
   font-weight: 400;
}

.linePhoto{
  width:60%;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 5%;
}

.line a img{
  width:200px;
}

.tel{
  width: 190px;
}



.off_1000{
    display: none;
  }

@media screen and (max-width: 1000px) {
  .off_1000{
    display: block;
    margin-top: 3px;
  }

  .linePhoto{
    width:70%;
  }
}

@media screen and (max-width: 900px) {
  .map{
  width: 70%;
 
  }

  .line a img{
  width:180px;
  }

  .tel{
    width: 175px;
  }
}

@media screen and (max-width: 800px) {
  .map{
  width: 80%;
  }

  .shop-info{
    width:80%;
  }

  .reserve-info{
    width:80%;
  }
  .linePhoto{
    width:80%;
  }

  .line a img{
  width:170px;
  }

  .tel{
    width: 165px;
  }
}

@media screen and (max-width: 600px) {
  .map{
  width: 90%;
 
  }

  .map iframe{
    max-height: 300px !important;
  }

  .shop-info{
    width:90%;
    margin-top: 8%;
  }

  .shop-info tr {
    display: block; 
    margin-bottom: 1.2em; 
  }

  .shop-info th,
  .shop-info td {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.4em 0;
  }

  .shop-info th {
    font-weight: bold;
    border-bottom: none;
  }

  .reserve-info{
    width: 90%;
  }
  .reserve-info tr {
    display: block; 
    margin-bottom: 1em; 
  }

  .reserve-info th,
  .reserve-info td {
    display: block; 
    width: 100%;
    text-align: left;
    padding: 0.6em 0;
  }

  .reserve-info th {
    font-weight: bold;

  }

  .reserve-info td {
    line-height: 1.7;
  }

  .linePhoto {
    width:80%;
    margin-top: 3%;
    margin-bottom: 5%;
  }

  .line a img{
  width:150px;
  }

  .tel{
    width: 145px;
  }

}

@media screen and (max-width: 500px) {

  .map iframe{
    max-height: 200px !important;
  }

  .line a img{
  width:140px;
  }

  .tel{
    width: 135px;
  }
}

@media screen and (max-width: 460px) {
  .off_450{
    display: block;
  }

  .linePhoto{
    flex-direction: column;
    margin-top: 0;
  }

  .line a img{
    width:150px;
  }

  .tel{
    margin-top: 5%;
    width: 150px;
  }

}

@media screen and (max-width: 420px) {
  .access{
  margin-top: 10%;
}

.reserve-info{
    width: 100%;
  }

   .shop-info{
    width:100%;
   }

   .map{
  width: 100%;
 
  }
}

/* =========================================================
   Footer
   ========================================================= */

footer{
  margin-top: 8%;
   background-image: url("img/footerBack.png");
  background-size: cover;      /* 全体を覆う */
  background-position: center; /* 中央寄せ */
  background-repeat: no-repeat;/* 繰り返さない */
}

.footer-container{
   padding-top: 3%;
   padding-left: 7%;
}

.footer-right{
  display: flex;
  width: 95%;
  justify-content: right;
  margin-top: 4%;

}

.footer-nav{
  display: flex;
 
}

.footer-nav li{
  list-style: none;
  margin-left: 25px;
}

.otoiawaseFooter{
  margin-left: 50px !important;

}

.shop-info2{
  width:50%;
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 1.6rem;
  margin-top: 2%;
  text-align: left;
}

.infoTable{
  text-align: left;
}

.infoHd{
  width:20% !important;
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 1.6rem;
}

.footer-logo{
 
  margin-left: 5%;
  align-items: baseline;
  padding-bottom: 2%;
  margin-top: 7%;
}

.copy{
  text-align: center;
}


.footer-nav li a {
  text-decoration: none;
  color: inherit;
  position: relative;
  padding: 0 4px;
  padding-bottom: 15px;
  font-family: var(--font-base-sans);
  font-weight: 500;
}


.footer-nav li a:hover::after {
  content: "•";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-primary);
  font-size: 5rem;
}


.footer-nav li:hover {
  color: var(--color-primary);
}

.footer-nav li.active.temp-disabled {
  color: initial;
}


.footer-nav li.active.temp-disabled a::after {
  content: none;
}


.footer-nav li.active {
  color: var(--color-primary);
}

.footer-nav li.active a::after {
  content: "•";
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-primary);
  font-size: 5rem;
}

.off_650{
    display: none;
  }

  .footerImg{
    margin-left: 5%;
    width:25%;

  }






@media screen and (max-width: 650px) {
  .footer-container{
    width:98%;
    margin: 0 auto;
    padding-top: 4%;
    display: flex;
    justify-content: right;

  }

  .footer-nav{
    max-width: 350px;
    flex-wrap: wrap;
   
  }
  

  .footer-nav li.active a::after {
    left: -10px; 
    transform: none; 
    bottom: 2px; 
    font-size: 3rem; 

  }

   .footer-nav li a:hover::after {
    left: -10px;           
    transform: none;   
    bottom: 2px;     
    font-size: 3rem;  
  }

  .footer-nav li{
    margin-top: 4px;
  }

  .footerImg{
    margin-left: 3%;
    width:40%;

  }

  .footer-logo{
      margin-top: 5%;
  }

   .copy{
    margin-top: 3%;
  }

  

}

@media screen and (max-width:420px){
  .footer-container{
    justify-content: center;
  }

  .footer-logo{
    margin-left: 0;
  }
   .footerImg {
        margin-left: 30%;
        width: 40%;
        margin-top: 10%;
    }
}

@media screen and (max-width: 380px) {
  .footer-container{
    padding-left: 0%;
  }
  
}

/* =========================================================
   Henna Page
   ========================================================= */
.henna-section {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.henna-content {
  position: relative;
}

.henna-image {
  width: 100%;
  height: auto;
  
}

.henna-title {
  position: absolute;
  top: 20%;
  left: 8%;
  font-family: 'BIZ UDPGothic', sans-serif;
  font-weight: 700;
  color: #3b8d4e;
  font-size: 3rem;
  line-height: 1.1;
}

.henna-description {
  margin-top: 6%;

}

.hena_p1{
  width:80%;
  margin: 0 auto;
  font-weight: 600;
  font-family: 'Klee One', sans-serif;
  font-size: 1.6rem;
  text-align: justify;
}

.henna-points {
  margin-top: 6%;
  text-align: center;
  background-color: var(--color-white);
}

.henaImg{
  width:80%;
  margin: 0 auto;
  margin-top: 1%;
}

.henaImg img{
  width:100%;
}



/* タイトル部分 */
.section-title h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #9A7F30;
  letter-spacing: 0.1em;
   font-family: var(--font-round-jp);
}

.section-title p {
  font-family: var(--font-round-jp);
  font-size: 2.7rem;
  color: #CDC8C8;
  margin-bottom: 2rem;
  margin-top: -20px;
}

.point-wrapper{
  margin-top: 5%;
  display: flex;
  justify-content: center; /* 水平方向に中央寄せ */
  align-items: center;  
}
.point-wrapper img{
  width:60%;
}

.henaImage {
  margin-top: 6%;
  text-align: center;
  background-color: var(--color-white);
}

.henaContainerDescription{
  text-align: center;
  font-family: 'Klee';
  font-weight: 500;
  font-size: 1.6rem;
  margin-top: 1%;

}

.recommend-section {
  width: 100%;
  padding-top: 5%;
  background-color: var(--color-white);
  margin-top: 3%;
}



.recommend-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--color-black);
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-family: var(--font-title-jp);
}

.recommend-text {
  text-align: center;
  font-family: 'klee';
  font-size: 1.6rem;
  color: var(--color-black);
  line-height: 2;
}

.recommend-text{
  margin-left: 30%;
  margin-top: 5%;
  width:70%;
  text-align: left;
}

.reco1{
 
  padding-bottom: 2px;
  line-height: 2.5em;
}

.reco2{
  padding-top: 1px;
  padding-bottom: 1px;
  line-height: 2.5em;
}

.reco1em{
  border-bottom: 3px solid #A98E3F; 
   padding-bottom: 10px;
   padding-left: 10px;
   padding-right: 10px;
}

.recommend-text span {
  border-bottom: 1px solid #c4b89b; 
  padding-bottom: 2px;
}

.recommend2{
  margin-top: 3%;
}

.qa-section{
  margin-top: 3%;
  padding-top: 5%;

}
.qaH2{
  font-family: "Klee One", sans-serif;
  margin-bottom: 0;
  font-size: 2.4rem;
  color: var(--color-black);
}

.qa-title{
  font-size: 2.4rem;
  font-family: var(--font-title-jp);

}
.qa-item{
  width:90%;
  
  margin-left: 10%;
  margin-top: 1%;
  font-family: 'klee';
  
  
}

.qa-question{
  width:100%;
  display: flex;
  justify-content: space-between;
  background-color: var(--color-muted-bg);
  border-radius: 10px;
}

.Q{
  color: var(--color-deep-green);
}

.yaji2{
  margin-top: 2px;
}

.yaji2 img{
  width:80%;
  margin-left: 20%;
}

.arrow2{
  transform: rotate(90deg);
}

.arrow2.rotated {
  transform: rotate(0deg);
  transition: transform 0.3s;

}

.qa-answer {
  display: none;
  width: 90%;
  margin: 0 auto;
  margin-top: 2%;
  padding-bottom: 5%;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease, opacity 0.8s ease;
}





/* 開いた時 */
.qa-answer.open {
  display: block;
  opacity: 1;
  max-height: 400px; 
}

.Q{
  font-family: var(--font-title-jp);
}

.tittleSejutsu{
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--color-black);
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-top: 5%;
  font-family: var(--font-title-jp);
}

.sejutsuSection{
  padding-top: 5%;
}

.sejutsuMein{
  display: flex;
  width:85%;
  margin-left: 10%;
  margin-top: 5%;
  justify-content: space-between;
  
}

.sejutsuItem{
  display: flex;
  align-items: center;
  width:30%;
  background-color: var(--color-muted-bg);
  padding:1%;
  padding-top: 1%;
  padding-bottom: 1%;
  justify-content: space-between;
  border-radius: 15px;
}

.sejutsuItem p{
  font-size: 1.6rem;
  font-family: 'klee';
  width:70%;
}

.price-section {
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  padding-top:8%;
  color: #222;
}

.price-title, .henaPageAccess, .colorPageAccess {
  font-family: 'klee','Work Sans', serif;
  font-size: 4.0rem;
  font-weight: 500;
  text-align: center;
  color: var(--color-accent-brown);
  margin-bottom: 20px;
  
}

.price-category {
  width:85%;
  margin: 0 auto;
  
}

.price-subtitle {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'inter';
  border-bottom: 1px solid #000000;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}

.price-table th,
.price-table td {
  font-size: 1.6rem;
  font-weight: 600;
  padding: 10px 0;
}

.price-table th {
  text-align: left;
  font-weight: 600;
  width:65%;
}

.price-table td {
  text-align: left;
  white-space: nowrap;
}

.note {
  font-size: 0.9rem;
  color: #555;
  margin-left: 5px;
}

.henaPageAccess, .colorPageAccess {
  font-weight: 300;
}



@media screen and (max-width: 1200px) {
  .sejutsuMein{
    width:95%;
    margin-left: 5%;

  }

  .sejutsuItem{
    width:32%;
  }

}

@media screen and (max-width: 1000px) {
  .sejutsuMein{
    flex-direction: column;
    justify-content: center;

  }

  .sejutsuItem{
    width:80%;
    margin: 0 auto;
    margin-bottom: 5%;
    padding:2%;
  }

  .sejutsuItem p{
    width:80%;
  }
}

@media screen and (max-width: 900px) {
  .hena_p2{
    margin-top: 2%;
  }

  .qaH2{
    text-align: left;
  }
  
}

@media screen and (max-width: 810px) {
  .henna-description{
    margin-top: 10%;
  }
  .henna-points{
    margin-top: 13%;
  }

  .off_810{
    display: none;
  }

  .henaImage{
    margin-top: 13%;
  }

  .recommend-title, .qa-title, .tittleSejutsu{
    text-align: center;
    margin-bottom: 5%;
    margin-top: 7%;

    
  }

  .tittleSejutsu{
    margin-top: 15%;
  }

  .recommend-text{
    margin-left: 0%;
    width:90%;
     margin: 0 auto;
    text-align: center;
  }

  .qa-item{
    margin-left: 5%;
   
  }

  .yaji4 img{
    width:25px;
    min-width: 25px;
  }

  


}
.on_600{
    display: none;
  }

@media screen and (max-width: 625px) {
    .qa-item{
    margin-left: 0;
    width: 100%;
   
  }

   .price-title, .colorPageAccess{
    font-size: 3.0rem !important;

  }

  .henaPageAccess h2, .colorPageAccess h2{
    font-size: 3.0rem !important;
  }
  }

@media screen and (max-width: 600px) {

  .off_600{
    display: none;
  }



  .on_600{
    display: block;
  }
  .swiper-on810 {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .swiper-on810 img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.pointImageHena{
  width: 55%;
  margin: 0 auto;
  margin-top: 8%;
}

.henaNoPicture img{
  width:75%;
  margin-top: 4%;
}

.henaContainerDescription{
  margin-top: 4%;
}

.recommend-text{
  text-align: left;
  width:85%;
}

.recommend2{
  margin-top: 8%;
}

.reco1em {
  padding-left: 0;
}

.qaH2{
  font-size: 2rem;
}

.yaji2 img{
  margin-left:10% ;
  width:90%;
}

.qa-item {
  margin-top: 10px;

}

.sejutsuItem{
  padding:10px;
}

.yaji4 img{
    width:25px;
    min-width: 25px;
  }


}

@media screen and (max-width: 500px) {
  .hena_p1{
    width:90%;
  }

  .hena_p2{
    margin-top: 3%;
  }

  .recommend-text{
  text-align: left;
  width:90%;
  margin-top: 5%;
}

.recommend-title{
  font-size: 2.1rem;
}

.qaH2{
  font-size: 1.8rem;
}

.yaji2 img{
  margin-left:30% ;
  width:70%;
}

.sejutsuItem{
    margin-bottom: 20%;
    padding:10px;
    padding-right:5px;
    margin: 0;
    margin-top: 4%;
    align-items: start;
  }

  .sejutsuMein{
    justify-content: right;
  }

    .sejutsuItem {
      width:90%;
    }

  .sejutsuItem:nth-child(1){
    margin-left:16% ;
    margin-bottom: 10%;
    
  }

  .sejutsuItem:nth-child(2){
    margin-left:-10% ;
    margin-bottom: 10%;
    flex-direction: row-reverse;
  }

  .sejutsuItem:nth-child(3){
    margin-left:16% ;
    margin-bottom: 10%;
  }

  

  .sejutsuItem p{
    margin-top: 18%;
    padding: 10px;
  }

  .yaji4 img{
    width:25px;
    min-width: 25px;
  }

   .price-category {
    width: 90%;
    margin: 0 auto;
}




  

  
}

@media screen and (max-width: 450px) {
  .qaH2{
  font-size: 1.55rem;
  text-align: left;
  }
  .yaji2 img{
  margin-left:30% ;
  width:70%;

}




}
@media screen and (max-width: 400px) {
  .hena_p1{
    width:100%;
  }

  .hena_p2{
    margin-top: 5%;
  }

  .recommend-text{
  width:100%;  
  }

  .qa-question{
    display: block;
  }

  .yaji2{
  
    display: flex;
    justify-content: right;
  }

  .yaji2 img{
    width:5%;
   
  }
  .qa-answer{
    margin-bottom: 4%;
  }

  .price-category {
    width: 100%;
    margin: 0 auto;
}

  

  

}

 




/* =========================================================
   Color Page
   ========================================================= */

.organicTopTittle, .organicTopTittle2{
  font-family: 'Alegreya Sans SC', sans-serif;
  color: var(--color-primary);
  font-size: 7.0rem;
  font-weight: 300;
  margin-left:10% ;
  width: 90%;
  margin-top: 0;

}

.organicTopTittle2{
  text-align: right;
   margin-right:5% ;
   margin-left:0 ;
   margin-top: 1%;
   color: #E0692D;
}

.colorImg{
  margin-top: 2%;
  width:80%;
  margin: 0 auto;
 
}

.colorImg img{
  width:60%;
  margin: 0 auto;
}



.section-title2 h3{
  color: var(--color-primary);
}



.villaEplain{
  display: flex;
  width: 70%;
  margin-top: 5%;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;  
}

.villaEplain div {
  width: 50%;
 
}

.coloIngre{
  width: 40% !important;
  margin: 0 auto;
}

.lacaIngre{
 
  margin: 0 auto;
}

.colorDesc{
  margin-top: 3%;

}



.colorInfo{
  color: rgba(78,79,73);
  width: 85%;
}

.colorInfo h2{
  color:rgba(159,168,30);
  font-size: 2rem;

}

.colorDescription{
  font-size: 1.5rem;
}

.colorDescription2{
  font-size: 1rem;
}

.note{
  text-align: right;
  margin-top: 0.5%;
}

.orDes{
  margin-top: 3%;
}

.reco2{
  border-bottom: 2px solid #61824A ;
}

.retach{
  font-size: 1.6rem;
  font-weight: 300;
}

.colorPageAccess{
  color: var(--color-primary);
}

.price-title2{
  color: var(--color-primary);
}

@media screen and (max-width: 1000px) {
  .organicTopTittle, .organicTopTittle2{
    font-size: 5rem;
  }

  .colorImg{
    width:90%;
  }
}  

@media screen and (max-width: 600px) {
   .organicTopTittle, .organicTopTittle2{
    font-size: 4rem;
  }

  .organicTopTittle2{
    margin-top: 2%;
  }
  .colorImg{
    width:100%;
  }
}

@media screen and (max-width: 500px) {
  .villaEplain{
    width:85%;
  }

  .organicTopTittle{
    margin-left: 5%;

  }

  .organicTopTittle2{
    margin-left: 5%;
    margin-top: 3%;
  }

  .colorImg img{
    width:70%;
  }

  .special_styling_text{
    width:90%;
  }

   
}

@media screen and (max-width: 400px) {
  .organicTopTittle, .organicTopTittle2{
    font-size: 3rem;
  }
  .colorImg img{
    width:80%;
  }

  .organicTopTittle2{
    margin-top: 4%;
  }
}

.toiawase{
  margin-left: 5%;
 
}

.toiA{
  margin-top: 3%;
}


/* =========================================================
   Kitsuke
   ========================================================= */
.special_styling {
  margin: 0 auto;
  color: #222;
  margin-top: 3%;
}

.special_styling_inner {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 60px;
  align-items: center;
}

.special_styling_lead {
  margin: 0 0 24px;
  font-family: var(--font-base-sans);
  font-size: 2.4rem;
  line-height: 1.8;
}

.special_styling_title {
  margin-left:90px;
  margin-bottom: 40px;
  font-size: 2.4rem;
 font-family: var(--font-base-sans);
 font-weight: normal;
}

.special_styling_image img {
  width: 100%;
  height: auto;
  display: block;
}

.special_styling_catch {
  display: flex;
  flex-direction: column;
  gap: 28px;
  font-size: 20px;
  line-height: 3;
  text-align: center;
}

.special_styling_catch p:nth-child(1){
  text-align: left;
  margin-left: 2%;
}

.special_styling_catch p{
  font-size: 2.4rem;
}

.special_styling_catch p:nth-child(2){
  text-align: right;
   margin-left: 2%;
}

.special_styling_catch p:nth-child(3){
  text-align: left;
  margin-left: 2%;
}

.special_styling_catch p:nth-child(4){
  text-align: right;
   margin-left: 2%;
}

.special_styling_text {
  max-width: 950px;
  width:85%;
  margin: 8% auto 0;
  font-size: 16px;
  line-height: 2.2;
  font-family: var(--font-klee);
}
.kimono_price{
  max-width: 950px;
  margin: 0 auto;
}



/* タブレット */
@media (max-width: 1200px) {
  .special_styling_inner {
    grid-template-columns: 2.3fr 1fr;
    gap: 40px;
  }

  .special_styling_title {
    font-size: 24px;
  }

  .special_styling_catch {
    font-size: 18px;
  }
}

@media (max-width: 1000px) {
  .special_styling_inner {
    grid-template-columns: 2fr 1.3fr;
    gap: 40px;
  }

  .special_styling_catch p{
  font-size: 2rem;
  line-height: 2;
}
.special_styling_lead, .special_styling_title {

  font-size: 2rem;
  
}

}

/* スマホ */
@media (max-width: 767px) {
  .special_styling_lead {
  margin: 24px 0 24px;
  }
 

  .special_styling_inner {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }

  .special_styling_lead, .special_styling_title {

  font-size: 1.6rem;
  
}

  .special_styling_catch {
    font-size: 16px;
    gap: 20px;
   
  }

  


  .special_styling_catch p:nth-child(1),
  .special_styling_catch p:nth-child(2),
  .special_styling_catch p:nth-child(3),
  .special_styling_catch p:nth-child(4){
    margin: 0 auto;
    width: 60%;
    font-size: 16px;
  }

  .special_styling_text {
    margin-top: 32px;
    font-size: 16px;
  }

   .special_styling_lead{
    width:80%;
    margin: 0 auto;
    margin-bottom: 30px;
    margin-top: 20px;

  }
  .special_styling_title {
  
  width:80%;
  margin: 0 auto;
  padding-left:100px;
  margin-bottom: 30px;
  }

  .kimonotPrice{
    padding: 10%;
  }

  .kimono_price{
     width:100%;

  }

 
}



@media (max-width: 600px) {
  .special_styling_catch p:nth-child(1),
  .special_styling_catch p:nth-child(2),
  .special_styling_catch p:nth-child(3),
  .special_styling_catch p:nth-child(4){
    margin: 0 auto;
    width: 80%;
  }
}

@media (max-width: 400px) {
  .special_styling_title {
  margin-left:60px;
  text-align: right;
  width:80%;
  margin: 0 auto;
  margin-bottom: 30px;
  padding: 0;
  }

  .special_styling_text {
    width:95%;
  }
 
}


.info-section {
  width:90%;
  margin-left: 10%;
  margin-top: 7%;

}

.row {
  display: flex;

  margin-bottom: 50px;
}

.title {
  width: 200px;
}

.content {
  flex: 1;
  font-size: 16px;
  line-height: 1.8;
}

.priceKitsukeRow{
  margin-top: 15%;
}


.kimonoImage{
  width:90%;
  margin: 0 auto;
  margin-top: 10%;
  margin-bottom: 10%;
}

.gallery {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
}


.gallery-item {
  width: 30%;
  max-width: 250px;
  aspect-ratio: 3 / 4;   
  overflow: hidden;
  background: var(--color-white);
}


.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;    
  display: block;
}

@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .title {
    width: 100%;
    margin-bottom: 10px;
  }

  .priceKitsukeRow{
    margin-top: 20%;
  }

  .kimonoImage{
    margin-top: 0%;
  }

  .gallery-item {
    width: 45%;
  }

  .kimonoImage {
    width: 100%;
  }
}

@media (max-width: 500px) {

  .kimonoImage{
    margin-bottom: 20%;
}

  .gallery-item {
  width: 30%;
  max-width: 250px;
  min-width: 190px;
  }

  
  
}

@media (max-width: 450px) {
  .gallery-item {
  width: 30%;
  max-width: 250px;
  min-width: 130px;
  }
}

/* =========================================================
   Esthe
   ========================================================= */
.este-section{
  margin-top: 2%;
}
.esteTopTittle, .esteTopTittle2{
  font-family: 'klee one';
  font-size: 4.0rem;
  font-weight: 100;
  margin-left:10% ;
  width: 90%;
  margin-top: 0%;

}

.explanationDouble{
  font-size: 3.0rem;
}

.esteTopTittle{
  margin-bottom: 2%;
}

.esteTopTittle2{
  width:90%;
  margin: 0 auto;

  text-align: right;
}

.tittle2Top{
  padding-right: 18%;
  margin-top: 2%;
}

.concept-button {
  display: block;
  text-decoration: none;
  color: #fff;
  border-radius: 8px;
  padding: 10px 15px;
  transition: var(--transition-base);
}

.concept-button:hover {
  opacity: 0.9;
}

/* 色 */
.green {
  background: #8fa27d;
}

.pink {
  background: #eeb2b2;
}


.concept-title-en {
  font-size: 20px;
  margin-bottom: 8px;
}

.concept-title-ja {
  font-size: 16px;
}

.concept-text {
  margin-top: 18px;
  font-size: 20px;
}

.concept-wrap {
  display: flex;
  justify-content: center;
  gap: 120px;
  margin-top: 5%;
}


.concept-item {
  width: 320px;
  text-align: center;
}

.esteButonSection{
  margin-top: 5%;
  font-family: 'klee one';
}

.explanationDouble{
  width: 85%;
  margin: 0 auto;
  
 
}

@media (max-width: 1000px) {
  .esteTopTittle, .esteTopTittle2, .explanationDouble{
    font-size: 2.5rem;
  }

  .explanationDouble{
    width: 85%;
  }

  .concept-item {
    width: 280px;
    text-align: center;
  }

  .concept-wrap {
    gap: 80px;
  }
}

@media (max-width: 700px) {
  .este-section{
    margin-top: 3%;
  }

  .esteTopTittle, .esteTopTittle2, .explanationDouble, .explanationDouble{
    font-size: 2.2rem;
  }

  .tittle2Top{
    padding-right: 21%;
  }

  .concept-wrap {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 10%;
  }

  .concept-item {
    width: 100%;
    max-width: 350px;
  }

  .esteButonSection{
    margin-top: 8%;
  }
}

@media (max-width: 550px) {
  .explanationDouble{
    width: 90%;
  }
}

@media (max-width: 500px) {
  .tittle2Top{
    padding-right: 25%;
  }

  .explanationDouble{
    width: 90%;
    margin-top: 8%;
  }

  .concept-button {
    padding: 10px 13px;
  }

  .concept-item {
    width: 100%;
    max-width: 300px;
  }

  .concept-text {
    font-size: 1.8rem;
  }
}

@media (max-width: 400px) {
  .esteTopTittle, .esteTopTittle2{
    font-size: 2rem;
  }

  .tittle2Top{
    padding-right: 35%;
  }

  .explanationDouble{
    font-size: 1.8rem;
  }
}

@media (max-width: 350px) {
  .esteTopTittle, .esteTopTittle2{
    font-size: 1.8rem;
  }

  .concept-button {
    padding: 8px 13px;
  }

  .concept-item {
    width: 100%;
  }

  .concept-text {
    font-size: 1.6rem;
  }
}


  .rejuvenation {
  background-image: url("img/bg.png");
  padding: 60px 0px 80px;
  margin-top: 5%;
}

.rejuvenation__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.rejuvenation__eyebrow {
  margin: 0 0 40px;
  font-size: 3.0rem;
  color: #FE8C8C;
  font-family: 'ABeeZee', sans-serif;
  letter-spacing: 0.03em;
}

.rejuvenation__top {
  display: flex;
  justify-content: center;
  flex-direction: column;
  
  margin-bottom: 10%;
}

.rejuvenation__image {
  max-width: 300px;
  flex-shrink: 0;
  margin: 0 auto;
  margin-top: 5%;
}

.rejuvenation__image img {
  display: block;
  width: 80%;
  margin: 0 auto;
  height: auto;
}

.rejuvenation__lead {
  padding-left: 35%;
  padding-top: 5%;
}

.rejuvenation__lead p {
  font-family: 'klee one';
  margin: 0;
  font-size: 1.7rem;
  line-height: 2;
  color: #222;
}

.rejuvenation__content {
  width: 80%;
  margin: 0 auto;
  margin-top: 5%;
  display: flex;
  justify-content: left;
  align-items: flex-start;
  gap: 100px;
  margin-bottom: 50px;
}

.rejuvenation__sublead {
  margin: 0;
  font-family: 'klee one';
  font-size: 1.7rem;
  line-height: 1.8;
  color: var(--color-deep-green);
  white-space: nowrap;
}

.rejuvenation__list {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-bottom: 8px;
}

.rejuvenation__list li {
  position: relative;
  padding-left: 36px;
  font-family: 'klee one';
  font-size: 1.7rem;
  line-height: 1.8;
  margin-bottom: 8px;
  padding-top: 4px;
  color: #222;
}

.rejuvenation__list li::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -15px;
  width: 35px;
  height: 35px;

  background-image: url("img/check.png"); 
  background-size: contain;     
  background-repeat: no-repeat;
  background-position: center;
}



.rejuvenation__arrow {
  display: flex;
  justify-content: center;
  margin-bottom: 70px;
}

.rejuvenation__price {
  width: 60%;
  margin-left: 40%;
  color: #b56a1f;
  
}

.rejuvenation__menu,
.rejuvenation__price p {
  font-family: 'klee one';
  margin: 0 0 10px;
  font-size: 1.7rem;
}

.rejuvenation__note {
  width: 60%;
  margin-left: 40%;
  margin-top: 3%;
  font-size: 1.7rem;
  line-height: 1.9;
  color: #c07a34;
}

/* SP */

@media screen and (max-width: 1100px) {
.rejuvenation__lead {
  padding-left: 30%;
}

  .rejuvenation__price {
    width:65%;
  margin-left: 30%;
  }

  .rejuvenation__note {
    width:65%;
    margin-left: 30%;
  }

}

@media screen and (max-width:860px){
  .rejuvenation__lead {
    padding-left: 25%;
    padding-top: 8%;
  }
}

@media screen and (max-width: 767px) {
  main{
    overflow: hidden;
  }



  .rejuvenation__inner {
    max-width: 100%;
  }

  .rejuvenation__eyebrow {
    margin-bottom: 36px;
    font-size: 1.8rem;
  }

  .rejuvenation__top {
    display: block;
    margin-bottom: 50px;
  }

  .rejuvenation__image {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 36px;
  }

  .rejuvenation__lead {
    max-width: 100%;
    padding-left: 25%;
    padding-top: 5%;
  }

  .rejuvenation__lead p {
    font-size: 1.7rem;
    line-height: 1.9;
  }

  .rejuvenation__content {
    display: block;
    margin-bottom: 40px;
  }

  .rejuvenation__sublead {
    margin-bottom: 32px;
    font-size: 1.7rem;
    white-space: normal;
  }

  .rejuvenation__list li {
    
    font-size: 1.7rem;
    line-height: 1.8;
  }
  .rejuvenation__list {

    width:40%;
    margin:  0 auto;

  }



  .rejuvenation__arrow {
    margin-bottom: 32px;
    font-size: 4.5rem;
  }

  .rejuvenation__price {
    margin-left: 20%;
    width:60%;
    
  }

  .rejuvenation__menu,
  .rejuvenation__price p {
   
    font-size: 1.8rem;
    line-height: 1.8;
  }

  .rejuvenation__note {
    margin-left: 20%;
    width:80%;
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

@media screen and (max-width: 670px) {
  .rejuvenation__lead{
    padding-left: 20%;
  }

  .rejuvenation__note ,.rejuvenation__price {
    margin-left: 20%;
    width:90%;
  }

  .rejuvenation__list{
    width:60%;
    margin-left: 30%;
  }
}

@media screen and (max-width: 550px) {
  .rejuvenation__lead{
    padding-left: 5%;

  }

  .rejuvenation__note ,.rejuvenation__price {
    margin-left: 5%;
    width:95%;
   }
}

@media screen and (max-width: 500px) {
  .rejuvenation__lead{
    padding-left: 2%;

  }

  .rejuvenation__content {
    width:100%;


  }
  .rejuvenation__sublead{
    text-align: center;
  }

  .rejuvenation__list li{
    margin-bottom: 15px;
  }


}

@media screen and (max-width: 400px) {
  .rejuvenation__sublead{
    text-align: left;
    margin-bottom: 15%;
  }

  .rejuvenation__content{
    margin-bottom: 15%;

  }

  .rejuvenation__list{
   width:60%;
   margin: 0 auto;
  }

  .rejuvenation__list li{
    margin-bottom: 18px;
  }

  .rejuvenation__price{
    margin-top: 15%;
  }

  .rejuvenation__note ,.rejuvenation__price {
    margin-left: 0%;
    width:100%;
   }

   .explanationDouble{
    margin-top: 15%;
   }

  .concept-button {
    padding: 5px 4px;
    width:90%;
    margin: 0 auto;
    margin-top: 5%;
      
  }

  .rejuvenation__image {
    width: 75%;
    max-width: 320px;
    margin: 0 auto 36px;
  }

  

  
}

.rea_lead{
  padding-left:35%;
  padding-top: 2%;
}

.rea__content{
  margin-top: 5%;

}

.re_sub{
  text-align: center;
  margin-bottom: 3%;
  
}

.reaList{
  width:50%;
  margin: 0 auto;
  margin-left: 38%;
  
}

@media screen and (max-width: 1100px) {
  .rea_lead{
    padding-left:28%;
  }

  .reaList{
    margin-left: 32%;
  }

  .rea__content{
    margin-top: 8%;
  }

  .re_sub{
    margin-bottom: 6%;
  }
}

@media screen and (max-width: 767px) {
  .rea_lead{
    padding-left:23%;
  }

  .rea__content{
    margin-top: 10%;
  }

  .re_sub{
    margin-bottom: 8%;
  }

  .reaList{
    margin-left: 25%;
    width:70%;
  }
}

@media screen and (max-width: 670px) {
  .rea_lead{
    padding-left:22%;
    padding-top: 3%;
  }
}

@media screen and (max-width: 550px) {
  .rea_lead{
    padding-left:15%;
  }

  .reaList{
    margin-left: 18%;
    width:80%;
  }
}

@media screen and (max-width: 500px) {
  .rea_lead{
    padding-left:12%;
  }

  .reaList{
    margin-left: 15%;
    width:88%;
  }
}

@media screen and (max-width: 400px) {
  .rea_lead{
    padding-left:5%;
    padding-right: 2%;
  }

  .reaList{
    margin-left: 10%;
  }

  .re_sub{
    margin-bottom: 12%;
    text-align:left;
  }
}



.price2{
  background-image: none;
  padding-top: 5%;
  margin-top: 0%;
}

.price2 .accordion-header{
  font-size: 2.0rem;
}

.rea_detail{
  width: 55%;
  margin-left: 45%;
  margin-top: 1%;
  display: flex;
  justify-content: space-between;
}

.rea_ti{
  width: 55%;
  margin-left: 45%;
  margin-top: 2%;
}

@media screen and (max-width: 1000px) {
  .rea_detail{
  width: 60%;
  margin-left: 30%;
}

.rea_ti{
  width: 60%;
  margin-left: 30%;
}
}

@media screen and (max-width: 900px) {
   .rea_detail{
  width: 70%;
  margin-left: 30%;
}

.rea_ti{
  width: 70%;
  margin-left: 30%;
}
}

@media screen and (max-width: 767px) {
  .rea_detail{
  width: 100%;
  margin-left: 0%;
}

.rea_ti{
  width: 100%;
  margin-left: 0%;
}

.price2{
  padding-top: 7%;
}
}

@media screen and (max-width: 500px) {
  .rea_detail{
    flex-direction: column;
    margin-top: 3%;
  }

  .rea_end{
    margin-top: 3%;
  }

  .price2 .accordion-header{
  font-size: 1.8rem;
}
}

.sp_400{
  display: none;
}

@media screen and (max-width: 400px) {
  .sp_400{
    display: block;
  }

  .rea_ti{
    margin-bottom: 3%;
  }

  .price2{
  padding-top: 12%;
}

.price2 .accordion-header{
  font-size: 1.6rem;
}


}

.esteImgSec {
  display: flex;
  justify-content: center; 
  gap: 60px; 
  padding: 40px 0;
}

.esteImg {
  width: 300px;   
  height: 200px;  
  overflow: hidden; 
}

.esteImg img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}

@media screen and (max-width: 650px) {
  .esteImgSec {
    flex-direction: column;
    justify-content: center;
  }

  .esteImg {
    margin: 0 auto;
  }

}

.esImgTitle{
  display: block;

}

.rejuvenation__eyebrow2{
  padding-top: 5%;
}

.relaSec, .price2{
  background-image: url(img/reaBack.png);
}

.price2{
   padding-bottom: 8%;
}



.esteImg{
  width: 300px;   
  height: 200px;  
  overflow: hidden; 
}

.esteImg img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}

@media screen and (max-width: 650px) {
  .esteImgSec {
    flex-direction: column;
    justify-content: center;
  }

  .esteImg {
    margin: 0 auto;
  }

  

}

@media screen and (max-width: 400px) {
  .esteImg{
  width: 250px;   
  height: 180px; 
  }
}

.esImgTitle{
  display: block;

}

.rejuvenation__eyebrow2{
  padding-top: 8%;
}

.relaSec, .price2{
  background-image: url(img/reaBack.png);
}

.price2{
   padding-bottom: 8%;
}

@media screen and (max-width: 765px) {
  .rejuvenation__eyebrow2{
  padding-top: 10%;
}
}

@media screen and (max-width: 600px) {
  .rejuvenation__eyebrow2{
  padding-top: 15%;
}
}

@media screen and (max-width: 400px) {
  .rejuvenation__eyebrow2{
  padding-top: 20%;
}
}



