:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #fff8f2;
  --surface-accent: #fff1e8;
  --text: #2b2420;
  --muted: #665f59;
  --line: #eee4dc;
  --brand: #E57534;
  --brand-dark: #c85e23;
  --brand-soft: #f7c3a4;
  --shadow: 0 16px 36px rgba(43, 36, 32, 0.08);
  --shadow-soft: 0 10px 26px rgba(43, 36, 32, 0.06);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:not(.btn):not(.logo):not(.social-link):hover,
a:not(.btn):not(.logo):not(.social-link):focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}
img { max-width: 100%; display: block; height: auto; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(calc(100% - 28px), var(--max));
  margin-inline: auto;
}

h1, h2, h3 {
  line-height: 1.28;
  letter-spacing: -0.01em;
  margin: 0;
}
h1 { font-size: clamp(34px, 10vw, 58px); }
h2 { font-size: clamp(22px, 5.4vw, 34px); }
h3 { font-size: clamp(18px, 4.4vw, 23px); }
p { margin: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid rgba(238,228,220,0.94);
  backdrop-filter: blur(12px);
}
.header-row {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  font-weight: 800;
  color: var(--brand-dark);
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 2px solid var(--brand);
  color: var(--brand);
  font-size: 18px;
  flex: 0 0 auto;
}
.logo-copy {
  display: grid;
  line-height: 1.22;
}
.logo-copy small {
  display: none;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--brand-dark);
}
.logo-copy span {
  display: block;
  font-size: 16px;
  color: var(--brand-dark);
  white-space: nowrap;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-cta {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 14px;
  box-shadow: 0 10px 20px rgba(229,117,52,0.18);
}
.menu-toggle {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: var(--brand);
  display: grid;
  place-items: center;
  cursor: pointer;
  flex: 0 0 auto;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  position: relative;
  transition: 0.2s ease;
  content: "";
}
.menu-toggle span::before { top: -6px; position: absolute; }
.menu-toggle span::after { top: 6px; position: absolute; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); top: 0; }
.menu-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); top: 0; }

.desktop-nav { display: none; }
.mobile-drawer {
  display: none;
  border-top: 1px solid var(--line);
  padding: 12px 0 18px;
}
.mobile-drawer.open { display: block; }
.mobile-nav-group + .mobile-nav-group { margin-top: 8px; }
.mobile-nav-parent {
  display: block;
  padding: 13px 12px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 800;
}
.mobile-subnav {
  display: grid;
  gap: 6px;
  padding: 8px 0 0 12px;
}
.mobile-subnav a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--brand);
  background: white;
  color: var(--brand-dark);
  transition: 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary,
.btn-secondary {
  background: white;
  color: var(--brand-dark);
  border-color: var(--brand);
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus-visible,
.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
}
.btn-text {
  color: var(--brand-dark);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero {
  padding: 14px 0 22px;
}
.hero-card {
  border-radius: 0 0 30px 30px;
  background: linear-gradient(180deg, #fffaf6, #fff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.hero-media {
  position: relative;
  min-height: 0;
  height: clamp(430px, 72vh, 620px);
  height: clamp(430px, 72svh, 620px);
  background: #eee4dc;
  overflow: hidden;
  isolation: isolate;
}
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 43%;
  filter: saturate(0.98) contrast(1.02);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.08) 43%, rgba(0,0,0,0.66) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.18), transparent 45%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 28px;
  z-index: 2;
  color: white;
  text-shadow: 0 2px 18px rgba(0,0,0,0.25);
}
.hero-overlay h1 {
  font-size: clamp(30px, 8.4vw, 48px);
  letter-spacing: 0.035em;
  word-spacing: 0.12em;
  font-weight: 900;
}
.hero-overlay p {
  margin-top: 8px;
  font-size: clamp(16px, 4.6vw, 24px);
  font-weight: 800;
  line-height: 1.55;
}
.hero-info {
  padding: 22px 16px 18px;
  display: grid;
  gap: 16px;
}
.hero-description {
  font-size: clamp(16px, 4.4vw, 22px);
  line-height: 1.62;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.hero-description .small {
  display: block;
  font-size: 16px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 4px;
}
.hero-description strong {
  color: var(--brand-dark);
  font-weight: 900;
}
.fact-list {
  display: grid;
  gap: 10px;
}
.fact-item {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  background: linear-gradient(90deg, #fff2e9, #fffaf6);
  border: 1px solid rgba(229,117,52,0.13);
  box-shadow: 0 8px 20px rgba(43,36,32,0.04);
  font-weight: 850;
  font-size: 17px;
}
.fact-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: white;
  font-size: 22px;
}
.fact-item em {
  color: var(--brand-dark);
  font-style: normal;
  font-size: 1.2em;
}
.hero-actions,
.cta-actions,
.promo-actions,
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-actions .btn { width: 100%; }

.section {
  padding: 28px 0;
}
.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}
.section-head p {
  color: var(--muted);
  font-size: 15px;
}
.card,
.conversion-card,
.promo-card,
.info-panel,
.post-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.conversion-card {
  border-radius: 28px;
  padding: 20px;
  background:
    radial-gradient(circle at top right, rgba(229,117,52,0.12), transparent 38%),
    linear-gradient(180deg, #fff8f2, #fff);
}
.conversion-card h2 { font-size: clamp(24px, 6.1vw, 36px); }
.conversion-lead {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15.5px;
}
.step-flow {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.step-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
}
.step-badge {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: white;
  font-weight: 900;
}
.step-card p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}
.cta-actions {
  margin-top: 16px;
}
.cta-actions .btn { width: 100%; }

