:root {
  /* さくら会ピンク系 */
  --sakura-primary: #E8566D;
  --sakura-light: #FFF0F2;
  --sakura-soft: #F9D4DA;
  --sakura-accent: #D94060;

  /* すずらんブルー系 */
  --suzuran-primary: #2E8BC0;
  --suzuran-light: #EDF5FA;
  --suzuran-soft: #B8D9ED;
  --suzuran-accent: #1A6FA0;

  /* ニュートラル */
  --white: #FFFFFF;
  --off-white: #FAFBFC;
  --gray-50: #F7F8F9;
  --gray-100: #ECEEF0;
  --gray-200: #D8DCDF;
  --gray-400: #9BA3AB;
  --gray-600: #5A6570;
  --gray-800: #2D3339;
  --gray-900: #1A1F24;

  /* グラデーション */
  --gradient-collab: linear-gradient(135deg, var(--sakura-primary) 0%, var(--suzuran-primary) 100%);
  --gradient-collab-soft: linear-gradient(135deg, var(--sakura-light) 0%, var(--suzuran-light) 100%);

  /* Typography */
  --font-serif: 'Noto Serif JP', 'a-otf-ryumin-pr6n', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-display: 'Cormorant Garamond', var(--font-serif);
}

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

html { scroll-behavior: smooth; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ========================================
   HEADER
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 160px;
}
.header-logo-img {
  width: 160px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.logo-sakura { color: var(--sakura-primary); }
.logo-suzuran { color: var(--suzuran-primary); }
.logo-x {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  color: var(--gray-400);
  font-style: italic;
}
.header-nav {
  display: flex;
  gap: 32px;
  list-style: none;
}
.header-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gray-600);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gradient-collab);
  transition: width 0.3s;
}
.header-nav a:hover { color: var(--gray-900); }
.header-nav a:hover::after { width: 100%; }

/* ========================================
   HERO / MAIN VISUAL
======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.15) 0%,
    rgba(26,31,36,0.35) 60%,
    rgba(26,31,36,0.55) 100%
  );
  z-index: 1;
}
.hero-bg-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95);
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-bg-image.active {
  opacity: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 8px 28px;
  margin-bottom: 32px;
  font-size: 13px;
  letter-spacing: 0.15em;
  font-weight: 400;
  animation: fadeInUp 1s 0.2s both;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sakura-soft);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.6;
  margin-bottom: 24px;
  animation: fadeInUp 1s 0.4s both;
}
.hero-title .accent-sakura { color: var(--sakura-soft); }
.hero-title .accent-suzuran { color: var(--suzuran-soft); }
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 300;
  letter-spacing: 0.2em;
  opacity: 0.85;
  font-style: italic;
  animation: fadeInUp 1s 0.6s both;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 47%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s 1s both;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.8);
  animation: scrollLine 2s infinite;
}

/* ========================================
   SECTION: WISH (想い)
======================================== */
.section-wish {
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
}
.section-wish::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-collab);
  opacity: 0.3;
}
.section-wish .bg-pattern {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--gradient-collab-soft);
  opacity: 0.3;
  filter: blur(80px);
}
.wish-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  opacity: 0.18;
}
.wish-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 30%, rgba(255,255,255,0) 70%, rgba(255,255,255,0.4) 100%);
}
.wish-bg__img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}
.wish-bg__img:first-child {
  object-position: right bottom;
}
.wish-bg__img:last-child {
  object-fit: contain;
  object-position: left top;
  background: #f5f0ee;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}
.section-en {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gray-800);
  line-height: 1.2;
  font-style: italic;
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(255,255,255,0.8);
}
.section-en .first-letter {
  background: var(--gradient-collab);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.9));
}
.section-ja {
  font-family: var(--font-serif);
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gray-800);
  position: relative;
  display: inline-block;
  text-shadow: 0 0 16px rgba(255,255,255,0.8);
}
.section-ja::before,
.section-ja::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
}
.section-ja::before {
  right: calc(100% + 16px);
  background: var(--sakura-primary);
  opacity: 0.5;
}
.section-ja::after {
  left: calc(100% + 16px);
  background: var(--suzuran-primary);
  opacity: 0.5;
}
.wish-statement {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.wish-lead {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: var(--gray-800);
  margin-bottom: 40px;
}
.wish-lead .highlight {
  background: linear-gradient(transparent 65%, var(--sakura-soft) 65%);
  padding: 0 2px;
}
.wish-text {
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: 0.06em;
  color: var(--gray-600);
}

/* ========================================
   SECTION: COLLAB MOVIE
======================================== */
.section-movie {
  background: var(--gray-50);
  padding: 100px 0;
}
.movie-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.movie-label {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gray-600);
  margin-bottom: 32px;
}
.movie-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.movie-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Coming Soon */
.coming-soon-box {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: 12px;
  border: 2px dashed #ddd;
}
.coming-soon-label {
  font-family: var(--font-en, 'Cormorant Garamond', serif);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--sakura, #E8566D);
  margin-bottom: 12px;
}
.coming-soon-text {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--gray-600, #666);
  letter-spacing: 0.08em;
  line-height: 1.8;
}

