:root {
  --color-white: #ffffff;
  --color-text: #535353;
  --color-sub: #878787;
  --color-accent: #ef8796;
  --color-main: #53768c;
  --color-main-dark: #3f5a6c;
  --color-base: #f1f7f7;
  --color-line: #11c85a;

  /* Lit.hair デザイントークン */
  --lit-main: #53768c;
  --lit-text: #18212c;
  --lit-base: #faf6f2;
  --lit-white: #ffffff;
  --font-lit-en: "Cormorant Infant", serif;

  --font-mincho: "Shippori Mincho", serif;
  --font-mincho2: "Zen Old Mincho", serif;
  --font-kaku: "Zen Kaku Gothic New", sans-serif;
  --font-noto: "Noto Sans JP", sans-serif;
  --font-en: "Marcellus", serif;
  --font-roboto: "Roboto", sans-serif;

  --container: 1240px;

  /* Lilou hair. by Amulla デザイントークン */
  --c-white: #ffffff;
  --c-brown-dark: #573618;
  --c-brown: #8a5e36;
  --c-gold: #c9ac64;
  --c-green: #7dc28f;
  --c-pink: #c27d9e;
  --c-cream: #fffaeb;
  --c-gray: #efefef;
  --c-text-lilou: #221f1a;
  --c-line-lilou: #cccccc;
  --font-serif: "Noto Serif JP", serif;
  --lilou-en: "Cormorant Garamond", serif;
  --header-h: 64px;
}

/* --------------------------------------------------------------------------
   reset / base
   -------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-noto);
  line-height: 1.6;
  background: var(--color-base);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* CMS出力ではページ全体が #root で包まれる */
#root {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* コンテンツが短くてもフッターを最下部へ */
.site-footer {
  margin-top: auto;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover,
a:visited,
a:active,
a:focus {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

p {
  margin: 0;
}

.section-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   共通パーツ：見出し
   -------------------------------------------------------------------------- */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.section-head__ttl {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-head__en {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: var(--color-accent);
  margin: 0;
}

.section-head__ja {
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 425px) {
  .section-head__en {
    font-size: 16px;
  }

  .section-head__ja {
    font-size: 24px;
  }
}

/* --------------------------------------------------------------------------
   共通パーツ：ボタン
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  background: var(--color-main);
  border: 1px solid var(--color-main);
  color: var(--color-white);
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 2.2;
  border-radius: 999px;
  padding: 8px 52px 8px 28px;
  min-width: 275px;
  max-width: 275px;
  white-space: nowrap;
}

.btn::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: url("/system_panel/uploads/images/chevron-right.svg") center / contain no-repeat;
}

.btn:hover,
.btn:visited,
.btn:active,
.btn:focus {
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   ヘッダー / グローバルナビ
   -------------------------------------------------------------------------- */
.gnav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: var(--c-white);
}

.gnav + .main {
  padding-top: var(--header-h);
}

.gnav__inner {
  display: flex;
  align-items: stretch;
  min-width: 0;
  height: var(--header-h);
}

/* ロゴ（茶色地・画像に背景色を含む） */
.gnav__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  height: 100%;
  background: var(--c-brown);
}

.gnav__logo img {
  width: min(140px, 100%);
  height: 100%;
  object-fit: contain;
}

/* 店舗情報（モバイルでは非表示） */
.gnav__meta {
  display: none;
  flex: 1 1 auto;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px 0 19px;
  color: var(--c-brown-dark);
}

.gnav__meta-address {
  min-width: 0;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.05em;
}

.gnav__meta-hours {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 14px;
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.gnav__meta-open {
  letter-spacing: 0;
}

/* 右側アクション群 */
.gnav__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: stretch;
  margin-left: auto;
}

/* ご予約の前に（モバイルでは非表示） */
.gnav__pre {
  display: none;
  flex: 0 0 190px;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 190px;
  padding: 0 12px;
  background: var(--c-cream);
  text-align: center;
}

.gnav__pre-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  max-width: 100%;
  height: 34px;
  margin: 0;
  overflow: hidden;
  padding: 0 16px;
  border: 1px solid var(--c-brown);
  border-radius: 999px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--c-brown);
}

.gnav__pre-note {
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--c-brown);
}

/* WEB予約 / 公式LINE の色ブロック */
.gnav__act {
  display: flex;
  flex: 0 0 64px;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 64px;
  color: var(--c-white);
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.05em;
}

/* WEB予約・公式LINE：文字は常に白、ホバーは透過のみ */
.gnav__act,
.gnav__act:hover,
.gnav__act:focus,
.gnav__act:visited,
.gnav__act p {
  color: var(--c-white);
}

.gnav__act:hover {
  opacity: 0.7;
}

.gnav__act img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.gnav__act p {
  display: none;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gnav__act--web {
  background: var(--c-gold);
}

.gnav__act--line {
  background: var(--c-green);
}

.gnav__act--line img {
  filter: brightness(0) invert(1);
}

/* ハンバーガー（Menu） */
.gnav__toggle {
  --bar-gap: 8px;
  --bar-shift: 4px; /* 2本セットを中央からどれだけ上げるか */
  position: relative;
  flex: 0 0 var(--header-h);
  min-width: 0;
  width: var(--header-h);
  height: var(--header-h);
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 1px solid var(--c-brown);
  background: var(--c-white);
  color: var(--c-brown);
  cursor: pointer;
}

/* 2本の線：2本目がボタンの上下中央に来る */
.gnav__toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--c-brown);
  transform: translate(-50%, calc(-50% - var(--bar-shift)));
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gnav__toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - var(--bar-shift) - var(--bar-gap)));
}

.gnav__toggle span:nth-child(3) {
  display: none;
}

/* 「Menu」：中央（＝2本目の線）より少し下 */
.gnav__toggle em {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
  font-family: var(--lilou-en);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--c-brown);
}

/* ドロワー */
.gnav__info {
  overflow: hidden;
  max-height: 0;
  background: rgba(255, 250, 235, 0.95);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  backdrop-filter: blur(18px) saturate(1.12);
  transition: max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.gnav.is-open .gnav__info {
  max-height: 84vh;
  overflow-y: auto;
  border-top: 1px solid rgba(138, 94, 54, 0.22);
  box-shadow: 0 22px 44px -22px rgba(87, 54, 24, 0.32);
}

.gnav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
  padding: 8px 24px 28px;
}

.gnav__list__item {
  border-bottom: 1px solid rgba(138, 94, 54, 0.14);
}

.gnav__list__item:last-child {
  border-bottom: 0;
}

.gnav__list__item a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 4px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: var(--c-brown-dark);
  transition: color 0.25s ease, padding-left 0.25s ease;
}

/* 右端のシェブロン */
.gnav__list__item a::after {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--c-brown);
  border-right: 1px solid var(--c-brown);
  opacity: 0.45;
  transform: rotate(45deg);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.gnav__list__item a:hover {
  color: var(--c-brown);
  padding-left: 12px;
}

.gnav__list__item a:hover::after {
  opacity: 1;
  transform: rotate(45deg) translate(2px, -2px);
}

/* ヘッダー：タブレット以上 */
@media (min-width: 769px) {
  :root {
    --header-h: 100px;
  }

  .gnav__logo {
    flex: none;
    width: 218px;
  }

  .gnav__logo img {
    width: 100%;
  }

  .gnav__act img {
    width: 40px;
    height: 40px;
  }

  .gnav__act--line img {
    width: 40px;
    height: 40px;
  }

  .gnav__act p {
    display: block;
  }

  .gnav__act--web {
    flex-basis: 206px;
    width: 206px;
  }

  .gnav__act--line {
    flex-basis: 118px;
    width: 118px;
  }

  .gnav__toggle {
    flex-basis: var(--header-h);
    width: var(--header-h);
    --bar-gap: 11px;
  }

  .gnav__toggle span {
    width: 52px;
  }

  .gnav__toggle em {
    font-size: 18px;
  }

  .gnav__list {
    max-width: 720px;
    padding: 12px 24px 32px;
  }

  .gnav__list__item a {
    font-size: 16px;
    padding: 17px 4px;
  }
}

/* ヘッダー：デスクトップ */
@media (min-width: 1024px) {
  .gnav__pre {
    display: flex;
  }

  /* ドロワーは全面ではなく、右端〜「WEB予約はこちら」左端の幅に合わせる
     （WEB予約206 + 公式LINE118 + Menu100 = 424px） */
  .gnav__info {
    position: absolute;
    top: 100%;
    right: 0;
    width: 424px;
    max-width: calc(100vw - 32px);
  }

  .gnav.is-open .gnav__info {
    border: 1px solid rgba(138, 94, 54, 0.18);
    border-top: none;
    border-bottom-left-radius: 4px;
    box-shadow: -6px 26px 50px -24px rgba(87, 54, 24, 0.4);
  }

  .gnav__list {
    max-width: none;
    margin: 0;
    padding: 8px 30px 26px;
  }

  .gnav__list__item a {
    font-size: 15px;
    padding: 15px 2px;
  }
}

/* 1440〜1919px：店舗情報を出しつつ、収まるようブロックを少し圧縮 */
@media (min-width: 1440px) and (max-width: 1919px) {
  .gnav__meta {
    display: flex;
    padding: 0 16px;
  }

  .gnav__pre {
    flex-basis: 170px;
    width: 170px;
  }

  .gnav__act--web {
    flex-basis: 176px;
    width: 176px;
  }

  .gnav__act--line {
    flex-basis: 104px;
    width: 104px;
  }

  /* この幅では WEB予約176 + 公式LINE104 + Menu100 = 380px */
  .gnav__info {
    width: 380px;
  }

  .gnav__meta-address {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    letter-spacing: 0.03em;
  }

  .gnav__meta-hours {
    gap: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    letter-spacing: 0.015em;
  }
}

/* 1920px以上（Figmaアートボード幅）：全ブロックを実寸で表示 */
@media (min-width: 1920px) {
  .gnav__meta {
    display: flex;
  }
}

