﻿/* ===== SALON HERO (top page style) ===== */
.salon-hero{
  position:relative;
  min-height:92vh;
  padding:120px 80px 80px;
  background:var(--cream);
  overflow:hidden;
}
.salon-hero .hero-mv-bg{
  position:absolute;
  inset:0;
  background:url('../image/salon-hero.png') center right / contain no-repeat;
  pointer-events:none;
}

.salon-hero .hero-mv-bg::after{
   content: '';
   position: absolute;
   left: 0;
   right: 0;
   height: 100%;
   background: linear-gradient(to left, transparent 0%, rgba(255,255,255,.41) 10%,rgb(255 255 255 / 78%) 20%, var(--cream) 100%);
   pointer-events: none;
   width: 56%;
  }
  
.salon-hero .hero-mv-inner{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:0 auto;
  min-height:72vh;
  padding-top:20vh;
}
.salon-hero .hero-mv-tag{
  margin:0 0 20px;
  font-size:10px;
  letter-spacing:.45em;
  color:var(--moss);
  display:flex;
  align-items:center;
  gap:12px;
  opacity:0;
  animation:fadeUp .9s .15s forwards;
}
.salon-hero .hero-mv-tag::before{
  content:'';
  width:32px;
  height:1px;
  background:var(--moss);
}
.salon-hero .hero-mv-title{
  font-family:var(--serif);
  font-size:clamp(28px,3.2vw,42px);
  font-weight:500;
  line-height:1.65;
  letter-spacing:.06em;
  color:var(--ink);
  margin-bottom:28px;
  opacity:0;
  animation:fadeUp .9s .2s forwards;
}
.salon-hero .hero-mv-em{
  color:var(--moss);
}
.salon-hero .hero-mv-lead{
  font-size:clamp(14px,1.6vw,20px);
  color:var(--muted);
  line-height:2.3;
  opacity:0;
  animation:fadeUp .9s .35s forwards;
}
.salon-hero .hero-mv-accent{
  display:block;
  margin-top:36px;
  font-family:var(--hand);
  font-size:clamp(18px,2vw,26px);
  font-weight:400;
  letter-spacing:.12em;
  color:#b07d7d;
  line-height:1.8;
  opacity:0;
  animation:fadeUp .9s .48s forwards;
}

.salon-hero .hero-mv-title-narrow,
.salon-hero .hero-mv-lead-narrow,
.salon-hero .hero-mv-accent-narrow{
  display:none;
}
.salon-content-grid{
  display:grid;
}
.page-section.access{
  padding:20px 80px;
}
.page-section.philosophy{
  padding:40px 80px;
}
.salon-philosophy-header{
  margin-bottom:40px;
}
.salon-philosophy-text{
  font-family:var(--serif);
  font-size:clamp(18px,2.8vw,28px);
  line-height:1.75;
  letter-spacing:.04em;
  color:var(--ink);
  margin:0;
}