/* ========================================
   SECTION: GALLERY (Photo Strip)
======================================== */
.section-gallery {
  padding: 0;
  overflow: hidden;
  position: relative;
}
.gallery-strip {
  display: flex;
  gap: 4px;
  animation: galleryScroll 40s linear infinite;
}
.gallery-strip img {
  height: 200px;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
  filter: grayscale(20%);
  transition: filter 0.4s;
}
.gallery-strip img:hover {
  filter: grayscale(0%);
}

/* ========================================
   SECTION: MESSAGE (あいさつ)
======================================== */
.section-message {
  padding: 140px 0 120px;
  position: relative;
}
.message-header {
  text-align: center;
  margin-bottom: 32px;
}
.message-lead {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--gray-800);
  text-align: center;
  margin-bottom: 80px;
}
.message-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 40px;
}
.person-card {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.04);
  transition: transform 0.4s, box-shadow 0.4s;
}
.person-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.person-card.sakura { border-top: 3px solid var(--sakura-primary); }
.person-card.suzuran { border-top: 3px solid var(--suzuran-primary); }
.person-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: brightness(0.97);
}
.person-body {
  padding: 36px 32px 40px;
}
.person-role {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}
.person-card.sakura .person-role { color: var(--sakura-primary); }
.person-card.suzuran .person-role { color: var(--suzuran-primary); }
.person-name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  color: var(--gray-900);
}
.person-quote {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: var(--gray-600);
  letter-spacing: 0.04em;
  position: relative;
  padding-left: 20px;
  border-left: 2px solid var(--gray-100);
}
.person-card.sakura .person-quote { border-left-color: var(--sakura-soft); }
.person-card.suzuran .person-quote { border-left-color: var(--suzuran-soft); }

/* 経歴 */
.person-career {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}
.career-toggle {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
  background: none;
  border: none;
  font-family: var(--font-sans);
}
.career-toggle:hover { color: var(--gray-600); }
.career-toggle .arrow {
  display: inline-block;
  transition: transform 0.3s;
  font-size: 10px;
}
.career-list {
  margin-top: 16px;
  font-size: 12px;
  line-height: 2;
  color: var(--gray-600);
  letter-spacing: 0.04em;
  display: none;
}

/* ========================================
   SECTION: COLUMN
======================================== */
.section-column {
  background: var(--gray-50);
  padding: 120px 0;
}
.column-container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 40px;
}
.column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.column-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.column-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.column-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s;
}
.column-card:hover .column-thumb {
  transform: scale(1.04);
}
.column-thumb-wrap { overflow: hidden; }
.column-body { padding: 24px; }
.column-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.column-date {
  font-size: 12px;
  color: var(--gray-400);
  letter-spacing: 0.06em;
}
.column-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 100px;
  color: var(--white);
  background: var(--gradient-collab);
}
.column-title-text {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--gray-800);
  margin-bottom: 8px;
}
.column-excerpt {
  font-size: 13px;
  line-height: 1.8;
  color: var(--gray-400);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.view-more-btn {
  display: flex;
  justify-content: center;
}
.view-more-btn a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--gray-600);
  padding: 12px 36px;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  transition: all 0.3s;
}
.view-more-btn a:hover {
  background: var(--gray-800);
  border-color: var(--gray-800);
  color: var(--white);
}
.view-more-btn a .arrow-r {
  transition: transform 0.3s;
}
.view-more-btn a:hover .arrow-r {
  transform: translateX(4px);
}

