: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;
}

/* --------------------------------------------------------------------------
   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;
}

/* --------------------------------------------------------------------------
   共通パーツ：表示切り替え
   -------------------------------------------------------------------------- */
.only-sp {
  display: inline;
}

@media (min-width: 426px) {
  .only-sp {
    display: none;
  }
}

.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--center {
  align-items: center;
  text-align: center;
}

.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;
}

.section-head--white .section-head__en,
.section-head--white .section-head__ja {
  color: var(--color-white);
}

@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--center {
  align-self: center;
}

.btn--wide {
  min-width: 340px;
  max-width: 340px;
}

.btn--sm {
  font-size: 14px;
  padding: 8px 44px 8px 16px;
  border-radius: 999px;
}

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

/* --------------------------------------------------------------------------
   ヘッダー / グローバルナビ
   -------------------------------------------------------------------------- */
.gnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.3s ease;
}

.gnav.is-scrolled {
  background: rgba(83, 118, 140, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.gnav.is-open {
  background: var(--lit-main);
}

.gnav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 16px;
}

.gnav__logo img {
  width: 120px;
  height: auto;
}

.gnav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.gnav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--lit-white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.gnav__info {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--lit-main);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

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

.gnav__list__item {
  width: 100%;
}

.gnav__list a {
  display: block;
  padding: 14px 24px;
  font-family: var(--font-kaku);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--lit-white);
  text-align: center;
  white-space: nowrap;
}

.gnav__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background: var(--color-main);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-kaku);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--lit-white);
}

.gnav__contact img {
  width: 24px;
  height: 24px;
}

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

.gnav.is-open .gnav__info {
  max-height: 600px;
}

.gnav.is-open .gnav__toggle span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.gnav.is-open .gnav__toggle span:nth-child(2) {
  opacity: 0;
}

.gnav.is-open .gnav__toggle span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   ヒーロー
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* ヒーロー画像レイヤー */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("/system_panel/uploads/images/mv01.jpg") center / cover no-repeat;
}

/* スマホ・タブレットは縦長のSP用画像 + 高さを低めに */
@media (max-width: 768px) {
  .hero {
    min-height: 68vh;
  }

  .hero::before {
    background-image: url("/system_panel/uploads/images/mv02_sp.jpg");
  }
}

