/* =============================================================
   Primo Care — メインスタイルシート
   デザイン: ケアプランセンターあき様
   ============================================================= */

/* ------------------------------------------------
   CSS カスタムプロパティ（デザイントークン）
   ------------------------------------------------ */
:root {
  /* カラー */
  --color-pink:        #F29798;  /* セクション英字タイトル・アクセント */
  --color-salmon:      #D8716F;  /* サービスバッジ・Points番号 */
  --color-brown:       #4D2D1B;  /* 本文・見出し */
  --color-footer-bg:   #FFE8E8;  /* フッター背景 */
  --color-lavender:    #9999CC;  /* 電話番号 */
  --color-cream:       #F9F7EA;  /* Aboutセクション背景 */
  --color-white:       #FFFFFF;
  --color-black:       #000000;

  /* タイポグラフィ */
  --font-base: 'Zen Maru Gothic', sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.75;

  /* レイアウト */
  --container-max:   1250px;
  --container-pad:   clamp(16px, 4vw, 80px);
  --header-height:   100px; /* sticky header のみ（navはMV内に移動済み） */

  /* アニメーション */
  --transition-base: 0.3s ease;
}

/* ------------------------------------------------
   リセット & ベース
   ------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-base);
  color: var(--color-brown);
  background-color: var(--color-white);
  line-height: var(--line-height-base);
  -webkit-font-smoothing: antialiased;
}

#page {
  margin-top: -80px;
}

.site-main {
  background-color: var(--color-main-bg, #FFF7F7);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

address {
  font-style: normal;
}

/* ------------------------------------------------
   ユーティリティ
   ------------------------------------------------ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------
   コンテナ
   ------------------------------------------------ */
.section__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ------------------------------------------------
   セクション共通
   ------------------------------------------------ */
.section {
  padding: 80px 0;
}

.section__heading {
  margin-bottom: 48px;
  text-align: center;
}

.section__heading-en {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: var(--color-pink);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.section__heading-ja {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--color-brown);
  line-height: 1.3;
}

.section__more {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* ------------------------------------------------
   ボタン
   ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 500;
  transition: opacity var(--transition-base);
  border-radius: 0;
}

.btn:hover {
  opacity: 0.8;
}

.btn--header-contact,
.btn--contact {
  background-color: var(--color-pink);
  color: var(--color-white);
  font-size: 12px;
  padding: 8px;
}

.btn--recruit {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  font-size: 16px;
  padding: 14px 40px;
}

/* 矢印付きリンク */
.link--arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-brown);
  padding-bottom: 8px;
  gap: 16px;
}

.link--arrow__line {
  display: block;
  width: 240px;
  height: 1px;
  background-color: var(--color-brown);
  transition: width var(--transition-base);
}

.link--arrow:hover .link--arrow__line {
  width: 280px;
}

/* ------------------------------------------------
   ヘッダー（Figma: ヘッダー 1440×100）
   ------------------------------------------------ */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  height: 80px;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.site-header.is-scrolled {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

/* 左：タグライン（y=8）+ ロゴ（y=26） */
.site-header__logo-wrap {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}

.site-header__tagline {
  font-size: 10px;
  font-weight: 400;
  color: var(--color-black);
  white-space: nowrap;
  line-height: 1.2;
  margin-bottom: 6px;
}

.site-header__logo-link {
  display: block;
  line-height: 0;
}

.site-header__logo-link img,
.site-header__logo-link .custom-logo {
  width: 265px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
}

/* 右：電話エリア + 問い合わせボタン */
.site-header__contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-header__tel-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-header__tel-label {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black);
  white-space: nowrap;
}

.site-header__tel-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header__tel-icon {
  width: 29px;
  height: 30px;
  flex-shrink: 0;
}

.site-header__tel-number {
  font-size: 32px;
  font-weight: 500;
  color: var(--color-lavender);
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1;
}

/* 問い合わせボタン（90×69 / r=5） */
.btn--header-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 90px;
  height: 69px;
  background-color: var(--color-pink);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 500;
  border-radius: 5px;
  flex-shrink: 0;
  transition: opacity var(--transition-base);
}

.btn--header-contact:hover { opacity: 0.85; }

.btn--header-contact svg {
  width: 15px;
  height: 12px;
}

/* ハンバーガーボタン（モバイルのみ） */
.hamburger-btn {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-btn__lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 25px;
}

.hamburger-btn__label {
  display: none;
  font-size: 8px;
  font-weight: 500;
  color: #000000;
  line-height: 1;
}

/* ------------------------------------------------
   MV ナビバー（Figma: INSTANCE a / 1440×80）
   ------------------------------------------------ */
.mv-nav {
  position: relative;
  z-index: 1;
  background-color: transparent;
  height: 80px;
  margin: 80px 0px;
}

.mv-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 50px; /* Figma: Frame間隔 436-231-155=50px */
}

.mv-nav__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 400;
  color: var(--color-black);
  white-space: nowrap;
  transition: color var(--transition-base);
}

.mv-nav__link:hover {
  color: var(--color-salmon);
}

.mv-nav__link img {
  width: auto;
  height: auto;
  flex-shrink: 0;
}

.hamburger-btn__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.hamburger-btn[aria-expanded="true"] .hamburger-btn__lines .hamburger-btn__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn[aria-expanded="true"] .hamburger-btn__lines .hamburger-btn__line:nth-child(2) {
  opacity: 0;
}
.hamburger-btn[aria-expanded="true"] .hamburger-btn__lines .hamburger-btn__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ------------------------------------------------
   ハンバーガーメニュー（オーバーレイ）
   ------------------------------------------------ */
