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

:root {
  --brand-brown: #5D4037;
  --brand-beige: #F5F5DC;
  --brand-green: #2E7D32;
  --brand-dark: #3E2723;
  --black: #333333;
  --gray: #555555;
  --white: #ffffff;
}

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

body {
  background: var(--brand-beige);
  color: var(--black);
  font-family: 'Noto Sans JP', sans-serif;
  overflow-x: clip;
  line-height: 1.8;
}

/* ── 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: rgba(245, 245, 220, 0.95); /* 少し透かして固定ヘッダーらしく */
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-logo {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--brand-green); text-decoration: none;
  transition: opacity 0.2s;
}
.nav-right { display: flex; align-items: center; gap: 36px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--brand-brown); font-family: 'Space Mono', monospace;
  font-size: 16px; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: color 0.25s;
}
.nav-links a:hover { color: var(--black); }
.nav-cta {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px; font-weight: 700;
  background: var(--brand-green); color: var(--white);
  padding: 12px 28px; text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.3s, transform 0.3s;
}
.nav-cta:hover {
  opacity: 0.9; transform: translateY(-2px);
}

/* ── 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 {
  padding: 0;
  height: 100vh;
  min-height: 700px;
  background: var(--brand-beige);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-premium-container {
  display: flex;
  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: var(--white);
  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(--brand-green);
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-tag::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--brand-green);
}
.hero-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--brand-brown);
  margin-bottom: 32px;
}
.hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: var(--black);
  margin-bottom: 48px;
  max-width: 480px;
}
.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: #B89775; /* 高級感のあるアンティークゴールドに変更 */
  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: 'Zen Maru Gothic', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  box-shadow: 0 15px 40px rgba(184, 151, 117, 0.4); /* 影の色もアンティークゴールドに合わせて変更 */
  transition: transform 0.3s, box-shadow 0.3s;
  animation: badgeFloat 3s ease-in-out infinite alternate;
}
.hero-badge:nth-child(2) {
  animation-delay: 0.5s;
}
@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(46, 125, 50, 0.4);
}
.btn-hero-primary {
  display: inline-block;
  background: var(--brand-green);
  color: var(--white);
  padding: 20px 56px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
  box-shadow: 0 15px 35px rgba(46, 125, 50, 0.2);
}
.btn-hero-primary:hover {
  background: var(--brand-brown);
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(93, 64, 55, 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(--brand-green);
  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 */
.hero-side-bar {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80px;
  height: 240px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 30;
  padding-bottom: 40px;
}
.hero-side-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.hero-side-text {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--brand-brown);
  writing-mode: vertical-rl;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.6;
}
.hero-side-line {
  width: 1px;
  height: 80px;
  background: rgba(93, 64, 55, 0.2);
  position: relative;
  overflow: hidden;
}
.hero-side-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--brand-green);
  animation: scrollLine 2s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* SCROLL HINT REMOVED */

/* ── SECTION BASE ── */
section { padding: 100px 56px; } /* 少し詰める */
.tag {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brand-brown); margin-bottom: 20px;
  font-weight: 700;
}
.tag-en {
  font-family: 'Space Mono', monospace;
}
.tag-light { color: var(--brand-brown); }
.h2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700; letter-spacing: 0.05em; line-height: 1.4;
  color: var(--brand-brown);
}
.h2-inner {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.h2-inner::before {
  content: '';
  position: absolute;
  top: -0.6em;
  left: -0.6em;
  width: 1.8em;
  height: 1.8em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D8BFA3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 11V6a2 2 0 0 0-2-2v0a2 2 0 0 0-2 2v0'/%3E%3Cpath d='M14 10V4a2 2 0 0 0-2-2v0a2 2 0 0 0-2 2v2'/%3E%3Cpath d='M10 10.5V6a2 2 0 0 0-2-2v0a2 2 0 0 0-2 2v8'/%3E%3Cpath d='M18 8a2 2 0 1 1 4 0v6a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
  transform: rotate(-15deg);
}


.rule { width: 40px; height: 1px; background: var(--brand-brown); margin: 28px 0; }
.body-text {
  font-size: 16px; line-height: 1.8; color: var(--brand-brown); /* 茶色に変更 */
  font-weight: 400;
}

/* ── CONCEPT ── */
.concept { background: var(--white); }
.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(--off-white);
  display: flex; align-items: center; justify-content: center;
}
.concept-frame-deco {
  position: absolute; bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  border: 1px solid #ddd;
}
.scissors-svg { opacity: 0.25; }
.concept-number {
  position: absolute; top: 24px; left: 24px;
  font-family: 'Space Mono', monospace;
  font-size: 80px; font-weight: 300; color: #e0e0e0;
  line-height: 1; user-select: none;
}

