@charset "UTF-8";

:root {
  --accent-subtle: #B09035;
  --text-primary: #000;
  --brand-primary-light: #DBEBF8;
  --brand-primary: #142a7d;
  --brand-primary-dark: #09102a;
  --white: #FFF;
  --bg-surface: #F6F6F6;
  /* PCフレームの淡いブルー背景 */
  --bg-overlay: #EEF1F9;
  --price-color: #FF0000;
  --dark-gray: #D8D8D8;
  --accent-secondary: #FBF824;
  --recruit-primary: #f5a7b0;
  --text-secondary: #343434;
  /* Fixed header offset (content spacer) */
  --header-offset-mobile: 60px;
  --header-offset-desktop: 110px;
  --header-offset: var(--header-offset-mobile);
  /* Google Fonts: Noto Sans JP & Noto Serif JP */
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-serif: "Noto Serif JP", serif;
}

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

/* Recruit page: override brand colors to pink */
/* WP body classes: page-template-page-recruit-php is added for this template */
.page-template-page-recruit,
.page-template-page-recruit-php {
  --brand-primary: var(--recruit-primary);
  --brand-primary-light: white;
  --brand-primary-dark: #d57a89;
}

* {font-family: var(--font-sans);} 

/* Utility: serif font override (force within scope) */
.serif-font,
.serif-font * {
  font-family: var(--font-serif) !important;
}

/* Handwriting: text kept for SEO/a11y, visual via SVG */
.handwriting-visual {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.handwriting-visual img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.handwriting-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: pre-line;
  border: 0;
}

/* ===== NEWS アーカイブ（archive-news.php） ===== */
/* ページ用メモ: このセクションはニュース一覧のレイアウトとカードデザイン。共通ボタン（.btn-outline/.btn-main）は流用。 */
.news-archive {
  background: var(--white);
  padding: 0 0 64px 0;
}
.news-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.news-list { list-style: none; margin: 0; padding: 0; }
.news-item { margin: 0; }
/* 会社概要テーブル風：行ごとの上ボーダーにグラデーションを当てる */
.news-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 8px;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid transparent;
  border-image-slice: 1;
  border-image: linear-gradient(90deg,var(--brand-primary) 10%, var(--dark-gray) 10% 100%) 1;
}
.news-list li:last-child .news-row { border-bottom: 1px solid transparent; }
.news-archive .c-btn-wrap {
  margin: 80px auto 0;
}

@media (max-width: 767px) {
  .news-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 4px;
  }
}

.news-col-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.news-date { font-size: 12px; font-weight: 900; color: var(--text-primary); letter-spacing: 0.04em; }
.news-cats { display: inline-flex; gap: 6px; }
.news-cat-badge { background: var(--accent-subtle); color: var(--white); font-size: 12px; font-weight: 800; padding: 2px 8px; border-radius: 4px; }
.news-title { font-size: 16px; font-weight: 500; color: var(--text-primary); line-height: 1.4; }

.news-pagination { margin-top: 24px; display: flex; justify-content: center; }
.news-empty { text-align: center; color: var(--text-primary); padding: 40px 0; }
/* NEWS ページネーション */
.news-pagination { margin-top: 32px; }
.news-pagination-list { list-style: none; margin: 0; padding: 0; display: inline-flex; align-items: center; gap: 8px; }
.news-pagination-item a,
.news-pagination-item span {
  display: inline-flex;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
  color: #8E8E8E;
  font-family: lnter;
}
.news-pagination-item a:hover { background: var(--brand-primary-light); }
.news-pagination-item.is-current span {
  color: var(--brand-primary);
}
.news-pagination-sep svg { width: 24px; height: 6px; fill: var(--dark-gray); display: block; }

@media (min-width: 768px) {
  .news-pagination-list { gap: 10px; }
  .news-pagination-item a,
  .news-pagination-item span { min-width: 40px; height: 40px; font-size: 15px; border-radius: 10px; }
}
body {
  /* サイト全体のスクロールを有効化 */
  overflow-x: hidden;
  overflow-y: auto;
}

/* ===== 404（404.php） ===== */
.error404-section { background: var(--white); padding: 0 0 64px; }
.error404-inner { margin: 0 auto; padding: 20px 20px 0; box-sizing: border-box; }
.error404-title { font-size: 30px; font-weight: 700; color: var(--text-primary); line-height: 1.45; margin: 47px 0 20px; }
.error404-text { color: var(--text-primary); font-size: 14px; line-height: 1.4; display: grid; gap: 8px; }
.error404-actions { display: grid; gap: 37px; margin-top: 48px; }
.error404-actions .btn-outline { justify-self: stretch; height: 47px; display: inline-flex; align-items: center; justify-content: center; border-radius: 36px; font-size: 20px; font-weight: 800; border-width: 2px; }
.error404-actions .btn-main { justify-self: stretch; height: 47px; display: inline-flex; align-items: center; justify-content: center; border-radius: 36px; font-size: 20px; font-weight: 800; }
.error404-actions .btn-outline { color: var(--brand-primary); border-color: var(--brand-primary); background: var(--white); }
.error404-actions .btn-outline:hover { background: var(--brand-primary); color: var(--white); }
.error404-section .c-btn-wrap { margin: 80px auto 0; }


/* パンくず（404先頭） */
.error404-inner .page-breadcrumb { font-size: 12px; color: var(--text-primary); margin: 0; }
.error404-inner .page-breadcrumb a { color: inherit; text-decoration: none; }
.error404-inner .page-breadcrumb a:hover { text-decoration: underline; }
.error404-inner .page-breadcrumb-sep { margin: 0 12px; color: var(--dark-gray); }

@media (min-width: 480px) {
  .error404-actions { justify-content: center;}  
}

@media (min-width: 768px) {
  .error404-inner { max-width: 800px; padding-left: 20px; padding-right: 20px; }
  .error404-title { font-size: 32px; }
  /* タブレット: 縦並びで中央揃え */
  .error404-actions { grid-template-columns: 1fr; justify-items: center; gap: 32px; justify-content: center;}
  .error404-actions .btn-outline,
  .error404-actions .btn-main { justify-self: center; width: 350px; max-width: 100%; }
}

@media (min-width: 1200px) {
  /* PC: 横並びで左右均等（等幅2カラム） */
  .error404-actions { grid-template-columns: repeat(2, 1fr); gap: 24px; justify-items: stretch; }
  .error404-actions .btn-outline,
  .error404-actions .btn-main { justify-self: stretch; width: auto; }
}

header.mc-header {
  position: fixed;
  z-index: 100000;
  background: var(--white);
  width: 100%;
}

/* Global spacer so content is not hidden under the fixed header */
main {
  padding-top: var(--header-offset);
}

/* Fallback: when templates don't wrap content in <main>,
   add top margin to the first element after header */
header.mc-header + :not(main) {
  margin-top: var(--header-offset);
}

@media (min-width: 768px) {
  :root { --header-offset: var(--header-offset-desktop); }
  main {
    padding-top: var(--header-offset);
  }
  header.mc-header + :not(main) {
    margin-top: var(--header-offset);
  }
}

/* Anchor/section scroll offset to account for fixed header when jumping via links */
section[id],
h1[id], h2[id], h3[id],
.anchor-offset {
  scroll-margin-top: var(--header-offset);
}

@media (min-width: 768px) {
  section[id],
  h1[id], h2[id], h3[id],
  .anchor-offset {
    scroll-margin-top: var(--header-offset);
  }
}

/* ===== ヘッダーメニュー  ===== */
.mc-header-menu-modal {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: var(--brand-primary);
  display: flex;
  justify-content: center;
  animation: fadeIn 0.2s;
}

.mc-header-menu-modal-inner {
  position: relative;
  width: 390px;
  max-width: 100vw;
  background: none;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 41px;
}

.mc-header-menu-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 30px;
  height: 30px;
  background: none;
  transition: transform 0.28s cubic-bezier(.22,.61,.36,1), opacity 0.2s ease, top 0.28s cubic-bezier(.22,.61,.36,1);
  transform-origin: 50% 50%;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  z-index: 2;
}

.mc-header-menu-nav {
  width: 100%;
  padding: 70px 20px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.mc-header-menu-nav {
  .c-btn-wrap .c-btn,
  .c-btn-wrap .btn-outline,
  .c-btn-wrap .btn-main {
    max-width: none;
  }
}

@media (max-width: 390px) {
  .mc-header-inner {
    height: 56px;
  }

  .mc-header-logo-area {
    height: 56px;
    padding-left: 20px;
  }
}
/* ===== デスクトップナビ配置（>=768px） ===== */
.mc-header-inner { display: flex; align-items: center; justify-content: center; gap: 12px; max-width: 1800px; margin: 0 auto; display: flex; height: 65px; padding: 0;}
.mc-header-logo-area { flex: 1; display: flex; align-items: center; gap: 8px; padding-left: 20px;}
.mc-header-logo-link { width: 46px; height: 41px;}
.mc-header-logo-link img {width: 100%;}
.mc-header-desktop-nav { display: none; }
.mc-header-desktop-list { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
.mc-header-desktop-list a { text-decoration: none; color: var(--text--primary); font-family: 'Noto Sans', 'Noto Sans JP', sans-serif; font-weight: 700; }
.mc-header-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: var(--text-primary);
  white-space: nowrap;
  line-height: 1;
}
@media (min-width: 768px) {
/* === Header mid-width no-wrap fix (768px–1290px) === */
/* ボタン内テキストの強制改行を禁止＋内容幅以下に縮めない */
.btn-web-reserve,
.btn-line-reserve {
  white-space: nowrap;      /* 改行させない */
  line-height: 1;           /* 行高を詰めて2行化しにくくする */
  flex: 0 0 auto;           /* フレックス収縮を抑止 */
  min-width: max-content;   /* コンテンツ幅未満に縮めない */
}

/* PC幅でのヘッダーのフレックス挙動を安定化 */
@media (min-width: 1000px) {
  .mc-header-right {
    flex-wrap: nowrap;      /* 右ブロック自体を折り返さない */
    gap: 16px;              /* ややタイトに */
  }
  .mc-header-desktop-nav {
    flex: 1 1 auto;         /* ナビは可変領域として確保 */
    min-width: 0;           /* 子要素のオーバーフロー抑制 */
  }
  .mc-header-cta {
    flex: 0 0 auto;         /* CTAは縮めず一定幅を確保 */
    flex-wrap: nowrap;      /* ボタンを1行で維持 */
    gap: 12px;              /* 余白を少し控えめに */
  }
}

/* 768〜1290pxの中間レンジでは、ナビとCTAの寸法を少しだけ圧縮 */
@media (min-width: 768px) and (max-width: 1290px) {
  .mc-header-desktop-list { gap: 14px; }
  .mc-header-desktop-list a {
    font-size: 14px;        /* 文字をわずかに小さくして収まりを良くする */
    font-weight: 700;
  }
  .btn-web-reserve,
  .btn-line-reserve {
    padding: 10px 14px;     /* 横パディングを控えめに */
    font-size: 14px;        /* ボタン文字もわずかに縮小 */
  }
}
  .mc-header-menu-btn { display: none; }
  .mc-header-desktop-nav { display: block; }
  .mc-header-inner { justify-content: center; position: relative; padding: 8px 20px;}
}


.mc-header-menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(34px, auto);
  gap: 14px 30px;
  font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0 0;
  padding: 0;
  list-style: none;
}

.mc-header-menu-list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
  font-family: 'Noto Sans JP', sans-serif;
}

