/* ===========================
   CSS Variables & Reset
=========================== */
:root {
  --color-main-pink: #F8AEA1;
  --color-main-pink-light: #fce8e4;
  --color-main-pink-pale: #fdf5f3;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-white: #ffffff;
  --font-mincho: 'Shippori Mincho', serif;
  --font-gothic: 'Zen Maru Gothic', sans-serif;
  --font-din: 'DIN Alternate', 'Arial', sans-serif;
  --max-width: 1120px;
  --section-padding: 120px 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-gothic);
  color: var(--color-text);
  line-height: 2.0;
  letter-spacing: 0.05rem;
  font-size: 16px;
  background-color: var(--color-white);
}

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

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

ul {
  list-style: none;
}

/* ===========================
   共通スタイル
=========================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: var(--font-mincho);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 600;
  text-align: left;
  margin-bottom: 48px;
  letter-spacing: 0.08em;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--color-main-pink);
  margin: 24px 0 0;
}

.btn {
  display: inline-block;
  padding: 14px 48px;
  background-color: transparent;
  /* 色を透明に */
  background-image: url('img/btn_bg.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: var(--color-white);
  font-family: var(--font-mincho);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: 50px;
  border: none;
  /* 枠線をなくす */
  transition: opacity 0.2s ease, transform 0.5s ease;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  opacity: 0.85;
  transform: translateY(-3px);
}

.btn--outline {
  background-color: transparent;
  border: 1.5px solid var(--color-main-pink);
  color: var(--color-main-pink);
}

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

/* ===========================
   Header
=========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(248, 174, 161, 0.2);
  transition: background-color 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

/* indexページのみ透明スタート */
.page-index .header {
  background-color: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(248, 174, 161, 0.2);
}

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

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo-img {
  height: 40px;
  /* ロゴの高さ。画像に合わせて調整してください */
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav a {
  font-size: 0.82rem;
  font-family: var(--font-mincho);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text);
  white-space: nowrap;
  transition: color 0.2s;
}

.header__nav a:hover {
  color: var(--color-main-pink);
}

.header__nav>.header__contact-btn {
  padding: 8px 20px;
  font-size: 0.8rem;
  color: var(--color-white)
}

.header__nav>.header__contact-btn:hover {
  color: var(--color-white);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  transition: all 0.3s;
}

/* SP用メニュー */
.sp-nav {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  padding: 0px 24px 32px;
  border-bottom: 1px solid var(--color-main-pink-light);
  z-index: 99;
  box-shadow: 64px 4px 16px rgba(0, 0, 0, 0.08);
  /* アニメーション用の初期状態 */
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sp-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sp-nav a {
  display: block;
  padding: 14px 0;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid var(--color-main-pink-light);
  letter-spacing: 0.05em;
}

.sp-nav a:last-child {
  border-bottom: none;
}

/* ===========================
   MV (メインビジュアル)
=========================== */
.mv {
  position: relative;
  /* 子要素のabsoluteの基準点 */
  max-width: 100%;
  height: 100vh;
  /* 画面の高さいっぱい */
  min-height: 600px;
  overflow: hidden;
  /* はみ出した部分を隠す */
}

/* ① 背景グラデーション画像：一番下 */
.mv__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

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

/* ② 左エリアに白グラデーションのベール */
.mv::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 255, 255, 0.72) 35%,
    rgba(255, 255, 255, 0.15) 55%,
    rgba(255, 255, 255, 0) 65%
  );
  pointer-events: none;
}

/* ③ 右側写真：背景の上、コンテンツの下 */
.mv__photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;  /* 常に画面幅の50% */
  height: 100%;
  z-index: 2;
  overflow: hidden;  /* border-radiusのはみ出しを隠す */
  border-radius: 50% 0 0 0;  /* 左上だけトリミング */
}

.mv__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mv__photo img.is-visible {
  transform: scale(1);
}

/* MVコピーはロゴより少し遅れて出現 */
.mv__copy.fade-in {
  transition-delay: 0.2s;
}

/* ④ 左側ロゴ・テキスト：一番上 */
.mv__content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1120px;
  padding: 40px 20px 64px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  overflow: hidden;
}

.mv__top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex-shrink: 1;
  min-height: 0;
  overflow: hidden;
}

.mv__logo {
  margin-bottom: 0;
  flex-shrink: 0;
}

.mv__logo-img {
  height: clamp(120px, 20vh, 240px);
  width: auto;
}

.mv__copy {
  font-family: var(--font-mincho);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.2em;
  color: var(--color-text);
  padding-top: 0;
}

/* PC専用：MV内のlead */
.mv__lead {
  position: relative;
  width: 100%;
  padding-top: 32px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 1;
  min-height: 0;
  overflow: hidden;
}

/* leadの上のボーダーライン（左半分のみ） */
.mv__lead::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% - 40px);
  height: 1px;
  background-color: rgba(248, 174, 161, 0.6);
}