/* ── CONCERNS (お悩みセクション) ── */
.concerns {
  position: relative; overflow: hidden;
  background: #f9f9f9;
}
.concerns-bg {
  position: absolute; inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.7;
  filter: grayscale(20%);
}
.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: rgba(255, 255, 255, 0.6);
  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: 'Zen Maru Gothic', sans-serif;
  font-size: 28px; 
  color: var(--brand-green); 
  margin-bottom: 16px; 
  font-weight: 700;
  display: inline-block;
  border-bottom: 2px solid var(--brand-green);
  line-height: 1.2;
  padding-bottom: 4px;
}
.concerns-card-text {
  font-size: 16px; color: var(--black); line-height: 1.6;
}

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

/* ── MENU (Bistro風 Stickyレイアウト) ── */
.menu {
  position: relative;
  background: linear-gradient(-45deg, #f5f5dc, #e2d1c3, #fdfcfb, #d7ccc8);
  background-size: 400% 400%;
  animation: bgGradientMove 10s ease infinite; /* 速度を少し上げる */
}
@keyframes bgGradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.menu-wrap {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.menu-header { margin-bottom: 48px; }
.menu .h2 { color: var(--brand-brown); }
.menu-note {
  font-family: 'Space Mono', monospace;
  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: 'Space Mono', monospace;
  font-size: 14px; letter-spacing: 0.2em; color: #999;
  margin-bottom: 8px; text-transform: uppercase;
}
.menu-cat-title-jp {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 28px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--brand-brown); margin-bottom: 24px;
}

/* おすすめメニュー (Cards) */
.menu-card {
  background: var(--white);
  border-top: 4px solid var(--brand-brown);
  border-left: 1px solid #e0e0e0;
  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(--brand-brown); color: var(--white);
  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: 'Zen Maru Gothic', sans-serif;
  font-size: 18px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--brand-brown); margin-bottom: 8px; /* 茶色に変更 */
}
.menu-card-subtitle {
  font-size: 16px; color: #000; letter-spacing: 0.06em;
  margin-bottom: 18px; line-height: 1.6;
}
.menu-price {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 32px; font-weight: 700; color: var(--brand-green);
  letter-spacing: 0.02em; margin-bottom: 4px;
}
.menu-price sub { font-size: 14px; color: var(--gray); font-family: 'Zen Maru Gothic', sans-serif; }

.menu-time {
  font-family: 'Zen Maru Gothic', sans-serif;
  color: var(--brand-green);
  font-weight: 700;
  margin-right: 4px;
}

/* その他メニュー (List) */
.menu-other-section { margin-bottom: 32px; }
.menu-other-col-title {
  font-size: 16px; font-weight: 400; letter-spacing: 0.08em;
  color: var(--brand-brown); margin-bottom: 16px;
  padding-bottom: 8px; border-bottom: 1px solid #eee;
}
.menu-list { display: flex; flex-direction: column; gap: 16px; }
.menu-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e8e6e3;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.menu-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-item-name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  color: var(--brand-brown);
  font-weight: 700;
}
.menu-item-dots {
  display: none; /* ドット線を廃止 */
}
.menu-item-price {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-green);
  background: rgba(46, 125, 50, 0.05);
  padding: 4px 12px;
  border-radius: 4px;
}
.menu-item-desc {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* ── FEATURES ── */
#services {
  position: relative;
  background-image: url('../img/service04.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
#services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 1;
}
.features { background: var(--white); }
.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;
}
.svc-num-tag {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px; letter-spacing: 0.1em;
  color: #aaa; margin-bottom: 16px;
}
.svc-heading {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(24px, 3vw, 32px); font-weight: 700; letter-spacing: 0.08em;
  color: var(--brand-brown); margin-bottom: 24px;
}
.svc-desc {
  font-size: 16px; line-height: 1.8; color: var(--black); font-weight: 400;
}