.mc-header-menu-list a {
  color: var(--white);
  text-decoration: none;
  padding: 6px 0;
  display: block;
  width: 100%;
  transition: color 0.2s;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

.mc-header-menu-list a:hover {
  color: var(--brand-primary-light);
}

.mc-header-menu-cta a {
  background: var(--white);
  color: var(--brand-primary);
  border-radius: 36px;
  padding: 12px 0;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  display: block;
  width: 350px;
  max-width: 100%;
  border: 2px solid var(--brand-primary);
  transition: background 0.2s, color 0.2s;
  font-family: 'Noto Sans JP', sans-serif;
}

.mc-header-menu-cta a:hover {
  background: var(--brand-primary);
  color: var(--white);
}

.mc-header-menu-sub {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  padding: 0;
  list-style: none;
}

.mc-header-menu-sub li {
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
}

.mc-header-menu-sub a {
  color: var(--white);
  text-decoration: none;
  display: block;
  padding: 6px 0;
  transition: color 0.2s;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

.mc-header-menu-sub a:hover {
  color: var(--brand-primary-light);
}

.mc-header-menu-sns {
  display: flex;
  gap: 25px;
  align-items: center;
  font-family: 'Noto Sans JP', sans-serif;
}

.mc-header-menu-sns a svg {
  width: 30px;
  height: auto;
  display: block;
}

.mc-header-menu-sns-icon {
  display: inline-block;
  width: 30px;
  height: 34px;
  background: #EEE;
  border-radius: 8px;
}

@media (max-width: 480px) {
  .mc-header-menu-modal-inner {
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    gap: 41px;
  }

  to {
    opacity: 1;
  }
}

.mc-header-menu-open {
  overflow: hidden;
}

/* モバイル: ボタンを右上固定で前面 */
.mc-header-menu-btn {
  position: fixed;
  z-index: 10001; /* モーダル(9999)より上 */
  width: 65px;
  height: 65px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  top: 0;
  right: 0;
}
.mc-header-menu-icon { z-index: 10001; }


/* ===== メニュー開閉ボタン（spanで表現） ===== */
.mc-header-menu-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.mc-header-menu-icon {
  position: relative;
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-primary);
}
.mc-header-menu-icon .bar {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 3px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.mc-header-menu-icon .bar-top { top: 18px; }
.mc-header-menu-icon .bar-mid { top: 31.5px; }
.mc-header-menu-icon .bar-bot { top: 45px; }

/* 開いた状態でハンバーガー → × に変形 */
.mc-header.is-open .mc-header-menu-icon .bar-top {
  top: 30px;
  transform: rotate(45deg);
}
.mc-header.is-open .mc-header-menu-icon .bar-mid {
  opacity: 0;
}
.mc-header.is-open .mc-header-menu-icon .bar-bot {
  top: 30px;
  transform: rotate(-45deg);
}

/* ===== Closeボタン（×）をspanで表現 ===== */
.mc-header-menu-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mc-close-icon {
  position: relative;
  width: 28px;
  height: 28px;
  display: inline-block;
}
.mc-close-icon .close-bar {
  position: absolute;
  left: 3px;
  right: 3px;
  top: 13px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease;
}
.mc-close-icon .close-a { transform: rotate(45deg); }
.mc-close-icon .close-b { transform: rotate(-45deg); }

/* Closeボタンのホバー反応 */
.mc-header-menu-modal-close:hover .close-bar {
  filter: brightness(1.2);
}

/* モーダル表示のフェード・スライド（軽いアニメ） */
.mc-header-menu-modal[aria-hidden="true"] { display: none; }
.mc-header-menu-modal[aria-hidden="false"] { display: flex; }
.mc-header-menu-modal-inner { transition: transform 0.25s ease, opacity 0.2s ease; }
.mc-header.is-open + .mc-header-menu-modal .mc-header-menu-modal-inner,
.mc-header-menu-modal[aria-hidden="false"] .mc-header-menu-modal-inner {
  transform: translateY(0);
  opacity: 1;
}

.mc-header-menu-btn { display: none !important; }
.mc-header-cta { display: none; }
.btn-web-reserve, .btn-line-reserve {
  display: inline-flex; align-items: center; justify-content: center;
  height: 55px; padding: 0 32px; border-radius: 999px;
  font-weight: 800; font-size: 18px; color: var(--white); text-decoration: none;
}
.btn-web-reserve { background: #ef9753; }
.btn-line-reserve { background: #06c755; }

/* ヘッダーバナーは768px以上で表示 */
.mc-header-bnr { display: none; }

@media (min-width: 768px) {
  .mc-header-bnr {
    display: flex; align-items: center; justify-content: center;
    background: var(--brand-primary); color: var(--white); height: 25px; padding: 2px 12px;
    font-size: 14px; font-weight: 900;
  }
}

@media (min-width: 1000px) {
  .mc-header-inner { justify-content: space-between; gap: 18px; }
  .mc-header-logo-area { flex: 0 0 auto; gap: 12px; padding: 0; }
  .mc-header-right { display: flex; align-items: center; gap: 24px; }
  .mc-header-right .mc-header-desktop-nav { display: block; }
  .mc-header-title { font-size: 16px; color: var(--text-primary); font-weight: 400; }

  .mc-header-desktop-nav { display: block; }
  .mc-header-desktop-list { gap: 30px; }
  .mc-header-desktop-list a {
    color: var(--text-primary);
    font-weight: 600; font-size: 16px; line-height: 1; text-decoration: none;
  }
}

@media (min-width: 1300px) {
  .mc-header-right .mc-header-cta { display: flex; gap: 18px; align-items: center; }
  
  .mc-header-desktop-list a:hover { opacity: 0.85; text-decoration: underline; }

  .mc-header-menu-btn { display: none; }
}

/* モバイルではハンバーガーを表示（768px未満のみ） */
@media (max-width: 767px) {
  .mc-header-menu-btn { display: inline-flex !important; }
}
/* ===== 料金ページリード文 ===== */
.price-lead {
  max-width: 800px;
  margin: 0 auto 32px auto;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-primary);
  font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .price-lead {
    font-size: 18px;
    margin-bottom: 48px;
  }
  .price-lead {
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .price-content {
    max-width: 1200px;
  }
}

/* ===== ご来店前の注意事項セクション ===== */
.note-section {
  background: var(--white);
  margin: 60px 20px;
  padding: 0;
}
.note-section-inner {
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border: 1.5px solid var(--brand-primary);
  /* 角丸なし */
  border-radius: 0;
  box-sizing: border-box;
  margin: 0 auto 60px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(20,42,125,0.06);
}
.note-title-bar {
  background: var(--brand-primary);
  width: 100%;
  padding: 18px 0 18px 0;
  display: flex;
  align-items: center;
  justify-content: center; 
}
.note-title {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  letter-spacing: 0.04em;
}
.note-list {
  list-style: none;
  margin: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.note-list-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-primary);
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  line-height: 1.4;
}
.note-icon {
  width: 19px;
  height: 19px;
  display: inline-block;
  background: url('../img/icons/check-icon.svg') no-repeat center/contain;
  flex-shrink: 0;
  margin-top: 2px;
}
.note-text {
  display: inline-block;
  vertical-align: top;
}
.note-btns {
  display: flex;
  flex-direction: column;
  gap: 23px;
  align-items: flex-start;
  padding: 24px 20px 28px 20px;
}
.note-btns-center {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 32px 0 0 0;
  gap: 23px;
}
.note-btn {
  display: inline-block;
  width: 310px;
  max-width: 100%;
  height: 47px;
  border-radius: 36px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 47px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: 2px solid var(--brand-primary);
  box-sizing: border-box;
}
.note-btn-outline {
  background: var(--white);
  color: var(--brand-primary);
}
.note-btn-outline:hover {
  background: var(--brand-primary);
  color: var(--white);
}
.note-btn-main {
  background: var(--brand-primary);
  color: var(--white);
}
.note-btn-main:hover {
  background: var(--white);
  color: var(--brand-primary);
}
@media (min-width: 768px) {
  .note-section-inner {
    max-width: 1000px;
  }
  .note-title {
    font-size: 24px;
  }
  .note-list {
    font-size: 16px;
    padding: 32px 40px;
    gap: 24px;
  }
  .note-btns {
    flex-direction: column;
    gap: 23px;
    align-items: flex-start;
    padding: 24px 20px 28px 20px;
  }
  .note-btns.note-btns-center {
    flex-direction: row;
    gap: 32px;
    align-items: center;
    justify-content: center;
    padding: 40px 0 0 0;
  }
  .note-btn {
    width: 310px;
    font-size: 20px;
    height: 47px;
    line-height: 47px;
  }
}
@media (max-width: 480px) {
  .note-section-inner {
    max-width: 100vw;
  }
  .note-title {
    font-size: 18px;
  }
  .note-list {
    font-size: 13px;
    padding: 16px 8px;
    gap: 16px;
  }
  .note-btns {
    padding: 16px 8px 20px 8px;
    gap: 12px;
  }
  .note-btn {
    width: 100%;
    font-size: 16px;
    height: 40px;
    line-height: 40px;
  }
}
@media (min-width: 768px) {
  /* 画像と料金表を横並び・1:1・間隔24px */
  .flame-menu-table-img-row {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 40px;
  }
  .flame-menu-img,
  .flame-menu-table-wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .flame-menu-img {
    width: 50%;
    height: 240px;
    margin-bottom: 0;
  }
  .flame-menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .flame-menu-table-wrap {
    width: 50%;
    margin-bottom: 0;
    justify-content: flex-start;
  }
  .flame-menu-table-title {
    margin-top: 0 !important;
  }
  .note-list-item {
    font-size: 18px;
  }
  
}


.menu-section {
  width: 100vw;
  max-width: 100vw;
  min-width: 100vw;
  box-sizing: border-box;
  padding: 0 0 64px 0;
}

/* menu-header: 従来のクラス（後方互換性、新しいコンポーネントに統合） */
.menu-header {
  text-align: center;
  padding: 48px 0 32px 0;
}
.menu-header-title {
  color: var(--brand-primary);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
}
.menu-header-subtitle {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
}

/* c-section-title: 新しい一元管理コンポーネント */
.c-section-title.menu-header {
  padding: 48px 0 32px 0;
}

.c-section-title.menu-header .c-section-title__title {
  letter-spacing: 0.05em;
  margin-bottom: .1em;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
}

.c-section-title.menu-header .c-section-title__subtitle {
  font-size: 15px;
  letter-spacing: 0.1em;
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
}

.flame-menu-labels {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.manu-label-mayuclear {
  color: var(--accent-subtle);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.05em;
}

.flame-menu-table-wrap {
  width: 100%;
  margin-bottom: 32px;
}
.flame-menu-detail {
  background: var(--white);
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(20,42,125,0.06);
}
.flame-menu-detail-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
}
/* チェックアイコン付きリスト・レスポンシブカラム */
.flame-menu-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px 24px;
}
.flame-menu-detail-list li {
  font-size: 18px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  white-space: nowrap;
}
.flame-menu-detail-list .icon-wrap {
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.flame-menu-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
}
@media (max-width: 480px) {
  .menu-section {
    padding-bottom: 32px;
  }
  .menu-header {
    padding: 32px 0 20px 0;
  }
  .flame-menu {
    min-width: 0;
    padding: 24px 8px 20px 8px;
  }
  .flame-menu-img {
    width: 100%;
    height: 160px;
  }
}

.floating-campaign-banner {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 30vw;
  max-width: 600px;
  z-index: 30;
}

.floating-campaign-banner a {
  display: block;
}

.floating-banner-img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.floating-banner-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.price-content {
  width: 100vw;
  max-width: 100vw;
  min-width: 100vw;
  padding: 0;
  background: var(--white);
}
.menu-section {
  width: 100vw;
  max-width: 100vw;
  min-width: 100vw;
  box-sizing: border-box;
  padding: 0 0 64px 0;
}
.menu-header {
  text-align: center;
  padding: 40px 0 24px 0;
}
.menu-header-title {
  color: var(--brand-primary);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.menu-header-subtitle {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.flame-menu-list {
  display: flex;
  flex-direction: column;
  gap: 100px 0;
  width: 100vw;
  max-width: 100vw;
}
.flame-menu {
  background: #f6f6f6;
  border-top: 5px solid var(--brand-primary);
  padding: 41px 20px 32px 20px;
  box-sizing: border-box;
  max-width: 100vw;
  margin: 0 20px;
}
.flame-menu-labels {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.manu-label-mayuclear {
  color: var(--accent-subtle);
  font-weight: 900;
  font-size: 20px;
}
.manu-label-standard {
  background: var(--accent-subtle);
  color: var(--white);
  font-weight: 900;
  font-size: 20px;
  padding: 5px 7px;
}
.flame-menu-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-primary);
  text-align: center;
  margin: 0 0 32px 0;
  line-height: 1.2;
}
.flame-menu-desc {
  color: var(--text-primary);
  font-size: 14px;
  text-align: justify;
  margin-bottom: 18px;
  width: 100%;
  line-height: 1.4;
}
.flame-menu-img {
  width: 100%;
  height: auto;
  background: url('img/menu1.jpg') center/cover no-repeat;
  margin: 0 auto 35px;
}
.flame-menu-table-wrap {
  width: 100%;
  margin-bottom: 35px;
}
.flame-menu-table-title {
  font-size: 18px;
  color: var(--text-primary);
  margin-top: 16px;
  margin-bottom: 4px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .flame-menu-table-title {
    margin-top: 0;
  }
}
.flame-menu-table-title .student-note {
  font-size: 12px;
  color: var(--text-primary);
  font-weight: 500;
  margin-left: 4px;
}
.flame-menu-table {
  max-width: 100%;
  margin: 0 auto 40px;
  border-collapse: collapse;
  display: block;
}
.flame-menu-table tbody{
  display: block;
}
.flame-menu-table tr {
  display: flex;
  flex-direction: column;
  width: 100%;
}
/* 600pxは削除し、PC用は768px以上でまとめて上書き */
.flame-menu-table th,
.flame-menu-table td {
  border: 1px solid var(--text-primary);
  padding: 10px 16px;
  font-size: 18px;
  font-weight: 500;
  background: var(--white);
  width: 100%;
  box-sizing: border-box;
  display: block;
}
.flame-menu-table th {
  background: var(--brand-primary);
  color: var(--white);
  font-weight: 700;
  text-align: left;
}
.flame-menu-table td {
  font-weight: 700;
  font-size: 20px;
  background: var(--white);
}
.flame-menu-table td span {
  font-size: 15px;
  color: var(--text-primary);
  margin-left: 4px;
  font-weight: 400;
}
@media (max-width: 480px) {
  .flame-menu-table {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
}
.flame-menu-detail {
  background: var(--white);
  padding: 20px;
  margin-bottom: 24px;
}
.flame-menu-detail-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
}
/* .flame-menu-detail-list は上で定義済み（グリッド化）。ここでの上書きは不要のため削除 */
.flame-menu-detail-list li {
  font-size: 18px;
  color: var(--text-primary);
  position: relative;
}
.flame-menu-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
}

/* ===== ページタイトルエリア ===== */
.page-heading-title-section {
  width: 100vw;
  min-width: 100vw;
  max-width: 100vw;
  background: linear-gradient(120deg, #EEE 37.1%, #CDCDCD 37.1%, #D8D8D8 44.8%);
  overflow: hidden;
  position: relative;
  margin-bottom: 32px;
}
.page-heading-title-inner {
  --page-heading-padding: 20px;
  max-width: 390px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--page-heading-padding);
  text-align: center;
}
.page-breadcrumb {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  position: absolute;
  left: var(--page-heading-padding);
  right: var(--page-heading-padding);
  margin: 0;
  text-align: left;
  top: 10px;
}
.page-breadcrumb-sep {
  margin: 0 12px;
}
.page-title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  /* margin-top: calc(var(--header-offset) + 15px); */
}
.page-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.page-title .page-title-en {
  font-size: 16px;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  line-height: 1.1;
  font-weight: 600;
}

@media (min-width: 480px) {
  .page-heading-title-inner {
    --page-heading-padding: 32px;
    max-width: 480px;
  }
  .page-title {
    font-size: 28px;
  }
  .page-title .page-title-en {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  /* ページタイトルエリア */
  .page-heading-title-inner {
    --page-heading-padding: 64px;
    max-width: 900px;
    min-height: 260px;
  }
  .page-title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .page-title .page-title-en {
    font-size: 24px;
  }

  /* 料金・メニュー本体 */
  .price-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 0 96px 0;
    background: var(--white);
  }
  .menu-section {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 0 0 96px 0;
  }
  .menu-header {
    padding: 0 0 40px 0;
    margin-bottom: 0;
  }
  .menu-header-title {
    font-size: 36px;
    margin-bottom: 8px;
  }
  .menu-header-subtitle {
    font-size: 18px;
  }
  .flame-menu-list {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
    box-sizing: border-box;
  }
  .flame-menu {
    margin: 0;
    padding: 48px 32px;
    border-radius: 0;
    align-items: stretch;
  }
  .flame-menu-labels {
    gap: 12px;
    margin-bottom: 16px;
  }
  .manu-label-mayuclear,
  .manu-label-standard {
    font-size: 22px;
  }
  .flame-menu-title {
    font-size: 36px;
    margin-bottom: 36px;
  }
  .flame-menu-title br.s {
    display: none;
  }
  .flame-menu-desc {
    font-size: 16px;
    margin-bottom: 54px;
    line-height: 1.6;
  }
  /* 上記は横並び用に上書きされる */
  .flame-menu-table-title {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
  }
  .flame-menu-table-title .student-note {
    font-size: 14px;
  }
  .flame-menu-table {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .flame-menu-table tr {
    flex-direction: row;
  }
  .flame-menu-table th,
  .flame-menu-table td {
    font-size: 20px;
    padding: 14px 20px;
  }
  .flame-menu-table th {
    text-align: left;
  }
  .flame-menu-table td {
    font-size: 22px;
  }
  .flame-menu-table td span {
    font-size: 16px;
  }
  .flame-menu-detail {
    padding: 28px;
    margin-bottom: 54px;
    box-shadow: 0 2px 12px rgba(20,42,125,0.06);
  }
  .flame-menu-detail-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .flame-menu-detail-list li {
    font-size: 20px;
  }
  .flame-menu-links {
    flex-direction: row;
    gap: 24px;
    margin-top: 16px;
    justify-content: center;
  }
}
@media (min-width: 1000px) {
  .flame-menu {
    padding: 50px 80px;
  }
  .flame-menu-table-img-row {
    gap: 50px;
  }
  .page-heading-title-section {
    margin-bottom: 40px;
  }
}
.price-content {
  max-width: 420px;
  margin: 0 auto;
  padding: 32px 0 64px 0;
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  background: var(--white);
}
.price-header {
  text-align: center;
  margin-bottom: 32px;
}
.price-header-title {
  color: var(--brand-primary);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.price-header-subtitle {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.price-section-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.price-section {
  background: #f6f6f6;
  border-top: 5px solid var(--brand-primary);
  padding: 40px 20px 32px 20px;
  margin-bottom: 0;
  position: relative;
}
.price-section-labels {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}
.label-mayuclear {
  color: var(--accent-subtle);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.05em;
}
.label-standard,
.label-pickup,
.label-popular {
  background: var(--accent-subtle);
  color: var(--white);
  font-weight: 900;
  font-size: 20px;
  padding: 2px 14px;
  display: inline-block;
  letter-spacing: 0.05em;
}
.label-standard { min-width: 61px; text-align: center; }
.label-pickup { min-width: 61px; text-align: center; }
.label-popular { min-width: 40px; text-align: center; }
.label-no1, .label-no2, .label-no3 {
  background: var(--accent-subtle);
  color: var(--white);
  font-weight: 900;
  font-size: 20px;
  border-radius: 6px;
  padding: 2px 14px;
  min-width: 61px;
  text-align: center;
  margin-left: 4px;
}
.price-section-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-primary);
  text-align: center;
  margin: 0 0 12px 0;
  line-height: 1.2;
}
.price-section-desc {
  color: var(--text-primary);
  font-size: 14px;
  text-align: justify;
  margin-bottom: 18px;
  width: 100%;
}
.price-section-img,
.price-section-imgs .price-section-img {
  width: 310px;
  height: 207px;
  background-size: cover;
  background-position: center;
  margin: 0 auto 24px auto;
  max-width: 100%;
}
.price-section-imgs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}
.price-section-table-wrap {
  width: 100%;
  margin-bottom: 32px;
}
.price-table-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.price-table-title.student {
  font-size: 18px;
  color: var(--text-primary);
  margin-top: 16px;
  margin-bottom: 4px;
}
.price-table-title .student-note {
  font-size: 12px;
  color: #888;
  font-weight: 400;
  margin-left: 4px;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 8px;
}
.price-table th,
.price-table td {
  border: 1px solid var(--text-primary);
  padding: 10px 16px;
  font-size: 18px;
  font-weight: 500;
  background: var(--white);
}
.price-table th {
  background: var(--brand-primary);
  color: var(--white);
  font-weight: 700;
  width: 50%;
  text-align: left;
}
.price-table-price {
  color: var(--accent-subtle);
  font-weight: 700;
  font-size: 20px;
  text-align: right;
}
.price-table-price .tax {
  font-size: 15px;
  color: var(--text-primary);
  margin-left: 4px;
  font-weight: 400;
}
.price-section-detail {
  background: var(--white);
  padding: 20px;
  margin-bottom: 24px;
}
.price-detail-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.price-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-detail-list li {
  font-size: 18px;
  color: var(--text-primary);
  padding-left: 28px;
  position: relative;
}
.price-detail-list li:before {
  content: '';
  display: inline-block;
  width: 19px;
  height: 19px;
  background: url('http://localhost:3845/assets/017ff9f92f421c62aa826038a591effbd604f936.svg') no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 2px;
}
.price-section-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
}
/* === Global button component === */
.c-btn,
.btn-outline,
.btn-main {
  --btn-bg: var(--brand-primary);
  --btn-color: var(--white);
  --btn-border-color: var(--brand-primary);
  --btn-height: 47px;
  --btn-radius: 999px;
  --btn-font-size: 20px;
  --btn-font-weight: 600;
  --btn-padding-x: 20px;
  --btn-width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: var(--btn-width);
  max-width: 100%;
  min-height: var(--btn-height);
  padding: 0 var(--btn-padding-x);
  border-radius: var(--btn-radius);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  text-decoration: none;
  line-height: 1.1;
  background: var(--btn-bg);
  color: var(--btn-color);
  border: 2px solid var(--btn-border-color);
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
}
.c-btn:hover,
.btn-outline:hover,
.btn-main:hover {
  background: var(--btn-color);
  color: var(--btn-bg);
  border-color: var(--btn-border-color);
}
.c-btn:focus-visible,
.btn-outline:focus-visible,
.btn-main:focus-visible {
  outline: 3px solid #bcd0ff;
  outline-offset: 2px;
}
.c-btn--primary,
.btn-main {
  --btn-bg: var(--brand-primary);
  --btn-color: var(--white);
  --btn-border-color: var(--brand-primary);
}
.c-btn--outline,
.btn-outline {
  --btn-bg: var(--white);
  --btn-color: var(--brand-primary);
  --btn-border-color: var(--brand-primary);
}
.c-btn--white {
  --btn-bg: var(--white);
  --btn-color: var(--brand-primary);
  --btn-border-color: var(--brand-primary);
}
.c-btn--ghost {
  --btn-bg: transparent;
  --btn-color: var(--brand-primary);
  --btn-border-color: transparent;
}
.c-btn--no-border {
  --btn-border-color: transparent;
}
.c-btn--block {
  --btn-width: 100%;
}
.c-btn--sm {
  --btn-height: 42px;
  --btn-font-size: 20px;
  --btn-padding-x: 20px;
}
.c-btn--lg {
  --btn-height: 54px;
  --btn-font-size: 20px;
  --btn-padding-x: 24px;
}
.c-btn__text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.c-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}
.c-btn__icon img,
.c-btn__icon svg {
  width: 100%;
  height: 100%;
}
/* wrapper to align and size buttons anywhere */
.c-btn-wrap {
  --btn-wrap-max: 300px;
  display: flex;
  justify-content: center;
  /* width: 100%; */
  margin: 0 20px;
}
.c-btn-wrap.c-btn-wrap--left { justify-content: flex-start; }
.c-btn-wrap.c-btn-wrap--center { justify-content: center; }
.c-btn-wrap.c-btn-wrap--right { justify-content: flex-end; }
.c-btn-wrap.c-btn-wrap--full { width: 100%; margin: 0; }
.c-btn-wrap .c-btn,
.c-btn-wrap .btn-outline,
.c-btn-wrap .btn-main {
  width: 100%;
  max-width: var(--btn-wrap-max);
}
/* legacy spacing for existing price buttons */
.btn-outline,
.btn-main {
  --btn-width: 310px;
  --btn-font-size: 20px;
}
@media (max-width: 480px) {
  .price-content {
    padding: 16px 0 32px 0;
  }
  .price-section-img,
  .price-section-imgs .price-section-img {
    width: 100%;
    height: 160px;
  }
  .c-btn-wrap .c-btn,
  .c-btn-wrap .btn-outline,
  .c-btn-wrap .btn-main {
    max-width: 250px;
  }
  .c-btn,
  .btn-outline,
  .btn-main {
    --btn-width: 100%;
    --btn-height: 42px;
    --btn-font-size: 20px;
    --btn-padding-x: 16px;
  }
}

@media (min-width: 768px) {
  .c-btn-wrap {
    width: 100%;
  }
}

/* ===== ガイドページ（初めての方へ）===== */


/* --- ガイドページ背景装飾 --- */
.flow {
  position: relative;
}
.guide-bg-decoration {
  position: absolute;
  top: 100px;
  left: 0;
  height: 600vw;
  width: 100vw;
  background: #142A7D1A;
  z-index: -1;
  pointer-events: none;
  transform: rotate(340deg);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .guide-bg-decoration {
    top: -100px;
    left: 0;
    height: 400vw;
    width: 80vw;
    transform: rotate(330deg);
  }
  
}

@media (min-width: 1200px) {
  .guide-bg-decoration {
    top: -300px;
    height: 1000vw;
    width: 120vw;
    transform: rotate(298deg);
    left: 50%;
    translate: -50%;
  }
}
.guide-content,
.page-heading-title-section,
.guide-section,
.guide-final-btn {
  position: relative;
  z-index: 1;
}

/* --- Voiceセクション横並び --- */
@media (min-width: 1200px) {
  
}

@media (min-width: 1200px) {
  .guide-lead,
  .guide-section-text,
  .guide-menu-desc,
  .guide-menu-note,
  .guide-price-label,
  .guide-price-tax,
  .guide-price-row-sub,
  .guide-price-sub-label,
  .guide-price-sub-value,
  .guide-price-sub-tax,
  .guide-flow-text,
  .guide-section-text {
    font-size: 18px !important;
  }
}

/* ガイドページリード文 */
.guide-lead {
  max-width: 600px;
  margin: 50px auto 32px auto;
  padding: 0 20px;
  font-size: 14px;
  color: var(--text-primary);
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  text-align: justify;
  line-height: 1.4;
  box-sizing: border-box;
}

/* ガイドコンテンツ全体 */
.guide-content {
  width: 100%;
  margin: 0 auto;
  padding: 0 19px;
  box-sizing: border-box;
}

/* ガイドセクション共通 */
.guide-section {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 44px;
  align-items: center;
  /* max-width: 1200px */
}

.guide-section.flow,
.guide-section.voice-section {
  margin-top: 100px;
}

.about-mayuclear.guide-section {
  max-width: 1200px;
  margin: 0 auto 120px;
}

.guide-section:last-child {
  margin-bottom: 60px;
}

.guide-section-content {
  width: 100%;
}

/* セクション画像 */
.guide-section-img {
  width: 100%;
}

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

/* セクションヘッダー */
.guide-section-header {
  text-align: center;
}

.guide-section-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--brand-primary);
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.guide-section-subtitle {
  font-size: 14px;
  color: var(--text-primary);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}

/* セクションテキスト */
.guide-section-text {
  font-size: 14px;
  color: var(--text-primary);
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.4;
  text-align: justify;
  margin-top: 32px;
}

.guide-section-text p {
  margin: 0 0 16px 0;
}

.guide-section-text p:last-child {
  margin-bottom: 0;
}

/* メニューカード */
.guide-menu-card {
  background: #f6f6f6;
  border-top: 5px solid var(--brand-primary);
  padding: 41px 20px 35px 20px;
  margin-bottom: 50px;
  width: 100%;
  box-sizing: border-box;
}

.guide-menu-card:last-child {
  margin-bottom: 0;
}

.guide-menu-labels {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
}

.guide-label-mayuclear {
  color: var(--accent-subtle);;
  font-weight: 900;
  font-size: 20px;
  font-family: 'Noto Sans JP', sans-serif;
}

.guide-label-standard {
  background: var(--accent-subtle);;
  color: var(--white);
  font-weight: 900;
  font-size: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 2px 7px;
  height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-menu-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-primary);
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  margin: 0 0 35px 0;
  line-height: 1.2;
}

/* 価格ボックス */
.guide-price-box {
  background: var(--white);
  padding: 15px 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto 35px;
}

.guide-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  height: 38px;
}

.guide-price-label {
  font-size: 14px;
  color: var(--text-primary);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

.guide-price-value {
  font-size: 32px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

.guide-price-red {
  color: red;
}

.guide-price-tax {
  font-size: 14px;
  color: var(--text-primary);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

.guide-price-row-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: -10px;
}

.guide-price-sub-label {
  font-size: 12px;
  color: var(--text-primary);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

.guide-price-sub-value {
  font-size: 16px;
  color: var(--text-primary);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

.guide-price-sub-tax {
  font-size: 12px;
  color: var(--text-primary);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

.guide-menu-desc {
  font-size: 14px;
  color: var(--text-primary);
  font-family: 'Noto Sans JP', sans-serif;
  text-align: justify;
  line-height: 1.4;
  width: 100%;
  margin: 0 auto;
}

.guide-menu-note {
  font-size: 14px;
  color: var(--text-primary);
  font-family: 'Noto Sans JP', sans-serif;
  text-align: justify;
  line-height: 1.4;
  max-width: 600px;
}

/* 施術の流れ */
.guide-flow-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  width: 100%;
}

.guide-flow-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  max-width: 480px;
}

.guide-step-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--brand-primary);
  font-family: 'Noto Sans JP', sans-serif;
}

.guide-flow-card {
  background: #f6f6f6;
  border-top: 5px solid var(--brand-primary);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
}

.guide-flow-img {
  width: 100%;
}

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

.guide-flow-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-basis: 100%;
}

.guide-flow-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-primary);
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
}

.guide-flow-text {
  font-size: 14px;
  color: var(--text-primary);
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.4;
  margin: 0;
}

.guide-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(180deg);
}

/* ボタン */
.guide-btn-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.guide-btn {
  display: inline-block;
  height: 47px;
  border-radius: 36px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 47px;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  transition: background 0.2s, color 0.2s;
  box-sizing: border-box;
  padding: 0 105px;
}

.guide-btn-outline {
  background: var(--white);
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}

.guide-btn-outline:hover {
  background: var(--brand-primary);
  color: var(--white);
}

.guide-btn-main {
  background: var(--brand-primary);
  color: var(--white);
  border: 2px solid var(--brand-primary);
}

.guide-btn-main:hover {
  background: var(--white);
  color: var(--brand-primary);
}

.guide-btn-main-large {
  background: var(--brand-primary);
  color: var(--white);
  border: 2px solid var(--brand-primary);
  width: 350px;
  max-width: 100%;
}

.guide-btn-main-large:hover {
  background: var(--white);
  color: var(--brand-primary);
}

/* 最終予約ボタン */
.guide-final-btn {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.voice-section .guide-section-img {
  width: 100%;
  margin-bottom: 35px;
}

.voice-section .guide-section-text {
  margin-top: 35px;
  margin-bottom: 35px;
}

.voice-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 70px
}