.mv__lead-subtitle {
  font-family: var(--font-mincho);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.06em;
  color: var(--color-text);
}

.mv__lead-text {
  font-size: 0.92rem;
  line-height: 2;
  color: var(--color-text-light);
  margin-bottom: 40px;
  max-width: 560px;
}

/* headerロゴ：indexページのPC時のみスクロールまで非表示 */
.page-index .header__logo {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.page-index .header.scrolled .header__logo {
  opacity: 1;
  pointer-events: auto;
}

/* leadセクション：PCでは非表示 */
.lead {
  padding: var(--section-padding);
  background-color: var(--color-white);
  text-align: left;
  display: none; /* PCでは非表示 */
}

.lead__subtitle {
  font-family: var(--font-mincho);
  font-size: clamp(1.5rem, 2.5vw, 1.35rem);
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: 0.06em;
}

.lead__text {
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text-light);
  margin-bottom: 80px;
  max-width: 600px;
}

/* ===========================
   User Section (ご利用対象者)
=========================== */
.user {
  padding: var(--section-padding);
  position: relative;
}

.user::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(248, 174, 161, 0.2);
  z-index: 0;
}

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

.user__lead {
  font-family: var(--font-gothic);
  margin-bottom: 80px !important;
  text-align: left;
}

.user__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background-color: var(--color-main-pink-light);
  border-radius: 32px;
  overflow: hidden;
}

.user__card {
  background-color: var(--color-white);
  text-align: center;
  transition: background-color 0.3s ease;
}

.user__card:hover {
  background-color: var(--color-main-pink-pale);
}

.user__card-image {
  width: 100%;
  height: 150px;
  overflow: hidden;
  background-color: var(--color-main-pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-main-pink);
  font-size: 0.75rem;
  border-radius: 0;
  margin: 0;
  max-width: none;
  aspect-ratio: auto;
}

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

.user__card-text {
  padding: 20px 16px;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 400;
  background-color: transparent;
  border-radius: 0;
}

/* ===========================
   Service Section (サービス内容)
=========================== */
.service {
  padding: var(--section-padding);
  background-color: var(--color-white);
}

.service__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

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

/* フットケアカードは横幅いっぱい＆枠線つける*/
.service__card--wide {
  flex-direction: row;
  text-align: left;
  grid-column: 1 / -1;
  border: 1px solid var(--color-main-pink);
  border-radius: 40px;
  background-color: rgba(252, 232, 229, 0.2);
  padding: 32px 40px;
  justify-content: space-between;
}

.service__card--wide_column {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-direction: row;
}

.service__card-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service__card-icon img {
  width: 160px;
  height: auto;
  object-fit: contain;
}

/* フットケアカードの画像は大きめ*/
.service__card_footcare {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service__card_footcare img {
  width: auto;
  height: 160px;
  object-fit: contain;
}

.service__card-body h3 {
  font-family: var(--font-mincho);
  font-size: 1rem; /* 16px */
  font-weight: 500;
  margin-bottom: 16px;
}

.service__card-body h3::after {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background-color: var(--color-main-pink);
  margin: 16px auto;
}

.service__card-body p {
  font-size: 0.85rem; /* 13.6px */
  color: var(--color-text-light);
  line-height: 1.6;
}

.service__cta {
  text-align: center;
  align-self: center;
}

/* タイル一覧（5枚横並び） */
.service__tile-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background-color: var(--color-main-pink-light);
  border: 1px solid var(--color-main-pink-light);
  border-radius: 40px;
  overflow: hidden;
  margin-top: 24px;
}

.service__card--tile {
  background-color: var(--color-white);
  padding: 32px 16px;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: background-color 0.2s;
  border-radius: 0;
}

.service__card--tile:hover {
  background-color: var(--color-main-pink-pale);
}

.service__card--tile .service__card-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.service__card--tile .service__card-body h3 {
  font-size: 0.9rem;
}

.service__card--tile .service__card-body h3::after {
  display: none;
}


/* --- サービス：新レイアウト（フィーチャー＋タイル） --- */
.service__feature {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  background-color: var(--color-main-pink-pale);
  border: 1px solid var(--color-main-pink-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 24px;
}

.service__feature-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  min-height: 240px;
}

.service__feature-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.service__feature-body {
  padding: 40px 48px 40px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service__feature-badge {
  display: inline-block;
  width: fit-content;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--color-main-pink);
  border: 1px solid var(--color-main-pink);
  padding: 3px 12px;
  border-radius: var(--radius-pill);
}

.service__feature-title {
  font-family: var(--font-mincho);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.service__feature-text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.9;
}

.service__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background-color: var(--color-main-pink-light);
  border: 1px solid var(--color-main-pink-light);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.service__item {
  background-color: var(--color-white);
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  transition: background-color 0.25s;
}

.service__item:hover {
  background-color: var(--color-main-pink-pale);
}

.service__item-img {
  width: 80px;
  height: 80px;
}

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

