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

:root {
  --base-bg: #FDFBF7;        /* 明るい生成りベージュ：ベースカラー（全体背景） */
  --sub-bg: #FFFFFF;         /* 純白：サブ背景カラー（カード・白背景セクション） */
  --main-color: #6B8E6B;     /* 若草グリーン（優しい緑）：メインカラー（ロゴ・主要見出し・メインナビ） */
  --accent-color: #F4A261;   /* あんずオレンジ（明るい黄オレンジ）：アクセントカラー（バッジ・注目させたい小さな装飾） */
  --text-color: #4A3F35;     /* ほうじ茶ブラウン：テキストカラー（本文・長文テキスト） */
  --cta-bg: #D96B27;         /* みかんオレンジ（濃いオレンジ）：CTAカラー（予約・問い合わせボタン背景） */

  /* 互換用・エイリアス */
  --white: var(--sub-bg);
  --black: var(--text-color);
  --gray: #555555;
  
  /* 旧変数マッピング（フォールバック用） */
  --brand-beige: var(--base-bg);
  --brand-green: var(--main-color);
  --brand-brown: var(--text-color);
}

/* stickyを正常に機能させるため hidden から clip に変更 */
html { scroll-behavior: smooth; overflow-x: clip; font-size: 16px; }

body {
  background: var(--base-bg);
  color: var(--text-color);
  font-family: 'Noto Sans JP', sans-serif;
  overflow-x: clip;
  line-height: 1.8;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px;
  background: var(--main-color); /* 若草グリーンに変更 */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--white); /* 白に変更 */
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-logo:hover {
  opacity: 0.8;
}
.nav-right { display: flex; align-items: center; gap: 36px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--white); /* 白に変更 */
  font-family: 'Noto Serif JP', serif;
  font-size: 16px; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: color 0.25s;
}
.nav-links a:hover { color: var(--accent-color); }
.sp-menu-cta { display: none; }

@media (max-width: 1280px) {
  nav { padding: 0 24px; }
  .nav-right { gap: 20px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 14px; }
}

.nav-cta {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px; font-weight: 700;
  background: var(--cta-bg); color: var(--white);
  padding: 12px 28px; text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}
.nav-cta-tel {
  background: transparent !important;
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-right: 8px;
  padding: 12px 20px;
}
.nav-cta-tel:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: var(--white);
  color: var(--white) !important;
}
.nav-cta-contact {
  padding: 12px 20px;
}

/* ── Menu Button ── */
.menu-btn {
  display: none;
  width: 24px; height: 24px;
  position: relative;
  background: none; border: none; cursor: pointer;
  z-index: 300;
}
.menu-btn span {
  display: block; width: 100%; height: 1px;
  background: var(--black);
  position: absolute; left: 0;
  transition: transform 0.3s, top 0.3s;
}
.menu-btn span:first-child { top: 8px; }
.menu-btn span:last-child { top: 16px; }

/* Open State */
nav.is-open .menu-btn span:first-child {
  transform: rotate(45deg); top: 12px;
}
nav.is-open .menu-btn span:last-child {
  transform: rotate(-45deg); top: 12px;
}

/* ── HERO PREMIUM ── */
.hero-premium {
  margin-top: 68px; /* マージンで物理的にヘッダーの下へと完全に押し下げる */
  height: calc(100vh - 68px); /* 高さはヘッダーの差分を引いて1画面に収める */
  min-height: 632px; /* 700px - 68px に調整 */
  background-image: linear-gradient(rgba(253, 251, 247, 0.7), rgba(253, 251, 247, 0.7)), url(../img/concerns01.jpg); /* オーバーレイの不透明度を70%に下げて画像をハッキリ表示 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-premium-container {
  display: flex;
  flex-direction: row-reverse; /* 右側の画像と左側のテキストの左右配置を入れ替え */
  width: 100%;
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.hero-premium-content {
  flex: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
  background: transparent; /* 背面の白いカード（背景）を削除して、FVの背景画像が直接見えるように変更 */
  position: relative;
  z-index: 10;
}
.hero-reveal {
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.3s;
}
.hero-tag {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--main-color);
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-tag::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--main-color);
}
.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--main-color);
  margin-bottom: 32px;
}

.hero-action-group {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero-badges {
  display: flex;
  gap: 24px;
}
.hero-badges-sp {
  display: none;
}
.hero-badge {
  width: 120px;
  height: 120px;
  background: var(--accent-color); /* アクセントカラーのあんずオレンジに変更 */
  color: var(--white);
  border: 4px double rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  box-shadow: 0 15px 40px rgba(244, 162, 97, 0.35); /* あんずオレンジのシャドウに調整 */
  transition: transform 0.3s, box-shadow 0.3s;
  animation: badgeFloat 3s ease-in-out infinite alternate;
}
.hero-badge:nth-child(2) {
  animation-delay: 0.4s;
}
.hero-badge:nth-child(3) {
  animation-delay: 0.8s;
}
.hero-badge:nth-child(4) {
  animation-delay: 1.2s;
}
@keyframes badgeFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-10px); }
}
.hero-badge:hover {
  transform: scale(1.1) translateY(-10px);
  box-shadow: 0 20px 50px rgba(244, 162, 97, 0.5); /* ホバー時のシャドウもアクセントカラーに */
}
.btn-hero-primary {
  display: inline-block;
  background: var(--cta-bg);
  color: var(--white);
  padding: 20px 56px;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
  box-shadow: 0 15px 35px rgba(17, 34, 23, 0.2);
}
.btn-hero-primary:hover {
  background: var(--accent-color); /* ホバー時はゴールドに変化 */
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(244, 162, 97, 0.2);
}

