@charset "UTF-8";

/* ========== RESET & BASE ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

html, body {
  overflow-x: clip;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'MS PGothic', sans-serif;
  color: #1E315F;
  line-height: 1.6;
  background: #f4eddb;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  padding: 0 20px;
}

.mt { margin-top: 20px; }

/* ========== 3-COLUMN LAYOUT ========== */
header, footer {
  width: 100%;
  color: #1E315F;
}

.contents-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

main {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.contents-main-left {
  flex: 1;
  background-color: transparent;
  align-self: stretch;
}

.contents-main-right {
  flex: 1;
  background-color: transparent;
  align-self: stretch;
}

.contents-main-wrap {
  width: 500px;
  min-width: 500px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.contents-main-wrap .contents-main {
  flex: 1;
}

.contents-main {
  width: 100%;
  background-color: #fff;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}

/* ========== HEADER ========== */
header {
  background-color: transparent;
}

.contents-wrap h1 {
  padding: 16px 10px;
}

.contents-wrap h1 img {
  height: auto;
}

.logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 3px;
  color: #D9533B;
  font-family: 'Noto Serif JP', serif;
}

.header-cta-btn {
  background: #D9533B;
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  transition: opacity 0.3s;
}

.header-cta-btn:hover {
  opacity: 0.85;
}

/* ========== LEFT SIDEBAR FIXED MENU ========== */
.fixed-menu {
  position: fixed;
  top: 60px;
  left: 50px;
  background-color: transparent;
  padding: 0;
  max-width: 200px;
}

.fixed-menu ul {
  list-style: none;
}

.fixed-menu li {
  margin-bottom: 0;
}

.fixed-menu a {
  color: #1E315F;
  text-decoration: none;
  display: block;
  padding: 12px 0;
  background-color: transparent;
  margin-top: 0;
  border: none;
  border-radius: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: color 0.3s;
}

.fixed-menu a:hover {
  color: #D9533B;
  background-color: transparent;
}

.fixed-menu a.apply-btn {
  color: #fff;
  background-color: #D9533B;
  font-weight: 700;
  border: none;
  text-align: center;
  padding: 12px 16px;
  border-radius: 30px;
  margin-top: 16px;
  font-size: 13px;
  transition: opacity 0.3s;
}

.fixed-menu a.apply-btn:hover {
  opacity: 0.85;
  color: #fff;
}

.fixed-menu a.apply-btn.tel {
  background-color: #1E315F;
  margin-top: 8px;
}

/* ========== HAMBURGER MENU ========== */
.hamburger-btn {
  display: none;
  position: fixed;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background-color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.hamburger-btn span {
  display: block;
  position: absolute;
  width: 22px;
  height: 2px;
  background-color: #1E315F;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger-btn span:nth-child(1) { top: 16px; }
.hamburger-btn span:nth-child(2) { top: 23px; }
.hamburger-btn span:nth-child(3) { top: 30px; }

.hamburger-btn.active span:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(244, 237, 219, 0.98);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 320px;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  margin-bottom: 4px;
  text-align: center;
}

.mobile-menu a {
  color: #1E315F;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  display: block;
  padding: 14px 10px;
  background-color: transparent;
  border-bottom: 1px solid rgba(30,49,95,0.1);
  transition: color 0.3s;
  letter-spacing: 0.3px;
}

.mobile-menu a:hover {
  color: #D9533B;
}

/* ========== FIXED BOTTOM BUTTONS (mobile only) ========== */
.fixed-bottom-btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  overflow: hidden;
  background: #f5f0eb;
}

.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

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

.hero-overlay {
  padding: 24px 20px 16px;
  text-align: center;
  background: #fff;
}

.hero-subtitle {
  font-size: 11px;
  color: #D9533B;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 20px;
  font-weight: 700;
  color: #1E315F;
  margin-bottom: 16px;
  line-height: 1.5;
  letter-spacing: 2px;
}

.hero-title sup {
  font-size: 9px;
  font-weight: 400;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.hero-tag {
  display: inline-block;
  background: #D9533B;
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  line-height: 1.4;
}

.hero-tag small {
  font-size: 10px;
}

.hero-info-bar {
  background: #faf8f5;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-label {
  font-size: 9px;
  font-weight: 700;
  color: #D9533B;
  letter-spacing: 1px;
}

.info-text {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #1E315F;
}

/* ========== STATS ========== */
.stats {
  padding: 30px 0;
  text-align: center;
  background: #fff;
}

.stats-label {
  font-size: 12px;
  color: #D9533B;
  font-weight: 700;
  letter-spacing: 1px;
}

.stats-label small {
  font-size: 10px;
}

.stats-number {
  font-size: 48px;
  font-weight: 900;
  color: #D9533B;
  font-family: 'Times New Roman', serif;
  line-height: 1.2;
}

.stats-unit {
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
}

.stats-trial {
  margin-top: 16px;
  padding: 16px;
  background: #fff;
}

.stats-trial-label {
  font-size: 11px;
  color: #D9533B;
}

.stats-trial-price {
  color: #D9533B;
  font-family: 'Times New Roman', serif;
}

.stats-trial-price .big-price {
  font-size: 48px;
  font-weight: 900;
}

.stats-trial-price small {
  font-size: 10px;
}

.stats-notes {
  margin-top: 16px;
  padding: 0 10px;
  text-align: left;
}

.stats-notes p {
  font-size: 9px;
  color: #999;
  line-height: 1.6;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: #D9533B;
  padding: 32px 0;
  text-align: center;
  border-radius: 24px;
  margin: 0 8px;
}

.cta-label {
  font-size: 10px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 4px;
  font-weight: 700;
  letter-spacing: 2px;
}

.cta-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.cta-price {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
}

.cta-big-price {
  font-size: 48px;
  font-family: 'Times New Roman', serif;
  font-weight: 900;
}

.cta-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
}

.cta-sub sup {
  font-size: 8px;
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: #D9533B;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

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

.cta-note {
  font-size: 8px;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
}

/* ========== CONTENT SECTIONS ========== */
.content-section {
  padding: 48px 0;
}

.content-section.bg-light {
  background: #faf8f5;
}

/* English sub-label above section title */
.section-category {
  font-size: 10px;
  color: #D9533B;
  font-weight: 700;
  margin-bottom: 6px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #1E315F;
  line-height: 1.4;
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: 2px;
}

.section-headline {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  color: #1E315F;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.section-sub-headline {
  font-size: 12px;
  text-align: center;
  color: #666;
  margin-bottom: 6px;
}

.section-title-center {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #1E315F;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 16px;
  letter-spacing: 2px;
}

.section-title-center::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #D9533B;
  border-radius: 2px;
}

.section-title-eng {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  color: #D9533B;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.section-title-jp {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #1E315F;
  margin-bottom: 24px;
  letter-spacing: 2px;
}

/* ========== SLIDERS ========== */
.section-slider {
  margin: 20px 0;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.slide-track {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
}

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

.slide-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 0;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  transition: background 0.3s;
  cursor: pointer;
}

.dot.active {
  background: #D9533B;
}

.section-image {
  margin: 20px 0;
  border-radius: 12px;
  overflow: hidden;
}

.video-placeholder {
  position: relative;
  cursor: pointer;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(217, 83, 59, 0.9);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* ========== SECTION BODY ========== */
.section-body {
  margin-top: 20px;
}

.section-body p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 10px;
  color: #1E315F;
  text-align: left;
}

.lead-text {
  font-size: 15px !important;
  font-weight: 700;
  color: #1E315F !important;
  text-align: left;
}

.check-list {
  margin: 12px 0;
  padding-left: 4px;
}

.check-list li {
  font-size: 14px;
  padding: 4px 0 4px 24px;
  position: relative;
  color: #1E315F;
}

.check-list li::before {
  content: '\2714';
  position: absolute;
  left: 0;
  color: #D9533B;
  font-size: 13px;
}

.dot-list {
  margin: 12px 0;
}

.dot-list li {
  font-size: 14px;
  padding: 4px 0 4px 18px;
  position: relative;
  color: #1E315F;
}

.dot-list li::before {
  content: '\2022';
  position: absolute;
  left: 4px;
  color: #D9533B;
  font-weight: 700;
}

/* ========== KOUGA HEADING ========== */
.kouga-heading {
  font-size: 16px;
  font-weight: 700;
  margin: 24px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #D9533B;
  color: #1E315F;
  letter-spacing: 1px;
}

/* ========== STEP ITEMS ========== */
.step-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  padding: 16px;
  background: #faf8f5;
  border-radius: 12px;
}

.step-num {
  font-size: 22px;
  font-weight: 900;
  color: #D9533B;
  min-width: 32px;
  line-height: 1.2;
}

.step-title {
  font-size: 14px !important;
  font-weight: 700;
  color: #1E315F !important;
  margin-bottom: 6px;
}

/* ========== HIGHLIGHT BOX ========== */
.highlight-box {
  margin: 24px 0;
  padding: 20px;
  background: #fdf5f3;
  border-left: 4px solid #D9533B;
  border-radius: 0 12px 12px 0;
}

.highlight-title {
  font-size: 15px !important;
  font-weight: 700;
  color: #D9533B !important;
  margin-bottom: 8px;
}

/* ========== FEATURE BLOCKS ========== */
.feature-block {
  margin: 16px 0;
  padding: 16px;
  background: #faf8f5;
  border-radius: 12px;
}

.feature-title {
  font-size: 14px !important;
  font-weight: 700;
  color: #1E315F !important;
  margin-bottom: 6px;
}

/* ========== SECTION CTA ========== */
.section-cta {
  margin-top: 28px;
  text-align: center;
}

.btn-reserve {
  display: block;
  background: #D9533B;
  color: #fff;
  padding: 16px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(217, 83, 59, 0.3);
}

.btn-reserve:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 83, 59, 0.4);
}