/* Salon space — multi-card slide carousel */
.salon-space-carousel{
  display:flex;
  align-items:center;
  gap:clamp(10px,2vw,18px);
  max-width:min(1120px,100%);
  margin:0 auto;
  user-select:none;
  -webkit-user-select:none;
}
.salon-space-carousel.is-dragging{
  cursor:grabbing;
}
.salon-space-viewport{
  flex:1;
  min-width:0;
  overflow:hidden;
  touch-action:pan-y pinch-zoom;
  cursor:grab;
}
.salon-space-viewport.is-dragging,
.salon-space-track.is-dragging{
  cursor:grabbing;
}
.salon-space-track{
  display:flex;
  will-change:transform;
}
.salon-space-slide{
  flex:0 0 auto;
  margin:0;
  box-sizing:border-box;
}
.salon-space-card{
  margin:0;
  display:flex;
  flex-direction:column;
  height:100%;
  border:1px solid #E2E8EE;
  border-radius:12px;
  overflow:hidden;
  background:var(--white);
  box-shadow:0 4px 14px rgba(28,26,23,.06);
}
.salon-space-media{
  position:relative;
  width:100%;
  aspect-ratio:1/1;
  background:var(--cream-dark);
  overflow:hidden;
}
.salon-space-media img{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
  object-position:center;
  background:var(--cream-dark);
  pointer-events:none;
}
.salon-space-cap{
  padding:12px 14px 14px;
  font-family:var(--sans);
  font-size:clamp(11px,2.6vw,12px);
  font-weight:400;
  letter-spacing:.08em;
  color:var(--ink-soft);
  text-align:center;
  border-top:1px solid var(--border-light);
  background:var(--white);
}
.salon-space-arrow{
  flex:0 0 auto;
  display:grid;
  place-items:center;
  width:clamp(40px,5vw,48px);
  height:clamp(40px,5vw,48px);
  padding:0;
  border:none;
  border-radius:50%;
  background:#7EB8D4;
  color:#fff;
  box-shadow:0 4px 12px rgba(74,140,170,.28);
  cursor:pointer;
  transition:transform .2s,box-shadow .2s,background .2s;
}
.salon-space-arrow svg{
  width:22px;
  height:22px;
}
.salon-space-arrow:hover{
  background:#6AA9C8;
  transform:translateY(-1px);
  box-shadow:0 6px 16px rgba(74,140,170,.34);
}
.salon-space-arrow:active{
  transform:translateY(0);
}
.treat-card{
    position: relative;
}
.treat-card p {
    font-size: 12px;
    line-height: 1.95;
    max-width: 71%;
}
.salon-treat-media{
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .25) 28%, #000 72%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .25) 28%, #000 72%);
    opacity: .88;
}

.salon-menu-cta{
  text-align:center;
  margin-top:56px;
}
.salon-menu-grid{
  gap:clamp(20px,4vw,32px);
}

@media screen and (max-width: 560px) {
  .salon-space-carousel{
    gap:8px;
  }

  .salon-space-arrow{
    width:36px;
    height:36px;
  }

  .salon-space-arrow svg{
    width:18px;
    height:18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .salon-space-track{
    transition:none !important;
  }
}

@media screen and (max-width: 900px) {
  .page-section.access{
    padding:20px 32px;
  }

  .page-section.philosophy{
    padding:40px 32px;
  }

  .salon-hero{
    padding:clamp(72px,18vw,88px) clamp(18px,4.5vw,24px) clamp(32px,6vw,40px);
    min-height:auto;
  }

  .salon-hero .hero-mv-bg{
    position:absolute;
    z-index:0;
    top:0;
    left:0;
    right:0;
    bottom:auto;
    height:100%;
    background: url(../image/salon-hero.png) no-repeat right;
  }

  .salon-hero .hero-mv-bg::after{
    content: '';
        position: absolute;
        left: 0;
        right: 0;
        height: 100%;
        background: linear-gradient(to right, transparent, var(--cream));
        pointer-events: none;
        width: 40%;
  }

  .salon-hero .hero-mv-inner{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    width:100%;
    max-width:100%;
    min-height:auto;
    padding-top:12vh;
  }

  .salon-hero .hero-mv-title-wide,
  .salon-hero .hero-mv-lead-wide,
  .salon-hero .hero-mv-accent-wide{
    display:none;
  }

  .salon-hero .hero-mv-title-narrow,
  .salon-hero .hero-mv-lead-narrow,
  .salon-hero .hero-mv-accent-narrow{
    display:block;
  }

  .salon-hero .hero-mv-tag{
    margin-bottom:14px;
    font-size:9px;
  }

  .salon-hero .hero-mv-title{
    max-width:100%;
    text-align:left;
    font-size:clamp(20px,5.2vw,26px);
    line-height:1.78;
    letter-spacing:.05em;
    margin-bottom:14px;
  }

  .salon-hero .hero-mv-lead{
    max-width:100%;
    text-align:left;
    font-size:clamp(10px,2.8vw,13px);
    line-height:2.05;
    color:#7A7570;
    font-family:var(--sans);
    font-weight:300;
  }

  .salon-hero .hero-mv-accent{
    max-width:100%;
    text-align:left;
    margin-top:clamp(16px,4vw,22px);
    font-family:var(--serif);
    font-size:clamp(14px,3.8vw,18px);
    font-weight:500;
    line-height:1.85;
    letter-spacing:.08em;
    color:#a86858;
  }
  .tr3{
    right: -4% !important;
    }
}

@media screen and (max-width: 560px) {
  .salon-hero{
    padding:70px 20px 0;
  }

  .salon-hero .hero-mv-bg{
    height:100%;
    background-size:108% auto;
    background-position:center top;
    top:70px;
  }

  .salon-hero .hero-mv-bg::after{
    height:100%;
    width: 64%;
    /* background:linear-gradient(to bottom,rgba(255,255,255,.41),var(--cream)); */
    background: linear-gradient(to left, transparent 0%, rgba(255,255,255,.41) 10%,rgb(255 255 255 / 78%) 20%, var(--cream) 100%);
  }

  .salon-hero .hero-mv-inner{
    padding-top: clamp(168px, 32vw, 289px);
    padding-bottom: 20px;
  }

  .salon-hero .hero-mv-title{
    font-size:clamp(19px,5.1vw,22px);
  }

  .salon-hero .hero-mv-lead{
    font-size:10px;
    line-height:2;
    color:#8A837C;
  }

  .salon-hero .hero-mv-accent{
    margin-top:18px;
    font-size:clamp(14px,3.8vw,16px);
  }
  .tr3{
    right: -10% !important;
    }
}

/* Salon — larger map & note (guide page keeps default in access.css) */
#access .gh-access-map iframe{
  height:clamp(360px,78vw,480px);
}
#access .gh-map-note{
  top:clamp(14px,3vw,18px);
  left:clamp(14px,3vw,18px);
  right:clamp(14px,3vw,18px);
  gap:10px 14px;
  padding:clamp(16px,3.5vw,20px) clamp(14px,3vw,16px);
  border-radius:14px;
  box-shadow:0 2px 12px rgba(60,64,67,.2),0 0 1px rgba(60,64,67,.12);
}
#access .gh-map-note-title{
  margin-bottom:8px;
  font-size:clamp(14px,3.5vw,17px);
}
#access .gh-map-note-addr,
#access .gh-map-note-tel{
  font-size:clamp(12px,3vw,13px);
  line-height:1.65;
}
#access .gh-map-note-tel{
  margin-top:6px;
}
#access .gh-map-note-actions{
  gap:10px;
}
#access .gh-map-note-btn{
  width:clamp(40px,9.5vw,44px);
  height:clamp(40px,9.5vw,44px);
}
#access .gh-map-note-btn svg{
  width:clamp(18px,4.5vw,20px);
  height:clamp(18px,4.5vw,20px);
}