/* --------------------------------------------------------------------------
   ヒーロー（モバイル基準）
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 40px;
  background: var(--c-cream);
}

.hero__band {
  display: none;
}

.hero__photo {
  display: block;
  width: 89.4%;
  margin-left: 10.6%;
  aspect-ratio: 335 / 360;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__copy {
  padding: 15px 22px 0;
}

.hero__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: min(30px, 8vw);
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: var(--c-brown-dark);
}

.hero__sub {
  margin: 12px 0 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: min(16px, 4.2vw);
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--c-brown-dark);
}

.hero__desc {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 2px;
  background: #f1e7d4;
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: min(14px, 3.8vw);
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: var(--c-text-lilou);
}

.hero__desc br {
  display: none;
}

.hero__script {
  display: none;
}

@keyframes hero-script-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ヒーローのサブコピー / 説明文：読み込み後にフェードイン（見出し・画像のあと） */
@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.js .hero__sub,
.js .hero__desc {
  animation: hero-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.js .hero__sub {
  animation-delay: 1s;
}

.js .hero__desc {
  animation-delay: 1.3s;
}

@media (prefers-reduced-motion: reduce) {
  .js .hero__sub,
  .js .hero__desc {
    animation: none;
  }
}

/* ヒーロー画像：読み込み後にスライドイン（JS有効時のみ） */
.js .hero__photo {
  clip-path: inset(0 0 0 100%);
  transition: clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .hero__photo img {
  transform: scale(1.08);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .hero.is-loaded .hero__photo {
  clip-path: inset(0 0 0 0);
}

.js .hero.is-loaded .hero__photo img {
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .js .hero__photo,
  .js .hero__photo img {
    clip-path: none !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ヒーロー：426〜768px は写真を全幅にしてコピーを重ねる（425px以下は従来どおり） */
@media (min-width: 426px) and (max-width: 768px) {
  .hero {
    padding-bottom: 0;
  }

  .hero__photo {
    width: 100%;
    margin-left: 0;
    aspect-ratio: 375 / 320;
  }

  .hero__copy {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    padding: 22px 20px;
    border-radius: 3px;
    background: rgba(255, 250, 235, 0.9);
  }

  .hero__desc {
    margin-top: 14px;
    padding: 0;
    background: transparent;
  }
}

/* ヒーロー：タブレット以上でフォントを固定サイズへ */
@media (min-width: 769px) {
  .hero__title {
    font-size: 30px;
  }

  .hero__sub {
    font-size: 16px;
  }

  .hero__desc {
    font-size: 14px;
  }
}

/* ヒーロー：デスクトップ（アートボード 1920×900 の重ねレイアウト） */
@media (min-width: 1024px) {
  .hero {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
    aspect-ratio: 1920 / 900;
    background: var(--c-white);
  }

  .hero__band {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 22.22%;
    bottom: 0;
    background: var(--c-cream);
  }

  .hero__photo {
    position: absolute;
    left: 22.24%;
    top: 0;
    width: 77.76%;
    height: 82%;
    margin: 0;
    aspect-ratio: auto;
  }

  .hero__photo::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 34%;
    background: linear-gradient(
      90deg,
      rgba(255, 250, 235, 0.92) 0%,
      rgba(255, 250, 235, 0.68) 45%,
      rgba(255, 250, 235, 0) 100%
    );
    pointer-events: none;
  }

  .hero__copy {
    position: absolute;
    left: 4.32%;
    top: 31%;
    width: 44%;
    padding: 0;
    z-index: 2;
  }

  .hero__title {
    /* Figma: 60.57px @1920 / line-height 91px / letter-spacing 0.1em */
    font-size: min(60.6px, 3.155vw);
    line-height: 1.5;
  }

  .hero__sub {
    margin-top: 18px;
    font-size: min(28px, 1.46vw);
  }

  .hero__desc {
    width: min(598px, 41vw);
    margin-top: 22px;
    padding: 14px 12px;
    background: rgba(241, 231, 212, 0.38);
    font-size: clamp(12px, 0.89vw, 17px);
    line-height: 1.6;
  }

  .hero__desc br {
    display: block;
  }

  .hero__script {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1%;
    z-index: 1;
    margin: 0;
    overflow: hidden;
    font-family: var(--lilou-en);
    font-weight: 600;
    font-style: italic;
    font-size: min(110px, 5.73vw);
    line-height: 1.2;
    letter-spacing: 0.03em;
    white-space: nowrap;
    color: #f2e9d7;
    pointer-events: none;
  }

  .hero__script-track {
    display: flex;
    width: max-content;
    animation: hero-script-marquee 52s linear infinite;
    will-change: transform;
  }

  .hero__script-group {
    display: inline-flex;
    flex: 0 0 auto;
    gap: 0.45em;
    padding-right: 0.45em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__script-track {
    animation: none;
  }
}

/* --------------------------------------------------------------------------
   コンセプト（Concept）
   -------------------------------------------------------------------------- */
.concept {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 48px 0 56px;
  background: #fffaeb;
}

/* 背景画像：ヘッダー〜3カラム画像の中ほどまで */
.concept::before {
  content: "";
  position: absolute;
  left: -8px;
  right: -30px;
  top: -30px;
  height: 938px;
  background: url("/system_panel/uploads/images/concept_back.jpg") top center /
    cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

.concept > * {
  position: relative;
  z-index: 1;
}

.concept__top {
  padding-bottom: 72px;
}

.concept__visual {
  position: relative;
  width: 100%;
}

.concept__photo {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  aspect-ratio: 786 / 620;
  object-fit: cover;
}

.concept__script {
  position: absolute;
  left: 16px;
  bottom: -6px;
  z-index: 2;
  width: 62%;
  max-width: 360px;
  height: auto;
}

.concept__body {
  padding: 34px 22px 0;
}

.concept__ttl {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: min(26px, 6.6vw);
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: var(--c-brown-dark);
}

.concept__lead {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 34px;
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--c-text-lilou);
}

.concept__lead p {
  margin: 0;
}

.concept__more {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 60px;
  margin-top: 40px;
  padding: 0 46px;
  border-radius: 999px;
  background: var(--c-brown);
  color: var(--c-white);
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.09em;
}

/* グローバル a:visited { color: inherit } 対策：擬似クラスを明示 */
.concept__more,
.concept__more:link,
.concept__more:visited,
.concept__more:hover,
.concept__more:focus,
.concept__more:active {
  color: var(--c-white);
}

.concept__more:hover {
  color: var(--c-white);
  opacity: 0.85;
}

.concept__more-arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: auto;
}

.concept__illust {
  display: none;
}

/* 3カラム（Expertise / Wellness / Trend） */
.concept__features {
  display: flex;
  flex-direction: column;
  gap: 44px;
  max-width: 560px;
  margin: 40px auto 0;
  padding: 0 22px;
}

.concept-feat__media {
  position: relative;
}

.concept-feat__img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  aspect-ratio: 513 / 349;
  object-fit: cover;
}

/* 画像と同じ高さ（上端揃え）／ 画面が広ければ少し左へはみ出す */
.concept-feat__label {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 150px;
  height: auto;
}

.concept-feat__ttl {
  margin: 18px 0 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: min(20px, 5.2vw);
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  color: #333333;
}

.concept-feat__text {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid #898989;
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.78;
  letter-spacing: 0;
  color: #000000;
}

/* コンセプト：タブレット以上 */
@media (min-width: 769px) {
  .concept::before {
    height: 1158px;
  }

  .concept__features {
    flex-direction: row;
    gap: 40px;
    max-width: 1160px;
  }

  .concept-feat {
    flex: 1 1 0;
    min-width: 0;
  }

  .concept-feat__label {
    left: 0;
    width: 176px;
  }

  /* 769〜1024px は3カラムで幅が狭いので小さめ（1025px 以上で通常サイズへ） */
  .concept-feat__ttl {
    font-size: clamp(15px, 1.7vw, 20px);
  }

  .concept-feat__text {
    font-size: clamp(12px, 1.4vw, 15px);
  }
}

/* コンセプト：デスクトップ（1920アートボードの重ねレイアウト） */
@media (min-width: 1024px) {
  .concept {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 0 72px;
    background: #fffaeb;
  }

  /* 3カラム画像の「半分より少し上」で終わる高さ */
  .concept::before {
    height: calc(min(100vw, 1920px) * 0.617 + 98px);
  }

  .concept__top {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 1040;
    /* 狭いデスクトップで本文が入りきるよう最低高さを確保 */
    min-height: 680px;
    padding-bottom: 0;
  }

  .concept__visual {
    position: absolute;
    left: 0;
    top: 8.17%;
    width: 40.94%;
    height: 80.87%;
  }

  .concept__photo {
    height: 100%;
    aspect-ratio: auto;
  }

  .concept__script {
    left: 23%;
    top: 9.6%;
    bottom: auto;
    width: 90%;
    max-width: none;
  }

  .concept__body {
    position: absolute;
    left: 46.93%;
    top: 11.75%;
    width: 41%;
    padding: 0;
  }

  /* 1440px 以上は従来サイズ、1440px 未満で下限を効かせて極小化を防ぐ */
  .concept__ttl {
    font-size: clamp(24px, 1.875vw, 36px);
  }

  .concept__lead {
    gap: clamp(16px, 1.67vw, 24px);
    margin-top: clamp(26px, 3.06vw, 44px);
    font-size: clamp(13px, 0.94vw, 18px);
    line-height: 1.78;
    letter-spacing: 0.05em;
  }

  .concept__more {
    min-width: clamp(248px, 21.5vw, 310px);
    height: clamp(58px, 5.2vw, 75px);
    margin-top: clamp(32px, 3.9vw, 56px);
    font-size: clamp(15px, 1.25vw, 18px);
  }

  .concept__illust {
    display: block;
    position: absolute;
  }

  .concept__illust--dryer {
    left: 77.66%;
    top: 15.55%;
    width: 14.22%;
  }

  .concept__illust--scissors {
    left: 89.3%;
    top: 36.06%;
    width: 6.88%;
  }

  .concept__features {
    gap: 48px;
    max-width: 1600px;
    margin-top: 60px;
    padding: 0 clamp(8px, 2vw, 32px);
  }

  .concept-feat__ttl {
    margin-top: 20px;
  }

  /* コンテナ(max 1660px)の外側に余白がある分だけ左へはみ出す（無ければ 0） */
  .concept-feat__label {
    left: calc(0px - min(40px, max(0px, (100vw - 1600px) / 2 - 12px)));
    width: 188px;
  }

  .concept-feat__text {
    line-height: 1.78;
  }
}

/* 1025px 以上で通常サイズ（1024px までは 769px ブロックの clamp が有効） */
@media (min-width: 1025px) {
  .concept-feat__ttl {
    font-size: 24px;
  }

  .concept-feat__text {
    font-size: 18px;
  }
}

/* 1441px以上（コンテナ 1440px 上限に収まるサイズ） */
@media (min-width: 1441px) {
  .concept-feat__ttl {
    font-size: 26px;
  }
}

/* --------------------------------------------------------------------------
   メニュー紹介（Our Menu）
   -------------------------------------------------------------------------- */
.menu {
  position: relative;
  overflow: hidden;
  padding: 56px 0 64px;
  background: #ffffff;
}

/* アーチ背景（menu_back.png）は 1025px 以上のみ。
   3層構成でどの画面幅でも継ぎ目が出ないようにする
   1: アーチ画像（白い本体＋透明な肩口）
   2: クリーム帯（アーチ肩口の高さぶん。透明な角からのぞく色）
   3: 白（アーチ本体より下はすべて白＝画像の白と地続き） */
@media (min-width: 1025px) {
  .menu {
    background: url("/system_panel/uploads/images/menu_back.png") top center /
        100% auto no-repeat,
      linear-gradient(#fffaeb, #ffffff) top center / 100% min(51vw, 976px)
        no-repeat,
      #ffffff;
  }
}

.menu__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 22px;
}

/* --- ヘッダー --- */
.menu__head {
  position: relative;
  text-align: center;
}

.menu__label {
  display: flex;
  justify-content: center;
  margin: 0;
}

.menu__label img {
  width: min(560px, 84%);
  height: auto;
}

.menu__ttl {
  position: relative;
  margin: -34px 0 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: min(32px, 8vw);
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: var(--c-brown-dark);
}

.menu__lead {
  margin: 20px 0 0;
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: #000000;
}

.menu__lead br {
  display: none;
}

.menu__more {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 60px;
  margin-top: 26px;
  padding: 0 46px;
  border-radius: 999px;
  background: var(--c-brown);
  color: var(--c-white);
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.09em;
}

.menu__more,
.menu__more:link,
.menu__more:visited,
.menu__more:hover,
.menu__more:focus,
.menu__more:active {
  color: var(--c-white);
}

.menu__more:hover {
  color: var(--c-white);
  opacity: 0.85;
}

.menu__more--sm {
  margin-top: 24px;
}

.menu__arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: auto;
}

/* --- 各メニュー行 --- */
.menu__rows {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-top: 56px;
}

.menu-item {
  display: flex;
  flex-direction: column;
}

.menu-item__media {
  position: relative;
}

.menu-item__img {
  display: block;
  width: 100%;
  aspect-ratio: 790 / 444;
  object-fit: cover;
}

.menu-item__num {
  position: absolute;
  left: -6px;
  top: -22px;
  z-index: 2;
  width: 104px;
  height: auto;
}

.menu-item__body {
  position: relative;
  margin-top: 30px;
}

.menu-item__script {
  position: absolute;
  left: 0;
  top: -26px;
  z-index: 0;
  width: 260px;
  max-width: 100%;
  height: auto;
  pointer-events: none;
}

.menu-item__ttl {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: min(26px, 6.6vw);
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #333333;
}

.menu-item__text {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.78;
  letter-spacing: 0;
  color: #000000;
}

.menu-item__ttl br,
.menu-item__text br {
  display: none;
}

/* --- タブレット --- */
@media (min-width: 768px) {
  .menu__lead br,
  .menu-item__ttl br,
  .menu-item__text br {
    display: block;
  }
}

/* --- デスクトップ（1920アートボード基準） --- */
@media (min-width: 1024px) {
  .menu {
    max-width: 1920px;
    margin: 0 auto;
    padding: 90px 0 120px;
  }

  .menu__inner {
    max-width: 1440px;
    padding: 0 clamp(40px, 5vw, 80px);
  }

  .menu__label img {
    width: min(817px, 64%);
  }

  .menu__ttl {
    margin-top: max(-46px, -3vw);
    font-size: clamp(30px, 3.4vw, 50px);
  }

  .menu__lead {
    margin-top: 22px;
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.78;
    letter-spacing: 0;
  }

  .menu__more {
    min-width: 310px;
    height: 75px;
    margin-top: 34px;
    font-size: 18px;
  }

  .menu__more--sm {
    margin-top: clamp(28px, 3vw, 42px);
  }

  .menu__rows {
    gap: clamp(72px, 8vw, 120px);
    margin-top: clamp(64px, 6.7vw, 96px);
  }

  .menu-item {
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(32px, 4.4vw, 64px);
  }

  .menu-item--reverse {
    flex-direction: row-reverse;
  }

  .menu-item__media {
    flex: 0 0 57%;
  }

  .menu-item__num {
    left: max(-54px, -3.6vw);
    top: max(-36px, -2.3vw);
    width: clamp(96px, 7.4vw, 148px);
  }

  .menu-item__body {
    flex: 1 1 auto;
    margin-top: clamp(20px, 3vw, 44px);
  }

  .menu-item__script {
    top: max(-78px, -5vw);
    width: clamp(320px, 25vw, 500px);
    max-width: 112%;
  }

  .menu-item__ttl {
    font-size: clamp(28px, 3.25vw, 44px);
    line-height: 1.5;
  }

  .menu-item__text {
    margin-top: clamp(16px, 1.5vw, 22px);
    font-size: clamp(15px, 1.15vw, 18px);
  }
}

/* --------------------------------------------------------------------------
   サロン紹介（Introduction）※コンテナは max-width 1600px・左右中央
   -------------------------------------------------------------------------- */
.intro {
  position: relative;
  overflow: hidden;
  padding: 48px 0 56px;
  background: #ffffff;
}

.intro__panel {
  display: none;
}

.intro__inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 22px;
}

.intro__stage {
  position: relative;
}

.intro__label {
  margin: 0;
}

.intro__label img {
  display: block;
  width: min(420px, 82%);
  height: auto;
}

.intro__ttl {
  position: relative;
  margin: -30px 0 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: min(32px, 8vw);
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: var(--c-brown-dark);
}

.intro__body {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 22px;
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: var(--c-text-lilou);
}

.intro__body p {
  margin: 0;
}

.intro__body br {
  display: none;
}

.intro__more {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 60px;
  margin-top: 28px;
  padding: 0 46px;
  border-radius: 999px;
  background: var(--c-brown);
  color: var(--c-white);
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.09em;
}

.intro__more,
.intro__more:link,
.intro__more:visited,
.intro__more:hover,
.intro__more:focus,
.intro__more:active {
  color: var(--c-white);
}

.intro__more:hover {
  color: var(--c-white);
  opacity: 0.85;
}

.intro__arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: auto;
}