/* ========================================
   SECTION: GROUP (拠点一覧)
======================================== */
.section-group {
  padding: 120px 0;
}
.group-container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 40px;
}
.group-block {
  margin-bottom: 80px;
}
.group-block:last-child { margin-bottom: 0; }
.group-block-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.group-block-title .label {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.group-block-title .line {
  flex: 1;
  height: 1px;
  background: var(--gray-100);
}
.group-block.sakura-block .label { color: var(--sakura-primary); }
.group-block.suzuran-block .label { color: var(--suzuran-primary); }

.area-accordion {
  margin-bottom: 16px;
}
.area-btn {
  width: 100%;
  padding: 16px 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-800);
  letter-spacing: 0.08em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
}
.area-btn:hover {
  border-color: var(--gray-200);
  background: var(--gray-50);
}
.area-btn .chevron {
  transition: transform 0.3s;
  color: var(--gray-400);
}
.area-btn.active .chevron {
  transform: rotate(180deg);
}
.area-content {
  display: none;
  padding: 20px 0;
}
.clinic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.clinic-item {
  text-align: center;
  transition: transform 0.3s;
}
.clinic-item:hover { transform: translateY(-2px); }
.clinic-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
  display: block;
}
/* 画像未設定時のプレースホルダー */
.clinic-img[src=""] {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--gray-400);
}
.clinic-img--sakura[src=""] { background: var(--sakura-light); }
.clinic-img--suzuran[src=""] { background: var(--suzuran-light); }
.clinic-name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gray-600);
}

