/* ============================================================
   精密審美会 採用サイト — 共通コンポーネント
   ============================================================ */

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--color-white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition-base);
}

/* 横溢れ防止: html/body ではなく main で clip する
   main は header の兄弟要素（先祖ではない）ため、
   header の position:sticky に影響しない */
.site-main {
  overflow-x: clip;
  width: 100%;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  height: 70px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.header__logo-img {
  height: 34px;
  width: auto;
}

/* Figma: Rectangle 66 — 100×25 border:1px #32A9E1, text: 14px #32A9E1 */
.header__logo-label {
  font-size: 14px;
  color: #32A9E1;
  white-space: nowrap;
  border: 1px solid #32A9E1;
  padding: 2px 10px;
  line-height: 1.4;
}

/* PC Navigation
   Figma: Frame 118 — 914×70, 各項目~183px幅 */
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

/* CTAボタンをナビの高さに合わせて配置 */
.header__nav-item--cta {
  margin-left: 0;
  align-self: stretch;
}

/* Figma: 各ナビ項目 ~183×70 テキスト中央 */
.header__nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 183px;
  height: 70px;
  font-size: var(--fs-body);
  font-weight: 400;
  color: #333;
  cursor: pointer;
  position: relative;
  transition: color var(--transition-base);
}

.header__nav-link:hover,
.header__nav-item.is-active>.header__nav-link {
  color: #32A9E1;
}

/* アクティブインジケータ: Figma Rectangle 76 — 183×5, #32A9E1 ナビ項目下部 */
.header__nav-item.is-active>.header__nav-link::after,
.has-dropdown:hover>.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #32A9E1;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

/* Figma: Frame 145 — 314×150, 白背景, 角丸あり */
.header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 314px;
  width: max-content;
  background: var(--color-white);
  border-radius: 0 16px 16px 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
  pointer-events: none;
  z-index: 10;
}

.header__dropdown-list li a {
  white-space: nowrap;
}

.has-dropdown:hover .header__dropdown,
.header__dropdown.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Figma: 各項目 fs=16, fw=400, ls=1.28, lh=40px */
.header__dropdown-list li a {
  display: block;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.28px;
  line-height: 40px;
  color: var(--color-text);
  transition: color var(--transition-base);
}

.header__dropdown-list li a:hover {
  color: #32A9E1;
}

/* 右側コントロール: CTAボタン + ハンバーガー */
.header__right {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}

/* CTA Button (Header)
   Figma PC: Frame 117 — 183×70, bg #1556A6, 角丸なし、ヘッダー全高
   Figma SP: Rectangle 17 — 115×70, bg #1556A6 */
.header__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 183px;
  height: 70px;
  background: #1556A6;
  color: var(--color-white);
  font-size: var(--fs-small);
  font-weight: 700;
  border-radius: 0;
  transition: background var(--transition-base);
}

.header__cta-btn:hover {
  background: #333;
  color: var(--color-white);
}

/* Hamburger */
.header__hamburger {
  display: none;
  width: 30px;
  height: 24px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: calc(var(--z-header) + 10);
}

.header__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  position: absolute;
  left: 0;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.header__hamburger-line:nth-child(1) {
  top: 0;
}