/* レスポンシブ対応 */
@media (min-width: 768px) {

  .guide-content {
    padding: 0 40px;
  }
  
  .guide-section {
    margin-bottom: 120px;
    gap: 60px;
  }
  
  .guide-section-title {
    font-size: 40px;
  }
  
  .guide-section-subtitle {
    font-size: 18px;
  }
  
  .guide-section-text {
    font-size: 16px;
  }
  
  .guide-menu-card {
    padding: 60px 40px 50px 40px;
    max-width: 600px;
  }
  
  .guide-menu-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  .guide-price-box {
    padding: 20px 40px;
  }
  
  .guide-menu-desc {
    font-size: 16px;
  }
  
  .guide-menu-note {
    font-size: 16px;
  }

  .guide-flow-card {
    padding: 30px;
    gap: 20px;
  }
  
  .guide-flow-title {
    font-size: 24px;
  }
  
  .guide-flow-text {
    font-size: 16px;
  }

  .guide-flow-card {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1000px;
  }

  .guide-flow-img {
    width: 400px;
  }

  .guide-flow-item {
    max-width: none;
    width: auto;
  }

}

@media (min-width: 1000px) {

  .guide-lead {
    margin: 50px auto 132px auto;
  }

  .guide-section.about-mayuclear {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    align-items: center;
    gap: min(4vw, 60px);
  }
  .guide-menu-card-wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: min(4vw, 60px);
    width: 100%;
    box-sizing: border-box;
  }
  .guide-menu-card {
    margin-bottom: 0;
  }

  .voice-section-inner {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
    gap: min(4vw, 60px);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .voice-section .guide-section-img {
    width: 100%;
    margin: 0;
  }

  .voice-section .guide-section-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }

  .voice-section .guide-section-content {
    max-width: 600px;
    width: 100%;
    padding: 0 0 0 0;
  }

  .guide-section-header {
    margin-bottom: 32px;
  }

  .voice-section .guide-section-title {
    font-size: 36px;
    margin-bottom: 8px;
  }

  .voice-section .guide-section-subtitle {
    font-size: 18px;
  }

  .voice-section .guide-section-text {
    font-size: 18px;
    text-align: left;
    line-height: 2;
  }

  .voice-section .guide-section-text p {
    margin-bottom: 20px;
  }

  .voice-section .guide-btn-wrapper {
    margin-top: 32px;
  }

  .voice-section {
    margin: 0 auto 200px;
  }
}

@media (min-width: 1200px) {
  .guide-bg-decoration {
    /* Step1〜Step5の背景にちょうど良い斜め帯 */
    position: absolute;
    top: 700px; /* 上辺を画面外へ */
    left: 50%;
    width: 5600px; /* 長辺が画面を横断 */
    height: 420px; /* 上下辺は画面外 */
    /* transform: translateX(-50%) rotate(24deg); */
    translate: -50%;
    transform: rotate(45deg);
  }
  .guide-section.flow {
    position: relative;
    z-index: 1;
  }
}


/* ===== ビフォーアフターページ ===== */
.beforeafter-lead-title {
  color: var(--brand-primary);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.beforeafter-lead-sub {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 400;
}
.beforeafter-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 200px;
}
/* ケース全体 */
.beforeafter-item {
  background: var(--white);
  box-sizing: border-box;
  margin-bottom: 0;
  padding: 20px 20px 0 20px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1200px;
}
.beforeafter-item .c-btn-wrap {
  margin-top: 40px;
}
.beforeafter-case-title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--dark-gray);
}
.beforeafter-case-title-main {
  color: var(--brand-primary);
  font-size: 24px;
  font-weight: 900;
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  text-align: center;
}
.beforeafter-case-title-sub {
  color: var(--text-primary);
  font-size: 14px;
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  text-align: center;
}
.beforeafter-profile-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin-top: 15px;
  margin-bottom: 0;
  position: relative;
}
.beforeafter-profile-deco {
  display: flex;
  align-items: center;
}
.beforeafter-profile-deco div {
  height: 5px;
  width: 5px;
  background: #bfbfbf;
  border-radius: 50%;
  margin-right: 3px;
  display: inline-block;
}
.beforeafter-profile {
  display: flex;
  align-items: center;
  gap: 13px;
}
.beforeafter-profile-img {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}
.beforeafter-profile-img img {
  width: 80%;
  height: auto;
  display: block;
  translate: 0 10%;
}
.beforeafter-profile-name {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 400;
  white-space: nowrap;
}
.beforeafter-img {
  width: 100%;
}
.beforeafter-img img {
  width: 100%;
  height: auto;
  display: block;
}
/* モバイルでは縦積み */
.responsive-content-spacer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* 説明文 */
.beforeafter-desc {
  font-size: 14px;
  color: var(--text-primary);
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  margin: 0 0 40px;
  line-height: 1.4;
  text-align: left;
  word-break: break-all;
}
.beforeafter-detail-blocks {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.beforeafter-detail {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.beforeafter-label {
  background: var(--brand-primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  padding: 8px 11px;
  display: inline-block;
  letter-spacing: 0.04em;
  width: fit-content;
}
/* .beforeafter-label-menu, .beforeafter-label-part は未使用のため削除 */
.beforeafter-detail-text {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 900;
}
.beforeafter-btns {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin: 24px 0 0 0;
}
.beforeafter-btn {
  display: inline-block;
  max-width: 100%;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: .8em;
  transition: background 0.2s, color 0.2s;
  border: 2px solid var(--brand-primary);
  box-sizing: border-box;
}
.beforeafter-btn-outline {
  background: var(--white);
  color: var(--brand-primary);
}
.beforeafter-btn-outline:hover {
  background: var(--brand-primary);
  color: var(--white);
}
.beforeafter-btn-main {
  background: var(--brand-primary);
  color: var(--white);
}
.beforeafter-btn-main:hover {
  background: var(--white);
  color: var(--brand-primary);
}

@media (min-width: 768px) {
  
  .beforeafter-section {
    padding: 0 0 80px 0;
  }
  .beforeafter-item {
    margin: 0 auto;
    gap: 10px;
  }
  .beforeafter-lead-title {
    font-size: 28px;
  }
  .beforeafter-lead-sub {
    font-size: 16px;
  }
  .responsive-content-spacer {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: min(4vw, 60px);
  }
  .responsive-content-spacer > .beforeafter-img,
  .responsive-content-spacer > .text-box {
    flex: 1 1 50%;
    max-width: 100%;
  }
  .beforeafter-detail-blocks {
    /* width: 252px; */
  }
  .beforeafter-btn {
    width: 350px;
    font-size: 20px;
  }
  .beforeafter-desc {
    margin-top: 0;
    font-size: 16px;
  }

  .beforeafter-section .text-box {
    width: 100%;
  }
  .beforeafter-profile-row {
    width: calc(50% - (min(4vw, 60px) / 2));
  }
  .beforeafter-btns {
    flex-direction: row;
    gap: 20px;
    align-items: center;
    margin: 60px auto 0;
  }
  .beforeafter-label {
    font-size: 16px;
    padding: 10px 14px;
  }
  .beforeafter-detail-text {
    font-size: 16px;
  }
}

@media (min-width: 1000px) {
  .beforeafter-case-title-main {
    font-size: 40px;
  }
  .beforeafter-case-title-sub {
    font-size: 20px;
  }
  .beforeafter-desc {
    font-size: 18px;
  }
  .beforeafter-label {
    font-size: 18px;
  }
  .beforeafter-detail-text {
    font-size: 18px;
  }
  .beforeafter-list {
    gap: 120px;
  }
}

/* ===== 会社概要ページ ===== */
/* 構造 */
.company-section {
  width: 100vw;
  max-width: 100vw;
  min-width: 100vw;
  background: var(--white);
}
.company-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 150px;
  box-sizing: border-box;
}
.company-table-wrap { width: 100%; }

.company-btn-wrap {
  display: flex;
  justify-content: center;
  margin: 32px 0 0 0;
}

.company-table {
  width: 100%;
  border-collapse: collapse; /* 行間の余白なし */
  margin-bottom: 60px;
}
.company-table th,
.company-table td {
  font-size: 14px;
  line-height: 1.4;
  vertical-align: top;
}
.company-table th {
  width: 112px; 
  text-align: left;
  color: var(--brand-primary);
  font-weight: 700;
}
.company-table td {
  color: var(--text-primary);
}

.company-table tr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5em; 
  padding: 1em 0;
  border-bottom: 1px solid transparent;
  border-image-slice: 1;
  border-image: linear-gradient(90deg,var(--brand-primary) 10%, var(--dark-gray) 10% 100%) 1;
}

.company-img-wrap {
  margin: 100px auto 0;
}

.company-img-wrap img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* デスクトップ時は横幅を拡張（任意） */
@media (min-width: 768px) {
  .company-table th { width: 200px; }

  .company-table tr {
    display: block;
  }
  .company-table {
    margin-bottom: 150px;
  }
  .company-img-wrap {
    margin: 100px auto 0;
  }
}

/* ===== NEWS シングル（single-news.php） ===== */
/* ページ用メモ: アーカイブと統一。タイトル、メタ、本文、前後ナビ、一覧へ戻るボタン。 */
.news-single { background: var(--white); padding: 0 0 64px; }
.news-single .news-inner { max-width: 800px; margin: 0 auto; padding: 0 20px; box-sizing: border-box; }
.news-single-header { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding: 16px 8px 8px; }
.news-single-title { font-size: 22px; line-height: 1.6; font-weight: 700; color: var(--text-primary); padding: 8px; border-bottom: 1px solid transparent; border-image-slice: 1; border-image: linear-gradient(90deg,var(--brand-primary) 10%, var(--dark-gray) 10% 100%) 1; }
.news-single-thumb { margin: 16px 0; }
.news-single-thumb img { width: 100%; height: auto; display: block; }
.news-single-content { color: var(--text-primary); font-size: 14px; line-height: 1.4; }

/* ===== FAQ（page-faq.php） ===== */
.faq-section { background: var(--white); padding: 0 0 64px; }
.faq-section .news-inner { max-width: 800px; }
.faq-section .c-btn-wrap { width: auto; margin-top: 100px; }
.faq-filter { margin: 24px 0 32px; }
.faq-filter-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 0; margin: 0; }
.faq-filter-list a { width: 100%; padding: 0; }
@media (max-width: 600px) {
  .faq-filter-list { grid-template-columns: 1fr; }
  .faq-filter-list li { text-align: center; }
  .faq-filter-list a.btn-outline { width: 80%; }
}
.faq-filter-list a { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 47px; border-radius: 999px; font-weight: 800; font-size: 18px; width: 100%;}
.faq-filter-icon { display: inline-flex; width: 16px; height: 18px; }
.faq-filter-icon img { width: 100%; height: auto; display: block; transform: rotate(180deg); transition: filter 0.15s ease; }
/* ホバー時、ボタンの色反転（既存の.btn-outline:hoverに合わせ、アイコンも白化） */
.faq-filter-list a.btn-outline:hover .faq-filter-icon img { filter: brightness(0) invert(1); }
.faq-category { padding: 50px 0 24px; }
.faq-category-header { display: grid; gap: 8px; margin-bottom: 12px; text-align: center; }
.faq-category-header .shop-area-title::after { content: none; }
.faq-category-header .shop-area-title {
  margin: 0;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  color: var(--brand-primary); /* #142A7D */
}
.faq-category-sub { font-size: 14px; color: var(--text-primary); }
.faq-list { display: grid; gap: 16px; }
/* details本体は余白を持たせず、内側(summary/answer)で調整 */
.faq-qa { border: 1px solid var(--text-primary); background: var(--white); padding: 0; position: relative; overflow: hidden; padding: 17px; line-height: 1.4; }
/* 質問行: テキストが折り返しても矢印は常に右端固定 */
.faq-q { 
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  cursor: pointer; list-style: none; 
  font-weight: 600; font-size: 14px; color: var(--text-primary);
  /* padding-bottom: 12px; */
}
.faq-q-text {font-weight: 600;}
.faq-qa summary::-webkit-details-marker { display: none; }
/* 矢印: 右端16pxで固定、縦センタリング */
.faq-arrow {  display: inline-flex; align-items: center; justify-content: center; }
.faq-arrow img { display: block; transform: rotate(180deg); transition: transform 0.2s ease; }
/* open時は上向き（180度回転分戻す） */
details.faq-qa[open] .faq-arrow img { transform: rotate(0deg); }
/* 回答行 */
.faq-a { font-size: 14px; color: var(--text-primary); border-top: 1px solid transparent; border-image-slice: 1; border-image: linear-gradient(90deg, var(--brand-primary) 20%, var(--dark-gray) 20% 100%) 1; margin-top: 12px; padding: 12px 0 0; }
.faq-ctas { margin-top: 32px; }

@media (min-width: 768px) {
  .faq-filter-list { grid-template-columns: repeat(4, 1fr); }
}
.news-single-content h2 { font-size: 20px; margin: 1.4em 0 0.6em; }
.news-single-content h3 { font-size: 18px; margin: 1.2em 0 0.5em; }
.news-single-content p { margin: 1em 0; }
.news-single-content ul, .news-single-content ol { padding-left: 1.2em; margin: 0.8em 0; }
.news-single-content a { color: var(--brand-primary); text-decoration: underline; }
.news-single-content img { width:100% }
.news-single-footer { margin-top: 24px; padding-top: 16px; border-top: 1px solid #eee; display: grid; gap: 100px; }
.news-single-nav { display: flex; justify-content: space-between; gap: 12px; }
.news-single-prev a, .news-single-next a { color: var(--brand-primary); text-decoration: none; font-weight: 700; }
.news-single-prev a:hover, .news-single-next a:hover { text-decoration: underline; }
.news-single-back { display: flex; justify-content: center; margin-top: 8px; }

@media (min-width: 768px) {
  .news-single-title { font-size: 26px; padding: 12px 8px; }
  .news-single-content { font-size: 17px; }
}

/* ===== 店舗一覧アーカイブ（archive-shop.php） ===== */
.shop-archive { background: var(--white); padding: 0 0 64px; }
.shop-archive-lead {
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.4;
}
.shop-inner { max-width: 1000px; margin: 0 auto; padding: 0 20px; box-sizing: border-box; }
.shop-area-nav { position: sticky; top: 0; background: rgba(255,255,255,0.96); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); z-index: 5; padding: 12px 0; border-bottom: 1px solid #eee; }
.shop-area-list {
  list-style: none;
  margin: 0;
  padding: 16px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.shop-area-item { margin: 0 auto; width: 80%; max-width: 500px;}
.shop-area-link {
  position: relative;
  width: 100%;
  min-height: 47px;
  height: 47px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px; 
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
  line-height: 1;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(20,42,125,0.08);
}
.shop-area-link:hover { background: var(--brand-primary); color: var(--white); }
.shop-area-text { flex: 1; text-align: center; font-family: 'Noto Sans JP', sans-serif; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 600;}
.shop-area-icon { position: absolute; right: 14px; display: inline-flex; width: 16px; height: 18px; }
.shop-area-icon img { width: 100%; height: auto; display: block; rotate: 180deg;}
.shop-area-link:hover .shop-area-icon img { filter: brightness(0) invert(1);} 

/* 列数のレスポンシブ（スマホ1列 → タブレット2列 → PC3列） */
@media (min-width: 768px) {
  .shop-area-list { grid-template-columns: repeat(2, 1fr); gap: 25px 35px;}
  .shop-area-item {width: 100%;}
}
@media (min-width: 991px) {
  .shop-area-list { grid-template-columns: repeat(3, 1fr); }
}

.shop-area-section { padding: 32px 0 16px; max-width: 800px; margin: 0 auto; }
.shop-area-title { font-size: 20px; font-weight: 700; color: var(--text-primary); letter-spacing: 0; margin: 8px 0 30px; text-align: left; }
.shop-area-title::after { content: ""; display: block; max-width: 100%; height: 1px; margin-top: 11px; background: linear-gradient(90deg, var(--brand-primary) 20%, var(--dark-gray) 20% 100%); }
.shop-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 70px; }
.shop-item { margin: 0; }
.shop-card { display: grid; grid-template-columns: 1fr; gap: 17px; padding: 0; border: none; box-shadow: none; }
.shop-card * { font-family: 'Noto Sans JP', sans-serif; }
.shop-card-media { width: 100%; aspect-ratio: 563 / 258; background: #f4f4f4; overflow: hidden; }
.shop-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shop-card-media-placeholder { width: 100%; height: 100%; background: #EDEDED; }
.shop-card-body { display: flex; flex-direction: column; gap: 22px; }
.shop-card-content { display: flex; flex-direction: column; gap: 22px; }
.shop-card-info-box { display: flex; flex-direction: column; gap: 22px; }
.shop-card-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; border: none; padding: 0; }
.shop-card-title { font-size: 20px; font-weight: 700; color: var(--text-primary); flex: 1 1 auto; }
.shop-card-link { font-size: 12px; font-weight: 600; color: var(--brand-primary); text-decoration: underline; display: inline-flex; align-items: center; gap: 6px; }
.shop-card-link:hover { opacity: .85; }
.shop-card-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  background: none;
}
.shop-card-link-icon img {
  width: 1em;
  height: 1em;
  display: block;
  transform: rotate(90deg);
}
/* 情報テキスト（段落） */
.shop-card-info { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--text-primary); line-height: 1.4; }
.shop-card-info p { margin: 0; }
.shop-card-info-address { white-space: pre-wrap; }
.shop-card-info-tel a { color: inherit; text-decoration: none; }
.shop-card-info-tel a:hover { text-decoration: underline; }
.shop-card-buttons { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;gap: 15px; }

.btn-line,
.btn-map,
.btn-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  border-radius: 999px;
  text-decoration: none;
  height: 55px;
  min-height: 55px;
  box-sizing: border-box;
}
.btn-line {
  color: var(--white);
  background: #06C755;
  border: 2px solid #06C755;
  padding: .7em 0;
}
.btn-line:hover { background: #04a946; border-color: #04a946; }
.shop-card .btn-line { background: var(--white); color: var(--brand-primary); border-color: var(--brand-primary); }
.shop-card .btn-line:hover { background: var(--brand-primary); color: var(--white); border-color: var(--brand-primary); }
.btn-map {
  color: var(--brand-primary);
  background: var(--white);
  border: 2px solid var(--brand-primary);
  padding: .7em 0;
}
.btn-map.is-disabled { opacity: .5; cursor: not-allowed; }
.btn-reserve {
  grid-column: 1 / -1;
  color: var(--white);
  background: var(--brand-primary);
  border: 2px solid var(--brand-primary);
  padding: .7em 0;
  width: 100%;
}
.btn-detail { grid-column: 1 / -1; }

/* 768px未満は1カラムのまま（幅いっぱい）。768px以上でPCレイアウト適用 */

.btn-reserve-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  height: 20px;
  width: 20px;
  vertical-align: middle;
}

.btn-reserve-icon img {
  width: 20px;
  height: 20px;
  display: block;
}

/* ====== PCレイアウト調整（>=991px） ====== */
@media (min-width: 991px) {
  /* リストは1列（カードは 上:ヘッダー / 下:コンテンツ横並び） */
  .shop-list { grid-template-columns: 1fr; gap: 70px; }
  .shop-area-section { max-width: unset; }

  /* コンテンツ行を横並びにして高さを揃える */
  .shop-card-content { flex-direction: row; align-items: stretch; gap: 30px; }
  .shop-card-media { width: 355px; height: 163px; aspect-ratio: auto; flex: 0 0 355px; }
  .shop-card-media img { width: 100%; height: 100%; object-fit: cover; }
  .shop-card-info-box { flex: 1 1 auto; min-height: 163px; display: flex; flex-direction: column; }

  /* タイポ調整 */
  .shop-card-title { font-size: 30px; }
  .shop-card-info { font-size: 18px; }

  /* ボタン行：左に2つ、右に予約（3カラム） */
  .shop-card-buttons {
    grid-template-columns: 1fr 1fr 1.2fr;
    grid-template-rows: 1fr;
    gap: 15px;
    align-items: stretch;
  }
  .btn-line { grid-column: 1 / 2; }
  .btn-map { grid-column: 2 / 3; }
  .btn-reserve { grid-column: 3 / 4; width: 300px;}

  /* 予約ボタンのアイコンは白で表示 */
  .btn-reserve .btn-reserve-icon img { filter: brightness(0) invert(1); }
}

/* ===== プライバシーポリシー（page-privacy_policy.php） ===== */
.privacy-policy-section { background: var(--white); padding: 0 0 64px; }
.privacy-policy-section .privacy-policy-content { max-width: 800px; margin: 0 auto; padding: 0; box-sizing: border-box; color: var(--text-primary); }
.privacy-policy-section .pp-intro p { font-size: 14px; line-height: 1.4; margin: 0 0 32px; }
.privacy-policy-section .c-btn-wrap { margin: 50px auto 0;}

/* ===== 店舗シングル（single-shop.php） ===== */
.shop-single { background: var(--white); color: var(--text-primary); padding: var(--header-offset) 0 80px; }
.shop-single * { font-family: 'Noto Sans JP', 'Inter', sans-serif; box-sizing: border-box; }
.shop-single .c-btn-wrap {margin: 0;}
.shop-btn { display: inline-flex; align-items: center; justify-content: center; height: 47px; padding: 0 22px; border-radius: 999px; font-size: 16px; font-weight: 800; text-decoration: none; border: 2px solid var(--brand-primary); transition: 0.2s ease; }
.shop-btn-main { background: var(--brand-primary); color: var(--white); }
.shop-btn-main:hover { background: #0f225f; color: var(--white); }
.shop-btn-outline { background: var(--white); color: var(--brand-primary); }
.shop-btn-outline:hover { background: var(--brand-primary); color: var(--white); }

.shop-single-hero { background: var(--white); padding: 20px 0 12px; }
.shop-single-hero__inner { max-width: 1200px; margin: 0 auto; display: grid; gap: 12px; padding: 0 20px; }
.shop-single-breadcrumb { font-size: 12px; letter-spacing: 0.02em; color: #555; margin: 0; }
.shop-single-hero-media { display: flex; flex-direction: column; gap: 16px; }

/* Splide main slider wrapper with pagination */
.shop-single-hero-slider-wrapper {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
  width: 100%;
}

#shop-hero-thumbnails {
  margin: 0 auto;
}

.splide__list {
  justify-content: space-between;
}

.splide__track--nav>.splide__list>.splide__slide.is-active,
.splide__track--nav>.splide__list>.splide__slide {
  border: none !important;
}

.splide__pagination {
  position: static !important;

}
.splide__pagination__page.is-active {
  background: var(--brand-primary) !important;
  transform: scale(1) !important;
}
.splide__pagination__page {
  opacity: 1 !important;
  width: 5px !important;
  height: 5px !important;
}


#shop-hero-slider {
  width: 100%;
}