.hamburger-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.hamburger-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.hamburger-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: min(440px, 100vw);
  height: 100%;
  background-color: #FFE8E8;
  background-image: url('../images/ham-bg.png');
  background-size: cover;
  background-position: center;
  transform: translateX(100%);
  transition: transform var(--transition-base);
  overflow-y: auto;
}

.hamburger-overlay.is-open .hamburger-menu {
  transform: translateX(0);
}

.hamburger-close {
  position: absolute;
  top: 16px;
  right: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #000000;
}

.hamburger-close__x {
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}

.hamburger-close__text {
  font-size: 8px;
  font-weight: 500;
}

.hamburger-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 126px;
  gap: 60px;
}

.hamburger-nav__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hamburger-nav__list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  transition: color var(--transition-base);
}

.hamburger-nav__icon {
  width: 32px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.hamburger-nav__list li a:hover {
  color: var(--color-salmon);
}

.hamburger-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 225px;
}

.hamburger-contact__label {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
}

.hamburger-contact__tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 32px;
  font-weight: 500;
  color: #9999CC;
  text-decoration: none;
  line-height: 1.2;
}

.hamburger-contact__tel-icon {
  width: 29px;
  height: 30px;
  flex-shrink: 0;
}

.hamburger-contact__mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 60px;
  background-color: #F29798;
  border-radius: 5px;
  color: #ffffff;
  text-decoration: none;
  transition: opacity var(--transition-base);
}

.hamburger-contact__mail-icon {
  width: 15px;
  height: auto;
}

.hamburger-contact__mail span {
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
}

.hamburger-contact__mail:hover {
  opacity: 0.8;
}

/* ------------------------------------------------
   MV セクション全体（Figma: MV 1440×900）
   ------------------------------------------------ */
.mv {
  position: relative;
  background-color: var(--color-footer-bg);
  overflow: hidden;
}

/* 背景画像（ヘッダー下から全体に広がる） */
.mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* gap① ヘッダー高さ+余白: ヘッダー下〜スライダー上 */
.mv__gap-top {
  position: relative;
  z-index: 1;
  height: 200px;
}

/* gap② 21px: スライダー下〜ナビバー上 */
.mv__gap-mid {
  position: relative;
  z-index: 1;
  height: 21px;
}

/* gap③ 39px: ナビバー下〜セクション端 */
.mv__gap-bottom {
  position: relative;
  z-index: 1;
  height: 39px;
}

/* ------------------------------------------------
   MV スライダー（950×600 / r=200 / 無限自動スクロール）
   Figma: Component 2 / set-all 6000×600
   ------------------------------------------------ */
.mv__inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
}

/* set-A + set-B = 6枚 → translateX(-50%) でループ */
@keyframes mvScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.mv__track {
  display: flex;
  gap: 40px;            /* Figma: (2970 - 950×3) / 2 ≒ 60px → 見た目調整 */
  width: max-content;
  animation: mvScroll 14s linear infinite;
}

.mv__track:hover,
.mv__track:focus-within {
  animation-play-state: paused;
}

.mv__slide {
  flex: 0 0 950px;
  height: 600px;
  border-radius: 200px; /* Figma の cornerRadius: 200 */
  overflow: hidden;
}

.mv__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  user-select: none;
}

/* レスポンシブ: スライドをビューポートに合わせてスケール */
@media (max-width: 1100px) {
  .mv__slide {
    flex: 0 0 700px;
    height: 442px;
    border-radius: 147px;
  }
}

@media (max-width: 768px) {
  .mv__slide {
    flex: 0 0 340px;
    height: 215px;
    border-radius: 72px;
  }
  .mv__track {
    gap: 20px;
  }
  /* モバイルではギャップを縮小 */
  .mv { padding-top: 80px; }
  .mv__gap-top    { height: 60px; }
  .mv__gap-mid    { height: 12px; }
  .mv__gap-bottom { height: 16px; }
  /* ナビバーはハンバーガーメニューで代替 */
  .mv-nav { display: none; }
}

/* ------------------------------------------------
   事業所の特色
   ------------------------------------------------ */
.section--business {
  background-color: var(--color-white);
}

.business__grid {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
  flex-wrap: wrap;
}

.business__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: min(307px, 100%);
}

.business__number {
  display: block;
  font-size: 64px;
  font-weight: 700;
  color: var(--color-salmon);
  line-height: 1;
  text-align: center;
  margin-bottom: 8px;
}

.business__image-wrap {
  width: 211px;
  height: 211px;
  overflow: visible;
}

.business__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.business__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-brown);
  text-align: center;
}

/* ------------------------------------------------
   専門スタッフ
   ------------------------------------------------ */
.section--staff {
  background-color: var(--color-white);
  padding: 60px 0 60px;
}

.staff__heading {
  text-align: center;
  margin-bottom: 30px;
}

.staff__heading-en {
  font-family: var(--font-base);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-salmon);
  line-height: 1.45;
  margin-bottom: 0;
}

.staff__heading-ja {
  font-family: var(--font-base);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-brown);
  line-height: 1.45;
}

.staff__photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.staff__photo {
  aspect-ratio: 360/452;
  overflow: hidden;
}

.staff__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.staff__photo:hover img {
  transform: scale(1.03);
}

.staff__more {
  display: flex;
  justify-content: flex-end;
  padding: 30px 45px 0 0;
}

.staff__more-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  color: var(--color-brown);
}

.staff__more-text {
  font-family: var(--font-base);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  padding-right: 88px;
}