/* JS有効時のみスライドイン（無効時は最初から表示） */
.js .hero::before {
  transform: scale(1.12);
  clip-path: inset(0 0 0 100%);
  transition: clip-path 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .hero.is-loaded::before {
  transform: scale(1);
  clip-path: inset(0 0 0 0);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

@media (prefers-reduced-motion: reduce) {
  .js .hero::before {
    transform: none;
    clip-path: none;
    transition: none;
  }
}

.hero__copy {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  padding: 32px 24px 48px;
}

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

@media (max-width: 425px) {
  .hero__title {
    font-size: 30px;
  }

  .recommend__lead br,
  .lit-first__lead br,
  .lit-menu__ttl br {
    display: none;
  }
}

.hero__lead {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin: 0;
}

/* --------------------------------------------------------------------------
   下層ページ：ページ見出し
   -------------------------------------------------------------------------- */
.page-head {
  background: var(--lit-main);
  color: var(--lit-white);
  padding: 96px 0 40px;
  text-align: center;
}

/* ページタイトル直後のセクションは上余白を広めに */
.page-head + .lit-promo,
.page-head + .lit-menu,
.page-head + .about,
.page-head + .page-list {
  padding-top: 64px;
}

/* --------------------------------------------------------------------------
   下層ページ：見出し + 本文 + 画像の縦積みリスト
   -------------------------------------------------------------------------- */
.page-list {
  background: var(--lit-base);
  padding: 48px 0;
}

.page-list__items {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
}

.page-list__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* 文章調の長い見出しなので大きくしすぎない（最大40px） */
.page-list .about__ttl {
  font-size: 22px;
}

/* 下層ページの about セクション：h3 を見出し（h2）より一段小さく */
.about--page .about-item__ttl {
  font-size: 20px;
  line-height: 1.7;
}

@media (min-width: 769px) {
  .about--page .about-item__ttl {
    font-size: 30px;
    line-height: 1.8;
  }
}

/* 見出し下の短い下線（メインカラー） */
.about__head--line {
  gap: 16px;
}

.about__head--line::after {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--lit-main);
}

@media (min-width: 769px) {
  .page-list {
    padding: 80px 0;
  }

  .page-list__items {
    gap: 100px;
  }

  .page-list__item {
    gap: 40px;
  }

  .page-list .about__ttl {
    font-size: 32px;
  }
}

@media (min-width: 1024px) {
  .page-list .about__ttl {
    font-size: 40px;
  }
}

.page-list--white {
  background: var(--lit-white);
}

/* page-list 内：見出しと本文の間隔 */
.page-list .about__head--line {
  margin-bottom: 32px;
}

/* 下層ページ：送信完了 */
.page-complete {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-complete__text p {
  font-family: var(--font-kaku);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 2;
  color: var(--lit-text);
}

.page-complete__action {
  margin-top: 40px;
}

@media (min-width: 769px) {
  .page-complete__text p {
    font-size: 16px;
  }
}

/* 下層ページ：セクション先頭の横長ビジュアル */
.page-visual {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* 下層ページ：本文のみのブロック */
.page-text {
  font-family: var(--font-kaku);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 2;
  color: var(--lit-text);
  margin: 0;
}

/* 下層ページ：料金表 */
.price-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.price-list__group {
  display: flex;
  flex-direction: column;
}

.price-list__cat {
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--lit-text);
  margin: 0 0 8px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--lit-main);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(24, 33, 44, 0.15);
  font-family: var(--font-kaku);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 1.8;
  color: var(--lit-text);
}

.price-row__price {
  flex: 0 0 auto;
  white-space: nowrap;
  font-weight: 700;
  color: var(--lit-main);
}

.price-note {
  margin-top: 24px;
  font-family: var(--font-kaku);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 1.8;
  color: var(--lit-text);
}

@media (min-width: 769px) {
  .page-list .about__head--line {
    margin-bottom: 48px;
  }

  .page-text {
    font-size: 16px;
  }

  .price-list {
    gap: 56px;
  }

  .price-list__cat {
    font-size: 24px;
  }

  .price-row {
    font-size: 16px;
  }
}

/* --------------------------------------------------------------------------
   下層ページ：新着情報・施術例 一覧（CMS出力: webgene-blog）
   -------------------------------------------------------------------------- */
.page-list .webgene-blog {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  border-top: 1px solid var(--lit-main);
}

.page-list .webgene-item {
  border-bottom: 1px solid var(--lit-main);
}

.page-list .news-item {
  display: block;
  padding: 24px 8px;
  color: inherit;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.page-list .news-item:hover {
  opacity: 1;
  background: rgba(83, 118, 140, 0.06);
}

.page-list .news__sec1-p-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.page-list .news__sec1-p-box-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}

.page-list .news__sec1-title {
  font-family: var(--font-kaku);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: var(--lit-main);
  margin: 0;
}

/* カテゴリラベル（新着情報 / 施術例） */
.page-list .news-category {
  align-self: flex-start;
  flex: 0 0 auto;
  margin: 0;
  padding: 2px 12px;
  font-family: var(--font-kaku);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  white-space: nowrap;
  color: var(--lit-white);
  background: var(--lit-main);
}

.page-list .news__sec1-p {
  font-family: var(--font-kaku);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: var(--lit-text);
  margin: 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-list .news-item .icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.page-list .news__sec1-news-arrow {
  width: 18px;
  height: 18px;
}

.page-list .webgene-pagination {
  margin-top: 32px;
}

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

.page-list .webgene-pagination a,
.page-list .webgene-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  font-family: var(--font-lit-en);
  font-weight: 700;
  font-size: 14px;
  color: var(--lit-main);
  border: 1px solid var(--lit-main);
}

.page-list .webgene-pagination .current,
.page-list .webgene-pagination a:hover {
  color: var(--lit-white);
  background: var(--lit-main);
  opacity: 1;
}

@media (min-width: 769px) {
  .page-list .news-item {
    padding: 28px 8px;
  }

  .page-list .news__sec1-p-box-wrap {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }

  .page-list .news__sec1-title {
    flex: 0 0 auto;
  }

  .page-list .news-category {
    align-self: auto;
    width: 84px;
    padding: 2px 8px;
    text-align: center;
  }

  .page-list .news__sec1-p {
    flex: 1 1 auto;
    font-size: 17px;
  }
}

/* --------------------------------------------------------------------------
   下層ページ：新着情報・施術例 詳細（CMS出力: newsdetail）
   -------------------------------------------------------------------------- */
.page-list > .webgene-blog {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 一覧用の罫線を詳細ページでは無効化 */
.page-list .webgene-blog:has(.newsdetail__sec1-box) {
  border-top: 0;
}

.page-list .webgene-item:has(.newsdetail__sec1-box) {
  border-bottom: 0;
}

.page-list .newsdetail__sec1-title {
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--lit-main);
}

.page-list .newsdetail__sec1-date {
  margin: 0 0 12px;
  font-family: var(--font-kaku);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: var(--lit-main);
}

.page-list .newsdetail__sec1-h1 {
  margin: 0;
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: var(--lit-text);
}

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

.page-list .newsdetail__sec1-box img {
  width: 100%;
  height: auto;
  margin: 16px 0;
}

/* 記事一覧へ戻る */
.page-list .webgene-pagination {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.page-list .btn-block__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px;
  border: 1px solid var(--lit-main);
  font-family: var(--font-kaku);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--lit-main);
}