.hero-premium-visual {
  flex: 7;
  position: relative;
  overflow: hidden;
}
.hero-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: heroImageScale 10s ease-out forwards;
}
@keyframes heroImageScale {
  to { transform: scale(1); }
}
.hero-img-deco {
  position: absolute;
  top: 40px;
  right: 40px;
  bottom: 40px;
  left: 40px;
  border: 1px solid var(--main-color);
  pointer-events: none;
  z-index: 2;
  animation: frameFlow 6s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes frameFlow {
  0% { clip-path: inset(0 0 100% 0); }
  40% { clip-path: inset(0 0 0 0); }
  60% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(100% 0 0 0); }
}

/* SIDE BAR */


/* SCROLL HINT REMOVED */

/* ── SECTION BASE ── */
section { padding: 100px 56px; } /* 少し詰める */
.tag {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--main-color); margin-bottom: 20px;
  font-weight: 700;
}
.tag-en {
  font-family: 'Noto Serif JP', serif;
}
.tag-light { color: var(--main-color); }
.h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700; letter-spacing: 0.05em; line-height: 1.4;
  color: var(--main-color);
}
.h2-inner {
  position: relative;
  display: inline-block;
  z-index: 1;
}



.rule { width: 40px; height: 1px; background: var(--main-color); margin: 28px 0; }
.body-text {
  font-size: 16px; line-height: 1.8; color: var(--text-color);
  font-weight: 400;
}

/* ── CONCEPT ── */
.concept { background: var(--sub-bg); }
.concept .h2 {
  font-size: clamp(30px, 4vw, 50px);
}
.concept-wrap {
  max-width: 1160px; margin: 0 auto;
}
.concept-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 96px;
  align-items: center;
}
.concept-info > *:not(.concept-visual) {
  grid-column: 2;
}
.concept-visual {
  position: relative; height: 520px;
  grid-column: 1;
  grid-row: 1 / 10;
}
.concept-frame {
  position: absolute; inset: 0;
  background: var(--base-bg);
  display: flex; align-items: center; justify-content: center;
}

.concept-number {
  position: absolute; top: 24px; left: 24px;
  font-family: 'Noto Serif JP', serif;
  font-size: 80px; font-weight: 300; color: #e0e0e0;
  line-height: 1; user-select: none;
}

/* ── CONCERNS (お悩みセクション) ── */
.concerns {
  position: relative; overflow: hidden;
  background: var(--base-bg);
}
.concerns-bg {
  position: absolute; inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.7;
  filter: grayscale(20%);
}

/* お悩みセクションの浮遊丸型画像 */
.concerns-float-img {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 3; /* カードの端に美しく重ねる */
  pointer-events: none; /* 下の要素の操作を妨げない */
}
.concerns-float-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.float-img-1 {
  width: 160px;
  height: 160px;
  top: 6%;
  left: 10%; /* サイズ変更に合わせて微調整 */
}
.float-img-2 {
  width: 170px;
  height: 170px;
  bottom: 18%;
  right: 6%; /* サイズ変更に合わせて微調整 */
}
.float-img-3 {
  width: 180px;
  height: 180px;
  bottom: 2%;
  left: 14%; /* サイズ変更に合わせて微調整 */
}

@media (max-width: 1024px) {
  .float-img-1 { width: 120px; height: 120px; left: 8%; top: 10%; }
  .float-img-2 { width: 120px; height: 120px; right: 5%; }
  .float-img-3 { width: 130px; height: 130px; left: 12%; bottom: 2%; }
}
@media (max-width: 768px) {
  .float-img-1 { width: 90px; height: 90px; top: 6%; left: 6%; }
  .float-img-2 { width: 95px; height: 95px; bottom: 35%; right: 5%; }
  .float-img-3 { width: 105px; height: 105px; bottom: 1%; left: 8%; }
}

.concerns-wrap {
  max-width: 1000px; margin: 0 auto;
  position: relative;
  z-index: 2;
}
.concerns-header { text-align: center; margin-bottom: 48px; }
.concerns-header .h2 { 
  margin-top: 16px; 
}

.concerns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.concerns-card {
  background: var(--sub-bg);
  padding: 24px 16px;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: transform 0.3s, background 0.3s;
}
@media (max-width: 768px) {
  .concerns-grid { grid-template-columns: 1fr; gap: 16px; }
}
.concerns-card:hover { transform: translateY(-4px); }
.concerns-card-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px; 
  color: var(--main-color); 
  margin-bottom: 16px; 
  font-weight: 700;
  display: inline-block;
  border-bottom: 2px solid var(--main-color);
  line-height: 1.2;
  padding-bottom: 4px;
}
.concerns-card-text {
  font-size: 16px; color: var(--text-color); line-height: 1.6;
}