.service__item-body h3 {
  font-family: var(--font-mincho);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.service__item-body p {
  font-size: 0.78rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ===========================
   System Section (運営について)
=========================== */
.system {
  padding: var(--section-padding);
  position: relative;
}

.system::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(248, 174, 161, 0.2);
  z-index: 0;
}

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

/* 体制・特徴 */
.system__feature {
  background-color: var(--color-white);
  border-radius: 40px;
  padding: 40px;
  margin-bottom: 24px;
}

.system__sub-title {
  font-family: var(--font-mincho);
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1.5px solid var(--color-main-pink-light);
}

.system__feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.system__feature-image {
  width: 100%;
  height: auto;
  border-radius: 16px 16px 0px 0px;
  overflow: hidden;
}

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

.system__feature-txt {
  font-weight: 400;
  padding: 24px;
  background-color: rgba(252, 232, 229, 0.2);
  border-radius: 0px 0px 16px 16px;
}

.system__feature-txt h4{
  font-family: var(--font-mincho);
  font-weight: 600;
}

.system__feature-txt h4::after {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background-color: var(--color-main-pink);
  margin: 8px 0px;
}

.system__feature-txt p{
  font-size: .85em;
}


/* エリア＆スタッフ 2カラム */
.system__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.system__area,
.system__staff {
  background-color: var(--color-white);
  border-radius: 40px;
  padding: 40px;
}

.system__area-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.system__area-map {
  width: 200px;
  height: 200px;
  overflow: hidden;
  /* はみ出した部分を隠す */
  background-image: url(img/bg_img.jpg);
  border-radius: 32px;
  flex-shrink: 0;
}

.system__area-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left bottom;  /* 左下を基準に表示 */
  transform: scale(1.5);  /* 150%に拡大 */
  transform-origin: left bottom;  /* 拡大の基準点を左下に */
}

.system__area-info dt {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-main-pink);
  margin-top: 12px;
  margin-bottom: 4px;
}

.system__area-info dt:first-child {
  margin-top: 0;
}

.system__area-info dd {
  font-size: 0.85rem;
  line-height: 1.7;
}

.system__staff-content {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.system__staff-textarea {
  display: flex;
  flex-direction: column; /* 縦並びにする */
  justify-content: space-between;
}

.system__staff-image {
  width: 200px;
  height: 200px;
  overflow: hidden;
  /* はみ出した部分を隠す */
  background-image: url(img/bg_img.jpg);
  border-radius: 32px;
  flex-shrink: 0;
  }

.system__staff-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
}

.system__staff-text {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

/* ===========================
   Steps Section (ご利用の流れ)
=========================== */
.steps {
  padding: var(--section-padding);
  background-color: var(--color-white);
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background-color: var(--color-main-pink-light);
  border: solid 2px var(--color-main-pink-light);
  border-radius: 32px;
  overflow: hidden;
}

.steps__card {
  background-color: var(--color-white);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: background-color 0.3s ease;
}

.steps__card:hover {
  background-color: var(--color-main-pink-pale);
}

.steps__card-num {
  font-family: var(--font-din);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-main-pink-light);
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.steps__card:hover .steps__card-num {
  color: var(--color-main-pink);
}

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

.steps__card-title {
  font-family: var(--font-mincho);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 600;
  line-height: 1.8;
  color: var(--color-text);
  letter-spacing: 0.05em;
}

.steps__card-text {
  font-size: 0.88rem;
  line-height: 2;
  color: var(--color-text-light);
}

.steps__cta {
  text-align: center;
}

/* ===========================
   Contact Section (お問い合わせ)
=========================== */
.contact {
  padding: var(--section-padding);
  background-image: url('img/bg_img.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(253, 245, 243, 0.9);
}

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

/* 左右2カラム */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ===== 左カラム ===== */
.contact__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* 各帯（TEL / FAX / Email） */
.contact__item {
  display: flex;
  align-items: stretch;
  border-radius: 50px 0 0 50px;
  overflow: hidden;
  background-color: var(--color-white);
}

/* タイトルエリア（左側35%・左半円） */
.contact__label {
  width: 35%;
  flex-shrink: 0;
  background-image: url('img/btn_bg.webp');
  background-size: cover;
  background-position: center;
  border-radius: 50px 0 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  letter-spacing: .3em;
}

.contact__label span {
  font-family: var(--font-gothic);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-shadow: 1px 1px 5px #F25E44;
}

/* アイコン画像 */
.contact__icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: drop-shadow(1px 1px 5px #F25E44);
}

/* テキストエリア（右側） */
.contact__value {
  flex: 1;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 24px;
}

.contact__value a,
.contact__value p {
  font-family: var(--font-din);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-text);
}

.contact__value .contact_tel_text {
  font-family: var(--font-mincho);
  font-size: 12px;
}

/* ===== 右カラム ===== */
.contact__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* LINE / Instagram の各アイテム */
.contact__sns-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* LINE / Instagram のタイトル帯（両側丸める） */
.contact__sns-item .contact__label {
  width: 100%;
  border-radius: 50px;
}

/* QRコードエリア */
.contact__qr {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
}

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

/* ===========================
   Overview Section (ステーション概要)
=========================== */
.overview {
  padding: var(--section-padding);
  background-color: var(--color-white);
}

/* 左右2カラム */
.overview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.overview__table {
  width: 100%;
}

.overview__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-main-pink-light);
  font-size: 0.9rem;
}