.page-list .btn-block__link:hover {
  color: var(--lit-white);
  background: var(--lit-main);
  opacity: 1;
}

.page-list .back-btn__arrow {
  width: 16px;
  height: 16px;
  transform: rotate(180deg);
}

.page-list .btn-block__link:hover .back-btn__arrow {
  filter: brightness(0) invert(1);
}

@media (min-width: 769px) {
  .page-list > .webgene-blog {
    padding: 0 40px;
  }

  .page-list .newsdetail__sec1-title {
    padding-bottom: 28px;
    margin-bottom: 40px;
  }

  .page-list .newsdetail__sec1-h1 {
    font-size: 30px;
  }

  .page-list .newsdetail__sec1-p {
    font-size: 16px;
  }

  .page-list .webgene-pagination {
    margin-top: 64px;
  }
}

/* --------------------------------------------------------------------------
   下層ページ：お問い合わせフォーム（CMS出力）
   -------------------------------------------------------------------------- */
.page-list .section-inner .section-inner {
  padding: 0;
  max-width: none;
}

.page-list .formWrap {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.page-list .form .container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

/* Bootstrap グリッドの余白（.row のネガティブマージン / .col の padding）と
   main.css 由来の float を打ち消して DOM 順どおりに並べる */
.page-list .form .row,
.page-list .formRow {
  margin-left: 0;
  margin-right: 0;
  float: none;
  clear: both;
}

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

/* main.css の絶対配置（送信ボタン等）を解除して通常フローに戻す */
.page-list .form,
.page-list .form .container,
.page-list .form .row,
.page-list .formRow,
.page-list .formTh,
.page-list .formTd,
.page-list .form .col,
.page-list .formBtnTd,
.page-list .formPrivacy,
.page-list .form .button,
.page-list .formBtn,
.page-list .formSend {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  transform: none;
}

.page-list .formRow {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(24, 33, 44, 0.12);
}

.page-list .formRow:first-child {
  border-top: 1px solid rgba(24, 33, 44, 0.12);
}

.page-list .formRow:last-child {
  border-bottom: 0;
}

.page-list .formTh {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.page-list .label,
.page-list .labelText01 {
  margin: 0;
  font-family: var(--font-kaku);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
  color: var(--lit-text);
}

/* Bootstrap の label 既定余白を打ち消す */
.page-list .formTh label,
.page-list .form label {
  margin: 0;
}

.page-list .requiredText {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 4px 8px;
  font-family: var(--font-kaku);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--lit-white);
  background: var(--color-accent);
}

.page-list .formInput,
.page-list .formTextArea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-noto);
  font-size: 15px;
  line-height: 1.6;
  color: var(--lit-text);
  background: var(--lit-white);
  border: 1px solid rgba(24, 33, 44, 0.25);
  border-radius: 2px;
}