.intro__figure {
  margin: 30px 16px 0;
  padding: 24px 0 0 20px;
  background: #fffaeb;
}

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

/* --- タブレット --- */
@media (min-width: 1440px) {
  .intro__body br {
    display: block;
  }
}

/* --- デスクトップ：Figma（1680幅アートボード）を 1360px 右寄せで再現 --- */
@media (min-width: 1024px) {
  .intro {
    padding: clamp(80px, 8vw, 120px) 0 clamp(80px, 8vw, 116px);
  }

  .intro__panel {
    display: block;
    position: absolute;
    right: 0;
    top: clamp(150px, 15vw, 300px);
    bottom: clamp(30px, 4vw, 70px);
    width: calc(50vw + 0.29 * min(1360px, 100vw));
    background: #fffaeb;
    z-index: 0;
  }

  .intro__inner {
    position: relative;
    z-index: 1;
    padding: 0 clamp(40px, 5vw, 80px) 0 clamp(60px, 6vw, 96px);
  }

  .intro__stage {
    min-height: 30vw;
  }

  .intro__label img {
    width: clamp(360px, 34vw, 560px);
  }

  .intro__ttl {
    margin-top: clamp(-70px, -5vw, -46px);
    margin-left: -50px;
    font-size: clamp(30px, 3.4vw, 50px);
  }

  .intro__body {
    width: min(600px, 44%);
    gap: clamp(20px, 2vw, 30px);
    margin-top: clamp(24px, 3vw, 44px);
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.78;
  }

  .intro__more {
    min-width: 310px;
    height: 75px;
    margin-top: clamp(28px, 3.5vw, 48px);
    font-size: 18px;
  }

  .intro__figure {
    position: absolute;
    right: max(22px, calc((100% - 1600px) / 2));
    top: clamp(70px, 7vw, 110px);
    z-index: 2;
    width: min(720px, 46vw);
    margin: 0;
    padding: 0;
    background: none;
  }
}

/* --------------------------------------------------------------------------
   旧セクション用の折り返し調整（暫定・順次置換）
   -------------------------------------------------------------------------- */
@media (max-width: 425px) {
  .recommend__lead br,
  .lit-first__lead br,
  .lit-menu__ttl br {
    display: none;
  }
}

.page-list .form [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
  max-width: none;
  float: none;
}

/* --------------------------------------------------------------------------
   お知らせ / お客様の声（共通リスト）
   -------------------------------------------------------------------------- */
.news {
  padding: 60px 0;
}

.news {
  background: #F1F7F7;
}

/* お知らせ（CMS出力: webgene-blog）を list-card と同じ見た目にする */
.webgene-blog {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.webgene-item .news_inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--color-white);
  border-radius: 20px;
  padding: 20px 24px;
}

.webgene-item .news_inner .col-12:first-child p {
  margin: 0;
  color: var(--color-sub);
}

.webgene-item .news_inner .col-12:last-child p {
  margin: 0;
  color: var(--color-text);
}

.webgene-item .news_inner a {
  color: inherit;
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   News（Lit.hair デザイン）
   -------------------------------------------------------------------------- */
.news.news--lit {
  background: var(--lit-base);
  padding: 64px 0;
}

.news--lit .section-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.news--lit .section-head {
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  margin-bottom: 0;
}

.news--lit .section-head__ttl {
  gap: 8px;
}

.news--lit .section-head__en {
  font-family: var(--font-lit-en);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-transform: none;
  color: var(--lit-main);
}

.news--lit .section-head__ja {
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  white-space: normal;
  color: var(--lit-text);
}

/* アウトライン + ライン矢印ボタン */
.btn.btn--line {
  background: none;
  border: 1px solid var(--lit-main);
  border-radius: 0;
  color: var(--lit-main);
  font-family: var(--font-kaku);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.6;
  padding: 12px 48px 12px 16px;
  width: 240px;
  max-width: 100%;
  white-space: normal;
}

.btn.btn--line::after {
  right: 0;
  width: 40px;
  height: 1px;
  background: var(--lit-main);
}

.btn.btn--line:hover,
.btn.btn--line:visited,
.btn.btn--line:active,
.btn.btn--line:focus {
  color: var(--lit-main);
}

/* リスト：フラット行 + 下線 */
.news--lit .webgene-blog {
  gap: 0;
}

.news--lit .webgene-item .news_inner {
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  background: none;
  border-radius: 0;
  border-bottom: 1px solid var(--lit-main);
  padding: 24px;
}

/* サーバー側のグリッドCSS（.col-12 = width:100%）を打ち消して横並びを維持 */
.news--lit .webgene-item .news_inner .col-12 {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  padding: 0;
}

/* スマホ：リンク列は行全体を使い、はみ出さない */
.news--lit .webgene-item .news_inner .col-12:last-child {
  flex: 1 1 100%;
  min-width: 0;
}

.news--lit .webgene-item .news_inner .col-12 p {
  font-family: var(--font-kaku);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2.2;
  color: var(--lit-text);
}

/* 日付列 */
.news--lit .webgene-item .news_inner .col-12:first-child p {
  color: var(--lit-main);
}

/* リンク列：カテゴリラベル + タイトル */
.news--lit .webgene-item .news_inner .col-12:last-child a {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 0; /* リンク内の全角スペース由来の余白を消す */
}

.news--lit .webgene-item .news_inner .col-12:last-child a p {
  line-height: 1.8;
}

/* カテゴリラベル（新着情報 / 施術例）: 固定幅でタイトル先頭を揃える */
.news--lit .webgene-item .news_inner .col-12:last-child a p:first-child {
  flex: 0 0 auto;
  width: 96px;
  padding: 2px 8px;
  font-size: 13px;
  text-align: center;
  white-space: nowrap;
  color: var(--lit-white);
  background: var(--lit-main);
}

/* タイトル */
.news--lit .webgene-item .news_inner .col-12:last-child a p:last-child {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 16px;
  overflow-wrap: anywhere;
}

@media (min-width: 769px) {
  .news.news--lit {
    padding: 90px 0;
  }

  .news--lit .webgene-item .news_inner .col-12:first-child {
    flex: 0 0 auto;
  }

  .news--lit .webgene-item .news_inner .col-12:last-child {
    flex: 1 1 0;
    min-width: 0;
  }

  .news--lit .section-head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .news--lit .section-head__ja {
    font-size: 40px;
  }

  .news--lit .webgene-item .news_inner {
    flex-direction: row;
    align-items: center;
    padding: 32px 24px;
  }
}

/* --------------------------------------------------------------------------
   新着情報・施術例（Lilou / node 52-1089）
   ・グレー帯 #efefef の上に白カード、左に見出し＋ボタン / 右にリスト
   ・#wgc-1788142354808 配下の HTML は変更せず、クラスセレクタのみで上書き
   -------------------------------------------------------------------------- */
.news.news--lilou {
  padding: clamp(40px, 6vw, 86px) 0;
  background: #efefef;
}

.news--lilou .section-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1440px;
  padding: clamp(52px, 9vw, 104px) clamp(22px, 6vw, 104px);
  background: #ffffff;
}