.header__hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.header__hamburger-line:nth-child(3) {
  bottom: 0;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* SP Push-down Navigation
   Figma: 44:128 — ヘッダー直下に全幅展開するアコーディオンナビ
   PC: 非表示、SP: ハンバーガーで表示切替
   position: absolute でコンテンツの上に被せる（オーバーレイ方式）
   アニメーション: スライドダウン + フェードイン */
.header__sp-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* アニメーション初期状態: 非表示 */
  opacity: 0;
  transform: translateY(-8px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.header__sp-nav.is-active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

/* 親メニュー行
   Figma: Rectangle 41/42/45/46 — 430×66, bg:#eef7ff, bottom-border:#1556a6 1px */
.header__sp-nav-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 66px;
  padding: 0 19px 0 23px;
  background: #eef7ff;
  border: none;
  border-bottom: 1px solid #1556a6;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.28px;
  color: #333;
  cursor: pointer;
  position: relative;
}

/* 展開中の親: 文字色を青に */
.header__sp-nav-trigger[aria-expanded="true"] {
  color: #32a9e1;
}

/* 右端アイコン: 21×21 紺丸 + 白矢印
   Figma: Component 7-10 — Ellipse 21×21 */
.header__sp-nav-trigger::after {
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #1556a6;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6' viewBox='0 0 6 6' fill='none'%3E%3Cpath d='M0.25 0.433105L4.58008 2.93311L0.25 5.43308' stroke='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

/* 展開時: 矢印を90度回転（> → v） */
.header__sp-nav-trigger[aria-expanded="true"]::after {
  transform: rotate(90deg);
}

/* 子メニューリスト: アコーディオンアニメーション */
.header__sp-nav-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.header__sp-nav-trigger[aria-expanded="true"] + .header__sp-nav-sub {
  max-height: 600px;
}

/* 子メニューリンク
   Figma: Rectangle 43/44 — 430×66, bg:#fff, text:#333, fs:16, fw:400, ls:1.28 */
.header__sp-nav-sub li a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 66px;
  padding: 0 23px 0 43px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.28px;
  color: #333;
  background: #fff;
  border-bottom: 1px solid #eaf0f4;
  transition: background 0.2s ease, color 0.2s ease;
}

.header__sp-nav-sub li:last-child a {
  border-bottom: none;
}

.header__sp-nav-sub li a:hover {
  background: #f5faff;
  color: #32a9e1;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 14px 32px;
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn:hover::before {
  opacity: 1;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn__icon {
  position: relative;
  z-index: 1;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  border: 1px solid var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base), border-color var(--transition-base);
}

.btn:hover .btn__icon {
  background: var(--color-white);
  border-color: var(--color-white);
}

.btn:hover .btn__icon svg {
  fill: var(--color-primary);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

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

/* --- Cards --- */
.card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition-base);
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card__img {
  overflow: hidden;
}

.card__img img {
  transition: transform var(--transition-slow);
}

.card:hover .card__img img {
  transform: scale(1.05);
}

.card__body {
  padding: var(--spacing-md);
}

.card__title {
  font-size: var(--fs-h3);
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
}

.card__text {
  font-size: var(--fs-small);
  color: var(--color-text-light);
}

/* --- Section Titles --- */
.section-title {
  margin-bottom: var(--spacing-lg);
}

.section-title__en {
  display: block;
  font-size: var(--fs-small);
  color: var(--color-primary-light);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-xs);
}

.section-title__ja {
  font-size: var(--fs-h2);
  color: var(--color-primary);
  font-weight: 400;
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: var(--spacing-sm) 0;
  font-size: var(--fs-xs);
  color: var(--color-text-light);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.breadcrumb__item::after {
  content: '>';
  margin-left: 4px;
  color: var(--color-text-light);
}

.breadcrumb__item:last-child::after {
  content: '';
}

.breadcrumb__item a {
  color: var(--color-text-light);
  transition: color var(--transition-base);
}

.breadcrumb__item a:hover {
  color: var(--color-primary);
}

/* --- Footer CTA --- */
/* Figma: Group 38 + Group 21 — 各 ~718x206 */
/* Figma実測: CTAは画面いっぱい（innerの幅制約なし） */
.footer-cta {
  padding: var(--spacing-xl) 0;
  background: #fff;
}

.footer-cta__inner {
  max-width: none;
  padding: 0;
}

/* Figma実測: 2カード合計1440px、隙間なし画面いっぱい */
.footer-cta__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.footer-cta__card {
  position: relative;
  display: flex;
  align-items: center;
  height: 206px;
  overflow: hidden;
  color: var(--color-white);
}

.footer-cta__card-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.footer-cta__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.footer-cta__card:hover .footer-cta__card-img img {
  transform: scale(1.05);
}

.footer-cta__card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Figma実測: Rectangle 39 (173:478) — opacity:0.8
   グラデーション: rgb(28,68,150) → rgb(72,124,202) 紺→青 */
.footer-cta__card--entry .footer-cta__card-overlay {
  background: linear-gradient(to right, rgba(28, 68, 150, 0.8) 0%, rgba(72, 124, 202, 0.8) 100%);
}

/* Figma実測: Rectangle 39 (173:450) — opacity:0.8
   グラデーション: rgb(198,225,238) → rgb(50,169,225) 水色→青、右→左 */
.footer-cta__card--recruit .footer-cta__card-overlay {
  background: linear-gradient(to left, rgba(198, 225, 238, 0.8) 0%, rgba(50, 169, 225, 0.8) 100%);
}

.footer-cta__card-text {
  position: relative;
  z-index: 2;
  padding: 24px 40px 24px 110px;
}

/* Figmaにラベルテキスト(Entry/Recruit)なし → 非表示 */
.footer-cta__card-label {
  display: none;
}

.footer-cta__card-title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 2px;
}

/* Figma: Component 3 — 70x70 白丸 + >>>SVG */
.footer-cta__card-arrow {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.footer-cta__card-arrow svg path {
  transition: stroke 0.3s ease;
}

/* ホバー: グラデーション反転 + アイコン色反転 */
.footer-cta__card:hover .footer-cta__card-arrow {
  background: #1556A6;
}

.footer-cta__card:hover .footer-cta__card-arrow svg path {
  stroke: #fff;
}

/* ホバー: グラデーション反転 */
.footer-cta__card--entry .footer-cta__card-overlay {
  transition: opacity 0.3s ease;
}

.footer-cta__card--entry:hover .footer-cta__card-overlay {
  background: linear-gradient(to left, rgba(28, 68, 150, 0.8) 0%, rgba(72, 124, 202, 0.8) 100%);
}

.footer-cta__card--recruit .footer-cta__card-overlay {
  transition: opacity 0.3s ease;
}

.footer-cta__card--recruit:hover .footer-cta__card-overlay {
  background: linear-gradient(to right, rgba(198, 225, 238, 0.8) 0%, rgba(50, 169, 225, 0.8) 100%);
}


/* --- Footer Banners --- */
/* Figma: 4枚 2x2グリッド 各~492px */
/* コメント(y=6589): 「バナーはマウスオーバー時に明度110%」 */
.footer-banners {
  padding: var(--spacing-lg) 0;
}

.footer-banners__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-banners__link {
  display: block;
  overflow: hidden;
  border-radius: 4px;
}

.footer-banners__link img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter var(--transition-base);
}

.footer-banners__link:hover img {
  filter: brightness(1.1);
}


/* --- Footer --- */
.footer {
  background: var(--color-white);
  color: var(--color-text);
  padding: 60px 0 24px;
}

/* ロゴ + 医院ボタンエリア */
.footer__logo-area {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 40px;
}

.footer__logo {
  flex-shrink: 0;
}

.footer__logo img {
  height: 143px;
  width: auto;
}

/* Figma: TOP-fotter-banner — 7院ボタン 225x53 角丸, 3列+3列+1列 */
/* コメント(y=6697): 「マウスオーバー時明度110%、変だったら#32A9E1で統一」 */
.footer__clinic-btns {
  display: grid;
  grid-template-columns: repeat(3, 225px);
  gap: 8px;
}

.footer__clinic-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 53px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: filter var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.footer__clinic-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: var(--color-white);
}