.btn-reserve-sub {
  display: block;
  padding: 12px 20px;
  border: 2px solid #D9533B;
  color: #D9533B;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  transition: background 0.3s, color 0.3s;
}

.btn-reserve-sub:hover {
  background: #D9533B;
  color: #fff;
}

/* ========== DIAGNOSIS LIST ========== */
.diagnosis-list {
  counter-reset: diag;
}

.diagnosis-list li {
  font-size: 14px;
  padding: 12px 16px 12px 48px;
  position: relative;
  border-bottom: 1px solid #eee;
  color: #1E315F;
}

.diagnosis-list li::before {
  counter-increment: diag;
  content: counter(diag);
  position: absolute;
  left: 12px;
  top: 12px;
  width: 24px;
  height: 24px;
  background: #D9533B;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diagnosis-note {
  font-size: 12px;
  text-align: center;
  margin-top: 20px;
  color: #666;
  font-style: italic;
}

/* ========== REASON CARDS ========== */
.reason-card {
  background: #faf8f5;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.reason-title {
  font-size: 16px;
  font-weight: 700;
  color: #1E315F;
  margin-bottom: 8px;
  padding-left: 12px;
  border-left: 3px solid #D9533B;
  line-height: 1.5;
}

.reason-title small {
  font-size: 11px;
  font-weight: 400;
  color: #888;
}