@media screen and (max-width: 560px) {
  #access .gh-access-map iframe{
    height:clamp(320px,72vw,400px);
  }

  #access .gh-map-note{
    top:12px;
    left:12px;
    right:12px;
    padding:16px 14px;
  }

  #access .gh-map-note-title{
    font-size:clamp(13px,3.4vw,15px);
  }

  #access .gh-map-note-addr,
  #access .gh-map-note-tel{
    font-size:clamp(11px,2.9vw,12px);
  }

  #access .gh-map-note-btn{
    width:40px;
    height:40px;
  }

  #access .gh-map-note-btn svg{
    width:18px;
    height:18px;
  }
}

/* Salon — access body fills map column height (desktop) */
@media screen and (min-width: 901px) {
  #access .gh-access-wrap{
    align-items:stretch;
  }

  #access .gh-access-body{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    margin-top:0;
    min-height:clamp(360px,78vw,480px);
    padding:clamp(4px,0.6vw,8px) 0;
  }

  #access .gh-access-salon{
    font-size:clamp(22px,2.4vw,28px);
    margin-bottom:clamp(6px,0.8vw,10px);
    flex-shrink:0;
  }

  #access .gh-access-list{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:space-evenly;
    min-height:0;
  }

  #access .gh-access-item{
    grid-template-columns:minmax(72px,5.5em) 1fr;
    gap:clamp(14px,1.5vw,20px);
    align-items:center;
    padding:clamp(10px,1.2vw,18px) 0;
    border-bottom:1px solid #ece6de;
  }

  #access .gh-access-item:last-child{
    padding-bottom:clamp(10px,1.2vw,18px);
    border-bottom:none;
  }

  #access .gh-access-item dt{
    font-size:clamp(15px,1.5vw,18px);
  }

  #access .gh-access-item dd{
    font-size:clamp(15px,1.6vw,19px);
    line-height:1.75;
  }

  #access .gh-access-link{
    flex-shrink:0;
    align-self:flex-start;
    margin-top:0;
    padding:clamp(10px,1.1vw,14px) clamp(28px,2.8vw,36px);
    font-size:clamp(14px,1.4vw,16px);
  }
}