.staff__more-line {
  display: block;
  width: 327px;
  max-width: 100%;
  height: auto;
  margin-top: -5%;
  background-image: url('../images/staff-more-line.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  aspect-ratio: 327 / 51;
}

@media (max-width: 768px) {
  .section--staff {
    padding: 40px 0;
  }
  .staff__heading-en {
    font-size: 16px;
  }
  .staff__heading-ja {
    font-size: 28px;
  }
  .staff__more {
    padding: 20px 16px 0 0;
  }
  .staff__more-text {
    font-size: 16px;
    padding-right: 40px;
  }
  .staff__more-line {
    width: 220px;
  }
}

/* ------------------------------------------------
   提供サービス
   ------------------------------------------------ */
.section--service {
  background-color: var(--color-white);
  padding: 60px 0 60px;
}

.service__heading {
  text-align: center;
  margin-bottom: 60px;
}

.service__heading-en {
  font-family: var(--font-base);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-salmon);
  line-height: 1.45;
  margin-bottom: 0;
}

.service__heading-ja {
  font-family: var(--font-base);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-brown);
  line-height: 1.45;
}

.service__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 21px;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 1024px) and (min-width: 600px) {
  .service__grid {
    max-width: none;
    gap: 12px;
    padding: 0 16px;
  }
  .service__label {
    font-size: 16px;
    padding: 2px 8px;
  }
}

.service__item {
}

.service__link {
  display: block;
  text-decoration: none;
}

.service__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.service__image-wrap img {
  width: 100%;
  aspect-ratio: 234/349;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service__item:hover .service__image-wrap img {
  transform: scale(1.03);
}

.service__labels {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.service__label {
  display: inline-block;
  background-color: var(--color-salmon);
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  padding: 3px 10px;
}

@media (max-width: 768px) {
  .section--service {
    padding: 32px 0 32px;
  }
  .service__heading-en {
    font-size: 12px;
  }
  .service__heading-ja {
    font-size: 24px;
  }
  .service__heading {
    margin-bottom: 32px;
  }
  .service__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 22px;
    padding: 0 63px;
  }
  .service__item {
    width: calc(50% - 11px);
  }
  .service__item:last-child {
    width: calc(50% - 11px);
  }
  .service__label {
    font-size: 14px;
    padding: 3px 10px;
  }
}

/* ------------------------------------------------
   Instagram / 求人バナー
   ------------------------------------------------ */
.recruit-banner {
  background-color: var(--color-white);
  padding: 60px 0;
}

.recruit-banner__inner {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 6vw, 128px);
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 100px);
}

.recruit-banner__card {
  display: block;
  flex: 1 1 0;
  max-width: 556px;
  aspect-ratio: 556 / 168;
  border-radius: 15px;
  overflow: hidden;
  text-decoration: none;
  min-width: 0;
}

.recruit-banner__card--insta img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.recruit-banner__card--recruit {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #D8716F 0%, #F29798 100%);
}
.recruit-banner__card-text {
  text-align: center;
}
.recruit-banner__en {
  font-size: 20px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.45;
  margin-bottom: 0;
}

.recruit-banner__ja {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.45;
}

@media (max-width: 768px) {
  .recruit-banner {
    padding: 32px 0;
  }
  .recruit-banner__inner {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 0 24px;
  }
  .recruit-banner__card {
    width: 100%;
    max-width: 395px;
    height: 119px;
    flex: none;
    aspect-ratio: auto;
  }
  .recruit-banner__card--recruit {
    padding-left: 0;
    justify-content: center;
  }
  .recruit-banner__card-text {
    text-align: center;
  }
  .recruit-banner__en {
    font-size: 12px;
  }
  .recruit-banner__ja {
    font-size: 24px;
  }
}

/* ------------------------------------------------
   私たちについて（About）
   ------------------------------------------------ */
.section--about {
  position: relative;
  background-image: url('../images/about-bg.png'), linear-gradient(to bottom, transparent 0%, transparent 50%, #ffffff 50%, #ffffff 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: center top, center top;
  background-size: 100% 100%, 100% 100%;
}

.about__lead {
  font-size: clamp(14px, 2vw, 24px);
  color: var(--color-brown);
  line-height: 2;
  margin-bottom: 64px;
  text-align: center;
}

/* ケア関係図 */
.about__diagram {
  margin: 0 auto 80px;
}

.about__diagram img {
  width: 100%;
  height: auto;
}

/* Points */
.about__points {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  row-gap: 60px;
}

.about__point {
  display: grid;
  grid-template-columns: 430px 1fr;
  align-items: stretch;
}

.about__point-image {
  overflow: hidden;
  border-radius: 30px;
}

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

.about__point-body {
  padding: clamp(32px, 5vw, 60px) clamp(32px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__point-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-salmon);
  margin-bottom: 16px;
}

.about__point-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 24px;
  line-height: 1.4;
}

.about__point-text {
  font-size: 20px;
  line-height: 1.9;
  color: var(--color-brown);
}

/* あきグループ（Figma: 1440×571） */
.aki-group {
  background-color: var(--color-cream);
  padding: 0;
  margin: 80px 0px;
}

.aki-group__card {
  background-color: var(--color-white);
  max-width: 92%;
  min-height: 571px;
  border-radius: 0 60px 60px 0;
  padding: 60px clamp(40px, 6vw, 144px) 60px;
}

.aki-group__heading {
  text-align: center;
  margin-bottom: 50px;
}

.aki-group__heading-en {
  font-size: 20px;
  font-weight: 400;
  color: var(--color-pink);
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.aki-group__heading-ja {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--color-brown);
  line-height: 1.3;
}

.aki-group__content {
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 93px);
}

.aki-group__text-block {
  flex: 1;
}

.aki-group__subtitle {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  color: var(--color-brown);
  margin-bottom: 16px;
}

.aki-group__text {
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.7;
  color: var(--color-brown);
}

.aki-group__image {
  flex-shrink: 0;
}

.aki-group__image img {
  width: 336px;
  height: 304px;
  object-fit: cover;
  border-radius: 91px;
}