.reason-card p {
  font-size: 14px;
  line-height: 1.8;
  color: #1E315F;
  text-align: left;
}

.reason-card .note {
  font-size: 9px;
  color: #999;
  margin-top: 8px;
}

/* ========== STAFF ========== */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.staff-card {
  text-align: center;
}

.staff-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 8px;
}

.staff-name {
  font-size: 13px;
  font-weight: 700;
  color: #1E315F;
}

/* ========== RESULTS ========== */
.results-subtitle {
  font-size: 14px;
  text-align: center;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #1E315F;
}

.results-note {
  font-size: 10px;
  text-align: center;
  color: #999;
  margin-bottom: 24px;
}

.result-card {
  background: #faf8f5;
  border-radius: 12px;
  padding: 24px 20px;
  margin-bottom: 16px;
  text-align: center;
}

.result-headline {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 6px;
  color: #1E315F;
}

.result-detail {
  font-size: 14px;
  color: #D9533B;
  font-weight: 700;
  margin-bottom: 4px;
}

.result-client {
  font-size: 12px;
  color: #888;
  margin-bottom: 12px;
}

.result-image {
  margin: 12px 0;
}

.result-image img {
  border-radius: 12px;
  margin: 0 auto;
}

.result-image.double {
  display: flex;
  gap: 8px;
}

.result-image.double img {
  flex: 1;
  min-width: 0;
}

.result-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}

.result-tags li {
  background: #fdf5f3;
  color: #D9533B;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  border: 1px solid #f0d0ca;
}

.result-meta {
  text-align: left;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

.result-meta p {
  font-size: 9px;
  color: #999;
  line-height: 1.6;
}

/* ========== VOICE ========== */
.voice-section {
  background: #b8d8d0;
  padding: 60px 0 50px;
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
}

.voice-section-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #3a6b5e;
  margin-bottom: 4px;
  font-family: 'Noto Sans JP', sans-serif;
}

.voice-section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #1E315F;
  margin-bottom: 30px;
  letter-spacing: 0.08em;
}

.voice-slider {
  position: relative;
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto;
}