.page-list .formInput::placeholder,
.page-list .formTextArea::placeholder {
  color: var(--color-sub);
}

.page-list .formInput:focus,
.page-list .formTextArea:focus {
  outline: none;
  border-color: var(--lit-main);
}

.page-list .formTextArea {
  min-height: 160px;
  resize: vertical;
}

/* プライバシー同意 */
.page-list .form .text-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.page-list .formCheck {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--lit-main);
}

.page-list .privacyLabel {
  font-family: var(--font-kaku);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--lit-text);
}

/* プライバシーポリシー（スクロールボックス） */
.page-list .formPrivacy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.page-list .privacy_scrollbox_note {
  margin: 0;
  font-family: var(--font-kaku);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: var(--lit-text);
}

.page-list .privacy_scrollbox {
  max-height: 320px;
  overflow-y: auto;
  padding: 20px;
  border: 1px solid rgba(24, 33, 44, 0.25);
  background: var(--lit-white);
  font-family: var(--font-kaku);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.9;
  color: var(--lit-text);
  -webkit-overflow-scrolling: touch;
}

.page-list .privacy_scrollbox > * {
  margin: 0 0 12px;
}

.page-list .privacy_scrollbox > *:last-child {
  margin-bottom: 0;
}

.page-list .privacy_heading {
  margin: 20px 0 8px;
  font-family: var(--font-kaku);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--lit-text);
}

.page-list .privacy_subheading {
  margin: 14px 0 6px;
  font-family: var(--font-kaku);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--lit-text);
}

.page-list .privacy_list {
  margin: 0 0 12px;
  padding-left: 1.4em;
  list-style: disc;
}

.page-list .privacy_list--ol {
  list-style: decimal;
}

.page-list .privacy_list li {
  margin-bottom: 4px;
}

.page-list .privacy_link {
  color: var(--lit-main);
  text-decoration: underline;
  word-break: break-all;
}

.page-list .privacy_contact {
  margin: 12px 0;
  padding: 12px 16px;
  background: var(--lit-base);
}

.page-list .privacy_contact p {
  margin: 0 0 4px;
}

.page-list .privacy_contact p:last-child {
  margin-bottom: 0;
}

.page-list .privacy_date,
.page-list .privacy_rep {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--color-sub);
}

@media (min-width: 769px) {
  .page-list .privacy_scrollbox {
    max-height: 360px;
    padding: 24px;
  }
}

/* 送信ボタン */
.page-list .formBtnTd {
  margin-top: 32px;
  text-align: center;
}

.page-list .formBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 14px 40px;
  font-family: var(--font-kaku);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--lit-white);
  background: var(--lit-main);
  border: 1px solid var(--lit-main);
  border-radius: 999px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.page-list .formBtn:hover {
  opacity: 0.85;
}

@media (min-width: 769px) {
  .page-list .formRow {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    padding: 28px 0;
  }

  .page-list .formTh {
    flex: 0 0 220px;
    padding-top: 12px;
  }

  .page-list .formTd {
    flex: 1 1 0;
    min-width: 0;
  }

  .page-list .form .col,
  .page-list .formBtnTd {
    flex: 1 1 auto;
    min-width: 0;
  }
}

/* --------------------------------------------------------------------------
   下層ページ：ご来店の流れ（番号付きフロー）
   -------------------------------------------------------------------------- */
.flow {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.flow__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--lit-main);
}

.flow__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.flow__num {
  font-family: var(--font-lit-en);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--lit-main);
}

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

.flow__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;
}

.flow__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.flow__media {
  margin-top: 8px;
}

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

.flow__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