/* 運営方針（Figma: node 36:721 / 1440×960） */
.policy {
  position: relative;
  width: 100%;
  min-height: 960px;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 200px;
}

.policy__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.policy__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 白カード: 745×820 / Figma x=645（右寄せ） / 角丸 0 0 60 60 */
.policy__card {
  position: relative;
  z-index: 1;
  background-color: var(--color-white);
  width: 745px;
  max-width: calc(100% - 40px);
  min-height: 820px;
  margin-left: auto;
  margin-right: 50px;
  padding: 40px 66px;
  border-radius: 0 0 60px 60px;
}

.policy__title {
  font-size: 24px;
  font-weight: 400;
  color: var(--color-brown);
  line-height: 1.448;
  margin-bottom: 1.448em;
}

.policy__body {
  font-size: 20px;
  line-height: 1.448;
  color: var(--color-brown);
}

/* ------------------------------------------------
   フッター
   ------------------------------------------------ */
.site-footer {
  background-color: #FFE8E8;
  padding: 60px 0 0;
}

.site-footer__card {
  background-color: var(--color-white);
  border-radius: 64px;
  max-width: 1274px;
  margin: 0 auto;
  padding: 49px 68px 60px 68px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.site-footer__info {
  flex-shrink: 0;
}

.site-footer__subtitle {
  font-size: 12px;
  color: #000000;
  margin-bottom: 8px;
}

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

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

.site-footer__address {
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 24px;
}

.site-footer__address a {
  color: inherit;
  text-decoration: none;
}

.site-footer__area {
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
}

.site-footer__area-indent {
  padding-left: 7em;
}

.site-footer__right {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3em;
}

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

.site-footer__nav-list li a {
  font-size: 16px;
  color: #000000;
  text-decoration: none;
  transition: color var(--transition-base);
}

.site-footer__nav-list li a:hover {
  color: var(--color-salmon);
}

.site-footer__address-row {
  display: block;
}

.site-footer__sns--sp {
  display: none;
}

.site-footer__sns--pc {
  margin-top: 20px;
}

.site-footer__sns-link img {
  width: 39px;
  height: 39px;
  transition: opacity var(--transition-base);
}

.site-footer__sns-link:hover img {
  opacity: 0.7;
}

.site-footer__copyright {
  font-size: 12px;
  color: var(--color-brown);
  text-align: center;
  padding: 20px 0;
}

/* フッター SP */
@media (max-width: 768px) {
  .site-footer {
    padding: 32px 0 0;
  }
  .site-footer__card {
    flex-direction: column;
    border-radius: 64px;
    max-width: 392px;
    margin: 0 auto;
    padding: 53px 39px 40px;
    gap: 0;
  }
  .site-footer__subtitle {
    font-size: 10px;
    margin-bottom: 4px;
  }
  .site-footer__logo {
    margin-bottom: 40px;
  }
  .site-footer__logo img {
    width: 186px;
  }
  .site-footer__address-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
  }
  .site-footer__address {
    font-size: 12px;
    margin-bottom: 0;
  }
  .site-footer__sns--sp {
    display: block;
    flex-shrink: 0;
  }
  .site-footer__sns--pc {
    display: none;
  }
  .site-footer__area {
    font-size: 12px;
    margin-bottom: 63px;
  }
  .site-footer__area-indent {
    padding-left: 7em;
  }
  .site-footer__right {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer__nav-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 45px;
  }
}

/* ------------------------------------------------
   トップに戻るボタン
   ------------------------------------------------ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 50;
  width: 48px;
  height: 48px;
  background-color: var(--color-brown);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  opacity: 0.8;
}

/* ------------------------------------------------
   下層ページ共通
   ------------------------------------------------ */
.page-mv {
  position: relative;
  height: clamp(180px, 25vw, 320px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-mv__img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.page-mv__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(77,45,27,0.4);
  z-index: 1;
}

.page-mv__heading {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-mv__heading-en {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.page-mv__title {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  text-align: center;
}

.breadcrumb {
  padding: 16px var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
  font-size: 13px;
  color: var(--color-brown);
}

.breadcrumb a {
  color: var(--color-salmon);
  text-decoration: underline;
}

/* ------------------------------------------------
   投稿ページ
   ------------------------------------------------ */
.entry-content {
  font-size: 16px;
  line-height: 2;
  color: var(--color-brown);
}

.entry-content h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  border-left: 4px solid var(--color-salmon);
  padding-left: 16px;
  margin: 48px 0 24px;
}

.entry-content h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  margin: 40px 0 20px;
}

.entry-content p {
  margin-bottom: 20px;
}

.entry-content ul,
.entry-content ol {
  margin: 0 0 20px 1.5em;
}

.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }

/* ------------------------------------------------
   WordPress コアブロック上書き
   ------------------------------------------------ */
.wp-block-image img {
  border-radius: 0;
}

/* ------------------------------------------------
   求人ページ
   ------------------------------------------------ */
.recruit-lead__text {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 2;
  color: var(--color-brown);
  max-width: 800px;
}

.recruit-jobs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 32px);
}

.recruit-job__item {
  background-color: var(--color-white);
  border: 2px solid var(--color-footer-bg);
  border-radius: 8px;
  overflow: hidden;
}

.recruit-job__header {
  background-color: var(--color-salmon);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.recruit-job__badge {
  display: inline-block;
  background-color: rgba(255,255,255,0.25);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
}

.recruit-job__title {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.4;
}

.recruit-job__detail {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recruit-job__row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px;
  font-size: 14px;
  line-height: 1.7;
}

.recruit-job__row dt {
  font-weight: 700;
  color: var(--color-brown);
  white-space: nowrap;
}

.recruit-job__row dd {
  color: var(--color-brown);
}

/* 職場環境 */
.section--recruit-env {
  background-color: var(--color-cream);
}

.recruit-env__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
}