.grid-3,
.posts-grid,
.promo-grid,
.access-grid,
.gallery-grid {
  display: grid;
  gap: 12px;
}
.card {
  border-radius: var(--radius-lg);
  padding: 18px;
}
.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--surface-accent);
  color: var(--brand-dark);
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 12px;
}
.icon-badge.image-badge {
  width: 58px;
  height: 58px;
  padding: 0;
  overflow: hidden;
  background: #fff7ee;
  border: 1px solid rgba(229,117,52,0.16);
  box-shadow: 0 8px 18px rgba(28,28,28,0.06);
}
.icon-badge.image-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.support-mini .icon-badge.image-badge {
  margin-bottom: 0;
  width: 54px;
  height: 54px;
}
.card p,
.promo-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14.5px;
}
.support-box {
  margin-top: 12px;
  padding: 16px;
  border-radius: 22px;
  background: #fffaf6;
  border: 1px solid var(--line);
  color: var(--muted);
}
.support-box strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
  font-size: 16px;
}
.support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 10px;
}
.support-links a {
  color: var(--brand-dark);
  font-weight: 800;
}

.post-card {
  display: grid;
  gap: 12px;
  border-radius: var(--radius-lg);
  padding: 13px;
}
.post-card:nth-child(3) { display: grid; }
.post-thumb,
.gallery-photo,
.contact-photo {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #f0e8df;
  min-height: 154px;
  isolation: isolate;
}
.post-thumb img,
.gallery-photo img,
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-thumb::after,
.gallery-photo::after,
.contact-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.20));
  z-index: 1;
  pointer-events: none;
}
.photo-note {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.4;
  color: white;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(19,24,23,0.34);
  border: 1px solid rgba(255,255,255,0.18);
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
}
.post-tag {
  color: var(--brand-dark);
  background: var(--surface-accent);
  padding: 5px 10px;
  border-radius: 999px;
}
.post-card p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
}
.note-panel {
  margin-top: 14px;
  border-radius: 22px;
  padding: 16px;
  background: linear-gradient(180deg, #fff7f1, #ffffff);
  border: 1px solid rgba(229,117,52,0.14);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
}

.promo-card {
  border-radius: 28px;
  padding: 20px;
  background: linear-gradient(180deg, #fff8f2, #ffffff);
}
.bullet-list {
  margin: 12px 0 0;
  padding-left: 1.2em;
  color: var(--muted);
  font-size: 14.5px;
}
.bullet-list li + li { margin-top: 6px; }
.promo-actions { margin-top: 16px; }
.promo-actions .btn { width: 100%; }

.info-panel {
  border-radius: 24px;
  padding: 18px;
  background: linear-gradient(180deg, #fff7f1, #ffffff);
  border-color: rgba(229,117,52,0.14);
}
.info-panel p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
}

.support-stack .info-panel + .info-panel {
  margin-top: 22px;
}

.gallery-section {
  padding-top: 18px;
}
.gallery-grid {
  grid-template-columns: 1fr;
}
.gallery-photo {
  min-height: 210px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}
.gallery-photo:not(:first-child) { display: none; }

.contact-photo {
  min-height: 210px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}
.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.contact-item {
  padding: 12px 14px;
  border-radius: 16px;
  background: #fbf7f3;
  border: 1px solid #eee6dd;
  color: var(--muted);
}
.contact-item strong {
  display: block;
  color: var(--text);
  font-size: 13px;
  margin-bottom: 4px;
}
.contact-item a {
  color: var(--brand-dark);
  font-weight: 700;
}
.sns-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 8px;
}
.social-row { margin-top: 14px; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--brand);
  color: var(--brand-dark);
  font-weight: 800;
  transition: 0.2s ease;
}
.social-link:hover,
.social-link:focus-visible {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
}

