/* ===========================
   Sincere Bridal - Style Sheet (Multi-page)
   =========================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Playfair+Display:wght@400;600&display=swap');

/* --- CSS Variables --- */
:root {
  --green-main:  #6DBE2C;
  --green-dark:  #4A9018;
  --green-light: #9FB4A1;
  --bg-main:     #F5FAF2;
  --bg-dark:     #EAF3E6;
  --border:      #D0E4C8;
  --text-dark:   #2A3A28;
  --text-mid:    #506050;
  --text-light:  #809080;
  --footer-dark: #1A3818;
  --white:       #FFFFFF;
  --shadow:      rgba(109, 190, 44, 0.15);
  --font-jp:     'Noto Sans JP', sans-serif;
  --font-en:     'Cormorant Garamond', serif;
  --gold:        #C9A96A;
  --gold-light:  #F0E0C0;
  --gold-dark:   #A0824A;
  --pink:        #F2B5C0;
  --pink-light:  #FDF0F3;
  --pink-dark:   #D4889A;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-jp);
  color: var(--text-dark);
  background-color: var(--bg-main);
  line-height: 1.8;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 {
  line-height: 1.4;
  font-weight: 500;
}

/* ===========================
   LAYOUT
   =========================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
}

/* ===========================
   SECTION TITLE
   =========================== */
.section-title {
  text-align: center;
  margin-bottom: 56px;
}

.section-title .en-sub {
  font-family: var(--font-en);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--green-main);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--gold));
}

.section-title p {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-top: 16px;
  font-weight: 300;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 40px;
  font-family: var(--font-jp);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: var(--green-main);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(109, 190, 44, 0.35);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(109, 190, 44, 0.45);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--green-main);
  border: 1.5px solid var(--green-main);
}

.btn-outline:hover {
  background: var(--green-main);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: translateY(-2px);
}

/* ===========================
   HEADER / NAVIGATION
   =========================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

#header.scrolled {
  box-shadow: 0 4px 20px var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-en {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.logo-jp {
  font-size: 0.625rem;
  color: var(--text-light);
  letter-spacing: 0.15em;
  font-weight: 300;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 4px;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--green-main);
  transition: width 0.3s ease;
}

.nav-list a:hover::after {
  width: 100%;
}

.nav-list a:hover {
  color: var(--green-main);
}

/* アクティブナビ */
.nav-list li a.active {
  color: var(--green-main);
  font-weight: 700;
}

.nav-list li a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--green-main) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 0.82rem !important;
  box-shadow: 0 2px 10px rgba(109, 190, 44, 0.3);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--green-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

.nav-cta.active {
  background: var(--green-dark) !important;
  color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-mid);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   MOBILE MENU
   =========================== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  z-index: 999;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px var(--shadow);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu ul li a {
  display: block;
  padding: 14px 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.05em;
}

.mobile-menu ul li:last-child a { border-bottom: none; }
.mobile-menu ul li a:hover { color: var(--green-main); }
.mobile-menu ul li a.active { color: var(--green-main); font-weight: 700; }

/* ===========================
   PAGE HERO (各ページ TOP)
   =========================== */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 100%);
  color: white;
  padding: 140px 0 72px;
  text-align: center;
  margin-top: 72px;
}

.page-hero .en-sub {
  font-family: var(--font-en);
  font-size: 0.875rem;
  letter-spacing: 0.25em;
  opacity: 0.8;
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.page-hero p {
  margin-top: 16px;
  font-size: 0.9rem;
  opacity: 0.85;
  font-weight: 300;
}

/* ===========================
   BREADCRUMB
   =========================== */
.breadcrumb {
  padding: 12px 0;
  background: var(--bg-dark);
  font-size: 0.8rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 4px;
}

.breadcrumb a { color: var(--green-dark); }
.breadcrumb a:hover { color: var(--green-main); }
.breadcrumb span { margin: 0 4px; color: var(--text-light); }

/* ===========================
   HERO (index.html only)
   =========================== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  margin-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26, 56, 24, 0.6) 0%,
    rgba(26, 56, 24, 0.4) 50%,
    rgba(74, 144, 24, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 6px 20px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
  font-family: var(--font-en);
  color: rgba(255, 255, 255, 0.9);
}

.hero-catch {
  font-family: var(--font-jp);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-catch em {
  font-style: normal;
  color: var(--green-light);
}

.hero-sub {
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-bottom: 48px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-family: var(--font-en);
  animation: bounce 2s infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.5);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ===========================
   ABOUT / 3つの強み
   =========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--green-main);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--shadow);
}

.feature-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--green-main);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrap {
  background: var(--green-main);
  color: var(--white);
}

.feature-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
}

/* ===========================
   数字強調カード (TOP)
   =========================== */
.stats-section {
  background: var(--bg-dark);
  padding: 80px 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.stat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 16px;
  text-align: center;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1;
}

.stat-unit { font-size: 1rem; }
.stat-label { font-size: 0.875rem; color: var(--text-mid); margin-top: 8px; }

/* ===========================
   GREETING / カウンセラーご挨拶
   =========================== */
.greeting-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: center;
}