/* ── COMMON CTA ── */
.common-cta {
  position: relative;
  padding: 40px 24px; /* さらにサイズを小さく */
  text-align: center;
  overflow: hidden;
  background: var(--brand-brown);
}
/* 背景への演出（柄のデザイン） */
.common-cta::before {
  content: "";
  position: absolute; inset: 0;
  /* 繊細な幾何学模様（格子柄）のSVGパターン */
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 40px 40px;
  opacity: 1;
  z-index: 1;
}
.common-cta::after {
  content: "";
  position: absolute; inset: 0;
  /* グラデーションを透過させて画像を見せる */
  background: linear-gradient(135deg, rgba(93, 64, 55, 0.8) 0%, rgba(93, 64, 55, 0.3) 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: 'Zen Maru Gothic', sans-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;
  overflow: hidden;
  font-weight: 700;
}
.btn-cta-tel { background: var(--white); color: var(--brand-brown); }
.btn-cta-web { background: var(--brand-green); color: var(--white); font-family: 'Zen Maru Gothic', sans-serif; }
.btn-cta-tel .num { font-size: 18px; font-family: 'Noto Sans JP', sans-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, .btn-cta-web:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

@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; }
}

/* ── STAFF ── */
#staff {
  position: relative;
  background: #f9f9f9;
  overflow: hidden;
  padding: 100px 0;
}
.staff-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('../img/staff01.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(3px) grayscale(5%);
  opacity: 0.8;
  z-index: 1;
}
.staff-bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(249, 249, 249, 1), rgba(249, 249, 249, 0.4), rgba(249, 249, 249, 1));
}

.staff-wrap {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
}
#staff .tag, #staff .h2, #staff .staff-intro {
  text-align: center;
  width: 100%;
  display: block;
}

#staff .h2-inner::before {
  /* 背景画像と同化しないように、少し濃い色にして不透明度を上げる */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B89775' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 11V6a2 2 0 0 0-2-2v0a2 2 0 0 0-2 2v0'/%3E%3Cpath d='M14 10V4a2 2 0 0 0-2-2v0a2 2 0 0 0-2 2v2'/%3E%3Cpath d='M10 10.5V6a2 2 0 0 0-2-2v0a2 2 0 0 0-2 2v8'/%3E%3Cpath d='M18 8a2 2 0 1 1 4 0v6a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15'/%3E%3C/svg%3E");
  opacity: 0.9;
}

#staff .staff-intro {
  margin-top: 80px !important; /* アイコンからの距離 */
}
#staff .staff-intro-highlight {
  position: relative;
  display: inline-block;
  background-color: var(--brand-beige);
  color: var(--brand-brown);
  padding: 20px 32px;
  border-radius: 16px;
  border: 3px solid var(--brand-brown); /* 茶色の枠線を太くする */
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  line-height: 1.8;
  letter-spacing: 0.1em;
}
/* 枠線用の外側しっぽ */
#staff .staff-intro-highlight::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-top: 27px solid var(--brand-brown); /* 枠線の太さに合わせて調整 */
  border-left: 19px solid transparent;
  border-right: 19px solid transparent;
}
/* 背景色用の内側しっぽ */
#staff .staff-intro-highlight::after {
  content: '';
  position: absolute;
  top: calc(100% - 3px); /* 本体下部の枠線を覆い隠すようにずらす */
  left: 50%;
  transform: translateX(-50%);
  border-top: 24px solid var(--brand-beige); /* 元のしっぽ */
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
}
.staff-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 64px;
}
.staff-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}
.staff-member:hover {
  transform: translateY(-5px);
}
.staff-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--brand-brown);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 16px; /* 名前との間隔 */
}
.staff-icon svg {
  width: 60%;
  height: 60%;
}
.staff-member:hover .staff-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.staff-name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-brown);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.staff-comment {
  font-size: 13px;
  color: var(--black);
  text-align: center;
  max-width: 200px;
  margin-top: 8px;
  line-height: 1.6;
  background: var(--white);
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border: 1.5px solid #EAE0D5;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.staff-member:hover .staff-comment {
  border-color: #B89775;
  transform: translateY(2px);
}
.staff-comment::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 7px solid #EAE0D5;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
}
.staff-comment::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 6px solid var(--white);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  margin-bottom: -1.5px;
}