.recruit-env__item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.recruit-env__icon {
  font-size: 36px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
}

.recruit-env__title {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  color: var(--color-brown);
  margin-bottom: 8px;
}

.recruit-env__text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-brown);
}

/* 応募 */
.recruit-apply {
  background-color: var(--color-salmon);
  padding: clamp(48px, 6vw, 80px) 0;
}

.recruit-apply__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.recruit-apply__inner .section__heading-en {
  color: rgba(255,255,255,0.75);
}

.recruit-apply__inner .section__heading-ja {
  color: var(--color-white);
  margin-bottom: 24px;
}

.recruit-apply__desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-white);
  margin-bottom: 24px;
}

.recruit-apply__tel-label {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 4px;
}

.recruit-apply__tel {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.04em;
  line-height: 1;
}

.recruit-apply__hours {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

.btn--recruit-apply {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-white);
  color: var(--color-salmon);
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 700;
  padding: 20px 40px;
  border-radius: 4px;
  white-space: nowrap;
  transition: opacity var(--transition-base);
}

.btn--recruit-apply:hover {
  opacity: 0.85;
}


/* ------------------------------------------------
   レスポンシブ: タブレット（768px以下）
   ------------------------------------------------ */
@media (max-width: 768px) {
  .staff__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service__item {
    width: 100%;
  }

  .about__points {
    row-gap: 32px;
    padding: 0 24px;
  }

  .about__point {
    grid-template-columns: 146px 1fr;
    gap: 15px;
    align-items: start;
  }

  .about__point--reverse {
    grid-template-columns: 146px 1fr;
  }

  .about__point--reverse .about__point-image,
  .about__point--reverse .about__point-body {
    order: unset;
  }

  .about__point-image {
    border-radius: 30px;
  }

  .about__point-image img {
    border-radius: 30px;
    height: auto;
  }

  .about__point-number {
    font-size: 20px;
    margin-bottom: 0;
  }

  .about__point-title {
    font-size: 16px;
    margin-bottom: 0;
    display: inline;
    margin-bottom: 16px;
  }

  .about__point-text {
    font-size: 12px;
    line-height: 1.45;
    display: inline;
  }

  /* 求人 */
  .recruit-jobs__grid {
    grid-template-columns: 1fr;
  }

  .recruit-apply__inner {
    grid-template-columns: 1fr;
  }

  .about__point-body,
  .about__point--reverse .about__point-body {
    padding: 0;
  }

}

/* ------------------------------------------------
   レスポンシブ: モバイル（768px以下）
   ------------------------------------------------ */
@media (max-width: 768px) {
  :root {
    --header-height: 80px;
  }

  .section--about {
    background-size: cover, 100% 100%;
  }

  /* ヘッダー */
  .site-header {
    height: 60px;
  }
  #page {
    margin-top: -60px;
  }
  .site-header__inner {
    height: 60px;
    padding: 8px 15px;
  }

  .site-header__tagline {
    display: block;
    font-size: 8px;
    margin-bottom: 2px;
  }

  .site-header__logo-link img,
  .site-header__logo-link .custom-logo {
    width: 128px;
    height: 30px;
  }

  .site-header__contact {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .hamburger-btn__label {
    display: block;
  }

  .header-nav {
    display: none;
  }

  /* セクション */
  .section {
    padding: 48px 0;
  }

  /* 事業所の特色 */
  .business__grid {
    gap: 40px;
  }

  /* スタッフ */
  .staff__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* サービス */
  .service__grid {
    gap: 8px;
  }

  .service__item {
    width: calc(50% - 4px);
  }

  .back-to-top {
    bottom: 16px;
    right: 16px;
  }

  /* 求人 */
  .recruit-jobs__grid {
    grid-template-columns: 1fr;
  }

  .recruit-job__row {
    grid-template-columns: 72px 1fr;
  }

  .recruit-apply__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .btn--recruit-apply {
    width: 100%;
    justify-content: center;
  }

  /* あきグループ SP（Figma: 440×449） */
  .aki-group {
    margin-top: 40px;
  }

  .aki-group__card {
    max-width: calc(100% - 24px); /* 416/440 ≒ 左端から右に余白 */
    min-height: auto;
    border-radius: 0 60px 60px 0;
    padding: 32px 24px;
  }

  .aki-group__heading {
    margin-bottom: 24px;
  }

  .aki-group__heading-en {
    font-size: 12px;
  }

  .aki-group__heading-ja {
    font-size: 24px;
  }

  .aki-group__content {
    flex-direction: column-reverse;
    gap: 24px;
    align-items: center;
  }

  .aki-group__text-block {
    width: 100%;
  }

  .aki-group__subtitle {
    font-size: 16px;
    font-weight: 500;
  }

  .aki-group__text {
    font-size: 12px;
  }

  .aki-group__image img {
    width: 278px;
    height: 189px;
    border-radius: 41px;
  }

  /* 運営方針 SP */
  .policy {
    min-height: auto;
    padding-bottom: 130px;
    margin-bottom: 100px;
  }

  .policy__card {
    width: calc(100% - 48px);
    max-width: none;
    min-height: auto;
    margin: 0 24px;
    padding: 32px 24px 48px;
    border-radius: 0 0 60px 60px;
  }

  .policy__title {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-brown);
    margin-bottom: 30px;
  }

  .policy__body {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
    color: var(--color-brown);
  }

}