.shop-single-hero-slide {
  width: 100%;
  aspect-ratio: 563 / 258;
  background: #d8d8d8 center/cover no-repeat;
}

/* Custom pagination styles */
.shop-hero-pagination {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 5px;
}

.shop-hero-pagination li {
  margin: 0;
}

.shop-hero-pagination button {
  width: 7px;
  height: 5px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #d9d9d9;
  cursor: pointer;
  transition: background 0.3s ease;
}

.shop-hero-pagination button.is-active {
  background: var(--brand-primary);
}

/* Splide thumbnail slider styles */
.shop-single-hero-thumbs-slider {
  width: 100%;
}

.shop-single-hero-thumbs-slider .splide__slide {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.shop-single-hero-thumbs-slider .splide__slide.is-active {
  opacity: 1;
}

.shop-single-thumb {
  width: 100%;
  max-width: 300px;
  height: auto;
  aspect-ratio: 3 / 2;
  background: #d9d9d9 center/cover no-repeat;
}

.shop-single-hero-titlebox { text-align: center; display: grid; gap: 4px; padding: 0 10px 10px; }
.shop-single-title { font-size: 24px; font-weight: 800; margin: 0; color: var(--text-primary); }

/* ===== リードセクション ===== */
.shop-single-read-section {
  background: var(--white);
  padding: 40px 0;
}

.shop-single-read__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 0 20px;
  box-sizing: border-box;
}

.shop-single-read-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.shop-single-read-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-primary);
  margin: 0;
}

.shop-single-read-text {
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-primary);
  margin: 0;
}

.shop-single-read-text p {
  margin: 0 0 0.8em 0;
}

.shop-single-read-text p:last-child {
  margin-bottom: 0;
}


/* ===== メニュー・料金 ===== */
.shop-price-section {
  background: #eef1f9;
  padding: 40px 0 60px;
}

.shop-price__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 55px;
  padding: 0 20px;
  box-sizing: border-box;
}

.shop-price__heading {
  text-align: center;
  display: grid;
  gap: 8px;
}

.shop-price__title {
  font-size: 24px;
  font-weight: 900;
  color: var(--brand-primary);
  margin: 0;
}

.shop-price__sub {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.shop-price__cards {
  display: flex;
  flex-direction: column;
  gap: 55px;
}

.shop-price-card {
  background: var(--white);
  padding: 17px 20px;
  border-top: 5px solid var(--brand-primary);
  box-sizing: border-box;
}

.shop-price-card__main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.shop-price-card__heading {
  font-size: 20px;
  font-weight: 900;
  color: var(--brand-primary);
  margin: 0;
}

.shop-price-card__service {
  display: grid;
  gap: 2px;
}

.shop-price-card__label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-primary);
  margin: 0;
}

.shop-price-card__price {
  font-size: 0;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.4;
}

.shop-price-card__price-lg {
  font-size: 36px;
  font-weight: 700;
}

.shop-price-card__tax {
  font-size: 14px;
  line-height: 1.4;
}

.shop-price-card__note {
  font-size: 14px;
  color: var(--text-primary);
  margin: 0;
}

.shop-price-card__divider {
  height: 1px;
  background: var(--brand-primary);
  margin: .8em 0;
}

.shop-price-card__options {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.shop-price-card__opt-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-primary);
  margin: 0;
}

.shop-price-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.shop-price-card__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-primary);
  gap: 12px;
  line-height: 1.4;
}

.shop-price-card__list li span:last-child {
  white-space: nowrap;
}

@media (min-width: 768px) {
  .shop-price-card {
    padding: 30px;
  }

  .shop-single-read-title {
    font-size: 36px;
  }
  .shop-single-read-text {
    font-size: 16px;
  }
  .shop-price-card__heading {
    font-size: 24px;
  }
  .shop-price-card__list li,
  .shop-price-card__label {
    font-size: 18px;
  }
}

@media (min-width: 1000px) {
  .shop-single-read-title {
      font-size: 40px;
    }
    .shop-single-read-text {
      font-size: 18px;
    }
}
.shop-single-title-en { font-size: 16px; letter-spacing: 0.08em; text-transform: uppercase; margin: 0; color: var(--text-primary); }

.shop-single-lead { padding: 36px 20px 28px; }
.shop-single-lead__inner { max-width: 900px; margin: 0 auto; display: grid; gap: 16px; }
.shop-single-lead-title { margin: 0; font-size: 20px; font-weight: 700; line-height: 1.4; }
.shop-single-lead-text { font-size: 14px; line-height: 1.8; color: var(--text-primary); }
.shop-single-lead-btn { width: 100%; max-width: 310px; justify-self: center; border-color: var(--brand-primary); background-image: linear-gradient(102deg, #1a359c 6%, #142a7d 100%); color: var(--white); }

.shop-single-section { padding: 50px 20px ; }
.shop-single-section-heading { text-align: center; display: grid; gap: 4px; margin-bottom: 40px; }
.shop-single-section-title { margin: 0; font-size: 24px; font-weight: 900; color: var(--brand-primary); letter-spacing: 0; }
.shop-single-section-sub { margin: 0; font-size: 14px; color: var(--text-primary); font-weight: 900; }

.shop-single-info-table { width: 100%; max-width: 900px; margin: 0 auto; border-top: 1px solid transparent; border-bottom: 1px solid transparent; border-collapse: separate; border-spacing: 0; border-image-slice: 1; border-image: linear-gradient(90deg, var(--brand-primary) 20%, var(--dark-gray) 20% 100%) 1; }
.shop-single-info-table tbody tr:not(:last-child) td { border-bottom: 1px solid transparent; border-image-slice: 1; border-image: linear-gradient(90deg, var(--brand-primary) 20%, var(--dark-gray) 20% 100%) 1; }
.shop-single-info-table tbody tr:first-child { border-top: none; }
.shop-single-info-label { display: block; padding: 12px 0 8px; font-weight: 700; font-size: 14px; color: var(--text-primary); text-align: left; }
.shop-single-info-value { display: block; padding: 0 0 12px; font-size: 14px; line-height: 1.4; }

.shop-single-map-block { max-width: 900px; margin: 32px auto 0; background: #eef1f9; border: 1px solid #d8d8d8; }
.shop-single-map iframe { width: 100%; min-height: 300px; border: 0; display: block; }

.shop-single-steps { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.shop-single-step { display: flex; flex-direction: column; gap: 12px; }
.shop-single-step__img { width: 100%; aspect-ratio: 398 / 243; background: #e5e8ef center/cover no-repeat; }
.shop-single-step__text { margin: 0; font-size: 14px; line-height: 1.4; color: var(--text-primary); }
.shop-single-step__arrow { margin: 0 auto; border-left: 25px solid transparent; border-right: 25px solid transparent; border-top: 30px solid var(--brand-primary); }


/* アクセス方法 レスポンシブレイアウト */
@media (min-width: 768px) {
  .shop-single-steps {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
  }
  .shop-single-step {
    /* flex: 0 1 calc(23% - 12px); */
    /* min-width: 160px; */
    display: flex;
    min-width: 20%;
    width: 20%;
    flex-direction: column;
    gap: 8px;
  }
  .shop-single-step__img {
    aspect-ratio: 3 / 2;
    width: 100%;
  }
  .shop-single-step__text {
    font-size: 13px;
  }
  .shop-single-step__arrow {
    flex: 0 0 auto;
    margin: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid var(--brand-primary);
    border-right: 0;
    margin-top: min(8vw, 100px);
  }
  .shop-single-section-heading {
    margin-bottom: 100px;
  }
}
.shop-single-video { max-width: 900px; margin: 0 auto; box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.08); }
.shop-single-video iframe { width: 100%; height: auto; aspect-ratio: 16 / 9; min-height: 240px; border: 0; display: block; }

/* スタッフ紹介 レスポンシブレイアウト */
.shop-single-staffs {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  box-sizing: border-box;
}

.shop-single-staff {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas:
    "img info"
    "text text";
  column-gap: 14px;
  row-gap: 19px;
  /* align-self: start; */
  grid-template-rows: max-content 1fr;
}

.shop-single-staff__image-box {
  grid-area: img;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shop-single-staff__img {
  width: 100%;
}

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

.shop-single-staff__info {
  grid-area: info;
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
  width: 100%;
}

.shop-single-staff__role-bar {
  background: var(--brand-primary);
  color: var(--white);
  padding: 2px 13px;
  font-size: 14px;
  font-weight: 700;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}

.shop-single-staff__name {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: normal;
}

/* Text content section */
.shop-single-staff__text-box {
  grid-area: text;
  display: flex;
  flex-direction: column;
  gap: 13px;
  width: 100%;
}

.shop-single-staff__sub-title {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: normal;
}

.shop-single-staff__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--text-primary);
  line-height: normal;
}

@media (min-width: 768px) {
  .shop-single-staffs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 100px min(4vw, 90px);
    padding: 0;
  }

  .shop-single-staff {
    grid-template-areas:
      "img info"
      "img text";
    column-gap: 50px;
    row-gap: 19px;
  }

  .shop-single-staff__image-box {
    gap: 15px;
  }

  .shop-single-staff__img {
    max-width: 250px;
  }

  .shop-single-staff__role-bar {
    font-size: 18px;
    height: 32px;
    padding: 4px 13px;
  }

  .shop-single-staff__name {
    font-size: 18px;
    line-height: 1.3;
  }

  .shop-single-staff__sub-title {
    font-size: 20px;
    line-height: 1.4;
  }

  .shop-single-staff__text {
    font-size: 18px;
    line-height: 1.6;
  }

  .shop-single-info-label,
  .shop-single-info-value {
    font-size: 18px;
  }

  .shop-single-section-title {
    font-size: 40px;
  }

  .shop-single-section-sub {
    font-size: 20px;
  }
}

/* Staff section background decoration */
.shop-single-staff-section {
  position: relative;
  overflow: hidden;
}

.shop-single-staffs-container {
  position: relative;
  z-index: 1;
}

.shop-staff-bg-decoration {
  position: absolute;
  top: 100px;
  left: 0;
  height: 600vw;
  width: 100vw;
  background: #142A7D1A;
  z-index: 0;
  pointer-events: none;
  transform: rotate(20deg);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .shop-staff-bg-decoration {
    top: -100px;
    left: 0;
    height: 400vw;
    width: 80vw;
    transform: rotate(40deg);
  }
}

@media (min-width: 1200px) {
  .shop-staff-bg-decoration {
    top: -300px;
    height: 1000vw;
    width: 120vw;
    transform: rotate(50deg);
    left: 50%;
    translate: -50%;
  }
}

.shop-single-price-section { background: #eef1f9; padding: 50px 20px; }
.shop-single-price-card { max-width: 900px; margin: 0 auto; background: #fff; border-top: 5px solid var(--brand-primary); padding: 20px; }
.shop-single-price { font-size: 14px; line-height: 1.8; }
.shop-single-price table { width: 100%; border-collapse: collapse; }
.shop-single-price th, .shop-single-price td { border: 1px solid #e5e8ef; padding: 10px; text-align: left; }

.shop-single-notes { padding: 50px 20px 60px; }
.shop-single-note-card { max-width: 900px; margin: 0 auto; border: 1px solid var(--brand-primary); }
.shop-single-note-head { background: var(--brand-primary); color: var(--white); text-align: center; padding: 14px; font-size: 20px; font-weight: 800; }
.shop-single-note-list { list-style: none; margin: 0; padding: 20px; display: grid; gap: 16px; font-size: 14px; line-height: 1.7; }
.shop-single-note-list li { position: relative; padding-left: 28px; margin: 0; }
.shop-single-note-list li:before { content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border: 2px solid var(--brand-primary); border-top: 0; border-left: 0; transform: rotate(45deg); }
.shop-single-note-actions { margin: 24px auto 0; max-width: 900px; display: grid; gap: 18px; justify-items: center; }
.shop-single-note-actions .shop-btn { width: 100%; max-width: 310px; }

.shop-single-map-block {margin-bottom: 50px; }

@media (min-width: 768px) {
  .shop-single-hero__inner { padding: 0 32px; }
  .shop-single-title { font-size: 28px; }
  .shop-single-lead { padding: 50px 20px 40px; }
  .shop-single-step__img { aspect-ratio: 756 / 530; }
  .shop-single-staff { }
  .shop-single-staff__img img { width: 100%; height: auto; object-fit: cover; }
  .shop-single-map-block {margin-bottom: 80px; }
}

@media (min-width: 1100px) {
  .shop-single-map-block {margin-bottom: 100px; }
}
.privacy-policy-section .pp-item { display: flex; flex-direction: column; gap: 8px; margin: 0 0 24px; }
.privacy-policy-section .pp-heading-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.privacy-policy-section .pp-heading { font-size: 20px; font-weight: 700; letter-spacing: 0; margin: 0; width: 100%; text-align: left; padding-bottom: 8px; border-bottom: 1px solid transparent; border-image-slice: 1; border-image: linear-gradient(90deg, var(--brand-primary) 20%, var(--dark-gray) 20% 100%) 1; }
.privacy-policy-section p,
.privacy-policy-section li { font-size: 14px; line-height: 1.4; }
.privacy-policy-section ul { padding-left: 1.2em; margin: 0.6em 0; }
.privacy-policy-section .pp-meta { margin-top: 20px; font-size: 14px; color: #666; }

@media (min-width: 1200px) {
  .shop-single-hero__inner {
    padding: 0;
  }
  .shop-single-steps {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .privacy-policy-section .pp-intro p { font-size: 15px; }
  .privacy-policy-section .pp-heading { font-size: 22px; }
}

/* ===== フッター（footer.php） ===== */
.site-footer { background: var(--brand-primary); color: var(--white); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 49px 16px 30px; box-sizing: border-box; }

/* === Footer pages responsive layout overrides === */
/* 単一UL（.footer-pages-list）をブレークポイントで2→3→4列に */
.footer-pages-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 50px; }
.footer-pages-list li a { display: block; text-decoration: none; color: inherit; font-weight: 700; white-space: pre; }
.footer-pages-list li a:hover { text-decoration: underline; opacity: 0.9; }

@media (min-width: 500px) {
  .footer-pages-list { grid-template-columns: repeat(3, 1fr); }
  .footer-top { max-width: 800px; margin: 0 auto;}

}
@media (min-width: 1100px) {
  .footer-pages-list { grid-template-columns: repeat(4, 1fr); }
  .footer-top { max-width: unset; }
}

/* テキストは常に左寄せに統一 */
.footer-brand { justify-items: start; text-align: left; }
.footer-tagline { text-align: left; }

/* コピーライト上部の線を削除＆左寄せ */
.footer-bottom { border-top: none; padding-top: 0; }
.footer-bottom .footer-copy, .footer-bottom .footer-copyright { text-align: 
  left; }
.footer-top { display: flex; flex-direction: column; gap: 22px; align-items: start; gap: 50px; }
/* ベース: モバイルは縦積み */
.footer-nav { display: grid; gap: 18px; }
.footer-menu-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.footer-menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-menu a { color: inherit; text-decoration: none; font-weight: 700; }

/* ===== TOPページ (front-page.php) ===== */

/* メインビジュアル */
.top-main-visual {
  position: relative;
  width: 100%;
  min-height: 110vw;
  overflow: hidden;
}

.top-main-visual picture img {
  width: 100%;
}

.top-main-visual-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.top-main-visual-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  padding: 15.33vw 0 0 5.13vw;
}

.top-main-visual-text {
  max-width: 100%;
}

.top-main-visual-subtitle {
  font-size: 4.6vw;
  font-weight: 900;
  line-height: 1.5;
  color: var(--text-primary);
}

.top-main-visual-title,
.top-main-visual-title span {
  font-size: 9vw; /* 30px/390 */
  font-weight: 900 !important;
  line-height: 1.4;
  color: var(--text-primary);
  margin: 0;
  text-shadow: 0 3px 4px rgba(0, 0, 0, 0.25);
}

.top-main-visual-title .title-line1,
.top-main-visual-title .title-line2 {
  display: inline-block;
}

/* メダルエリア */
.top-main-visual-medals {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 3vw 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background: linear-gradient(96deg, rgba(219, 235, 248, 0.66) 0%, rgba(238, 241, 249, 0.66) 50.48%, rgba(255, 255, 255, 0.66) 100%);
  backdrop-filter: blur(1.9500000476837158px);
}

.top-medal-item {
  flex-shrink: 0;
}

.top-medal-img {
  width: 32.77vw; /* 120px/390 */
  height: auto;
  display: block;
}

/* 共通テキスト装飾 */
.text-primary {
  color: var(--brand-primary);
}

/* 共通ボタン */
.top-btn-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 50px;
}
.top-btn-outline,
.top-btn-fill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 46px;
  border-radius: 36px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.top-btn-outline {
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
  background: var(--white);
}
.top-btn-outline:hover {
  background: var(--brand-primary);
  color: var(--white);
}
.top-btn-fill {
  background: var(--brand-primary);
  color: var(--white);
  border: 2px solid var(--brand-primary);
}
.top-btn-fill:hover {
  background: var(--white);
  color: var(--brand-primary);
}

/* フルサービス比較セクション */
.top-compare-wrapper {
  background: #f6f6f6;
  padding: 46px 0 40px;
}

/* === 全額返金保証 === */
.top-guarantee-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}
.top-guarantee-inner {
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 39px;
  max-width: 800px;
}
.top-guarantee-logo img {
  width: 55.839px;
  height: auto;
  display: block;
}
.top-guarantee-content { width: 100%; display: grid; gap: 13px; }
.top-guarantee-lead {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
}
.top-guarantee-title {
  font-size: 50px;
  font-weight: 900;
  letter-spacing: 0.12em; /* 約6px相当 */
  line-height: 1.1;
  text-align: center;
  color: var(--text-primary);
  white-space: nowrap;
}
.top-guarantee-text {
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-primary);
  text-align: justify;
}
.top-guarantee-btn:hover { }

/* 背景の斜めグラデーション装飾 */
.top-guarantee-decoration {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1508.813px;
  height: min(30vw, 300px);
  transform: translate(-50%, -50%) rotate(315deg);
  background-image: linear-gradient(125.8deg, var(--brand-primary-light) 0%, var(--bg-overlay) 50%, var(--white) 100%);
  pointer-events: none;
  z-index: -1;
}

@media (min-width: 768px) {
  .top-guarantee-section { padding: 70px 0; }
  .top-guarantee-inner { max-width: 800px; gap: 42px; }
  .top-guarantee-title { font-size: clamp(52px, 6vw, 64px); letter-spacing: 0.08em; }
  .top-guarantee-text { font-size: 18px; }
    .top-guarantee-logo img { width: 100px; }
}

@media (min-width: 1200px) {
  .top-guarantee-inner { max-width: 1200px; }
  .top-guarantee-decoration { width: 2400px;  transform: translate(-50%, -50%) rotate(-24.335deg); }
}
.top-compare-inner {
  margin: 0 auto 20px;
  display: flex;
  flex-direction: column;
  gap: 21px !important;
  max-width: 1200px;
}
.top-compare-text-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 20px;
}
.top-compare-heading,
.top-compare-heading span {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.3;
  margin: 0;
  white-space: nowrap;
}
.top-compare-description {
  font-size: 14px;
  line-height: 1.4;
  text-align: justify;
}
.top-compare-description p:last-child {
  margin-bottom: 0;
}

/* 比較表のスタイル */
.top-compare-table {
  display: flex;
  gap: 0;
  background: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: 0 auto;
}

.compare-column {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* 左カラム：一般的な眉毛サロン */
.compare-column--other {
  min-width: 213px;
  padding: 26px 25px;
}

/* 中央カラム：項目ラベル */
.compare-column--labels {
  min-width: 157px;
}

/* 右カラム：マユクリア */
.compare-column--mayuclear {
  flex: 2;
  min-width: 337px;
  padding: 67px 33px 26px;
}

/* ロゴエリア */
.compare-logo {
  padding-bottom: 26px;
  text-align: center;
}

.compare-logo--spacer {
  height: 89px;
  padding: 0;
}

.compare-logo-img {
  height: 89px;
  width: auto;
  display: block;
  margin: 0 auto;
}

/* 項目コンテナ */
.compare-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 各項目 */
.compare-item {
  border-bottom: 2px solid #d8d8d8;
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
  gap: 10px;
}

.compare-column--mayuclear .compare-item:nth-child(2) {
  height: 116px;
}

.compare-column--mayuclear .compare-item:nth-child(3) {
  height: 114px;
}

.compare-column--mayuclear .compare-item:nth-child(4) {
  height: 116px;
}

/* ラベル項目 */
.compare-label {
  background: var(--brand-primary);
  color: white;
  font-weight: bold;
  border: none;
  height: 40px;
  padding: 9px;
  margin-bottom: 75px;
}

.compare-label:nth-child(1) {
  font-size: 16px;
}

.compare-label:nth-child(2) {
  font-size: 20px;
  font-weight: 500;
}

.compare-label:nth-child(3) {
  font-size: 15px;
}

.compare-label:nth-child(4),
.compare-label:nth-child(5) {
  font-size: 20px;
  font-weight: 500;
}

/* アイコン */
.compare-icon {
  flex-shrink: 0;
}

/* 左カラムのアイコン */
.compare-icon--circle {
  /* width: 40px;
  height: 40px;
  border: 3px solid var(--brand-primary);
  border-radius: 50%; */
}

.compare-icon--cross {
  width: 40px;
  height: 40px;
  position: relative;
}

.compare-icon--cross::before,
.compare-icon--cross::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 3px;
  background: var(--brand-primary);
}

.compare-icon--cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.compare-icon--cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* 説明テキスト */
.compare-desc {
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-primary);
  text-align: justify;
  margin: 0;
  /* width: 300px; */
  /* display: none; */
}

