/* ==========================================================================
   よくばりブログプロジェクトファイナル LP
   参考: twmgsystem.com トンマナ準拠
   ========================================================================== */

:root {
  --color-primary: #d42a2a;
  --color-primary-dark: #b71c1c;
  --color-orange: #e87a1e;
  --color-gold: #f5b731;
  --color-hero-start: #f5a623;
  --color-hero-end: #e8751a;
  --color-navy: #1f659c;
  --color-navy-dark: #152a45;
  --color-white: #ffffff;
  --color-bg: #eef0f4;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-border: #ddd;
  --color-marker-yellow: #ffeb3b;
  --color-section-bg: #f8f8f8;

  --font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;

  --wrapper-width: 900px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
}

/* Animations
   ========================================================================== */
@keyframes logoZoomIn {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeInUp {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes slideInLeft {
  0% { transform: translateX(-40px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes curtainReveal {
  0% { transform: scaleX(0.3); opacity: 0; }
  100% { transform: scaleX(1); opacity: 1; }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes scaleInUp {
  0% { transform: translateY(30px) scale(0.95); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@keyframes jumpChar {
  0%  { transform: scaleY(1); }
  15% { transform: scaleY(0.9); }
  50% { transform: scaleY(1.3); }
  100% { transform: scaleY(1); }
}

/* Scroll animation base states
   ========================================================================== */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
}

.anim-fade-up.is-visible {
  animation: fadeInUp 0.6s ease-out both;
}

.anim-slide-left {
  opacity: 0;
  transform: translateX(-40px);
}

.anim-slide-left.is-visible {
  animation: slideInLeft 0.5s ease-out both;
}

.anim-curtain {
  opacity: 0;
  transform: scaleX(0.3);
}

.anim-curtain.is-visible {
  animation: curtainReveal 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.anim-fade {
  opacity: 0;
}

.anim-fade.is-visible {
  animation: fadeIn 0.7s ease-out both;
}

.anim-scale-up {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}

.anim-scale-up.is-visible {
  animation: scaleInUp 0.6s ease-out both;
}

.anim-jump-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.anim-jump-text.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-jump-text .jump-char {
  display: inline-block;
  transform-origin: bottom;
  will-change: transform;
}

.anim-jump-text.is-visible .jump-char {
  animation: jumpChar 0.48s ease-out both;
  animation-delay: calc(0.04s * var(--i));
}

.anim-pulse.is-visible {
  animation: pulse 1.5s ease-in-out 0.5s 2;
}

/* LP Wrapper - white card on gray background
   ========================================================================== */
.lp-wrapper {
  max-width: var(--wrapper-width);
  margin: 40px auto 0;
  background: var(--color-white);
  box-shadow: 0 0 10px rgba(189, 193, 207, 0.8);
  border-radius: 15px 15px 0 0;
}

/* Inner container for content padding */
.inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Countdown Timer
   ========================================================================== */
@keyframes countdownPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@keyframes countdownFlash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.countdown {
  background: linear-gradient(135deg, #8b0000, #d42a2a 40%, #e83a3a 70%, #b71c1c);
  padding: 20px 0;
  text-align: center;
  border-radius: 15px 15px 0 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(180, 0, 0, 0.4);
}

.countdown::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(0, 0, 0, 0.06) 10px,
    rgba(0, 0, 0, 0.06) 20px
  );
  pointer-events: none;
}

.countdown + .hero {
  border-radius: 0;
}

.countdown__inner {
  max-width: var(--wrapper-width);
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
}

.countdown__label {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  animation: countdownFlash 2s ease-in-out infinite;
}

.countdown__timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  animation: countdownPulse 3s ease-in-out infinite;
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: #ffe04a;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 12px rgba(255, 224, 74, 0.6);
}

.countdown__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 700;
  margin-top: 5px;
}

.countdown__sep {
  color: #ffe04a;
  font-size: 30px;
  font-weight: 900;
  margin: 0 2px;
  padding-bottom: 18px;
  text-shadow: 0 0 8px rgba(255, 224, 74, 0.5);
}

.countdown__number--ms {
  width: 52px;
  height: 52px;
  font-size: 26px;
  opacity: 0.85;
}

.countdown__sep--ms {
  font-size: 26px;
  padding-bottom: 18px;
}

.countdown__ended {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  padding: 18px 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.countdown__heading {
  color: #ffe04a;
  font-size: 26px;
  font-weight: 900;
  padding: 14px 0;
  margin: 0;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Hero Section
   ========================================================================== */
/* Hero - image based
   ========================================================================== */
.hero {
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

.hero__image {
  width: 100%;
  display: block;
}

/* Section Common
   ========================================================================== */
.section {
  padding: 28px 0;
}

.section--gray {
  background: var(--color-section-bg);
}

/* Logo section */
.logo-section {
  text-align: center;
  padding: 24px 0 16px;
}

.logo-image {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  opacity: 0;
  transform: scale(0.6);
}

.logo-section.is-visible .logo-image {
  animation: logoZoomIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s both;
}

/* Chara section */
.chara-section {
  text-align: center;
  padding: 8px 0 16px;
}

.chara-image {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.hero__members {
  font-size: 19px;
  font-weight: 700;
  text-align: center;
  margin-top: 8px;
  color: var(--color-text);
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* Seminar section */
.seminar-section {
  text-align: center;
  padding: 8px 0 68px;
}

.seminar-image {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

/* Heading Bar - ribbon style
   ========================================================================== */
.heading-bar {
  background: var(--color-navy);
  color: var(--color-white);
  text-align: center;
  padding: 30px 50px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  margin: 24px -30px 0;
  position: relative;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.heading-bar::before,
.heading-bar::after {
  content: "";
  position: absolute;
  bottom: -18px;
  width: 0;
  height: 0;
}

.heading-bar::before {
  left: 0;
  border-top: 18px solid #0e2d45;
  border-left: 30px solid transparent;
}

.heading-bar::after {
  right: 0;
  border-top: 18px solid #0e2d45;
  border-right: 30px solid transparent;
}

/* Profile Section - reference LP style
   ========================================================================== */
.profile-section {
  background: #f5f0ed;
  overflow: hidden;
  position: relative;
}

.profile-layout {
  display: flex;
  position: relative;
}

.profile-layout__left {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.profile-nameplate {
  background: linear-gradient(to right, var(--color-primary) 70%, transparent);
  color: var(--color-white);
  padding: 22px 32px;
  display: inline-block;
  min-width: 60%;
}

.profile-nameplate__role {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}

.profile-nameplate__name {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.profile-bio {
  padding: 28px 32px 36px;
  font-size: 16px;
  line-height: 1.95;
  text-align: left;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.profile-bio p {
  margin-bottom: 20px;
}

.profile-bio p:last-child {
  margin-bottom: 0;
}

.profile-layout__right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.profile-layout__right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(to right, #f5f0ed, rgba(245, 240, 237, 0));
  z-index: 1;
  pointer-events: none;
}

.profile-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.profile-photo--contain {
  object-fit: contain;
  object-position: bottom center;
}

/* Illustration image - character art (Ayumi) */
.profile-layout__right--illust {
  width: 40%;
}

/* Reverse layout - image on left, text on right (Takeuchi)
   ========================================================================== */
.profile-section--reverse .profile-layout__left {
  padding-left: 40%;
}

.profile-section--reverse .profile-nameplate {
  background: linear-gradient(to left, var(--color-primary) 70%, transparent);
  text-align: right;
  display: block;
  padding: 22px 32px;
}

.profile-section--reverse .profile-bio {
  text-align: left;
  padding: 28px 32px 36px 138px;
}

.profile-section--reverse .profile-layout__right {
  right: auto;
  left: 0;
  width: 50%;
}

.profile-section--reverse .profile-layout__right::before {
  left: auto;
  right: 0;
  background: linear-gradient(to left, #f5f0ed, rgba(245, 240, 237, 0));
}

/* Impact Heading - info product style
   ========================================================================== */
.impact-heading {
  background: linear-gradient(180deg, #fdf6f0 0%, #fceee4 100%);
  border-top: 4px solid var(--color-primary);
  border-bottom: 4px solid var(--color-primary);
  padding: 36px 24px;
  margin-bottom: 48px;
  text-align: center;
}

.impact-heading__text {
  font-size: 21px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 2;
}

.impact-heading__highlight {
  color: var(--color-primary);
  font-weight: 900;
}

.impact-heading__num {
  font-size: 1.4em;
  font-weight: 900;
  color: var(--color-primary);
}

.impact-heading__question {
  font-size: 1.4em;
  font-weight: 900;
  color: var(--color-primary);
  background: linear-gradient(transparent 60%, #ffe0b2 60%);
  padding: 0 4px;
}

.sp-only {
  display: none;
}

@media (max-width: 600px) {
  .countdown {
    padding: 16px 0;
    border-radius: 0;
  }

  .countdown__number {
    width: 52px;
    height: 52px;
    font-size: 26px;
  }

  .countdown__sep {
    font-size: 24px;
    padding-bottom: 16px;
  }

  .countdown__number--ms {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .countdown__sep--ms {
    font-size: 20px;
    padding-bottom: 14px;
  }

  .sp-only {
    display: inline;
  }

  .impact-heading {
    padding: 24px 16px;
    margin-bottom: 32px;
  }

  .impact-heading__text {
    font-size: 16px;
  }

  .impact-heading__question {
    font-size: 1.2em;
  }
}

/* Heading Bar - Present special
   ========================================================================== */
.heading-bar--present {
  background: linear-gradient(135deg, #b71c1c 0%, #d42a2a 40%, #e84545 100%);
  padding: 24px 50px 28px;
}

.heading-bar__main {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

/* Bonus Highlight
   ========================================================================== */
.bonus-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
  border: 3px solid var(--color-gold);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.bonus-highlight__label {
  flex-shrink: 0;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 900;
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 0.1em;
}

.bonus-highlight__text {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

.bonus-highlight__num {
  font-size: 22px;
  font-weight: 900;
  color: var(--color-primary);
}

/* Seminar CTA Box
   ========================================================================== */
.seminar-cta-box {
  background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
  border: 3px solid var(--color-gold);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  margin-top: 24px;
}

.seminar-cta-box__text {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 12px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.seminar-cta-box__date {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.seminar-cta-box__date-highlight {
  font-size: 26px;
  font-weight: 900;
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

/* CTA Button
   ========================================================================== */
.section--cta {
  padding: 40px 0 48px;
  text-align: center;
}

.cta-button {
  display: block;
  background: linear-gradient(180deg, #4caf50 0%, #388e3c 100%);
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  padding: 22px 32px;
  border-radius: 50px;
  margin: 0 auto;
  max-width: 520px;
  box-shadow: 0 6px 16px rgba(56, 142, 60, 0.35);
  transition: opacity 0.2s, transform 0.2s;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-decoration: none;
  letter-spacing: 0.05em;
  animation: cta-pulse 2s ease-in-out infinite;
}

.cta-button:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  color: #fff;
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 6px 16px rgba(56, 142, 60, 0.35); }
  50% { box-shadow: 0 8px 28px rgba(56, 142, 60, 0.55); }
}

/* Story - centered text
   ========================================================================== */
.story__text {
  text-align: center;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.story__text .bold,
.bold {
  font-weight: 700;
}

.story__text .red,
.red {
  color: #c00;
  font-weight: 700;
  text-decoration: underline;
}

.story__text .marker,
.marker {
  background-color: var(--color-marker-yellow);
  font-weight: 700;
  text-decoration: underline;
  padding: 0 0.1em;
  font-size: 19px;
}

.story__comparison {
  background: var(--color-section-bg);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 24px 0;
  text-align: center;
}

.story__comparison dt {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 17px;
}

.story__comparison dd {
  margin-bottom: 12px;
  font-size: 17px;
}

.story__comparison dd:last-child {
  margin-bottom: 0;
}

/* Speakers - info product style
   ========================================================================== */
.speakers {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.speaker-card {
  text-align: center;
  padding: 32px 24px 28px;
  background: var(--color-white);
  border: 2px solid #e8e0dc;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
}

.speaker-card__photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-primary);
  margin: 0 auto 10px;
  box-shadow: 0 3px 10px rgba(212, 42, 42, 0.15);
}

.speaker-card__name {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.speaker-card__name::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-primary);
  margin: 8px auto 14px;
  border-radius: 2px;
}

.speaker-card__desc {
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
  margin-bottom: 8px;
  color: var(--color-text);
}

.speaker-card__desc:last-child {
  margin-bottom: 0;
}

/* Learn List - info product style
   ========================================================================== */
.learn-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.learn-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 8px;
  border-bottom: 1px solid var(--color-border);
  font-size: 16px;
  line-height: 1.8;
}

.learn-list li:last-child {
  border-bottom: none;
}

.learn-list__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.learn-list__body {
  flex: 1;
}

.learn-list__highlight {
  color: var(--color-primary);
  font-weight: 900;
  font-size: 1.1em;
}

/* Target List
   ========================================================================== */
.target-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.target-list li {
  padding: 10px 16px;
  font-size: 17px;
  text-align: center;
  border-bottom: 1px dotted var(--color-border);
}

.target-list li:last-child {
  border-bottom: none;
}

/* Results Placeholder
   ========================================================================== */
.results-placeholder {
  background: var(--color-white);
  border: 2px dashed var(--color-border);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* Present Cards
   ========================================================================== */
.present-card {
  background: var(--color-white);
  border: 2px solid var(--color-gold);
  border-radius: 12px;
  padding: 32px 24px;
  margin-bottom: 28px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.present-card:last-child {
  margin-bottom: 0;
}

.present-card__banner {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.present-card__desc {
  font-size: 17px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 16px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.present-card__desc:last-child {
  margin-bottom: 0;
}

.present-card__callout {
  background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
  border-left: 5px solid var(--color-gold);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.present-card__callout--secret {
  background: linear-gradient(135deg, #fce4ec 0%, #ffebee 100%);
  border-left-color: var(--color-primary);
}

/* Supplement
   ========================================================================== */
.supplement__text {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.supplement__bonus {
  background: var(--color-white);
  border: 2px solid var(--color-gold);
  border-radius: 12px;
  padding: 28px 24px 16px;
  margin: 36px 0 20px;
  position: relative;
}

.supplement__bonus-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 900;
  padding: 4px 20px;
  border-radius: 20px;
  letter-spacing: 0.1em;
}

.supplement__closing {
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  margin-top: 24px;
  color: var(--color-primary);
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* Voice Card (実践者の声)
   ========================================================================== */
.voice-card {
  background: var(--color-white);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 24px 20px;
  margin-bottom: 20px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.voice-card__title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 14px 18px;
  border-radius: 8px;
  position: relative;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.voice-card__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 24px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--color-primary-dark);
}

.voice-card__profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 16px;
}

.voice-card__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e0e0e0;
}

.voice-card__name {
  font-weight: 700;
  font-size: 16px;
}

.voice-card__text {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 12px;
}

.voice-card__text:last-child {
  margin-bottom: 0;
}

/* Footer
   ========================================================================== */
.footer {
  text-align: center;
  padding: 24px 20px;
  background: var(--color-navy-dark);
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
}

/* Todo Marker
   ========================================================================== */
.todo {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 0.8rem;
  color: #856404;
  margin: 10px auto;
  max-width: 500px;
  text-align: center;
}

.todo::before {
  content: "TODO: ";
  font-weight: 700;
}

/* Responsive
   ========================================================================== */
@media (max-width: 940px) {
  .lp-wrapper {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero {
    border-radius: 0;
  }

  .heading-bar {
    margin-left: -16px;
    margin-right: -16px;
  }

  .heading-bar::before {
    border-left-width: 16px;
  }

  .heading-bar::after {
    border-right-width: 16px;
  }
}

@media (max-width: 600px) {
  .profile-layout {
    flex-direction: column;
  }

  .profile-nameplate {
    display: block;
    min-width: 100%;
    text-align: center;
    padding: 18px 20px;
    order: 1;
    background: var(--color-primary);
  }

  .profile-nameplate__name {
    font-size: 30px;
  }

  .profile-layout__left {
    display: flex;
    flex-direction: column;
  }

  .profile-layout__right {
    position: relative;
    width: 60%;
    max-width: 220px;
    margin: 0 auto;
    order: 0;
  }

  .profile-layout__right::before {
    display: none;
  }

  .profile-photo {
    height: auto;
    object-fit: contain;
  }

  .profile-bio {
    text-align: center;
    padding: 20px 16px 28px;
    font-size: 14px;
    order: 2;
  }

  .profile-bio br {
    display: none;
  }

  .profile-section {
    padding-bottom: 0;
  }

  .profile-layout__right--illust {
    width: 60%;
    max-width: 220px;
  }

  .profile-section--reverse .profile-layout__left {
    padding-left: 0;
  }

  .profile-section--reverse .profile-bio {
    padding: 20px 16px 28px;
    text-align: center;
  }

  .profile-section--reverse .profile-nameplate {
    background: var(--color-primary);
    text-align: center;
  }

  .profile-section--reverse .profile-bio {
    padding-left: 16px;
    padding-right: 16px;
    text-align: center;
  }

  .profile-section--reverse .profile-layout__right {
    position: relative;
    right: auto;
    left: auto;
    width: 60%;
    max-width: 220px;
    margin: 0 auto;
  }

  .profile-section--reverse .profile-layout__right::before {
    display: none;
  }

  .bonus-highlight {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 16px;
  }

  .bonus-highlight__text {
    font-size: 15px;
  }

  .bonus-highlight__num {
    font-size: 19px;
  }

  .present-card {
    padding: 24px 16px;
  }

  .present-card__callout {
    padding: 12px 16px;
    font-size: 16px;
  }

  .heading-bar--present {
    padding: 20px 24px;
  }

  .heading-bar__main {
    font-size: 22px;
  }

  .learn-list li {
    font-size: 14px;
    padding: 16px 4px;
  }

  .learn-list__num {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .speaker-card {
    padding: 24px 16px 20px;
  }

  .story__text {
    font-size: 15px;
  }

  .story__text br,
  .present-card__desc br,
  .present-card__callout br,
  .supplement__text br,
  .learn-list__body br,
  .voice-card__title br {
    display: none;
  }

  .seminar-cta-box__date-highlight {
    font-size: 22px;
  }

  .logo-image,
  .chara-image,
  .seminar-image {
    max-width: 100%;
    padding: 0 8px;
  }

  .inner {
    padding: 0 16px;
  }

  .heading-bar {
    margin-left: 0;
    margin-right: 0;
    font-size: 20px;
    padding: 20px 16px;
  }

  .heading-bar::before {
    display: none;
  }

  .heading-bar::after {
    display: none;
  }

}

@media (max-width: 480px) {
  .hero__title {
    font-size: 26px;
  }

  .hero__catch {
    font-size: 17px;
  }

  .hero__date-box {
    font-size: 17px;
    padding: 8px 20px;
  }

  .heading-bar {
    font-size: 20px;
    padding: 20px 16px;
  }

  .cta-button {
    font-size: 18px;
    padding: 16px 20px;
  }
}