/* 左カラム：見出し＋ボタン */
.news--lilou .section-head {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 0;
}

.news--lilou .section-head__ttl {
  position: relative;
  display: block;
}

/* 英字スクリプト（Figma: topics_text.svg / Mrs Saint Delafield） */
.news--lilou .section-head__en {
  margin: 0;
  font-size: 0;
  line-height: 0;
}

.news--lilou .section-head__en img {
  display: block;
  width: clamp(210px, 24vw, 325px);
  height: auto;
}

.news--lilou .section-head__ja {
  position: relative;
  margin-top: clamp(-124px, -11.5vw, -58px);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 40px);
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: var(--c-brown-dark);
}

/* 一覧ボタン：塗りのブラウンピル（Figma: 左カラム下）／ 文字は中央・矢印は右 */
.news--lilou .btn.btn--line {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: clamp(220px, 22vw, 310px);
  height: clamp(54px, 5vw, 72px);
  margin-top: clamp(32px, 5vw, 64px);
  padding: 0 46px;
  border: 0;
  border-radius: 999px;
  background: var(--c-brown);
  color: var(--c-white);
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: clamp(15px, 1.1vw, 18px);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.news--lilou .btn.btn--line::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 16px;
  height: 15px;
  border: 0;
  border-radius: 0;
  background: url("/system_panel/uploads/images/arrow.png") center / contain
    no-repeat;
  transform: translateY(-50%);
}

.news--lilou .btn.btn--line,
.news--lilou .btn.btn--line:link,
.news--lilou .btn.btn--line:visited,
.news--lilou .btn.btn--line:hover,
.news--lilou .btn.btn--line:focus,
.news--lilou .btn.btn--line:active {
  color: var(--c-white);
}

.news--lilou .btn.btn--line:hover {
  color: var(--c-white);
  opacity: 0.85;
}

/* 右カラム：リスト本体 */
.news--lilou .webgene-blog {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--c-line-lilou);
}

.news--lilou .webgene-item .news_inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin: 0; /* Bootstrap .row の負マージン打ち消し */
  padding: 18px 4px;
  background: none;
  border-radius: 0;
  border-bottom: 1px solid var(--c-line-lilou);
}

/* サーバー側の .col-12(width:100%) を打ち消し */
.news--lilou .webgene-item .news_inner .col-12 {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  padding: 0;
}

.news--lilou .webgene-item .news_inner .col-12 p {
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: var(--c-text-lilou);
}

/* 日付 */
.news--lilou .webgene-item .news_inner .col-12:first-child p {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--c-brown);
}

/* リンク列（カテゴリラベル＋タイトル） */
.news--lilou .webgene-item .news_inner .col-12:last-child {
  flex: 1 1 100%;
  min-width: 0;
}

.news--lilou .webgene-item .news_inner .col-12:last-child a {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 0; /* リンク内の全角スペース由来の余白を消す */
  color: inherit;
}

.news--lilou .webgene-item .news_inner .col-12:last-child a:hover {
  opacity: 0.6;
}

/* カテゴリラベル（新着情報 / 施術例）: 枠なしの控えめなテキスト */
.news--lilou .webgene-item .news_inner .col-12:last-child a p:first-child {
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
  color: var(--c-brown);
}

/* タイトル */
.news--lilou .webgene-item .news_inner .col-12:last-child a p:last-child {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 500;
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--c-text-lilou);
  overflow-wrap: anywhere;
}

/* CMS が段落ごとに付ける .pXXXXXXXXXX クラス（main.css のリッチテキスト既定：
   font-size / color / margin など）に負けないよう、id セレクタで再指定する */
#news.news--lilou .webgene-item .news_inner .col-12 p {
  margin: 0;
  padding: 0;
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: var(--c-text-lilou);
  text-align: left;
}

#news.news--lilou .webgene-item .news_inner .col-12:first-child p {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--c-brown);
}

#news.news--lilou .webgene-item .news_inner .col-12:last-child a p:first-child {
  padding: 0;
  border: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-brown);
}

#news.news--lilou .webgene-item .news_inner .col-12:last-child a p:last-child {
  font-weight: 500;
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--c-text-lilou);
}

@media (min-width: 769px) {
  #news.news--lilou .webgene-item .news_inner .col-12:last-child a p:last-child {
    font-size: 16px;
  }
}

@media (min-width: 769px) {
  .news--lilou .section-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(36px, 6vw, 110px);
  }

  .news--lilou .section-head {
    flex: 0 0 clamp(260px, 24%, 340px);
  }

  .news--lilou .webgene-blog {
    flex: 1 1 0;
    min-width: 0;
  }

  .news--lilou .webgene-item .news_inner {
    flex-direction: row;
    align-items: center;
    gap: clamp(20px, 3vw, 48px);
    min-height: clamp(78px, 8vw, 102px);
    padding: 14px 40px 14px 4px;
  }

  /* 行末の矢印（Figma: Arrow 3-5） */
  .news--lilou .webgene-item .news_inner::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--c-brown-dark);
    border-right: 1px solid var(--c-brown-dark);
    transform: translateY(-50%) rotate(45deg);
  }

  .news--lilou .webgene-item .news_inner .col-12:first-child {
    flex: 0 0 auto;
  }

  .news--lilou .webgene-item .news_inner .col-12:last-child {
    flex: 1 1 0;
  }
}

/* ==========================================================================
   news.html（新着情報・施術例 一覧ページ）
   CMS の一覧テンプレート（.news-item / .news__sec1-*）を Lilou 配色に。
   index.html の注目表示（.news_inner / .col-12）とは別マークアップなので
   :has(.news-item) で一覧ページだけに適用する。
   ========================================================================== */
.news--lilou:has(.news-item) {
  padding: 0;
  background: #ffffff;
}

.news--lilou:has(.news-item) .section-inner {
  flex-direction: column;
  gap: 0;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 88px) 22px clamp(56px, 9vw, 104px);
  background: #ffffff;
}

.news--lilou .webgene-blog {
  width: 100%;
}

.news--lilou .webgene-item {
  border-bottom: 1px solid var(--c-line-lilou);
}

.news--lilou .news-item {
  display: block;
  padding: 20px 4px;
  color: inherit;
  transition: opacity 0.2s ease;
}

.news--lilou .news-item:hover {
  opacity: 0.6;
}

.news--lilou .news__sec1-box {
  width: 100%;
}

.news--lilou .news__sec1-p-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.news--lilou .news__sec1-p-box-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
}

/* 日付 */
.news--lilou .news__sec1-title {
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--c-brown);
}

/* タイトル */
.news--lilou .news__sec1-p {
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: var(--c-text-lilou);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 行末の矢印：画像は隠して index と同じ小さなシェブロンに揃える */
.news--lilou .news-item .icon {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--c-brown-dark);
  border-right: 1px solid var(--c-brown-dark);
  transform: rotate(45deg);
}

.news--lilou .news__sec1-news-arrow {
  display: none;
}

/* ページネーション */
.news--lilou .webgene-pagination {
  margin-top: 32px;
}

.news--lilou .webgene-pagination ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news--lilou .webgene-pagination a,
.news--lilou .webgene-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  font-family: var(--lilou-en);
  font-weight: 600;
  font-size: 15px;
  color: var(--c-brown);
  border: 1px solid var(--c-line-lilou);
}

.news--lilou .webgene-pagination a:hover {
  color: var(--c-white);
  background: var(--c-brown);
  border-color: var(--c-brown);
  opacity: 1;
}

@media (min-width: 769px) {
  .news--lilou:has(.news-item) .section-inner {
    flex-direction: column;
    gap: 0;
    padding: clamp(64px, 9vw, 110px) clamp(22px, 6vw, 64px) clamp(72px, 10vw, 120px);
  }

  .news--lilou:has(.news-item) .webgene-blog {
    flex: 0 0 auto;
  }

  .news--lilou .news-item {
    padding: 22px 8px;
  }

  .news--lilou .news__sec1-p-box-wrap {
    flex-direction: row;
    align-items: center;
    gap: 28px;
  }

  .news--lilou .news__sec1-title {
    flex: 0 0 auto;
  }

  .news--lilou .news__sec1-p {
    flex: 1 1 auto;
    font-size: 16px;
  }
}

/* ==========================================================================
   newsdetail.html（新着情報・施術例 詳細ページ）
   CMS の詳細テンプレート（.newsdetail__sec1-* / .back-btn）を Lilou 配色に。
   ========================================================================== */
.news.news--lilou-detail {
  padding: 0;
  background: #ffffff;
}

.news--lilou-detail .section-inner {
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 88px) 22px clamp(56px, 9vw, 104px);
  background: #ffffff;
}

.news--lilou-detail .webgene-blog,
.news--lilou-detail .webgene-item {
  width: 100%;
  border: 0;
}

.news--lilou-detail .newsdetail__sec1-title {
  margin: 0 0 clamp(24px, 4vw, 36px);
  padding-bottom: clamp(18px, 3vw, 26px);
  border-bottom: 1px solid var(--c-brown);
}

.news--lilou-detail .newsdetail__sec1-date {
  margin: 0 0 12px;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--c-brown);
}

.news--lilou-detail .newsdetail__sec1-h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--c-brown-dark);
}

.news--lilou-detail .newsdetail__sec1-p {
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 2;
  color: var(--c-text-lilou);
}

.news--lilou-detail .newsdetail__sec1-box img {
  width: 100%;
  height: auto;
  margin: 16px 0;
}