/* Staff Personal Colors */
.anim-mizuno { background-color: #d2a679 !important; } /* ウォームベージュ */
.anim-komuro { background-color: #8fb339 !important; } /* セージグリーン */
.anim-watanabe { background-color: var(--brand-brown) !important; } /* クラシックブラウン */
.anim-yoshida { background-color: #74b9ff !important; } /* スカイブルー */
.anim-okuyama { background-color: #f78fb3 !important; } /* ソフトローズピンク */

/* Staff Personal Animations (Dynamic Arms) */
.staff-icon svg { overflow: visible; }
.arm-right, .arm-left { transform-origin: 50% 50%; }

/* 水野: 手を振る (Wave) */
.anim-mizuno .arm-right {
  transform-origin: 70px 50px;
  animation: staffWave 2s ease-in-out infinite;
}
@keyframes staffWave {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-40deg); }
}

/* 小室: 手をあげる (Raise) */
.anim-komuro .arm-left {
  transform-origin: 30px 50px;
  animation: staffRaise 3s ease-in-out infinite;
}
@keyframes staffRaise {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px) rotate(-10deg); }
}

/* 渡辺: 丁寧なお辞儀 (Polite Bow) */
.anim-watanabe .body-main {
  transform-origin: 50px 80px;
  animation: staffBow 4s ease-in-out infinite;
}
@keyframes staffBow {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.9); }
}

/* 吉田: バンザーイ (Banzai) */
.anim-yoshida .arm-left { transform-origin: 30px 50px; animation: staffBanzaiL 2.5s ease-in-out infinite; }
.anim-yoshida .arm-right { transform-origin: 70px 50px; animation: staffBanzaiR 2.5s ease-in-out infinite; }
@keyframes staffBanzaiL { 0%, 100% { transform: rotate(0); } 50% { transform: rotate(-30deg); } }
@keyframes staffBanzaiR { 0%, 100% { transform: rotate(0); } 50% { transform: rotate(30deg); } }

/* 奥山: 左手をあげてジャンプ (Jump & Raise Hand) */
.anim-okuyama {
  transition: transform 0.3s;
  animation: staffJump 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.anim-okuyama .arm-left {
  transform-origin: 30px 55px;
  animation: staffHandBoost 1.2s ease-out infinite;
}
@keyframes staffJump {
  0%, 100% { transform: translateY(0) scaleY(1); }
  50% { transform: translateY(-15px) scaleY(1.05); } /* ジャンプの頂点 */
}
@keyframes staffHandBoost {
  0%, 100% { transform: rotate(0); }
  50% { transform: rotate(-20deg); } /* ジャンプ中に手をさらにあげる */
}

/* ── 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(--brand-brown);
  border: 2px solid var(--brand-brown);
  padding: 14px 36px;
  font-family: 'Zen Maru Gothic', sans-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(--brand-brown);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(93, 64, 55, 0.15);
}

/* ── Payment Note Alert Box ── */
.payment-note {
  text-align: left;
  margin-top: 24px;
  padding: 16px 20px;
  border: 2px dashed #D32F2F;
  background-color: #FFEBEE;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(211, 47, 47, 0.05);
}
.payment-note-text {
  font-size: 14px;
  font-weight: 700;
  color: #C62828;
  margin: 0;
  line-height: 1.6;
}

.voice {
  position: relative;
  background-image: url('../img/service04.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-bottom: 40px; /* PCでの下部余白を縮小 */
}
.voice::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.94);
  z-index: 1;
}
.voice-wrap { position: relative; z-index: 2; max-width: 1160px; margin: 0 auto; }
.voice .h2 { color: var(--brand-brown); }
.voice-stars {
  color: var(--brand-green);
  margin-bottom: 12px;
}
.voice-slider {
  margin-top: 40px; /* 72pxから縮小 */
  padding-bottom: 50px; /* Pagination space */
}
.voice-card {
  background: #f5f4f2; padding: 40px 36px;
  border-left: 2px solid var(--brand-brown);
  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(--brand-brown);
  opacity: 0.2;
}
.voice-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.voice-mark {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 64px; font-weight: 700; color: var(--brand-brown);
  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(--brand-brown);
  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, #f5f4f2);
  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(--brand-brown);
  cursor: pointer;
  padding: 8px 0;
  margin: 16px 0 24px;
  align-items: center; gap: 8px;
  border-bottom: 1px solid var(--brand-brown);
}
.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: 'Space Mono', monospace;
  font-size: 12px; letter-spacing: 0.1em; color: var(--brand-brown);
  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-orbs { display: none; }