.voice-slider-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.voice-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.voice-photo-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  border: 3px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.voice-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-attr {
  font-size: 12px;
  line-height: 1.6;
  color: #3a6b5e;
  margin-bottom: 14px;
  font-weight: 500;
}

.voice-catchcopy {
  font-size: 16px;
  font-weight: 700;
  color: #1E315F;
  margin-bottom: 14px;
  line-height: 1.5;
}

.voice-body {
  font-size: 14px;
  line-height: 1.9;
  color: #333;
  text-align: left;
  padding: 0 6px;
}

/* slider controls */
.voice-slider-prev,
.voice-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  color: #1E315F;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.voice-slider-prev:hover,
.voice-slider-next:hover {
  background: rgba(255, 255, 255, 0.95);
}

.voice-slider-prev { left: 4px; }
.voice-slider-next { right: 4px; }

.voice-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.voice-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.voice-slider-dot.active {
  background: #fff;
  transform: scale(1.25);
}
 /* Position the dots wrapper inside the slider at the bottom center */
#voice-slider-dots {
    position: absolute !important; /* Place it absolutely relative to the slider */
    bottom: 20px !important;       /* 20px from the bottom edge of the image */
    left: 50% !important;          /* Move to the horizontal center */
    transform: translateX(-50%) !important; /* Centering offset adjustment */
    z-index: 10 !important;        /* Ensure the dots are above the image */
    margin: 0 !important;          /* Remove the existing margin from my previous fix */
}
#slider-prev,
#slider-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    /* other styling for background, border, padding as needed */
}

#slider-prev {
    left: 20px !important;
}

#slider-next {
    right: 20px !important;
}
/* ========== AMENITIES ========== */
.section-catchphrase {
  font-size: 13px;
  text-align: center;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 28px;
  color: #1E315F;
}

.amenity-headline {
  font-size: 13px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
  color: #1E315F;
}

.amenity-items {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.amenity-item {
  background: #faf8f5;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}

.amenity-label {
  font-size: 10px;
  color: #888;
  margin-bottom: 4px;
}

.amenity-name {
  font-size: 14px;
  font-weight: 700;
  color: #1E315F;
}

.amenity-image {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 16px;
}

/* ========== STUDIO ========== */
.studio-headline {
  font-size: 13px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #1E315F;
}

.studio-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #1E315F;
  margin-bottom: 20px;
  text-align: left;
}

.studio-image {
  border-radius: 12px;
  overflow: hidden;
}

/* ========== PLAN / PRICE ========== */
.plan-section {
  background: #f5f0e8;
  padding: 48px 0;
}

.plan-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #D9533B;
  margin-bottom: 2px;
}

/* 外枠フレーム */
.plan-outer-frame {
  border: 1px solid #d4cfc5;
  border-radius: 20px;
  padding: 20px 10px 16px;
  margin-left: -10px;
  margin-right: -10px;
}

.plan-sub-heading {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #1E315F;
  margin: 28px 0 20px;
  line-height: 1.7;
}