/* 記事一覧へ戻る */
.news--lilou-detail .webgene-pagination {
  margin-top: clamp(40px, 7vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.news--lilou-detail .btn-block__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 34px;
  border-radius: 999px;
  background: var(--c-brown);
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.06em;
}

.news--lilou-detail .btn-block__link,
.news--lilou-detail .btn-block__link:link,
.news--lilou-detail .btn-block__link:visited,
.news--lilou-detail .btn-block__link:hover,
.news--lilou-detail .btn-block__link:focus {
  color: var(--c-white);
}

.news--lilou-detail .btn-block__link:hover {
  opacity: 0.88;
}

.news--lilou-detail .back-btn__arrow {
  width: 15px;
  height: 14px;
  transform: rotate(180deg);
  filter: brightness(0) invert(1);
}

@media (min-width: 769px) {
  .news--lilou-detail .section-inner {
    flex-direction: column;
    gap: 0;
    padding: clamp(64px, 9vw, 110px) clamp(22px, 6vw, 64px) clamp(72px, 10vw, 120px);
  }

  .news--lilou-detail .newsdetail__sec1-p {
    font-size: 16px;
  }
}

.recommend__en {
  font-family: var(--font-lit-en);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.recommend__ttl {
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin: 0;
}

.recommend__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  background: var(--lit-white);
  color: var(--lit-text);
  padding: 32px 24px;
  text-align: left;
}

.recommend__lead {
  font-family: var(--font-kaku);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.about__en {
  font-family: var(--font-lit-en);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--lit-main);
}

.about__ttl {
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--lit-text);
  margin: 0;
}

.about-item__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-item__ttl {
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: var(--lit-text);
  margin: 0;
}

.about-item__txt {
  font-family: var(--font-kaku);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 2;
  color: var(--lit-text);
  margin: 0;
}

.lit-menu__ttl {
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--lit-text);
  margin: 0;
}

.lit-menu__lead {
  font-family: var(--font-kaku);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  color: var(--lit-text);
  margin: 0;
}

.lit-menu__gallery {
  display: flex;
  gap: 16px;
  width: 100%;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
}

.lit-menu__gallery img {
  flex: 0 0 auto;
  width: 200px;
  height: auto;
  object-fit: cover;
  scroll-snap-align: start;
}

@media (min-width: 769px) {

  .lit-menu__ttl {
    font-size: 40px;
  }

  .lit-menu__lead {
    font-size: 18px;
  }

  .lit-menu__gallery {
    justify-content: center;
    overflow-x: visible;
  }

  .lit-menu__gallery img {
    width: auto;
    flex: 1 1 0;
    max-width: 280px;
  }
}

@media (min-width: 1440px) {
  .lit-menu__ttl {
    font-size: 48px;
  }
}

.lit-promo__media {
  position: relative;
}

.lit-promo__media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.lit-promo__en {
  font-family: var(--font-lit-en);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--lit-main);
  margin: 0;
}

.lit-promo__ttl {
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--lit-text);
  margin: 0;
  white-space: nowrap;
}

.lit-promo__txt {
  font-family: var(--font-kaku);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 2.2;
  color: var(--lit-text);
  margin: 0;
  text-wrap: pretty;
}

@media (max-width: 425px) {
  .lit-promo__ttl {
    white-space: normal;
  }

  .lit-promo__txt br {
    display: none;
  }
}

@media (min-width: 769px) {

  .lit-promo__media {
    flex: 1 1 0;
    min-width: 0;
  }

  .lit-promo__en {
    font-size: 30px;
  }

  .lit-promo__ttl {
    font-size: 40px;
  }

  .lit-promo__txt {
    font-size: 16px;
  }
}

@media (min-width: 1440px) {
  .lit-promo__ttl {
    font-size: 48px;
  }
}

.lit-first__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  background: #788e98;
  color: var(--lit-white);
  padding: 40px 24px;
  text-align: center;
}

.lit-first__en {
  font-family: var(--font-lit-en);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin: 0;
}

.lit-first__ttl {
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin: 0;
}

.lit-first__lead {
  font-family: var(--font-kaku);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 769px) {

  .lit-first__box {
    gap: 40px;
    padding: 80px;
  }

  .lit-first__en {
    font-size: 30px;
  }

  .lit-first__ttl {
    font-size: 40px;
  }

  .lit-first__lead {
    font-size: 18px;
  }
}

@media (min-width: 1440px) {
  .lit-first__ttl {
    font-size: 48px;
  }
}

/* --------------------------------------------------------------------------
   店舗案内・アクセス（Salon info / node 53-1090）
   ※ Google Map ブロックは既存のまま。ユーザー指定で Map は右カラム
   -------------------------------------------------------------------------- */
.salon {
  padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 110px);
  background: #ffffff;
}

.salon__head {
  position: relative;
  max-width: var(--container);
  margin: 0 auto clamp(32px, 4vw, 60px);
  padding: 0 22px;
  text-align: center;
}

/* 「店舗案内・アクセス」の背面に敷く英字スクリプト */
.salon__label {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: clamp(220px, 42vw, 520px);
  margin: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

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

.salon__ttl {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 50px);
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: var(--c-brown-dark);
}

.salon__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 48px);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 22px;
}

/* 店名 */
.salon__name {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 16px;
  margin: 0;
}

.salon__name-en {
  font-family: var(--lilou-en);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 35px);
  letter-spacing: 0.05em;
  color: #333333;
}

.salon__name-ja {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #000000;
}

/* 情報テーブル */
.salon__table {
  display: flex;
  flex-direction: column;
  margin: clamp(16px, 2vw, 24px) 0 0;
  border-top: 1px solid var(--c-line-lilou);
}

.salon__row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--c-line-lilou);
}

.salon__row dt {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: clamp(15px, 1.15vw, 18px);
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: var(--c-text-lilou);
}

.salon__row dd {
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: clamp(15px, 1.15vw, 18px);
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: var(--c-text-lilou);
}

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

.salon__sns img {
  width: 40px;
  height: 40px;
}

/* WEB予約 / 公式LINE */
.salon__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(20px, 3vw, 32px);
}

.salon__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 1 1 200px;
  max-width: 270px;
  height: clamp(58px, 5vw, 75px);
  border-radius: 999px;
  color: var(--c-white);
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: clamp(15px, 1.1vw, 18px);
  letter-spacing: 0.05em;
}

.salon__btn img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.salon__btn--web {
  background: var(--c-gold);
}

.salon__btn--line {
  background: var(--c-green);
}

.salon__btn--line img {
  filter: brightness(0) invert(1);
}

/* グローバルの a:visited { color: inherit } に負けないよう擬似クラスを明示 */
.salon__btn,
.salon__btn:link,
.salon__btn:visited,
.salon__btn:hover,
.salon__btn:focus,
.salon__btn:active,
.salon__btn span {
  color: var(--c-white);
}

.salon__btn:hover {
  opacity: 0.88;
}

/* Google Map（既存ブロック・ユーザー指定で右側） */
.salon__map {
  width: 100%;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: #d9d9d9;
}

.salon__map iframe,
.salon__map div[src] {
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
}

/* --- デスクトップ：左に Google Map / 右に店舗情報 --- */
@media (min-width: 1024px) {
  .salon__inner {
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: clamp(48px, 6vw, 92px);
    padding: 0 clamp(22px, 5vw, 72px);
  }

  .salon__body {
    flex: 1 1 0;
    min-width: 0;
  }

  .salon__map {
    flex: 0 0 45%;
    aspect-ratio: 647 / 743;
  }

  .salon__row {
    flex-direction: row;
    align-items: baseline;
    gap: clamp(24px, 4vw, 64px);
    padding: clamp(14px, 1.6vw, 22px) 4px;
  }

  /* SNS 行はアイコンなのでベースラインではなく上下中央で揃える */
  .salon__row:has(.salon__sns) {
    align-items: center;
  }

  .salon__row dt {
    flex: 0 0 clamp(88px, 9vw, 120px);
  }

  .salon__row dd {
    flex: 1 1 0;
    min-width: 0;
  }
}

/* --------------------------------------------------------------------------
   ご予約の前に（Before reservation / node 66-1095）※ salon の直下
   -------------------------------------------------------------------------- */
.prep {
  padding: clamp(8px, 2vw, 24px) 22px clamp(56px, 8vw, 100px);
  background: #ffffff;
}

.prep__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 2.6vw, 28px);
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 6vw, 90px);
  text-align: center;
  background: var(--c-cream);
}

/* 内側の細い金色ボーダー（Figma: 10px インセット） */
.prep__inner::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--c-gold);
  pointer-events: none;
}

.prep__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.prep__ttl {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(24px, 2.4vw, 35px);
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--c-brown-dark);
}

.prep__head::after {
  content: "";
  width: 104px;
  height: 2px;
  background: var(--c-brown);
}

.prep__txt {
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: clamp(14px, 1.15vw, 18px);
  letter-spacing: 0.05em;
  line-height: 1.9;
  color: var(--c-text-lilou);
}

.prep__txt br {
  display: none;
}

.prep__txt p {
  margin: 0;
}

.prep__txt p + p {
  margin-top: 0.9em;
}

.prep__more {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: clamp(240px, 22vw, 310px);
  height: clamp(58px, 5vw, 75px);
  margin-top: clamp(4px, 1vw, 12px);
  padding: 0 44px;
  border-radius: 999px;
  background: var(--c-brown);
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: clamp(15px, 1.1vw, 18px);
  letter-spacing: 0.05em;
}

.prep__more,
.prep__more:link,
.prep__more:visited,
.prep__more:hover,
.prep__more:focus {
  color: var(--c-white);
}

.prep__more:hover {
  opacity: 0.88;
}

.prep__more::after {
  content: "";
  width: 16px;
  height: 15px;
  background: url("/system_panel/uploads/images/arrow.png") center / contain
    no-repeat;
}

.prep--info-price {
  box-sizing: border-box;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 22px;
  background: transparent;
}

.prep--info-price .prep__txt {
  max-width: 58em;
  text-align: left;
}

.prep__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
}

.prep__actions .prep__more {
  margin-top: 0;
}

/* SP：文字数差でボタンの横幅がバラつかないよう、幅いっぱいで揃える */
@media (max-width: 768px) {
  .prep__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .prep__actions .prep__more {
    width: 100%;
    min-width: 0;
  }
}

@media (min-width: 769px) {
  .prep__txt br {
    display: block;
  }
}

/* --------------------------------------------------------------------------
   よくあるご質問
   -------------------------------------------------------------------------- */
.faq {
  padding: 24px;
}

/* --------------------------------------------------------------------------
   ご予約・お問い合わせ（Reservation / node 66-1091）
   -------------------------------------------------------------------------- */
.contact {
  position: relative;
  overflow: hidden;
  background: #3a2a1c
    url("/system_panel/uploads/images/reservation_image.jpg") center / cover
    no-repeat;
}

.contact__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 2vw, 22px);
  max-width: 1720px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(22px, 5vw, 60px) clamp(52px, 8vw, 96px);
  text-align: center;
  color: #ffffff;
}

.contact__head {
  position: relative;
  display: block;
}

/* 英字スクリプト（reservation_text.svg・白 22%） */
.contact__en {
  margin: 0;
  line-height: 0;
}