.overview__row:first-child {
  border-top: 1px solid var(--color-main-pink-light);
}

.overview__th {
  font-weight: 600;
  color: var(--color-main-pink);
}

.overview__td {
  line-height: 1.8;
}

/* 右カラム：住所 + マップ */
.overview__map-col {
  display: flex;
  flex-direction: column;
}

.overview__map {
  flex: 1;
  min-height: 300px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 16px;
}

.overview__map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
}

/* ===========================
   Animation
=========================== */

/* ① 下からフワッと（各セクション用） */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ② 左からスライドイン（MVのロゴ・コピー用） */
.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* MVコピーは少し遅れて出現（ロゴの後に表示） */
.mv__copy.slide-in-left {
  transition-delay: 0.2s;
}

/* ③ 右からスライドイン（MV背景用） */
.slide-in-right {
  /* MV全体ではなく背景画像の位置をずらして演出 */
  background-position: calc(center + 40px) right;
  transition: background-position 1s ease;
}

.slide-in-right.is-visible {
  background-position: center right;
}

/* ===========================
   Footer
=========================== */
.footer {
  background-color: var(--color-main-pink);
  color: var(--color-white);
  padding: 48px 20px 32px;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}


.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__logo-img {
  height: 60px;
  /* ロゴの高さ。画像に合わせて調整してください */
  width: auto;
}

.footer__address {
  font-size: 0.82rem;
  line-height: 2;
  opacity: 0.9;
}

.footer__nav-title {
  font-family: var(--font-mincho);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}

.footer__nav-list {
  display: grid;
  grid-template-columns: repeat(3, auto); /* 1行3列 */
  gap: 24px 24px; /* 縦10px 横24px */
}

.footer__nav-list a {
  font-size: 0.82rem;
  opacity: 0.85;
  transition: opacity 0.2s;
  position: relative;

}

.footer__nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-white);
  transition: width 0.3s ease;
}

.footer__nav-list a:hover::after {
  width: 100%;
}

.footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.8;
}