@media screen and (max-width: 900px) {
  #access .gh-access-body{
    margin-top:clamp(16px,4vw,24px);
    text-align: center;
  }

  #access .gh-access-salon{
    font-size:clamp(18px,4.5vw,22px);
    margin-bottom:clamp(12px,3vw,16px);
  }

  #access .gh-access-item dt{
    font-size:clamp(12px,3vw,14px);
  }

  #access .gh-access-item dd{
    font-size: clamp(11px, 3.2vw, 14px);
  }

  #access .gh-access-link{
    padding:10px 28px;
    font-size:clamp(12px,3vw,14px);
  }
}

/* Salon FAQ — accordion */
.page-section.alt.salon-faq-section{
  background:var(--cream);
}
.salon-faq{
  max-width:860px;
  margin:0 auto;
  border-top:1px solid var(--border-light);
}
.salon-faq-item{
  border-bottom:1px solid var(--border-light);
}
.salon-faq-trigger{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:clamp(12px,2vw,18px);
  width:100%;
  padding:clamp(22px,3.5vw,28px) 0;
  border:none;
  background:transparent;
  text-align:left;
  cursor:pointer;
}
.salon-faq-label{
  font-family:var(--serif);
  font-size:clamp(18px,2.4vw,22px);
  font-weight:500;
  line-height:1.4;
  color:#A85858;
  flex-shrink:0;
}
.salon-faq-question{
  font-family:var(--sans);
  font-size:clamp(14px,2.8vw,16px);
  font-weight:400;
  line-height:1.85;
  letter-spacing:.04em;
  color:var(--ink-soft);
  transition:color .25s;
}
.salon-faq-item.is-open .salon-faq-question{
  color:#A85858;
}
.salon-faq-icon{
  display:block;
  width:1.2em;
  font-family:var(--serif);
  font-size:clamp(20px,3vw,24px);
  font-weight:400;
  line-height:1;
  color:#C9A86A;
  text-align:center;
}
.salon-faq-icon::after{
  content:'+';
}
.salon-faq-item.is-open .salon-faq-icon{
  color:#A85858;
}
.salon-faq-item.is-open .salon-faq-icon::after{
  content:'—';
}
.salon-faq-panel{
  display:grid;
  grid-template-rows:0fr;
  min-height:0;
  transition:grid-template-rows .35s ease;
}
.salon-faq-item.is-open .salon-faq-panel{
  grid-template-rows:1fr;
}
.salon-faq-answer{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:clamp(12px,2vw,18px);
  min-height:0;
  overflow:hidden;
  padding:0;
}
.salon-faq-item.is-open .salon-faq-answer{
  padding:0 0 clamp(22px,3.5vw,30px);
}
.salon-faq-answer p{
  margin:0;
  font-family:var(--sans);
  font-size:clamp(13px,2.6vw,14px);
  font-weight:400;
  line-height:2;
  letter-spacing:.03em;
  color:var(--ink-soft);
}

@media (prefers-reduced-motion: reduce) {
  .salon-faq-panel{
    transition:none;
  }
}