/* タブレット対応 */
@media (min-width: 768px) {
  .top-compare-table {
    max-width: 900px;
  }
}

/* PC対応 */
@media (min-width: 1000px) {
  .top-compare-inner {
    flex-direction: row;
    gap: 60px !important;
    align-items: flex-start;
    max-width: 1200px;
    padding: 0 20px;
  }
  
  .top-compare-text-box {
    flex: .8;
    padding: 0;
    padding-top: 100px;
  }
  
  .top-compare-img-box {
    flex: 1;
  }
  
  .top-compare-heading,
  .top-compare-heading span {
    font-size: 40px;
  }
  
  .top-compare-description {
    font-size: 19px;
  }
}
.top-compare-img-box {
  /* width: 100%; */
  height: auto;
}
.top-compare-img-box img {
  width: 100%;
  height: auto;
}

/* キャンペーンセクション */
.top-campaign-section {
  background: #eef1f9;
  padding: 30px 19px;
}
.top-campaign-inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.top-campaign-banner {
  width: 100%;
  height: auto;
}
.top-campaign-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.top-campaign-heading-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.top-campaign-heading {
  background: var(--white);
  border-top: 5px solid var(--brand-primary);
  padding: 15px 0;
  text-align: center;
  width: 100%;
}
.top-campaign-heading h2 {
  font-size: 32px;
  font-weight: 900;
  color: var(--brand-primary);
  line-height: 1.2;
  margin: 0;
}
.top-campaign-subtext {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.top-campaign-price-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 500px;
  margin: auto;
  width: 100%;
}
.top-campaign-box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.top-campaign-img {
  width: 100%;
  height: min(29.6vw, 150px);
  overflow: hidden;
  position: relative;
}
.top-campaign-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-campaign-label {
  position: absolute;
  top: min(27vw, 138px);
  left: 0;
  background: #ef9753;
  color: var(--white);
  font-size: min(2.9vw, 15px);
  font-weight: 700;
  padding: .3em .7em;
}
.top-campaign-content {
  background: var(--brand-primary);
  padding: 15px 9px 10px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.top-campaign-title {
  font-size: min(4.27vw, 24px);
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
}
.top-campaign-title span.mid {
  font-size: min(3.5vw, 20px);
}

.top-campaign-title span.small {
  font-size: min(3.5vw, 17px);
}
.top-campaign-price {
  color: #fbf824;
  font-weight: 700;
  margin: 0;
}
.top-campaign-price .price-num {
  font-size: 32px;
}
.top-campaign-price .price-unit {
  font-size: 16px;
}

/* コンセプトセクション */
.top-concept-decoration {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: #eef1f9;
}
.top-concept-decoration img {
  width: 100%;
  height: auto;
  display: block;
}
.top-concept-section {
  padding: 50px 20px;
}
.top-concept-inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 27px;
  margin-bottom: 50px;
}
.top-concept-main-box {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  gap: 27px;
}
.top-concept-heading {
  grid-column: 1;
  grid-row: 1;
}
.top-concept-heading h2 {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4;
  margin: 0;
}
.top-concept-heading h2 span {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.4;
}
.top-concept-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  grid-column: 1;
  grid-row: 2;
}
.top-concept-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.top-concept-text {
  font-size: 14px;
  line-height: 1.4;
  text-align: justify;
  grid-column: 1;
  grid-row: 3;
}
.top-concept-text p:last-child {
  margin-bottom: 0;
}

/* エビデンスセクション */
.top-evidence-section {
  padding: 50px 20px 40px;
  background: linear-gradient(96deg, #DBEBF8 0%, #EEF1F9 50.48%, var(--white) 100%);
}
.top-evidence-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.top-evidence-header {
  text-align: center;
  margin-bottom: 50px;
}
.top-evidence-logo {
  margin-bottom: 1em;
}
.top-evidence-logo img {
  width: 65px;
  height: auto;
}
.top-evidence-title {
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
  color: var(--text-primary);
  font-size: 32px;
}
.top-evidence-title * {
  font-size: 32px;
  font-weight: 900;
}
.top-evidence-title p span {
  font-size: 20px;
}
.top-evidence-title .text-primary {
  color: var(--brand-primary);
}
.top-evidence-list {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  margin-bottom: 30px;
  max-width: 450px;
  margin: 0 auto;
  gap: 45px;
}
.top-evidence-item {
  position: relative;
  text-align: center;
}

.top-evidence-card {
  margin: 0 auto 25px;
  padding-top: 20px;
  width: 80%;
}

.top-evidence-card img {
  width: 100%;
}

.top-evidence-text {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  text-align: left;
  margin: 0;
  margin-top: 15px;
}
.top-evidence-date {
  font-size: 11px;
  color: #666;
  text-align: right;
  margin: 0;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .top-evidence-section {
    padding: 80px 40px 50px;
  }
  .top-evidence-logo img {
    width: 140px;
  }
  .top-evidence-title {
    font-size: 40px;
  }
  .top-evidence-title p span {
    font-size: 32px;
  }
  .top-evidence-title * {
    font-size: 40px;
  }
  .top-evidence-list {
    gap: 40px;
    flex-wrap: wrap;
    flex-direction: row;
    max-width: 1200px;
    justify-content: space-around;
  }
  .top-evidence-item {
    width: 45%;
    /* padding: 60px 30px 35px; */
  }

  .top-evidence-text {
    font-size: 16px;
    margin-top: 18px;
  }
  .top-evidence-date {
    font-size: 12px;
  }
  .top-evidence-title > br {
    display: none;
  }
  .top-compare-description {
    font-size: 18px;
  }
  .top-campaign-content {
    padding: 30px 15px 20px;
  }
}

@media (min-width: 1000px) {
  .top-evidence-item {
    width: 30%;
  }
  .top-evidence-list {
    justify-content: space-between;
  }
  .top-evidence-text {
    font-size: 18px;
  }
}
/* About セクション */
.top-about-section { padding: 50px 20px; background: var(--white); }
.top-about-inner { margin: 0 auto; }
.top-about-main { display: grid; gap: 20px; margin-bottom: 20px;}
.top-about-img { width: 100%; }
.top-about-img img { width: 100%; height: auto; object-fit: cover; aspect-ratio: 3840/2160; border-radius: 0; display: block; }
.top-about-heading-box { display: grid; gap: 14px; align-items: start; margin-bottom: 20px; }
.top-about-logo { width: 65px; height: 58px; }
.top-about-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.top-about-heading { display: grid; gap: 12px; }
.top-about-eyebrow { font-size: 20px; font-weight: 900; margin: 0; color: var(--text-primary); }
.top-about-title { font-size: 32px; font-weight: 900; margin: 0; color: var(--brand-primary); line-height: 1.2; }
.top-about-title span { font-weight: 900; }
.top-about-text { font-size: 14px; line-height: 1.4; text-align: justify; display: grid; gap: 8px; }
.top-about-text p { margin: 0; }

@media (min-width: 768px) {
  .top-about-inner { max-width: 1200px; }
  .top-about-main { grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; margin-bottom: 80px; }
  .top-about-img { order: 2; align-self: flex-end;}
  .top-about-text-box { order: 1; }
}

@media (min-width: 1000px) {
  .top-about-text {font-size: 18px;}
  .top-about-eyebrow{ font-size: 32px;}
}

/* お悩みセクション */
.top-issues-section { 
  background: var(--brand-primary-dark); 
  padding: 50px 20px 184px; 
  position: relative; 
  overflow: hidden;
}
.top-issues-inner { 
  margin: 0 auto; 
  max-width: 500px; 
}
.top-issues-content { 
  display: grid; 
  gap: 35px;
}
.top-issues-header { 
  display: grid; 
  gap: .3em;
}
.top-issues-label-box { 
  display: grid; 
  gap: .5em;
}
.top-issues-label { 
  font-size: 14px; 
  font-weight: 900; 
  color: var(--white); 
  margin: 0;
  text-transform: lowercase;
}
.top-issues-sublabel { 
  font-size: 14px; 
  font-weight: 900; 
  color: var(--white); 
  margin: 0;
}
.top-issues-heading { 
  font-size: 20px; 
  font-weight: 900; 
  color: var(--white); 
  margin: 0; 
  line-height: 1.2;
}
.top-issues-heading * {
  font-weight: 900;
}
.top-issues-heading .text-small { 
  font-size: 20px;
}
.top-issues-heading .text-large { 
  font-size: 32px;
}
.top-issues-divider { 
  width: 100%; 
  max-width: 100%; 
  height: 1px; 
  background: var(--accent-secondary);
  margin-top: 1em;
}
.top-issues-list { 
  list-style: none; 
  margin: 0; 
  padding: 0; 
  display: grid; 
  gap: 35px;
}
.top-issues-item { 
  display: flex; 
  gap: 10px; 
  align-items: center;
}
.top-issues-check { 
  width: 27px; 
  height: 27px; 
  flex-shrink: 0;
}
.top-issues-text { 
  font-size: 20px; 
  font-weight: 900; 
  color: var(--white); 
  margin: 0; 
  line-height: 1.4;
  white-space: nowrap;
}
.top-issues-text .text-accent { 
  color: var(--accent-secondary);
  font-weight: 900;
}
.top-issues-img { 
  position: absolute; 
  bottom: 0; 
  right: 20px; 
  width: min(32vw, 246px);
  min-width: 125px;
  height: auto;
}
.top-issues-img img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block;
}
.top-issues-wave { 
  position: absolute; 
  bottom: 0; 
  left: 50%; 
  transform: translateX(-50%); 
  width: 100%; 
  max-width: 100%; 
  height: auto;
}
.top-issues-wave img { 
  width: 100%; 
  height: 100%; 
  display: block;
  aspect-ratio: 390/27;
}

@media (min-width: 768px) {
  .top-issues-section { padding: 80px 40px 200px; }
  .top-issues-content { gap: 45px; }
  .top-issues-list { gap: 40px; }
  .top-issues-img { 
    right: 40px; 
    width: min(36vw, 400px); 
    height: auto;
  }

  .top-issues-inner {
    max-width: 1000px;
  }
  .top-issues-label { 
    font-size: 20px; 
  }
  .top-issues-sublabel { 
    font-size: 20px; 
  }
  .top-issues-heading * {
    font-weight: 900;
  }
  .top-issues-heading .text-small { 
    font-size: 32px;
  }
  .top-issues-heading .text-large { 
    font-size: 40px;
  }
  .top-issues-text {
    font-size: min(max(1.9vw, 20px), 32px);
  }
  .top-issues-wave img {
    aspect-ratio: 1720/87;
  }

}

@media (min-width: 1000px) {
  .top-issues-section { padding: 100px 60px 220px; }
  .top-about-title {font-size: 40px;}
  .top-about-logo { width: 100px; height: auto; }
  .top-issues-img {
    left: 50%;
    transform: translateX(20%);

  }
}

/* 解決セクション */
.top-solution-section { background: var(--bg-overlay); padding: 40px 20px; }
.top-solution-inner { max-width: 800px; margin: 0 auto; display: grid; gap: 24px; }
.top-solution-logo { width: 94px; }
.top-solution-logo img { width: 100%; height: auto; display: block; }
.top-solution-heading { display: grid; gap: 8px; }
.top-solution-lead { margin: 0; font-size: 32px; font-weight: 900; color: var(--text-primary); display: flex; align-items: center; gap: 12px; }
.top-solution-line { display: inline-block; height: 2px; width: 72px; background: var(--text-primary); flex: none; }
.top-solution-title { margin: 0; font-size: 32px; font-weight: 900; color: var(--text-primary); line-height: 1.25; }
.top-solution-text { font-size: 14px; line-height: 1.4; color: var(--text-primary); display: grid; gap: 8px; max-width: 761px; }

@media (min-width: 768px) {
  /* PCレイアウト: ロゴ左 / 見出し右 の2カラム */
  .top-solution-section { padding: min(calc(100vw * 67 / 1720), 67px) 20px; }
  .top-solution-inner { grid-template-columns: auto 1fr; align-items: center; gap: min(calc(100vw * 34 / 1720), 34px); }
  .top-solution-logo { width: min(12vw, 163px) }
  .top-solution-lead { font-size: min(4.15vw, 40px); }
  .top-solution-line { width: 2em; }
  .top-solution-title { font-size: min(4.15vw, 40px); }
  .top-solution-text { font-size: 18px; grid-column: 1 / -1; }
  .top-solution-title br { display: none; }
}

/* 選ばれる理由セクション */
.top-feature-section {
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  gap: 52px;
  max-width: 1200px;
  margin: 0 auto;
}
.top-feature-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.top-feature-rating {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  position: relative;
}
/* SEO向けテキスト（検索エンジン・スクリーンリーダー用） */
.top-feature-rating-text {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.top-feature-rating p {
  font-size: 48px;
  font-weight: 900;
  margin: 0;
  text-align: center;
}
.top-feature-rating .rating-num {
  font-size: 79px;
  color: var(--accent-subtle);;
}
.top-feature-heading h2 {
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  margin: 0;
}
.top-feature-subheading {
  font-size: 14px;
  font-weight: 900;
  color: var(--brand-primary);
  text-align: center;
  margin: .5em 0 0;
}
.top-feature-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.top-feature-item {
  position: relative;
}
.top-feature-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--brand-primary);
  margin-bottom: 17px;
}
.top-feature-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: 31px;
}
.top-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-feature-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.top-feature-title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.3;
  margin: 0;
  white-space: nowrap;
  text-align: center;
}
.top-feature-title * {
  font-weight: 900;
}
.top-feature-title span.text-large {
  font-size: 32px;
  font-weight: 900;
}
.top-feature-text {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  text-shadow: 0 0 12px var(--brand-primary-light);
}

/* 選ばれる理由: 数字SVGの配置とサイズ（vw使用） */
.top-feature-item .top-feature-num { margin: 0; z-index: 1; pointer-events: none; width: 13vw; max-width: 75px;}
.top-feature-item .top-feature-num img { width: 100%; height: auto; display: block; }
/* 2つ目のみ右寄せ、他は左寄せ */
.top-feature-list .top-feature-item:nth-child(2) .top-feature-num { margin-left: auto; }
.top-feature-list .top-feature-item:not(:nth-child(2)) .top-feature-num { margin-right: auto; }

/* 選ばれる理由 背景装飾（モバイル基準） */
.top-feature-item::before {
  content: "";
  position: absolute;
  left: -50%;
  top: 0;
  transform: translate(0, -42%) rotate(145.179deg);
  width: 126vw;
  height: auto;
  aspect-ratio: 491.715 / 511.596;
  background: url('../img/reson-angle.svg') no-repeat center / contain;
  z-index: -1;
  pointer-events: none;
}
.top-feature-item:nth-child(even)::before {
  transform: translate(0, -42%) rotate(37deg) scaleY(-1);
  right: -50%;
  left: auto;
}

/* 選ばれる理由セクション: PCレイアウト＆背景装飾 */
@media (min-width: 768px) {
  .top-feature-section { padding: 80px 40px; }
  .top-feature-header { gap: 10px; }
  .top-feature-rating p { font-size: min(calc(100vw * 48 / 1720), 48px); }
  .top-feature-rating .rating-num { font-size: min(calc(100vw * 79 / 1720), 79px); }
  .top-feature-heading h2 { font-size: min(max(28px, 2.325vw), 40px); }
  .top-feature-subheading { font-size: min(max(14px, 1.2vw), 20px); }

  .top-feature-list { max-width: 1200px; margin: 0 auto; gap: min(8.6vw, 100px); }

  /* 背景装飾（PCサイズ） */
  .top-feature-item::before {
    width: 1000px;
    height: auto;
    background: url('../img/reson-angle.svg') no-repeat center / contain;
    transform: translate(-117%, -50%) rotate(145.179deg);
    left: 50%;
  }
  .top-feature-item:nth-child(even)::before {
    transform: translate(17%, -46%) rotate(37deg) scaleY(-1);
    left: 50%;
  }

  /* 768px以上: 画像と内容を横並びに */
  .top-feature-item { display: flex; align-items: center; gap: min(4vw, 50px); }
  .top-feature-item:nth-child(even) { flex-direction: row-reverse; }
  .top-feature-item .top-feature-img { max-width: 500px; flex-shrink: 0; margin-bottom: 0; }
  .top-feature-item .top-feature-content { width: 50%; flex: 1 1 auto; min-width: 0; margin-top: 20px;}
  /* 偶数行の本文だけ右寄せ（画像位置は固定） */
  .top-feature-item:nth-child(even) .top-feature-content { text-align: right; }

  .top-feature-item { padding: 10px; }
  .top-feature-item:nth-child(even) .top-feature-img { justify-self: flex-end; }
  .top-feature-num { font-size: min(calc(100vw * 40 / 1720), 40px); }
  .top-feature-img { height: auto; }
  .top-feature-content { gap: 16px; }
  .top-feature-title { font-size: min(max(24px, 2.6vw), 32px); }
  .top-feature-title span.text-large { font-size: min(max(32px, 3.1vw), 40px); }

  /* 偶数行を右寄せ*/
  .top-feature-item:nth-child(even) { text-align: right; }
  .top-feature-img-box { width: 45%; }
}

@media (min-width: 1000px) {
  .top-feature-text {
    font-size: 18px;
  }
}

/* @media (min-width: 1200px) {
  .top-feature-item::before {
    transform: translate(37%, -46%) rotate(145.179deg);
    width: 800px;
    height: auto;
  }

  .top-feature-item:nth-child(even)::before {
    transform: translate(-37%, -46%) rotate(37deg) scaleY(-1);
  }
} */

/* 人気メニューセクション */
.top-menu-section {
  padding: 50px 20px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.top-menu-decoration {
  /* 背景装飾: 回転矩形 #eef1f9 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(19.514deg);
  width: 243.929px;
  height: 2826.321px;
  background: #eef1f9;
  z-index: -10;
  pointer-events: none;
}
.top-menu-inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.top-menu-header {
  text-align: center;
}
.top-menu-header h2 {
  font-size: 32px;
  font-weight: 900;
  margin: 0;
}
.top-menu-subheading {
  font-size: 14px;
  font-weight: 900;
  color: var(--brand-primary);
  margin: 5px 0 0;
}
.top-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 auto;
  max-width: 1200px;
}
.top-menu-item {
  padding: 30px 0;
}
.top-menu-item:last-child {
  border-bottom: none;
}
.top-menu-img {
  width: 100%;
  height: auto;
  margin-bottom: 31px;
  overflow: hidden;
}
.top-menu-img img {
  width: 100%;
  height: auto;
  display: block;
}
.top-menu-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.top-menu-label-box {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.top-menu-label-text {
  font-size: 20px;
  font-weight: 900;
  color: var(--accent-subtle);;
}
.top-menu-label {
  background: var(--accent-subtle);;
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  padding: 2px 7px;
  height: 29px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.top-menu-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.4;
  margin: 0;
  color: var(--text-primary);
}
.top-menu-text {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  color: var(--text-primary);
  text-align: justify;
}

@media (min-width: 768px) {
  .top-menu-section {
    padding: 80px 40px;
  }
  .top-menu-section .c-btn-wrap {
    margin: 45px 0 0;
    justify-content: flex-start;
  }
  .top-menu-decoration {
    width: 452.073px;
    height: 5636.69px;
    transform: translate(-50%, -50%) rotate(-110.695deg) scaleY(-1);
  }
  .top-menu-inner {
    max-width: 1200px;
    gap: 41px;
  }
  .top-menu-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .top-menu-item {
    padding: 60px 0;
    border-bottom: none;
    display: flex;
    gap: clamp(24px, 3vw, 50px);
    align-items: flex-start;
  }
  .top-menu-item-reverse {
    flex-direction: row-reverse;
  }
  .top-menu-img {
    width: 42%;
    max-width: 500px;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .top-menu-content {
    flex: 1;
    min-width: 0;
    gap: 0;
    position: relative;
  }
  .top-menu-label-box {
    gap: 8px;
    margin-bottom: 14px;
  }
  .top-menu-label {
    background: var(--accent-subtle);
    font-size: min(max(20px, 1.7vw), 20px);
  }
  .top-menu-label-text {
    font-size: min(max(20px, 1.7vw), 20px);
    color: var(--accent-subtle);
  }
  .top-menu-header h2 {
    font-size: min(max(2.35vw, 32px), 40px);
  }
  .top-menu-subheading {
    font-size: min(max(1.4vw, 14px), 24px);
  }
  .top-menu-title {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: clamp(10px, 2.2vw, 30px);
  }
  .top-menu-title br {
    display: none;
  }
  .top-menu-text {
    font-size: 16px;
  }
  .top-menu-item .top-btn-box {
    justify-content: left;
    margin-top: 45px;
  }
}

@media (min-width: 1200px) {
  .top-menu-title {
    font-size: 32px;
  }
  .top-menu-text {
    font-size: 18px;
  }
}

/* 施術の流れセクション */
.top-flow-section {
  background: var(--white);
  padding: 50px 20px;
}
.top-flow-inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 500px;
}
.top-flow-header {
  text-align: center;
}
.top-flow-subtitle {
  font-size: 14px;
  font-weight: 900;
  margin: 0;
}
.top-flow-header h2 {
  font-size: 24px;
  font-weight: 900;
  margin: 5px 0;
}
.top-flow-subheading {
  font-size: 14px;
  font-weight: 900;
  color: var(--brand-primary);
  margin: 0;
}
.top-flow-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.top-flow-step {
  position: relative;
}
/* 最後のステップ以外に下向き三角形を追加 */
.top-flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 30px 0 30px;
  border-color: var(--brand-primary) transparent transparent transparent;
}
.top-flow-step-num {
  font-size: 24px;
  font-weight: 900;
  color: var(--brand-primary);
  margin: 0 0 5px;
}
.top-flow-step-box {
  background: #eef1f9;
  border-top: 10px solid var(--brand-primary);
  padding: 20px 15px;
}
.top-flow-step-box h3 {
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 10px;
}
.top-flow-step-box p {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}
/* 1000px以上: 施術の流れを横並びに */
@media (min-width: 1000px) {
  .top-flow-section {
    padding: 80px 40px;
  }
  .top-flow-inner {
    max-width: 1200px;
  }
  .top-flow-list {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
  }
  .top-flow-step {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  /* 三角形を右向きに変更（最後以外） */
  .top-flow-step:not(:last-child)::after {
    bottom: auto;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-width: 15px 0 15px 20px;
    border-color: transparent transparent transparent var(--brand-primary);
  }
  .top-flow-step-num {
    font-size: min(max(1.4vw, 20px), 24px);
    margin-bottom: 10px;
  }
  .top-flow-step-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px 15px;
  }
  .top-flow-step-box h3 {
    font-size: min(max(1.2vw, 18px), 20px);
    margin-bottom: 15px;
  }
  .top-flow-step-box p {
    font-size: min(max(0.85vw, 13px), 14px);
    line-height: 1.4;
  }
  .top-flow-subtitle {
    font-size: min(max(1.4vw, 14px), 24px);
  }
  .top-flow-header h2 {
    font-size: min(max(2.35vw, 32px), 40px);
  }
  .top-flow-subheading {
    font-size: min(max(1.4vw, 14px), 24px);
  }
}