.concerns-footer {
  text-align: center; margin-top: 40px;
}
.concerns-footer-text {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 18px; letter-spacing: 0.1em; color: var(--main-color); line-height: 2;
}
.concerns-footer-text span {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px; letter-spacing: 0.05em; font-weight: 700; margin: 0 4px;
}

/* ── MENU (Bistro風 Stickyレイアウト) ── */
.menu {
  position: relative;
  background-image: linear-gradient(rgba(253, 251, 247, 0.4), rgba(253, 251, 247, 0.4)), url("../img/menubg.jpg");
  background-size: cover;
  background-position: center;
}

.menu-wrap {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.menu-header { margin-bottom: 48px; }
.menu .h2 {
  color: var(--main-color);
  display: flex;
  align-items: center;
  gap: 16px; /* 文字と装飾画像の隙間 */
}


@media (max-width: 768px) {
  .menu .h2 {
    justify-content: center; /* スマホ中央揃え時に中央に並べる */
    gap: 12px;
  }

}
.menu-note {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px; letter-spacing: 0.1em; color: #aaa;
  margin-top: 16px;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}

/* Sticky Image Slider */
.menu-image-wrapper {
  position: relative; width: 100%; height: 100%; min-width: 0;
}
.menu-image {
  position: sticky; top: 100px; width: 100%; z-index: 10;
}
.menu-slider { overflow: hidden; }
.menu-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.menu-slider .swiper-slide {
  aspect-ratio: 3/4; overflow: hidden;
}
.menu-slider img {
  width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%);
}

/* Menu Content */
.menu-category { margin-bottom: 64px; }
.menu-category:last-child { margin-bottom: 0; }
.menu-cat-title-en {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px; letter-spacing: 0.2em; color: #999;
  margin-bottom: 8px; text-transform: uppercase;
}
.menu-cat-title-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--main-color); margin-bottom: 24px;
  padding-left: 16px;
  border-left: 4px solid var(--main-color); /* 左側に若草グリーンのアクセント線 */
  line-height: 1.2;
}

/* おすすめメニュー (Cards) */
.menu-card {
  background: var(--white);
  border-top: 4px solid var(--main-color);
  border-left: 2px solid var(--main-color); /* 左にメインの深緑を敷く */
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 32px 30px 30px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.menu-card:hover { 
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1); 
}
.menu-card-badge {
  position: absolute; top: -4px; right: 24px;
  background: var(--main-color); color: var(--sub-bg);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px; font-weight: 700; letter-spacing: 0.1em;
  padding: 8px 24px; text-transform: uppercase;
}
.menu-card-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--main-color); margin-bottom: 8px;
}
.menu-card-subtitle {
  font-size: 16px; color: var(--text-color); letter-spacing: 0.06em;
  margin-bottom: 18px; line-height: 1.6;
}
.menu-price {
  font-family: 'Noto Serif JP', serif;
  font-size: 32px; font-weight: 700;
  background: linear-gradient(135deg, #fbc89e 0%, var(--accent-color) 50%, #d96b27 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  letter-spacing: 0.02em; margin-bottom: 4px;
}
.menu-price sub {
  font-size: 14px;
  color: var(--main-color);
  font-family: 'Noto Serif JP', serif;
  margin-left: 4px;
  display: inline-block;
  vertical-align: middle;
  -webkit-text-fill-color: var(--main-color);
}

.menu-time {
  font-family: 'Noto Serif JP', serif;
  color: var(--main-color);
  background: rgba(107, 142, 107, 0.08);
  border: 1px solid rgba(107, 142, 107, 0.2);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
}

/* その他メニュー (List) */
.menu-other-section { margin-bottom: 32px; }
.menu-other-col-title {
  font-size: 16px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--main-color); margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--main-color); /* 下線を若草グリーンにしてスッキリ調整 */
}
.menu-list { display: flex; flex-direction: column; gap: 16px; }
.menu-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: var(--sub-bg);
  border: 1px solid #e8e6e3;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.menu-item:hover {
  transform: translateY(-4px);
  border-color: rgba(107, 142, 107, 0.4);
  box-shadow: 0 10px 30px rgba(107, 142, 107, 0.12);
}
.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-item-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  color: var(--main-color);
  font-weight: 700;
  transition: color 0.3s ease;
}
.menu-item:hover .menu-item-name {
  color: var(--main-color); /* ホバー時もメインカラーのままにする */
}
.menu-item-dots {
  display: none;
}
.menu-item-price {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, #f7b27c 0%, var(--accent-color) 100%);
  padding: 6px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(244, 162, 97, 0.15);
  letter-spacing: 0.05em;
  transition: transform 0.3s, box-shadow 0.3s;
}
.menu-item-desc {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.6;
}