/* ===========================
   PC / SP 表示切り替え
=========================== */
.sp { display: none; }
.pc { display: block; }

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

  /* ===== PC/SP 切り替え ===== */
  .sp { display: block; }
  .pc { display: none; }

  /* ===== 全体 ===== */
  :root {
    --section-padding: 40px 0;
  }

  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  .container {
    padding: 0 24px;
  }

  .section-title {
    margin-bottom: 24px;
  }
  
  .section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--color-main-pink);
    margin: 16px 0 0;
  }

  /* ===== Header SP ===== */

  .header__inner {
    height: 64px;
    padding: 0 16px;
  }

  .header__nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* indexページSP：写真エリア通過前はロゴ非表示・ハンバーガーは白 */
  .page-index .header__logo {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .page-index .hamburger span {
    background-color: var(--color-white);
    transition: background-color 0.4s ease, transform 0.3s, opacity 0.3s;
  }

  /* 写真エリア通過後：ロゴ表示・背景出現・ハンバーガーは通常色 */
  .page-index .header.photo-passed .header__logo {
    opacity: 1;
    pointer-events: auto;
  }

  .page-index .header.photo-passed {
    background-color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(248, 174, 161, 0.2);
  }

  .page-index .header.photo-passed .hamburger span {
    background-color: var(--color-text);
  }

  /* indexページSP：scrolledはphoto-passedに統合するため無効化 */
  .page-index .header.scrolled:not(.photo-passed) {
    background-color: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
  }

  /* ===== MV ===== */
  .mv {
    height: 100svh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  /* 上半分：写真エリア */
  .mv__photo {
    position: absolute;
    top: 0;
    left: 24px; /* 左端24pxの余白 */
    right: 0;
    height: 56%;
    width: calc(100% - 24px);
    border-radius: 0 0 0 30%; /* 左下のみ角丸 */
    z-index: 2;
  }

  .mv__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.36);
  }

  /* 下半分：テキストエリア */
  .mv__content {
    position: absolute;
    top: 56%;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    max-width: none;
    padding: 32px 24px 40px;
    padding-top: 32px; /* SP時はPC用のpadding-topをリセット */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    z-index: 3;
  }

  .mv__logo {
    margin-bottom: 0;
  }

  /* SP用横ロゴ：大きめに表示 */
  .mv__logo-img--sp {
    height: 64px;
    width: auto;
    display: block;
  }

  .mv__logo-img {
    display: none;
  }

  .mv__copy {
    font-size: 1.95rem;
    letter-spacing: 0.15em;
    line-height: 1.8;
    margin: 0;
  }

  /* indexページSP：headerロゴはphoto-passedで表示（PCのscrolled制御を上書き） */
  .page-index .header__logo {
    opacity: 0;
    pointer-events: none;
  }

  .page-index .header.photo-passed .header__logo {
    opacity: 1;
    pointer-events: auto;
  }

  .page-index .header.scrolled .header__logo {
    opacity: 1;
  pointer-events: auto;
}

  /* SP時：leadセクションを表示に戻す */
  .lead {
    display: block;
  }

  /* ===== Lead ===== */
  .lead__subtitle {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .lead__text {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  /* ===== User ===== */
  .user__lead {
    font-size: 0.9rem;
    margin-bottom: 16px !important;
  }

  .user__grid {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 24px;
  }

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

  .user__card-image {
    width: 100%;
    height: 120px;
    flex-shrink: 0;
    border-radius: 0;
  }

  .user__card-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.88rem;
    padding: 16px 12px;
  }

  /* ===== Service ===== */

  /* フットケアカード：縦積みに変更 */
  .service__card--wide {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
    border-radius: 24px;
    align-items: flex-start;
  }

  .service__card--wide_column {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .service__card_footcare{
  width: 100%;       
  } 

  .service__card_footcare img {
    width: 240px;
  }

  .service__card-body h3 {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .service__card-body h3::after {
    margin: 12px 0;
  }

  .service__cta {
    width: 100%;
  }

  .service__cta .btn {
    width: 100%;
    display: block;
  }

  /* タイル5枚：2列グリッドに変更 */
  .service__tile-grid {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 16px;
    margin-top: 12px;
  }

  /* 最後の1枚（5枚目）は全幅 */
  .service__tile-grid .service__card--tile:last-child {
    grid-column: 1 / -1;
  }

  .service__card--tile {
    padding: 24px 16px;
  }

  .service__card--tile .service__card-icon img {
    width: 56px;
    height: 56px;
  }

  .service__card--tile .service__card-body h3 {
    font-size: 1rem; /* 16px */
    line-height: 1.5;
  }

  .service__card-body p {
    font-size: 0.906rem; /* 14.5px */
  }

  .service__feature {
    grid-template-columns: 1fr;
  }

  .service__feature-body {
    padding: 24px 20px 28px;
  }

  .service__feature-img {
    min-height: 180px;
  }

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


  /* ===== System ===== */
  .system__feature {
    padding: 16px;
    border-radius: 20px;
    margin-bottom: 16px;
  }

  .system__sub-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  .system__feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .system__feature-txt {
    padding: 16px;
  }  

  .system__bottom {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .system__area,
  .system__staff {
    padding: 16px;
    border-radius: 20px;
  }

  .system__area-content {
    flex-direction: column-reverse;
    gap: 16px;
  }

  .system__area-map {
    width: 100%;
    height: 240px;
  }

  .system__staff-content{
    flex-direction: column-reverse;
    gap: 16px;
  }

  .system__staff-image{
    height: 240px;
    width: auto;
    border-radius: 16px;
    justify-content: center;
  }

  .system__staff-image img {
    object-position: center top;
  }
  
  .system__staff-text{
    margin-bottom: 8px;
  }
  
  .system__staff-textarea > a{
    padding: 4px 8px;
  }

  .staff__btn{
    text-align: center;
  }


  /* ===== Steps ===== */
  .steps__grid {
    grid-template-columns: 1fr;
    border-radius: 24px;
    border: none;
  }

  .steps__card {
    padding: 32px 0px;
    gap: 20px;
  }

  .steps__card-num {
    font-size: 2.8rem;
  }

  .steps__cta {
    margin-top: 16px;
    text-align: center;
  }

  /* ===== Contact ===== */
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact__left {
    gap: 16px;
  }

  .contact__item {
    width: 100%;
    min-width: 0;
  }

  .contact__label {
    width: 30%;
    padding: 10px 8px;
    letter-spacing: 0.1em;
  }

  .contact__label span {
    font-size: 0.85rem;
  }

  .contact__value {
    padding: 10px 12px;
    min-width: 0;
    overflow: hidden;
  }

  .contact__value a,
  .contact__value p {
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .contact__value .contact_tel_text{
    font-size: 0.65em;
  }

  .contact__right {
    gap: 16px;
  }

  .contact__sns-item {
    gap: 16px;
  }

  /* ===== Overview ===== */
  .overview__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .overview__map-col {
    margin-top: 0;
  }

  /* ===== Footer ===== */
  .footer {
    padding: 24px 16px 24px;
  }

  .footer__inner {
    gap: 16px;
    margin-bottom: 16px;
    grid-template-columns: 1fr;
    align-items: center;
  }

  .footer__logo-img{
    height: 36px;
  }

  .footer__nav-list {
    grid-template-columns: repeat(3, auto);
    gap: 8px;
  }

  .footer__nav-title {
    margin-bottom: 16px;
  }
}

/* ===========================
   下層ページ共通スタイル
=========================== */
.lower-page {
  padding-top: 104px;
}

/* ===========================
   page-hero（下層ページ共通ヒーロー）
=========================== */
.page-hero {
  position: relative;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('img/bg_img.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.55);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero__title {
  font-family: var(--font-mincho);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-text);
}

/* 旧 lower-mv は他ページで使っている可能性があるため残す */
.lower-mv {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-main-pink-pale) 0%, #ffffff 100%);
  text-align: center;
  margin-bottom: 0;
}

.lower-mv__title {
  font-family: var(--font-mincho);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-text);
}

.section-padding {
  padding: 96px 0;
}

.highlight {
  color: var(--color-main-pink);
  font-weight: 700;
}

/* section-en：トップページ流用 */
.section-en {
  display: block;
  font-family: var(--font-din);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--color-main-pink);
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* section-title テキスト中央揃えバリエーション */
.section-title.text-center {
  text-align: center;
}

.section-title.text-center::after {
  margin: 24px auto 0;
}

/* ===========================
   1. 私たちについて (about.html)
=========================== */
.about-concept {
  background-color: var(--color-white);
  overflow: hidden;
  position: relative;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* 左右2カラム：左テキストは60%幅に固定、右は画像がabsoluteで重なる */
.about-concept__inner {
  display: grid;
  grid-template-columns: 60% 0;
  gap: 0;
  align-items: center;
}

/* テキスト列に上下パディングを持たせる */
.about-concept__text-col {
  padding: 96px 80px 96px 0;
}

/* 左：テキスト列 */
.about-concept__logo {
  width: 72px;
  margin-bottom: 32px;
}

.about-concept__meaning {
  font-family: var(--font-mincho);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.9;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-main-pink-light);
}

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

.about-concept__text {
  font-size: 0.92rem;
  line-height: 2.1;
  color: var(--color-text-light);
}

/* 右：写真列 */
.about-concept__image-col {
  position: absolute;
  top: 0;
  right: 0;
  left: calc(50% + 80px);
  bottom: 100px;
  overflow: hidden;
}

.about-concept__image-wrap {
  width: 100%;
  height: 100%;
  border-radius: 0 0 0 30%;
  overflow: hidden;
}

.about-concept__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% center;
  display: block;
}

/* 特徴セクション（リデザイン版） */
.about-features {
  background-color: rgba(253, 245, 243, 0.9);
}

.features-header {
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background-color: var(--color-main-pink-light);
  border-radius: 32px;
  overflow: hidden;
}

.features-card {
  background-color: var(--color-white);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: background-color 0.3s ease;
}

.features-card:hover {
  background-color: var(--color-main-pink-pale);
}

.features-card__num {
  font-family: var(--font-din);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-main-pink-light);
  letter-spacing: -0.02em;
  /* ホバーでピンクが濃くなる */
  transition: color 0.3s ease;
}