/* カード共通 */
.plan-card {
  background: #fff;
  border-radius: 16px;
  padding: 14px 14px 16px;
  margin-bottom: 16px;
  margin-top: 30px;
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

.plan-card:first-child {
  margin-top: 20px;
}

.plan-card--trial {
  text-align: center;
  padding-left: 14px;
  padding-top: 40px;
}

/* おすすめバッジ */
.plan-card--recommend {
  border: 2px solid #D9533B;
}

.plan-recommend-tag {
  position: absolute;
  top: -12px;
  right: 16px;
  background: #D9533B;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
}

/* 丸バッジ — カード左上に被せる */
.plan-badge-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8a040, #d4882a);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  position: absolute;
  top: -22px;
  left: -4px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.plan-badge-circle small {
  font-size: 9px;
  font-weight: 500;
  display: block;
}

.plan-badge-circle--sm {
  width: 62px;
  height: 62px;
  font-size: 10px;
}

.plan-badge-circle--dark {
  background: linear-gradient(135deg, #3a3a3a, #1a1a1a);
}

/* 初回体験カード */
.plan-trial-text {
  font-size: 14px;
  color: #1E315F;
  margin-bottom: 6px;
}

.plan-trial-old {
  font-size: 16px;
  color: #999;
  margin-bottom: 4px;
}

.plan-trial-old del {
  text-decoration: line-through;
}

.plan-trial-old small {
  font-size: 11px;
}

.plan-trial-free {
  font-size: 16px;
  color: #D9533B;
  font-weight: 700;
}

.plan-trial-free span {
  font-size: 32px;
  font-weight: 900;
}

/* プランヘッダー部分 — 丸バッジの右横に配置 */
.plan-card .plan-target,
.plan-card .plan-price,
.plan-card .plan-price-tax {
  margin-left: 54px;
}

/* プラン詳細 */
.plan-card--trial .plan-target,
.plan-card--trial .plan-price,
.plan-card--trial .plan-price-tax {
  margin-left: 0;
}

.plan-target {
  font-size: 11px;
  color: #888;
  margin-bottom: 10px;
}

.plan-price {
  font-size: 22px;
  font-weight: 900;
  color: #1E315F;
  line-height: 1.2;
  margin-bottom: 2px;
}

.plan-price small {
  font-size: 12px;
  font-weight: 400;
  color: #888;
}

.plan-price-tax {
  font-size: 11px;
  color: #aaa;
  margin-bottom: 14px;
}

/* 特徴行 */
.plan-features {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.plan-feat {
  font-size: 13px;
  color: #1E315F;
}

.plan-feat strong {
  font-size: 18px;
  font-weight: 900;
  color: #D9533B;
}

.plan-feat-badge {
  background: #1E315F;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

/* 点線区切り */
.plan-divider {
  border-top: 2px dashed #e0ddd6;
  margin: 0 0 14px;
}

/* プロモ価格 */
.plan-price-sub {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 6px;
}

.plan-price-sub del {
  text-decoration: line-through;
}

.plan-promo {
  font-size: 16px;
  font-weight: 700;
  color: #D9533B;
  background: linear-gradient(90deg, #fdf0d5, #fbe8c3);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 4px;
}

.plan-promo span {
  font-size: 22px;
  font-weight: 900;
}

.plan-promo small {
  font-size: 12px;
  font-weight: 400;
}

.plan-promo-note {
  font-size: 11px;
  color: #aaa;
  margin-top: 2px;
}

/* フッターノート */
.plan-footer-note {
  font-size: 11px;
  color: #aaa;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.7;
}

/* ========== FAQ ========== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-item {
  background: #faf8f5;
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 14px 44px 14px 20px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
  color: #1E315F;
}

.faq-question::before {
  content: 'Q';
  color: #D9533B;
  font-weight: 900;
  margin-right: 8px;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #D9533B;
  font-weight: 300;
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  content: '\2212';
}

.faq-question:hover {
  background: #f0ede4;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 20px 16px;
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.8;
  color: #1E315F;
  padding-left: 24px;
  position: relative;
}

.faq-answer p::before {
  content: 'A';
  position: absolute;
  left: 0;
  font-weight: 900;
  color: #D9533B;
}

/* ========== CONTACT ========== */
.contact-section {
  background: #1E315F;
}

.contact-section .section-title-center {
  color: #fff;
}

.contact-section .section-title-center::after {
  background: #D9533B;
}

.flow-title {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: #fff;
}

.contact-flow-list {
  margin-bottom: 24px;
}

.contact-flow-list li {
  font-size: 14px;
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.contact-flow-list li::before {
  content: '\2022';
  position: absolute;
  left: 6px;
  color: #D9533B;
  font-weight: 700;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 20px;
  border-radius: 30px;
  color: #fff;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.web-btn {
  background: #D9533B;
}

.tel-btn {
  background: #fff;
  color: #1E315F;
}

.contact-btn-main {
  font-size: 13px;
}

.contact-btn-sub {
  font-size: 10px;
  opacity: 0.85;
  margin-top: 4px;
}

.contact-btn-tel {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-top: 4px;
}

.contact-holiday {
  text-align: center;
  font-size: 11px;
  color: #fff;
  background: #D9533B;
  padding: 8px;
  border-radius: 20px;
}

/* ========== ACCESS / 施設詳細情報 ========== */
.access-section {
  padding: 48px 0 0;
}

.access-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px 28px;
  box-shadow: 0 8px 30px rgba(30, 49, 95, 0.08);
  max-width: 440px;
  margin: 0 auto;
}

.access-logo {
  text-align: center;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(30, 49, 95, 0.1);
}

.access-logo img {
  max-width: 150px;
  height: auto;
}

.access-address {
  text-align: center;
  font-size: 14px;
  line-height: 1.9;
  color: #1E315F;
  font-weight: 500;
  margin-bottom: 22px;
}

.access-zip {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  color: #D9533B;
  font-weight: 700;
  margin-bottom: 2px;
}

.access-info-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid rgba(30, 49, 95, 0.1);
}

.access-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(30, 49, 95, 0.1);
}

.access-info-label {
  flex: 0 0 auto;
  min-width: 64px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #fff;
  background: #D9533B;
  border-radius: 20px;
  padding: 5px 10px;
  text-align: center;
  margin-top: 2px;
  text-transform: uppercase;
}

.access-info-value {
  flex: 1;
  font-size: 14px;
  line-height: 1.7;
  color: #1E315F;
  font-weight: 500;
}

.access-info-value a {
  color: #1E315F;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.access-info-value a:hover {
  color: #D9533B;
}

.access-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.access-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.access-btn-primary {
  background: #D9533B;
  color: #fff;
}

.access-btn-secondary {
  background: #1E315F;
  color: #fff;
}

.access-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.access-map {
  width: 100%;
  margin-top: 36px;
  line-height: 0;
  border-radius: 0;
  overflow: hidden;
}

.access-map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  filter: grayscale(0.2) contrast(1.02);
}

@media (max-width: 767px) {
  .access-section {
    padding: 36px 0 0;
  }

  .access-card {
    padding: 26px 18px 22px;
  }

  .access-map iframe {
    height: 280px;
  }
}

/* ========== FLOW STEPS ========== */
.flow-section {
  background: #f5f0e8;
  padding: 48px 0;
}

.flow-section-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #D9533B;
  margin-bottom: 2px;
}

/* ---- point list ---- */
.flow-point-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

/* 各ポイント — 写真 + 白オーバーラップ、ジグザグ配置 */
.flow-point-item {
  position: relative;
  margin-bottom: 28px;
}

/* 写真 — 85%幅、デフォルト左寄せ */
.flow-point-photo {
  width: 88%;
  overflow: hidden;
  border-radius: 8px;
  margin-right: auto;
  margin-left: 0;
}

.flow-point-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

/* 偶数: 写真を右寄せ */
.flow-point-item--reverse .flow-point-photo {
  margin-left: auto;
  margin-right: 0;
}

/* 白背景テキストエリア — 写真に被せてジグザグ */
.flow-point-body {
  background: #fff;
  border-radius: 20px;
  margin-top: -30px;
  position: relative;
  z-index: 1;
  padding: 28px 18px 18px;
  width: 88%;
  margin-left: auto;
  margin-right: 0;
}

/* 偶数: テキストボックスを左寄せ */
.flow-point-item--reverse .flow-point-body {
  margin-left: 0;
  margin-right: auto;
}

/* 番号 — ボックスの上に乗る（写真の上に浮く） */
.flow-point-num {
  position: absolute;
  z-index: 2;
  font-size: 64px;
  font-weight: 300;
  color: #e8a99a;
  font-family: 'Times New Roman', 'Noto Serif JP', serif;
  line-height: 1;
  letter-spacing: 0.02em;
  top: -48px;
  right: 10px;
}

/* 偶数: 番号を左寄せ */
.flow-point-item--reverse .flow-point-body .flow-point-num {
  right: auto;
  left: 10px;
}

.flow-point-title {
  font-size: 16px;
  font-weight: 700;
  color: #1E315F;
  line-height: 1.7;
  margin-bottom: 4px;
}

.flow-point-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #999;
}

/* ノート */
.flow-note {
  font-size: 11px;
  text-align: center;
  color: #aaa;
  margin-top: 6px;
}

/* ========== FOOTER ========== */
footer {
  background-color: #1E315F !important;
}

.footer-logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 4px;
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 8px;
}

/* ========== ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* ========== MOBILE RESPONSIVE ========== */
@media screen and (max-width: 767px) {
  main {
    display: block;
  }

  .contents-main-left,
  .contents-main-right {
    display: none;
  }

  .contents-main-wrap {
    width: 100%;
    min-width: 0;
    padding: 0;
  }

  .contents-main {
    border-radius: 0;
  }

  .hamburger-btn,
  .mobile-menu-overlay {
    display: block;
  }

  .fixed-bottom-btn {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 56px;
    z-index: 999;
    background-color: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
    align-items: center;
    padding: 6px 8px;
    gap: 6px;
  }

  .fixed-bottom-btn a {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 8px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    border-radius: 30px;
  }

  .fixed-btn-web {
    background: #D9533B;
  }

  .fixed-btn-tel {
    background: #1E315F;
  }

  body {
    padding-bottom: 56px;
  }

  .cta-banner {
    margin: 0;
    border-radius: 0;
  }
}