/* ── FEATURES ── */
#services {
  position: relative;
  background-image: url('../img/service04.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.features { background: transparent; }
.features-wrap {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
}
.service-list {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.svc-item {
  display: flex;
  align-items: center;
  gap: 80px;
}
.svc-item:nth-child(even) {
  flex-direction: row-reverse;
}
.svc-img-wrap {
  flex: 1;
  position: relative;
  overflow: hidden; /* ズーム時のハミ出し防止 */
}
.svc-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.2, 1), opacity 0.6s ease;
}
.svc-item:hover .svc-img {
  transform: scale(1.05); /* ホバー時に少しズーム */
}
/* スクロールアニメーション用初期状態 */
.svc-img.is-reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}
.svc-img.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.svc-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.95); /* 95%白背景で、背景写真が透けつつテキストの可読性を高めます */
  padding: 48px 40px; /* 内側にゆったりとした上品な余白を設定 */
  border-radius: 8px; /* 優しく角を落とす */
  box-shadow: 0 12px 32px rgba(107, 142, 107, 0.06); /* 若草色のほのかな影 */
  border: 1px solid rgba(107, 142, 107, 0.12); /* 若草色の非常に繊細なボーダー */
}
.svc-num-tag {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(48px, 6vw, 64px);
  font-weight: 700;
  line-height: 1;
  color: var(--main-color); /* 若草グリーンに変更して存在感を強化 */
  margin-bottom: 12px;
  display: block;
  opacity: 0.85;
}
.svc-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 3vw, 32px); font-weight: 700; letter-spacing: 0.08em;
  color: var(--main-color); margin-bottom: 24px;
}
.svc-desc {
  font-size: 16px; line-height: 1.8; color: var(--text-color); font-weight: 400;
}

/* ── COMMON CTA ── */
.common-cta {
  position: relative;
  padding: 40px 24px; /* さらにサイズを小さく */
  text-align: center;
  overflow: hidden;
  background: var(--main-color); /* 背景をブランドの若草グリーンに変更 */
}
/* 背景の模様（格子パターン）は削除されました */
.common-cta::after {
  content: "";
  position: absolute; inset: 0;
  /* 若草グリーンの上品な透過グラデーション */
  background: linear-gradient(135deg, rgba(107, 142, 107, 0.95) 0%, rgba(107, 142, 107, 0.6) 100%);
  z-index: 2;
}

.common-cta-wrap {
  max-width: 840px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 32px 24px; /* さらにサイズを小さく */
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.common-cta-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px; /* 少し小さく */
  font-weight: 700;
  margin-bottom: 16px; /* 余白をさらに縮小 */
  letter-spacing: 0.1em;
  color: var(--white);
}
.common-cta-desc {
  font-size: 14px; /* 少し小さく */
  margin-bottom: 24px; /* 余白をさらに縮小 */
  color: var(--white);
  opacity: 0.9;
  line-height: 1.6;
}

.common-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cta-tel, .btn-cta-web {
  position: relative;
  padding: 12px 24px; /* さらにボタンを小さく */
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 200px; /* 幅を縮小 */
  border-radius: 100px;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s, color 0.3s;
  overflow: hidden;
  font-weight: 700;
}
.btn-cta-tel { background: var(--white); color: var(--cta-bg); font-family: 'Noto Serif JP', serif; }
.btn-cta-web { background: var(--cta-bg); color: var(--white); font-family: 'Noto Serif JP', serif; border: 1px solid rgba(255,255,255,0.2); }
.btn-cta-tel .num { font-size: 18px; font-family: 'Noto Serif JP', serif; font-weight: 700; }
.btn-cta-tel .icon { font-size: 11px; margin-bottom: 2px; opacity: 0.9; font-weight: 700; }

/* マイクロインタラクション (光の演出) */
.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
}
.btn-cta-tel:hover .btn-shine,
.btn-cta-web:hover .btn-shine {
  animation: shineMove 0.8s forwards;
}
@keyframes shineMove { 100% { left: 150%; } }

.btn-cta-tel:hover {
  background: var(--accent-color);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(244, 162, 97, 0.3);
}
.btn-cta-web:hover {
  background: var(--accent-color);
  color: var(--white);
  border-color: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(244, 162, 97, 0.3);
}

@media (max-width: 768px) {
  .common-cta { padding: 32px 16px; }
  .common-cta-wrap { padding: 24px 16px; border-radius: 12px; }
  .common-cta-title { font-size: 22px; margin-bottom: 12px; }
  .common-cta-text { font-size: 14px; margin-bottom: 24px; }
  .btn-cta-tel, .btn-cta-web { min-width: 100%; padding: 12px 16px; font-size: 14px; }
  .btn-cta-tel .num { font-size: 16px; }
}



/* ── Google Voice External Button ── */
.voice-more-link-wrap {
  text-align: center;
  margin-top: 40px;
}
.btn-voice-external {
  display: inline-block;
  background-color: var(--white);
  color: var(--main-color);
  border: 2px solid var(--main-color);
  padding: 14px 36px;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.btn-voice-external:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(244, 162, 97, 0.25);
}