@media (max-width: 480px) {
  .mv__slide img {
    height: 250px;
  }

  .service__item {
    width: calc(50% - 4px);
  }

  .staff__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================================
   スタッフ紹介 下層ページ
   ============================================================= */

/* MV セクション */
.staff-mv {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.staff-mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.staff-mv__hero {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 180px;
}

.staff-mv__hero img {
  width: 950px;
  max-width: 90%;
  height: auto;
  border-radius: 200px;
  object-fit: cover;
}

.staff-mv .mv-nav {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* =============================
   下層ページ MV（sub-mv）
   ============================= */
.sub-mv {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sub-mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.sub-mv__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 180px;
  padding-bottom: 40px;
  max-width: 1094px;
  margin: 0 auto;
  width: 100%;
}

.sub-mv__labels {
  position: absolute;
  left: calc(50% - 547px);
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  z-index: 2;
}

.sub-mv__label {
  display: inline-block;
  background-color: #D8716F;
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  padding: 13px 20px;
}

/* sub-mv タブレット */
@media (max-width: 1024px) and (min-width: 769px) {
  .sub-mv__content {
    display: block;
    position: relative;
    padding-top: 160px;
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
    max-width: 80%;
    width: 80%;
    margin: 0 auto;
  }
  .sub-mv__photo {
    width: 100%;
    flex-shrink: 1;
    min-width: 0;
  }
  .sub-mv__photo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 120px;
    display: block;
  }
  .sub-mv__labels {
    position: absolute;
    left: 0;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    z-index: 2;
  }
  .sub-mv__label {
    font-size: 24px;
    padding: 8px 14px;
    line-height: 1.4;
  }
  /* mv-nav タブレット: 画面幅にフィットさせる */
  .mv-nav {
    height: auto;
    margin: 40px 0;
  }
  .mv-nav__list {
    padding: 0 24px;
    gap: 20px;
    flex-wrap: wrap;
    row-gap: 12px;
  }
  .mv-nav__link {
    font-size: 14px;
    gap: 6px;
  }
  .mv-nav__link img {
    max-width: 20px;
    max-height: 20px;
  }
}

.sub-mv__photo {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.sub-mv__photo img {
  width: 950px;
  max-width: 100%;
  height: auto;
  border-radius: 200px;
  object-fit: cover;
  display: block;
}

.sub-mv .mv-nav {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* 写真のない sub-mv（お問い合わせ / プライバシーポリシー）
   mv-nav がヘッダーと重ならないよう padding-top を確保 */
.sub-mv--contact,
.sub-mv--privacy {
  padding-top: 120px;
  padding-bottom: 40px;
}

@media (max-width: 1024px) and (min-width: 769px) {
  .sub-mv--contact,
  .sub-mv--privacy {
    padding-top: 100px;
    padding-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .sub-mv--contact,
  .sub-mv--privacy {
    padding-top: 80px;
    padding-bottom: 20px;
  }
}

/* =============================
   サービス下層ページ（service-page）
   ============================= */
.service-page {
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
  background: linear-gradient(to bottom, transparent 50%, #ffffff 50%);
}

@media (min-width: 1920px) {
  .service-page {
    padding-bottom: 340px;
  }
}

.service-page__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.service-page__bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.service-page__inner {
  position: relative;
  z-index: 1;
  max-width: 1233px;
  margin: 0 auto;
  padding: 0 40px;
}

.service-page__heading {
  text-align: center;
  padding: 120px 0 60px;
}

.service-page__heading-en {
  font-size: 20px;
  font-weight: 400;
  color: #F29798;
  line-height: 1.45;
  margin-bottom: 0;
}

.service-page__heading-ja {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-brown);
  line-height: 1.45;
}

/* サービス内容カード */
.service-detail {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 66px 67px;
  display: flex;
  gap: 60px;
}

.service-detail__header {
  display: flex;
  align-items: baseline;
  gap: 13px;
  flex-shrink: 0;
}

.service-detail__icon {
  display: flex;
  align-items: center;
}

.service-detail__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-brown);
  white-space: nowrap;
}

.service-detail__table {
  flex: 1;
  margin: 0;
}

.service-detail__row {
  display: flex;
  align-items: flex-start;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  margin-top: -1px;
  padding: 15px 20px;
}

.service-detail__label {
  width: 164px;
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-brown);
  line-height: 1.5;
}

.service-detail__value {
  flex: 1;
  font-size: 20px;
  font-weight: 400;
  color: var(--color-brown);
  line-height: 1.5;
  margin: 0;
}

/* =============================
   1日の流れ & よくある質問
   ============================= */
.service-info {
  display: flex;
  gap: 90px;
  margin: 80px 0px 150px 0px;
  align-items: flex-start;
}

.service-info__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-info__col--schedule {
  flex: 0 0 444px;
  max-width: 444px;
}

.service-info__col--faq {
  flex: 1;
  min-width: 0;
}

.service-info__heading {
  display: flex;
  align-items: center;
  gap: 13px;
}

.service-info__icon {
  width: 24px;
  height: auto;
  flex-shrink: 0;
}

.service-info__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-brown);
  line-height: 1.4;
  margin: 0;
}

/* 1日の流れ */
.service-schedule {
  width: 100%;
}

.service-schedule__img {
  width: 100%;
  height: auto;
  display: block;
}