/* ========================================
   SECTION: BANNER
======================================== */
.section-banner {
  padding: 60px 0;
  background: var(--gradient-collab-soft);
}
.banner-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 24px;
  justify-content: center;
}
.banner-item {
  flex: 1;
  max-width: 380px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 24px;
}
.banner-item:hover { transform: translateY(-3px); }
.banner-logo {
  width: 200px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.10));
}
.banner-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gray-400);
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 0;
}
.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-nav {
  display: flex;
  gap: 28px;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-nav a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-logo-img {
  width: 120px;
  height: auto;
  object-fit: contain;
  display: block;
  /* フッターは暗背景なのでロゴを白く反転 */
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.footer-logo-img:hover { opacity: 1; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.footer-logo-text {
  font-size: 12px;
  letter-spacing: 0.1em;
}
.footer-logo-text.sakura { color: var(--sakura-soft); }
.footer-logo-text.suzuran { color: var(--suzuran-soft); }
.footer-x { color: rgba(255,255,255,0.2); }
.copyright {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 200%; }
}
@keyframes galleryScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========================================
   SECTION: PHOTO GALLERY (Strip)
======================================== */
.section-gallery {
  padding: 0;
  overflow: hidden;
  position: relative;
}
.gallery-track {
  display: flex;
  gap: 4px;
  animation: galleryTrackScroll 60s linear infinite;
  width: max-content;
}
.gallery-img {
  height: 200px;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 0;
  filter: grayscale(15%);
  transition: filter 0.4s;
}
.gallery-img:hover {
  filter: grayscale(0%);
}
@keyframes galleryTrackScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-inner {
    padding: 12px 20px;
    position: relative;
  }
  .header-logos {
    margin-right: auto;
    gap: 8px;
  }
  .header-logo-wrap { width: 110px; }
  .header-logo-img { width: 110px; }

  .hero { min-height: 500px; max-height: 700px; }
  .hero-badge { font-size: 11px; padding: 6px 20px; }
  .hero-scroll { left: 45%; }
  .hero-bg-image.focus-left { object-position: 30% center; }
  .hero-bg-image.focus-right { object-position: 70% center; }
  .hero-bg-image.focus-far-right { object-position: 80% center; }
  .hero-bg-image.focus-center-left { object-position: 40% center; }
  .hero-bg-image.focus-center { object-position: center center; }

  .section-wish { padding: 80px 0 60px; }
  .section-wish .bg-pattern { display: none; }
  .wish-bg { flex-direction: column; }
  .wish-bg__img { width: 100%; height: 50%; }
  .wish-bg__img:first-child { object-position: center center; }
  .wish-bg__img:last-child {
    object-fit: cover;
    object-position: center top;
    background: none;
  }
  .wish-statement { padding: 0 24px; }

  .section-message { padding: 80px 0 60px; }
  .message-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
  .message-header { padding: 0 20px; }

  .section-column { padding: 80px 0; }
  .column-container { padding: 0 20px; }
  .column-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-group { padding: 80px 0; }
  .group-container { padding: 0 20px; }
  .clinic-grid { grid-template-columns: repeat(3, 1fr); }

  .banner-container {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }
  .banner-item { max-width: 100%; }

  .footer-top { flex-direction: column; gap: 24px; }
  .footer-nav { flex-wrap: wrap; gap: 16px; }

  .gallery-img { height: 140px; }
}

/* ========================================
   NOTE LABELS
======================================== */
.design-note {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 200;
  background: var(--gray-900);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.6;
  max-width: 260px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.design-note strong { color: var(--sakura-soft); }
@media (max-width: 768px) {
  .design-note { display: none; }
}

/* ========================================
   HAMBURGER MENU (SP)
======================================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}
.hamburger:hover { background: var(--gray-100); }
.hamburger-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center;
}
.hamburger.is-open .hamburger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open .hamburger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.sp-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--white);
  z-index: 150;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 40px;
  box-shadow: -8px 0 40px rgba(0,0,0,0.08);
}
.sp-drawer.is-open { transform: translateX(0); }
.sp-drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  color: var(--gray-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.sp-drawer-close:hover {
  background: var(--gray-900);
  color: var(--white);
  border-color: var(--gray-900);
}
.sp-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.sp-drawer-link {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
  text-decoration: none;
  transition: padding-left 0.2s;
}
.sp-drawer-link:first-child { border-top: 1px solid var(--gray-100); }
.sp-drawer-link:hover { padding-left: 8px; }
.sp-drawer-en {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  background: var(--gradient-collab);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.sp-drawer-ja {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gray-400);
  margin-top: 2px;
}
.sp-drawer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 32px;
}
.sp-drawer-logo-img {
  width: 120px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.sp-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,31,36,0.5);
  z-index: 140;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.sp-drawer-overlay.is-open { opacity: 1; pointer-events: auto; }

@media (max-width: 768px) { .hamburger { display: flex; } }
@media (min-width: 769px) {
  .sp-drawer { display: none; }
  .sp-drawer-overlay { display: none; }
}

/* ========================================
   BACK TO TOP BUTTON
======================================== */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 20px;
  z-index: 120;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s, background 0.2s, color 0.2s;
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--gray-900);
  color: var(--white);
  border-color: var(--gray-900);
}
@media (min-width: 769px) { .back-to-top { bottom: 32px; } }

/* ========================================
   SP FIXED BANNER（ロゴ画像版）
======================================== */
.sp-fixed-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 130;
  height: 64px;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.sp-fixed-banner__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 50%;
  height: 100%;
  float: left;
  text-decoration: none;
  transition: opacity 0.2s;
}
.sp-fixed-banner__item:active { opacity: 0.7; }
.sp-fixed-banner__item--sakura {
  background: var(--sakura-light);
  border-right: 1px solid rgba(232,86,109,0.15);
}
.sp-fixed-banner__item--suzuran {
  background: var(--suzuran-light);
}
.sp-fixed-banner__logo {
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.12));
  height: 30px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}
.sp-fixed-banner__label {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--gray-400);
}

@media (max-width: 768px) {
  .sp-fixed-banner { display: flex; }
  body { padding-bottom: 64px; }
}

/* ========================================
   CLINIC OTHER BUTTON（名古屋市外エリア）
======================================== */
.clinic-other {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px 20px;
  background: var(--suzuran-light);
  border-radius: 12px;
  text-align: center;
}
.clinic-other-text {
  font-size: 14px;
  color: var(--gray-600);
  letter-spacing: 0.06em;
  line-height: 1.8;
}
.clinic-other-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--suzuran-primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 14px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.clinic-other-btn:hover {
  background: var(--suzuran-accent);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .person-photo {
    aspect-ratio: 3/4;
  }
}