.features-card:hover .features-card__num {
  color: var(--color-main-pink);
}

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

.features-card__title {
  font-family: var(--font-mincho);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 600;
  line-height: 1.8;
  color: var(--color-text);
  letter-spacing: 0.05em;
}

.features-card__text {
  font-size: 0.88rem;
  line-height: 2;
  color: var(--color-text-light);
}

/* 旧レイアウト（他ページ流用のため残す） */
.about-features__inner {
  display: flex;
  align-items: stretch;
}

.about-features__content {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 64px;
  padding-left: max(20px, calc((100vw - 1120px) / 2 + 20px));
  padding-top: 100px;
  padding-bottom: 100px;
  box-sizing: border-box;
}

.feature-layout__image {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  overflow: hidden;
}

.feature-layout__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.feature-layout {
  display: block;
}

.feature-layout__text {
  width: 100%;
}
.feature-item {
  margin-bottom: 40px;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-item__title {
  font-family: var(--font-mincho);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.feature-item__title::before {
  content: '';
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background-color: var(--color-main-pink);
  border-radius: 50%;
  margin-top: 7px;
}

.feature-item__description {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.9;
  padding-left: 22px;
}

.feature-layout__image img {
  width: 100%;
  border-radius: 32px;
  object-fit: cover;
}

/* ===========================
   2. フットケア (footcare.html)
=========================== */

/* イントロ：aboutと同じ右上写真レイアウト */
.footcare-intro {
  background-color: var(--color-white);
  overflow: hidden;
  position: relative;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.footcare-intro__inner {
  display: grid;
  grid-template-columns: 60% 0;
  gap: 0;
  align-items: center;
}

.footcare-intro__text-col {
  padding: 96px 80px 96px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footcare-intro__text-col p {
  font-size: 0.92rem;
  line-height: 2.1;
  color: var(--color-text-light);
}

.footcare-intro__image-col {
  position: absolute;
  top: 0;
  right: 0;
  left: calc(50% + 80px);
  bottom: 100px;
  border-radius: 0 0 0 30%;
  overflow: hidden;
}

.footcare-intro__image-wrap {
  width: 100%;
  height: 150%;
  overflow: hidden;
}

.footcare-intro__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* recommend：5カラムのfeatures-grid */
.recommend-grid {
  grid-template-columns: repeat(5, 1fr);
}



.footcare-section-title {
  font-family: var(--font-mincho);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
}

.intro-flex__text p {
  color: var(--color-text-light);
  line-height: 2;
  margin-bottom: 16px;
}

.footcare-note {
  font-size: 0.82rem !important;
  color: var(--color-text-light);
  margin-top: 24px;
}

.intro-flex__image {
  overflow: hidden;
  border-radius: 0 40px 0 100px;
}

.intro-flex__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* 画像がない場合のフォールバック */
  background-color: var(--color-main-pink-light);
  min-height: 340px;
}

/* 画像なし時のプレースホルダー */
.intro-flex__image:not(:has(img[src])),
.intro-flex__image img[src="img/footcare_intro.jpg"] {
  background-color: var(--color-main-pink-light);
  aspect-ratio: 4/3;
}

/* 料金 */
.footcare-price {
  background-color: rgba(248, 174, 161, 0.12);
}

.price-box {
  background-color: var(--color-white);
  padding: 60px 80px;
  border-radius: 40px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 4px 32px rgba(248,174,161,0.15);
}

.price-list {
  margin-top: 8px;
}

.price-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px dotted var(--color-main-pink);
  font-size: 0.95rem;
}

.price-list__item:last-child {
  border-bottom: none;
}

.price-list__item dt {
  font-weight: 500;
}

.price-list__item dd {
  font-family: var(--font-mincho);
  font-size: 1.05rem;
  color: var(--color-main-pink);
  font-weight: 600;
}

.price-note {
  font-size: 0.82rem;
  margin-top: 24px;
  text-align: left;
  color: var(--color-text-light);
}

/* 専門スタッフ */
/* 専門スタッフ：縦スクロールレイアウト */
.footcare-specialist {
  background-color: var(--color-white);
}

/* 横マーキー帯：画面全幅・高さ固定・はみ出し非表示 */
.specialist-marquee {
  max-width: var(--max-width);
  margin: 0 auto;
  margin-top: 40px;
  padding: 0 20px;
  overflow: hidden;
  position: relative;
}

/* 左右フェード */
.specialist-marquee::before,
.specialist-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.specialist-marquee::before {
  left: 0px;
  background: linear-gradient(to right, var(--color-white), transparent);
}

.specialist-marquee::after {
  right: 0px;
  background: linear-gradient(to left, var(--color-white), transparent);
}

/* 横に並ぶトラック */
.specialist-marquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marqueeScroll 50s linear infinite;
  will-change: transform;
}

.specialist-marquee__track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 各画像カード：縦幅固定・横幅は画像の縦横比に追従 */
.specialist-marquee__item {
  width: auto;
  height: 240px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--color-main-pink-light);
}

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