.site-footer {
  padding: 28px 0 96px;
  color: var(--muted);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  align-items: start;
}
.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}
.footer-contact {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.footer-contact a {
  color: var(--brand-dark);
  font-weight: 700;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
}
.footer-links a {
  display: block;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.7;
}
.footer-copyright {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(235,229,222,0.96);
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0 18px 44px rgba(28,28,28,0.14);
  backdrop-filter: blur(12px);
}
.sticky-cta .btn {
  min-height: 46px;
  font-size: 13px;
  padding-inline: 10px;
  white-space: normal;
  line-height: 1.35;
  text-align: center;
}

@media (min-width: 720px) {
  .logo-copy small { display: block; }
  .logo-copy span { font-size: 17px; }
  .header-row { min-height: 72px; }
  .hero { padding-top: 24px; }
  .hero-card {
    border-radius: 34px;
  }
  .hero-info { padding: 28px; }
  .hero-actions .btn,
  .cta-actions .btn,
  .promo-actions .btn { width: auto; }
  .fact-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .fact-item {
    display: grid;
    text-align: center;
    justify-items: center;
    min-height: 132px;
  }
  .step-flow { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .step-card { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .posts-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .post-card:nth-child(3) { display: grid; }
  .promo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    grid-template-areas:
      "large one two"
      "large three four";
  }
  .gallery-photo { min-height: 180px; }
  .gallery-photo.large { grid-area: large; min-height: 390px; }
  .gallery-photo.one { grid-area: one; }
  .gallery-photo.two { grid-area: two; }
  .gallery-photo.three { grid-area: three; }
  .gallery-photo.four { grid-area: four; }
  .gallery-photo:not(:first-child) { display: block; }
  .access-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.2fr 1fr; }
  .footer-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 980px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--muted);
    font-size: 14px;
  }
  .nav-item { position: relative; }
  .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 12px;
    border-radius: 999px;
    font-weight: 800;
    color: var(--muted);
    transition: 0.2s ease;
  }
  .has-dropdown > .nav-link::after {
    content: "▾";
    font-size: 11px;
    opacity: 0.8;
  }
  .nav-item:hover > .nav-link,
  .nav-item:focus-within > .nav-link {
    color: var(--brand-dark);
    background: rgba(255,255,255,0.96);
  }
  .dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 250px;
    padding: 10px;
    display: grid;
    gap: 4px;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 18px 36px rgba(28,28,28,0.10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s ease;
    backdrop-filter: blur(12px);
    z-index: 80;
  }
  .nav-item:hover .dropdown-menu,
  .nav-item:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 14px;
    color: var(--text);
    font-weight: 700;
    line-height: 1.45;
  }
  .dropdown-menu a:hover,
  .dropdown-menu a:focus-visible {
    background: var(--surface-soft);
    color: var(--brand-dark);
  }
  .menu-toggle { display: none; }
  .mobile-drawer { display: none !important; }
  .header-cta { min-height: 44px; padding-inline: 18px; }
  .hero-card {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    overflow: hidden;
  }
  .hero-media {
    min-height: 0;
    height: clamp(360px, 42vw, 470px);
  }
  .hero-media img {
    min-height: 0;
    height: 100%;
    object-position: 50% 40%;
  }
  .hero-overlay {
    left: 26px;
    right: 26px;
    bottom: 24px;
  }
  .hero-info {
    align-content: start;
    padding: 24px 32px 30px;
  }
  .hero-overlay h1 { font-size: clamp(32px, 3.4vw, 46px); }
  .hero-overlay p { font-size: clamp(15px, 1.7vw, 20px); }
  .hero-description { font-size: clamp(16px, 1.8vw, 21px); }
  .fact-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .fact-item {
    display: grid;
    text-align: center;
    justify-items: center;
    min-height: 94px;
  }
  .section { padding: 42px 0; }
  .sticky-cta {
    left: auto;
    right: 20px;
    width: 380px;
  }
}