@media (max-width: 768px) {
  .btn-voice-external {
    padding: 10px 24px; /* スマートフォンサイズ時は小さく調整 */
    font-size: 14px;    /* 文字を小さく */
  }
}

.btn-message-external {
  display: inline-block;
  background-color: var(--white);
  color: var(--main-color);
  border: 2px solid var(--main-color);
  padding: 14px 36px;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.btn-message-external:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(244, 162, 97, 0.25);
}

.btn-menu-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--white);
  color: var(--main-color);
  border: 2px solid var(--main-color);
  padding: 14px 40px;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.btn-menu-more:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(244, 162, 97, 0.25);
}
.btn-menu-more .arrow {
  font-family: sans-serif;
  font-weight: bold;
  transition: transform 0.3s ease;
}
.btn-menu-more:hover .arrow {
  transform: translateX(4px);
}

.btn-service-external {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  /* あんず & みかんオレンジ系の流れるグラデーション背景 */
  background: linear-gradient(90deg, #d96b27 0%, #fdd9be 25%, #f4a261 50%, #fdd9be 75%, #d96b27 100%);
  background-size: 200% auto;
  color: #fff; /* テキストの色を白に変更 */
  border: none;
  padding: 12px 28px;
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(244, 162, 97, 0.25);
  transition: all 0.5s ease;
  margin-top: 16px;
  gap: 12px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15); /* 白文字を引き立たせる微小なシャドウ */
  animation: shikiGradientFlow 8s linear infinite; /* 動きを4sから8sにゆっくり化 */
}
.btn-service-external:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(244, 162, 97, 0.4);
  color: #fff;
}
.btn-service-external .arrow {
  display: inline-block;
  font-family: sans-serif;
  font-weight: bold;
  transition: transform 0.3s ease;
}
.btn-service-external:hover .arrow {
  transform: translateX(4px); /* 矢印が右にスライド */
}

@keyframes shikiGradientFlow {
  0% { background-position: 0% center; }
  100% { background-position: -200% center; }
}



.voice {
  position: relative;
  background-image: url('../img/service04.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-bottom: 40px; /* PCでの下部余白を縮小 */
}

.voice-wrap { position: relative; z-index: 2; max-width: 1160px; margin: 0 auto; }
.voice .h2 { color: var(--main-color); }
.voice-stars {
  color: var(--main-color);
  margin-bottom: 12px;
}
.voice-slider {
  margin-top: 40px; /* 72pxから縮小 */
  padding-bottom: 50px; /* Pagination space */
}
.voice-card {
  background: var(--sub-bg); padding: 40px 36px;
  border-left: 3px solid var(--main-color);
  position: relative;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: auto;
}
.voice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.voice-pagination {
  bottom: 0 !important;
}
.voice-pagination .swiper-pagination-bullet {
  background: var(--main-color);
  opacity: 0.2;
}
.voice-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.voice-mark {
  font-family: 'Noto Serif JP', serif;
  font-size: 64px; font-weight: 700; color: var(--main-color);
  opacity: 0.1;
  line-height: 1; position: absolute; top: 20px; right: 24px;
}
.voice-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px; line-height: 1.8; color: var(--text-color);
  margin-bottom: 0; font-weight: 400;
  text-align: left; /* 左揃え */
  display: -webkit-box;
  -webkit-line-clamp: 5; /* 5行程度に調整 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.voice-card.is-expanded .voice-text {
  -webkit-line-clamp: unset;
}
/* フェードアウト効果 */
.voice-text-wrap {
  position: relative;
  overflow: hidden;
}
.voice-card:not(.is-expanded) .voice-text-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, var(--sub-bg));
  pointer-events: none;
  transition: opacity 0.3s;
}
.voice-more-btn {
  display: none; /* JSで判定後に表示 */
  background: none; border: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--main-color);
  cursor: pointer;
  padding: 8px 0;
  margin: 16px 0 24px;
  align-items: center; gap: 8px;
  border-bottom: 1px solid var(--main-color);
}
.voice-more-btn::after {
  content: '+';
  font-size: 14px;
}
.voice-card.is-expanded .voice-more-btn::after {
  content: '−';
}
.voice-text.empty {
  color: #999; font-style: italic; font-size: 11px;
  -webkit-line-clamp: unset;
}
.voice-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 12px; letter-spacing: 0.1em; color: var(--main-color);
  margin-bottom: 8px;
}

/* ── MESSAGE ── */
#message {
  position: relative;
  padding: 40px 0 100px; /* PCでの上部余白を縮小 */
  background-image: url('../img/service04.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
#message::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.94);
  z-index: 1;
}

.message-inner {
  position: relative; z-index: 2;
  max-width: 960px; /* 画像追加に伴い少し広げる */
  margin: 0 auto; text-align: center;
  padding: clamp(80px, 12vw, 140px) 24px;
}
.message-inner .tag {
  color: #888;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.message-inner .h2 {
  color: var(--main-color);
  margin-bottom: 0;
  text-align: center;
}
.message-inner .rule { background: rgba(0,0,0,0.2); margin: 32px auto; }