.greeting-image {
  position: relative;
}

.greeting-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--green-light), var(--green-main));
  border-radius: 8px 80px 8px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 16px 16px 0 var(--border);
}

.placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.placeholder-inner svg {
  width: 72px;
  height: 72px;
  stroke: rgba(255, 255, 255, 0.7);
}

.placeholder-inner span {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  font-weight: 300;
}

.greeting-name-card {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 8px 24px var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.greeting-title {
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 0.15em;
  font-weight: 300;
}

.greeting-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.08em;
}

.greeting-text h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  margin-bottom: 24px;
  color: var(--text-dark);
  line-height: 1.6;
  position: relative;
  padding-left: 16px;
  border-left: 3px solid var(--green-main);
}

.greeting-text p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 16px;
}

/* ===========================
   PHILOSOPHY (about.html)
   =========================== */
.philosophy-section {
  background: var(--bg-main);
  padding: 96px 0;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 0;
}

.philosophy-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.philosophy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
}

.philosophy-num {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--green-main);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}

.philosophy-card h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.philosophy-card p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
}

/* アクセス */
.access-section {
  background: var(--bg-dark);
  padding: 96px 0;
}

.access-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.access-info {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
}

.access-info h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.access-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.access-icon {
  color: var(--green-main);
  flex-shrink: 0;
  margin-top: 2px;
}

.access-item-label {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 300;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 2px;
}

.access-item-value {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 400;
  display: block;
}

.access-map {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

/* ===========================
   COURSE / PRICING
   =========================== */
.pricing-intro {
  text-align: center;
  margin-bottom: 48px;
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
}

.pricing-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  box-shadow: 0 8px 40px var(--shadow);
  margin-bottom: 56px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
}

.pricing-table thead th {
  padding: 28px 20px;
  text-align: center;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  vertical-align: bottom;
}

.pricing-table thead .th-label {
  background: var(--green-dark);
  border-radius: 16px 0 0 0;
}

.pricing-table thead .th-silver {
  background: linear-gradient(160deg, var(--green-dark), var(--green-main));
}

.pricing-table thead .th-gold {
  background: linear-gradient(160deg, #3a7a00, #5aaa10);
  box-shadow: 0 -4px 20px rgba(74, 144, 24, 0.3);
  position: relative;
  z-index: 1;
}

.pricing-table thead .th-platinum {
  background: linear-gradient(160deg, #1A3818, #2d5c2a);
  border-radius: 0 16px 0 0;
}

.plan-badge-th {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  font-weight: 500;
}

.plan-name {
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.plan-sub {
  font-size: 0.7rem;
  opacity: 0.85;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.pricing-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.pricing-table tbody tr:hover {
  background: var(--bg-main);
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.pricing-table tbody td {
  padding: 18px 20px;
  text-align: center;
  font-size: 0.95rem;
  font-family: 'Playfair Display', 'Noto Sans JP', sans-serif;
  color: var(--green-dark);
  letter-spacing: 0.03em;
}

.pricing-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  font-family: var(--font-jp);
  color: var(--text-dark);
  background: var(--bg-main);
  padding-left: 28px;
  font-size: 0.85rem;
  letter-spacing: normal;
}

.price-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-dark);
}

.price-u {
  font-size: 0.72rem;
  color: var(--text-light);
  font-family: var(--font-jp);
  font-weight: 300;
  margin-left: 2px;
}

.check {
  color: var(--green-main);
  font-size: 1.1rem;
  font-weight: 700;
}

.cross {
  color: var(--text-light);
  font-size: 1rem;
}

.highlight-col {
  background: rgba(109, 190, 44, 0.06) !important;
}

/* プランカード */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 20px;
  align-items: start;
}

.plan-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.plan-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 48px var(--shadow) !important;
}