@media (min-width: 769px) {
  .flow {
    gap: 56px;
  }

  .flow__item {
    padding-bottom: 56px;
  }

  .flow__ttl {
    font-size: 26px;
  }

  .flow__txt {
    font-size: 16px;
  }

  .flow__media img {
    aspect-ratio: 16 / 9;
  }

  .flow__actions {
    flex-direction: row;
  }

  /* 画像付きステップは PC で文の横に画像 */
  .flow__item--media {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .flow__item--media .flow__body {
    flex: 1 1 0;
    min-width: 0;
  }

  .flow__item--media .flow__media {
    flex: 0 0 40%;
    margin-top: 0;
  }

  .flow__item--media .flow__media img {
    aspect-ratio: 4 / 5;
  }
}

/* --------------------------------------------------------------------------
   下層ページ：よくある質問（カテゴリ別 Q&A）
   -------------------------------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.faq-list__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-list__cat {
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--lit-text);
  margin: 0 0 8px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--lit-main);
}

.faq-qa {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(24, 33, 44, 0.15);
}

.faq-qa__q,
.faq-qa__a {
  display: flex;
  gap: 12px;
  font-family: var(--font-kaku);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 1.9;
  color: var(--lit-text);
  margin: 0;
}

.faq-qa__q {
  font-weight: 700;
}

.faq-qa__q::before,
.faq-qa__a::before {
  flex: 0 0 auto;
  font-family: var(--font-lit-en);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.7;
}

.faq-qa__q::before {
  content: "Q";
  color: var(--lit-main);
}

.faq-qa__a::before {
  content: "A";
  color: var(--color-accent);
}

@media (min-width: 769px) {
  .faq-list {
    gap: 56px;
  }

  .faq-list__cat {
    font-size: 24px;
  }

  .faq-qa__q,
  .faq-qa__a {
    font-size: 16px;
  }
}

.page-head__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

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

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

@media (min-width: 769px) {
  .page-head {
    padding: 140px 0 64px;
  }

  .page-head + .lit-promo,
  .page-head + .lit-menu,
  .page-head + .about,
  .page-head + .page-list {
    padding-top: 96px;
  }

  .page-head__en {
    font-size: 30px;
  }

  .page-head__ja {
    font-size: 40px;
  }
}

/* 下層ページ：ギャラリー（複数行グリッド） */
.about-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}

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

@media (min-width: 769px) {
  .about-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* lit-promo に中央見出し（about__head）を載せる場合の余白 */
.lit-promo .about__head {
  margin-bottom: 32px;
}

@media (min-width: 769px) {
  .lit-promo .about__head {
    margin-bottom: 48px;
  }
}

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

.news {
  background: #F1F7F7;
}

.news--alt {
  background: var(--color-white);
}

.list-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
}

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

.list-card--alt .list-card__item {
  background: var(--color-base);
}

.list-card__date {
  color: var(--color-sub);
}

.list-card__text {
  color: var(--color-text);
}

/* お知らせ（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;
}

.news--alt .webgene-item .news_inner {
  background: var(--color-base);
}

.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;
  }
}

/* --------------------------------------------------------------------------
   Recommend（お悩み）
   -------------------------------------------------------------------------- */
.recommend {
  background: #788e98;
  color: var(--lit-white);
}

.recommend .recommend__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

.recommend__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 724px;
}

.recommend__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.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__item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-kaku);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.recommend__item img {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.recommend__arrow {
  width: 48px;
  height: 48px;
}

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

/* --------------------------------------------------------------------------
   About（選ばれる理由）
   -------------------------------------------------------------------------- */
.about {
  position: relative;
  background: var(--lit-base) url("/system_panel/uploads/images/top_about_bg.jpg") center / cover no-repeat;
  padding: 64px 0;
  overflow: hidden;
}

.about::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255, 255, 255, 0.2);
}

.about__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.about__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.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__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.about-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.about-item__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.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;
}

/* --------------------------------------------------------------------------
   メニュー / スクール（画像 + テキスト）
   -------------------------------------------------------------------------- */
.feature__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature__media {
  order: 2;
}

.feature__body {
  order: 1;
}

.feature__media img {
  width: 100%;
  height: auto;
  border-radius: 0 60px 0 0;
  object-fit: cover;
}

.feature__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature__body .section-head {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 0;
}

.feature__txt {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 2.2;
}

@media (max-width: 425px) {
  .feature__txt br {
    display: none;
  }
}

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

