:root {
  --gold-primary: #c2aa68;
  --gold-dark: #998647;
  --text-dark: #333333;
  --white: #ffffff;
  --font-serif: 'Noto Serif JP', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* ==================================
 * HERO SECTION
 * ================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-container picture,
.hero-bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: heroZoom 16s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Left text column */
.hero-content {
  max-width: 720px;
  color: var(--white);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 48px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 28px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 0.8s ease 0.15s forwards;
}

.hero-description {
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 620px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 0.8s ease 0.35s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 0.8s ease 0.55s forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  min-width: 280px;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.cta-reserve {
  background-color: var(--gold-dark);
  color: var(--white);
}

.cta-tel {
  background-color: var(--white);
  color: var(--gold-dark);
}

.cta-phone-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-right: 6px;
}

.chevron-icon {
  font-style: normal;
  font-size: 18px;
  transition: transform 0.25s ease;
}

.cta-btn:hover .chevron-icon {
  transform: translateX(4px);
}

/* ==================================
 * BADGES (right column)
 * ================================== */
.hero-badges {
  position: relative;
  width: 440px;
  height: 380px;
  flex-shrink: 0;
}

.badge-item {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-sizing: border-box;
  opacity: 0;
  transform: scale(0.85);
  animation: badgePop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.badge-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.badge-implant { animation-delay: 0.5s; }
.badge-ortho { animation-delay: 0.65s; }
.badge-established { animation-delay: 0.8s; }

@keyframes badgePop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.badge-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Badge 1: 300本 implant */
.badge-implant {
  top: 30px;
  right: 150px;
  width: 180px;
  height: 180px;
  z-index: 3;
}

/* Badge 2: 100症例 ortho */
.badge-ortho {
  bottom: 0px;
  left: 0px;
  width: 180px;
  height: 180px;
  z-index: 2;
}

/* Badge 3: 2017年 established */
.badge-established {
  bottom: 0;
  right: 50px;
  width: 180px;
  height: 180px;
  z-index: 1;
}

/* ==================================
 * PC / SP visibility utilities
 * ================================== */
.pc-only {
  display: block !important;
}

.sp-only {
  display: none !important;
}

/* ==================================
 * SCROLL REVEAL
 * ================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

.reveal-stagger.is-visible > * {
  transition-delay: calc(var(--stagger-i, 0) * 90ms);
}

@media (prefers-reduced-motion: reduce) {
  .implant-page *,
  .implant-page *::before,
  .implant-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==================================
 * MOBILE (SP) BREAKPOINT
 * ================================== */
@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: block !important;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.4);
  }

  .hero-inner {
    flex-direction: column;
    padding: 32px 20px 48px;
  }

  .hero-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 13px;
    margin-bottom: 32px;
  }

  /* SP badges: single row of 3, in-flow */
  .hero-badges {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 20px auto 32px;
    padding: 0 12px;
  }

  .badge-item,
  .badge-implant,
  .badge-ortho,
  .badge-established {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 104px;
    height: 104px;
    flex-shrink: 0;
  }

  .badge-ortho { order: 1; }
  .badge-implant { order: 2; }
  .badge-established { order: 3; }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .cta-btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
    padding: 16px;
    position: relative;
  }

  .chevron-icon {
    position: absolute;
    right: 20px;
  }
}

/* Color & Font Variables */
:root {
  --bg-beige: #f7f5ed;
  --gold-accent: #a38237;
  --border-light: #e2dfd5;
}

/* ==================================
 * NEWS
 * ================================== */
.news-section {
  background-color: var(--bg-beige);
  padding: 48px 24px;
  width: 100%;
}

.news-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 64px;
  box-sizing: border-box;
}

.news-header {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.news-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin: 0;
}

.news-subtitle {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--gold-accent);
  letter-spacing: 0.05em;
  margin-top: 6px;
  text-transform: uppercase;
}

.news-content {
  flex-grow: 1;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.news-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  gap: 16px;
  transition: background-color 0.2s ease;
}

.news-item:hover {
  background-color: rgba(163, 130, 55, 0.04);
}