.contact__en img {
  display: block;
  width: min(600px, 78vw);
  height: auto;
  margin: 0 auto;
}

.contact__ttl {
  position: relative;
  margin: clamp(-38px, -3.6vw, -14px) 0 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(24px, 2.9vw, 42px);
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #ffffff;
}

.contact__txt {
  margin: clamp(8px, 1.5vw, 16px) 0 0;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: clamp(14px, 1.1vw, 18px);
  letter-spacing: 0.05em;
  line-height: 1.78;
  color: #ffffff;
}

.contact__buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 420px;
  margin-top: clamp(20px, 3vw, 36px);
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: clamp(62px, 5vw, 96px);
  padding: 0 24px;
  border-radius: 999px;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: clamp(15px, 1.2vw, 23px);
  letter-spacing: 0.05em;
  color: #ffffff;
}

.contact-btn img {
  width: clamp(28px, 2.2vw, 40px);
  height: clamp(28px, 2.2vw, 40px);
  flex-shrink: 0;
  object-fit: contain;
}

.contact-btn--web {
  background: var(--c-gold);
}

.contact-btn--hpb {
  background: var(--c-pink);
}

.contact-btn--line {
  background: var(--c-green);
}

.contact-btn--line img {
  filter: brightness(0) invert(1);
}

.contact-btn--tel {
  background: #ffffff;
}

/* グローバル a:visited { color: inherit } 対策 */
.contact-btn,
.contact-btn:link,
.contact-btn:visited,
.contact-btn:hover,
.contact-btn:focus,
.contact-btn:active {
  color: #ffffff;
}

.contact-btn--tel,
.contact-btn--tel:link,
.contact-btn--tel:visited,
.contact-btn--tel:hover,
.contact-btn--tel:focus,
.contact-btn--tel:active {
  color: var(--c-brown);
}

.contact-btn:hover {
  opacity: 0.9;
}

.contact__hours {
  margin: clamp(16px, 2.5vw, 28px) 0 0;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: clamp(13px, 1vw, 18px);
  letter-spacing: 0.03em;
  line-height: 1.8;
  color: #ffffff;
}

@media (min-width: 769px) {
  .contact__buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(12px, 1.4vw, 16px);
    max-width: 1440px;
  }

  .contact-btn {
    flex: 1 1 300px;
    max-width: 360px;
  }
}

/* --------------------------------------------------------------------------
   フッター
   -------------------------------------------------------------------------- */
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
  padding: 22px;
  background: #ffffff;
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: #333333;
  text-align: center;
}

.site-footer__nav a {
  padding: 3px 0;
  color: #333333;
}

.site-footer__nav a:hover,
.site-footer__nav a:visited,
.site-footer__nav a:focus {
  color: #333333;
}

.site-footer__nav a:hover {
  opacity: 0.6;
}

.site-footer__copy {
  margin: 0;
  padding: 12px 16px;
  background: #333333;
  color: #ffffff;
  text-align: center;
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* 〜425px：フッターナビを縦1列に */
@media (max-width: 425px) {
  .site-footer__nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer__nav a {
    padding: 12px 8px;
    border-bottom: 1px solid #eee;
  }

  .site-footer__nav a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 768px) {
  .site-footer__copy {
    padding-bottom: 10px;
  }
}

/* ==========================================================================
   ブレイクポイント： min-width 769px（タブレット）
   ========================================================================== */
@media (min-width: 769px) {
  .news.news--lit {
    padding: 64px 0;
  }

  .section-head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
  }

  .section-head__en {
    font-size: 24px;
  }

  .section-head__ja {
    font-size: 36px;
  }

  .news {
    padding: 90px 0;
  }

  .faq {
    padding: 24px 40px;
  }

  .webgene-blog {
    font-size: 16px;
  }

  .webgene-item .news_inner {
    flex-direction: row;
    align-items: center;
    padding: 28px 32px;
  }

  .recommend__en {
    font-size: 30px;
  }

  .recommend__ttl {
    font-size: 36px;
  }

  .recommend__card {
    gap: 28px;
    padding: 48px;
  }

  .recommend__lead {
    font-size: 20px;
  }

  .about__en {
    font-size: 30px;
  }

  .about__ttl {
    font-size: 40px;
  }

  .about-item__media {
    flex: 1 1 0;
    min-width: 0;
  }

  .about-item__media img {
    aspect-ratio: 4 / 3;
  }

  .about-item__ttl {
    font-size: 40px;
    line-height: 2;
  }

  .about-item__txt {
    font-size: 16px;
    line-height: 2.2;
  }

  .site-footer__nav {
    gap: 16px 30px;
    padding: 27px 40px;
    font-size: 16px;
  }
}

/* ==========================================================================
   ブレイクポイント： min-width 1024px（デスクトップ）
   ========================================================================== */
@media (min-width: 1024px) {

  .site-footer__copy {
    padding: 12px 16px;
  }

  .news--lit .section-inner {
    padding: 64px 40px;
  }

  .btn {
    font-size: 16px;
    padding: 8px 46px 8px 20px;
  }

  .section-head__ja {
    font-size: 32px;
  }

  .news {
    padding: 120px 0;
  }

  .faq {
    padding: 120px 40px 0px;
  }

  .about__ttl {
    font-size: 48px;
  }

  .recommend__ttl {
    font-size: 48px;
  }

  .recommend__card {
    gap: 32px;
    padding: 64px;
  }

  .recommend__lead {
    font-size: 24px;
  }
}

/* ==========================================================================
   ブレイクポイント： min-width 1280px（大画面）
   ========================================================================== */
@media (min-width: 1280px) {
  .section-head__en {
    font-size: 30px;
  }
}

/* ==========================================================================
   ブレイクポイント： min-width 1440px（大画面）
   ========================================================================== */
@media (min-width: 1440px) {
  .section-head__ja {
    font-size: 48px;
  }
}

/* --------------------------------------------------------------------------
   トップページ：スクロールリビール（方向 / ワイプ / ズーム）
   ※ 初期の非表示状態は JS 有効時（.js）のみ。JS が無い/失敗した場合は
     クラスが付かない or この状態が効かないので常に表示される
   -------------------------------------------------------------------------- */
.js .rv {
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .rv--up {
  opacity: 0;
  transform: translateY(34px);
}

.js .rv--left {
  opacity: 0;
  transform: translateX(-44px);
}

.js .rv--right {
  opacity: 0;
  transform: translateX(44px);
}

/* 英字ラベル：左→右のワイプ */
.js .rv--wipe {
  clip-path: inset(0 100% -0.15em 0);
}

/* 画像：左右から交互に「すーっ」とスライドイン（.rv--from-right は右から）
   opacity は一瞬で立ち上げ、移動は速めのイージングで一定の勢いから減速 */
.js .rv--img-slide {
  opacity: 0;
  transform: translateX(-72px);
  transition: opacity 0.22s linear,
    transform 0.55s cubic-bezier(0.33, 0, 0.1, 1);
}

.js .rv--img-slide.rv--from-right {
  transform: translateX(72px);
}

.js .rv--img-slide.is-in {
  opacity: 1;
  transform: none;
  clip-path: none;
}

.js .reveal-slide {
  opacity: 0;
  transform: translateX(-72px);
  transition: opacity 0.22s linear,
    transform 0.65s cubic-bezier(0.33, 0, 0.1, 1);
  will-change: opacity, transform;
}

.js .reveal-slide--from-right {
  transform: translateX(72px);
}

.js .reveal-slide.is-in {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.js .reveal-text {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js .reveal-text.is-in {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.js .rv.is-in {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 -0.15em 0);
}

/* 画像 / 地図：ワイプ + ゆっくりズームアウト */
.js .rv--media {
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: clip-path;
}

.js .rv--media.rv--from-right {
  clip-path: inset(0 0 0 100%);
}

.js .rv--media > img,
.js .rv--media > iframe,
.js img.rv--media {
  display: block;
  transform: scale(1.05);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.js .rv--media.is-in {
  clip-path: inset(0 0 0 0);
}

.js .rv--media.is-in > img,
.js .rv--media.is-in > iframe,
.js img.rv--media.is-in {
  transform: scale(1);
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .js .rv,
  .js .rv--media,
  .js .reveal-slide,
  .js .reveal-text,
  .js .reveal-chars .char,
  .js .rv--media > img,
  .js .rv--media > iframe,
  .js img.rv--media {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
  }

  .js .info-head--hero::after {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

.hero__title .char,
.hero__lead .char,
.info-head__en .char,
.info-head__ja .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero__title .char.is-inview,
.hero__lead .char.is-inview,
.info-head__en .char.is-inview,
.info-head__ja .char.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   下層ページ：サロンについて（info.html）
   -------------------------------------------------------------------------- */
.info-head {
  padding: clamp(40px, 7vw, 76px) 22px clamp(32px, 5vw, 52px);
  text-align: center;
  background: var(--c-cream);
}

.info-head__en {
  margin: 0;
  font-family: var(--lilou-en);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(26px, 3.4vw, 44px);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--c-gold);
}

.info-head__ja {
  margin: 6px 0 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: 0.1em;
  color: var(--c-brown-dark);
}

/* --------------------------------------------------------------------------
   下層ページ見出し：写真ヒーロー版（.info-head--hero）
   -------------------------------------------------------------------------- */
.info-head--hero {
  --info-head-hero-image: url("/system_panel/uploads/images/hair-care_hero.jpg");
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: clamp(300px, 29.5vw, 566px);
  background: #ffffff;
  text-align: left;
}

/* 右側の写真（左端 20% を空けて上いっぱい） */
.info-head--hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: clamp(96px, 20%, 385px);
  height: clamp(255px, 25vw, 480px);
  background:
    linear-gradient(
      90deg,
      rgba(255, 250, 235, 0.94) 0%,
      rgba(255, 250, 235, 0.72) 24%,
      rgba(255, 250, 235, 0) 52%
    )
    left top / 62% 100% no-repeat,
    var(--info-head-hero-image) center top / cover no-repeat;
  z-index: 1;
}

.js .info-head--hero::after {
  opacity: 0;
  transform: translateX(72px);
  animation: info-head-hero-image-in 0.72s cubic-bezier(0.33, 0, 0.1, 1)
    0.18s forwards;
  will-change: opacity, transform;
}

@keyframes info-head-hero-image-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.info-head--salon {
  --info-head-hero-image: url("/system_panel/uploads/images/info_img01.jpg");
}

.info-head--concept {
  --info-head-hero-image: url("/system_panel/uploads/images/concept_img01.jpg");
}

.info-head--strong-hair {
  --info-head-hero-image: url("/system_panel/uploads/images/strong_hair_hero.png");
}

.info-head--bleach-color {
  --info-head-hero-image: url("/system_panel/uploads/images/bleach-color_img01.jpg");
}

/* 下側に広がるクリームの横帯 */
.info-head--hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: clamp(112px, 10.5vw, 201px);
  bottom: 0;
  background: var(--c-cream);
  z-index: 0;
}

/* 左寄せのテキスト（帯の上に重なる） */
.info-head--hero .info-head__panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 0.3vw, 6px);
  padding: clamp(88px, 8.85vw, 170px) 22px clamp(36px, 5vw, 96px)
    clamp(24px, 5.26vw, 101px);
  background: transparent;
}

.info-head--hero .info-head__en {
  margin: 0;
  font-family: var(--lilou-en);
  font-weight: 600;
  font-style: normal;
  font-size: clamp(20px, 1.82vw, 35px);
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--c-gold);
}