.support-mini {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.support-mini:first-child { border-top: 0; padding-top: 0; }
.support-mini h3 { margin: 0; font-size: 17px; }
.support-mini p { margin: 6px 0 0; color: var(--muted); font-size: 14.5px; }


.steps-grid {
  display: grid;
  gap: 12px;
}
.steps-grid .card {
  position: relative;
  padding-top: 58px;
}
.steps-grid .step-badge {
  position: absolute;
  top: 16px;
  left: 16px;
}
@media (min-width: 720px) {
  .steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}


.detail-body p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.85;
}
.learning-point-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.learning-point {
  padding: 12px 13px;
  border-radius: 16px;
  background: #fffaf6;
  border: 1px solid rgba(235,229,222,0.95);
}
.learning-point h4 {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
}
.learning-point p {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.75;
}
.detail-card-grid {
  display: grid;
  gap: 12px;
}
.detail-card {
  border-radius: 24px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.detail-card-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 4px;
}
.detail-card-head h3 {
  margin: 0;
  font-size: 19px;
}
.detail-card .icon-badge.image-badge {
  margin-bottom: 0;
  width: 56px;
  height: 56px;
}
.parent-section { padding-top: 8px; }
@media (min-width: 720px) {
  .detail-card-grid.two-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
  .detail-card-grid.two-columns .detail-card {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .detail-card-grid.two-columns .detail-body {
    flex: 1;
  }
}

.only-links {
  background: #fffaf6;
}
.only-links .support-links {
  display: grid;
  gap: 8px;
  margin-top: 0;
}
.only-links .support-links a {
  display: block;
}


.fact-item span { display: block; }
.fact-main { display: block; font-weight: 900; color: var(--text); line-height: 1.35; }
.fact-label { display: block; color: var(--brand-dark); font-size: 12px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.2; }
.fact-note { display: block; color: var(--muted); font-size: 12.5px; font-weight: 750; line-height: 1.4; margin-top: 3px; }
.learning-route-lead { margin-top: -4px; margin-bottom: 16px; color: var(--muted); font-size: 15px; }
.detail-card h4 { margin: 0; }
.detail-action { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); }
.route-point-list { display: grid; gap: 8px; margin-top: 12px; }
.route-point { padding: 12px 13px; border-radius: 16px; background: #fffaf6; border: 1px solid rgba(235,229,222,0.95); }
.route-point h4 { color: var(--text); font-size: 15px; line-height: 1.45; }
.route-point p { margin-top: 5px; font-size: 14px; line-height: 1.75; }
@media (min-width: 720px) {
  .detail-card-grid.two-columns .detail-body { display: flex; flex-direction: column; }
}

.fact-list-pills {
  padding: 10px;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff8f2, #fff);
  border: 1px solid rgba(229,117,52,0.14);
  box-shadow: 0 12px 28px rgba(43,36,32,0.06);
}
.fact-list-pills .fact-item {
  min-height: 62px;
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  border-color: rgba(229,117,52,0.16);
  box-shadow: none;
  gap: 10px;
  padding: 10px 14px;
}
.fact-pill-icon {
  min-width: 48px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: white;
  font-size: 12px;
  font-weight: 900;
}
.learning-head-row { border-left: 5px solid var(--brand); padding-left: 14px; }
.compact-cards .detail-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
}
.compact-cards .detail-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(229,117,52,0.08);
  pointer-events: none;
}
.compact-cards .detail-card-head { margin-bottom: 12px; }
.large-copy { font-size: 16px !important; line-height: 1.8 !important; color: var(--text) !important; font-weight: 800; }
.compact-chip-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.compact-chip-list span { display: inline-flex; align-items: center; min-height: 34px; padding: 0 12px; border-radius: 999px; background: #fff1e8; color: var(--brand-dark); font-size: 13px; font-weight: 900; }
.learning-route-compact .detail-body p:last-child { margin-top: 14px; }
@media (min-width: 720px) {
  .fact-list-pills { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .fact-list-pills .fact-item { min-height: 82px; justify-content: center; }
  .compact-cards .detail-card { min-height: 360px; }
  .compact-cards .detail-body { justify-content: flex-start; }
}

@media (min-width: 1200px) {
  .hero-media {
    height: 450px;
  }
}


.option-mirror .mirror-text-cards .detail-card {
  padding: 20px;
}
.option-mirror .detail-body {
  display: block !important;
}
.option-mirror .mirror-copy p {
  margin: 0;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}
.option-mirror .mirror-copy p:first-child {
  border-top: 0;
  padding-top: 2px;
}
.option-mirror .mirror-copy strong {
  display: inline-block;
  color: var(--text);
  font-size: 15px;
  margin-bottom: 2px;
}
@media (min-width: 720px) {
  .option-mirror .compact-cards .detail-card { min-height: 0; }
}


.option-mirror .mirror-copy p {
  box-sizing: border-box;
}
@media (min-width: 720px) {
  .option-mirror .mirror-text-cards .detail-card {
    display: flex;
    flex-direction: column;
  }
  .option-mirror .mirror-text-cards .mirror-copy {
    flex: 1;
  }
}


@media (max-width: 979px) {
  .hero-media {
    height: var(--hero-mobile-height, clamp(430px, 72svh, 620px)) !important;
    min-height: 0 !important;
    max-height: 620px;
    flex: 0 0 auto;
  }
  .hero-media img {
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover;
  }
}


body.menu-open {
  overflow: hidden;
}
body.menu-open .sticky-cta {
  display: none;
}
@media (min-width: 980px) {
  body.menu-open {
    overflow: auto;
  }
}


@media (max-width: 979px) {
  .mobile-drawer {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 14px 14px 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), #fff8f2);
    border-top: 1px solid var(--line);
  }
  .mobile-drawer.open { display: block; }
  .mobile-nav-group {
    padding: 10px;
    border-radius: 22px;
    background: rgba(255,255,255,0.94);
    border: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(43,36,32,0.06);
  }
  .mobile-nav-group + .mobile-nav-group { margin-top: 12px; }
  .mobile-nav-parent {
    padding: 12px 14px;
    border-radius: 16px;
    background: #fff8f2;
    border: 1px solid rgba(229,117,52,0.16);
    color: var(--brand-dark);
    font-size: 15px;
  }
  .mobile-subnav {
    padding: 10px 0 0;
    gap: 8px;
  }
  .mobile-subnav a {
    padding: 11px 13px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: none;
  }
}
@media (min-width: 720px) and (max-width: 979px) {
  .mobile-drawer { top: 72px; }
}


@media (max-width: 979px) {
  .site-header {
    z-index: 10000;
  }
  .menu-toggle {
    position: relative;
    z-index: 10002;
  }
  body.menu-open {
    overflow: hidden;
  }
  body.menu-open .sticky-cta {
    display: none;
  }
  #mobileDrawer.mobile-drawer {
    box-sizing: border-box;
    display: block !important;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }
  body.menu-open #mobileDrawer.mobile-drawer,
  #mobileDrawer.mobile-drawer.open {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}
@media (min-width: 980px) {
  body.menu-open {
    overflow: auto;
  }
}


@media (max-width: 979px) {
  #mobileDrawer.mobile-drawer {
    position: fixed !important;
    top: 66px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-height: calc(100dvh - 66px) !important;
    padding: 14px 14px calc(28px + env(safe-area-inset-bottom)) !important;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), #fff8f2) !important;
    border-top: 1px solid var(--line) !important;
    transform: translateY(-8px);
  }
  body.menu-open #mobileDrawer.mobile-drawer,
  #mobileDrawer.mobile-drawer.open {
    transform: translateY(0) !important;
  }
  #mobileDrawer .mobile-nav-group {
    padding: 10px;
    border-radius: 22px;
    background: rgba(255,255,255,0.94);
    border: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(43,36,32,0.06);
  }
  #mobileDrawer .mobile-nav-group + .mobile-nav-group { margin-top: 12px; }
  #mobileDrawer .mobile-nav-parent {
    padding: 12px 14px;
    border-radius: 16px;
    background: #fff8f2;
    border: 1px solid rgba(229,117,52,0.16);
    color: var(--brand-dark);
    font-size: 15px;
  }
  #mobileDrawer .mobile-subnav {
    padding: 10px 0 0;
    gap: 8px;
  }
  #mobileDrawer .mobile-subnav a {
    padding: 11px 13px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: none;
  }
}
@media (min-width: 720px) and (max-width: 979px) {
  #mobileDrawer.mobile-drawer {
    top: 72px !important;
    max-height: calc(100dvh - 72px) !important;
  }
}