.news-date {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-dark);
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.news-category {
  background-color: var(--gold-accent);
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.news-text {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 1600px) {
  .hero-section {
    min-height: 800px;
  }
  .news-text {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .news-section {
    padding: 32px 16px;
    width: 100%;
  }
  .news-container {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 16px;
    padding: 0;
    width: 100%;
  }
  .news-header {
    align-items: flex-start !important;
    text-align: left !important;
  }
  .news-title { font-size: 26px; }
  .news-subtitle { font-size: 14px; margin-top: 4px; }
  .news-content {
    width: 100% !important;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
  }
  .news-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start !important;
    gap: 10px;
    padding: 16px 0;
  }
  .news-date { font-size: 13px; }
  .news-category { font-size: 10px; padding: 2px 8px; }
  .news-text {
    width: 100%;
    text-align: left !important;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 4px;
  }
}

/* ==================================
 * WHY CHOOSE US
 * ================================== */
.features-section {
  background-color: #ffffff;
  padding: 80px 24px;
  width: 100%;
}

.features-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

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

.features-title {
  font-family: var(--font-serif, "Noto Serif JP", serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--text-dark, #333333);
  letter-spacing: 0.08em;
  margin: 0;
}

.features-subtitle {
  display: block;
  font-family: var(--font-serif, "Noto Serif JP", serif);
  font-size: 16px;
  color: var(--gold-accent, #a38237);
  letter-spacing: 0.1em;
  margin-top: 8px;
  text-transform: uppercase;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  width: 100%;
}

.feature-card {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.feature-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover .feature-card-img {
  transform: scale(1.06);
}

.feature-card-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

.feature-card-content {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  padding: 36px 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.feature-reason {
  font-family: var(--font-serif, "Noto Serif JP", serif);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 2px;
  width: fit-content;
}

.reason-num {
  font-size: 20px;
  font-weight: 600;
  margin-left: 4px;
}

.feature-card-title {
  font-family: var(--font-serif, "Noto Serif JP", serif);
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin: 8px 0 12px 0;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.feature-card-desc {
  font-family: var(--font-sans, "Noto Sans JP", sans-serif);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

@media (max-width: 767px) {
  .features-section { padding: 40px 0; width: 100%; }
  .features-header { padding: 0 16px; margin-bottom: 32px; }
  .features-title { font-size: 22px; line-height: 1.4; }
  .features-subtitle { font-size: 13px; margin-top: 6px; }
  .features-grid { grid-template-columns: 1fr; gap: 0; width: 100%; }
  .feature-card { height: 240px; border-bottom: 1px solid #ffffff; }
  .feature-card:last-child { border-bottom: none; }
  .feature-card-content { padding: 24px 20px; justify-content: center; }
  .feature-reason { font-size: 13px; margin-bottom: 6px; }
  .reason-num { font-size: 18px; }
  .feature-card-title { font-size: 18px; margin: 6px 0 8px 0; }
  .feature-card-desc { font-size: 12px; line-height: 1.6; }
}

/* ==================================
 * TREATMENT CASES
 * ================================== */
.cases-section {
  background-color: #ffffff;
  padding: 80px 0;
  width: 100%;
}

.cases-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.cases-header {
  text-align: center;
  margin-bottom: 40px;
}

.cases-title {
  font-family: var(--font-serif, "Noto Serif JP", serif);
  font-size: 32px;
  font-weight: 500;
  color: #333333;
  margin: 0;
}

.cases-subtitle {
  display: block;
  font-family: var(--font-serif, "Noto Serif JP", serif);
  font-size: 16px;
  color: #a38237;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

.cases-lead {
  font-family: var(--font-sans, "Noto Sans JP", sans-serif);
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
  margin-top: 24px;
  font-weight: 500;
}

.case-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.case-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: transparent;
  border: none;
  color: #a38237;
  cursor: pointer;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.case-nav-btn:hover {
  opacity: 0.7;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: 24px; }
.next-btn { right: 24px; }

.case-nav-btn svg {
  width: 32px;
  height: 32px;
  stroke-width: 2.5;
}

.case-card {
  background-color: #f7f6f0;
  padding: 48px 80px;
  box-sizing: border-box;
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

.case-card-header {
  text-align: center;
  margin-bottom: 24px;
}

.case-number {
  display: block;
  font-family: var(--font-serif, "Noto Serif JP", serif);
  font-size: 24px;
  color: #1a2b4c;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.case-tag {
  display: inline-block;
  background-color: #ffffff;
  border: 1px solid #a38237;
  color: #a38237;
  padding: 4px 32px;
  font-size: 15px;
  font-weight: 500;
}

.case-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.case-media {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.case-label {
  text-align: center;
  padding: 6px 0;
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.label-before { background-color: #ffffff; color: #a38237; }
.label-after { background-color: #a38237; color: #ffffff; }

.case-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.case-arrow-indicator {
  color: #a38237;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.case-details-table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: collapse;
  background-color: #ffffff;
}

.case-details-table th {
  background-color: #a38237;
  color: #ffffff;
  width: 25%;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #f7f6f0;
}

.case-details-table td {
  padding: 12px 16px;
  font-size: 13px;
  color: #333333;
  line-height: 1.6;
  vertical-align: middle;
  border-bottom: 1px solid #eef0f2;
}

.case-details-table tr:last-child th,
.case-details-table tr:last-child td {
  border-bottom: none;
}

.case-slider-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.case-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  width: 100%;
}

.case-pagination-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.case-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d1c7b7;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.25s ease;
}

.case-dot:hover { transform: scale(1.15); }
.case-dot.active { background-color: #a38237; transform: scale(1.2); }

@media (min-width: 1600px) {
  .cases-section { padding: 100px 0; }
  .case-img { height: 280px; }
}

@media (max-width: 767px) {
  .cases-section { padding: 32px 0 40px; background-color: #ffffff; }
  .cases-container { padding: 0; }
  .cases-header { padding: 0 16px; }
  .cases-title { font-size: 22px; }
  .cases-subtitle { font-size: 13px; }
  .cases-lead { font-size: 13px; margin-top: 16px; }

  .case-card-wrapper { position: relative; width: 100%; padding: 0; box-sizing: border-box; }
  .case-slider-viewport { width: 100%; overflow: hidden; }

  .case-card {
    background-color: #f7f6f0;
    padding: 24px 20px;
    position: relative;
    width: 100%;
    flex: 0 0 100%;
    box-sizing: border-box;
  }

  .case-number {
    font-family: "Noto Serif JP", serif;
    font-size: 22px;
    letter-spacing: 0.1em;
    color: #1a2b4c;
    text-align: center;
    margin-bottom: 8px;
  }

  .case-tag { display: table; margin: 0 auto 20px; }

  .case-comparison {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 24px;
    width: 100%;
  }

  .case-media { width: 100%; }
  .case-label { display: block; text-align: center; font-size: 11px; padding: 4px 0; }
  .case-img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; display: block; }

  .case-arrow-indicator {
    width: 0; height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid #a38237;
    margin: 10px 0;
  }

  .case-nav-btn {
    top: 260px;
    transform: translateY(-50%);
    z-index: 20;
    padding: 4px;
  }

  .prev-btn { left: 8px; }
  .next-btn { right: 8px; }
  .case-nav-btn svg { width: 20px; height: 20px; stroke-width: 3; }

  .case-details-table,
  .case-details-table tbody,
  .case-details-table tr,
  .case-details-table th,
  .case-details-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .case-details-table tr { margin-bottom: 12px; }
  .case-details-table tr:last-child { margin-bottom: 0; }

  .case-details-table th {
    background-color: #a38237;
    color: #ffffff;
    text-align: center;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    border: none;
  }

  .case-details-table td {
    background-color: #ffffff;
    color: #333333;
    padding: 12px 14px;
    font-size: 12px;
    line-height: 1.7;
    border: none;
  }

  .case-pagination-dots { gap: 8px; margin-top: 24px; }
  .case-dot { width: 7px; height: 7px; background-color: #c2b8a3; }
  .case-dot.active { background-color: #a38237; }
}

/* ==================================
 * FREE TREATMENT & PRICING
 * ================================== */
.pricing-section {
  background-color: #f7f6f0;
  padding: 80px 0 100px;
  width: 100%;
}

.pricing-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
  box-sizing: border-box;
}

.pricing-header { text-align: center; margin-bottom: 72px; }

.pricing-title {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 500;
  color: #333333;
  margin: 0;
  letter-spacing: 0.05em;
}

.pricing-subtitle {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  color: #a38237;
  letter-spacing: 0.12em;
  margin-top: 8px;
}

.pricing-lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #333333;
  margin-top: 24px;
  font-weight: 500;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-card {
  flex: 1;
  position: relative;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 100px 28px 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(163, 130, 55, 0.15);
}

.pricing-card-image-wrapper {
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease;
}

.pricing-card:hover .pricing-card-image-wrapper {
  transform: translateX(-50%) scale(1.05);
}

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

.pricing-card-body { width: 100%; text-align: center; }

.pricing-card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #a38237;
  margin: 0 0 16px;
  letter-spacing: 0.04em;
}

.pricing-price-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: #a38237;
  margin-bottom: 20px;
  line-height: 1;
}

/* FIX: badge was sitting low against the baseline of the price */
.price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  background-color: #a38237;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 6px;
  transform: none;
}

.price-amount {
  font-family: "Noto Serif JP", serif;
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.price-unit {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 500;
  margin-left: 2px;
}

.price-tax { font-size: 11px; font-weight: 400; }

.pricing-card-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: #333333;
  margin: 0;
  text-align: left;
}

@media (max-width: 992px) {
  .pricing-grid { flex-direction: column; align-items: center; gap: 80px; }
  .pricing-card { width: 100%; max-width: 400px; }
}

@media (max-width: 767px) {
  .pricing-section { padding: 40px 0 60px; background-color: #f7f6f0; }
  .pricing-container { width: 100%; max-width: 100%; padding: 0 16px; margin: 0 auto; box-sizing: border-box; }
  .pricing-header { margin-bottom: 70px; }
  .pricing-title { font-size: 22px; line-height: 1.4; }
  .pricing-subtitle { font-size: 13px; }
  .pricing-lead { font-size: 12px; line-height: 1.7; margin-top: 16px; }

  .pricing-grid {
    flex-direction: column;
    gap: 80px;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .pricing-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 70px 20px 32px;
    margin-top: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
  }

  .pricing-card-image-wrapper {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 2;
  }

  .pricing-card-title { font-size: 18px; margin-bottom: 12px; }
  .price-amount { font-size: 38px; }
  .price-unit { font-size: 18px; }
  .price-badge { width: 24px; height: 24px; font-size: 12px; }
  .pricing-card-desc { font-size: 12px; line-height: 1.7; text-align: left; }
}

/* ==================================
 * VOICE
 * ================================== */
.voice-section {
  width: 100%;
  background-color: #ffffff;
  padding-top: 80px;
  padding-bottom: 24px;
}

.voice-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
  box-sizing: border-box;
}

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

.voice-title {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 500;
  color: #333333;
  margin: 0;
}

.voice-subtitle {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  color: #a38237;
  letter-spacing: 0.12em;
  margin-top: 8px;
}

.voice-grid {
  display: flex;
  gap: 32px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.voice-card {
  flex: 1;
  background-color: #f7f6f0;
  padding: 36px 40px;
  border-radius: 8px;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.voice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

.voice-stars { color: #a38237; font-size: 18px; letter-spacing: 4px; margin-bottom: 12px; }

.voice-card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 16px;
}

.voice-card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 24px;
  border-bottom: 1px solid #e2ddd3;
  padding-bottom: 24px;
}

.voice-author { font-size: 12px; font-weight: 600; color: #333333; }

/* ==================================
 * DOCTOR
 * ================================== */
.doctor-section {
  width: 100%;
  background-color: #ffffff;
  padding-top: 24px;
  padding-bottom: 80px;
}

.doctor-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
  box-sizing: border-box;
}

.doctor-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.doctor-image-container {
  position: relative;
  flex: 0 0 480px;
  max-width: 500px;
  min-height: 580px;
  aspect-ratio: 3 / 4;
  background-color: #f0eee6;
  display: inline-block;
}

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

.doctor-badge-image {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 170px;
  height: 170px;
  z-index: 10;
  transition: transform 0.4s ease;
}

.doctor-image-container:hover .doctor-badge-image {
  transform: rotate(-6deg) scale(1.04);
}

.doctor-badge-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.doctor-badge {
  border-radius: 50%;
  background-color: #a38237;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.doctor-role {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  margin-bottom: 4px;
}

.doctor-name {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.doctor-content { flex: 1; }

.doctor-header { text-align: left; margin-bottom: 32px; }

/* FIX: serif side-bearing pushed the heading right of the body text */
.doctor-title {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 500;
  color: #333333;
  margin: 0 0 0 -0.06em;
}

.doctor-subtitle {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  color: #a38237;
  letter-spacing: 0.12em;
  margin-top: 6px;
  margin-left: -0.06em;
}

.doctor-bio p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2;
  color: #333333;
  margin: 0 0 20px;
}

@media (min-width: 1600px) {
  .voice-section, .doctor-section { padding-top: 100px; padding-bottom: 100px; }
}

@media (max-width: 767px) {
  .voice-section { padding: 32px 0 16px !important; }
  .doctor-section { padding: 16px 0 40px !important; }
  .voice-container, .doctor-container { padding: 0 16px !important; }
  .voice-header, .doctor-header { margin-bottom: 20px !important; }
  .voice-title { font-size: 22px; }
  .voice-subtitle { font-size: 13px; }
  .voice-grid { flex-direction: column; gap: 16px !important; width: 100%; }
  .voice-card { padding: 20px 16px !important; }
  .voice-card-title { font-size: 16px; }
  .voice-card-text { font-size: 13px; margin-bottom: 16px !important; padding-bottom: 16px !important; }

  .doctor-wrapper { display: flex !important; flex-direction: column !important; gap: 0 !important; }
  .doctor-header { text-align: center !important; order: 1 !important; margin-bottom: 24px !important; }

  .doctor-image-container {
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    margin-bottom: 32px !important;
    min-height: auto !important;
  }

  .doctor-img { width: 100% !important; height: auto !important; }

  .doctor-content { order: 3 !important; display: flex !important; flex-direction: column !important; }
  .doctor-bio { order: 2 !important; }
  .doctor-bio p { font-size: 13px !important; line-height: 1.8 !important; margin-bottom: 16px !important; }

  .doctor-title { font-size: 22px; margin-left: 0; }
  .doctor-subtitle { font-size: 13px; margin-left: 0; }

  .doctor-badge-image, .doctor-badge {
    position: absolute !important;
    top: auto !important;
    bottom: -15px !important;
    right: 0px !important;
    left: auto !important;
    width: 150px !important;
    height: 150px !important;
    z-index: 10 !important;
  }
}

/* ==================================
 * CTA Section
 * ================================== */
.hohoemi-cta-section {
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 64px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.hohoemi-cta-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  background: rgba(30, 22, 8, 0.45);
}

.hohoemi-cta-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.hohoemi-cta-badge {
  display: inline-block;
  background-color: #ffffff;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 36px;
  border-radius: 40px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.04em;
}

.hohoemi-cta-title {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 16px 0;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hohoemi-cta-description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 36px 0;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hohoemi-cta-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 800px;
}

.hohoemi-cta-link {
  flex: 1;
  max-width: 360px;
  height: 60px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 0 32px;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 600;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.hohoemi-cta-link:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.18); }

.hohoemi-cta-chevron { font-style: normal; font-size: 22px; font-weight: 400; line-height: 1; }

.hohoemi-cta-gold { background-color: #a38237; color: #ffffff; border: 1px solid #a38237; }
.hohoemi-cta-white { background-color: #ffffff; color: #a38237; border: 1px solid #ffffff; }

.hohoemi-cta-phone-wrap { display: flex; align-items: center; gap: 12px; }
.hohoemi-cta-phone-icon { width: 20px; height: 20px; fill: #a38237; }
.hohoemi-cta-phone-number { font-family: "Noto Serif JP", serif; font-size: 22px; letter-spacing: 0.05em; }

@media (max-width: 767px) {
  .hohoemi-cta-section { padding: 40px 0 !important; }
  .hohoemi-cta-container { padding: 0 16px !important; }
  .hohoemi-cta-badge { font-size: 13px !important; padding: 6px 20px !important; margin-bottom: 20px !important; width: 90% !important; max-width: 320px !important; }
  .hohoemi-cta-title { font-size: 22px !important; line-height: 1.5 !important; margin-bottom: 16px !important; }
  .hohoemi-cta-description { font-size: 13px !important; line-height: 1.7 !important; margin-bottom: 28px !important; }
  .hohoemi-cta-group { flex-direction: column !important; gap: 14px !important; width: 100% !important; max-width: 100% !important; padding: 0 16px !important; box-sizing: border-box !important; margin: 0 auto !important; }

  .hohoemi-cta-link {
    position: relative !important;
    width: 100% !important;
    height: 64px !important;
    min-height: 64px !important;
    border-radius: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 24px !important;
    box-sizing: border-box !important;
  }

  .hohoemi-cta-gold {
    background-color: #a38237 !important;
    color: #ffffff !important;
    border: 2px solid #a38237 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    letter-spacing: 0.06em !important;
  }

  .hohoemi-cta-white {
    background-color: #ffffff !important;
    color: #a38237 !important;
    border: 2px solid #a38237 !important;
    box-shadow: inset 0 0 0 2px #ffffff, inset 0 0 0 3px #a38237 !important;
    outline: none !important;
  }

  .hohoemi-cta-phone-wrap { display: flex !important; align-items: center !important; gap: 10px !important; height: 100% !important; }
  .hohoemi-cta-chevron { position: absolute !important; right: 22px !important; top: 50% !important; transform: translateY(-50%) !important; font-size: 18px !important; line-height: 1 !important; }
}

/* ==================================
 * TREATMENT MENU
 * ================================== */
.hohoemi-treatment-section {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 0;
  box-sizing: border-box;
}

.hohoemi-treatment-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.hohoemi-treatment-header { text-align: center; margin-bottom: 48px; }

.hohoemi-treatment-title {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.12em;
  margin: 0 0 4px 0;
}

.hohoemi-treatment-subtitle {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 600;
  color: #a38237;
  letter-spacing: 0.18em;
  margin-bottom: 24px;
}

.hohoemi-treatment-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.04em;
  margin: 0;
}

.hohoemi-treatment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  width: 100%;
}

.hohoemi-treatment-card {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #c5b48c;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  text-decoration: none;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.hohoemi-treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(163, 130, 55, 0.12);
  background-color: #fbf9f3;
}

.hohoemi-treatment-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.hohoemi-treatment-card:hover .hohoemi-treatment-icon { transform: scale(1.08); }

.hohoemi-treatment-icon img { max-width: 100%; max-height: 100%; object-fit: contain; }

.hohoemi-treatment-name {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  letter-spacing: 0.06em;
  margin: 0 0 6px 0;
  text-align: center;
}

.hohoemi-treatment-en {
  font-family: "Noto Serif JP", serif;
  font-size: 11px;
  font-weight: 500;
  color: #a38237;
  letter-spacing: 0.12em;
  text-align: center;
}

.hohoemi-treatment-corner {
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 12px 12px;
  border-color: transparent transparent #a38237 transparent;
}

@media (max-width: 767px) {
  .hohoemi-treatment-section { padding: 48px 0; }
  .hohoemi-treatment-container { padding: 0 16px; }
  .hohoemi-treatment-header { margin-bottom: 32px; }
  .hohoemi-treatment-title { font-size: 24px; }
  .hohoemi-treatment-subtitle { font-size: 12px; margin-bottom: 16px; }
  .hohoemi-treatment-desc { font-size: 13px; line-height: 1.6; padding: 0 8px; }

  .hohoemi-treatment-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hohoemi-treatment-card { padding: 20px 12px; aspect-ratio: 1 / 1; }
  .hohoemi-treatment-icon { width: 56px; height: 56px; margin-bottom: 12px; }
  .hohoemi-treatment-name { font-size: 15px; margin-bottom: 4px; }
  .hohoemi-treatment-en { font-size: 10px; letter-spacing: 0.08em; }
  .hohoemi-treatment-corner { border-width: 0 0 10px 10px; }
}

/* ==================================
 * FAQ
 * ================================== */
.hohoemi-faq-section {
  width: 100%;
  background-color: #f7f5f0;
  padding: 80px 0;
  box-sizing: border-box;
}

.hohoemi-faq-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.hohoemi-faq-header { text-align: center; margin-bottom: 56px; }

.hohoemi-faq-title {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.12em;
  margin: 0 0 8px 0;
}

.hohoemi-faq-subtitle {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 600;
  color: #a38237;
  letter-spacing: 0.18em;
}

.hohoemi-faq-list {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.hohoemi-faq-item { border-bottom: 1px solid #e2ded4; }
.hohoemi-faq-item:last-child { border-bottom: none; }

.hohoemi-faq-q {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 28px 0;
  font: inherit;
}

.hohoemi-faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 600;
  box-sizing: border-box;
  margin-top: 2px;
}

.hohoemi-faq-icon-q { background-color: #a38237; color: #ffffff; }
.hohoemi-faq-icon-a { background-color: transparent; color: #a38237; border: 1px solid #a38237; }

.hohoemi-faq-q-text {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 600;
  color: #a38237;
  letter-spacing: 0.06em;
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

.hohoemi-faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #a38237;
  color: #a38237;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}

.hohoemi-faq-item.is-open .hohoemi-faq-toggle { transform: rotate(135deg); }

.hohoemi-faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.hohoemi-faq-item.is-open .hohoemi-faq-a { grid-template-rows: 1fr; }

.hohoemi-faq-a-inner {
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.hohoemi-faq-a-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.04em;
  margin: 0 0 28px;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .hohoemi-faq-section { padding: 48px 0; }
  .hohoemi-faq-container { padding: 0 16px; }
  .hohoemi-faq-header { margin-bottom: 32px; }
  .hohoemi-faq-title { font-size: 24px; letter-spacing: 0.08em; }
  .hohoemi-faq-subtitle { font-size: 13px; }
  .hohoemi-faq-q { padding: 20px 0; gap: 12px; }
  .hohoemi-faq-a-inner { gap: 12px; }
  .hohoemi-faq-icon { width: 28px; height: 28px; font-size: 16px; margin-top: 0; }
  .hohoemi-faq-toggle { width: 24px; height: 24px; font-size: 15px; }
  .hohoemi-faq-q-text { font-size: 16px; line-height: 1.5; }
  .hohoemi-faq-a-text { font-size: 13px; line-height: 1.6; margin-bottom: 20px; }
}

/* ==================================
 * HOURS & ACCESS
 * ================================== */
.hohoemi-access-section {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 0;
  box-sizing: border-box;
}

.hohoemi-access-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.hohoemi-access-header { text-align: center; margin-bottom: 56px; }

.hohoemi-access-title {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.12em;
  margin: 0 0 8px 0;
}

.hohoemi-access-subtitle {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 600;
  color: #a38237;
  letter-spacing: 0.18em;
}

.hohoemi-access-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.hohoemi-access-info {
  background-color: #f7f5f0;
  padding: 48px 40px;
  border-radius: 4px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hohoemi-subhead {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 500;
  color: #a38237;
  text-align: center;
  letter-spacing: 0.14em;
  margin: 0 0 24px 0;
}

.hohoemi-table-wrap { width: 100%; margin-bottom: 20px; overflow-x: auto; }

.hohoemi-schedule-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #a38237;
  color: #ffffff;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

.hohoemi-schedule-table th, .hohoemi-schedule-table td {
  padding: 12px 6px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hohoemi-schedule-table th { background-color: #92732e; font-weight: 600; }

.hohoemi-schedule-table .hohoemi-time-cell {
  font-weight: 600;
  white-space: nowrap;
  padding-left: 12px;
  padding-right: 12px;
}

.hohoemi-hours-notes {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 40px;
}

.hohoemi-hours-notes p { margin: 0 0 4px 0; }

.hohoemi-access-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hohoemi-access-card {
  background-color: #ffffff;
  padding: 32px 20px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hohoemi-access-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,0.06); }

.hohoemi-card-icon {
  width: 64px;
  height: 64px;
  background-color: #a38237;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.hohoemi-card-icon svg { width: 34px; height: 34px; }
.hohoemi-icon-p { font-family: "Noto Serif JP", serif; font-size: 32px; font-weight: 600; }

.hohoemi-card-title {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 600;
  color: #a38237;
  line-height: 1.5;
  margin: 0 0 12px 0;
}

.hohoemi-card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #333333;
  line-height: 1.6;
  margin: 0;
}

.hohoemi-access-map {
  width: 100%;
  min-height: 550px;
  border-radius: 4px;
  overflow: hidden;
  background-color: #e8e8e8;
}

@media (max-width: 767px) {
  .hohoemi-access-section { padding: 48px 0; }
  .hohoemi-access-container { padding: 0 16px; }
  .hohoemi-access-header { margin-bottom: 32px; }
  .hohoemi-access-title { font-size: 24px; letter-spacing: 0.08em; }
  .hohoemi-access-subtitle { font-size: 13px; }
  .hohoemi-access-content { grid-template-columns: 1fr; gap: 24px; }
  .hohoemi-access-info { padding: 32px 16px; }
  .hohoemi-subhead { font-size: 24px; margin-bottom: 20px; }
  .hohoemi-schedule-table th, .hohoemi-schedule-table td { padding: 10px 4px; font-size: 12px; }
  .hohoemi-schedule-table .hohoemi-time-cell { padding-left: 6px; padding-right: 6px; }
  .hohoemi-hours-notes { font-size: 12px; margin-bottom: 32px; }
  .hohoemi-access-cards { grid-template-columns: 1fr; gap: 16px; }
  .hohoemi-access-card { padding: 24px 16px; }
  .hohoemi-card-icon { width: 56px; height: 56px; margin-bottom: 16px; }
  .hohoemi-card-icon svg { width: 28px; height: 28px; }
  .hohoemi-icon-p { font-size: 28px; }
  .hohoemi-card-title { font-size: 15px; }
  .hohoemi-card-text { font-size: 12px; }
  .hohoemi-access-map { height: 350px; min-height: 350px; }
}

/* ==================================
 * RESERVE / CONTACT
 * ================================== */
.hohoemi-reserve-section {
  width: 100%;
  background-color: #f7f5f0;
  padding: 80px 0;
  box-sizing: border-box;
}

.hohoemi-reserve-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.hohoemi-reserve-header { text-align: center; margin-bottom: 36px; }

.hohoemi-reserve-title {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.12em;
  margin: 0 0 8px 0;
}

.hohoemi-reserve-subtitle {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 600;
  color: #a38237;
  letter-spacing: 0.18em;
  margin-bottom: 24px;
}

.hohoemi-reserve-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #333333;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin: 0;
}

.hohoemi-reserve-phone-wrap { display: flex; justify-content: center; margin-bottom: 56px; }

.hohoemi-reserve-phone-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 460px;
  height: 60px;
  background-color: #ffffff;
  box-shadow: inset 0 0 0 2px #ffffff, inset 0 0 0 3px #a38237;
  border-radius: 50px;
  text-decoration: none;
  padding: 0 40px 0 32px;
  box-sizing: border-box;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hohoemi-reserve-phone-btn:hover { opacity: 0.9; transform: translateY(-2px); }

.hohoemi-phone-icon { color: #a38237; display: flex; align-items: center; margin-right: 12px; }
.hohoemi-phone-num { font-family: "Noto Serif JP", serif; font-size: 20px; font-weight: 600; color: #a38237; letter-spacing: 0.05em; margin-right: 6px; }
.hohoemi-phone-text { font-family: "Noto Sans JP", sans-serif; font-size: 14px; font-weight: 700; color: #a38237; letter-spacing: 0.04em; }
.hohoemi-phone-chevron { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 20px; color: #a38237; line-height: 1; }

.hohoemi-reserve-form { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
.hohoemi-form-group { display: flex; flex-direction: column; gap: 8px; }
.hohoemi-form-label { font-family: "Noto Sans JP", sans-serif; font-size: 16px; font-weight: 700; color: #333333; letter-spacing: 0.06em; }

.hohoemi-form-input, .hohoemi-form-select, .hohoemi-form-textarea {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #dcd4c3;
  border-radius: 6px;
  padding: 14px 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  color: #333333;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hohoemi-form-input:focus, .hohoemi-form-select:focus, .hohoemi-form-textarea:focus {
  border-color: #a38237;
  box-shadow: 0 0 0 3px rgba(163, 130, 55, 0.15);
}

.hohoemi-form-input.is-invalid, .hohoemi-form-textarea.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

.hohoemi-form-error { font-size: 12px; color: #c0392b; display: none; }
.hohoemi-form-error.is-visible { display: block; }

.hohoemi-select-wrap { position: relative; width: 100%; }

.hohoemi-select-wrap::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #a38237;
  border-bottom: 2px solid #a38237;
  pointer-events: none;
}

.hohoemi-form-select { appearance: none; -webkit-appearance: none; padding-right: 40px; cursor: pointer; }
.hohoemi-form-textarea { resize: vertical; min-height: 220px; }

.hohoemi-form-submit-wrap { display: flex; justify-content: center; margin-top: 16px; flex-direction: column; align-items: center; gap: 14px; }

.hohoemi-form-submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 460px;
  height: 60px;
  background-color: #a38237;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  padding: 0 40px;
  box-sizing: border-box;
}

.hohoemi-form-submit-btn:hover { background-color: #92732e; transform: translateY(-2px); }
.hohoemi-form-submit-btn:disabled { opacity: 0.7; cursor: default; transform: none; }

.hohoemi-submit-chevron { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 20px; color: #ffffff; line-height: 1; }

.hohoemi-form-success {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #6b7d3f;
  background: #f1f6e6;
  border: 1px solid #cfe0ab;
  padding: 14px 20px;
  border-radius: 8px;
  display: none;
  align-items: center;
  gap: 8px;
  max-width: 460px;
  width: 100%;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hohoemi-form-success.is-visible { display: flex; opacity: 1; transform: translateY(0); }

@media (max-width: 767px) {
  .hohoemi-reserve-section { padding: 48px 0; }
  .hohoemi-reserve-container { padding: 0 16px; }
  .hohoemi-reserve-header { margin-bottom: 28px; }
  .hohoemi-reserve-title { font-size: 24px; letter-spacing: 0.08em; }
  .hohoemi-reserve-subtitle { font-size: 13px; margin-bottom: 16px; }
  .hohoemi-reserve-desc { font-size: 13px; line-height: 1.7; }
  .hohoemi-reserve-phone-wrap { margin-bottom: 40px; }
  .hohoemi-reserve-phone-btn { max-width: 100%; height: 56px; padding: 0 32px 0 20px; }
  .hohoemi-phone-num { font-size: 16px; }
  .hohoemi-phone-text { font-size: 12px; }
  .hohoemi-phone-chevron { right: 18px; font-size: 18px; }
  .hohoemi-reserve-form { max-width: 100%; gap: 20px; }
  .hohoemi-form-label { font-size: 14px; }
  .hohoemi-form-input, .hohoemi-form-select, .hohoemi-form-textarea { font-size: 14px; padding: 12px 14px; }
  .hohoemi-form-textarea { min-height: 180px; }
  .hohoemi-form-submit-btn { max-width: 100%; height: 56px; font-size: 15px; }
  .hohoemi-submit-chevron { right: 18px; font-size: 18px; }
}

/* ==================================
 * TABLET
 * ================================== */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 56px 40px 64px;
    gap: 40px;
  }
  .hero-content { max-width: 100%; }
  .hero-title { font-size: 36px; }
  .hero-description { font-size: 14.5px; max-width: 640px; }
  .hero-cta-group { flex-wrap: wrap; }
  .cta-btn { min-width: 260px; }

  .hero-badges {
    position: static;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
  }
  .badge-item,
  .badge-implant,
  .badge-ortho,
  .badge-established {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 140px;
    height: 140px;
  }
  .badge-ortho { order: 1; }
  .badge-implant { order: 2; }
  .badge-established { order: 3; }

  .news-container { padding: 0 40px; gap: 40px; }

  .features-section { padding: 64px 40px; }
  .features-container { padding: 0; }
  .feature-card { height: 240px; }
  .feature-card-content { padding: 28px 28px; }
  .feature-card-title { font-size: 20px; }

  .cases-container { padding: 0 40px; }
  .case-card { padding: 44px 40px; }
  .case-comparison { gap: 16px; max-width: 700px; }
  .case-img { height: 220px; }
  .prev-btn { left: 4px; }
  .next-btn { right: 4px; }

  .pricing-container { padding: 0 40px; }
  .pricing-grid { flex-direction: column; align-items: center; gap: 72px; }
  .pricing-card { width: 100%; max-width: 460px; }

  .voice-container { padding: 0 40px; }
  .voice-grid { gap: 24px; }
  .voice-card { padding: 32px 28px; }

  .doctor-container { padding: 0 40px; }
  .doctor-wrapper { flex-direction: column; gap: 40px; }
  .doctor-image-container {
    flex: none;
    width: 100%;
    max-width: 420px;
    min-height: auto;
    aspect-ratio: 4 / 3;
    margin: 0 auto;
  }
  .doctor-header { text-align: center; }
  .doctor-title { font-size: 30px; }

  .hohoemi-cta-container { padding: 0 40px; }
  .hohoemi-cta-title { font-size: 30px; }
  .hohoemi-cta-group { flex-wrap: wrap; gap: 18px; justify-content: center; }
  .hohoemi-cta-link { flex: 0 0 calc(50% - 9px); max-width: 340px; }

  .hohoemi-treatment-container { padding: 0 40px; }
  .hohoemi-treatment-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hohoemi-treatment-card { padding: 32px 20px; }
  .hohoemi-treatment-icon { width: 80px; height: 80px; }
  .hohoemi-treatment-name { font-size: 19px; }

  .hohoemi-faq-container { padding: 0 40px; }
  .hohoemi-faq-q-text { font-size: 18px; }

  .hohoemi-access-container { padding: 0 40px; }
  .hohoemi-access-content { grid-template-columns: 1fr; gap: 32px; }
  .hohoemi-access-info { padding: 40px 36px; }
  .hohoemi-access-cards { grid-template-columns: 1fr 1fr; }
  .hohoemi-access-map { min-height: 380px; }

  .hohoemi-reserve-container { padding: 0 40px; }
  .hohoemi-reserve-form { max-width: 560px; }
}

/* ==================================
 * PAGE-SPECIFIC ADJUSTMENTS
 * ================================== */
.implant-page .hero-section {
  min-height: 100vh !important;
}

.implant-page .voice-section {
  padding-bottom: 0 !important;
}

.implant-page .doctor-section {
  padding-top: 50px !important;
}

/* ---- Unified container width ---- */
.implant-page .hero-inner,
.implant-page .news-container,
.implant-page .features-container,
.implant-page .cases-container,
.implant-page .pricing-container,
.implant-page .voice-container,
.implant-page .doctor-container,
.implant-page .hohoemi-cta-container,
.implant-page .hohoemi-treatment-container,
.implant-page .hohoemi-faq-container,
.implant-page .hohoemi-access-container,
.implant-page .hohoemi-reserve-container {
  width: 100% !important;
  max-width: 1600px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.implant-page .pricing-grid,
.implant-page .voice-grid,
.implant-page .doctor-wrapper,
.implant-page .case-card-wrapper {
  max-width: 100% !important;
}

@media (max-width: 767px) {
  .implant-page .hero-inner,
  .implant-page .news-container,
  .implant-page .features-container,
  .implant-page .cases-container,
  .implant-page .pricing-container,
  .implant-page .voice-container,
  .implant-page .doctor-container,
  .implant-page .hohoemi-cta-container,
  .implant-page .hohoemi-treatment-container,
  .implant-page .hohoemi-faq-container,
  .implant-page .hohoemi-access-container,
  .implant-page .hohoemi-reserve-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

.implant-page {
  overflow-x: clip !important;
  overflow-y: visible !important;
}
/* More breathing room between JP heading and EN subtitle */
.implant-page .features-subtitle,
.implant-page .cases-subtitle,
.implant-page .pricing-subtitle,
.implant-page .voice-subtitle,
.implant-page .doctor-subtitle,
.implant-page .news-subtitle,
.implant-page .hohoemi-treatment-subtitle,
.implant-page .hohoemi-faq-subtitle,
.implant-page .hohoemi-access-subtitle,
.implant-page .hohoemi-reserve-subtitle {
  margin-top: 16px !important;
}



@media (min-width: 1200px) {
  /* Join インプラント治療・ and 矯正治療が onto one line */
  .implant-page .hero-title br:nth-of-type(2) {
    display: none;
  }

  .implant-page .hero-title {
    font-size: 48px;
    line-height: 1.45;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
}

@media (min-width: 1600px) {
  .implant-page .hero-title {
    font-size: 48px;
  }
}