/* Newsセクション */
.top-news-section {
  padding: 50px 20px;
}
.top-news-inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 27px;
}
.top-news-heading {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.top-news-heading h2 {
  font-size: 24px;
  font-weight: 900;
  margin: 0;
}
.top-news-subheading {
  font-size: 14px;
  font-weight: 900;
  color: var(--brand-primary);
  margin: 0;
}
.top-news-list {
  display: flex;
  flex-direction: column;
}
.top-news-item {
  padding: 20px 0;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, var(--brand-primary) 20%, var(--dark-gray) 20% 100%) 1;
}
.top-news-item:last-child {
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, var(--brand-primary) 20%, var(--dark-gray) 20% 100%) 1;
}
.top-news-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 7px;
}
.top-news-label {
  background: var(--brand-primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  padding: .2em .9em;
  border-radius: 32px;
}
.top-news-date {
  font-size: 14px;
  font-weight: 900;
}
.top-news-title {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

/* レスポンシブ対応 */
@media (min-width: 768px) {
  .top-main-visual {
    min-height: 47.3vw;
  }
  
  .top-main-visual-content {
    padding: 0;
    width: min(70vw, 1800px);
    margin: 7.5vw auto 0;
    display: block;
    position: relative;
  }
  
  .top-main-visual-subtitle {
    font-size: clamp(20px, 2.5vw, 24px)
  }

  .top-main-visual-title,
  .top-main-visual-title span {
    font-size: 5.6vw;
  }
  
  .top-main-visual-medals {
    gap: 0;
    background: initial;
    backdrop-filter: none;
    width: min(70vw, 1800px);
    padding: 0;
    position: relative;
    transform: translate(0, 0);
    left: auto;
    bottom: auto;
    justify-content: left;
    margin: 0 auto
  }

  .top-concept-main-box {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: min(30px, 5vw);
    align-items: start;
  }

  .top-concept-heading {
    grid-column: 1;
    grid-row: 1;
  }

  .top-concept-img {
    grid-column: 2;
    grid-row: 1 / 3;
    margin: 0;
    align-self: start;
  }

  .top-concept-text {
    grid-column: 1;
    grid-row: 2;
  }
  
  .top-medal-img {
    width: 12vw;
  }
  
  .top-campaign-inner,
  .top-concept-inner,
  /* .top-menu-list, */
  /* .top-flow-inner, */
  .top-news-inner {
    max-width: 1000px;
    gap: 70px;
  }
  .top-campaign-price-lists {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
  }
  .top-feature-item:nth-child(even) {
    text-align: right;
  }

  .top-campaign-banner {
    display: none;
  }

  .floating-campaign-banner {
    display: block;
  }
  .top-campaign-heading {
    width: auto;
    padding: 15px 40px;
  }

  .top-campaign-heading h2 {
    font-size: 40px;
  }

  .top-campaign-heading h2 br {
    display: none;
  }

  .top-campaign-subtext {
    font-size: 20px;
  }

  .top-campaign-title {
    font-size: min(2.05vw, 24px);
    font-weight: 700;
  }
  .top-campaign-title span.mid {
    font-weight: 700;
    font-size: min(1.8vw, 16px);
  }

  .top-campaign-title span.small {
    font-size: min(1.6vw, 14px);
    font-weight: 700;
  }

  .top-campaign-label {
    top: min(13.7vw, 172px);
    font-size: min(1.6vw, 15px);
  }
  .top-campaign-img {
    height: min(15vw, 185px);
  }
  .top-news-title {
    font-size: 18px;
  }
  .top-news-date {
    font-size: 18px;
  }
  .top-news-heading h2 {
    font-size: min(max(2.35vw, 32px), 40px);
  }
  .top-news-subheading {
    font-size: min(max(1.4vw, 14px), 24px);
  }
  .top-news-heading {
    text-align: center;
  }
  .top-news-section {
    padding: 80px 40px;
  }
}

@media (min-width: 1200px) {
  
  .top-main-visual-title {
    font-size: 56px;
  }

  .top-main-visual-subtitle br {
    display: none;
  }

  .top-compare-inner {
    justify-content: space-between;   
    flex-direction: row;  
  }

  .top-concept-main-box {
    flex-direction: row;
    gap: min(30px, 5vw);
    align-items: center;
  }

  .top-concept-left {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .top-concept-text {
    font-size: 18px;
  }
  .top-news-section {
    padding: 100px 40px;
  }
}
.footer-menu a:hover { text-decoration: underline; opacity: 0.9; }

/* ユーティリティメニュー（採用/会社/プライバシー） */
.footer-utility .footer-menu { display: flex; flex-direction: column; flex-wrap: wrap; gap: 10px 16px; }

/* SNSリンク */
.footer-sns { margin-top: 4px; }
.footer-sns-list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 12px; }
.footer-sns-link { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; transition: opacity 0.2s ease; }
.footer-sns-link:hover { opacity: 0.85; }
.footer-sns-icon { display: inline-flex; width: 30px; height: 30px; }
.footer-sns-icon img { width: 100%; height: auto; display: block; }

/* ブランド領域 */
.footer-brand { display: grid; gap: 10px; }
.footer-logo-img { width: 70px; height: auto; display: block; }
.footer-tagline { margin: 4px 0 0; font-size: 12px; opacity: 0.9; white-space: pre; }

.footer-bottom, .footer-bottom a { color: rgba(255,255,255,0.9); }
.footer-bottom .footer-copyright { font-size: 12px; }

/* デスクトップ: 2カラムで footer-nav と footer-brand を横並びに */
@media (min-width: 768px) {
  .footer-inner { padding: 56px 20px 34px; }
  .footer-top { flex-direction: row-reverse; justify-content: space-between; grid-template-columns: 1fr 300px; column-gap: 32px; }

  .footer-menu-grid { grid-template-columns: repeat(2, minmax(160px, 1fr)); gap: 12px 32px; }
  .footer-menu { gap: 12px; }

  .footer-utility .footer-menu { flex-direction: row; gap: 8px 20px; }

  .footer-logo-img { width: 120px; }
  .footer-tagline { font-size: 13px; }
}
.footer-nav { display: grid; gap: 44px; }
.footer-menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.footer-menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 24px; }
.footer-menu a { color: var(--white); text-decoration: none; font-weight: 700; font-size: 16px; }
.footer-menu a:hover { text-decoration: underline; }
.footer-sns-list { list-style: none; display: inline-flex; gap: 20px; align-items: center; margin: 0; padding: 0; }
.footer-sns-link { display: inline-flex; width: 30px; height: 34px; align-items: center; justify-content: center; }
.footer-sns-icon img { width: 100%; height: auto; display: block; }
.footer-utility .footer-menu { grid-auto-flow: row; gap: 15px; font-weight: 700; }

.footer-brand { display: grid; gap: 7px; }
.footer-logo { line-height: 0; }
.footer-tagline { font-size: 16px; color: var(--white); margin: 0; }

.footer-bottom { margin-top: 22px; }

.footer-copyright { color: var(--dark-gray); font-size: 12px; }

/* ===== お問い合わせ（page-contact.php） ===== */
/* ご予約導線セクション */
.contact-reservation-cta {
  background: var(--white);
  padding: 48px 20px;
  box-sizing: border-box;
}
.contact-reservation-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}
.contact-reservation-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.contact-reservation-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--brand-primary);
  margin: 0;
  letter-spacing: 0.02em;
}
.contact-reservation-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0;
}
.contact-reservation-text {
  font-size: 14px;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.4;
  max-width: 400px;
}
.contact-reservation-text p {
  margin: 0;
  display: inline;
}

.contact-section { background: var(--white); padding: 0 0 64px; }
.contact-content { max-width: 800px; margin: 0 auto; padding: 0 20px; box-sizing: border-box; color: var(--text-primary); }
.contact-head { text-align: center; padding: 18px 0 8px; }
.contact-head-title { font-size: 22px; font-weight: 800; color: var(--brand-primary); letter-spacing: 0.02em; margin: 0; }
.contact-head-sub { font-size: 12px; color: var(--text-primary); opacity: .9; margin: 6px 0 0; }
.contact-form { margin-top: 24px; }
.contact-form-grid { display: grid; gap: 25px; }
.contact-form-row { display: grid; gap: 8px; }
.contact-form-row-full { grid-column: 1 / -1; }
.contact-label { font-size: 14px; font-weight: 700; color: var(--brand-primary); }
.contact-label .req { color: #d60000; font-size: 12px; font-weight: 800; margin-left: 6px; }
.contact-label .opt { color: var(--dark-gray); font-size: 12px; font-weight: 700; margin-left: 6px; }

.contact-input,
.wpcf7 {
  background: var(--white);
  border: none;
}
.wpcf7 form {
  margin: 0;
}
.contact-textarea,
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-number,
.wpcf7-form-control.wpcf7-tel,
.wpcf7-form-control.wpcf7-email,
.wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  color: var(--text-primary);
  background: #F3F7FF; 
  border: 1px solid var(--brand-primary); /* var(--brand-primary) を薄く */
  padding: 12px 14px;
  caret-color: var(--brand-primary);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.contact-input::placeholder,
.contact-textarea::placeholder,
.wpcf7-form-control.wpcf7-text::placeholder,
.wpcf7-form-control.wpcf7-number::placeholder,
.wpcf7-form-control.wpcf7-tel::placeholder,
.wpcf7-form-control.wpcf7-email::placeholder,
.wpcf7-form-control.wpcf7-textarea::placeholder { color: #8A95AD; opacity: 1; }
.contact-textarea,
.wpcf7-form-control.wpcf7-textarea { resize: vertical; }
.contact-input:focus,
.contact-textarea:focus,
.wpcf7-form-control.wpcf7-text:focus,
.wpcf7-form-control.wpcf7-number:focus,
.wpcf7-form-control.wpcf7-tel:focus,
.wpcf7-form-control.wpcf7-email:focus,
.wpcf7-form-control.wpcf7-textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 2px var(--brand-primary-light);
  background: var(--white); /* フォーカス時は白で読みやすく */
}

.contact-age-row .contact-age-input-wrap { display: inline-flex; align-items: center; gap: 8px; }
.contact-age-input { width: 120px; }
.contact-age-suffix { font-size: 14px; color: var(--text-primary); }

/* CF7の不要なbr・空pタグを非表示 */
.contact-form br { display: none; }
.contact-form p:empty,
.wpcf7-form p:empty { display: none; }

.contact-topics { border: none; padding: 0; margin: 0; }
.contact-topics legend { margin: 0 0 8px; padding: 0; }
.contact-options-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.contact-options-list .wpcf7-list-item { display: block; margin-left: 0; }
.contact-options-list .wpcf7-list-item:not(:last-child) {margin-bottom: .5em;}
.contact-options-list .wpcf7-list-item label { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }
.contact-options-list .wpcf7-list-item input { width: 16px; height: 16px; accent-color: var(--brand-primary); }
.wpcf7-list-item {margin-left: 0;}
/* .contact-privacy { margin-top: 8px; display: flex; flex-direction: column; gap: 26px; } */
.contact-privacy, .contact-privacy p, .contact-privacy p span {font-size: 14px; font-weight: 600; }
.contact-privacy p:last-child { display: inline-flex; color: var(--brand-primary); gap: 10px;}
.contact-privacy-note { font-size: 14px; font-weight: 600; margin: 0; color: var(--text-primary); line-height: 1.5; }
.contact-privacy-note a { color: var(--brand-primary); text-decoration: underline; font-weight: 600; }
.contact-privacy-note a:hover { opacity: 0.85; }
.contact-privacy-check-wrapper { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; font-weight: 600; color: var(--brand-primary); margin: 0; }
.contact-privacy-check-wrapper input[type="checkbox"] { width: 16px; height: 16px; min-width: 16px; min-height: 16px; accent-color: var(--brand-primary); cursor: pointer; flex-shrink: 0; margin: 0; }
.contact-privacy-check-wrapper span { cursor: pointer; }

.contact-form-actions { margin-top: 8px; display: flex; justify-content: center; flex-direction: column; }

/* Contact Form 7送信ボタン：共通ボタンと同じデザイン適用 */
.contact-form .wpcf7-submit {
  --btn-bg: var(--brand-primary);
  --btn-color: var(--white);
  --btn-border-color: var(--brand-primary);
  --btn-height: 47px;
  --btn-radius: 999px;
  --btn-font-size: 20px;
  --btn-font-weight: 600;
  --btn-padding-x: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--btn-height);
  padding: 0 var(--btn-padding-x);
  border-radius: var(--btn-radius);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  background: var(--btn-bg);
  color: var(--btn-color);
  border: 2px solid var(--btn-border-color);
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
}
.contact-form .wpcf7-submit:hover {
  background: var(--btn-color);
  color: var(--btn-bg);
  border-color: var(--btn-color);
}
.contact-form .wpcf7-submit:focus-visible {
  outline: 3px solid #bcd0ff;
  outline-offset: 2px;
}

.contact-submit { min-width: 220px; height: 47px; border-radius: 36px; font-weight: 800; letter-spacing: 0.02em; }

.wpcf7-acceptance span input[type="checkbox"] {width: 16px; height: 16px; accent-color: var(--brand-primary);}
.wpcf7-list-item-label {font-weight: 600;}
.wpcf7-spinner { margin: 0 auto; }

@media (min-width: 768px) {
  .contact-form-grid { gap: 20px; }
  .contact-label { font-size: 15px; }
  .contact-head-title { font-size: 24px; }
}

/* === 店舗紹介 === */
.top-store-section { background: var(--white); padding: 50px 0; }
.top-store-inner {
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
}
.top-store-heading { width: 224px; text-align: center; display: grid; gap: 7px; }
.top-store-eyebrow { font-size: 20px; font-weight: 900; color: var(--text-primary); }
.top-store-title { font-size: 32px; font-weight: 900; color: var(--brand-primary); line-height: 1.25; }
.top-store-title span { font-weight: 900; }
.top-store-img img { width: 100%; height: auto; object-fit: cover; display: block; }


@media (min-width: 768px) {
  .top-store-section { padding: 70px 0; }
  .top-store-inner { max-width: 1200px; }
  .top-store-heading { width: auto; }
  .top-store-title { font-size: clamp(32px, 5.5vw, 40px); }
  .top-store-title br { display: none; }
  .top-store-img img { height: auto; aspect-ratio: 3/1; }
}

/* === ビフォーアフター === */
.top-ba-section { background: var(--white); }
.top-ba-wrapper { background: var(--bg-overlay); border-top: 10px solid var(--brand-primary); }
.top-ba-inner { margin: 0 auto; padding: 26px 20px 50px; display: flex; flex-direction: column; gap: 21px; }
.top-ba-header { text-align: center; display: grid; gap: 2px; }
.top-ba-eyebrow { font-size: 14px; color: var(--text-primary); margin: 0; font-weight: 800; }
.top-ba-title { font-size: 24px; color: var(--text-primary); margin: 0; font-weight: 800; line-height: 1.5; }
.top-ba-sub { font-size: 14px; color: var(--brand-primary); margin: 0; font-weight: 800; }

.top-ba-cases { display: grid; gap: 55px; margin-top: 15px; }
.top-ba-case { display: grid; gap: 15px; }
.top-ba-num { display: flex; align-items: center; gap: 5px; }
.top-ba-num span { font-size: 35px; font-weight: 900; color: var(--brand-primary); line-height: 1; }
.top-ba-num-deco { display: inline-block; width: 100px; height: 3px; background: var(--brand-primary); }

.top-ba-photos { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 0; width: 100%; }
.top-ba-photo { position: relative; margin: 0; }
.top-ba-photo img { width: 100%; height: auto; display: block; }
.top-ba-tag { position: absolute; left: 0; top: 0; background: var(--brand-primary); color: var(--white); padding: .3em .5em; font-size: clamp(14px, 3.6vw, 30px); width: 27%; font-weight: 900; display: inline-flex; align-items: center; justify-content: center; }
.top-ba-arrow { width: 0; height: 0; border-left: 18px solid transparent; border-right: 18px solid transparent; border-top: 29px solid var(--brand-primary); transform: rotate(90deg); justify-self: center; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-90deg); z-index: 5;}

.top-ba-texts { display: grid; gap: 10px; }
.top-ba-case-title { font-size: 32px; font-weight: 900; color: var(--text-primary); line-height: 1.25; margin: 0; }
.top-ba-case-text { color: var(--text-primary); font-size: 14px; line-height: 1.4; }

.top-ba-cta .top-btn-fill { width: 252px; }
.top-btn-box.top-ba-cta {
  flex-direction: column;
  gap: 20px;
  margin-top: 80px;
}
.top-btn-box.top-ba-cta p { 
  color: var(--text-primary);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}

@media (min-width: 768px) {
  .top-ba-inner { max-width: 1000px; padding-top: 80px; }
  .top-ba-title { font-size: min(max(2.35vw, 32px), 40px); }
  .top-ba-case-title br { display: none; }
  .top-ba-case-title { font-size: 32px; }
  .top-ba-sub, .top-ba-eyebrow { font-size: min(max(1.5vw, 17px), 24px); }
  .top-ba-case-text { font-size: 18px; }
  .top-ba-texts { gap: 20px; margin-top: 15px; }
  .top-ba-photos { grid-template-columns: 1fr 1fr; }
  .top-ba-arrow { border-top-width: 36px; border-left-width: 22px; border-right-width: 22px; }
}
/* === Recruit Page  === */

.recruit-page {
  background: var(--white);
  padding: 0 0 0;
}

.recruit-hero {
  max-width: 768px;
  margin: 0 auto;
}

.recruit-hero .inner {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 130vw;
  max-height: 800px;
  margin: 0;
  padding: 0;
}

.recruit-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.recruit-hero__bg-image {
  position: absolute;
  top: 53px;
  left: -302px;
  width: auto;
  height: 100%;
  object-fit: cover;
}

.recruit-hero__bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.recruit-hero__breadcrumb,
.recruit-page .page-breadcrumb {
  position: absolute;
  top: calc(var(--header-offset) + 12px);
  left: 20px;
  z-index: 10;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-primary);
  white-space: nowrap;
}

.recruit-hero__breadcrumb a,
.recruit-page .page-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.recruit-hero__breadcrumb a:hover,
.recruit-page .page-breadcrumb a:hover {
  text-decoration: underline;
}

.recruit-hero__breadcrumb-sep,
.recruit-page .page-breadcrumb-sep {
  margin: 0 8px;
}

.recruit-hero__breadcrumb-current,
.recruit-page .page-breadcrumb span[itemprop="name"] {
  color: var(--text-primary);
}

.recruit-hero__title-section {
  position: absolute;
  width: 100%;
  height: 318.659px;
  z-index: 3;
  overflow: visible;
}

.recruit-hero__ribbon {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(880px, 230vw, 1200px);
  height: auto;
}

.recruit-hero__title {
  position: absolute;
  
  top: max(calc(74px - 16vw), -50px);
  left: 0;
  width: clamp(836px, 223vw, 1740px);
  height: auto;
  display: block;

}

.recruit-hero__title img {
  display: block;
  height: auto;
  width: 100%;
}

.recruit-hero__front-image {
  position: absolute;
  top: min(69vw, 400px);
  width: 100%;
  height: auto;
  z-index: 5;
  overflow: hidden;
}

.recruit-hero__front-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.recruit-hero__features {
  position: absolute;
  left: 0;
  width: min(96%, 740px);
  z-index: 6;
  display: flex;
  justify-content: space-around;
  translate: 0 -50%;
}

.recruit-hero__feature-circle {
  width: 33%;
}

.recruit-hero__feature-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.recruit-hero + .recruit-lead {
  margin-top: min(20vw, 200px);
}

.recruit-lead {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 16px;
  padding-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
}

.recruit-lead__title {
  margin: 0;
  margin: 0 auto;
  max-width: 450px;
  width: 100%;
}

.recruit-lead__title img {
  width: 100%;
}

.recruit-lead__title p {
  margin: 0;
}

.recruit-lead__image {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.recruit-lead__text {
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-secondary);
}

.recruit-lead__text p {
  margin: 0;
}

@media (min-width: 380px) {
  .recruit-hero__ribbon {
    top: -9vw;
  }
}