@media (max-width: 979px) {
  .site-header {
    position: sticky !important;
    z-index: 2147483200 !important;
    isolation: isolate;
  }
  .menu-toggle {
    position: relative !important;
    z-index: 2147483300 !important;
  }
  body > #mobileDrawer.mobile-drawer,
  #mobileDrawer.mobile-drawer {
    z-index: 2147483000 !important;
    isolation: isolate;
  }
  body.menu-open > #mobileDrawer.mobile-drawer,
  body.menu-open #mobileDrawer.mobile-drawer,
  #mobileDrawer.mobile-drawer.open {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .hero,
  .hero-card,
  .hero-media {
    z-index: 0 !important;
  }
}


.foro-front #news .post-thumb {
  min-height: 0;
  height: auto;
  aspect-ratio: 16 / 10;
  display: block;
}
.foro-front #news .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.foro-front #news .post-thumb .photo-note {
  display: none !important;
}
.foro-front #news .post-content-link {
  display: block;
  color: inherit;
  text-decoration: none !important;
}
.foro-front #news .post-content-link:hover,
.foro-front #news .post-content-link:focus-visible,
.foro-front #news .post-content-link:hover h3,
.foro-front #news .post-content-link:focus-visible h3 {
  text-decoration: none !important;
}
.foro-front #news .post-content-link:hover h3,
.foro-front #news .post-content-link:focus-visible h3 {
  color: var(--brand-dark);
}
.foro-front #news .tile-more {
  margin-top: 4px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
}
.foro-front #access .section-head p {
  color: var(--muted);
  font-size: 15px;
}

