@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@600;700;800&family=Noto+Serif+JP:wght@600;700&family=Noto+Sans+JP:wght@400;500;700;900&family=Plus+Jakarta+Sans:wght@700;800&display=swap');

:root {
  --navy: #0B1D3A;
  --navy-light: #162C4E;
  --gold-primary: #D4AF37;
  --gold-dark: #B38F24;
  --gold-light: #F7E9B8;
  --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
  --bg-light: #FAF8F5; /* 明るいウォームホワイト */
  --bg-white: #FFFFFF;
  --bg-dark: #0B1D3A;
  --text-dark: #2C3540;
  --text-muted: #596575;
  --text-white: #FFFFFF;
  --font-serif: 'Shippori Mincho', 'Noto Serif JP', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --shadow-sm: 0 6px 20px rgba(11, 29, 58, 0.06);
  --shadow-md: 0 12px 35px rgba(11, 29, 58, 0.1);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.25);
}

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

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

body {
  font-family: var(--font-serif);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.85;
  letter-spacing: 0.03em;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 45px;
}

.section-subtitle {
  display: inline-block;
  font-family: var(--font-sans);
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: #FFF8E7;
  border: 1px solid var(--gold-primary);
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.4;
}

.section-title.light {
  color: #FFFFFF;
}

.section-title span.gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.55rem;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ==========================================================================
   HEADER BANNER
   ========================================================================== */
.header-banner-wrapper {
  background: #000000;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.header-banner-wrapper img {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ==========================================================================
   BEFORE AFTER
   ========================================================================== */
.before-after-section {
  background: var(--bg-light);
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

@media (max-width: 768px) {
  .before-after-grid {
    grid-template-columns: 1fr;
  }
}

.ba-card {
  border-radius: 16px;
  padding: 35px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  background: #FFFFFF;
}

.ba-card.before {
  border: 2px solid #EAE1D9;
}

.ba-card.after {
  border: 2px solid var(--gold-primary);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF2 100%);
  box-shadow: var(--shadow-md);
}

.ba-card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px dashed #EAE1D9;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ba-card.before .ba-card-title {
  color: var(--navy);
}

.ba-card.after .ba-card-title {
  color: var(--gold-dark);
}

.illustration-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ba-card.before .illustration-badge {
  background: #F0EAE1;
  color: var(--navy);
}

.ba-card.after .illustration-badge {
  background: #FFF3D6;
  color: var(--gold-dark);
}

.ba-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ba-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-dark);
  font-family: var(--font-sans);
}

.ba-list li .svg-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   FUTURE COMPARISON
   ========================================================================== */
.future-section {
  background: #FFFFFF;
  border-top: 1px solid #EAE1D9;
}

.future-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media (max-width: 768px) {
  .future-grid {
    grid-template-columns: 1fr;
  }
}

.future-card {
  border-radius: 18px;
  padding: 35px 28px;
  position: relative;
}

.future-card.not-do {
  background: #F5F7FA;
  border: 2px dashed #CBD5E1;
}

.future-card.do {
  background: linear-gradient(145deg, #0B1D3A 0%, #162C4E 100%);
  color: #FFFFFF;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 15px 40px rgba(11, 29, 58, 0.2);
}

.future-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.future-card.do .future-card-header {
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.future-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  flex-shrink: 0;
}

.future-card.not-do .future-icon {
  background: #E2E8F0;
  color: #64748B;
}

.future-card.do .future-icon {
  background: var(--gold-gradient);
  color: var(--navy);
}

.future-card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
}

.future-card.not-do .future-card-title {
  color: #475569;
}

.future-card.do .future-card-title {
  color: var(--gold-light);
}

.future-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-sans);
}

.future-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.96rem;
  line-height: 1.7;
}

.future-card.not-do .future-list li {
  color: #475569;
}

.future-card.do .future-list li {
  color: #F1F5F9;
}

.future-list li .bullet-icon {
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.future-card.not-do .bullet-icon {
  color: #94A3B8;
}

.future-card.do .bullet-icon {
  color: var(--gold-primary);
}

/* ==========================================================================
   ESSENCE MESSAGE SECTION (一人で練習するだけでは気づけないこと)
   ========================================================================== */
.essence-section {
  background: var(--bg-light);
}

.essence-box {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 45px 35px;
  border: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-md);
  position: relative;
}

.essence-quote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--gold-primary);
}

.essence-body {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  color: var(--text-dark);
  line-height: 1.85;
}

.essence-highlight-box {
  background: #FFF9EB;
  border-left: 4px solid var(--gold-primary);
  padding: 20px 24px;
  margin: 25px 0;
  border-radius: 0 12px 12px 0;
}

.essence-highlight-box strong {
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  display: block;
  margin-bottom: 6px;
}