.plan-card.featured {
  border-color: var(--green-main);
  box-shadow: 0 8px 36px var(--shadow);
}

.plan-card.featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 56px rgba(109, 190, 44, 0.3);
}

.plan-card-header {
  padding: 32px 28px 24px;
  text-align: center;
  color: var(--white);
}

.plan-header-silver {
  background: linear-gradient(150deg, var(--green-dark), var(--green-main));
}

.plan-header-gold {
  background: linear-gradient(150deg, #3a7a00, #5aaa10);
}

.plan-header-platinum {
  background: linear-gradient(150deg, #1A3818, #2d5c2a);
}

.plan-card-name {
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.plan-card-jp {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.plan-card-price {
  margin-top: 8px;
}

.plan-card-price .amt {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.plan-card-price .unt {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  margin-left: 2px;
}

.plan-card-body {
  padding: 24px 28px 32px;
}

.plan-target {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 10px 14px;
  background: var(--bg-main);
  border-radius: 8px;
  border-left: 3px solid var(--green-light);
}

.plan-card.featured .plan-target {
  border-left-color: var(--green-main);
}

.plan-target em {
  font-style: italic;
  color: var(--text-dark);
  font-weight: 400;
}

.plan-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--green-main);
  color: var(--white);
  font-size: 0.62rem;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(109, 190, 44, 0.4);
}

.plan-badge-plat2 {
  background: var(--green-dark);
}

.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-features li {
  font-size: 0.84rem;
  color: var(--text-mid);
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.plan-features li::before {
  content: '✓';
  color: var(--green-main);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-btn {
  width: 100%;
  display: block;
  text-align: center;
}

.pricing-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.9;
  background: var(--bg-main);
  padding: 20px 28px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

/* ===========================
   FLOW / ご入会の流れ
   =========================== */
.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
}

.step-arrow {
  font-size: 1.4rem;
  color: var(--green-light);
  margin-top: 14px;
  flex-shrink: 0;
  padding: 0 4px;
}

.steps-row-second {
  margin-top: 40px;
  justify-content: center;
}

.step-item {
  text-align: center;
  padding: 0 16px;
  flex: 1;
  max-width: 200px;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--green-main);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ja);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(109, 190, 44, 0.35);
  border: 3px solid var(--bg-main);
  transition: all 0.3s ease;
  letter-spacing: 0;
}

.step-number-final {
  background: var(--green-dark) !important;
  box-shadow: 0 4px 16px rgba(74, 144, 24, 0.45) !important;
}

.step-item:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(109, 190, 44, 0.45);
}

.step-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
}

.flow-cta {
  text-align: center;
  margin-top: 56px;
}

/* ステップ詳細 */
.step-detail-section {
  background: var(--white);
  padding: 80px 0;
}

.step-detail-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-detail-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 32px;
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.step-detail-item:hover {
  box-shadow: 0 8px 24px var(--shadow);
  border-color: var(--green-light);
}

.step-detail-num {
  width: 48px;
  height: 48px;
  background: var(--green-main);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.step-detail-content h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-detail-content p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
}

/* 必要書類 */
.docs-section {
  background: var(--bg-dark);
  padding: 80px 0;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 0;
}

.doc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
}

.doc-card h4 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.doc-card p {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===========================
   FAQ
   =========================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.open {
  border-color: var(--green-light);
  box-shadow: 0 4px 16px var(--shadow);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}

.faq-q {
  width: 28px;
  height: 28px;
  background: var(--green-main);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
}

.faq-question span:not(.faq-q):not(.faq-toggle) {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  color: var(--green-main);
  flex: none !important;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--green-main);
  color: var(--white);
  border-color: var(--green-main);
}

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

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

.faq-answer p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
}

.faq-cta {
  text-align: center;
  margin-top: 56px;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-cta p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  font-weight: 300;
}

/* ===========================
   BLOG
   =========================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.blog-card-v {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-card-v:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--shadow);
  border-color: var(--green-light);
}

.blog-card-v .blog-thumb-v {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-v .blog-thumb-v img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card-v:hover .blog-thumb-v img {
  transform: scale(1.05);
}

.blog-card-v .blog-body-v {
  padding: 20px 24px;
}

.blog-date {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  font-family: var(--font-en);
  display: block;
}

.blog-tag {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.7rem;
  color: var(--green-dark);
  background: rgba(109, 190, 44, 0.1);
  padding: 2px 8px;
  border-radius: 10px;
}

.blog-card-v .blog-title-v {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 8px 0;
}

.blog-card-v .blog-excerpt {
  font-size: 0.8rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Instagram */