.foro-front #news .post-content-link .post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}
.foro-front #news .post-content-link .post-tag {
  display: inline-flex;
}


.campaign-section {
  padding-top: 10px;
  padding-bottom: 24px;
}
.campaign-notice {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(229,117,52,0.18), transparent 36%),
    linear-gradient(180deg, #fff7ef, #ffffff);
  border: 1px solid rgba(229,117,52,0.22);
  box-shadow: var(--shadow-soft);
}
.campaign-notice-main {
  display: grid;
  gap: 9px;
}
.campaign-notice h2 {
  color: var(--text);
  font-size: clamp(21px, 5.4vw, 30px);
  font-weight: 900;
}
.campaign-notice p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.campaign-list {
  display: grid;
  gap: 8px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}
.campaign-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.65;
}
.campaign-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--brand);
}
.campaign-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.campaign-actions .btn {
  width: 100%;
}
@media (min-width: 720px) {
  .campaign-notice {
    padding: 22px 24px;
  }
  .campaign-actions .btn {
    width: auto;
    min-width: 190px;
  }
}
.experience-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff8f2, #ffffff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.experience-card-body {
  display: grid;
  gap: 8px;
}
.experience-card h3 {
  color: var(--text);
}
.experience-card p {
  color: var(--muted);
  font-size: 14.5px;
}
.experience-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.experience-actions .btn {
  width: 100%;
}
@media (min-width: 720px) {
  .experience-card {
    padding: 22px;
  }
  .experience-actions .btn {
    width: auto;
  }
}


.flow-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.flow-actions .btn {
  width: 100%;
}

.flow-detail-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.flow-detail-link:hover,
.flow-detail-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 720px) {
  .flow-actions {
    align-items: center;
    gap: 12px 16px;
  }

  .flow-actions .btn {
    width: auto;
    min-width: 190px;
  }
}

.flow-support-panels {
  margin-top: 18px;
}

.flow-confirm-head {
  margin-top: 18px;
  margin-bottom: 12px;
}

.flow-confirm-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.flow-support-panels {
  display: grid;
  gap: 12px;
}

.flow-support-panels .info-panel + .info-panel {
  margin-top: 0;
}

.flow-actions {
  justify-content: flex-start;
}

@media (min-width: 720px) {
  .flow-support-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 979px) {
  .hero-media {
    position: relative;
    isolation: isolate;
  }

  .hero-media::after {
    z-index: 1 !important;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.06) 46%, rgba(0,0,0,0.46) 100%),
      linear-gradient(90deg, rgba(0,0,0,0.10), transparent 52%) !important;
  }

  .hero-overlay {
    position: absolute;
    z-index: 2 !important;
    isolation: isolate;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: none !important;
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
  }

  .hero-overlay::before {
    content: "";
    position: absolute;
    inset: -12px -14px;
    z-index: -1;
    border-radius: 18px;
    background: linear-gradient(90deg, rgba(0,0,0,0.42), rgba(0,0,0,0.18) 62%, rgba(0,0,0,0));
    pointer-events: none;
  }

  .hero-overlay h1,
  .hero-overlay p {
    position: relative;
    z-index: 1 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: none !important;
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    -webkit-font-smoothing: antialiased !important;
    text-rendering: optimizeLegibility !important;
  }
}