.info-head--hero .info-head__en em {
  font-style: italic;
}

.info-head--hero .info-head__ja {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 3.33vw, 64px);
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: var(--c-brown-dark);
}

.info {
  padding: clamp(48px, 8vw, 100px) 0;
  background: #ffffff;
  overflow-x: clip;
}

.info__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 9vw, 120px);
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 22px;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4vw, 40px);
}

.info-block__body {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 24px);
}

.info-block__ttl {
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-brown);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: var(--c-brown-dark);
}

.info-block__subttl {
  margin: -6px 0 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(16px, 1.8vw, 21px);
  letter-spacing: 0.06em;
  color: var(--c-brown);
}

.info-block__text {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: var(--c-text-lilou);
}

.info-block__text p {
  margin: 0;
}

.info-block__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-noto);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--c-text-lilou);
}

.info-block__list li {
  position: relative;
  padding-left: 20px;
}

.info-block__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
}

.info-block__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* 情報グリッド（サロン情報・アクセス） */
.info-table {
  display: flex;
  flex-direction: column;
  margin: 0;
  border-top: 1px solid var(--c-line-lilou);
}

.info-table > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 2px;
  border-bottom: 1px solid var(--c-line-lilou);
}

.info-table .info-table__term {
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--c-brown-dark);
}

.info-table .info-table__desc {
  margin: 0;
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--c-text-lilou);
}

.info-block__note {
  margin: 4px 0 0;
  font-family: var(--font-noto);
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--c-brown);
}

.info-block__more {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--c-brown);
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.06em;
}

.info-block__more,
.info-block__more:link,
.info-block__more:visited,
.info-block__more:hover,
.info-block__more:focus {
  color: var(--c-white);
}

.info-block__more:hover {
  opacity: 0.88;
}

.info-block__more::after {
  content: "";
  width: 16px;
  height: 15px;
  background: url("/system_panel/uploads/images/arrow.png") center / contain
    no-repeat;
}

@media (min-width: 769px) {
  .info-block {
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(40px, 6vw, 72px);
  }

  .info-block--reverse {
    flex-direction: row-reverse;
  }

  .info-block__body {
    flex: 1 1 0;
    min-width: 0;
  }

  .info-block__media {
    flex: 0 0 42%;
  }

  .info-block--text .info-block__body,
  .info-block--wide .info-block__body {
    flex: 1 1 100%;
  }

  .info-block__text,
  .info-block__list {
    font-size: 16px;
  }

  .info-block--concept-smile {
    flex-direction: column;
    align-items: center;
  }

  .info-block--concept-smile .info-block__body,
  .info-block--concept-smile .info-block__media {
    flex: 0 1 auto;
  }
}

/* --------------------------------------------------------------------------
   hair-care.html：髪質改善とは／当サロンの特徴（Figma 159-24）
   -------------------------------------------------------------------------- */
.info-block--about,
.info-block--feature,
.info-block--flow {
  position: relative;
}

.info-block--about .info-block__body,
.info-block--feature .info-block__body,
.info-block--flow .info-block__body {
  position: relative;
  z-index: 2;
  overflow: visible;
}

/* 背景の装飾スクリプト文字（About / Feature）：見出しに追従して真上に重なる */
.info-block__deco {
  position: absolute;
  z-index: -1;
  left: clamp(-10px, -0.5vw, 0px);
  bottom: -0.12em;
  font-family: "Mrs Saint Delafield", cursive;
  font-weight: 400;
  font-size: clamp(84px, 11vw, 150px);
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
  color: rgba(201, 172, 100, 0.3);
  pointer-events: none;
  user-select: none;
}

/* 見出し：下線なし・ブラウン・セリフ大 */
.info-block--about .info-block__ttl,
.info-block--feature .info-block__ttl,
.info-block--flow .info-block__ttl {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
  border-bottom: 0;
  font-weight: 500;
  font-size: clamp(24px, 3.6vw, 42px);
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: var(--c-brown);
}

/* 施術の流れ：見出しは少し小さめ（Figma 35px） */
.info-block--flow .info-block__ttl {
  font-size: clamp(22px, 2.8vw, 35px);
}

.info-block__ttl-small {
  font-size: 0.72em;
}

/* 本文：Figma（Noto Sans 18 / 行間1.8 / 字間0.05em） */
.info-block--about .info-block__text,
.info-block--feature .info-block__text,
.info-block--flow .info-block__text {
  gap: 1.4em;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--c-text-lilou);
}

/* 特徴／施術の流れ：サブ見出し＋区切り線 */
.info-block--feature .info-block__subttl {
  display: inline-block;
  align-self: flex-start;
  box-sizing: border-box;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding-bottom: clamp(14px, 2vw, 22px);
  border-bottom: 1px solid var(--c-text-lilou);
  font-weight: 600;
  font-size: clamp(19px, 2.6vw, 32px);
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--c-text-lilou);
}

.info-block--flow .info-block__subttl {
  display: inline-block;
  align-self: flex-start;
  box-sizing: border-box;
  width: fit-content;
  max-width: min(100%, 620px);
  margin: 0;
  padding-bottom: clamp(12px, 1.8vw, 18px);
  border-bottom: 1px solid var(--c-text-lilou);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(16px, 1.9vw, 26px);
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--c-text-lilou);
}

/* 施術の流れ：ゴールドのスクリプト（Treatment flow・やや濃いめ・字下げ・1行） */
.info-block--flow .info-block__deco {
  left: clamp(48px, 8vw, 154px);
  bottom: -0.08em;
  font-size: clamp(52px, 6vw, 116px);
  color: rgba(201, 172, 100, 0.6);
}

/* --------------------------------------------------------------------------
   strong-hair.html：強髪の2つのアプローチ（テキストのみ・コンテナ幅内）
   -------------------------------------------------------------------------- */
.info-block--approach {
  flex-direction: column;
}

.info-block--approach .info-block__ttl {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
  border-bottom: 0;
  font-weight: 500;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: 0.05em;
  color: var(--c-brown);
}

.approach {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 56px);
}

.approach__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(12px, 3vw, 34px);
  padding-top: clamp(24px, 4vw, 38px);
  border-top: 1px solid var(--c-line-lilou);
}

.approach__num {
  margin: 0;
  font-family: var(--lilou-en);
  font-weight: 600;
  font-size: clamp(28px, 4.4vw, 52px);
  line-height: 1;
  color: var(--c-gold);
}

.approach__body {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2.4vw, 20px);
  min-width: 0;
}

.approach__ttl {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(17px, 2vw, 24px);
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--c-brown-dark);
}

.approach__lead {
  margin: clamp(4px, 1vw, 10px) 0 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(15px, 1.6vw, 18px);
  letter-spacing: 0.06em;
  color: var(--c-brown);
}

.approach__lead::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1px;
  margin-right: 0.6em;
  vertical-align: middle;
  background: var(--c-gold);
}

/* 特徴：写真はクリームパネルより前面へ */
.info-block--feature .info-block__media {
  position: relative;
  z-index: 1;
}

/* 特徴：背面のクリームパネル（Figma 159-24）
   見出しの下あたりから始まる帯。左端まで裁ち落とし、右は途中で止めて写真が前面に張り出す。 */
.info-block--feature::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: clamp(20px, 5vw, 40px);
  bottom: clamp(-44px, -5vw, -24px);
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  background: var(--c-cream);
}

.info-block--concept-smile {
  position: relative;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 5vw, 58px);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(58px, 7.2vw, 112px) 22px clamp(58px, 6.6vw, 96px);
  overflow: hidden;
  text-align: center;
}

.info-block--concept-smile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("/system_panel/uploads/images/concept_back.jpg") center /
    cover no-repeat;
}

.info-block--concept-smile > * {
  position: relative;
  z-index: 1;
}

.info-block--concept-smile .info-block__body {
  align-items: center;
  gap: clamp(28px, 4.2vw, 64px);
  width: min(100%, 1100px);
}

.info-block--concept-smile .info-block__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(6px, 0.8vw, 10px);
  margin: 0;
  padding-bottom: 0;
  border-bottom: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 36px);
  letter-spacing: 0.08em;
  line-height: 1.45;
  color: var(--c-brown);
}

.info-block--concept-smile .info-block__ttl strong {
  display: block;
  font-weight: 500;
  font-size: clamp(30px, 3vw, 50px);
  line-height: 1.35;
}

.info-block--concept-smile .info-block__text {
  align-items: center;
  gap: 1.45em;
  max-width: 72em;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: #111111;
}

.info-block--concept-smile .info-block__media {
  width: min(100%, 1185px);
}

.info-block--concept-smile .info-block__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1185 / 501;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.info-block--bleach-menu {
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(72px, 9vw, 120px) 22px;
  overflow: hidden;
}

.info-block--bleach-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
      rgba(255, 255, 255, 0.48),
      rgba(255, 255, 255, 0.48)
    ),
    url("/system_panel/uploads/images/bleach_menu_bg.png") center / cover
      no-repeat;
}

.bleach-menu-panel {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: min(100%, 1180px);
  min-height: clamp(420px, 28vw, 546px);
  padding: clamp(56px, 5vw, 76px) clamp(28px, 6vw, 128px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(72, 44, 22, 0.08);
}

.bleach-menu-panel__deco {
  position: absolute;
  left: clamp(-92px, -4.8vw, -36px);
  top: clamp(-4px, 0.3vw, 8px);
  transform: rotate(-8deg);
  transform-origin: left center;
  font-family: "Mrs Saint Delafield", cursive;
  font-weight: 400;
  font-size: clamp(96px, 9vw, 160px);
  line-height: 1;
  letter-spacing: 0.03em;
  color: rgba(201, 172, 100, 0.28);
  pointer-events: none;
  user-select: none;
}

.bleach-menu-panel__ttl {
  margin: 0 0 clamp(34px, 4vw, 50px);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 43px);
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--c-brown-dark);
}

.bleach-menu-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: var(--font-noto);
  color: var(--c-text-lilou);
}

.bleach-menu-list div {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) 1fr;
  gap: clamp(18px, 3vw, 60px);
  padding: clamp(14px, 1.4vw, 20px) 4px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.22);
}

.bleach-menu-list dt {
  font-weight: 700;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: var(--c-brown-dark);
}