.message-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.message-orb {
  position: absolute;
  background: var(--brand-beige);
  border-radius: 50%;
  opacity: 0.6; /* ベージュを白背景で見せるために不透明度を調整 */
  filter: blur(25px);
  animation: balloonFloat infinite alternate ease-in-out;
}
.orb-1 { width: 150px; height: 150px; left: 10%; bottom: -100px; animation-duration: 10s; }
.orb-2 { width: 250px; height: 250px; right: 5%; bottom: -150px; animation-duration: 14s; animation-delay: -5s; }
.orb-3 { width: 100px; height: 100px; left: 40%; bottom: -80px; animation-duration: 8s; animation-delay: -2s; }
.orb-4 { width: 180px; height: 180px; right: 30%; bottom: -120px; animation-duration: 12s; animation-delay: -7s; }
.orb-5 { width: 80px; height: 80px; left: 25%; bottom: -50px; animation-duration: 7s; }
.orb-6 { width: 120px; height: 120px; right: 15%; bottom: -90px; animation-duration: 10s; animation-delay: -3s; }

@keyframes balloonFloat {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -150px) scale(1.1); }
  66% { transform: translate(-20px, -300px) scale(0.9); }
  100% { transform: translate(10px, -450px) scale(1.05); }
}
.message-inner {
  position: relative; z-index: 2;
  max-width: 800px; 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(--brand-brown);
  margin-bottom: 0;
  text-align: center;
}
.message-inner .rule { background: rgba(0,0,0,0.2); margin: 32px auto; }
.message-inner .body-text {
  color: var(--brand-brown);
  line-height: 2.1;
  letter-spacing: 0.1em;
  text-align: left; /* PCでも左揃えに変更 */
  max-width: 700px; /* 一行が長くなったため少し広げる */
  margin: 0 auto;
}
.message-inner .sign {
  margin-top: 40px;
  font-family: 'Space Mono', monospace;
  font-size: 20px; font-weight: 700; letter-spacing: 0.1em; color: var(--brand-brown);
}