/* ===== Salon page — SP / tablet responsive ===== */
@media screen and (max-width: 900px) {
  .page-section.salon-space,
  .page-section.warm,
  .page-section.alt.salon-faq-section{
    padding-top:72px;
    padding-bottom:72px;
  }

  .salon-philosophy-header{
    margin-bottom:28px;
  }

  .salon-philosophy-text{
    font-size:clamp(17px,4.2vw,22px);
    line-height:1.8;
  }

  .salon-space-carousel{
    max-width:100%;
  }

  .treat-card{
    display:flex;
    flex-direction:column;
    min-height:auto;
    padding:28px 24px 24px;
  }

  .treat-card h3,
  .treat-card p{
    max-width:80%;
    padding-right:0;
  }

  .treat-card h3{
    font-size:clamp(19px,4.4vw,22px);
  }

  .salon-treat-media{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    /* height: auto; */
    max-height: clamp(160px, 34vw, 220px);
    /* margin-top: 18px; */
    object-fit: contain;
    object-position: right;
    mask-image: none;
    -webkit-mask-image: none;
    opacity: 0.7;
    border-radius: 6px;
    z-index: -2;
  }

  .salon-menu-cta{
    margin-top:40px;
  }

  .salon-menu-cta .btn-primary{
    width:100%;
    max-width:320px;
  }
}

@media screen and (max-width: 560px) {
  .page-section.access,
  .page-section.philosophy,
  .page-section.salon-space,
  .page-section.warm,
  .page-section.alt.salon-faq-section{
    padding:56px 20px;
  }

  .page-section.access{
    padding-top:48px;
    padding-bottom:56px;
  }

  .salon-philosophy-header{
    margin-bottom:20px;
  }

  .salon-philosophy-text{
    font-size:clamp(16px,4.4vw,19px);
    line-height:1.85;
  }

  .salon-space-carousel{
    gap:6px;
  }

  .salon-space-card{
    border-radius:10px;
  }

  .salon-space-media{
    aspect-ratio:1;
  }

  .salon-space-cap{
    padding:10px 12px 12px;
    font-size:11px;
  }

  .salon-space-arrow{
    width:32px;
    height:32px;
    box-shadow:0 3px 10px rgba(74,140,170,.24);
  }

  .salon-space-arrow svg{
    width:16px;
    height:16px;
  }

  .salon-menu-grid{
    gap:16px;
  }

  .treat-card{
    padding:24px 20px 20px;
  }

  .treat-card h3{
    font-size:clamp(18px,4.8vw,20px);
    margin-bottom:12px;
  }

  .treat-card p{
    font-size:12px;
    line-height:1.95;
    max-width: 71%;
  }

  .salon-treat-media{
    max-height:clamp(140px,38vw,200px);
    margin-top:0;
    top: 4px;
    right: 0;
    width: 50%;
  }

  .salon-menu-cta{
    margin-top:32px;
  }

  .salon-menu-cta .btn-primary{
    max-width:none;
    padding:10px 20px;
    font-size:16px;
    display: flex;
    justify-content: center;
  }

  .salon-faq-trigger{
    gap:10px;
    padding:18px 0;
  }

  .salon-faq-label{
    font-size:17px;
  }

  .salon-faq-question{
    font-size:13px;
    line-height:1.75;
  }

  .salon-faq-icon{
    font-size:18px;
  }

  .salon-faq-answer{
    gap:10px;
  }

  .salon-faq-item.is-open .salon-faq-answer{
    padding-bottom:20px;
  }

  .salon-faq-answer p{
    font-size:12px;
    line-height:1.9;
  }

  #access .gh-access-body{
    margin-top:20px;
  }

  #access .gh-access-salon{
    font-size:clamp(17px,4.6vw,20px);
  }

  #access .gh-access-item{
    gap:10px;
    padding:14px 0;
  }

  #access .gh-access-link{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    text-align:center;
  }
}

@media screen and (max-width: 380px) {
  .sec-en{
    display:none;
  }

  .sec-header{
    flex-wrap:wrap;
    align-items:center;
    gap:0;
    margin-bottom:44px;
  }

  .sec-jp{
    font-size:clamp(22px,6vw,26px);
    line-height:1.45;
    letter-spacing:.06em;
  }

  .sec-line{
    flex:1 1 100%;
    margin:12px 0 0;
  }

  .salon-hero .hero-mv-inner{
    padding-top: 8vh;
  }

  .salon-hero .hero-mv-title{
    font-size:18px;
  }

  .salon-space-arrow{
    width:28px;
    height:28px;
  }

  .salon-treat-media{
    max-height:clamp(140px,38vw,200px);
    margin-top:0;
    top: 24px;
    right: 0;
    width: 50%;
  }

  .salon-faq-question{
    font-size:12px;
  }
}