/* よくある質問 */
.service-faq {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-faq__item {
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: solid #F29798 1px;
}

.service-faq__q {
  background-color: #F29798;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  padding: 16px 24px;
}

.service-faq__a {
  color: var(--color-brown);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  padding: 16px 24px;
}

/* サービスページ SP */
@media (max-width: 768px) {
  .service-page__inner {
    padding: 0 24px;
  }
  .service-page__heading {
    padding: 60px 0 30px;
  }
  .service-page__heading-en {
    font-size: 12px;
  }
  .service-page__heading-ja {
    font-size: 24px;
  }
  .service-detail {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-radius: 30px;
  }
  .service-detail__header {
    gap: 10px;
  }
  .service-detail__icon svg {
    width: 18px;
    height: 18px;
  }
  .service-detail__title {
    font-size: 20px;
  }
  .service-detail__table {
    width: 100%;
  }
  .service-detail__row {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 15px 0;
    border-top: none;
    border-bottom: 1px solid #000000;
    margin-top: 0;
  }
  .service-detail__row:first-child {
    border-top: 1px solid #000000;
  }
  .service-detail__label {
    width: 100px;
    font-size: 14px;
    font-weight: 500;
  }
  .service-detail__value {
    font-size: 12px;
    line-height: 1.5;
  }
  .service-info {
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
  }
  .service-info__col--schedule,
  .service-info__col--faq {
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
  }
  .service-info__heading {
    gap: 10px;
  }
  .service-info__icon {
    width: 18px;
  }
  .service-info__title {
    font-size: 20px;
  }
  .service-faq {
    gap: 12px;
  }
  .service-faq__q {
    font-size: 14px;
    padding: 10px 16px;
  }
  .service-faq__a {
    font-size: 12px;
    padding: 12px 16px;
  }
}

/* サービスページ タブレット */
@media (max-width: 1024px) and (min-width: 769px) {
  .service-detail {
    flex-direction: column;
    gap: 24px;
    padding: 40px 40px;
  }
  .service-detail__header {
    gap: 10px;
  }
  .service-detail__title {
    font-size: 24px;
    white-space: normal;
  }
  .service-detail__table {
    width: 100%;
  }
  .service-info {
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
  }
  .service-info__col--schedule,
  .service-info__col--faq {
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
  }
  .service-info__col--schedule {
    align-items: center;
  }
  .service-schedule {
    max-width: 444px;
    margin: 0 auto;
  }
  .service-info__title {
    font-size: 24px;
  }
  .service-faq__q,
  .service-faq__a {
    font-size: 16px;
    padding: 12px 18px;
  }
}

/* =============================
   お問い合わせページ
   ============================= */
.contact-page {
  position: relative;
  overflow: hidden;
  padding-bottom: 120px;
  background: linear-gradient(to bottom, transparent 50%, #ffffff 50%);
}
.contact-page__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.contact-page__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact-page__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
}
.contact-page__heading,
.privacy-page__heading {
  text-align: center;
  padding: 120px 0 60px;
}
.contact-page__heading-en,
.privacy-page__heading-en {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-pink);
  margin: 0 0 8px;
}
.contact-page__heading-ja,
.privacy-page__heading-ja {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-brown);
  margin: 0;
}

.contact-card {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 60px 67px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.contact-card__lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-brown);
  margin: 0 0 16px;
}
.contact-card__note {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-brown);
  margin: 0 0 40px;
}
.contact-card__note a {
  color: var(--color-salmon);
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-form__row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.contact-form__label {
  flex: 0 0 200px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-brown);
  line-height: 1.5;
  padding-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.contact-form__required,
.contact-form__optional {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  line-height: 1;
}
.contact-form__required {
  background-color: var(--color-pink);
  color: #ffffff;
}
.contact-form__optional {
  background-color: #E8E8E8;
  color: var(--color-brown);
}
.contact-form__field {
  flex: 1;
  min-width: 0;
}
.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  font-size: 16px;
  font-family: inherit;
  color: var(--color-brown);
  background-color: #F9F7EA;
  border: 1px solid #E5E0D0;
  border-radius: 8px;
  padding: 14px 16px;
  line-height: 1.6;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--color-pink);
  background-color: #ffffff;
}
.contact-form__field textarea {
  resize: vertical;
  min-height: 180px;
}
.contact-form__hint {
  font-size: 12px;
  color: #888;
  margin: 6px 0 0;
}
.contact-form__err-msg {
  font-size: 13px;
  color: #C0392B;
  margin: 6px 0 0;
  font-weight: 500;
}
.contact-form__success {
  background-color: #E8F5E9;
  color: #2E7D32;
  border-radius: 8px;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}
.contact-form__error {
  background-color: #FDECEA;
  color: #C0392B;
  border-radius: 8px;
  padding: 16px 24px;
  margin-bottom: 20px;
  font-size: 14px;
}
.contact-form__error p {
  margin: 4px 0;
}

.contact-form__actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.contact-form__reset,
.contact-form__submit {
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  border-radius: 999px;
  padding: 14px 40px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: none;
}
.contact-form__reset {
  background-color: #ffffff;
  color: var(--color-brown);
  border: 1px solid var(--color-brown);
  min-width: 160px;
}
.contact-form__submit {
  background-color: var(--color-pink);
  color: #ffffff;
  min-width: 220px;
}
.contact-form__reset:hover,
.contact-form__submit:hover {
  opacity: 0.85;
}
.contact-form__submit:active {
  transform: translateY(1px);
}

/* お問い合わせ タブレット */
@media (max-width: 1024px) and (min-width: 769px) {
  .contact-page__inner {
    padding: 0 24px;
    max-width: 720px;
  }
  .contact-page__heading,
  .privacy-page__heading {
    padding: 100px 0 40px;
  }
  .contact-card {
    padding: 40px 40px;
  }
  .contact-form__label {
    flex: 0 0 160px;
    font-size: 14px;
  }
}