.bleach-menu-list dd {
  margin: 0;
  font-weight: 500;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.7;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .info-block--concept-smile {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .info-block--concept-smile .info-block__ttl {
    letter-spacing: 0.04em;
  }

  .info-block--concept-smile .info-block__text {
    align-items: flex-start;
    text-align: left;
  }

  .info-block--concept-smile .info-block__media img {
    aspect-ratio: 16 / 10;
  }

  .bleach-menu-panel {
    padding: 52px 22px 42px;
  }

  .bleach-menu-panel__deco {
    left: -28px;
    top: 2px;
  }

  .bleach-menu-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (min-width: 769px) {
  /* この2ブロックは 1040px コンテナを飛び出し、画面端から余白を取って組む。
     1024〜1440px 幅では余白を抑えて、画像と本文を広く見せる。 */
  .info-block--about,
  .info-block--feature,
  .info-block--flow {
    --lower-inset: clamp(20px, 8vw, 120px);
  }

  /* About：左は画面端まで裁ち落とし、右は余白を空ける */
  .info-block--about {
    align-items: stretch;
    gap: clamp(32px, 5vw, 96px);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw + var(--lower-inset));
  }

  /* テキストは写真に対して上下中央 */
  .info-block--about .info-block__body {
    justify-content: center;
    padding: clamp(24px, 4vw, 56px) 0;
  }

  .info-block--about .info-block__media {
    flex: 0 0 54%;
  }

  .info-block--about .info-block__media img {
    height: 100%;
    min-height: 440px;
    object-fit: cover;
  }

  .info-block--about-right {
    margin-left: calc(50% - 50vw + var(--lower-inset));
    margin-right: calc(50% - 50vw);
  }

  /* Feature：左右とも余白を空ける */
  .info-block--feature {
    align-items: flex-start;
    gap: clamp(32px, 5vw, 88px);
    margin-left: calc(50% - 50vw + var(--lower-inset));
    margin-right: calc(50% - 50vw + var(--lower-inset));
  }

  /* テキストは写真より下げて始める（Figma：見出しが写真トップより約150px下） */
  .info-block--feature .info-block__body {
    padding-top: clamp(48px, 8vw, 150px);
    padding-bottom: clamp(16px, 2vw, 32px);
  }

  .info-block--feature-center {
    align-items: stretch;
  }

  .info-block--feature-center .info-block__body {
    justify-content: center;
    padding-top: clamp(24px, 4vw, 56px);
    padding-bottom: clamp(24px, 4vw, 56px);
  }

  .info-block--stylist {
    align-items: stretch;
  }

  .info-block--stylist .info-block__body {
    justify-content: center;
    padding-top: clamp(24px, 4vw, 56px);
    padding-bottom: clamp(24px, 4vw, 56px);
  }

  .info-block--feature .info-block__media {
    flex: 0 0 44%;
  }

  .info-block--feature .info-block__media img {
    height: 100%;
    min-height: 360px;
    object-fit: cover;
  }

  /* クリームパネル：下げた見出しの少し下から、画面左端まで裁ち落とし・右は途中で止める */
  .info-block--feature::before {
    top: clamp(90px, 11vw, 200px);
    bottom: clamp(-40px, -4vw, -20px);
    left: calc(50% - 50vw);
    right: 26%;
  }

  /* 施術の流れ：左は約200px空け、写真は右へ画面端まで裁ち落とし（Figma 167-26） */
  .info-block--flow {
    align-items: flex-start;
    gap: clamp(32px, 5vw, 96px);
    margin-left: calc(50% - 50vw + var(--lower-inset));
    margin-right: calc(50% - 50vw);
  }

  /* テキストは写真より下げて始める（Figma：見出しが写真トップより約175px下） */
  .info-block--flow .info-block__body {
    padding-top: clamp(52px, 9vw, 175px);
    padding-bottom: clamp(16px, 2vw, 32px);
  }

  .info-block--flow .info-block__media {
    position: relative;
    z-index: 3;
    flex: 0 0 54%;
  }

  .info-block--flow .info-block__media img {
    height: 100%;
    min-height: 440px;
    object-fit: cover;
  }
}

/* --------------------------------------------------------------------------
   hair-care.html：こんなお悩みにおすすめ（Figma 162-25）
   全幅の写真＋白オーバーレイの上に、中央寄せの見出し・チェックリスト・注記
   -------------------------------------------------------------------------- */
.info-block--problem {
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: clamp(420px, 35vw, 676px);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(104px, 13vw, 180px) 22px clamp(64px, 8vw, 110px);
  overflow: hidden;
  text-align: center;
}

/* 背景写真＋白 76% オーバーレイ（Figma と同じ写真・トリミング） */
.info-block--problem::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
      rgba(255, 255, 255, 0.82),
      rgba(255, 255, 255, 0.82)
    ),
    url("/system_panel/uploads/images/problem_bg.png") center 52% / cover
      no-repeat;
  filter: saturate(0.72);
}

.info-block--problem > * {
  position: relative;
  z-index: 1;
}

.info-block--problem .info-block__ttl {
  position: relative;
  margin: 0;
  padding-bottom: 0;
  border-bottom: 0;
  font-weight: 500;
  font-size: clamp(26px, 3.9vw, 50px);
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: var(--c-text-lilou);
}

/* "Problem" スクリプト（グレー・見出しに対して上下中央〜やや上） */
.info-block--problem .info-block__deco {
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -54%);
  font-size: clamp(120px, 15vw, 236px);
  color: rgba(188, 188, 188, 0.45);
}

/* チェックリスト（check2-square アイコン付き・中央寄せブロック） */
.info-block__check {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 2vw, 25px);
  width: fit-content;
  max-width: min(100%, 30em);
  margin: clamp(36px, 5vw, 56px) auto 0;
  text-align: left;
}

.info-block__check-item {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding-left: 34px;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--c-text-lilou);
}

.info-block__check-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.33em;
  width: 22px;
  height: 22px;
  background: url("/system_panel/uploads/images/icon_check_square.svg") center /
    contain no-repeat;
}

@media (min-width: 768px) {
  .info-block__check-item {
    white-space: nowrap;
  }
}

.info-block--problem .info-block__note {
  max-width: 40em;
  margin: clamp(38px, 4.4vw, 58px) auto 0;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--c-text-lilou);
}

/* --------------------------------------------------------------------------
   hair-care.html：ビフォーアフター（テキストのみ同様にコンテナ幅内・画像なしと違い写真2組）
   -------------------------------------------------------------------------- */
.info-block--gallery {
  flex-direction: column;
  gap: clamp(24px, 3.4vw, 32px);
}

.info-block--gallery .info-block__ttl {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
  border-bottom: 0;
  font-weight: 500;
  font-size: clamp(24px, 3.4vw, 40px);
  letter-spacing: 0.05em;
  color: var(--c-brown);
}

.info-block--gallery .info-block__lead {
  margin: -8px 0 0;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--c-text-lilou);
}

.info-block--gallery .info-block__note {
  margin: 0;
  font-family: var(--font-noto);
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--c-brown);
}

/* ビフォーアフターの比較カード */
.compare {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 52px);
}

.compare__item {
  padding-top: clamp(20px, 3vw, 30px);
  border-top: 1px solid var(--c-line-lilou);
}

.compare__num {
  margin: 0 0 clamp(12px, 1.8vw, 18px);
  font-family: var(--lilou-en);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(16px, 1.7vw, 21px);
  letter-spacing: 0.04em;
  color: var(--c-gold);
}

.compare__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 2vw, 20px);
}

.compare__photo {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3 / 4;
  background: var(--c-gray);
}

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

.compare__tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(34, 31, 26, 0.72);
  font-family: var(--lilou-en);
  font-weight: 600;
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.08em;
  color: var(--c-white);
}

.compare__tag--after {
  background: var(--c-gold);
  color: var(--c-brown-dark);
}

@media (min-width: 769px) {
  .compare__pair {
    gap: clamp(16px, 2.4vw, 28px);
  }
}

/* --------------------------------------------------------------------------
   下層ページ：料金一覧（menu.html）
   -------------------------------------------------------------------------- */
.menu-price {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 44px);
  width: 100%;
}

.menu-price__group {
  display: flex;
  flex-direction: column;
}

.menu-price__cat {
  margin: 0 0 4px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--c-brown);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(17px, 1.9vw, 22px);
  letter-spacing: 0.08em;
  color: var(--c-brown-dark);
}

.menu-price__rows {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.menu-price__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 2px;
  border-bottom: 1px solid var(--c-line-lilou);
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: var(--c-text-lilou);
}

.menu-price__row .menu-price__term {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
}

.menu-price__row .menu-price__price {
  flex: 0 0 auto;
  margin: 0;
  white-space: nowrap;
  font-weight: 500;
  color: var(--c-brown-dark);
}

.menu-price__row .menu-price__price.is-tbd {
  font-weight: 400;
  color: var(--c-brown);
}

.menu-price__note {
  margin: 12px 0 0;
  font-family: var(--font-noto);
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--c-brown);
}

@media (min-width: 769px) {
  .menu-price__cat {
    font-size: 22px;
  }

  .menu-price__row {
    padding: 14px 4px;
    font-size: 15px;
  }
}

/* 下層ページ：ボタンを横並びにするラッパー（複数リンク時）
   ・ボタンは等幅・文字は中央・グループ全体を左右中央
   ・横並びのときはボタン間を広めに */
.info-block__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 40px;
  margin-top: 8px;
}

.info-block__actions .info-block__more {
  flex: 1 1 240px;
  max-width: 320px;
  margin-top: 0;
  justify-content: center;
}

/* ============================================================
   FAQ（faq.html「よくある質問」内のアコーディオン）
   ・新規CSSは .faq* のみ。ラッパーは .info / .info-block を流用
   ============================================================ */
.faq {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 52px);
  width: 100%;
}

.faq__group {
  display: flex;
  flex-direction: column;
}

.faq__cat {
  margin: 0 0 6px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--c-brown);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(17px, 1.9vw, 22px);
  letter-spacing: 0.08em;
  color: var(--c-brown-dark);
}

.faq__item {
  border-bottom: 1px solid var(--c-line-lilou);
}

.faq__q {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 2px;
  list-style: none;
  cursor: pointer;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: var(--c-brown-dark);
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q::before {
  content: "Q";
  flex: 0 0 auto;
  font-family: var(--lilou-en);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.5;
  color: var(--c-gold);
}

.faq__q::after {
  content: "";
  flex: 0 0 auto;
  margin-left: auto;
  width: 11px;
  height: 11px;
  margin-top: 6px;
  border-right: 2px solid var(--c-brown);
  border-bottom: 2px solid var(--c-brown);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.faq__item[open] .faq__q::after {
  transform: rotate(225deg);
}

.faq__a {
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0 2px 20px;
  font-family: var(--font-noto);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: var(--c-text-lilou);
}

.faq__a::before {
  content: "A";
  flex: 0 0 auto;
  font-family: var(--lilou-en);
  font-weight: 700;
  font-size: 17px;
  line-height: 2;
  color: var(--c-brown);
}

@media (min-width: 769px) {
  .faq__cat {
    font-size: 22px;
  }

  .faq__q {
    padding: 18px 4px;
    font-size: 16px;
  }

  .faq__a {
    padding: 0 4px 22px;
    font-size: 15px;
  }
}