/* フッターナビ (Figma: 3列) */
/* コメント(y=7030): 「マウスオーバー時#32A9E1」 */
.footer__sitemap {
  display: grid;
  grid-template-columns: 180px 180px 1fr;
  grid-template-rows: auto auto;
  gap: 0 var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

/* PC: 精密審美会とメッセージを左列に縦積み */
.footer__sitemap-col--about {
  grid-column: 1;
  grid-row: 1;
}

.footer__sitemap-col--message {
  grid-column: 1;
  grid-row: 2;
  padding-top: 24px;
}

/* PC: 医院紹介・募集要項は2行分をspan */
.footer__sitemap-col:nth-child(3) {
  grid-column: 2;
  grid-row: 1 / 3;
}

.footer__sitemap-col:nth-child(4) {
  grid-column: 3;
  grid-row: 1 / 3;
}

.footer__sitemap-title {
  font-size: 16px;
  font-weight: 400;
  color: #32A9E1;
  margin-bottom: var(--spacing-sm);
}

.footer__sitemap-title--sub {
  margin-top: 32px;
}

.footer__sitemap-list li {
  margin-bottom: var(--spacing-xs);
}

.footer__sitemap-list li a {
  font-size: 14px;
  color: var(--color-text);
  transition: color var(--transition-base);
}

.footer__sitemap-list li a:hover {
  color: #32a9e1;
}


/* SNS + Copyright */
/* コメント(y=7449): 「マウスオーバー時#333」 */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--color-border);
}

.footer__sns {
  display: flex;
  gap: var(--spacing-sm);
}

.footer__sns-link {
  color: #32A9E1;
  transition: color var(--transition-base);
}

.footer__sns-link:hover {
  color: #333;
}

.footer__copy {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
}


/* --- Responsive Visibility --- */
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