@media (min-width:768px) {
  .recruit-hero__features {
    left: 50%;
    translate: -50% -50%;
  }
}

/* === Recruit Features Section === */
.recruit-features {
  max-width: 500px;
  margin: 0 auto;
  padding: 48px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.recruit-features__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 24px;
}

.recruit-features__title {
  font-size: 29px;
  font-weight: 700;
  line-height: 1.616;
  margin: 0;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
}

.recruit-features__title-text {
  font-size: 29px;
  font-weight: 700;
}

.recruit-features__title-num {
  font-size: 48px;
  font-weight: 500;
}

.recruit-features__subtitle {
  font-size: 36px;
  font-weight: 700;
  color: var(--recruit-primary);
  line-height: 1.616;
  margin: 0;
  letter-spacing: 0.05em;
}

.recruit-features__list {
  display: flex;
  flex-direction: column;
  gap: 39px;
}

.recruit-features__item {
  position: relative;
}

.recruit-features__label {
  position: absolute;
  top: -30px;
  left: -17px;
  width: 148px;
  height: auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.recruit-features__ribbon {
  width: 100%;
  height: auto;
  display: block;
}

.recruit-features__box {
  border: 1px solid var(--box-border, var(--recruit-primary));
  padding: 13px 20px;
  min-height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
}

.recruit-features__box-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.616;
  margin: 0 0 4px;
  color: var(--text-secondary);
}

.recruit-features__box-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.616;
  margin: 0;
}

/* === Recruit Arrow Section === */
.recruit-arrow {
  max-width: 430px;
  margin: 0 auto;
  padding: 32px 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.recruit-arrow__text {
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  color: var(--text-secondary);
  text-align: center;
}

.recruit-arrow__icon {
  width: 77px;
  height: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(173deg);
}

.recruit-arrow__icon img {
  width: 57px;
  height: 81px;
  display: block;
  opacity: 0.71;
}

/* ===== Recruit Point 1 Section ===== */
.recruit-point-1 {
  background: var(--white);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 51px;
  align-items: center;
  margin-top: 80px;
}

.recruit-point-1__main {
  max-width: 500px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative;
}

.recruit-point-1__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.recruit-point-1__image-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.recruit-point-1__image {
  width: 100%;
  aspect-ratio: 349 / 234;
  overflow: hidden;
  transform: rotate(180deg) scaleY(-1);
  position: relative;
}

.recruit-point-1__image img {
  width: 100%;
  height: 198.86%;
  position: absolute;
  top: -21.84%;
  left: 0;
  object-fit: cover;
  display: block;
}

.recruit-point-1__content {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.recruit-point-1__title-box {
  display: flex;
  flex-direction: column;
  max-width: 256px;
}

.recruit-point-1__subtitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--recruit-primary);
  line-height: normal;
  margin: 0;
}

.recruit-point-1__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-secondary);
  line-height: normal;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.recruit-point-1__title * {
  font-weight: 700;
}

.recruit-point-1__title-line {
  display: block;
}

.recruit-point-1__text {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: normal;
  width: 100%;
  line-height: 1.4;
}

.recruit-point-1__text p:last-child {
  margin-bottom: 0;
}

.recruit-point-1__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recruit-point-1__feature-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.recruit-point-1__check-icon {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recruit-point-1__check-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.recruit-point-1__feature-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: normal;
  white-space: nowrap;
}

.recruit-point-1__label {
  position: absolute;
  top: -60px;
  left: -9px;
  width: 231px;
  height: 141px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.recruit-point-1__ribbon {
  width: 100%;
  height: auto;
  display: block;
}

.recruit-point-1__label-text {
  position: absolute;
  left: calc(50% - 25.64px);
  top: 30px;
  width: 116.426px;
  height: 64.56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  line-height: normal;
  white-space: nowrap;
  transform: rotate(342.286deg);
  transform-origin: center;
}

.recruit-point-1__salary-wrapper {
  width: 100%;
  max-width: 500px;
  padding: 0 20px 20px;
  margin: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 33px;
  color: var(--text-secondary);
}

.recruit-point-1__salary-box {
  background: #eee;
  padding: 22px 19px 29px;
  display: flex;
  flex-direction: column;
  gap: 29px;
}

.recruit-point-1__salary-heading {
  border-bottom: 2px solid var(--text-secondary);
  padding-bottom: 10px;
}

.recruit-point-1__salary-heading-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-secondary);
  line-height: normal;
  margin: 0;
  white-space: nowrap;
}

.recruit-point-1__salary-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.recruit-point-1__salary-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.recruit-point-1__salary-period {
  background: #b09035;
  padding: 10px 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recruit-point-1__salary-period p {
  font-size: 16px;
  font-weight: 700;
  color: white;
  line-height: normal;
  text-align: center;
  margin: 0;
  white-space: nowrap;
}

.recruit-point-1__salary-detail {
  background: white;
  padding: 27px 0;
  display: flex;
  flex-direction: column;
  gap: .8em;
  align-items: center;
  justify-content: center;
  position: relative;
}

.recruit-point-1__salary-breakdown {
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  white-space: nowrap;
}

.recruit-point-1__salary-amount {
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
  display: flex;
  align-items: baseline;
  z-index: 1;
  position: relative;
}

.recruit-point-1__salary-amount::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 7px;
  background: #b09035;
  z-index: -1;
}

.recruit-point-1__currency {
  font-size: 32px;
  font-weight: 900;
}

.recruit-point-1__amount-value {
  font-size: 48px;
  font-weight: 900;
}

.recruit-point-1__salary-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 30px;
}

.recruit-point-1__salary-arrow::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 14px solid #bfbfbf;
}

.recruit-point-1__average-box {
  display: flex;
  flex-direction: column;
  margin: 0 20px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08), 4px 4px 0px 0px rgba(0, 0, 0, 0.25);
}

.recruit-point-1__average-heading {
  background: #b09035;
  padding: 15px 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.recruit-point-1__average-heading-line1 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  line-height: normal;
  margin: 0;
  white-space: nowrap;
}

.recruit-point-1__average-heading-line2 {
  font-size: 24px;
  font-weight: 700;
  color: white;
  line-height: normal;
  margin: 0;
  white-space: nowrap;
}

.recruit-point-1__average-content {
  background: white;
  padding: 15px 66px 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

.recruit-point-1__average-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: normal;
  text-align: center;
  margin: 0;
  display: flex;
  flex-direction: column;
  white-space: nowrap;

  & * {
    font-weight: 700;
  }
}


.recruit-point-1__average-desc-line {
  display: block;
}

.recruit-point-1__average-amount {
  position: relative;
}

.recruit-point-1__average-amount::after {
  content: '';
  position: absolute;
  left: -0.5px;
  top: 51px;
  width: 261px;
  height: 10px;
  background: #b09035;
}

.recruit-point-1__average-value {
  font-weight: 900;
  margin: 0;
  white-space: nowrap;
  display: flex;
  align-items: baseline;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.recruit-point-1__average-currency {
  font-size: 32px;
  font-weight: 900;
}

.recruit-point-1__average-number {
  font-size: 60px;
  font-weight: 900;
}

.recruit-point-1__average-note {
  font-size: 10px;
  color: var(--text-secondary);
  line-height: normal;
  margin: 0;
  display: flex;
  flex-direction: column;
  white-space: nowrap;

  & * {
    font-weight: 700;
  }
}

.recruit-point-1__average-note-line {
  display: block;
}

@media (min-width: 768px) {
  .recruit-point-1 {
    gap: 64px;
  }

  .recruit-point-1__main {
    padding: 0;
  }

  .recruit-point-1__inner {
    max-width: 640px;
    gap: 40px;
  }

  .recruit-point-1__title-box {
    max-width: 400px;
  }

  .recruit-point-1__subtitle {
    font-size: 18px;
  }

  .recruit-point-1__title {
    font-size: 42px;
  }

  .recruit-point-1__text {
    font-size: 16px;
  }

  .recruit-point-1__feature-text {
    font-size: 16px;
  }

  .recruit-point-1__label {
    left: 20px;
  }

  .recruit-point-1__salary-wrapper {
    max-width: 450px;
    gap: 40px;
  }

  .recruit-point-1__salary-box {
    padding: 30px 25px 35px;
    gap: 35px;
  }

  .recruit-point-1__salary-heading {
    width: 100%;
  }

  .recruit-point-1__salary-item {
    width: 100%;
  }

  .recruit-point-1__average-heading {
    padding: 20px 50px;
  }

  .recruit-point-1__average-content {
    padding: 20px 70px 15px;
  }
}

/* ===== Recruit CTA ===== */
.recruit-cta {
  position: relative;
  overflow: visible;
  padding: 32px 20px;
  max-width: 768px;
  margin: 60px auto 0;
}

.recruit-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.recruit-cta__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(161deg, #fff 2.4%, rgba(245, 167, 176, 0.5) 139.32%);
}

.recruit-cta__bg-pattern {
  position: absolute;
  inset: 0;
  width: 208%;
  height: 116%;
  left: -72%;
  top: -11%;
  object-fit: cover;
  opacity: 0.2;
}

.recruit-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 500px;
  margin: 0 auto;
  padding-top: 0;
}

.recruit-cta__ribbon-decoration {
  position: absolute;
  top: max(calc(0% - 38vw), -215px);
  right: -14%;
  width: min(220vw, 1200px);
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.recruit-cta__ribbon-decoration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.recruit-cta__lead {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  color: var(--white);
  font-weight: 900;
  line-height: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  letter-spacing: 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.recruit-cta__lead-line {
  margin: 0;
  font-size: min(7.2vw, 40px);
  font-weight: 900;
  line-height: normal;
  padding: 0;
}

.recruit-cta__lead-strong { 
  font-size: min(8.6vw, 50px);
  font-weight: 900;
  display: inline;
}

.recruit-cta__lead-line:nth-child(2),
.recruit-cta__lead-line:nth-child(3) {
  font-size: min(7.2vw, 40px);
  font-weight: 900;
}

.recruit-cta__panel {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
}

.recruit-cta__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 0;
  letter-spacing: 0;
}

.recruit-cta__btn--pink {
  background: linear-gradient(to bottom, var(--recruit-primary) 0%, #ffced4 100%);
  /* padding: 11px 125px 11px 24px; */
}

.recruit-cta__btn--blue {
  background: linear-gradient(to bottom, #74b0ff 0%, #3d90ff 91.667%);
  /* padding: 11px 105px 11px 24px; */
}

.recruit-cta__btn-text {
  position: relative;
  z-index: 1;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0;
}

.recruit-cta__btn-icon {
  width: 43px;
  height: auto;
  position: absolute;
  right: 8px;
  top: 8px;
  bottom: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recruit-cta__btn-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* .recruit-cta__btn-icon 固有の調整（青ボタン用） */
.recruit-cta__btn--blue .recruit-cta__btn-icon {
  top: 8.5px;
  bottom: 8.5px;
}

.recruit-cta__badge {
  position: absolute;
  top: -13px;
  background: #fff;
  border: 2px solid #5aa1ff;
  color: #5aa1ff;
  border-radius: 42px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  z-index: 2;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 166px;
  letter-spacing: 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.recruit-cta__note {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  margin: 0;
  text-align: center;
  padding-top: 1em;
  letter-spacing: 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.recruit-cta__figure {
  position: absolute;
  right: -4px;
  top: 6px;
  width: min(43.4vw, 250px);
  height: auto;
  pointer-events: none;
  z-index: -1;
}

.recruit-cta__figure img {
  position: absolute;
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1.02);
}

@media (min-width: 768px) {
  .recruit-cta__lead-line {
    font-size: 36px;
  }

  .recruit-cta__panel {
    padding: 24px;
    gap: 28px;
  }

  .recruit-cta__btn {
    font-size: 26px;
    letter-spacing: 0;
  }

  .recruit-cta__btn-icon {
    right: 10px;
  }

  .recruit-cta__btn--blue .recruit-cta__btn-icon {
    top: 9.5px;
    bottom: 9.5px;
  }
}

/* ===== RECRUIT POINT 2: HOLIDAY SYSTEM (休日制度) ===== */

.recruit-point-2 {
  position: relative;
  padding: 0 0 60px;
  max-width: 500px;
  margin: 100px auto 0;
}

.recruit-point-2__main {
  position: relative;
  display: grid;
  gap: 30px;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Label ribbon (Point 2) */
.recruit-point-2__label {
  position: absolute;
  top: -60px;
  left: -9px;
  width: 231px;
  height: 141px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.recruit-point-2__ribbon {
  width: 100%;
  height: auto;
  display: block;
}

.recruit-point-2__label-text {
  position: relative;
  z-index: 2;
  font-size: 32px;
  color: white;
  font-weight: 400;
  text-align: center;
  transform: rotate(-18deg);
}

/* Unit image (hero image) */
.recruit-point-2__unit-image {
  position: relative;
  width: 100%;
  aspect-ratio: 351 / 234;
  overflow: hidden;
  background: #f4f4f4;
  border-radius: 0;
}

.recruit-point-2__unit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Title box */
.recruit-point-2__title-box {
  display: grid;
  gap: 10px;
}

.recruit-point-2__subtitle {
  font-size: 15px;
  font-weight: 900;
  color: #ef9753;
  margin: 0;
  padding: 0;
}

.recruit-point-2__title {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-secondary);
  margin: 0;
  padding: 0;
  line-height: 1.4;
  display: grid;
  gap: 0;
}

.recruit-point-2__title-line {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 32px;
  font-weight: 900;
  line-height: normal;
}

/* Image gallery (full width, no padding) */
.recruit-point-2__gallery {
  width: 100%;
  margin: 30px auto;
  display: grid;
  gap: 0;
  overflow: hidden;
  background: #f4f4f4;
  max-width: 720px;
}

.recruit-point-2__gallery img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


/* Main content */
.recruit-point-2__content {
  display: grid;
  gap: 15px;
}

/* Scenario (headline) */
.recruit-point-2__scenario {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-secondary);
  text-align: center;
  line-height: 0;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.recruit-point-2__scenario-line {
  margin: 0;
  padding: 0;
  font-size: 32px;
  font-weight: 900;
  line-height: normal;
}

.recruit-point-2__scenario-strong {
  font-size: 32px;
  font-weight: 900;
  display: inline;
}

/* Scenario description */
.recruit-point-2__scenario-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.4;
  text-align: center;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.recruit-point-2__scenario-desc p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* Features section */
.recruit-point-2__features {
  display: grid;
  gap: 20px;
}

/* Feature title banner */
.recruit-point-2__feature-title-box {
  position: relative;
  padding: 0 0 20px;
}

.recruit-point-2__feature-title-banner {
  background: #ef9753;
  padding: 7px 0;
  max-width: 350px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  position: relative;
  z-index: 1;
}

/* 下向き三角形（吹き出し風） */
.recruit-point-2__feature-title-banner::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 37px 37px 0 37px;
  border-color: #ef9753 transparent transparent transparent;
  z-index: -1;
}

.recruit-point-2__feature-title {
  font-size: 22px;
  font-weight: 900;
  color: white;
  text-align: center;
  margin: 0;
  padding: 0 0 4px 0;
  line-height: normal;
  border-bottom: 2px solid white;
  width: 312px;
}

@media (min-width: 400px) {
  .recruit-point-2__feature-title {
    font-size: 24px;
  }
}

/* Feature list */
.recruit-point-2__feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.recruit-point-2__feature-item {
  display: flex;
  gap: 7px;
  align-items: flex-start;
  margin: 0;
  padding: 0;
}

.recruit-point-2__feature-icon {
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.recruit-point-2__feature-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.recruit-point-2__feature-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.5;
  margin: 0;
  padding: 0;
  display: inline;
}

/* Bottom note */
.recruit-point-2__note {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.recruit-point-2__note-line {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .recruit-point-2 {
    padding: 0 0 80px;
  }

  .recruit-point-2__main {
    gap: 50px;
    padding: 0;
  }

  .recruit-point-2__gallery-row {
    gap: 12px;
  }

  .recruit-point-2__gallery-row:nth-child(2) {
    gap: 10px;
  }

  .recruit-point-2__title {
    font-size: 36px;
  }

  .recruit-point-2__scenario {
    font-size: 36px;
  }

  .recruit-point-2__scenario-line {
    font-size: 36px;
  }

  .recruit-point-2__scenario-strong {
    font-size: 36px;
  }

  .recruit-point-2__feature-list {
    gap: 16px;
  }

  .recruit-point-2__feature-text {
    font-size: 17px;
  }
}

/* ===== Point 3: Training System (研修制度) ===== */
.recruit-point-3 {
  background: white;
  padding: 0 0 40px;
  margin: 100px auto 0;
  max-width: 500px;
}

.recruit-point-3__main {
  padding: 0 20px;
  display: grid;
  gap: 10px;
  position: relative;
}

/* Label ribbon */
.recruit-point-3__label {
  position: absolute;
  top: -58px;
  left: 8px;
  width: 231px;
  height: 141px;
  z-index: 2;
}

.recruit-point-3__ribbon {
  width: 100%;
  height: 100%;
  display: block;
}

.recruit-point-3__label-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-22deg);
  color: white;
  font-size: 32px;
  font-weight: 900;
  white-space: nowrap;
}

/* Unit image */
.recruit-point-3__unit-image {
  width: 100%;
  margin: 0 auto;
}

.recruit-point-3__unit-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 350 / 234;
}

/* Title box */
.recruit-point-3__title-box {
  display: grid;
  gap: 16px;
  margin: 0 auto;
  width: 100%;
}

.recruit-point-3__subtitle {
  font-size: 15px;
  font-weight: 900;
  color: #7fcf3e;
  margin: 0;
  padding: 0;
  text-shadow: 0px 0px 18.2px rgba(0, 0, 0, 0.08);
}

.recruit-point-3__title {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-secondary);
  margin: 0;
  padding: 0;
  line-height: normal;
  display: grid;
  gap: 0;
}

.recruit-point-3__title-line {
  display: block;
  margin: 0;
  padding: 0;
}

/* Description */
.recruit-point-3__description {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: normal;
  margin: 0;
  padding: 0;
  margin: 0 auto;
  width: 100%;
  line-height: 1.4;
}

.recruit-point-3__description p {
  margin: 0;
  padding: 0;
}

/* Training section */
.recruit-point-3__training {
  padding: 0 20px;
  margin: 0 auto;
  display: grid;
  gap: 15px;
  margin-top: 10px;
}

.recruit-point-3__training-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.recruit-point-3__training-bar {
  width: 4px;
  height: 38px;
  background: #7fcf3e;
  flex-shrink: 0;
}

.recruit-point-3__training-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--text-secondary);
  text-align: center;
  margin: 0;
  padding: 0;
  line-height: normal;
  white-space: nowrap;
}

/* Training content wrapper */
.recruit-point-3__training-content {
  background: #eee;
  padding: 22px 20px;
}

.recruit-point-3__training-inner {
  display: grid;
  gap: 15px;
}

/* Training card */
.recruit-point-3__training-card {
  background: white;
  border-top: 2px solid #4e4e4e;
  padding: 20px;
  position: relative;
}

.recruit-point-3__card-inner {
  display: grid;
  gap: 18px;
}

/* Card badge */
.recruit-point-3__card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 29px;
  padding: .1em .8em;
  font-size: 14px;
  font-weight: 900;
  color: var(--white);
  line-height: normal;
  width: fit-content;
}

.recruit-point-3__card-badge--basic {
  background: #7fcf3e;
}

.recruit-point-3__card-badge--advanced {
  background: #ffa600;
}

.recruit-point-3__card-badge--pro {
  background: #ff7424;
}

/* Card title */
.recruit-point-3__card-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--text-secondary);
  margin: 0;
  padding: 0;
  line-height: normal;
  display: grid;
  gap: 0;
}

.recruit-point-3__card-title-line {
  display: block;
}

.recruit-point-3__card-title--single {
  display: block;
}

/* Card description */
.recruit-point-3__card-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.4;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.recruit-point-3__card-desc p {
  margin: 0;
  padding: 0;
}

/* Card features */
.recruit-point-3__card-features {
  display: grid;
  gap: 8px;
}

.recruit-point-3__features-title {
  font-size: 14px;
  font-weight: 900;
  color: var(--text-secondary);
  margin: 0;
  padding: 0;
  line-height: normal;
}

.recruit-point-3__features-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5px;
}