.essence-loop-banner {
  background: var(--navy);
  color: var(--gold-light);
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 25px;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   COGNITION & FLOW SECTION
   ========================================================================== */
.flow-section {
  background: var(--navy);
  color: #FFFFFF;
}

.flow-box {
  background: var(--navy-light);
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid var(--gold-primary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.flow-headline {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: #FFFFFF;
  font-weight: 700;
  text-align: center;
  margin-bottom: 35px;
  line-height: 1.6;
}

.flow-headline span.highlight {
  color: var(--gold-light);
  border-bottom: 2px solid var(--gold-primary);
  padding-bottom: 2px;
}

.flow-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

@media (max-width: 768px) {
  .flow-steps {
    flex-direction: column;
    gap: 14px;
  }
}

.flow-step-item {
  background: var(--navy);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  padding: 20px 12px;
  text-align: center;
  flex: 1;
  width: 100%;
}

.flow-step-icon-svg {
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
  color: var(--gold-primary);
}

.flow-step-text {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.45;
}

.flow-arrow {
  color: var(--gold-primary);
  font-size: 1.4rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .flow-arrow {
    transform: rotate(90deg);
  }
}

/* ==========================================================================
   DAY SCHEDULE
   ========================================================================== */
.schedule-section {
  background: #FFFFFF;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .schedule-grid {
    grid-template-columns: 1fr;
  }
}

.schedule-card {
  background: var(--bg-light);
  border: 1.5px solid #EAE1D9;
  border-radius: 16px;
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.schedule-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-md);
}

.schedule-icon-wrapper {
  background: var(--navy);
  color: var(--gold-primary);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(11, 29, 58, 0.15);
}

.schedule-icon-wrapper svg {
  width: 26px;
  height: 26px;
}

.schedule-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 6px;
}

.schedule-desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.goal-banner {
  text-align: center;
  margin-top: 40px;
  padding: 22px;
  background: linear-gradient(135deg, #FFF9EB 0%, #FFFFFF 100%);
  border: 2px solid var(--gold-primary);
  border-radius: 16px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* ==========================================================================
   MINDSET & 10 GIFTS
   ========================================================================== */
.mindset-gifts-section {
  background: var(--navy);
  color: #FFFFFF;
}

.mindset-box {
  background: var(--navy-light);
  border-radius: 18px;
  padding: 35px;
  border: 1.5px solid var(--gold-primary);
  margin-bottom: 45px;
}

.mindset-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--gold-light);
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}

.mindset-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  list-style: none;
}

@media (max-width: 680px) {
  .mindset-list {
    grid-template-columns: 1fr;
  }
}

.mindset-item {
  background: var(--navy);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid var(--gold-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.mindset-item strong {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

/* 10大特典カード */
.gifts-card {
  background: linear-gradient(145deg, #102444 0%, #1A345C 100%);
  border-radius: 20px;
  padding: 45px 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border: 2px solid var(--gold-primary);
}

.gifts-header {
  text-align: center;
  margin-bottom: 35px;
}

.gifts-badge {
  display: inline-block;
  background: var(--gold-gradient);
  color: var(--navy);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 6px 24px;
  border-radius: 30px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-gold);
}

.gifts-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: #FFFFFF;
  font-weight: 700;
}

@media (max-width: 768px) {
  .gifts-title {
    font-size: 1.6rem;
  }
}

.gifts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 768px) {
  .gifts-grid {
    grid-template-columns: 1fr;
  }
}

.gift-item {
  background: var(--navy);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.gift-num {
  background: var(--gold-gradient);
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gift-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.55;
  color: #FFFFFF;
  font-weight: 500;
}

.gift-text span.type-tag {
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-size: 0.72rem;
  padding: 1px 7px;
  border-radius: 4px;
  margin-left: 8px;
}

/* ==========================================================================
   PRICE & OUTLINE
   ========================================================================== */
.outline-section {
  background: var(--bg-light);
}

.price-card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto;
}

.price-card-header {
  background: var(--navy);
  color: var(--gold-light);
  text-align: center;
  padding: 24px;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  border-bottom: 2px solid var(--gold-primary);
}

.price-card-body {
  padding: 40px 30px;
}

.price-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.price-old {
  font-size: 1.25rem;
  color: #8899A6;
  text-decoration: line-through;
}

.price-new {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  color: var(--navy);
  font-weight: 900;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-new span {
  font-size: 1.2rem;
}

.schedule-slot-box {
  background: #FFF9EB;
  border: 1.5px solid var(--gold-primary);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 30px;
}

.schedule-slot-title {
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
  border-bottom: 1px dashed var(--gold-primary);
  padding-bottom: 8px;
}

.schedule-slot-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-sans);
}

.schedule-slot-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.schedule-date-badge {
  background: var(--navy);
  color: var(--gold-light);
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 6px;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.outline-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.outline-table th,
.outline-table td {
  padding: 16px;
  border-bottom: 1px solid #EAE1D9;
  text-align: left;
  font-family: var(--font-sans);
}

.outline-table th {
  width: 25%;
  color: var(--navy);
  font-weight: 700;
  background: #FAF7F2;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--gold-gradient);
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  padding: 22px 45px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  border: 1px solid #FFF;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.55);
}

/* フローティングCTA */
.floating-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 999;
  width: 92%;
  max-width: 520px;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.floating-cta.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.btn-floating {
  width: 100%;
  font-size: 1.15rem;
  padding: 18px 24px;
}

footer {
  background: #061124;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 30px 0;
  font-size: 0.85rem;
  border-top: 1px solid var(--gold-primary);
}