/* お問い合わせ SP */
@media (max-width: 768px) {
  .contact-page {
    padding-bottom: 60px;
  }
  .contact-page__inner {
    padding: 0 20px;
  }
  .contact-page__heading,
  .privacy-page__heading {
    padding: 100px 0 30px;
  }
  .contact-page__heading-en,
  .privacy-page__heading-en {
    font-size: 12px;
  }
  .contact-page__heading-ja,
  .privacy-page__heading-ja {
    font-size: 24px;
  }
  .contact-card {
    padding: 28px 20px;
    border-radius: 20px;
  }
  .contact-card__lead {
    font-size: 14px;
  }
  .contact-card__note {
    font-size: 12px;
    margin-bottom: 28px;
  }
  .contact-form {
    gap: 20px;
  }
  .contact-form__row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .contact-form__label {
    flex: 0 0 auto;
    padding-top: 0;
    font-size: 14px;
  }
  .contact-form__field input,
  .contact-form__field textarea {
    font-size: 15px;
    padding: 12px 14px;
  }
  .contact-form__field textarea {
    min-height: 140px;
  }
  .contact-form__actions {
    flex-direction: column-reverse;
    gap: 12px;
  }
  .contact-form__reset,
  .contact-form__submit {
    width: 100%;
    min-width: 0;
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* =============================
   プライバシーポリシーページ
   ============================= */
.privacy-page {
  position: relative;
  overflow: hidden;
  padding-bottom: 120px;
  background: linear-gradient(to bottom, transparent 50%, #ffffff 50%);
}
.privacy-page__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.privacy-page__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.privacy-page__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
}
.privacy-card {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 60px 67px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.privacy-list {
  list-style: none;
  counter-reset: privacy;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.privacy-list__item {
  counter-increment: privacy;
}
.privacy-list__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-brown);
  line-height: 1.5;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-pink);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.privacy-list__title::before {
  content: counter(privacy) ".";
  color: var(--color-pink);
  font-weight: 700;
  font-size: 22px;
  flex-shrink: 0;
}
.privacy-list__body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-brown);
}
.privacy-list__body p {
  margin: 0 0 12px;
}
.privacy-list__body p:last-child {
  margin-bottom: 0;
}
.privacy-list__contact {
  margin-top: 12px !important;
  font-weight: 700;
}

/* プライバシーポリシー タブレット */
@media (max-width: 1024px) and (min-width: 769px) {
  .privacy-page__inner {
    padding: 0 24px;
    max-width: 720px;
  }
  .privacy-card {
    padding: 40px 40px;
  }
  .privacy-list__title {
    font-size: 18px;
  }
  .privacy-list__body {
    font-size: 14px;
  }
}

/* プライバシーポリシー SP */
@media (max-width: 768px) {
  .privacy-page {
    padding-bottom: 60px;
  }
  .privacy-page__inner {
    padding: 0 20px;
  }
  .privacy-card {
    padding: 28px 20px;
    border-radius: 20px;
  }
  .privacy-list {
    gap: 28px;
  }
  .privacy-list__title {
    font-size: 16px;
    gap: 8px;
    padding-bottom: 8px;
  }
  .privacy-list__title::before {
    font-size: 18px;
  }
  .privacy-list__body {
    font-size: 13px;
    line-height: 1.8;
  }
}

/* スタッフ一覧セクション */
.staff-page {
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
  height: 2000px;
  background: linear-gradient(to bottom, transparent 50%, #ffffff 50%);
}

.staff-page__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.staff-page__bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  background-repeat: repeat-x;
}

.staff-page__inner {
  position: relative;
  z-index: 1;
  max-width: 1046px;
  margin: 0 auto;
  padding: 0 40px;
}

.staff-page__heading {
  text-align: center;
  padding: 120px 0 60px;
}

.staff-page__heading-en {
  font-size: 20px;
  font-weight: 400;
  color: #F29798;
  line-height: 1.45;
  margin-bottom: 0;
}

.staff-page__heading-ja {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-brown);
  line-height: 1.45;
}

.staff-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 60px;
}

.staff-page__item {
  display: flex;
  flex-direction: column;
}

.staff-page__photo {
  overflow: hidden;
  aspect-ratio: 220 / 330;
  margin-bottom: 20px;
}

.staff-page__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.staff-page__item:hover .staff-page__photo img {
  transform: scale(1.03);
}

.staff-page__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 16px;
  text-align: center;
}

.staff-page__role {
  font-size: 32px;
  font-weight: 400;
  color: var(--color-brown);
  line-height: 1.45;
  margin-bottom: 20px;
}

.staff-page__name {
  font-size: 32px;
  font-weight: 400;
  color: var(--color-brown);
  line-height: 1.45;
}

/* スタッフページ SP */
@media (max-width: 768px) {
  .staff-mv {
    height: auto;
    min-height: 400px;
  }
  .staff-mv__hero {
    padding-top: 70px;
    padding-bottom: 20px;
  }
  .staff-mv__hero img {
    width: 90%;
    border-radius: 80px;
  }
  .staff-mv .mv-nav {
    display: none;
  }
  /* sub-mv SP */
  .sub-mv__content {
    padding-top: 120px;
    padding-bottom: 20px;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
    max-width: 90%;
    margin: 0 auto;
  }
  .sub-mv__labels {
    position: absolute;
    left: 2%;
    bottom: 36px;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    z-index: 2;
  }
  .sub-mv__label {
    font-size: 14px;
    padding: 3px 10px;
    line-height: 1.4;
  }
  .sub-mv__photo {
    flex-shrink: 1;
    min-width: 0;
  }
  .sub-mv__photo img {
    width: 100%;
    max-width: 85%;
    border-radius: 65px;
    margin: auto;
  }
  .sub-mv .mv-nav {
    display: none;
  }
  .staff-page {
    height: auto;
  }
  .staff-page__inner {
    padding: 0 24px;
  }
  .staff-page__heading {
    padding: 60px 0 30px;
  }
  .staff-page__heading-en {
    font-size: 12px;
  }
  .staff-page__heading-ja {
    font-size: 24px;
  }
  .staff-page__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 16px;
  }
  .staff-page__role {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .staff-page__name {
    font-size: 16px;
  }
}