.instagram-section {
  background: var(--bg-dark);
  padding: 80px 0;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 40px;
}

.ig-item {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ig-item:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px var(--shadow);
}

.ig-follow {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 300;
  text-align: center;
}

.ig-follow a {
  color: var(--green-main);
  font-weight: 500;
}

/* SNS (horizontal) */
.sns-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.sns-block h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sns-block h3 svg {
  color: var(--green-main);
}

.blog-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-card {
  display: flex;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px var(--shadow);
  border-color: var(--green-light);
}

.blog-thumb {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  overflow: hidden;
}

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

.blog-body {
  padding: 14px 16px;
  flex: 1;
  min-width: 0;
}

.blog-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ===========================
   CONTACT
   =========================== */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}

.contact-info {
  background: linear-gradient(160deg, var(--green-dark), #1A3818);
  color: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  position: sticky;
  top: 100px;
}

.contact-info h3 {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.ci-icon {
  margin-top: 2px;
  flex-shrink: 0;
  color: var(--green-light);
}

.ci-label {
  font-size: 0.7rem;
  opacity: 0.7;
  font-weight: 300;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 2px;
}

.ci-value {
  font-size: 0.9rem;
  font-weight: 400;
  display: block;
}

.ci-tel {
  font-family: var(--font-en);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 4px;
  color: var(--white);
}

.ci-free-badge {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(109, 190, 44, 0.2);
  border: 1px solid rgba(109, 190, 44, 0.4);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.ci-ibj {
  margin-top: 12px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
}

.contact-form {
  background: var(--bg-main);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.req {
  color: var(--green-main);
  margin-left: 4px;
  font-size: 0.75rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-jp);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
  outline: none;
  font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(109, 190, 44, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  text-align: center;
  margin-top: 8px;
}

.btn-submit {
  min-width: 240px;
  padding: 16px 48px !important;
  font-size: 0.95rem !important;
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 12px;
  font-weight: 300;
}

/* ===========================
   CTA セクション
   =========================== */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 0.95rem;
  opacity: 0.9;
  font-weight: 300;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background: var(--footer-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 64px 0 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}

.footer-logo-en {
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--green-light);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
}

.footer-logo-jp {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.9;
  font-weight: 300;
  max-width: 280px;
}

.footer-ibj-badge {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.footer-nav h4 {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-family: var(--font-en);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav ul li a,
.footer-nav ul li span {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}

.footer-nav ul li a:hover {
  color: var(--green-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom small {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  font-family: var(--font-en);
  font-weight: 300;
}

/* ===========================
   ANIMATIONS
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s ease;
}

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

/* 印刷時はアニメーションを無効化して全要素を表示 */
@media print {
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
  #header { position: static !important; }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .greeting-inner {
    gap: 48px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .docs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .access-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }

  .header-inner {
    padding: 0 20px;
  }

  .nav-list {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .greeting-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .greeting-photo-placeholder {
    max-width: 300px;
    margin: 0 auto;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .steps-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .step-arrow {
    display: none;
  }

  .step-item {
    min-width: 120px;
  }

  .steps-row-second {
    margin-top: 20px;
  }

  .sns-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .docs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .step-detail-item {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .stats-row { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .pricing-table thead th {
    padding: 20px 12px;
  }

  .pricing-table tbody td {
    padding: 14px 12px;
  }

  .greeting-name-card {
    right: 0;
    bottom: -12px;
  }

  .page-hero {
    padding: 120px 0 56px;
  }
}

/* ===========================
   GOLD & PINK ACCENT (追加)
   =========================== */

/* ヘッダーロゴ画像 */
.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

/* ゴールドボタン */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
  padding: 14px 36px;
  border-radius: 99px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  font-family: var(--font-jp);
}
.btn-gold:hover {
  box-shadow: 0 6px 24px rgba(201,169,106,0.4);
  transform: translateY(-2px);
  color: white;
}

/* ピンクバッジ */
.badge-pink {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink-dark);
  border: 1px solid var(--pink);
  font-size: 0.75rem;
  padding: 3px 12px;
  border-radius: 99px;
  font-weight: 500;
}

/* ゴールドバッジ */
.badge-gold {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  font-size: 0.75rem;
  padding: 3px 12px;
  border-radius: 99px;
  font-weight: 500;
}

/* 装飾リング SVGアイコン用 */
.deco-ring {
  display: inline-block;
  color: var(--gold);
}

/* カップル写真フレーム */
.couple-photo {
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  position: relative;
}
.couple-photo img {
  border-radius: 16px;
  display: block;
}
.couple-photo::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid var(--gold);
  border-radius: 20px;
  pointer-events: none;
}

/* TOPページ カップルフィーチャーセクション */
.couple-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.couple-feature-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 16px;
}
.couple-feature-text p {
  color: var(--text-mid);
  margin-bottom: 24px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .couple-feature { grid-template-columns: 1fr; }
}

/* 装飾セパレーター */
.deco-sep {
  text-align: center;
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.5em;
  margin: 0 0 32px;
  opacity: 0.7;
}

/* ピンク背景セクション */
.section-pink-bg { background: var(--pink-light) !important; }

/* ゴールドボーダーカード */
.gold-card {
  border: 1px solid var(--gold-light);
  border-top: 3px solid var(--gold);
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(201,169,106,0.1);
}

/* 成婚実績・数字 */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat-card {
  background: white;
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border-bottom: 3px solid var(--gold);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1;
}
.stat-unit { font-size: 1rem; color: var(--gold-dark); }
.stat-label { font-size: 0.875rem; color: var(--text-mid); margin-top: 8px; display: block; }
@media (max-width: 640px) { .stats-row { grid-template-columns: 1fr; } }

/* ページヒーロー（上書き強化） */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 60%, var(--gold) 100%);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242,181,192,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero .en-sub {
  font-family: var(--font-en);
  font-size: 0.875rem;
  letter-spacing: 0.25em;
  opacity: 0.85;
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: white;
}
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 400; }
.page-hero p { opacity: 0.85; font-size: 0.9rem; margin-top: 12px; font-weight: 300; }
.page-hero-deco {
  margin-top: 16px;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  opacity: 0.5;
  color: var(--gold-light);
}

/* ヒーローセクション強化 */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,56,24,0.6) 0%, rgba(74,144,24,0.3) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; color: white; padding: 0 24px; }
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.6);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  padding: 6px 20px;
  border-radius: 99px;
  margin-bottom: 24px;
}
.hero-catch {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-catch em {
  font-style: normal;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* カウンセラー写真（実画像対応） */
.greeting-photo-real {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.greeting-photo-real img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* ===== コース料金表（元HP準拠版） ===== */
.pricing-table .row-head {
  background: #f7f9f4;
  font-weight: 500;
  color: var(--text-dark);
  text-align: center;
  white-space: nowrap;
}
.pricing-table .row-desc {
  background: #fafbf7;
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
}
.pricing-table small {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 300;
}

/* ===== ご成婚までのプロセス（7ステップ縦並び） ===== */
.step-flow-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.step-flow-item {
  display: flex;
  align-items: stretch;
  background: var(--green-main);
  color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.step-flow-num {
  flex: 0 0 96px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en, 'Cormorant Garamond', serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.step-flow-num-final {
  background: rgba(255,255,255,0.25);
}
.step-flow-body {
  flex: 1;
  padding: 20px 24px;
}
.step-flow-body h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
}
.step-flow-body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.95);
  font-weight: 300;
}
.step-flow-arrow {
  text-align: center;
  color: var(--green-main);
  font-size: 1.2rem;
  padding: 8px 0;
  line-height: 1;
}
.step-flow-label {
  text-align: center;
  font-family: var(--font-en, 'Cormorant Garamond', serif);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 12px 0;
  color: #ff8800;
}
.step-flow-label-goal {
  color: #ff8800;
}

@media (max-width: 640px) {
  .step-flow-num {
    flex: 0 0 64px;
    font-size: 1.6rem;
  }
  .step-flow-body {
    padding: 16px 18px;
  }
  .step-flow-body h4 {
    font-size: 0.95rem;
  }
  .step-flow-body p {
    font-size: 0.85rem;
  }
}

/* ===== プラン見出しカード ===== */
.plan-headers {
  display: grid;
  grid-template-columns: 28% 1fr 1fr 1fr 1fr;
  gap: 0;
  max-width: 960px;
  margin: 0 auto 20px;
}
.plan-header-spacer { /* 表の項目列と幅を合わせる空白 */ }
.plan-headers .plan-header-card { margin: 0 6px; }
.plan-header-card {
  position: relative;
  border-radius: 14px;
  padding: 24px 16px 22px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.plan-header-silver-card {
  background: linear-gradient(135deg, #b8b8b8, #8e8e8e);
}
.plan-header-gold-card {
  background: linear-gradient(135deg, #d4a849, #b8861f);
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(184,134,31,0.25);
}
.plan-header-platinum-card {
  background: linear-gradient(135deg, #6a8caf, #4a6f95);
}
.plan-header-u29-card {
  background: linear-gradient(135deg, #57a773, #3d8b5f);
  justify-content: center;
}
.plan-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.1;
}
.plan-jp {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.plan-tag {
  font-size: 0.7rem;
  background: rgba(255,255,255,0.22);
  padding: 3px 12px;
  border-radius: 999px;
  margin-top: 6px;
  letter-spacing: 0.05em;
}
.plan-badge-top {
  position: absolute;
  top: -10px;
  background: #ff6b6b;
  color: #fff;
  font-size: 0.7rem;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 10px rgba(255,107,107,0.35);
}

/* ===== 新・料金比較表 ===== */
.price-table-v2-wrap {
  max-width: 960px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}
.price-table-v2 {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.price-table-v2 tr {
  border-bottom: 1px solid var(--border);
}
.price-table-v2 tr:last-child { border-bottom: none; }
.price-table-v2 .ptv2-item {
  background: #f8faf4;
  text-align: left;
  vertical-align: middle;
  padding: 18px 20px;
  width: 28%;
  font-weight: 500;
  border-right: 1px solid var(--border);
}
.ptv2-item-name {
  display: block;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-weight: 500;
}
.ptv2-item-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.65;
}
.price-table-v2 td {
  text-align: center;
  vertical-align: middle;
  padding: 18px 14px;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text-dark);
}
.price-table-v2 td small {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 300;
  display: inline-block;
  margin-left: 2px;
}
.price-table-v2 td.ptv2-text {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  text-align: left;
  padding: 18px 16px;
}
.ptv2-silver { background: #fbfbfb; }
.ptv2-gold { background: #fdf9ee; }
.ptv2-platinum { background: #f3f7fb; }
.ptv2-u29 { background: #f0f8f0; }
.ptv2-sep .ptv2-section-head {
  background: var(--green-main);
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

@media (max-width: 720px) {
  .plan-headers { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 6px; }
  .plan-header-spacer { display: none; }
  .plan-headers .plan-header-card { margin: 0; }
  .plan-header-card { padding: 14px 6px 12px; }
  .plan-en { font-size: 1rem; }
  .plan-jp { font-size: 0.72rem; }
  .plan-tag { font-size: 0.62rem; padding: 2px 8px; }
  .plan-header-gold-card { transform: none; }
  .price-table-v2 .ptv2-item { padding: 12px 8px; width: 32%; }
  .ptv2-item-name { font-size: 0.82rem; }
  .ptv2-item-desc { font-size: 0.68rem; }
  .price-table-v2 td { padding: 12px 4px; font-size: 0.8rem; white-space: nowrap; }
  .price-table-v2 td small { display: block; margin-left: 0; margin-top: 2px; }
  .price-table-v2 td.ptv2-text { font-size: 0.72rem; padding: 12px 8px; white-space: normal; }
}

/* ===== step-flow num（STEP+数字表示）上書き ===== */
.step-flow-num {
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.sf-step {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  font-weight: 400;
  opacity: 0.9;
}
.sf-no {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
}
@media (max-width: 640px) {
  .sf-no { font-size: 1.6rem; }
}

/* ===== IBJ公式バナー設置枠 ===== */
.ibj-banner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}
.ibj-banner-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 130px;
  padding: 24px 20px;
  border: 1.5px dashed var(--border);
  border-radius: 14px;
  background: var(--bg-main);
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease;
}
.ibj-banner-link:hover {
  border-color: var(--green-main);
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.ibj-banner-tag {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0.04em;
}
.ibj-banner-note {
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.6;
}
@media (max-width: 640px) {
  .ibj-banner-grid { grid-template-columns: 1fr; gap: 14px; }
  .ibj-banner-slot { min-height: 104px; padding: 20px 16px; }
}