/* ── RESERVE ── */
.reserve { background: var(--white); }
.reserve-wrap { max-width: 840px; margin: 0 auto; text-align: center; }
.reserve .h2 { font-size: clamp(40px, 6vw, 68px); margin-bottom: 16px; }
.reserve-lead { font-size: 13px; color: #aaa; letter-spacing: 0.12em; margin-bottom: 72px; }
.reserve-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-bottom: 40px;
}
.res-card {
  border: 1px solid #e0e0e0; padding: 48px 32px;
  text-align: center; cursor: pointer;
  display: block;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.res-card:hover { border-color: #111; transform: translateY(-2px); }
.res-card.line-card { border-color: #06C755; }
.res-card.line-card:hover { border-color: #05a848; }
.res-label-tag {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--line-green); color: white;
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: 0.18em; padding: 4px 16px;
}
.res-icon { margin-bottom: 20px; }
.res-type {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: #aaa; margin-bottom: 12px;
}
.res-contact {
  font-family: 'Space Mono', monospace;
  font-size: 28px; font-weight: 300; color: var(--black);
  letter-spacing: 0.04em; margin-bottom: 8px;
}
.res-note { font-size: 11px; color: #bbb; letter-spacing: 0.08em; }
.reserve-footnote { font-size: 12px; color: #ccc; letter-spacing: 0.08em; }

/* ── INFO ── */
.info { background: var(--brand-beige); }
.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: 'Space Mono', monospace;
  font-size: 16px; font-weight: 700; color: var(--brand-brown);
  width: 120px;
}
.info-table td:last-child { color: var(--black); 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; }
.btn-white-sm {
  flex: 1; text-align: center;
  background: var(--black); color: var(--white);
  padding: 13px 24px;
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s;
}
.btn-white-sm:hover { background: #333; }
.btn-ghost-sm {
  flex: 1; text-align: center;
  background: transparent; color: #888;
  padding: 13px 24px;
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; border: 1px solid #ddd; transition: border-color 0.2s;
}
.btn-ghost-sm:hover { border-color: #999; color: #555; }

/* ── GROUP STORES ── */
.group-stores {
  background: #fdfdfd;
  padding: 100px 56px;
}
.group-wrap { max-width: 1100px; margin: 0 auto; }

.group-new-layout {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 48px;
}
.group-new-img { flex: 1; min-width: 0; }
.group-new-text { flex: 1.2; }

.group-stores .tag {
  font-size: 24px;
  margin-bottom: 32px;
}
.group-new-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 38px; font-weight: 700; color: #81d8d0;
  margin-bottom: 24px; letter-spacing: 0.05em;
}
.group-new-desc {
  font-size: 16px; line-height: 2; color: #000;
}
.group-img {
  width: 100%; height: auto; border-radius: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.btn-group-site-simple {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid #81d8d0;
  color: #81d8d0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-group-site-simple:hover {
  background: var(--brand-brown);
  color: var(--white);
}

/* モバイル対応 */
@media (max-width: 900px) {
  .group-stores { padding: 80px 24px; }
  .group-new-layout { flex-direction: column; gap: 40px; }
  .group-new-text { text-align: center; }
  .group-new-title { font-size: 26px; margin-bottom: 20px; }
  .group-new-desc { text-align: left; font-size: 14px; }
  .btn-group-site-simple { width: 100%; box-sizing: border-box; }
}

/* ── FOOTER ── */
footer {
  background: var(--brand-beige);
  border-top: 1px solid rgba(0,0,0,0.05);
  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(--brand-brown); text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 0.7; }
.footer-copy {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px; color: var(--gray);
  letter-spacing: 0.05em;
}

/* ── HOT PEPPER BTN ── */
.btn-hotpepper {
  display: inline-block;
  width: 40px !important;
  transition: opacity 0.3s;
}
.btn-hotpepper:hover { opacity: 0.8; }
.hp-logo-btn {
  width: 100% !important;
  height: auto !important;
  display: block;
}

/* ── 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(--white);
  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: 'Zen Maru Gothic', sans-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(--brand-brown);
}
.sp-cta-res {
  background: var(--brand-green);
}
.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(--brand-green);
  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;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.page-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
}
.page-top-btn:hover {
  transform: translateY(-4px);
}
.page-top-btn svg {
  width: 24px;
  height: 24px;
}

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

  body, .body-text, .svc-desc, .group-new-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(--brand-brown); }
  .nav-cta { display: none; }
  .menu-btn { 
    display: block; 
    width: 44px; height: 44px; 
    background: #a5b4a3; /* Greenish grey from image */
    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:first-child { top: 22px; }
  nav.is-open .menu-btn span:last-child { top: 22px; }

  .nav-links {
    position: fixed; inset: 0;
    background: rgba(245, 245, 220, 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-links a {
    font-size: 18px; /* 全て見えるように調整 */
    color: var(--brand-brown);
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    padding: 8px 40px; /* 余白を調整 */
    font-family: 'Zen Maru Gothic', sans-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(--brand-green);
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .nav-links a:active { color: var(--brand-green); }
  .nav-links a:active::before { opacity: 1; }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: 0; left: 50%; width: 0; height: 1px;
    background: var(--brand-green);
    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; padding-top: 0; padding-bottom: 140px; }
  .hero-premium-container { flex-direction: column; }
  .hero-premium-visual { order: 2; height: 350px; flex: none; width: 100%; }
  .hero-premium-content { order: 1; padding: 16px 24px 24px; flex: none; width: 100%; text-align: center; }
  .hero-tag { justify-content: center; margin-bottom: 4px; }
  .hero-tag::before { display: none; }
  .hero-title { font-size: 22px; margin-bottom: 0; line-height: 1.3; }
  .hero-desc { font-size: 15px; margin-bottom: 32px; max-width: 100%; }
  .hero-badges-pc { display: none; }
  .hero-badges-sp { display: flex; position: absolute; top: 20px; left: 0; right: 0; justify-content: center; gap: 16px; margin-bottom: 0; z-index: 20; }
  .hero-badge { width: 90px; height: 90px; font-size: 13px; }
  .hero-cta-area { display: none; }
  .hero-img-deco { top: 20px; right: 20px; bottom: 20px; left: 20px; }
  .hero-side-bar { display: none; }

  .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(93, 64, 55, 0.08);
    color: var(--brand-brown);
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 4px;
    font-weight: 500;
  }
  .menu-item-price {
    font-size: 20px;
    padding: 0;
    background: none;
    color: var(--brand-green);
  }
  .menu-item-price::before {
    content: "料金：";
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
  }
  /* 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-img-wrap::before { display: none; }
  
  #staff .staff-intro { text-align: center; width: 100%; display: block; }
  #staff .staff-intro-highlight { text-align: left; display: inline-block; }

  .staff-grid { gap: 20px; }
  .staff-icon { width: 80px; height: 80px; font-size: 16px; }


  .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; }
  .staff-grid { padding-bottom: 0; }
  #voice { padding-bottom: 0 !important; }
  #message { padding: 0 24px 80px !important; }
  #message .body-text { 
    text-align: left; /* SPでは左揃え */
    margin: 0;
  }

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

  #services .h2,
  #menu .h2,
  #voice .h2,
  #staff .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; }
}