/* テキスト */
.specialist-text {
  max-width: 640px;
}

.specialist-text p {
  color: var(--color-text-light);
  line-height: 2;
  margin-bottom: 16px;
}

/* こんな方におすすめ */
.footcare-recommend {
  background-color: rgba(248, 174, 161, 0.12);
}

.recommend-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.recommend-list li {
  background: var(--color-white);
  padding: 32px 16px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  font-size: 0.88rem;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.recommend-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(248,174,161,0.2);
}

.recommend-icon {
  display: block;
  width: 48px;
  height: 48px;
  background-color: var(--color-main-pink-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* お問い合わせ */
.footcare-contact {
  background-color: var(--color-white);
}

.footcare-contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
  align-items: stretch;
}

.footcare-tel-box,
.footcare-sns-box {
  background-color: var(--color-main-pink-pale);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footcare-tel-label,
.footcare-sns-label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.footcare-tel {
  font-family: var(--font-mincho);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footcare-tel:hover {
  color: var(--color-main-pink);
}

.footcare-tel-note {
  font-size: 0.82rem;
  color: var(--color-text-light);
}

.footcare-sns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  margin-top: 8px;
}

.footcare-sns-item {
  border-radius: 16px;
  padding: 20px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.footcare-sns-item--line {
  background-color: #06C755;
}

.footcare-sns-item--instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footcare-sns-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.footcare-area {
  margin-top: 40px;
  background-color: var(--color-main-pink-pale);
  border-radius: 20px;
  padding: 32px 40px;
  display: flex;
  justify-content: center;
}

.footcare-area__item {
  text-align: center;
}

.footcare-area__label {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
}

.footcare-area__text {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.9;
}

.footcare-area__text span {
  font-size: 0.82rem;
}

/* footcareページのみ contact 背景を白地に・valueに枠線を追加 */
.footcare-page .contact {
  background-image: none;
  background-color: var(--color-white);
}

.footcare-page .contact::before {
  background-color: transparent;
}

.footcare-page .contact__value {
  border: 1px solid var(--color-main-pink-light);
  border-radius: 0 8px 8px 0;
}

/* aboutページも contact 背景を白に */
.about-page .contact {
  background-image: none;
  background-color: var(--color-white);
}
.about-page .contact::before {
  background-color: transparent;
}

.about-page .contact__value {
  border: 1px solid var(--color-main-pink-light);
  border-radius: 0 8px 8px 0;
}

/* ===========================
   3. スタッフ紹介 (staff.html)
=========================== */
.staff-list {
  background-color: var(--color-white);
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background-color: var(--color-white);
  border-radius: 32px;
  overflow: hidden;
}

.staff-card + .staff-card {
  border-left: 1px solid #fff;
}

.staff-card + .staff-card .staff-card__content {
  border-left: 2px solid var(--color-main-pink-light);
}

.staff-card {
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  transition: background-color 0.3s ease;
}

.staff-card:hover {
  background-color: var(--color-main-pink-pale);
}

.staff-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--color-main-pink-light);
  flex-shrink: 0;
}

.staff-card__image img {
  width: 80%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
  margin: 0 auto;
}

.staff-card:hover .staff-card__image img {
  transform: scale(1.04);
}

.staff-card__content {
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.staff-name-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.staff-name {
  font-family: var(--font-mincho);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text);
}

.staff-role {
  font-size: 0.75rem;
  color: var(--color-white);
  background-color: var(--color-main-pink);
  padding: 3px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.staff-profile {
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.8;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-main-pink-light);
}

.staff-text {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--color-text-light);
}