.recruit-point-3__features-item {
  display: flex;
  gap: 7px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.recruit-point-3__features-icon {
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recruit-point-3__features-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.recruit-point-3__features-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.4;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

/* Eye catch badge (基礎研修の「0時間」バッジ) */
.recruit-point-3__eyecatch {
  position: absolute;
  top: 0;
  left: 100px;
  width: 204px;
  height: 57px;
  z-index: 1;
}

.recruit-point-3__eyecatch-bubble {
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  height: 32px;
  display: block;
  object-fit: contain;
}

.recruit-point-3__eyecatch-text {
  position: absolute;
  top: 2px;
  left: 13px;
  margin: 0;
  padding: 0;
  line-height: normal;
  white-space: nowrap;
  font-weight: 900;
  color: var(--text-secondary);
  z-index: 2;
}

.recruit-point-3__eyecatch-text * {
  font-weight: 900;
}

.recruit-point-3__eyecatch-normal {
  font-size: 14px;
}

.recruit-point-3__eyecatch-small {
  font-size: 12px;
}

.recruit-point-3__eyecatch-large {
  font-size: 30px;
  font-weight: 900;
}

/* Arrow */
.recruit-point-3__arrow {
  width: 57px;
  height: 23px;
  margin: 0 auto;
  position: relative;
}

.recruit-point-3__arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 23px 28.5px 0 28.5px;
  border-color: #D9D9D9 transparent transparent transparent;
}

/* Responsive styles */
@media (min-width: 768px) {
  .recruit-point-3 {
    padding: 0 0 60px;
  }

  .recruit-point-3__main {
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
  }

  .recruit-point-3__unit-image,
  .recruit-point-3__title-box,
  .recruit-point-3__description {
    max-width: 100%;
  }

  .recruit-point-3__title {
    font-size: 40px;
  }

  .recruit-point-3__description {
    font-size: 16px;
  }

  .recruit-point-3__training {
    max-width: 800px;
    padding: 0 40px;
  }

  .recruit-point-3__training-title {
    font-size: 28px;
  }

  .recruit-point-3__training-content {
    padding: 32px;
  }

  .recruit-point-3__card-title {
    font-size: 28px;
  }

  .recruit-point-3__card-desc {
    font-size: 16px;
  }

  .recruit-point-3__features-text {
    font-size: 16px;
  }
}

/* ============================================
   Point 4: Flexible Scheduling (施術時間選択制)
   ============================================ */

.recruit-point-4 {
  padding: 60px 0;
  background-color: #fff;
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.recruit-point-4__main {
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

/* Label ribbon (Point 4 - Blue) */
.recruit-point-4__label {
  position: absolute;
  top: -36px;
  left: -8px;
  width: 231px;
  height: 141px;
  z-index: 2;
}

.recruit-point-4__ribbon {
  width: 100%;
  height: 100%;
  display: block;
}

/* Unit image */
.recruit-point-4__unit-image {
  width: 100%;
  aspect-ratio: 351 / 234;
  overflow: hidden;
  margin-bottom: 12px;
}

.recruit-point-4__unit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Title box */
.recruit-point-4__title-box {
  margin-bottom: 25px;
}

.recruit-point-4__subtitle {
  font-size: 15px;
  font-weight: 900;
  color: #7ABFF7;
  margin: 0;
  padding: 0;
}

.recruit-point-4__title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0;
  padding: 0;
}

/* Description */
.recruit-point-4__description {
  margin-bottom: 25px;
}

.recruit-point-4__description p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-primary);
  margin: 0 0 12px 0;
}

.recruit-point-4__description p:last-child {
  margin-bottom: 0;
}

/* Features list (with blue check icons) */
.recruit-point-4__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recruit-point-4__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.recruit-point-4__feature-icon {
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recruit-point-4__feature-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.recruit-point-4__feature-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-primary);
  white-space: nowrap;
}

/* Feature details section */
.recruit-point-4__details {
  margin-top: 42px;
  padding: 0 20px;
}

/* Details header with blue bars */
.recruit-point-4__details-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 23px;
}

.recruit-point-4__details-bar {
  width: 4px;
  height: 38px;
  background-color: #7abff7;
  border-radius: 2px;
}

.recruit-point-4__details-title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
  color: var(--text-secondary);
  margin: 0;
  padding: 0;
  text-align: center;
}

/* ============================================
   Point 4 Details Cards - Refined Layout
   ============================================ */

.recruit-point-4__details-content {
  /* max-width: 351px; */
  margin: 0 auto;
  padding: 31px 19px;
  background-color: #eee;
  display: flex;
  flex-direction: column;
  gap: 37.93px;
}

/* Individual feature card */
.recruit-point-4__details-card {
  background-color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Card wrapper */
.recruit-point-4__card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

/* Card image box with icon overlay */
.recruit-point-4__card-image-box {
  position: relative;
}

.recruit-point-4__card-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 270 / 180;
  object-fit: cover;
}

/* Card text box */
.recruit-point-4__card-text-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #fff;
}

/* Heading with icon and title */
.recruit-point-4__card-heading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.recruit-point-4__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.recruit-point-4__card-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.recruit-point-4__card-icon--clock {
  width: 30px;
  height: 30px;
}

.recruit-point-4__card-icon--chat {
  width: 41px;
  height: 32px;
}

.recruit-point-4__card-icon--calendar {
  width: 27px;
  height: 31px;
}

.recruit-point-4__card-icon--star {
  width: 33px;
  height: 38px;
}

/* Card title */
.recruit-point-4__card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-secondary);
  margin: 0;
  padding: 0;
}

/* Card description */
.recruit-point-4__card-description {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-primary);
  margin: 0;
  padding: 0;
}

/* Legacy classes for backward compatibility */
.recruit-point-4__details-image {
  width: 100%;
  padding: 20px 20px 10px 20px;
}

.recruit-point-4__details-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.recruit-point-4__details-text {
  padding: 0 20px 20px 20px;
}

.recruit-point-4__details-heading {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.recruit-point-4__details-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recruit-point-4__details-icon svg {
  display: block;
}

.recruit-point-4__details-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 0;
  padding: 0;
}

.recruit-point-4__details-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-primary);
  margin: 0;
  padding: 0;
}

/* Responsive styles for Point 4 */
@media (min-width: 768px) {
  .recruit-point-4 {
    padding: 80px 0;
  }

  .recruit-point-4__main {
    max-width: 700px;
    padding: 40px 0;
  }

  .recruit-point-4__label {
    top: -50px;
    left: -20px;
    width: 280px;
    height: 170px;
  }

  .recruit-point-4__unit-image {
    aspect-ratio: 700 / 467;
    margin-bottom: 20px;
  }

  .recruit-point-4__title-box {
    margin-bottom: 35px;
  }

  .recruit-point-4__subtitle {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .recruit-point-4__title {
    font-size: 48px;
  }

  .recruit-point-4__description {
    margin-bottom: 35px;
  }

  .recruit-point-4__description p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .recruit-point-4__features {
    gap: 16px;
  }

  .recruit-point-4__feature-text {
    font-size: 16px;
  }

  .recruit-point-4__details {
    margin-top: 60px;
    padding: 0;
  }

  .recruit-point-4__details-header {
    gap: 24px;
    margin-bottom: 32px;
  }

  .recruit-point-4__details-title {
    font-size: 28px;
  }

  .recruit-point-4__details-content {
    max-width: 800px;
    padding: 40px 32px;
    gap: 48px;
  }

  .recruit-point-4__card-image-box {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .recruit-point-4__card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 270 / 180;
  }

  .recruit-point-4__card-text-box {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .recruit-point-4__card-title {
    font-size: 20px;
  }

  .recruit-point-4__card-description {
    font-size: 16px;
  }

  .recruit-point-4__details-card--reversed {
    flex-direction: row-reverse;
  }
}

/* ============================================
   Flow Section - 採用までの3ステップ
   ============================================ */

.recruit-flow {
  background: var(--white);
  padding: 60px 0;
}

.recruit-flow__inner {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.recruit-flow__heading {
  display: grid;
  gap: 10px;
  text-align: center;
}

.recruit-flow__subtitle {
  margin: 0;
  color: #ffbac2;
  font-size: 24px;
  font-weight: 400;
}

.recruit-flow__title {
  margin: 0;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.3;
  color: #343434;
}

.recruit-flow__title-number {
  font-size: 48px;
  font-weight: 900;
}

.recruit-flow__lead {
  margin: 0;
  font-size: 14px;
  color: #343434;
  line-height: 1.4;
}

.recruit-flow__cards {
  display: flex;
  flex-direction: column;
  /* gap: 14px; */
}

.recruit-flow__card {
  position: relative;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding-top: 20%;
}

.recruit-flow__step-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 88px;
  height: 120px;
}

.recruit-flow__step-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.recruit-flow__image {
  width: 100%;
}

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

.recruit-flow__card-body {
  padding: 14px 12px 16px;
  display: grid;
  gap: 10px;
}

.recruit-flow__card-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}

.recruit-flow__card-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #343434;
}

.recruit-flow__card--step1 .recruit-flow__card-body {
  background: #ffbac2;
}

.recruit-flow__card--step1 .recruit-flow__card-text {
  color: #1f1f1f;
}

.recruit-flow__card--step2 .recruit-flow__card-body {
  background: #ffc99f;
}

.recruit-flow__card--step2 .recruit-flow__card-text {
  color: #1f1f1f;
}

.recruit-flow__card--step3 .recruit-flow__card-body {
  background: #a6d7ff;
}

.recruit-flow__card--step3 .recruit-flow__card-text {
  color: #1f1f1f;
}

.recruit-flow__arrow {
  display: flex;
  justify-content: center;
  margin-top: 7px;
}

.recruit-flow__arrow img {
  width: 38px;
  height: 32px;
  transform: rotate(180deg);
  display: block;
}

.recruit-flow__arrow--pink img {
  filter: none;
}

.recruit-flow__arrow--orange img {
  filter: none;
}

@media (min-width: 768px) {
  .recruit-flow {
    padding: 80px 0;
  }

  .recruit-flow__inner {
    padding: 0 32px;
    gap: 32px;
  }

  .recruit-flow__title {
    font-size: 36px;
  }

  .recruit-flow__title-number {
    font-size: 52px;
  }

  .recruit-flow__lead {
    font-size: 15px;
  }

  .recruit-flow__card {
    padding-top: 32px;
  }

  .recruit-flow__step-icon {
    width: 96px;
    height: 130px;
  }

  .recruit-flow__card-title {
    font-size: 22px;
  }

  .recruit-flow__card-text {
    font-size: 15px;
  }
}

/* ============================================
   Unified title box (Points 1-4)
   ============================================ */

.recruit-point-1__title-box,
.recruit-point-2__title-box,
.recruit-point-3__title-box,
.recruit-point-4__title-box {
  display: grid;
  gap: 12px;
  align-items: flex-start;
}

.recruit-point-1__subtitle,
.recruit-point-2__subtitle,
.recruit-point-3__subtitle,
.recruit-point-4__subtitle {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
  margin: 0;
  padding: 0;
}

.recruit-point-1__title,
.recruit-point-2__title,
.recruit-point-3__title,
.recruit-point-4__title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.recruit-point-1__title-line,
.recruit-point-2__title-line,
.recruit-point-3__title-line,
.recruit-point-4__title-line {
  display: block;
  font-weight: 700;
  color: var(--text-secondary);
}

@media (min-width: 768px) {
  .recruit-point-1__title-box,
  .recruit-point-2__title-box,
  .recruit-point-3__title-box,
  .recruit-point-4__title-box {
    gap: 16px;
  }

  .recruit-point-1__subtitle,
  .recruit-point-2__subtitle,
  .recruit-point-3__subtitle,
  .recruit-point-4__subtitle {
    font-size: 18px;
  }

  .recruit-point-1__title,
  .recruit-point-2__title,
  .recruit-point-3__title,
  .recruit-point-4__title {
    font-size: 42px;
  }
}

/* ============================================
   Recruit Requirements Section
   ============================================ */

.recruit-requirements {
  background: var(--white);
  padding: 60px 0;
}

.recruit-requirements__inner {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.recruit-requirements__heading {
  display: grid;
  gap: 2px;
  text-align: center;
  border-bottom: 1px solid var(--recruit-primary);
  padding-bottom: 20px;
}

.recruit-requirements__title {
  font-size: 24px;
  font-weight: 900;
  margin: 0;
  color: #343434;
}

.recruit-requirements__subtitle {
  font-size: 14px;
  font-weight: 900;
  margin: 0;
  color: var(--recruit-primary);
}

/* Table Styling */
.recruit-requirements__content {
  overflow-x: auto;
}

.recruit-requirements__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: 'Noto Sans JP', sans-serif;
  background: #fff;
}

/* Mobile: Flex column layout */
.recruit-requirements__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border-bottom: 1px solid transparent;
  border-image-slice: 1;
  border-image: linear-gradient(90deg, #f5a7b0 20%, #e0e0e0 20% 100%) 1;
  padding: 20px 0;
}

.recruit-requirements__th {
  background-color: var(--recruit-primary);
  color: var(--white);
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  border: none;
  line-height: 1;
  width: fit-content;
}

.recruit-requirements__td {
  padding: 0;
  font-size: 14px;
  color: #343434;
  vertical-align: middle;
  border: none;
  line-height: 1.4;
  display: block;
  background: #fff;
}

.recruit-requirements__td p {
  margin: 0;
  line-height: 1.4;
}

.recruit-requirements__td p:last-child {
  margin-bottom: 0;
}

.recruit-requirements__td strong {
  font-weight: 700;
  color: #343434;
}

/* 勤務地特殊スタイル */
.recruit-requirements__td--location {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* 複数行コンテンツ対応 */
.recruit-requirements__td--large {
  padding: 0;
  line-height: 1.8;
}

/* Responsive: Desktop (>=768px) */
@media (min-width: 768px) {
  .recruit-requirements {
    padding: 80px 0;
  }

  .recruit-requirements__inner {
    padding: 0 32px;
    gap: 50px;
  }

  .recruit-requirements__title {
    font-size: 32px;
  }

}

/* Compare Table */

.company-table * {
  border: none;
}

/* Compare Table */
.top-compare-img-box {
  padding: 70px 20px;
  border-radius: 8px;
  position: relative;
}

.compare-table::after {
  content: "";
  display: block;
  height: 100%;
  background: center / contain no-repeat #00000005;
  position: absolute;
  top: 0;
  z-index: 1;
  inset: 25px; /* 影の広がり */
  filter: blur(20px); /* ★ ぼかしの正体 */
}

.compare-table {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-collapse: collapse;
  font-family: 'Noto Sans JP', sans-serif;
  position: relative;
}

.compare-table thead {
  position: relative;
  z-index: 4;
}

.compare-table thead tr {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-end;
}

.compare-cell {
  padding: 20px;
  border-right: none;
  text-align: center;
  vertical-align: middle;
}

.compare-cell:last-child {
  border-right: none;
}

.compare-cell--header {
  padding: 3px 15px;
  font-weight: 700;
  font-size: 14px;
  color: #333;
  background: #fff;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
}

.compare-cell--labels {
  width: 20%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.compare-cell--other {
  width: 25%;
  color: #666;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  height: fit-content;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
}

.compare-cell--mayuclear {
  width: 65%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  height: fit-content;
  padding-top: 50px !important;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
}

.compare-cell--mayuclear .compare-logo-text {
  font-size: 20px;
  font-weight: 900;
  position: relative;
}

.compare-cell--mayuclear .compare-logo-text::before {
  content: "";
  background: center/cover no-repeat url('../img/header-brand-logo.svg');
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 100px;
}

.compare-logo-text {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.4;
}

.compare-logo-img {
  max-width: 120px;
  height: auto;
  display: block;
  margin: 0 auto 8px;
}

/* テーブルボディの行 */
.compare-table tbody tr {
  transition: background 0.2s ease;
  display: flex;
  gap: 40px;
  position: relative;
  align-items: stretch;
  justify-content: space-between;
}

.compare-table tbody tr:last-child {
  border-bottom: none;
}

.compare-table tbody tr:hover {
  background: transparent;
}

.compare-cell--other,
.compare-cell--mayuclear {
  padding-top: 15px;
  padding-bottom: 3px;
}


tr:last-child .compare-cell--icon-cell::before,
tr:last-child .compare-cell--desc-cell::before { 
  content: "";
  display: inline-block;
  width: -webkit-fill-available;
  height: 40px;
  background: center / contain no-repeat white;
  position: absolute;
  bottom: -22px;
  z-index: -1;
}

.compare-cell--label-cell {
  background: var(--brand-primary);
  color: var(--white);
  padding: .7em .3em;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  width: auto;
  /* min-width: 110px; */
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  z-index: 10;
  height: auto;
  border: none;
  position: absolute;
  /* left: max(35%, 140px); */
  /* left: min(38vw, 187px); */
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  box-shadow: 0 0 20px #00000021;

  min-width: 30px;
  writing-mode: tb-rl;
  left: min(30.5vw, 161px);
  text-orientation: upright;
  min-height: 93px;
}

.small-text.compare-cell--label-cell {
  font-size: 11px;
  padding: .94em .2em;
}

.compare-desc-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  width: 80%;

  /* display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 1em; */
}

.compare-cell--icon-cell {
  padding: 3px 15px;
  background: #fff;
  border-right: none;
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  min-height: 70px;
  position: relative;
  z-index: 5;
}

.compare-cell--icon-cell::after,
.compare-cell.compare-cell--desc-cell::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #D8D8D8;
}

.compare-cell--desc-cell {
  padding: 3px 15px;
  background: #fff;
  text-align: left;
  width: 65%;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  z-index: 5;
  position: relative;
  height: 145px;
}

/* アイコンスタイル */
.compare-icon {
  display: inline-block;
  flex-shrink: 0;
}
.compare-cell--icon-cell .compare-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.compare-cell.compare-cell--header.compare-cell--labels {
  display: none;
}

/* レスポンシブ対応 */
@media (min-width: 768px) {
  .compare-table {
    max-width: 700px;
  }
  .compare-cell--label-cell {
    left: 262px;
    min-width: 110px;
    writing-mode: horizontal-tb;
    min-height: unset;
  }
  .compare-table tbody tr,
  .compare-table thead tr {
    gap: 40px;
  }
  .compare-cell--icon-cell,
  .compare-cell--desc-cell {
    padding: 5px 30px;
  }
  .compare-cell--header {
    padding: 16px 30px;
  }
  .compare-cell--other,
  .compare-cell--mayuclear {
    padding-top: 30px;
    padding-bottom: 5px;
  }
  .compare-cell--mayuclear {
    width: 50%;
  }
  .compare-desc {
    display: block;
    width: 300px
  }
  /* .compare-table thead tr {
    align-items: normal;
  } */
  .compare-logo-text br {
    display: none;
  }
  .compare-cell--mayuclear {
    padding-top: 15px;
  }
  .compare-cell--mayuclear,
  .compare-cell--desc-cell {
    /* width: 60%; */
  }
  .compare-desc-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 1em;
    position: static;
    transform: none;
  }
  .compare-cell--desc-cell {
    background: var(--white);
    text-align: left;
    width: 50%;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    z-index: 5;
    position: relative;
    height: auto;
  }
}

@media (min-width: 1000px) {
  .top-compare-img-box {
    padding: 40px 0;
  }
  .compare-table {
    max-width: 900px;
  }
  .compare-cell--label-cell {
    left: 18vw;
  }
  .compare-desc {
    width: 170px;
  }
  .compare-table tbody tr,
  .compare-table thead tr {
    gap: 20px;
  }
  .compare-logo-text br {
    display: block;
  }
}



@media (min-width: 1100px) {
  .compare-desc {
    width: 200px;
  }
}

@media (min-width: 1200px) {
  .compare-table tbody tr,
  .compare-table thead tr {
    gap: 40px;
  }
  .compare-cell--label-cell {
    left: 38%;
  }
  .compare-logo-text br {
    display: none;
  }
  .compare-desc {
    width: 270px;
  }
}

/* ===== 募集ページ: よくある質問セクション ===== */
.recruit-faq {
  background: var(--white);
  padding: 60px 0;
}

.recruit-faq__inner {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.recruit-faq__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5a7b0;
  margin-bottom: 44px;
}

.recruit-faq__subtitle {
  font-size: 36px;
  color: #ffbac2;
  line-height: 1;
  text-align: center;
}

.recruit-faq__title {
  font-size: 0;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1;
}

.recruit-faq__title * {
  font-weight: 900;
}

.recruit-faq__title-char {
  font-family: 'Noto Sans JP', sans-serif;
  display: inline-block;
}

.recruit-faq__title-char--large {
  font-size: 32px;
}

.recruit-faq__title-char--small {
  font-size: 24px;
}

.recruit-faq__content {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.recruit-faq__category {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.recruit-faq__category-title {
  font-size: 24px;
  font-weight: 900;
  color: #f5a7b0;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
}

.recruit-faq__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}

.recruit-faq__item {
  border: 1px solid var(--text-secondary);
  width: 100%;
  box-sizing: border-box;
  padding: 16px 17px;
}

.recruit-faq__question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  color: var(--text-primary);
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.4;
}

.recruit-faq__question::-webkit-details-marker {
  display: none;
}

.recruit-faq__question-text {
  flex: 1;
  font-weight: 500;
}

.recruit-faq__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 16px;
  height: 18px;
}

.recruit-faq__arrow img {
  display: block;
  width: 100%;
  height: auto;
  transform: rotate(180deg);
  transition: transform 0.2s ease;
  filter: brightness(0) saturate(100%) invert(78%) sepia(26%) saturate(1045%) hue-rotate(305deg) brightness(101%) contrast(96%);
}

.recruit-faq__item[open] .recruit-faq__arrow img {
  transform: rotate(0deg);
}

.recruit-faq__answer {
  background-image: repeating-linear-gradient(90deg, var(--recruit-primary), var(--recruit-primary) 8px, transparent 8px, transparent 16px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 2px;
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.4;
  font-family: 'Noto Sans JP', sans-serif;
  margin-top: .9em;
  padding-top: .9em;
}

.recruit-faq__answer p {
  margin: 0;
}

.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha-note {
  font-size: 10px;
  color: #666;
  margin-top: 8px;
}
.recaptcha-note a {
  color: rgb(117, 202, 255);
  text-decoration: underline;
}

/* ===== Fixed side CTA (PC only) ===== */
.fixed-cta-left {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 900;
}

@media (max-width: 1368px) {
  .fixed-cta-left {
    display: none;
  }
}

.fixed-cta-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  width: 67px;
  padding: 24px 0;
  color: var(--white);
  background: var(--brand-primary);
  text-decoration: none;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}


.fixed-cta-btn__text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
}

.fixed-cta-btn__icon {
  display: block;
  color: inherit;
}

.fixed-cta-btn--orange {
  background: #ef9753;
}

.fixed-cta-btn--orange::after {
  background: #c5d6e5;
}

.fixed-cta-btn--navy {
  background: var(--brand-primary);
}

/* ===== Section Title Component ===== */
.c-section-title {
  text-align: center;
}

.c-section-title__title {
  font-size: 32px;
  font-weight: 900;
  color: var(--brand-primary);
  margin: 0;
  line-height: 1.2;
  font-family: var(--font-sans);
}

.c-section-title__subtitle {
  font-size: 14px;
  color: var(--text-primary);
  margin: .1em 0 0 0;
  font-weight: 900;
  line-height: 1.4;
}