.lit-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.lit-menu__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.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 {
    padding: 100px 0;
  }

  .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;
  }
}

/* --------------------------------------------------------------------------
   Commitment / Products（Lit.hair デザイン）
   -------------------------------------------------------------------------- */
.lit-promo {
  background: var(--lit-base);
  padding: 40px 0;
}

.lit-promo__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.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__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.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;
  }
}

/* SP時、Products は画像とテキストの上下を入れ替え（テキスト→画像） */
@media (max-width: 768px) {
  #products .lit-promo__inner {
    flex-direction: column-reverse;
  }
}

@media (min-width: 769px) {
  .lit-promo__inner {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }

  .lit-promo__media,
  .lit-promo__body {
    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;
  }
}

/* --------------------------------------------------------------------------
   First-visit（初めての方へ）
   -------------------------------------------------------------------------- */
.lit-first {
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: var(--lit-base);
}

.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__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.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;
}

.lit-first .btn--line {
  background: var(--lit-white);
}

/* 背景固定パララックス：画像はビューポートに貼り付いたまま、
   この窓（上下の白に挟まれた枠）がスクロールで画像の上を通り過ぎる */
.lit-first__media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #d9d9d9 url("/system_panel/uploads/images/top_first_bg.jpg")
    center top / cover no-repeat;
  background-attachment: fixed;
}

/* 画像は背景で表示するので img 自体は隠す */
.lit-first__media img {
  display: none;
}

/* iOS Safari は background-attachment: fixed 非対応 → 通常の cover 背景に */
@supports (-webkit-touch-callout: none) {
  .lit-first__media {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .lit-first {
    gap: 80px;
  }

  .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;
  }

  .lit-first__media {
    aspect-ratio: 1920 / 610;
  }
}

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

/* --------------------------------------------------------------------------
   Access（店舗情報）
   -------------------------------------------------------------------------- */
.lit-access {
  background: var(--lit-white);
  padding: 64px 0;
}

.lit-access__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.lit-access__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.lit-access__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lit-access__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-access__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-access__table {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid #eaeaea;
}

.lit-access__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid var(--lit-main);
}

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

.lit-access__value {
  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-access__map {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d9d9d9;
}

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

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

  .lit-access__inner {
    flex-direction: row;
    align-items: stretch;
    gap: 64px;
  }

  .lit-access__body {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
  }

  .lit-access__map {
    flex: 1 1 0;
    min-width: 0;
    aspect-ratio: auto;
  }

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

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

  .lit-access__row {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }

  .lit-access__label {
    flex: 0 0 114px;
  }

  .lit-access__value {
    flex: 1 1 0;
  }
}

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

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

.faq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 40px 24px;
}

.faq__inner .section-head {
  margin-bottom: 0;
}

.faq__txt {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 2.2;
  text-align: center;
}

/* --------------------------------------------------------------------------
   店舗情報
   -------------------------------------------------------------------------- */
.access {
  background: var(--color-white);
}

.access .section-head {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.access__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.store {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.store__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid var(--color-main);
  padding: 20px 0;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 2.2;
}

.store__row__dt {
  color: var(--color-text);
  font-weight: 700;
}

.store__row__dd {
  color: var(--color-text);
  margin: 0;
}

.store__map {
  height: 200px;
  border-radius: 4px;
  overflow: hidden;
  background: #d9d9d9;
}

@media (max-width: 768px) {
  .store__map {
    width: auto;
    margin-left: -24px;
    margin-right: -24px;
    border-radius: 0;
  }
}

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

/* --------------------------------------------------------------------------
   お問い合わせ（CTA）
   -------------------------------------------------------------------------- */
.contact {
  background: var(--lit-main);
}

.contact__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  color: var(--lit-white);
}

.contact__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

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

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

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

.contact__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 400px;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--lit-white);
  color: var(--lit-main);
  padding: 24px 16px;
  font-family: var(--font-kaku);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.contact-btn img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

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

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

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

  .contact__ttl {
    font-size: 40px;
  }

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

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

/* --------------------------------------------------------------------------
   フッター
   -------------------------------------------------------------------------- */