/* 院長画像とテキストの2カラムレイアウト */
.message-content-layout {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 32px;
  text-align: left;
}
.message-photo-side {
  flex: 0 0 280px;
}
.message-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 0 10px 30px rgba(107, 142, 107, 0.15); /* 若草色の優しい影 */
}
.message-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.message-text-side {
  flex: 1;
}

.message-inner .body-text {
  color: var(--text-color);
  line-height: 2.1;
  letter-spacing: 0.1em;
  text-align: left; /* 左揃え */
  margin: 0;
}

@media (max-width: 768px) {
  .message-content-layout {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  .message-photo-side {
    flex: 0 0 220px;
    width: 220px;
    margin: 0 auto;
  }
  .message-inner .body-text {
    text-align: center; /* モバイルでは中央揃えにして可読性向上 */
  }
}

.message-inner .sign {
  margin-top: 40px;
  font-family: 'Noto Serif JP', serif;
  font-size: 20px; font-weight: 700; letter-spacing: 0.1em; color: var(--main-color);
}



/* ── INFO ── */
.info { background: var(--base-bg); }
.info-wrap {
  max-width: 1160px; margin: 0 auto;
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.info-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.info-table tr { border-bottom: 1px solid rgba(0,0,0,0.05); }
.info-table td { padding: 16px 0; font-size: 16px; vertical-align: top; }
.info-table td:first-child {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px; font-weight: 700; color: var(--main-color);
  width: 120px;
}
.info-table td:last-child { color: var(--text-color); line-height: 1.6; }

.info-map-box {
  margin-top: 32px; background: #e2e1de; height: 360px;
  border: 1px solid rgba(0,0,0,0.05);
}
.info-map-box iframe { width: 100%; height: 100%; }
.info-btns { display: flex; gap: 12px; margin-top: 24px; }




/* ── FOOTER ── */
footer {
  background: var(--main-color); /* 若草グリーンに変更 */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 80px 56px;
}
.footer-wrap {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 40px;
  margin-bottom: 48px;
}
.footer-links a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px; color: var(--white); text-decoration: none; /* 白に変更 */
  font-weight: 500;
  transition: opacity 0.2s, color 0.2s;
}
.footer-links a:hover { opacity: 1; color: var(--accent-color); }
.footer-copy {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px; color: rgba(255, 255, 255, 0.7); /* 薄い白に変更 */
  letter-spacing: 0.05em;
}

/* ── HOME LINK BTN ── */
.btn-info-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: var(--white);
  color: var(--main-color);
  border: 2px solid var(--main-color);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-info-home:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(244, 162, 97, 0.3);
}
.icon-home {
  width: 26px;
  height: 26px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

/* ── UTILITIES ── */
.sp-only { display: none !important; }
.pc-only { display: block !important; }

/* ── Fixed CTA (SP) ── */
.sp-cta {
  display: none;
  position: fixed; 
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  height: calc(60px + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--sub-bg);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}
.sp-cta-btn {
  flex: 1;
  display: flex; 
  flex-direction: column;
  align-items: center; 
  justify-content: center; 
  text-decoration: none;
  transition: opacity 0.2s;
}
.sp-cta-btn:active { opacity: 0.8; }
.cta-label-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 700;
}
.sp-cta-tel {
  background: #ffffff;
  border-right: 1px solid rgba(0,0,0,0.05);
}
.sp-cta-tel .cta-label-jp {
  color: var(--cta-bg);
}
.sp-cta-res {
  background: var(--cta-bg);
}
.sp-cta-res .cta-label-jp {
  color: #ffffff;
}

