/* =========================================
   Components – sora-salon
   ========================================= */

/* =========================================
   Buttons
   ========================================= */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--ff-sans);
  font-size: 16px;
  font-weight: 400;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .18s ease, transform .18s ease;
  letter-spacing: 0.04em;
}
.btn:hover{ opacity: .82; text-decoration: none; transform: translateY(-1px); }
.btn strong,
.btn b {
  font-weight: normal;
}

.btn-primary{ background: var(--c-blue); color: #fff; border-color: var(--c-blue); }
.btn-line{
  background: var(--c-line);
  color: #fff;
  border-color: var(--c-line);
  box-shadow: 0 4px 0 var(--c-line-shadow);
}
.btn-line:hover{ box-shadow: 0 2px 0 var(--c-line-shadow); transform: translateY(2px); }
.btn-accent{ background: var(--c-accent); color: #fff; border-color: var(--c-accent); }
.btn-ghost{
  background: transparent;
  border-color: var(--c-blue);
  color: var(--c-blue);
}
.btn-ghost:hover{ background: var(--c-blue); color: #fff; }
.btn-dark{
  background: #444;
  color: #fff;
  border-color: #444;
}
.btn-outline-white{
  background: transparent;
  border-color: #fff;
  color: #fff;
}

/* icon */
.btn__icon{
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* =========================================
   Heading component (h2 en + jp)
   ========================================= */

.heading{
  margin-bottom: 40px;
  text-align: center;
}

.heading__en{
  display: block;
  font-family: var(--ff-en);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.15em;
  color: var(--c-blue);
  margin-bottom: 6px;
}

.heading__jp{
  display: block;
  font-family: var(--ff-serif);
  font-size: 32px;
  line-height: 1.5; /* 48px */
  color: var(--c-text);
}

/* reverse variant */
.heading.is-reverse .heading__en{ color: var(--c-muted); }
.heading.is-reverse .heading__jp{ color: var(--c-blue); }

/* left aligned variant */
.heading.is-left{ text-align: left; }

/* =========================================
   PC 追従LINE ボタン（画面右固定・スライドアニメーション）
   ========================================= */

.float-line-pc {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: block;
  text-decoration: none;
  line-height: 0;
  cursor: pointer;
  /* スライド展開のためにwidth遷移 */
  width: 80px;
  height: 80px;
  overflow: hidden;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.float-line-pc:hover {
  width: 375px;
}

.float-line-pc__img {
  display: block;
  height: 80px;
  width: auto;
  position: absolute;
  right: 0;
  top: 0;
}

/* 閉じた画像: 右端80px常に表示。ホバーでフェードアウト */
.float-line-pc__img--closed {
  width: 80px;
  opacity: 1;
  transition: opacity 0.15s;
  z-index: 2;
}

/* 開いた画像: 375px幅、右端固定。ホバーでフェードイン */
.float-line-pc__img--open {
  width: 375px;
  opacity: 0;
  transition: opacity 0.25s 0.15s; /* スライド後にフェードイン */
  z-index: 1;
}

.float-line-pc:hover .float-line-pc__img--closed {
  opacity: 0;
}
.float-line-pc:hover .float-line-pc__img--open {
  opacity: 1;
}

/* SP では非表示 */
@media (max-width: 767px) {
  .float-line-pc { display: none; }
}

/* =========================================
   SP 追従LINE ボタン（画面下固定）
   ========================================= */

.float-line-sp {
  display: none;
}

@media (max-width: 767px) {
  .float-line-sp {
    display: block;
    position: fixed;
    bottom: 8px;
    left: 10px;
    right: 10px;
    z-index: 1000;
    line-height: 0;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    /* 初期: 非表示（スクロール後に表示） */
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.3s, transform 0.3s;
  }
  .float-line-sp.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .float-line-sp img {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* =========================================
   Page Hero (inner page header strip)
   ========================================= */

.page-hero{
  background: var(--c-light-blue);
  padding: 100px 0 50px;
  text-align: center;
}

.page-hero__en{
  display: block;
  font-family: var(--ff-en);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--c-blue);
  margin-bottom: 8px;
}

.page-hero__title{
  font-family: var(--ff-serif);
  font-size: 36px;
  line-height: 1.4;
  color: var(--c-blue);
  margin: 0;
}

/* =========================================
   Breadcrumb
   ========================================= */

.breadcrumb-wrap{
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
}

.breadcrumb{
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
  font-family: var(--ff-sans);
  font-size: 13px;
  color: var(--c-muted);
  list-style: none;
  margin: 0;
  flex-wrap: wrap;
}

.breadcrumb li + li::before{
  content: "›";
  margin-right: 4px;
  color: var(--c-muted);
}

.breadcrumb a{
  color: var(--c-blue);
  text-decoration: underline;
}
.breadcrumb a:hover{ color: var(--c-blue); }
.breadcrumb [aria-current="page"]{ color: var(--c-text); }

/* =========================================
   Menu Page (shared across menu pages)
   ========================================= */

.menu-page{
  padding: 48px 0 0;
}

.menu-page__intro{
  text-align: center;
  max-width: 960px;
  margin: 0 auto 48px;
}

.menu-page__intro-text{
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.75; /* 28px */
  color: #666666;
  margin: 0 0 12px;
}

.menu-page__intro-note{
  font-size: 14px;
  line-height: 2; /* 28px */
  color: #666666;
  margin: 0;
}

.menu-page__section-header{
  text-align: center;
  margin-bottom: 40px;
}

.menu-page__section-en{
  display: block;
  font-family: var(--ff-en);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--c-blue);
  margin-bottom: 8px;
}

.menu-page__section-title{
  font-family: var(--ff-serif);
  font-size: 32px;
  line-height: 1.5; /* 48px */
  color: #333333;
  margin: 0;
  font-weight: 600;
}

/* =========================================
   Price Cards (4 column grid)
   ========================================= */

.price-cards{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 64px;
}

.price-card{
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: relative;
  z-index: 1;
}
.price-card:nth-child(2),
.price-card:nth-child(4) {
  background: #FAFAFA;
}
.price-card:hover {
  z-index: 2;
}

.price-card__header{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  text-align: center;
  font-family: var(--ff-serif);
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  letter-spacing: .05em;
}

/* カード色グラデーション */
.price-card:nth-child(1) .price-card__header{ background: #EAF3F9; color: #4A7FA7; }
.price-card:nth-child(2) .price-card__header{ background: #BFD7E8; color: #4A7FA7; }
.price-card:nth-child(3) .price-card__header{ background: #6FA2C6; color: #FFFFFF; }
.price-card:nth-child(4) .price-card__header{ background: #4A7FA7; color: #FFFFFF; }

.price-card__body{
  padding: 20px 16px 30px;
}

.price-card__item{
  text-align: center;
  margin-bottom: 20px;
}
.price-card__item:last-child{ margin-bottom: 0; }

.price-card__item:first-child {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #DEDEDE;
}

.price-card__label{
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #666666;
  margin-bottom: 4px;
  font-family: var(--ff-sans);
}

.price-card__price{
  display: block;
  font-weight: 700;
  color: var(--c-text);
  font-family: var(--ff-sans);
  letter-spacing: .02em;
}

.price-card__item:first-child .price-card__price {
  font-size: 40px;
  line-height: 1;
}
.price-card__item:first-child .price-card__price small {
  font-size: 20px;
  margin-left: 2px;
}

.price-card__item:nth-child(n+2) .price-card__price {
  font-size: 30px;
  line-height: 1;
}
.price-card__item:nth-child(n+2) .price-card__price small {
  font-size: 16px;
  margin-left: 2px;
}

.price-card__empty{
  text-align: center;
  color: var(--c-muted);
  font-size: 14px;
  margin: 0;
}

/* =========================================
   Hairset Section (table + images)
   ========================================= */

.hairset-section{
  background: #f5f8fa;
  padding: 64px 0;
  margin-bottom: 64px;
}

.hairset-section__inner{
  display: flex;
  gap: 48px;
  align-items: center;
  max-width: var(--container-width, 1000px);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.hairset-section__table-side{
  flex: 1;
  min-width: 0;
}

.hairset-section__title{
  font-family: var(--ff-serif);
  font-size: 24px;
  line-height: 1.5; /* 36px */
  color: #333333;
  margin: 0 0 24px;
  text-align: center;
}

.hairset-table{
  width: 100%;
  border-collapse: collapse;
}

.hairset-table tr{
  background: #fff;
}
.hairset-table tr:nth-child(even){
  background: #F9F9F9; /* 画像のような薄いグレー背景 */
}

.hairset-table td{
  padding: 24px 32px; /* 画像のように上下に広めの余白 */
}

.hairset-table__name{
  font-family: var(--ff-sans);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3; /* 26px */
  color: #333333;
}

.hairset-table__price{
  text-align: right;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 30px;
  color: #4A7FA7;
  white-space: nowrap;
}
.hairset-table__price small{
  font-weight: 600;
  font-size: 16px;
  color: #4A7FA7;
}

.hairset-section__images{
  flex: 1;
}

.hairset-images-wrapper{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.hairset-section__img-item{
  border-radius: 8px;
  overflow: hidden;
}

.hairset-section__img-item img{
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

/* =========================================
   Menu Gallery Section
   ========================================= */

.menu-gallery-section{
  padding: 64px 0;
  background: #f9fafb;
}

.menu-gallery-section__en{
  display: block;
  text-align: center;
  font-family: var(--ff-en);
  font-size: 13px;
  letter-spacing: .18em;
  color: var(--c-blue);
  margin-bottom: 8px;
}

.menu-gallery-section__title{
  text-align: center;
  font-family: var(--ff-serif);
  font-size: 24px;
  color: var(--c-blue);
  margin: 0 0 32px;
}

.menu-gallery__tabs{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.menu-gallery__tab{
  background: none;
  border: 1.5px solid var(--c-blue);
  border-radius: 50px;
  padding: 8px 24px;
  font-family: var(--ff-sans);
  font-size: 14px;
  color: var(--c-blue);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.menu-gallery__tab:hover{
  background: rgba(67,139,168,.08);
}
.menu-gallery__tab.is-active{
  background: var(--c-blue);
  color: #fff;
}

.menu-gallery__panel{
  display: none;
}
.menu-gallery__panel.is-active{
  display: block;
}

.menu-gallery__grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.menu-gallery__item{
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
}

.menu-gallery__item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.menu-gallery__item:hover img{
  transform: scale(1.05);
}

.menu-gallery__empty{
  text-align: center;
  color: var(--c-muted);
  font-size: 14px;
  padding: 24px;
}

.menu-gallery__link-wrap{
  text-align: center;
  margin-top: 32px;
}

.menu-gallery__link{
  display: inline-block;
  padding: 12px 32px;
  border: 1.5px solid var(--c-blue);
  border-radius: 50px;
  color: var(--c-blue);
  font-family: var(--ff-sans);
  font-size: 14px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.menu-gallery__link:hover{
  background: var(--c-blue);
  color: #fff;
  text-decoration: none;
}
.menu-gallery__link span{
  margin-left: 4px;
}

/* =========================================
   Related Menu Section
   ========================================= */

.related-menu{
  padding: 64px 0;
  text-align: center;
}

.related-menu__en{
  display: block;
  font-family: var(--ff-en);
  font-size: 13px;
  letter-spacing: .18em;
  color: var(--c-blue);
  margin-bottom: 8px;
}

.related-menu__title{
  font-family: var(--ff-serif);
  font-size: 24px;
  color: var(--c-blue);
  margin: 0 0 32px;
}

.related-menu__links{
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.related-menu__btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 1.5px solid var(--c-blue);
  border-radius: 50px;
  color: var(--c-blue);
  font-family: var(--ff-sans);
  font-size: 14px;
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
}
.related-menu__btn:hover{
  background: var(--c-blue);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}
.related-menu__btn span{
  font-size: 16px;
}


/* =========================================
   LINE CTA Section (shared across pages)
   ========================================= */

.line-cta-wrap {
  background: #F4EBE2; /* soft beige */
  padding: 64px 0;
}

.line-cta__title {
  font-family: var(--ff-sans);
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin: 0 0 16px;
  text-align: center;
}

.line-cta__checks {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.line-cta__check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #333;
  font-family: var(--ff-sans);
}

.line-cta__check::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #EF4444; /* red */
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.line-cta__btn-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
}

.line-cta__img-btn {
  display: inline-block;
  transition: opacity .18s, transform .18s;
  text-align: center;
}
.line-cta__img-btn:hover {
  opacity: .85;
  transform: translateY(-2px);
}
.line-cta__img-btn img {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
}

/* その他のお問い合わせ */
.contact-btns__title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 0 0 24px;
  font-family: var(--ff-sans);
}

.contact-btns__row {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  width: 100%;
  max-width: 340px;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
  font-family: var(--ff-sans);
  line-height: 1.4;
}

.btn-contact:hover {
  opacity: 0.9;
  transform: translateY(2px);
  text-decoration: none;
}

.btn-contact__sub {
  font-size: 11px;
  margin-bottom: 4px;
}

.btn-contact__main {
  font-size: 16px;
  font-weight: bold;
}

.btn-contact--blue {
  background: #457BA5;
  color: #fff;
  box-shadow: 0 4px 0 #2A5A80;
}
.btn-contact--blue:hover {
  box-shadow: 0 2px 0 #2A5A80;
}
.btn-contact--blue .btn-contact__sub {
  opacity: 0.9;
}

.btn-contact--white {
  background: #fff;
  color: #457BA5;
  border: 2px solid #457BA5;
  box-shadow: 0 4px 0 #2A5A80;
}
.btn-contact--white:hover {
  box-shadow: 0 2px 0 #2A5A80;
}

.line-cta__img-btn img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 8px;
  margin: 0 auto;
}

.line-cta__qr{
  width: 64px;
  height: 64px;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.line-cta__note{
  font-size: 12px;
  color: var(--c-muted);
  margin: 0;
}



/* =========================================
   Header + Drawer
   ========================================= */

.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transform: translateY(0);
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.site-header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height-pc);
}

/* Logo */
.site-logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-text);
  font-family: var(--ff-serif);
  font-weight: 700;
  text-decoration: none;
}

/* Top: transparent */
.site-header.is-front{
  background: transparent;
  box-shadow: none;
}

/* Inner pages: white */
.site-header.is-inner{
  background: var(--c-white);
  box-shadow: var(--header-shadow);
}

/* Scroll: translucent */
.site-header.is-solid{
  background: var(--header-bg-solid);
  backdrop-filter: blur(10px);
  box-shadow: var(--header-shadow);
}

/* Scroll-down: hide */
.site-header.is-hidden{
  transform: translateY(-110%);
}

/* Menu button */
.menu-btn{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: var(--menu-btn-size-pc);
  height: var(--menu-btn-size-pc);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--c-blue);
  color: var(--c-white);
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  flex-shrink: 0;
}

.menu-btn__icon{
  display: grid;
  gap: 8px;
  margin-bottom: 6px;
}
.menu-btn__icon span{
  width: 32px;
  height: 2px;
  background: var(--c-white);
  display: block;
}

.menu-btn__label{
  font-family: var(--ff-en);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.08em;
}

/* =========================================
   Drawer overlay
   ========================================= */

.drawer-overlay{
  position: fixed;
  inset: 0;
  background: var(--overlay-blue);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.drawer-overlay.is-open{
  opacity: 1;
  pointer-events: auto;
}

/* =========================================
   Drawer panel
   ========================================= */

.drawer{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 420px;
  max-width: 92vw;
  background: var(--c-white);
  z-index: 1200;
  box-shadow: var(--drawer-shadow);
  transform: translateX(102%);
  transition: transform .24s ease;
  will-change: transform;
  overflow-y: auto;
}

.drawer.is-open{
  transform: translateX(0);
}

.drawer__head{
  display: flex;
  justify-content: flex-end;
  padding: 18px 18px 8px;
}

.drawer-close{
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #333;
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,.28);
}

.drawer-close::before,
.drawer-close::after{
  content: "";
  position: absolute;
  left: 50%;
  top: calc(50% - 10px);
  width: 36px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
}

.drawer-close::before{
  transform: translateX(-50%) rotate(45deg);
}

.drawer-close::after{
  transform: translateX(-50%) rotate(-45deg);
}

.drawer-close__label{
  font-family: var(--ff-en);
  font-size: 10px;
  letter-spacing: 0.14em;
  line-height: 1;
}

.drawer__nav{
  padding: 6px 0 40px;
}

.drawer__menu{
  list-style: none;
  margin: 0;
  padding: 0 32px;
}

.drawer__menu li{
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.drawer__menu a{
  display: block;
  padding: 16px 0;
  color: var(--c-text);
  text-decoration: none;
  font-family: var(--ff-sans);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
}

.drawer__menu a:hover{
  color: var(--c-blue);
  text-decoration: none;
}

body.is-drawer-open{
  overflow: hidden;
}

/* =========================================
   Site Logo (image)
   ========================================= */

.site-logo{
  display: inline-flex;
  align-items: center;
}

.site-logo .custom-logo-link{
  display: inline-flex;
  align-items: center;
}

.site-logo img{
  display: block;
  height: 60px;
  width: auto;
}

.site-logo__text{
  font-family: var(--ff-serif);
  font-size: 20px;
  color: var(--c-text);
  text-decoration: none;
  letter-spacing: 0.06em;
}

/* =========================================
   Site Footer (3 column)
   ========================================= */

.site-footer{
  background: #E8F1F6; /* light blue */
  padding: 60px 0 0;
  margin-top: 80px;
}

.site-footer__inner{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 40px;
}

/* Left: logo + info */
.site-footer__brand{}

.site-footer__logo{
  margin-bottom: 20px;
}

.site-footer__logo img{
  height: 50px;
  width: auto;
}

.site-footer__logo-text{
  font-family: var(--ff-serif);
  font-size: 16px;
  color: var(--c-text);
  text-decoration: none;
  display: block;
  letter-spacing: 0.06em;
}

.site-footer__info{
  font-size: 13px;
  line-height: 1.9;
  color: var(--c-muted);
  font-family: var(--ff-sans);
  margin: 0;
}

/* Center/Right: nav columns */
.site-footer__col-title{
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-blue);
  margin: 0 0 16px;
}

.site-footer__nav-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__nav-list a{
  font-size: 13px;
  color: #555;
  text-decoration: none;
  font-family: var(--ff-sans);
}

.site-footer__nav-list a:hover{
  color: var(--c-blue);
}

.site-footer__bottom{
  border-top: 1px solid rgba(0,0,0,.04);
  background: #E8F1F6;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.site-footer__bottom small{
  font-size: 12px;
  color: var(--c-muted);
  font-family: var(--ff-sans);
  text-align: center;
  display: block;
  width: 100%;
}

.site-footer__bottom a{
  font-size: 12px;
  color: var(--c-muted);
  font-family: var(--ff-sans);
}
.site-footer__bottom a:hover{ color: var(--c-blue); }

/* =========================================
   Pill Filter Buttons (gallery)
   ========================================= */

.pill-filters{
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.pill-filter{
  display: inline-flex;
  align-items: center;
  padding: 8px 24px;
  border-radius: 999px;
  border: 1px solid var(--c-blue);
  background: transparent;
  color: var(--c-blue);
  font-family: var(--ff-sans);
  font-size: 14px;
  cursor: pointer;
  transition: background .16s, color .16s;
  text-decoration: none;
}
.pill-filter:hover,
.pill-filter.is-active{
  background: var(--c-blue);
  color: #fff;
}

/* =========================================
   Section spacing helpers
   ========================================= */

.section{
  padding: 80px 0;
}

.section--beige{
  background: var(--c-beige);
}

.section--light-blue{
  background: var(--c-light-blue);
}

.section--white{
  background: #fff;
}

/* =========================================
   Gallery Section
   ========================================= */

.menu-gallery-section{
  padding: 64px 0;
  text-align: left;
}
.menu-gallery-section__en{
  display: block;
  font-family: var(--ff-en);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #666666;
  margin-bottom: 8px;
  text-align: left;
}
.menu-gallery-section__title{
  font-family: var(--ff-serif);
  font-size: 32px;
  line-height: 1.5;
  color: #4A7FA7;
  margin: 0 0 32px;
  text-align: left;
}

.top-gallery__tabs{
  display: flex;
  justify-content: flex-start;
  gap: 0;
  margin-bottom: 32px;
  flex-wrap: wrap;
  border-bottom: 1px solid #E5E5E5;
}
.top-gallery__tab{
  padding: 12px 24px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #666666;
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: normal;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.top-gallery__tab::after{
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: all 0.3s;
}
.top-gallery__tab.is-active,
.top-gallery__tab:hover{
  background: transparent;
  color: var(--c-blue);
}
.top-gallery__tab.is-active::after{
  background: var(--c-blue);
}

.top-gallery__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.top-gallery__item{
  position: relative;
  display: block;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.top-gallery__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.top-gallery__item:hover .top-gallery__img{
  transform: scale(1.05);
}
.top-gallery__zoom{
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,0.6);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Modal */
.gallery-modal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.gallery-modal.is-open{
  opacity: 1;
  pointer-events: auto;
}
.gallery-modal__content{
  position: relative;
  max-width: 90%;
  max-height: 90%;
}
.gallery-modal__img{
  max-width: 100%;
  max-height: 90vh;
  display: block;
  border-radius: 8px;
}
.gallery-modal__close{
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

/* =========================================
   Related Menu Section
   ========================================= */

.related-menu{
  padding: 64px 0;
  text-align: center;
}
.related-menu__en{
  display: block;
  font-family: var(--ff-en);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--c-blue);
  margin-bottom: 8px;
}
.related-menu__title{
  font-family: var(--ff-serif);
  font-size: 32px;
  line-height: 1.5;
  color: #333333;
  margin: 0 0 32px;
}
.related-menu__links{
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
}
.related-menu__btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  max-width: 100%;
  padding: 16px 24px;
  border: 1px solid var(--c-blue);
  border-radius: 40px;
  background: #fff;
  color: var(--c-blue);
  font-family: var(--ff-sans);
  font-size: 16px;
  font-weight: normal;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}
.related-menu__btn:hover{
  background: var(--c-blue);
  color: #fff;
}
.related-menu__btn span{
  font-size: 20px;
  position: absolute;
  right: 24px;
}
.related-menu__btn span{
  font-size: 20px;
}

/* =========================================
   Kitsuke Menu
   ========================================= */
.kitsuke-dress-section{
  padding: 64px 0;
}
.kitsuke-dress-inner{
  display: flex;
  align-items: center;
  gap: 48px;
}
.kitsuke-dress-content{
  flex: 1;
}
.kitsuke-dress-title{
  font-family: var(--ff-serif);
  font-size: 24px;
  color: #333333;
  margin-bottom: 24px;
  text-align: center;
}
.kitsuke-sp-br{ display: none; }
.kitsuke-dress-price{
  color: var(--c-blue);
  margin-bottom: 24px;
  text-align: center;
}
.kitsuke-dress-price .price-num{
  font-family: var(--ff-sans);
  font-size: 60px;
  font-weight: 600;
}
.kitsuke-dress-price .price-yen{
  font-size: 30px;
  margin-left: 4px;
  font-weight: 600;
}
.kitsuke-dress-text{
  font-size: 15px;
  line-height: 1.8;
  color: #333333;
}
.kitsuke-dress-image{
  flex: 1;
}
.kitsuke-dress-img{
  width: 100%;
  aspect-ratio: 420 / 510;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* =========================================
   Matsuek Menu
   ========================================= */

/* 初回お試しカード */
.matuek-trial{
  max-width: 560px;
  margin: 0 auto 48px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-radius: 0;
  overflow: hidden;
}
.matuek-trial__header{
  background: #EAF3F9;
  color: #4A7FA7;
  text-align: center;
  font-family: var(--ff-serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .05em;
  padding: 18px 16px;
}
.matuek-trial__body{
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 28px 16px 24px;
  background: #fff;
}
.matuek-trial__item{
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #DEDEDE;
}
.matuek-trial__label{
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: #666666;
  margin-bottom: 4px;
  font-family: var(--ff-sans);
}
.matuek-trial__price{
  display: block;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-text);
  font-family: var(--ff-sans);
  letter-spacing: .02em;
}
.matuek-trial__price small{
  font-size: 20px;
  margin-left: 2px;
}

/* 3カラム料金表 */
.matuek-price-cards{
  grid-template-columns: repeat(3, 1fr);
}
.matuek-price-cards .price-card:nth-child(1) .price-card__header{ background: #EAF3F9; color: #4A7FA7; }
.matuek-price-cards .price-card:nth-child(2) .price-card__header{ background: #6FA2C6; color: #FFFFFF; }
.matuek-price-cards .price-card:nth-child(3) .price-card__header{ background: #4A7FA7; color: #FFFFFF; }
.matuek-price-cards .price-card:nth-child(2){
  background: #FAFAFA;
}
.matuek-price-cards .price-card:nth-child(3){
  background: #fff;
}

/* マツエクは全itemにborderを入れる（first-childだけでなく） */
.matuek-price-cards .price-card__item{
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #DEDEDE;
}
.matuek-price-cards .price-card__item:last-child{
  margin-bottom: 0;
}

/* =========================================
   Gallery Page
   ========================================= */

.gallery-page{
  padding: 0;
}

/* ページ内ナビ */
.gallery-page__nav-wrapper{
  background: #F7FBFE;
  padding: 32px 0;
}
.gallery-page__nav{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 0;
}
.gallery-page__nav-btn{
  display: flex;
  align-items: center;
  position: relative;
  min-width: 255px;
  padding: 14px 20px;
  border: 1px solid var(--c-blue);
  border-radius: 40px;
  background: #fff;
  color: var(--c-blue);
  font-family: var(--ff-sans);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.gallery-page__nav-btn span {
  flex: 1;
  text-align: center;
}
.gallery-page__nav-btn svg {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.gallery-page__nav-btn:hover{
  text-decoration: none;
  opacity: 0.8;
}

/* 各ギャラリーセクション */
.gallery-section{
  padding: 64px 0;
}
.gallery-section__en{
  display: block;
  text-align: center;
  font-family: var(--ff-en);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: #4A7FA7;
  margin-bottom: 8px;
}
.gallery-section__title{
  text-align: center;
  font-family: var(--ff-serif);
  font-size: 32px;
  line-height: 1.5;
  color: #333333;
  margin: 0 0 32px;
  font-weight: 600;
}

/* もっと見るボタン */
.gallery-section__more-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: 1px solid var(--c-blue);
  border-radius: 30px;
  background: #fff;
  color: var(--c-blue);
  font-family: var(--ff-sans);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 280px;
}
.gallery-section__more-btn:hover{
  background: var(--c-blue);
  color: #fff;
}

@media (min-width: 768px) {
  .gallery-section__more:has(.is-sp-only-btn) {
    display: none !important;
  }
}

/* =========================================
   Responsive (SP ≤ 767px)
   ========================================= */

@media (max-width: 767px){

  /* Heading */
  .heading{ margin-bottom: 28px; }
  .heading__en{ font-size: 12px; }
  .heading__jp{ font-size: 26px; line-height: 1.8; }

  /* Page hero */
  .page-hero{ padding: calc(var(--header-height-sp) + 40px) 0 32px; }
  .page-hero__title{ font-size: 26px; }

  /* LINE float - removed (replaced by float-line-pc/sp) */

  /* Header */
  .site-header__inner{ height: var(--header-height-sp); }
  .menu-btn{
    width: var(--menu-btn-size-sp);
    height: var(--menu-btn-size-sp);
  }
  .menu-btn__icon{ gap: 4px; }
  .menu-btn__icon span{ width: 20px; }
  .menu-btn__label{ font-size: 8px; }

  /* Drawer */
  .drawer{ width: 86vw; }
  .drawer-close{ width: 50px; height: 50px; padding-bottom: 10px; }
  .drawer-close__label{ font-size: 8px; }
  .drawer-close::before,
  .drawer-close::after{ width: 24px; }
  .drawer__menu a{ padding: 12px 0; font-size: 16px; }
  .drawer__menu{ padding: 0 20px; }

  /* Logo */
  .site-logo img{ height: 50px; }

  /* Footer */
  .site-footer{
    margin-top: 60px;
  }
  .site-footer__inner{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .site-footer__nav-list {
    gap: 6px;
  }

  /* LINE CTA */
  .line-cta-wrap { padding: 40px 0; }
  .line-cta__title { font-size: 20px; }
  .line-cta__checks { 
    flex-direction: row; 
    justify-content: center; 
    gap: 12px; 
    flex-wrap: nowrap; 
  }
  .line-cta__check { font-size: 13px; }
  .line-cta__img-btn img { max-width: 100%; }

  /* Contact buttons */
  .contact-btns__row{ flex-direction: column; align-items: center; }
  .btn-contact { max-width: 100%; }

  /* Section spacing */
  .section{ padding: 56px 0; }

  /* Menu page */
  .menu-page{ padding: 32px 0 0; }
  .menu-page__intro{ margin-bottom: 32px; }
  .menu-page__intro-text{ font-size: 16px; line-height: 1.9; text-align: left; }
  .menu-page__section-title{ font-size: 26px; line-height: 1.8; margin-bottom: 16px; }
  .menu-page__section-header{ margin-bottom: 24px; }

  .price-cards{
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
    box-shadow: none;
    background: transparent;
  }
  .price-card{
    box-shadow: 0 4px 16px rgba(0,0,0,0.06); /* 薄く自然な影に戻す */
  }

  .hairset-section{
    padding: 48px 0;
    margin-bottom: 48px;
  }
  .hairset-section__inner{
    flex-direction: column;
    gap: 32px;
  }
  .hairset-images-wrapper{
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    margin: 0 -20px;
    padding: 0 20px;
    scrollbar-width: none;
  }
  .hairset-images-wrapper::-webkit-scrollbar {
    display: none;
  }
  .hairset-section__img-item{
    flex: 0 0 85%;
    scroll-snap-align: center;
    overflow: hidden;
  }
  .hairset-table__price{ font-size: 18px; }

  .menu-gallery-section{ padding: 48px 0; }
  .menu-gallery-section__title{ font-size: 26px; line-height: 46.8px; }
  .top-gallery__tab{ flex: 1 1 45%; text-align: center; padding: 12px 0; }
  .top-gallery__grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .related-menu{ padding: 48px 0; }
  .related-menu__title{ font-size: 26px; line-height: 46.8px; }
  .related-menu__links{ flex-direction: column; align-items: center; }
  .related-menu__btn{ width: 100%; }

  /* Kitsuke Menu SP */
  .kitsuke-sp-br{ display: block; }
  .kitsuke-dress-inner{
    flex-direction: column;
    gap: 32px;
  }

  /* Matsuek Menu SP */
  .matuek-trial__body{
    gap: 32px;
  }
  .matuek-trial__price{
    font-size: 32px;
  }
  .matuek-trial__price small{
    font-size: 16px;
  }
  .matuek-price-cards{
    grid-template-columns: 1fr;
  }

  /* Gallery Page SP */
  .gallery-page__nav-wrapper{
    padding: 24px 0;
  }
  .gallery-page__nav{
    gap: 8px;
  }
  .gallery-page__nav-btn{
    width: calc(50% - 4px);
    min-width: 0;
    padding: 12px 16px;
    font-size: 13px;
  }
  .gallery-page__nav-btn svg {
    right: 12px;
  }
  .gallery-section{
    padding: 48px 0;
  }
  .gallery-section__title{
    font-size: 26px; line-height: 46.8px;
  }
  
  /* SP Initial hidden item */
  .is-hidden-sp {
    display: none !important;
  }
}