.site-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--lit-base);
  padding: 16px 24px;
  font-family: var(--font-kaku);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--lit-text);
  text-align: center;
}

.site-footer__nav a {
  padding: 8px 0;
}

.site-footer__copy {
  background: var(--lit-main);
  color: var(--lit-white);
  text-align: center;
  padding: 16px 16px calc(16px + 56px);
  font-family: var(--font-roboto);
  font-size: 10px;
}

/* --------------------------------------------------------------------------
   追尾サイドナビ
   -------------------------------------------------------------------------- */
.side-nav {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 150;
  display: flex;
  flex-direction: row;
  width: 100%;
}

.side-nav__item {
  display: flex;
  flex: 1;
  height: 56px;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  text-decoration: none;
  transition: background-color 0.3s, filter 0.3s, transform 0.3s;
}

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

.side-nav__badge {
  display: none;
}

.side-nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}

.side-nav__icon img {
  width: 20px;
  height: 20px;
  display: block;
}

.side-nav__ttl {
  display: none;
}

.side-nav__item--line {
  background: #aad45d;
}

.side-nav__item--line:hover {
  filter: brightness(0.92);
}

.side-nav__item--reserve {
  background: #53768c;
}

.side-nav__item--reserve:hover {
  filter: brightness(0.92);
}

/* ==========================================================================
   ブレイクポイント： 426px〜768px（大きめスマホ〜タブレット）
   ========================================================================== */
@media (min-width: 426px) and (max-width: 768px) {
  .feature__media img {
    aspect-ratio: 4 / 3;
  }
}

/* ==========================================================================
   ブレイクポイント： min-width 768px（タブレット）
   ========================================================================== */
@media (min-width: 768px) {
  .gnav__inner {
    padding: 8px 32px;
  }
}

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

  .access__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(8, auto);
  }

  .store {
    display: grid;
    grid-row: span 8;
    grid-template-rows: subgrid;
    gap: 0px;
  }

  .store .btn {
    margin-top: 24px;
  }

  .store__map {
    margin-top: 24px;
  }

  .store__table {
    display: contents;
  }

  .store__row {
    justify-content: center;
  }

  .hero {
    min-height: 85vh;
  }

  .hero__copy {
    padding: 48px 60px 64px;
  }

  .hero__title {
    font-size: 48px;
  }

  .hero__lead {
    font-size: 18px;
  }

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

  .section-head--center {
    flex-direction: column;
  }

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

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

  .news, .access, .feature {
    padding: 90px 0;
  }

  .faq {
    padding: 24px 40px;
  }

  .faq__inner {
    padding: 60px 24px;
  }

  .list-card {
    font-size: 16px;
  }

  .list-card__item {
    flex-direction: row;
    align-items: center;
    gap: 40px;
    padding: 28px 32px;
  }

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

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

  .recommend .recommend__inner {
    gap: 32px;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .recommend__block {
    gap: 64px;
  }

  .recommend__head {
    gap: 16px;
  }

  .recommend__en {
    font-size: 30px;
  }

  .recommend__ttl {
    font-size: 36px;
  }

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

  .recommend__item {
    font-size: 20px;
  }

  .recommend__item img {
    width: 36px;
    height: 36px;
  }

  .recommend__arrow {
    width: 64px;
    height: 64px;
  }

  .recommend__lead {
    font-size: 20px;
  }

  .about {
    padding: 120px 0;
  }

  .about__inner {
    gap: 80px;
  }

  .about__head {
    gap: 16px;
  }

  .about__en {
    font-size: 30px;
  }

  .about__ttl {
    font-size: 40px;
  }

  .about__list {
    gap: 80px;
  }

  .about-item {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }

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

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

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

  .about-item__body {
    gap: 64px;
  }

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

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

  .feature__inner {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .feature--reverse .feature__inner {
    flex-direction: row-reverse;
  }

  .feature__media,
  .feature__body {
    flex: 1 1 0;
    min-width: 0;
    order: 0;
  }

  .feature__body {
    gap: 20px;
  }

  .contact__buttons {
    flex-direction: row;
    gap: 32px;
    max-width: none;
  }

  .contact-btn {
    flex: 1 1 0;
    padding: 32px 16px;
  }

  .site-footer__nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 16px 40px;
  }
}