/* ===========================
   下層ページ・レスポンシブ
=========================== */
@media (max-width: 768px) {
  .lower-page {
    padding-top: 64px; /* SPヘッダー高さ */
  }

  .section-padding {
    padding: 64px 0;
  }

  /* about-features専用containerはSPでも余白を確保 */

  .lower-mv,
  .page-hero {
    padding: 48px 0;
  }

  /* About concept SP */
  .about-concept__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .about-concept__text-col {
    padding: 48px 0 40px;
  }

  .about-concept__image-col {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    width: calc(100% + 24px); /* containerの左padding(24px)分だけ広げる */
    margin-left: -24px;
    height: 240px;
    overflow: hidden;
  }

  .about-concept__image-wrap {
    width: 100%;
    height: 100%;
    border-radius: 0 40px 0 0;
    overflow: hidden;
  }

  .about-concept__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* About features */
  .features-grid {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .features-card {
    padding: 32px 24px;
    gap: 16px;
  }

  .features-card__num {
    font-size: 2.8rem;
  }

  .about-features__inner {
    flex-direction: column;
  }

  .about-features__content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 48px 20px 40px;
  }

  .feature-layout__image {
    flex: 0 0 100%;
    max-width: 100%;
    height: 280px;
    position: relative;
  }

  .feature-layout__image img {
    position: absolute;
    border-radius: 0;
  }

  /* Footcare */
  .footcare-intro__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .footcare-intro__text-col {
    padding: 48px 0 40px;
  }

  .footcare-intro__image-col {
    position: relative;
    top: auto; right: auto; left: auto; bottom: auto;
    width: calc(100% + 24px);
    margin-left: -24px;
    height: 240px;
    overflow: hidden;
    border-radius: 0px 0px 0px 0px;
  }

  .footcare-intro__image-wrap {
    border-radius: 0 40px 0 0;
    overflow: hidden;
  }

  .footcare-intro__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .recommend-grid {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 24px;
  }

  .specialist-marquee__item {
    width: auto;
    height: 180px;
  }

  .specialist-text {
    max-width: 100%;
  }

  .intro-flex {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .intro-flex__image {
    border-radius: 0 24px 0 60px;
  }

  .price-box {
    padding: 32px 24px;
  }

  .recommend-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .recommend-list li:last-child {
    grid-column: 1 / -1;
  }

  .footcare-contact__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footcare-tel-box,
  .footcare-sns-box {
    padding: 28px 24px;
  }

  .footcare-area {
    padding: 24px;
  }

  .specialist-marquee::before,
  .specialist-marquee::after {
    width: 30px;
  }

  /* Staff */
  .staff-grid {
    grid-template-columns: 1fr;
    border-radius: 24px;
    gap: 24px;
    background-color: transparent;
  }

  .staff-card__content {
    padding: 24px 20px 28px;
    border: 1px solid var(--color-main-pink-light);
    border-radius: 0px 0px 24px 24px;
  }

  .staff-card + .staff-card .staff-card__content {
    border-left: 1px solid var(--color-main-pink-light);
  }

  .staff-card__image{
    border-radius: 24px 24px 0px 0px;
  }
}