/* ── Page Top Button ── */
.page-top-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 56px;
  height: 56px;
  background: var(--cta-bg);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 400;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background-color 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.page-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
}
.page-top-btn:hover {
  background: var(--accent-color);
  transform: translateY(-4px);
}
.page-top-btn svg {
  width: 24px;
  height: 24px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {

  body, .body-text, .svc-desc, .menu-card-subtitle, .menu-item-name, .info-table td, .voice-text, .concerns-card-text { 
    font-size: 14px !important; 
  }
  .sp-only { display: block !important; }
  br.sp-only { display: inline !important; }
  .pc-only { display: none !important; }

  .main-header { display: none; }
  nav { padding: 0 20px; height: 64px; }
  .nav-logo { font-size: 15px; letter-spacing: 0.1em; color: var(--white); }
  .nav-cta { display: none; }
  .menu-btn { 
    display: block; 
    width: 44px; height: 44px; 
    background: none; 
    border-radius: 4px;
    padding: 10px;
  }
  .menu-btn span { background: #fff; }
  .menu-btn span:first-child { top: 14px; left: 10px; width: 24px; }
  .menu-btn span:last-child { top: 28px; left: 10px; width: 24px; }
  
  nav.is-open .menu-btn span { background: var(--main-color); }
  nav.is-open .menu-btn span:first-child { top: 22px; }
  nav.is-open .menu-btn span:last-child { top: 22px; }

  .nav-links {
    position: fixed; inset: 0;
    background: rgba(253, 251, 247, 0.98); /* 明るい生成りベージュに変更 */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 16px; /* 画面に収まるよう縮小 */
    opacity: 0; visibility: hidden;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 250;
    list-style: none;
    padding: 0 20px; /* 上下余白をなくし中央揃えを優先 */
    overflow-y: hidden; /* スクロールなし */
  }
  nav.is-open .nav-links {
    opacity: 1; visibility: visible;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
  nav.is-open .nav-links li {
    opacity: 1;
    transform: translateY(0);
  }
  /* Stagger delays */
  nav.is-open .nav-links li:nth-child(1) { transition-delay: 0.05s; }
  nav.is-open .nav-links li:nth-child(2) { transition-delay: 0.1s; }
  nav.is-open .nav-links li:nth-child(3) { transition-delay: 0.15s; }
  nav.is-open .nav-links li:nth-child(4) { transition-delay: 0.2s; }
  nav.is-open .nav-links li:nth-child(5) { transition-delay: 0.25s; }
  nav.is-open .nav-links li:nth-child(6) { transition-delay: 0.3s; }
  nav.is-open .nav-links li:nth-child(7) { transition-delay: 0.35s; }
  nav.is-open .nav-links li:nth-child(8) { transition-delay: 0.4s; }
  nav.is-open .nav-links li:nth-child(9) { transition-delay: 0.45s; }
  nav.is-open .nav-links li:nth-child(10) { transition-delay: 0.5s; }

  .sp-menu-cta {
    display: block !important;
    margin-top: 8px;
    width: 85% !important;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .sp-menu-tel, .sp-menu-contact {
    display: block !important;
    padding: 12px 0 !important;
    font-size: 15px !important;
    font-weight: 700;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.1em;
    width: 100%;
  }
  .sp-menu-tel {
    background: transparent;
    color: var(--main-color) !important;
    border: 1px solid var(--main-color);
  }
  .sp-menu-contact {
    background: var(--cta-bg);
    color: var(--white) !important;
  }

  .nav-links a {
    font-size: 18px; /* 全て見えるように調整 */
    color: var(--main-color);
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    padding: 8px 40px; /* 余白を調整 */
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.15em;
    position: relative;
    transition: color 0.3s;
  }
  .nav-links a::before {
    content: '•';
    position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
    color: var(--main-color); /* 若草グリーンに変更 */
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .nav-links a:active { color: var(--accent-color); }
  .nav-links a:active::before { opacity: 1; }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: 0; left: 50%; width: 0; height: 1px;
    background: var(--main-color); /* 若草グリーンに変更 */
    transition: all 0.3s; transform: translateX(-50%);
  }
  .nav-links a:active::after {
    width: 40px;
  }

  .nav-right { gap: 0; }

  .hero-premium { height: auto; min-height: 0; margin-top: 64px; padding-top: 0; padding-bottom: 40px; position: relative; overflow: visible; z-index: 30; } /* overflow: visible にしてセクション外へのはみ出しを許可し、z-index: 30 で後続セクションよりも最前面に配置 */
  .hero-premium-container { flex-direction: column; height: auto; }
  .hero-premium-visual { order: 2; height: 420px; flex: none; width: 100%; position: relative; overflow: visible; z-index: 10; } /* はみ出るバッジを表示するために overflow: visible に変更、z-indexを追加 */
  .hero-premium-content { order: 1; padding: 12px 24px 48px; flex: none; width: 100%; text-align: center; } /* 下部パディングを48pxに増やし、画像をさらに下にずらす */
  .hero-tag { justify-content: center; margin-bottom: 6px; font-size: 12px; letter-spacing: 0.15em; color: var(--accent-color); } /* タグを小さくしてあんずオレンジ色にし、上品なコントラストを表現 */
  .hero-tag::before { display: none; }
  .hero-title { font-size: 24px; margin-bottom: 0; line-height: 1.5; letter-spacing: 0.05em; font-weight: 700; } /* フォントサイズを24pxに拡大、行間を1.5に広げて和モダンの高級感を表現 */
  .hero-desc { font-size: 15px; margin-bottom: 32px; max-width: 100%; }
  .hero-badges-pc { display: none; }
  .hero-badges-sp { display: grid; grid-template-columns: repeat(2, auto); justify-content: center; position: absolute; bottom: -60px; left: 16px; right: 16px; gap: 12px 16px; margin-bottom: 0; z-index: 150; } /* bottom: -60px に設定し、バッジの大半が下（Aboutセクション側）へはみ出す位置に配置 */
  .hero-badge { width: 85px; height: 85px; font-size: 11.5px; } /* 2列化に伴い、サイズを少し大きく調整 */
  .hero-cta-area { display: none; }
  .hero-img-deco { top: 20px; right: 20px; bottom: 20px; left: 20px; }


  .concerns-grid { grid-template-columns: 1fr; gap: 12px; }
  .concerns-card { padding: 20px 24px; display: flex; align-items: center; gap: 20px; text-align: left; }
  .concerns-card-num { margin-bottom: 0; font-size: 22px; width: 40px; }
  .concerns-card-text { font-size: 15px !important; }

  .menu-grid { grid-template-columns: 1fr; }
  .menu-image-wrapper { order: -1; margin-bottom: 32px; height: auto; }
  .menu-image { position: relative; top: 0; width: calc(100% + 48px); margin-left: -24px; }

  /* SP Menu Item Refinement */
  .menu-category { margin-bottom: 40px; }
  .menu-item {
    padding: 20px;
    gap: 12px;
  }
  .menu-item-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .menu-item-name {
    font-size: 17px;
    line-height: 1.4;
  }
  .menu-item-name .menu-time {
    display: inline-block;
    font-size: 11px;
    background: rgba(107, 142, 107, 0.08); /* 若草グリーン系に変更 */
    color: var(--main-color);
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 4px;
    font-weight: 500;
  }
  .menu-item-price {
    font-size: 16px;
    color: var(--white);
    background: linear-gradient(135deg, #f7b27c 0%, var(--accent-color) 100%);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 4px;
    box-shadow: 0 2px 6px rgba(244, 162, 97, 0.15);
  }
  .menu-item-price::before {
    display: none;
  }
  /* Special Menu Card SP */
  .menu-card {
    padding: 48px 20px 24px; /* 上部のパディングを広げて重なりを防止 */
  }
  .menu-card-badge {
    top: -10px !important;
    right: 15px !important;
    font-size: 13px !important;
    padding: 4px 16px !important;
  }
  .menu-card-title {
    font-size: 19px !important;
    line-height: 1.4;
  }
  .menu-price {
    font-size: 28px !important;
  }
  .menu-price sub {
    font-size: 12px;
  }


  .service-list { gap: 80px; }
  .svc-item, .svc-item:nth-child(even) {
    flex-direction: column;
    gap: 40px;
  }
  .svc-content {
    padding: 32px 24px; /* スマホでは内側の余白を少し縮小して見やすく */
  }
  .svc-img-wrap::before { display: none; }
  



  .voice-name { font-size: 14px; }
  .menu-price sub { font-size: 14px; }
  .footer-links a { font-size: 14px; }
  .footer-copy { font-size: 14px; }
  .sp-cta-btn span { font-size: 14px; }
  /* Global Section Spacing SP */
  section { padding: 80px 24px !important; }
  .hero-premium { padding: 64px 0 0 !important; }
  .common-cta { padding: 48px 24px !important; }

  #voice { padding-bottom: 0 !important; }
  #message { padding: 56px 24px 80px !important; }
  #services, .voice, #message {
    background-image: url('../img/spservice.jpg') !important;
    background-attachment: scroll !important;
  }
  #message .body-text { 
    text-align: left; /* SPでは左揃え */
    margin: 0;
  }

  /* SP Section Titles: Center & Optical Balance */
  #services .tag,
  #menu .tag,
  #voice .tag,
  #message .tag {
    text-align: center;
    width: 100%;
    display: block;
    text-indent: 0.2em; /* letter-spacing 0.2em のズレを相殺 */
  }

  #services .h2,
  #menu .h2,
  #voice .h2,
  #message .h2,
  #info .h2 {
    text-align: center;
    width: 100%;
    display: block;
    text-indent: 0.05em; /* letter-spacing 0.05em のズレを相殺 */
  }


  /* About Section SP Adjustment */
  .concept { padding: 80px 24px; }
  .concept-wrap { 
    display: block;
  }
  .concept-info { 
    display: flex; 
    flex-direction: column; 
    text-align: center;
  }
  .concept-info .tag { order: 1; }
  .concept-info .h2 { order: 2; }
  .concept-info .rule { order: 3; margin: 24px auto; }
  .concept-visual { 
    order: 4; 
    height: 300px;
    width: calc(100% + 48px);
    margin-left: -24px;
    margin-bottom: 32px;
    grid-column: auto;
    grid-row: auto;
  }
  .concept-info .body-text { 
    order: 5; 
    margin-top: 0;
    text-align: left;
  }

  /* Access Section SP Adjustment */
  .info { padding: 80px 24px; }
  .info-grid { 
    display: flex; 
    flex-direction: column; 
    gap: 48px; 
  }
  .info-table-side { order: 1; }
  .info-map-side { order: 2; width: 100%; }
  .info-table td:first-child { width: 100px; }
  .info-map-box { height: 300px; margin-top: 0; }

  .sp-cta { 
    display: flex; 
    width: 100%;
    left: 0;
    right: 0;
    margin: 0;
  }
  body { padding-bottom: 80px; }

  .page-top-btn {
    bottom: calc(88px + env(safe-area-inset-bottom));
    right: 20px;
    width: 48px;
    height: 48px;
    z-index: 600;
  }

  /* Message Section SP Adjustment */
  #message { padding: 80px 24px; }
  #message .message-inner { padding: 0; margin: 0 auto; width: 100%; max-width: none; }
  #message .tag { margin-bottom: 16px; }
  #message .message-text { text-align: left; margin-top: 32px; }
  #message .message-signature { text-align: center; margin-top: 32px; }
}