/* ==========================================================================
   ヘッダー：1025px以上でハンバーガー解除（1024px以下はハンバーガー）
   ========================================================================== */
@media (min-width: 1025px) {
  .gnav__toggle {
    display: none;
  }

  .gnav__logo img {
    width: 180px;
  }

  .gnav__info {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 46px;
    max-height: none;
    overflow: visible;
    background: none;
  }

  .gnav__list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 32px;
  }

  .gnav__list__item {
    width: auto;
  }

  .gnav__list a {
    padding: 8px 0;
  }

  .gnav__contact {
    padding: 8px 24px;
    border-top: none;
  }
}

/* ==========================================================================
   ブレイクポイント： min-width 1024px（デスクトップ）
   ========================================================================== */
@media (min-width: 1024px) {
  .side-nav {
    flex-direction: column;
    align-items: flex-end;
    left: auto;
    bottom: auto;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: auto;
    gap: 6px;
  }

  .site-footer__copy {
    padding: 16px;
  }

  .side-nav__item {
    position: relative;
    flex: none;
    width: 94px;
    height: 80px;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    justify-content: flex-start;
    padding-left: 32px;
    transition: background-color 0.3s, filter 0.3s, width 0.3s ease, padding-left 0.3s ease, transform 0.3s;
  }

  .side-nav__item:hover {
    width: 220px;
    padding-left: 22px;
  }

  .side-nav__badge {
    display: flex;
    position: absolute;
    top: 0;
    left: -10px;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid currentColor;
    font-family: var(--font-roboto);
    font-size: 10px;
    font-weight: bold;
    line-height: 1;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }

  .side-nav__item--line .side-nav__badge {
    color: #aad45d;
  }

  .side-nav__item--reserve .side-nav__badge {
    color: var(--color-main);
  }

  .side-nav__icon img {
    width: 30px;
    height: 30px;
  }

  .side-nav__ttl {
    display: block;
    margin-left: 0;
    font-family: var(--font-noto);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-white);
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transform: translateX(10px);
    transition: opacity 0.3s ease, max-width 0.3s ease, margin-left 0.3s ease, transform 0.3s ease;
  }

  .side-nav__item:hover .side-nav__ttl {
    opacity: 1;
    max-width: 140px;
    margin-left: 12px;
    transform: translateX(0);
  }

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

  .hero__copy {
    padding: 64px 120px 80px;
  }

  .hero__title {
    font-size: 40px;
  }

  .hero__lead {
    font-size: 24px;
  }

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

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

  .news, .access, .feature {
    padding: 120px 0;
  }

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

  .faq__inner {
    padding: 80px 24px;
  }

  .about__ttl {
    font-size: 48px;
  }

  .recommend__ttl {
    font-size: 48px;
  }

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

  .recommend__item {
    font-size: 24px;
  }

  .recommend__item img {
    width: 42px;
    height: 42px;
  }

  .recommend__arrow {
    width: 80px;
    height: 80px;
  }

  .recommend__lead {
    font-size: 24px;
  }

  .feature__txt {
    font-size: 16px;
  }

  .contact__inner {
    padding: 100px 40px;
    gap: 32px;
  }

  .contact__txt {
    font-size: 20px;
  }

  .contact-btn {
    height: 100px;
    font-size: 26px;
  }

  .contact-btn img {
    width: 35px;
    height: 35px;
  }

}

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

  .store__row {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
  }

  .store__row__dt {
    width: 120px;
    flex-shrink: 0;
  }
}

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

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

/* --------------------------------------------------------------------------
   スクロール表示アニメーション（トップページのみ / reveal.js）
   -------------------------------------------------------------------------- */
.js-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   トップページ：スクロールリビール（方向 / ワイプ / ズーム）
   ※ 初期の非表示状態は 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);
}

.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 .rv--media > img,
  .js .rv--media > iframe,
  .js img.rv--media {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
  }
}

.hero__title .char,
.hero__lead .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 {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