/* --- SP --- */
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .header__hamburger {
    display: block;
  }

  /* Figma SP: Rectangle 15 — 430×70 */
  .header__inner {
    height: 70px;
    padding: 0;
  }

  /* Figma SP: ロゴ+採用サイトは縦積み */
  /* Figma SP: ロゴ+採用サイトは縦積み、ラベルは中央揃え */
  .header__logo {
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding-left: var(--spacing-sm);
  }

  .header__logo-img {
    width: 100px;
    height: 23px;
  }

  /* Figma SP: 採用サイトラベル — Rectangle 16: 100×19, stroke 1px #32A9E1, fill:none */
  .header__logo-label {
    width: 100px;
    height: 19px;
    font-size: 12px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #32A9E1;
    box-sizing: border-box;
  }

  /* Figma SP: CTA — Rectangle 17 — 115×70 */
  .header__cta-btn {
    width: 115px;
    height: 70px;
    font-size: 14px;
  }

  /* Figma SP: ハンバーガーエリア — Rectangle 18 — 80×70 bg:#eef7ff
     アイコン（Group 8）: 30×21 を中央配置 */
  .header__hamburger {
    width: 80px;
    height: 70px;
    background: #eef7ff;
  }

  /* ハンバーガー三本線: 80×70エリア内に30px幅で中央配置
     上下位置: (70-21)/2 = 24.5px → top:24px, mid:34px, bottom:44px */
  .header__hamburger-line {
    width: 30px;
    left: 25px;
  }

  .header__hamburger-line:nth-child(1) {
    top: 24px;
  }

  .header__hamburger-line:nth-child(2) {
    top: 34px;
    transform: none;
  }

  .header__hamburger-line:nth-child(3) {
    bottom: auto;
    top: 44px;
  }

  /* Figma SP: フッターCTA — padding削除、バナーとの距離はバナー側で制御 */
  .footer-cta {
    padding: 0;
  }

  .footer-cta__grid {
    grid-template-columns: 1fr;
  }

  .footer-cta__card {
    height: 206px;
  }

  /* Figma SP: CTA text — fs:24 ls:1.92 */
  .footer-cta__card-title {
    font-size: 24px;
    letter-spacing: 1.92px;
  }

  .footer-cta__card-text {
    padding: 24px 30px;
  }

  /* Figma SP: CTA arrow — 43×43（PCの70→SP43） */
  .footer-cta__card-arrow {
    width: 43px;
    height: 43px;
    right: 20px;
  }

  /* Figma SP: ロゴ — logo02 163×143 */
  .footer__logo-area {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .footer__logo img {
    height: 143px;
  }

  /* Figma SP: 医院ボタン — 344×70-72, 縦1列 */
  .footer__clinic-btns {
    display: block;
    /* Grid の 1fr 幅拡張問題を回避 */
    width: 100%;
    max-width: 344px;
    margin: 0 auto;
  }

  /* ボタン間の隙間を margin-top で担保 */
  .footer__clinic-btns .footer__clinic-btn+.footer__clinic-btn {
    margin-top: 6px;
  }

  .footer__clinic-btn {
    width: 344px;
    max-width: 100%;
    /* 360px時に親幅(328px)に縮小 */
    height: 70px;
    margin: 0 auto;
    font-size: 16px;
    letter-spacing: 1.28px;
  }

  /* Figma SP: サイトマップ — 1列, 罫線区切り */
  .footer__sitemap {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
    padding-left: 15px;
  }

  .footer__sitemap-col {
    padding: 20px 0;
  }

  .footer__sitemap-col:last-child {
    border-bottom: none;
  }

  /* 医院紹介の前後の罫線を除去 */
  .footer__sitemap-col--about,
  .footer__sitemap-col:nth-child(3) {
    border-bottom: none;
  }

  /* Figma SP: リスト項目のインデント */
  .footer__sitemap-list {
    padding-left: 16px;
  }

  /* SP: 全列のPC用grid配置をリセット */
  .footer__sitemap-col,
  .footer__sitemap-col--about,
  .footer__sitemap-col--message,
  .footer__sitemap-col:nth-child(3),
  .footer__sitemap-col:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  /* SP: 精密審美会→医院紹介→募集要項→メッセージ */
  .footer__sitemap-col--about {
    order: 1;
  }

  .footer__sitemap-col:nth-child(3) {
    order: 2;
  }

  /* 医院紹介 */
  .footer__sitemap-col:nth-child(4) {
    order: 3;
  }

  /* 募集要項 */
  .footer__sitemap-col--message {
    order: 4;
    padding-top: 20px;
  }

  /* Figma SP: バナー — 386幅, 1列, CTAとの距離59px */
  .footer-banners {
    padding-top: 59px;
    padding-bottom: 20px;
  }

  /* Figma SP: フッターのpadding-topを縮小 */
  .footer {
    padding: 30px 0 24px;
  }

  .footer-banners__grid {
    grid-template-columns: 1fr;
    max-width: 386px;
    margin: 0 auto;
  }

  .footer__logo-area {
    padding-bottom: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Figma SP: SNSアイコン — gap:37px */
  .footer__sns {
    gap: 37px;
    align-items: center;
  }

  /* X: 46×42 */
  .footer__sns-link:nth-child(1) svg {
    width: 46px;
    height: 42px;
  }

  /* YouTube: 56×40 (viewBoxトリミング済み) */
  .footer__sns-link:nth-child(2) svg {
    width: 56px;
    height: 40px;
  }

  /* Instagram: 46×46 */
  .footer__sns-link:nth-child(3) svg {
    width: 46px;
    height: 46px;
  }
}