:root {
  --blue: #0878f9;
  --blue-dark: #0062d7;
  --blue-soft: #dff1ff;
  --cyan: #46c7f2;
  --sky: #eef8ff;
  --yellow: #ffdf69;
  --yellow-soft: #fff6ca;
  --pink: #ff9fc4;
  --pink-soft: #fff0f7;
  --mint: #9de5d2;
  --mint-soft: #e9fbf5;
  --lavender: #bdaeff;
  --lavender-soft: #f1edff;
  --ink: #10213a;
  --muted: #637188;
  --line: #cfe7fb;
  --paper: #ffffff;
  --soft: #f5faff;
  --radius-sm: 18px;
  --radius-md: 30px;
  --radius-lg: 46px;
  --shadow-soft: 0 18px 44px rgba(31, 113, 188, 0.12);
  --shadow-pop: 0 9px 0 #b9ddfb;
  --container: 1180px;
  --rounded-font:
    "Arial Rounded MT Bold",
    "Hiragino Maru Gothic ProN",
    "Hiragino Sans",
    "Yu Gothic",
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    Arial,
    sans-serif;
}

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

html {
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--rounded-font);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 4px solid rgba(70, 199, 242, 0.6);
  outline-offset: 4px;
}

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

.narrow {
  width: min(780px, 100%);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title {
  max-width: 820px;
  font-size: clamp(34px, 4.8vw, 60px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.section-copy {
  max-width: 690px;
  margin-top: 20px;
  color: var(--muted);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.text-link::after {
  content: "→";
  font-size: 18px;
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(5px) rotate(-8deg);
}

/* Header */

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 2px solid #e1f0fc;
  background: rgba(255, 255, 255, 0.96);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 32px;
}

.site-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
}

.site-brand::before,
.footer-brand::before {
  content: "≋";
  display: inline-block;
  color: var(--cyan);
  font-family: Arial, sans-serif;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.2em;
  transform: rotate(-4deg);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--blue-soft);
  color: var(--blue);
  transform: rotate(-1deg);
}

.site-nav .nav-app {
  margin-left: 7px;
  padding-inline: 18px;
  background: var(--blue);
  box-shadow: 0 4px 0 #bddcff;
  color: #fff;
}

.site-nav .nav-app:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(2px);
}

/* Buttons */

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.button:hover {
  transform: translateY(3px);
}

.button-primary {
  background: var(--blue);
  box-shadow: 0 7px 0 #a9d3ff;
  color: #fff;
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 4px 0 #a9d3ff;
}

.button-secondary {
  border-color: #bcdff9;
  background: #fff;
  box-shadow: 0 7px 0 #d9edfc;
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--yellow-soft);
  box-shadow: 0 4px 0 #d9edfc;
}

.section-actions {
  margin-top: 32px;
}

/* App hero */

.app-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 100px;
  background:
    radial-gradient(circle at 12px 12px, rgba(70, 199, 242, 0.18) 0 2px, transparent 2.5px) 0 0 / 32px 32px,
    linear-gradient(180deg, #eef8ff 0%, #e5f4ff 100%);
}

.app-hero::before {
  position: absolute;
  top: 42px;
  right: 7%;
  width: 78px;
  height: 78px;
  border: 5px solid var(--yellow);
  border-radius: 50%;
  box-shadow:
    0 -18px 0 -14px var(--yellow),
    0 18px 0 -14px var(--yellow),
    18px 0 0 -14px var(--yellow),
    -18px 0 0 -14px var(--yellow);
  content: "";
  opacity: 0.85;
  transform: rotate(15deg);
}

.app-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 500px);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
}

.app-hero-grid > *,
.category-hero-grid > *,
.portal-card > *,
.heading-row > *,
.spot-schema > * {
  min-width: 0;
}

.app-hero h1 {
  max-width: 720px;
  margin-bottom: 26px;
  color: var(--ink);
  font-size: clamp(48px, 6.5vw, 78px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.app-hero-copy {
  max-width: 610px;
  margin-bottom: 36px;
  color: var(--muted);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: clamp(17px, 2vw, 19px);
}

.app-hero-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 570px;
  overflow: hidden;
  border: 3px solid #a9d8fb;
  border-radius: 52px;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 223, 105, 0.82) 0 7px, transparent 8px),
    radial-gradient(circle at 86% 12%, rgba(255, 223, 105, 0.48) 0 30px, transparent 31px),
    #fff;
  box-shadow: 13px 13px 0 #bfe4ff;
  transform: rotate(1deg);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.app-hero-card:hover {
  box-shadow: 8px 8px 0 #bfe4ff;
  transform: translate(5px, 5px) rotate(-1deg);
}

.hero-note {
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 36px;
  color: var(--blue);
  font-family: "Bradley Hand", "Comic Sans MS", cursive;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1;
  transform: rotate(-8deg);
}

.hero-note::after {
  display: block;
  width: 92%;
  height: 8px;
  margin: 7px auto 0;
  border-top: 4px solid var(--cyan);
  border-radius: 50%;
  content: "";
  transform: rotate(3deg);
}

.app-hero-card .hero-mascot {
  width: 98%;
  height: auto;
  margin-top: 12px;
  filter: drop-shadow(0 12px 12px rgba(36, 114, 176, 0.12));
}

.hero-session-chip {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  padding: 15px 20px;
  border: 2px solid #c9e7fb;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 7px 0 #d6ecfb;
  color: var(--ink);
  transform: rotate(-2deg);
}

.hero-session-chip strong {
  font-size: 15px;
}

.hero-session-chip small {
  margin-top: 2px;
  color: var(--blue);
  font-size: 10px;
  letter-spacing: 0.05em;
}

.app-store-help {
  display: none;
  max-width: 440px;
  margin-top: 20px;
  padding: 14px 17px;
  border: 2px dashed #a8d5f6;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted);
  font-size: 13px;
}

.app-store-help.is-visible {
  display: block;
}

/* Media portals */

.media-intro {
  padding: 112px 0 54px;
  background: #fff;
}

.media-portals {
  padding-bottom: 120px;
  background: #fff;
}

.portal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.portal-card {
  --portal-bg: var(--sky);
  --portal-border: #a9d8fb;
  --portal-shadow: #cce8fc;
  --portal-accent: var(--blue);
  display: flex;
  min-height: 610px;
  overflow: hidden;
  border: 3px solid var(--portal-border);
  border-radius: var(--radius-lg);
  background: var(--portal-bg);
  box-shadow: 0 10px 0 var(--portal-shadow);
  flex-direction: column;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.portal-card:nth-child(even) {
  transform: translateY(22px) rotate(0.5deg);
}

.portal-card:hover {
  box-shadow: 0 5px 0 var(--portal-shadow);
  transform: translateY(5px) rotate(-0.5deg);
}

.portal-card:nth-child(even):hover {
  transform: translateY(27px) rotate(-0.5deg);
}

.portal-copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(32px, 4.5vw, 54px);
}

.portal-label {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 6px 12px;
  border: 2px solid currentColor;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--portal-accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.portal-copy h3 {
  margin-bottom: 17px;
  font-size: clamp(34px, 4vw, 51px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.portal-copy p {
  max-width: 500px;
  margin-bottom: 28px;
  color: #53647d;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 15px;
}

.portal-art {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-top: 3px dashed var(--portal-border);
}

.portal-art::before,
.portal-art::after {
  position: absolute;
  content: "";
}

.portal-learn {
  --portal-bg: var(--yellow-soft);
  --portal-border: #f0cd45;
  --portal-shadow: #f7df83;
  --portal-accent: #c88900;
}

.portal-learn .portal-art {
  background:
    url("/assets/images/character-surfer.png") center 50% / auto 92% no-repeat,
    radial-gradient(circle at 18% 24%, #fff 0 5px, transparent 6px),
    radial-gradient(circle at 84% 25%, var(--pink) 0 6px, transparent 7px),
    #fff9dd;
}

.portal-learn .portal-art::before,
.portal-learn .portal-art::after {
  display: none;
}

.portal-spots {
  --portal-bg: #e4f8ff;
  --portal-border: #74cbed;
  --portal-shadow: #a9e4f7;
  --portal-accent: #0879b7;
}

.portal-spots .portal-art {
  background:
    url("/assets/images/character-board.png") center 57% / 94% auto no-repeat,
    radial-gradient(circle at 25% 26%, var(--yellow) 0 17px, transparent 18px),
    #f3fcff;
}

.portal-spots .portal-art::before,
.portal-spots .portal-art::after {
  display: none;
}

.portal-care {
  --portal-bg: var(--mint-soft);
  --portal-border: #67cdb5;
  --portal-shadow: #a9ead9;
  --portal-accent: #248a73;
}

.portal-care .portal-art {
  background:
    radial-gradient(circle at 78% 24%, var(--yellow) 0 7px, transparent 8px),
    #f4fff9;
}

.portal-care .portal-art::before {
  width: 140px;
  height: 205px;
  left: 39%;
  top: 19%;
  border: 4px solid var(--ink);
  border-radius: 34px 34px 24px 24px;
  background:
    radial-gradient(circle at 41% 55%, var(--ink) 0 4px, transparent 5px),
    radial-gradient(circle at 59% 55%, var(--ink) 0 4px, transparent 5px),
    #fff5cf;
  box-shadow: 10px 10px 0 #bfebdf;
  transform: rotate(7deg);
}

.portal-care .portal-art::after {
  width: 82px;
  height: 36px;
  left: calc(39% + 29px);
  top: calc(19% - 24px);
  border: 4px solid var(--ink);
  border-radius: 14px 14px 5px 5px;
  background: var(--mint);
  transform: rotate(7deg);
}

.portal-journal {
  --portal-bg: var(--lavender-soft);
  --portal-border: #9d88ef;
  --portal-shadow: #cfc4f9;
  --portal-accent: #6550bd;
}

.portal-journal-art {
  background:
    url("/assets/images/character-cloud.png") center 52% / auto 88% no-repeat,
    radial-gradient(circle at 18% 24%, var(--pink) 0 7px, transparent 8px),
    #faf8ff;
}

.portal-journal-art::before,
.portal-journal-art::after {
  display: none;
}

/* App sections */

.product-section {
  padding: 108px 0;
  background: var(--soft);
}

.product-section + .product-section {
  border-top: 2px dashed #cbe6fa;
}

.heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 54px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  min-height: 270px;
  padding: 31px;
  border: 3px solid #a9d8fb;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 8px 0 #d5ebfb;
  transition: transform 0.2s ease;
}

.feature-card:nth-child(1) {
  background: var(--yellow-soft);
  transform: rotate(-1deg);
}

.feature-card:nth-child(2) {
  background: var(--pink-soft);
  transform: translateY(12px) rotate(1deg);
}

.feature-card:nth-child(3) {
  background: var(--mint-soft);
  transform: rotate(-0.5deg);
}

.feature-card:hover {
  transform: translateY(-5px) rotate(0deg);
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 38px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 23px;
  letter-spacing: -0.025em;
}

.feature-card p {
  color: var(--muted);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 14px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 24px;
}

.preview-card {
  overflow: hidden;
  padding: 9px;
  border: 3px solid var(--ink);
  border-radius: 34px;
  background: var(--yellow);
  box-shadow: 9px 10px 0 #b9dcf8;
}

.preview-card:nth-child(2) {
  margin-top: 42px;
  background: var(--pink);
}

.preview-card:nth-child(3) {
  background: var(--cyan);
}

.preview-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  border-radius: 23px;
  object-fit: contain;
}

.brand-message {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  background:
    radial-gradient(circle at 15px 15px, rgba(255, 255, 255, 0.16) 0 3px, transparent 3.5px) 0 0 / 38px 38px,
    var(--blue);
  color: #fff;
  text-align: center;
}

.brand-message::before,
.brand-message::after {
  position: absolute;
  color: var(--yellow);
  content: "✦";
  font-size: 68px;
  transform: rotate(12deg);
}

.brand-message::before {
  top: 22%;
  left: 8%;
}

.brand-message::after {
  right: 9%;
  bottom: 18%;
  font-size: 48px;
}

.brand-message h2 {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto 22px;
  font-size: clamp(40px, 6.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.brand-message p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 17px;
}

/* Category pages */

.breadcrumb {
  padding-top: 24px;
  color: #7b8ba2;
  font-size: 12px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 8px;
  color: var(--cyan);
  content: "/";
  font-weight: 900;
}

.breadcrumb a:hover {
  color: var(--blue);
}

.category-hero {
  padding: 58px 0 96px;
  background:
    radial-gradient(circle at 12px 12px, rgba(70, 199, 242, 0.11) 0 2px, transparent 2.5px) 0 0 / 34px 34px,
    #fff;
}

.category-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 43%);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}

.category-hero h1 {
  max-width: 760px;
  margin-bottom: 25px;
  font-size: clamp(48px, 6.6vw, 76px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.08;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.category-lead {
  max-width: 660px;
  color: var(--muted);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 18px;
}

.category-art {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 3px dashed var(--blue);
  border-radius: var(--radius-lg);
  box-shadow: 10px 10px 0 #d3eafa;
  transform: rotate(1deg);
}

.category-art::before,
.category-art::after {
  position: absolute;
  content: "";
}

.art-learn {
  background:
    url("/assets/images/character-surfer.png") center 50% / auto 90% no-repeat,
    radial-gradient(circle at 20% 20%, var(--pink) 0 7px, transparent 8px),
    var(--yellow-soft);
}

.art-learn::before,
.art-learn::after {
  display: none;
}

.art-spots {
  background:
    url("/assets/images/character-board.png") center 55% / 92% auto no-repeat,
    radial-gradient(circle at 24% 24%, var(--yellow) 0 24px, transparent 25px),
    #e7f9ff;
}

.art-spots::before,
.art-spots::after {
  display: none;
}

.art-care {
  background:
    radial-gradient(circle at 78% 22%, var(--yellow) 0 9px, transparent 10px),
    var(--mint-soft);
}

.art-care::before {
  width: 158px;
  height: 258px;
  top: 22%;
  left: 37%;
  border: 4px solid var(--ink);
  border-radius: 38px 38px 25px 25px;
  background:
    radial-gradient(circle at 41% 52%, var(--ink) 0 5px, transparent 6px),
    radial-gradient(circle at 59% 52%, var(--ink) 0 5px, transparent 6px),
    #fff4c7;
  box-shadow: 12px 13px 0 #b9e9dc;
  transform: rotate(8deg);
}

.art-care::after {
  width: 92px;
  height: 42px;
  top: calc(22% - 28px);
  left: calc(37% + 33px);
  border: 4px solid var(--ink);
  border-radius: 15px 15px 6px 6px;
  background: var(--mint);
  transform: rotate(8deg);
}

.art-journal {
  background:
    url("/assets/images/character-cloud.png") center / auto 88% no-repeat,
    radial-gradient(circle at 82% 18%, var(--pink) 0 8px, transparent 9px),
    var(--lavender-soft);
  border-color: #9f8bef;
}

.art-journal::before,
.art-journal::after {
  display: none;
}

.page-section {
  padding: 102px 0;
  border-top: 2px dashed var(--line);
}

.page-section-soft {
  background:
    radial-gradient(circle at 10px 10px, rgba(8, 120, 249, 0.06) 0 2px, transparent 2.5px) 0 0 / 34px 34px,
    var(--soft);
}

.page-section .heading-row {
  margin-bottom: 46px;
}

.topic-grid,
.article-grid,
.directory-grid,
.routine-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.topic-card,
.content-card,
.directory-card,
.routine-card {
  padding: 29px;
  border: 3px solid #b8ddf8;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 8px 0 #d7ebf9;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.topic-card:nth-child(4n + 1),
.content-card:nth-child(4n + 1),
.directory-card:nth-child(4n + 1),
.routine-card:nth-child(4n + 1) {
  background: var(--yellow-soft);
}

.topic-card:nth-child(4n + 2),
.content-card:nth-child(4n + 2),
.directory-card:nth-child(4n + 2),
.routine-card:nth-child(4n + 2) {
  background: var(--pink-soft);
}

.topic-card:nth-child(4n + 3),
.content-card:nth-child(4n + 3),
.directory-card:nth-child(4n + 3),
.routine-card:nth-child(4n + 3) {
  background: var(--mint-soft);
}

.topic-card:nth-child(4n),
.content-card:nth-child(4n),
.directory-card:nth-child(4n),
.routine-card:nth-child(4n) {
  background: var(--lavender-soft);
}

.topic-card:hover,
.content-card:hover,
.directory-card:hover,
.routine-card:hover {
  box-shadow: 0 4px 0 #d7ebf9;
  transform: translateY(4px) rotate(-0.5deg);
}

.topic-card {
  min-height: 240px;
}

.topic-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 34px;
  margin-bottom: 34px;
  padding: 0 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.topic-card h2,
.topic-card h3,
.content-card h2,
.content-card h3,
.directory-card h2,
.directory-card h3,
.routine-card h2,
.routine-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.topic-card p,
.content-card p,
.directory-card p,
.routine-card p {
  color: var(--muted);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 14px;
}

.content-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 310px;
}

.content-card-published {
  border-color: var(--blue);
  color: var(--ink);
}

.content-card-published:nth-child(2) {
  border-color: #9f8bef;
}

.content-card-thumb {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 92px;
  height: 61px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  box-shadow: 4px 4px 0 rgba(16, 33, 58, 0.14);
  object-fit: cover;
  transform: rotate(2deg);
}

.content-card-published:nth-child(2) .content-card-thumb {
  transform: rotate(-2deg);
}

.content-card-published .card-kicker {
  max-width: calc(100% - 112px);
}

.content-card-published h3 {
  text-wrap: balance;
}

.content-card-published .card-footer span:last-child {
  color: var(--blue);
  font-weight: 900;
}

.content-card-empty {
  pointer-events: none;
}

.topic-card-link {
  display: block;
}

.topic-card-link,
.content-card-link {
  color: var(--ink);
}

.topic-card-link::after {
  display: block;
  width: fit-content;
  margin-top: 28px;
  color: var(--blue-dark);
  content: "記事を読む →";
  font-size: 12px;
  font-weight: 900;
}

.content-card-link .card-footer span:last-child {
  color: var(--blue-dark);
  font-weight: 900;
}

.card-kicker,
.status-label {
  width: fit-content;
  margin-bottom: 52px;
  padding: 5px 10px;
  border: 2px solid currentColor;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.content-card .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 30px;
  color: #7989a1;
  font-size: 11px;
}

.directory-card {
  min-height: 225px;
}

.directory-card .status-label {
  margin-bottom: 39px;
  color: #087fa8;
}

.directory-card-wide {
  grid-column: span 2;
}

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

.routine-card {
  min-height: 340px;
}

.routine-number {
  display: inline-flex;
  margin-bottom: 55px;
  padding: 6px 11px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.routine-card ul {
  margin-top: 22px;
  padding-left: 18px;
  color: #58677e;
  font-size: 13px;
}

.routine-card li + li {
  margin-top: 7px;
}

.spot-schema {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.3fr);
  gap: 34px;
  padding: clamp(29px, 5vw, 54px);
  border: 3px dashed #77cbed;
  border-radius: var(--radius-lg);
  background: #e9f9ff;
  box-shadow: 10px 10px 0 #d2ebf8;
}

.spot-schema h2 {
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.schema-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  list-style: none;
}

.schema-list li {
  padding: 13px 15px;
  border: 2px solid #b9def5;
  border-radius: 15px;
  background: #fff;
  color: #41627b;
  font-size: 13px;
}

.journey-section {
  padding: 96px 0;
  border-top: 3px solid #cce8fb;
  background:
    radial-gradient(circle at 11px 11px, rgba(8, 120, 249, 0.08) 0 2px, transparent 2.5px) 0 0 / 34px 34px,
    #eaf7ff;
  color: var(--ink);
}

.journey-section .eyebrow {
  background: #fff;
  color: var(--blue);
}

.journey-section .section-copy {
  color: var(--muted);
}

.journey-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.journey-link {
  min-height: 150px;
  padding: 23px;
  border: 3px solid #b9def8;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 7px 0 #d3eafb;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.journey-link:nth-child(2) {
  background: var(--yellow-soft);
}

.journey-link:nth-child(3) {
  background: var(--mint-soft);
}

.journey-link:nth-child(4) {
  background: var(--pink-soft);
}

.journey-link:hover,
.journey-link[aria-current="page"] {
  border-color: var(--blue);
  box-shadow: 0 3px 0 #d3eafb;
  transform: translateY(4px) rotate(-1deg);
}

.journey-step {
  display: block;
  margin-bottom: 34px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.journey-link strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.journey-link span:last-child {
  color: var(--muted);
  font-size: 12px;
}

/* Footer */

.site-footer {
  padding: 58px 0 34px;
  border-top: 3px solid #c9e7fb;
  background: #f7fcff;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(130px, 0.5fr));
  gap: 36px;
  padding-bottom: 48px;
}

.footer-tagline {
  max-width: 300px;
  margin-top: 15px;
  color: var(--muted);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 13px;
}

.footer-column h2 {
  margin-bottom: 15px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  color: #50647d;
  font-size: 13px;
}

.footer-column a + a {
  margin-top: 9px;
}

.footer-column a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 2px dashed #c9e7fb;
  color: #7f90a8;
  font-size: 11px;
}

/* Learn guide article */

.guide-article,
.guide-next-section {
  --guide-rule: #b8ddf8;
  --guide-shadow: #cce7f9;
  --guide-blue-readable: #0055b8;
}

.guide-article .eyebrow,
.guide-article .guide-mini-label,
.guide-article .guide-meta span,
.guide-article .guide-meta time,
.guide-article .guide-toc > p,
.guide-article .guide-toc a span,
.guide-article .guide-caption a,
.guide-article .guide-rip-card a,
.guide-article .guide-sources a,
.guide-article .guide-route-number,
.guide-article .guide-check-card > span,
.guide-article .guide-price span,
.guide-article .guide-safety-sign,
.guide-article .guide-rip-visual b,
.guide-next-section .guide-next-number,
.guide-next-section .guide-next p {
  color: var(--guide-blue-readable);
}

.guide-hero {
  overflow: hidden;
  padding: 54px 0 105px;
  background:
    radial-gradient(circle at 12px 12px, rgba(70, 199, 242, 0.13) 0 2px, transparent 2.5px) 0 0 / 34px 34px,
    linear-gradient(180deg, #fff 0%, #f3faff 100%);
}

.guide-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(48px, 8vw, 108px);
}

.guide-hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(54px, 7.4vw, 90px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.guide-lead {
  max-width: 690px;
  color: var(--muted);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: clamp(17px, 1.8vw, 20px);
}

.guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.guide-meta span,
.guide-meta time {
  padding: 5px 11px;
  border: 2px solid #bddff8;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #58718b;
  font-size: 11px;
  font-weight: 800;
}

.guide-hero-visual {
  position: relative;
  display: flex;
  min-height: 510px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 3px dashed var(--blue);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 18%, var(--pink) 0 8px, transparent 9px),
    var(--yellow-soft);
  box-shadow: 12px 12px 0 #c7e6fa;
  transform: rotate(1deg);
}

.guide-hero-visual img {
  width: min(91%, 460px);
  height: auto;
  filter: drop-shadow(0 12px 14px rgba(16, 33, 58, 0.12));
}

.guide-hero-visual figcaption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  padding: 12px 15px;
  border: 2px solid #a9d9f8;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: #52667f;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.guide-hand-note {
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 32px;
  color: var(--blue);
  font-family: "Bradley Hand", "Comic Sans MS", cursive;
  font-size: 34px;
  font-weight: 700;
  transform: rotate(-8deg);
}

.guide-intro {
  padding: 90px 0;
  border-top: 2px dashed var(--line);
  border-bottom: 2px dashed var(--line);
  background: #fff;
}

.guide-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 28px;
}

.guide-conclusion {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 26px;
  padding: clamp(34px, 5vw, 58px);
  border: 3px solid var(--ink);
  border-radius: 38px;
  background: var(--blue);
  box-shadow: 10px 10px 0 #b9ddfb;
  color: #fff;
}

.guide-conclusion-mark {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.guide-mini-label {
  margin-bottom: 11px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-conclusion .guide-mini-label {
  color: #fff;
}

.guide-conclusion h2 {
  margin-bottom: 20px;
  font-size: clamp(31px, 4vw, 51px);
  letter-spacing: -0.045em;
  line-height: 1.18;
}

.guide-conclusion p:last-child {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 15px;
}

.guide-toc {
  padding: 30px;
  border: 3px solid var(--guide-rule);
  border-radius: 32px;
  background: var(--soft);
  box-shadow: 8px 8px 0 var(--guide-shadow);
}

.guide-toc > p {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.guide-toc ol {
  list-style: none;
}

.guide-toc li + li {
  border-top: 2px dashed var(--line);
}

.guide-toc a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 0;
  color: #405774;
  font-size: 13px;
  font-weight: 800;
}

.guide-toc a:hover {
  color: var(--blue);
}

.guide-toc a span {
  color: var(--blue);
  font-size: 10px;
}

.guide-section {
  padding: 112px 0;
  scroll-margin-top: 24px;
}

.guide-section + .guide-section {
  border-top: 2px dashed var(--line);
}

.guide-section-dots {
  background:
    radial-gradient(circle at 10px 10px, rgba(8, 120, 249, 0.06) 0 2px, transparent 2.5px) 0 0 / 34px 34px,
    var(--soft);
}

.guide-section-soft {
  background: #f5faff;
}

.guide-heading {
  margin-bottom: 54px;
}

.guide-heading h2,
.guide-sticky-heading h2 {
  max-width: 860px;
  font-size: clamp(37px, 5vw, 61px);
  letter-spacing: -0.05em;
  line-height: 1.12;
}

.guide-heading > p:last-child,
.guide-sticky-heading > p:last-of-type {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 17px;
}

.guide-route {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
  counter-reset: guide-route;
}

.guide-route li {
  position: relative;
  min-height: 365px;
  padding: 26px;
  border: 3px solid var(--guide-rule);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 8px 0 var(--guide-shadow);
}

.guide-route li:nth-child(1) {
  background: var(--yellow-soft);
}

.guide-route li:nth-child(2) {
  background: var(--pink-soft);
}

.guide-route li:nth-child(3) {
  background: var(--mint-soft);
}

.guide-route li:nth-child(4) {
  background: var(--lavender-soft);
}

.guide-route li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 49%;
  right: -28px;
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--guide-rule);
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  content: "→";
  font-weight: 900;
}

.guide-route-number {
  display: inline-flex;
  padding: 4px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.guide-route-icon {
  position: relative;
  height: 116px;
  margin: 24px 0 20px;
}

.guide-route-icon::before,
.guide-route-icon::after,
.guide-route-icon span,
.guide-route-icon span::before,
.guide-route-icon span::after {
  position: absolute;
  display: block;
  content: "";
}

.guide-icon-search::before {
  top: 15px;
  left: calc(50% - 34px);
  width: 62px;
  height: 62px;
  border: 5px solid var(--ink);
  border-radius: 50%;
  background: #fff;
}

.guide-icon-search::after {
  top: 75px;
  left: calc(50% + 20px);
  width: 44px;
  height: 6px;
  border-radius: 999px;
  background: var(--ink);
  transform: rotate(45deg);
}

.guide-icon-chat::before {
  top: 17px;
  left: calc(50% - 51px);
  width: 102px;
  height: 70px;
  border: 5px solid var(--ink);
  border-radius: 26px;
  background: #fff;
}

.guide-icon-chat::after {
  top: 78px;
  left: calc(50% + 16px);
  width: 27px;
  height: 27px;
  border-bottom: 5px solid var(--ink);
  border-left: 5px solid var(--ink);
  background: #fff;
  transform: skewY(-25deg) rotate(-25deg);
}

.guide-icon-chat span {
  top: 49px;
  left: calc(50% - 30px);
  width: 60px;
  border-top: 6px dotted var(--cyan);
}

.guide-icon-bag::before {
  top: 29px;
  left: calc(50% - 46px);
  width: 92px;
  height: 72px;
  border: 5px solid var(--ink);
  border-radius: 8px 8px 24px 24px;
  background: #fff;
}

.guide-icon-bag::after {
  top: 10px;
  left: calc(50% - 25px);
  width: 50px;
  height: 39px;
  border: 5px solid var(--ink);
  border-bottom: 0;
  border-radius: 25px 25px 0 0;
}

.guide-icon-bag span {
  top: 53px;
  left: calc(50% - 7px);
  width: 14px;
  height: 26px;
  border-radius: 999px;
  background: var(--blue);
}

.guide-icon-wave::before,
.guide-icon-wave::after,
.guide-icon-wave span {
  left: calc(50% - 55px);
  width: 110px;
  height: 32px;
  border-top: 6px solid var(--blue);
  border-radius: 50%;
}

.guide-icon-wave::before {
  top: 23px;
}

.guide-icon-wave::after {
  top: 51px;
  transform: translateX(12px);
}

.guide-icon-wave span {
  top: 79px;
  transform: translateX(-5px);
}

.guide-route h3 {
  margin-bottom: 9px;
  font-size: 20px;
  line-height: 1.35;
}

.guide-route p {
  color: var(--muted);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 13px;
}

.guide-reading-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(50px, 8vw, 104px);
}

.guide-sticky-heading {
  position: sticky;
  top: 32px;
}

.guide-character-peek {
  height: 230px;
  margin-top: 32px;
  overflow: hidden;
  border: 3px dashed #a9daf8;
  border-radius: 30px;
  background: var(--lavender-soft);
}

.guide-character-peek img {
  width: 260px;
  height: auto;
  margin: -7px auto 0;
}

.guide-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.guide-check-card {
  min-height: 190px;
  padding: 25px;
  border: 3px solid var(--guide-rule);
  border-radius: 27px;
  background: #fff;
  box-shadow: 0 6px 0 var(--guide-shadow);
}

.guide-check-card > span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
}

.guide-check-card strong {
  display: block;
  margin-bottom: 7px;
  font-size: 17px;
}

.guide-check-card p {
  color: var(--muted);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 13px;
}

.guide-cost-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.9fr);
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 38px;
  box-shadow: 10px 10px 0 var(--guide-shadow);
}

.guide-cost-main,
.guide-cost-includes {
  padding: clamp(35px, 6vw, 65px);
}

.guide-cost-main {
  background: var(--yellow-soft);
}

.guide-price {
  margin: 14px 0 16px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.guide-price span {
  margin-inline: 5px;
  color: var(--blue);
  font-size: 14px;
  letter-spacing: 0;
}

.guide-cost-main > p:last-child {
  max-width: 520px;
  color: var(--muted);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 13px;
}

.guide-cost-includes {
  border-left: 3px solid var(--ink);
  background: #fff;
}

.guide-cost-includes h3 {
  margin-bottom: 22px;
  font-size: 20px;
}

.guide-cost-includes ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  list-style: none;
}

.guide-cost-includes li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4d6079;
  font-size: 13px;
  font-weight: 800;
}

.guide-cost-includes li span {
  color: var(--blue);
  font-size: 19px;
}

.guide-caption {
  max-width: 920px;
  margin: 23px auto 0;
  color: var(--muted);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 11px;
  text-align: center;
}

.guide-caption a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.guide-pack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.guide-pack-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  padding: 37px;
  border: 3px solid var(--ink);
  border-radius: 38px;
  box-shadow: 9px 9px 0 var(--guide-shadow);
}

.guide-pack-bring {
  background: var(--pink-soft);
}

.guide-pack-rent {
  background: var(--mint-soft);
}

.guide-pack-card h3 {
  margin-bottom: 23px;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.2;
}

.guide-pack-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 430px);
  list-style: none;
}

.guide-pack-card li {
  padding: 10px 14px;
  border: 2px solid rgba(16, 33, 58, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #425773;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.guide-pack-art {
  position: absolute;
  right: 27px;
  bottom: 23px;
  width: 160px;
  height: 145px;
}

.guide-art-tote::before {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 125px;
  height: 104px;
  border: 5px solid var(--ink);
  border-radius: 10px 10px 28px 28px;
  background: #fff;
  content: "";
  transform: rotate(4deg);
}

.guide-art-tote::after {
  position: absolute;
  top: 4px;
  right: 34px;
  width: 72px;
  height: 69px;
  border: 5px solid var(--ink);
  border-bottom: 0;
  border-radius: 40px 40px 0 0;
  content: "";
  transform: rotate(4deg);
}

.guide-art-tote span::before,
.guide-art-tote span::after {
  position: absolute;
  z-index: 2;
  width: 63px;
  border-top: 6px solid var(--cyan);
  border-radius: 50%;
  content: "";
}

.guide-art-tote span::before {
  right: 39px;
  bottom: 53px;
}

.guide-art-tote span::after {
  right: 31px;
  bottom: 35px;
}

.guide-art-board::before {
  position: absolute;
  top: 13px;
  right: 22px;
  width: 90px;
  height: 125px;
  border: 5px solid var(--ink);
  border-radius: 50% 50% 28px 28px;
  background: var(--blue-soft);
  content: "";
  transform: rotate(28deg);
}

.guide-art-board::after {
  position: absolute;
  top: 31px;
  right: 80px;
  width: 4px;
  height: 99px;
  border-radius: 999px;
  background: var(--ink);
  content: "";
  transform: rotate(28deg);
}

.guide-small-note {
  margin-top: 16px;
  color: var(--muted);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 11px;
}

.guide-tip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 25px;
  margin-top: 32px;
  padding: 26px 31px;
  border: 3px dashed #81ccec;
  border-radius: 27px;
  background: #eaf9ff;
}

.guide-tip strong {
  color: var(--blue);
  font-size: 14px;
}

.guide-tip p {
  color: #4a607a;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 13px;
}

.guide-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 13px;
  list-style: none;
}

.guide-timeline::before {
  position: absolute;
  top: 29px;
  right: 9%;
  left: 9%;
  border-top: 4px dotted #8ecff3;
  content: "";
}

.guide-timeline li {
  position: relative;
  z-index: 1;
  text-align: center;
}

.guide-timeline li > span {
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  box-shadow: 4px 4px 0 var(--guide-shadow);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.guide-timeline li > div {
  min-height: 185px;
  margin-top: 20px;
  padding: 24px 18px;
  border: 3px solid var(--guide-rule);
  border-radius: 25px;
  background: #fff;
}

.guide-timeline strong {
  display: block;
  margin-bottom: 9px;
  font-size: 16px;
}

.guide-timeline p {
  color: var(--muted);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 12px;
}

.guide-goal-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  align-items: center;
  gap: 44px;
  margin-top: 45px;
  padding: clamp(33px, 5vw, 55px);
  border: 3px solid var(--ink);
  border-radius: 37px;
  background: var(--yellow-soft);
  box-shadow: 9px 9px 0 var(--guide-shadow);
}

.guide-goal-wave {
  position: relative;
  height: 150px;
}

.guide-goal-wave::before,
.guide-goal-wave::after,
.guide-goal-wave span {
  position: absolute;
  left: 7%;
  width: 86%;
  height: 43px;
  border-top: 7px solid var(--blue);
  border-radius: 50%;
  content: "";
}

.guide-goal-wave::before {
  top: 24px;
}

.guide-goal-wave::after {
  top: 63px;
  transform: translateX(15px);
}

.guide-goal-wave span {
  top: 102px;
  transform: translateX(-7px);
}

.guide-goal-card h3 {
  margin-bottom: 10px;
  font-size: clamp(29px, 4vw, 46px);
  line-height: 1.2;
}

.guide-goal-card > div:last-child > p:last-child {
  color: var(--muted);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 14px;
}

.guide-safety-section {
  border-top: 0 !important;
  background:
    radial-gradient(circle at 12px 12px, rgba(255, 255, 255, 0.08) 0 2px, transparent 2.5px) 0 0 / 34px 34px,
    var(--ink);
  color: #fff;
}

.guide-heading-light > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.guide-heading-light .eyebrow {
  background: #fff;
}

.guide-safety-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.guide-go-card,
.guide-stop-card {
  padding: clamp(32px, 5vw, 50px);
  border: 3px solid #fff;
  border-radius: 36px;
  color: var(--ink);
  box-shadow: 9px 9px 0 rgba(255, 255, 255, 0.18);
}

.guide-go-card {
  background: var(--mint-soft);
}

.guide-stop-card {
  background: var(--pink-soft);
}

.guide-safety-sign {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 8px 15px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.guide-stop-card .guide-safety-sign {
  color: #c8507f;
}

.guide-go-card h3,
.guide-stop-card h3 {
  margin-bottom: 22px;
  font-size: clamp(25px, 3vw, 36px);
}

.guide-go-card ul,
.guide-stop-card ul {
  padding-left: 20px;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 14px;
}

.guide-go-card li + li,
.guide-stop-card li + li {
  margin-top: 9px;
}

.guide-rip-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 48px;
  margin-top: 50px;
  padding: clamp(30px, 5vw, 52px);
  border: 3px solid #87d2f2;
  border-radius: 37px;
  background: #f4fbff;
  color: var(--ink);
}

.guide-rip-visual {
  position: relative;
  height: 270px;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 27px;
  background:
    linear-gradient(180deg, #dff4ff 0 20%, #70d1ef 20% 78%, #ffe2a1 78% 100%);
}

.guide-rip-shore {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 11px;
  left: 0;
  color: #8c713c;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.guide-rip-visual i {
  position: absolute;
  z-index: 2;
  bottom: 45px;
  height: 155px;
  border: 7px solid #fff;
  border-top: 0;
  border-bottom: 0;
  border-radius: 45%;
}

.guide-rip-left {
  left: 14%;
  width: 27%;
}

.guide-rip-channel {
  left: 43%;
  width: 14%;
  border-color: var(--blue) !important;
  background: rgba(8, 120, 249, 0.2);
}

.guide-rip-channel::before {
  position: absolute;
  top: 4px;
  left: 50%;
  color: var(--blue-dark);
  content: "↑";
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  transform: translateX(-50%);
}

.guide-rip-right {
  right: 14%;
  width: 27%;
}

.guide-rip-visual b {
  position: absolute;
  z-index: 4;
  top: 23px;
  left: 50%;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: 11px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.guide-rip-card h3 {
  margin-bottom: 13px;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.25;
}

.guide-rip-card > div:last-child > p:not(.guide-mini-label) {
  color: var(--muted);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 14px;
}

.guide-rip-card .guide-rip-action {
  margin-top: 15px;
  padding: 14px 16px;
  border: 2px dashed #86cbed;
  border-radius: 17px;
  background: var(--blue-soft);
  color: #405976;
  font-size: 13px;
}

.guide-rip-action strong {
  color: var(--ink);
}

.guide-rip-card a {
  display: inline-block;
  margin-top: 17px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.guide-emergency {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 30px;
  padding: 22px 27px;
  border: 2px dashed rgba(255, 255, 255, 0.45);
  border-radius: 24px;
}

.guide-emergency strong {
  flex: 0 0 auto;
  color: var(--yellow);
  font-size: 18px;
}

.guide-emergency strong a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.guide-emergency p {
  color: rgba(255, 255, 255, 0.74);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 12px;
}

.guide-faq-wrap {
  display: grid;
  grid-template-columns: minmax(290px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(45px, 8vw, 100px);
}

.guide-faq-list {
  border-top: 3px solid var(--ink);
}

.guide-faq-list details {
  border-bottom: 3px solid var(--ink);
}

.guide-faq-list summary {
  position: relative;
  padding: 26px 54px 26px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
  list-style: none;
}

.guide-faq-list summary::-webkit-details-marker {
  display: none;
}

.guide-faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 0;
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  content: "+";
  font-size: 22px;
}

.guide-faq-list details[open] summary::after {
  content: "−";
}

.guide-faq-list details p {
  padding: 0 54px 27px 0;
  color: var(--muted);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 14px;
}

.guide-sources {
  background: var(--soft);
}

.guide-sources h2 {
  margin-bottom: 23px;
  font-size: clamp(29px, 4vw, 42px);
}

.guide-sources ul {
  display: grid;
  gap: 8px;
  list-style: none;
}

.guide-sources a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.guide-source-disclaimer {
  margin-top: 27px;
  padding-top: 22px;
  border-top: 2px dashed var(--line);
  color: var(--muted);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 12px;
}

.guide-next-section {
  padding: 88px 0;
  border-top: 2px dashed var(--line);
  background: #fff;
}

.guide-next {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 27px;
  padding: clamp(31px, 5vw, 52px);
  border: 3px solid var(--ink);
  border-radius: 37px;
  background: var(--pink-soft);
  box-shadow: 9px 9px 0 var(--guide-shadow);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.guide-next:hover {
  box-shadow: 5px 5px 0 var(--guide-shadow);
  transform: translate(4px, 4px);
}

.guide-next-number {
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.guide-next p {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.guide-next h2 {
  font-size: clamp(29px, 4vw, 48px);
  line-height: 1.2;
}

.guide-next div > span {
  color: var(--muted);
  font-size: 12px;
}

.guide-next-arrow {
  color: var(--blue);
  font-size: 42px;
  font-weight: 900;
}

/* Getting started story */

.guide-story {
  --story-body: #415873;
  --story-rule: #addbf8;
  --story-shadow: #c7e6fa;
}

.guide-story .guide-hero {
  padding-bottom: 92px;
}

.guide-hero-grid-reading {
  position: relative;
  display: block;
}

.guide-hero-grid-reading .guide-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.guide-character-accent {
  position: absolute;
  z-index: 0;
  right: 4px;
  bottom: -68px;
  pointer-events: none;
  filter: drop-shadow(0 9px 0 rgba(185, 221, 251, 0.78));
}

.guide-character-accent img {
  width: 100%;
  height: auto;
}

.guide-character-accent--surfer {
  right: 54px;
  width: 150px;
}

.guide-character-accent--cloud {
  right: 34px;
  width: 164px;
}

.guide-character-accent--board {
  right: 8px;
  bottom: -37px;
  width: 245px;
}

.guide-character-accent--mascot {
  right: -18px;
  bottom: -53px;
  width: 232px;
}

.guide-lead-main {
  max-width: 650px;
  color: var(--ink);
  font-family: var(--rounded-font);
  font-size: clamp(23px, 2.8vw, 34px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.45;
}

.guide-lead-sub {
  max-width: 660px;
  margin-top: 20px;
  color: var(--story-body);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 16px;
  line-height: 1.95;
}

.guide-story-intro {
  padding: 86px 0 95px;
  border-block: 2px dashed var(--line);
  background: #fff;
}

.guide-story-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(290px, 0.95fr);
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}

.guide-story-intro-reading {
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  max-width: 980px;
}

.guide-story-intro blockquote {
  position: relative;
  padding: clamp(30px, 5vw, 50px);
  border: 3px solid var(--ink);
  border-radius: 36px;
  background: var(--yellow-soft);
  box-shadow: 9px 9px 0 var(--story-shadow);
  font-size: clamp(25px, 3.5vw, 42px);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.55;
}

.guide-story-intro blockquote::after {
  position: absolute;
  right: 50px;
  bottom: -19px;
  width: 32px;
  height: 32px;
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--yellow-soft);
  content: "";
  transform: rotate(45deg);
}

.guide-prose {
  color: var(--story-body);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 17px;
  line-height: 2;
}

.guide-prose p + p {
  margin-top: 1.3em;
}

.guide-prose strong {
  color: var(--ink);
  font-weight: 800;
}

.guide-prose-large {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
}

.guide-prose-center {
  max-width: 760px;
  margin: 55px auto 0;
  text-align: center;
}

.guide-prose-center strong {
  font-family: var(--rounded-font);
  font-size: clamp(30px, 4vw, 48px);
}

.guide-prose-narrow {
  max-width: 790px;
  margin-inline: auto;
}

.guide-reading-quote {
  margin: 36px 0;
  padding: 25px 0 25px 26px;
  border-left: 5px solid var(--cyan);
  color: var(--ink);
  font-family: var(--rounded-font);
  font-size: clamp(21px, 2.8vw, 30px);
  font-weight: 850;
  letter-spacing: -0.03em;
  line-height: 1.65;
}

.guide-reading-quote-wide {
  max-width: 840px;
  margin: 55px auto 0;
}

.guide-reading-list {
  display: grid;
  gap: 0;
  margin: 30px 0 35px;
  padding: 9px 0;
  list-style: none;
  border-block: 2px solid var(--line);
}

.guide-reading-list li {
  position: relative;
  padding: 13px 10px 13px 32px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.7;
}

.guide-reading-list li + li {
  border-top: 1px dashed var(--line);
}

.guide-reading-list li::before {
  position: absolute;
  top: 14px;
  left: 7px;
  color: var(--guide-blue-readable);
  content: "●";
  font-size: 10px;
}

.guide-reading-list-plain {
  max-width: 650px;
}

.guide-toc-story {
  margin-top: 70px;
  padding: 34px;
}

.guide-toc-story ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 28px;
}

.guide-toc-story li,
.guide-toc-story li + li {
  border-top: 2px dashed var(--line);
}

.guide-story-section {
  padding: 118px 0;
  scroll-margin-top: 24px;
}

.guide-story-section + .guide-story-section {
  border-top: 2px dashed var(--line);
}

.guide-story-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: clamp(56px, 9vw, 120px);
}

.guide-story-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(36px, 6vw, 75px);
}

.guide-step-heading {
  position: sticky;
  top: 30px;
}

.guide-step-heading-wide {
  position: relative;
  top: auto;
  max-width: 920px;
  margin-bottom: 56px;
}

.guide-step-heading > span {
  display: inline-flex;
  width: 61px;
  height: 61px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  box-shadow: 4px 4px 0 var(--story-shadow);
  color: var(--guide-blue-readable);
  font-size: 13px;
  font-weight: 900;
}

.guide-step-heading h2 {
  max-width: 920px;
  font-size: clamp(39px, 5.4vw, 66px);
  letter-spacing: -0.055em;
  line-height: 1.13;
}

.guide-step-heading > p:last-child:not(.eyebrow) {
  max-width: 720px;
  margin-top: 19px;
  color: var(--story-body);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 17px;
}

.guide-rental-visual {
  padding: 35px;
  border: 3px solid var(--ink);
  border-radius: 36px;
  background: var(--mint-soft);
  box-shadow: 9px 9px 0 var(--story-shadow);
}

.guide-rental-copy {
  margin-bottom: 22px;
  color: var(--story-body);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 13px;
}

.guide-rental-visual ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.guide-rental-visual li {
  min-height: 180px;
  padding: 19px 12px;
  border: 2px solid rgba(16, 33, 58, 0.17);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.76);
  text-align: center;
}

.guide-rental-visual li > span {
  position: relative;
  display: block;
  width: 76px;
  height: 96px;
  margin: 0 auto 12px;
}

.guide-rental-visual li strong {
  font-size: 12px;
}

.guide-gear-board::before {
  position: absolute;
  top: 7px;
  left: 24px;
  width: 29px;
  height: 84px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--blue-soft);
  content: "";
  transform: rotate(14deg);
}

.guide-gear-board::after {
  position: absolute;
  top: 17px;
  left: 41px;
  width: 3px;
  height: 67px;
  background: var(--ink);
  content: "";
  transform: rotate(14deg);
}

.guide-gear-suit::before {
  position: absolute;
  top: 18px;
  left: 22px;
  width: 34px;
  height: 61px;
  border: 4px solid var(--ink);
  border-radius: 12px 12px 17px 17px;
  background: var(--blue);
  box-shadow: -19px 4px 0 -13px var(--ink), 19px 4px 0 -13px var(--ink);
  content: "";
}

.guide-gear-suit::after {
  position: absolute;
  bottom: 3px;
  left: 27px;
  width: 11px;
  height: 34px;
  border: 4px solid var(--ink);
  border-top: 0;
  box-shadow: 17px 0 0 -4px #fff, 17px 0 0 0 var(--ink);
  content: "";
}

.guide-gear-leash::before {
  position: absolute;
  top: 13px;
  left: 10px;
  width: 55px;
  height: 55px;
  border: 5px solid var(--blue);
  border-radius: 50%;
  content: "";
}

.guide-gear-leash::after {
  position: absolute;
  right: 1px;
  bottom: 5px;
  width: 28px;
  height: 11px;
  border: 4px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  content: "";
  transform: rotate(30deg);
}

.guide-inline-link {
  display: inline-flex;
  margin-top: 30px;
  padding: 14px 19px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--blue-dark);
  color: #fff;
  font-family: var(--rounded-font);
  font-size: 13px;
  font-weight: 850;
  transition: transform 0.2s ease;
}

.guide-inline-link:hover {
  transform: translateY(-3px) rotate(-1deg);
}

.guide-caption-left {
  margin-top: 15px !important;
  color: var(--muted);
  font-size: 12px;
}

.guide-school-list {
  max-width: 920px;
  margin: 0 auto;
  border-top: 3px solid var(--ink);
  list-style: none;
}

.guide-school-list li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 24px;
  padding: 30px 4px;
  border-bottom: 2px solid var(--line);
}

.guide-school-list li > span {
  display: inline-flex;
  width: 46px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--guide-blue-readable);
  font-size: 11px;
  font-weight: 900;
}

.guide-school-list strong {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 20px;
}

.guide-school-list p {
  max-width: 720px;
  color: var(--story-body);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 14px;
  line-height: 1.85;
}

.guide-bring-card {
  position: relative;
  min-height: 430px;
  margin: 32px 0;
  overflow: hidden;
  padding: 38px;
  border: 3px solid var(--ink);
  border-radius: 36px;
  background: var(--pink-soft);
  box-shadow: 9px 9px 0 var(--story-shadow);
}

.guide-bring-card-reading {
  min-height: 0;
  padding: 31px;
}

.guide-bring-card-reading ul {
  width: 100%;
}

.guide-bring-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  width: min(100%, 430px);
  list-style: none;
}

.guide-bring-card li {
  padding: 11px 15px;
  border: 2px solid rgba(16, 33, 58, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.guide-locker-note {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 17px;
  margin-top: 30px;
  padding: 20px 23px;
  border: 2px dashed #85cceb;
  border-radius: 22px;
  background: var(--blue-soft);
}

.guide-locker-note span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font-weight: 900;
}

.guide-locker-note p {
  color: var(--story-body);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 13px;
  line-height: 1.75;
}

.guide-timeline-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.guide-timeline-four li > div {
  min-height: 245px;
}

.guide-story-finale {
  padding: 112px 0;
  border-top: 2px dashed var(--line);
  background:
    radial-gradient(circle at 12px 12px, rgba(8, 120, 249, 0.06) 0 2px, transparent 2.5px) 0 0 / 34px 34px,
    var(--soft);
}

.guide-finale-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
  padding: clamp(40px, 7vw, 78px);
  border: 3px solid var(--ink);
  border-radius: 44px;
  background: var(--yellow-soft);
  box-shadow: 12px 12px 0 var(--story-shadow);
}

.guide-finale-card-reading {
  display: block;
  max-width: 940px;
}

.guide-finale-card-reading .guide-finale-copy {
  max-width: 750px;
}

.guide-finale-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(51px, 7vw, 84px);
  letter-spacing: -0.06em;
  line-height: 1.04;
}

.guide-finale-copy > p:not(.eyebrow) {
  color: var(--story-body);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 16px;
  line-height: 1.95;
}

.guide-finale-copy > p + p {
  margin-top: 16px;
}

.guide-finale-copy blockquote {
  margin: 32px 0 17px;
  color: var(--ink);
  font-family: var(--rounded-font);
  font-size: clamp(29px, 4vw, 48px);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.45;
}

.guide-soft-safety {
  padding: 40px 0;
  border-top: 2px dashed var(--line);
  background: #fff;
}

.guide-soft-safety .container {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px 25px;
}

.guide-soft-safety strong {
  color: var(--ink);
  font-size: 15px;
}

.guide-soft-safety p {
  color: var(--muted);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 12px;
  line-height: 1.8;
}

.guide-soft-safety p a,
.guide-soft-safety details a {
  color: var(--guide-blue-readable);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.guide-soft-safety details {
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
}

.guide-soft-safety summary {
  width: fit-content;
  cursor: pointer;
  color: var(--guide-blue-readable);
  font-weight: 800;
}

.guide-soft-safety ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 17px;
  margin-top: 13px;
  list-style: none;
}

/* Rules and manners story */

.guide-rules-story .guide-hero-copy {
  max-width: 940px;
}

.guide-rules-story .guide-hero h1 {
  max-width: 900px;
  font-size: clamp(52px, 6.5vw, 82px);
}

.guide-mobile-break {
  display: none;
}

.guide-rules-intro {
  padding: 86px 0 96px;
  border-block: 2px dashed var(--line);
  background: #fff;
}

.guide-rules-intro .guide-toc {
  margin-top: 68px;
}

.guide-rules-story .guide-toc-story ol {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-rules-story .guide-story-section {
  padding-block: 92px;
}

.guide-rules-story .guide-story-grid {
  grid-template-columns: minmax(250px, 0.64fr) minmax(0, 1.36fr);
  gap: clamp(48px, 8vw, 104px);
}

.guide-rules-story .guide-step-heading h2 {
  font-size: clamp(35px, 4.1vw, 52px);
  line-height: 1.18;
}

.guide-rules-story .guide-prose {
  max-width: 760px;
}

.guide-rules-conclusion {
  padding: 112px 0;
  border-top: 2px dashed var(--line);
  background:
    radial-gradient(circle at 12px 12px, rgba(8, 120, 249, 0.055) 0 2px, transparent 2.5px) 0 0 / 34px 34px,
    var(--soft);
}

.guide-rules-conclusion .guide-step-heading-wide {
  max-width: 880px;
  margin-inline: auto;
}

.guide-rule-summary-wrap {
  max-width: 860px;
  margin: 78px auto;
  padding-top: 46px;
  border-top: 3px solid var(--ink);
}

.guide-rule-summary-wrap h3 {
  margin-bottom: 9px;
  font-size: clamp(30px, 4vw, 45px);
  letter-spacing: -0.045em;
  line-height: 1.2;
}

.guide-rule-summary-wrap > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--muted);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 14px;
}

.guide-rule-summary {
  border-top: 2px solid var(--line);
  list-style: none;
}

.guide-rule-summary li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 22px 4px;
  border-bottom: 2px solid var(--line);
}

.guide-rule-summary span {
  color: var(--guide-blue-readable);
  font-size: 12px;
  font-weight: 900;
}

.guide-rule-summary strong {
  color: var(--ink);
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.6;
}

.guide-rules-closing {
  padding-top: 12px;
}

/* Equipment and packing story */

.guide-equipment-story .guide-hero-copy {
  max-width: 980px;
}

.guide-equipment-story .guide-hero h1 {
  max-width: 980px;
  font-size: clamp(52px, 6.5vw, 82px);
}

.guide-equipment-story .guide-hero h1 > span {
  display: block;
  white-space: nowrap;
}

.guide-equipment-intro {
  padding: 86px 0 96px;
  border-block: 2px dashed var(--line);
  background: #fff;
}

.guide-equipment-intro .guide-toc {
  margin-top: 68px;
}

.guide-equipment-story .guide-toc-story ol {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-equipment-story .guide-story-section {
  padding-block: 92px;
}

.guide-equipment-story .guide-story-grid {
  grid-template-columns: minmax(250px, 0.64fr) minmax(0, 1.36fr);
  gap: clamp(48px, 8vw, 104px);
}

.guide-equipment-story .guide-step-heading h2 {
  font-size: clamp(35px, 4.1vw, 52px);
  line-height: 1.18;
}

.guide-equipment-story .guide-prose {
  max-width: 760px;
}

.guide-equipment-story .guide-prose h3 {
  margin: 38px 0 9px;
  color: var(--ink);
  font-size: clamp(21px, 2.5vw, 27px);
  letter-spacing: -0.035em;
  line-height: 1.4;
}

.guide-season-list {
  margin: 42px 0 8px;
}

.guide-season-list p b {
  color: var(--ink);
}

.guide-equipment-conclusion {
  padding: 112px 0;
  border-top: 2px dashed var(--line);
  background:
    radial-gradient(circle at 12px 12px, rgba(8, 120, 249, 0.055) 0 2px, transparent 2.5px) 0 0 / 34px 34px,
    var(--soft);
}

.guide-equipment-conclusion .guide-step-heading-wide {
  max-width: 880px;
  margin-inline: auto;
}

.guide-minimum-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 42px 0;
  border-top: 2px solid var(--line);
  list-style: none;
}

.guide-minimum-list li {
  position: relative;
  padding: 18px 10px 18px 34px;
  border-bottom: 2px solid var(--line);
  color: var(--ink);
  font-family: var(--rounded-font);
  font-size: 16px;
  font-weight: 800;
}

.guide-minimum-list li::before {
  position: absolute;
  top: 17px;
  left: 8px;
  color: var(--guide-blue-readable);
  content: "✓";
  font-weight: 900;
}

/* Surfing terms and basic moves */

.guide-terms-story .guide-hero-copy {
  max-width: 1100px;
}

.guide-terms-story .guide-hero h1 {
  max-width: 1100px;
  font-size: clamp(49px, 6.2vw, 78px);
  overflow-wrap: anywhere;
}

.guide-terms-story .guide-hero h1 > span {
  display: block;
  white-space: nowrap;
}

.guide-terms-intro {
  padding: 86px 0 96px;
  border-block: 2px dashed var(--line);
  background: #fff;
}

.guide-terms-intro .guide-toc {
  margin-top: 68px;
}

.guide-terms-story .guide-toc-story ol {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-term-talk {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 38px 0;
  padding: 30px;
  border: 2px dashed #8bcdf0;
  border-radius: 28px;
  background: var(--blue-soft);
}

.guide-term-talk p,
.guide-term-talk p + p {
  margin: 0;
  padding: 12px 16px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-family: var(--rounded-font);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.guide-flashcards {
  padding: 112px 0 118px;
  scroll-margin-top: 24px;
  border-bottom: 2px dashed var(--line);
  background:
    radial-gradient(circle at 12px 12px, rgba(8, 120, 249, 0.065) 0 2px, transparent 2.5px) 0 0 / 34px 34px,
    var(--soft);
}

.guide-flash-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 50px;
}

.guide-flash-head h2 {
  max-width: 720px;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.guide-flash-head > div:first-child > p:last-child {
  margin-top: 20px;
  color: var(--muted);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-size: 14px;
  line-height: 1.75;
}

.guide-flash-tools {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.guide-flash-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.guide-flash-actions[hidden],
.guide-flash-status[hidden] {
  display: none;
}

.guide-flash-actions button {
  min-height: 44px;
  padding: 9px 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--rounded-font);
  font-size: 12px;
  font-weight: 850;
}

.guide-flash-actions button:hover {
  background: var(--blue-soft);
}

.guide-flash-actions button:active {
  transform: translateY(2px);
}

.guide-flash-status {
  color: var(--guide-blue-readable);
  font-size: 12px;
  font-weight: 850;
}

.guide-flash-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  list-style: none;
}

.guide-flash-grid > li {
  display: flex;
  min-width: 0;
}

.guide-flash-card {
  width: 100%;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 29px;
  background: var(--yellow-soft);
  box-shadow: 7px 7px 0 var(--story-shadow);
}

.guide-flash-grid > li:nth-child(4n + 2) .guide-flash-card {
  background: var(--pink-soft);
}

.guide-flash-grid > li:nth-child(4n + 3) .guide-flash-card {
  background: var(--mint-soft);
}

.guide-flash-grid > li:nth-child(4n + 4) .guide-flash-card {
  background: var(--lavender-soft);
}

.guide-flash-card summary {
  position: relative;
  display: flex;
  min-height: 236px;
  flex-direction: column;
  padding: 25px;
  cursor: pointer;
  list-style: none;
}

.guide-flash-card summary::-webkit-details-marker {
  display: none;
}

.guide-flash-card summary:focus-visible {
  border-radius: 25px;
  outline: 4px solid var(--cyan);
  outline-offset: -7px;
}

.guide-flash-card summary::after {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  content: "+";
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.guide-flash-card[open] summary {
  min-height: 160px;
}

.guide-flash-card[open] summary::after {
  content: "↩";
  font-size: 16px;
}

.guide-flash-number {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  color: var(--guide-blue-readable);
  font-size: 11px;
  font-weight: 900;
}

.guide-flash-word {
  display: grid;
  gap: 6px;
  margin: auto 0;
}

.guide-flash-word small {
  color: var(--guide-blue-readable);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.guide-flash-word strong {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-family: var(--rounded-font);
  font-size: clamp(24px, 2.8vw, 34px);
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.guide-flash-prompt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
}

.guide-flash-prompt::after {
  content: "→";
}

.guide-flash-prompt span:last-child,
.guide-flash-card[open] .guide-flash-prompt span:first-child {
  display: none;
}

.guide-flash-card[open] .guide-flash-prompt span:last-child {
  display: inline;
}

.guide-flash-card[open] .guide-flash-prompt::after {
  content: "";
}

.guide-flash-answer {
  padding: 23px 25px 27px;
  border-top: 2px dashed rgba(16, 33, 58, 0.23);
  background: rgba(255, 255, 255, 0.58);
}

.guide-flash-answer > strong {
  display: block;
  color: var(--ink);
  font-family: var(--rounded-font);
  font-size: 17px;
  letter-spacing: -0.02em;
  line-height: 1.65;
}

.guide-flash-answer p {
  margin-top: 18px;
  color: var(--story-body);
  font-size: 13px;
  line-height: 1.7;
}

.guide-flash-answer p span {
  display: block;
  margin-bottom: 4px;
  color: var(--guide-blue-readable);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.guide-terms-story .guide-story-section {
  padding-block: 98px;
}

.guide-terms-story .guide-story-grid {
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(48px, 8vw, 104px);
}

.guide-terms-story .guide-step-heading h2 {
  font-size: clamp(35px, 4.1vw, 52px);
  line-height: 1.18;
}

.guide-terms-story .guide-prose {
  max-width: 780px;
}

.guide-term-entry {
  scroll-margin-top: 24px;
}

.guide-term-entry + .guide-term-entry {
  margin-top: 54px;
  padding-top: 47px;
  border-top: 2px dashed var(--line);
}

.guide-term-index {
  margin-bottom: 7px;
  color: var(--guide-blue-readable);
  font-family: var(--rounded-font);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.guide-terms-prose .guide-term-entry h3 {
  margin-bottom: 17px;
  color: var(--ink);
  font-family: var(--rounded-font);
  font-size: clamp(24px, 3vw, 31px);
  letter-spacing: -0.045em;
  line-height: 1.38;
}

.guide-text-link {
  color: var(--guide-blue-readable);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.guide-term-safety {
  margin-top: 32px;
  padding: 25px 27px;
  border: 2px dashed #84ccee;
  border-radius: 22px;
  background: var(--blue-soft);
}

.guide-term-safety strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--rounded-font);
  font-size: 16px;
}

.guide-term-safety p,
.guide-term-safety p + p {
  margin: 0;
  color: var(--story-body);
  font-size: 14px;
  line-height: 1.85;
}

.guide-terms-conclusion {
  padding: 112px 0;
  border-top: 2px dashed var(--line);
  background:
    radial-gradient(circle at 12px 12px, rgba(8, 120, 249, 0.055) 0 2px, transparent 2.5px) 0 0 / 34px 34px,
    var(--soft);
}

.guide-terms-conclusion .guide-step-heading-wide {
  max-width: 940px;
  margin-inline: auto;
}

@media (max-width: 960px) {
  .app-hero-grid,
  .category-hero-grid {
    grid-template-columns: 1fr;
  }

  .app-hero-card,
  .category-art {
    min-height: 480px;
  }

  .app-hero-card .hero-mascot {
    width: min(82%, 650px);
  }

  .portal-list {
    grid-template-columns: 1fr;
  }

  .portal-card,
  .portal-card:nth-child(even) {
    min-height: 510px;
    transform: none;
  }

  .portal-card:nth-child(even):hover {
    transform: translateY(5px) rotate(-0.5deg);
  }

  .topic-grid,
  .article-grid,
  .directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .routine-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card:nth-child(n),
  .routine-card {
    min-height: auto;
    transform: none;
  }

  .feature-number,
  .routine-number {
    margin-bottom: 30px;
  }

  .journey-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-hero-grid,
  .guide-intro-grid,
  .guide-reading-grid,
  .guide-faq-wrap {
    grid-template-columns: 1fr;
  }

  .guide-hero-visual {
    min-height: 520px;
  }

  .guide-route {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-route li:not(:last-child)::after {
    display: none;
  }

  .guide-sticky-heading {
    position: static;
  }

  .guide-character-peek {
    display: none;
  }

  .guide-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .guide-timeline::before {
    display: none;
  }

  .guide-timeline li:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 11px);
  }

  .guide-story-intro-grid,
  .guide-story-grid,
  .guide-finale-card {
    grid-template-columns: 1fr;
  }

  .guide-story-intro-reading {
    max-width: none;
  }

  .guide-story .guide-hero {
    padding-bottom: 142px;
  }

  .guide-character-accent {
    right: 18px;
    bottom: -112px;
    opacity: 0.9;
  }

  .guide-character-accent--surfer {
    width: 126px;
  }

  .guide-character-accent--cloud {
    width: 140px;
  }

  .guide-character-accent--board {
    width: 205px;
  }

  .guide-character-accent--mascot {
    width: 195px;
  }

  .guide-step-heading {
    position: static;
  }

  .guide-toc-story ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-timeline-four li:last-child {
    grid-column: auto;
    width: auto;
  }

  .guide-rules-story .guide-story-grid,
  .guide-equipment-story .guide-story-grid,
  .guide-terms-story .guide-story-grid {
    grid-template-columns: 1fr;
  }

  .guide-flash-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 36px, var(--container));
  }

  .header-inner {
    flex-wrap: wrap;
    min-height: auto;
    padding-top: 18px;
    gap: 12px;
  }

  .site-brand {
    width: 100%;
  }

  .site-nav {
    flex: 0 0 calc(100% + 36px);
    width: calc(100% + 36px);
    margin-left: -18px;
    padding: 0 18px 16px;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .guide-terms-story .guide-hero h1 {
    font-size: clamp(36px, 8.9vw, 56px);
  }

  .guide-terms-story .guide-hero h1 > span {
    white-space: normal;
  }

  .guide-character-accent {
    width: auto;
    margin: 0;
    filter: drop-shadow(0 6px 0 rgba(185, 221, 251, 0.72));
  }

  .guide-character-accent--surfer {
    width: 92px;
  }

  .guide-character-accent--cloud {
    width: 108px;
  }

  .guide-character-accent--board {
    width: 160px;
  }

  .guide-character-accent--mascot {
    width: 148px;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    padding-block: 8px;
  }

  .site-nav .nav-app {
    order: -1;
    margin-left: 0;
  }

  .app-hero {
    padding: 60px 0 76px;
  }

  .app-hero::before {
    top: 28px;
    right: -20px;
  }

  .app-hero-grid,
  .category-hero-grid {
    gap: 46px;
  }

  .app-hero-card,
  .category-art {
    min-height: 410px;
    border-radius: 34px;
    box-shadow: 8px 8px 0 #c9e7fb;
  }

  .hero-note {
    top: 25px;
    left: 27px;
  }

  .hero-session-chip {
    right: 18px;
    bottom: 18px;
  }

  .media-intro {
    padding: 84px 0 42px;
  }

  .media-portals {
    padding-bottom: 88px;
  }

  .portal-card {
    min-height: 0;
  }

  .portal-copy {
    min-height: 340px;
  }

  .portal-art {
    min-height: 270px;
  }

  .product-section,
  .page-section {
    padding: 82px 0;
  }

  .heading-row {
    display: block;
    margin-bottom: 40px;
  }

  .heading-row .text-link {
    margin-top: 24px;
  }

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

  .preview-card {
    width: min(100%, 380px);
    margin-inline: auto;
  }

  .preview-card:nth-child(2) {
    margin-top: 0;
  }

  .breadcrumb {
    padding-top: 18px;
  }

  .category-hero {
    padding: 44px 0 80px;
  }

  .spot-schema {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-intro {
    grid-column: 1 / -1;
  }

  .guide-hero {
    padding: 42px 0 84px;
  }

  .guide-hero-grid {
    gap: 42px;
  }

  .guide-hero-visual {
    min-height: 430px;
    border-radius: 34px;
    box-shadow: 8px 8px 0 #c7e6fa;
  }

  .guide-intro,
  .guide-section {
    padding: 82px 0;
  }

  .guide-conclusion {
    grid-template-columns: 1fr;
  }

  .guide-cost-panel,
  .guide-goal-card,
  .guide-rip-card {
    grid-template-columns: 1fr;
  }

  .guide-cost-includes {
    border-top: 3px solid var(--ink);
    border-left: 0;
  }

  .guide-pack-card {
    min-height: 540px;
  }

  .guide-emergency {
    align-items: flex-start;
    flex-direction: column;
  }

  .guide-story-section,
  .guide-story-finale {
    padding: 86px 0;
  }

  .guide-story-two-column {
    grid-template-columns: 1fr;
  }

  .guide-rental-visual ul {
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    overflow-x: auto;
    padding-bottom: 7px;
  }

  .guide-rules-story .guide-story-section,
  .guide-rules-conclusion,
  .guide-equipment-story .guide-story-section,
  .guide-equipment-conclusion,
  .guide-terms-story .guide-story-section,
  .guide-terms-conclusion {
    padding-block: 76px;
  }

  .guide-flashcards {
    padding-block: 86px;
  }

  .guide-flash-head {
    align-items: start;
    flex-direction: column;
    margin-bottom: 38px;
  }

  .guide-flash-tools {
    justify-items: start;
  }

  .guide-flash-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-brand,
  .footer-brand {
    font-size: 23px;
  }

  .app-hero h1,
  .category-hero h1 {
    font-size: clamp(39px, 11vw, 49px);
  }

  .app-hero-card,
  .category-art {
    min-height: 350px;
  }

  .app-hero-card .hero-mascot {
    width: 108%;
  }

  .hero-note {
    font-size: 27px;
  }

  .hero-session-chip {
    min-width: 190px;
    padding: 12px 16px;
  }

  .hero-session-chip strong {
    font-size: 13px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .topic-grid,
  .article-grid,
  .directory-grid,
  .journey-links {
    grid-template-columns: 1fr;
  }

  .directory-card-wide {
    grid-column: auto;
  }

  .schema-list {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .guide-hero h1 {
    font-size: clamp(45px, 13vw, 61px);
  }

  .guide-hero-visual {
    min-height: 350px;
  }

  .guide-hero-visual img {
    width: 86%;
  }

  .guide-hand-note {
    top: 21px;
    left: 23px;
    font-size: 27px;
  }

  .guide-intro,
  .guide-section {
    padding: 70px 0;
  }

  .guide-conclusion,
  .guide-toc {
    padding: 27px;
  }

  .guide-route,
  .guide-check-grid,
  .guide-pack-grid,
  .guide-safety-grid,
  .guide-timeline {
    grid-template-columns: 1fr;
  }

  .guide-route li {
    min-height: 330px;
  }

  .guide-check-card {
    min-height: 0;
  }

  .guide-cost-main,
  .guide-cost-includes {
    padding: 29px;
  }

  .guide-price {
    font-size: clamp(40px, 12.3vw, 56px);
  }

  .guide-price span {
    display: block;
    margin: 7px 0;
  }

  .guide-cost-includes ul,
  .guide-pack-card ul {
    grid-template-columns: 1fr;
  }

  .guide-pack-card {
    min-height: 610px;
    padding: 29px;
  }

  .guide-tip {
    grid-template-columns: 1fr;
  }

  .guide-timeline li:last-child {
    grid-column: auto;
    width: auto;
  }

  .guide-goal-card {
    gap: 20px;
  }

  .guide-rip-card {
    gap: 29px;
  }

  .guide-rip-visual {
    height: 230px;
  }

  .guide-faq-list summary {
    font-size: 15px;
  }

  .guide-next {
    grid-template-columns: auto 1fr;
    gap: 17px;
  }

  .guide-next-arrow {
    display: none;
  }

  .guide-lead-main {
    font-size: 23px;
  }

  .guide-lead-sub,
  .guide-prose {
    font-size: 15px;
    line-height: 1.95;
  }

  .guide-story-intro {
    padding: 70px 0;
  }

  .guide-story-intro blockquote {
    padding: 27px;
    border-radius: 28px;
    font-size: 23px;
  }

  .guide-reading-quote {
    padding-left: 20px;
    font-size: 21px;
  }

  .guide-toc-story {
    margin-top: 57px;
    padding: 26px;
  }

  .guide-toc-story ol {
    grid-template-columns: 1fr;
  }

  .guide-story-section,
  .guide-story-finale {
    padding: 72px 0;
  }

  .guide-step-heading-wide {
    margin-bottom: 42px;
  }

  .guide-step-heading h2 {
    font-size: clamp(37px, 11vw, 49px);
  }

  .guide-rental-visual {
    padding: 26px;
  }

  .guide-rental-visual ul {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .guide-rental-visual li {
    min-height: 155px;
  }

  .guide-bring-card {
    min-height: 570px;
    padding: 28px;
  }

  .guide-bring-card-reading {
    min-height: 0;
  }

  .guide-bring-card ul {
    grid-template-columns: 1fr;
  }

  .guide-locker-note,
  .guide-soft-safety .container {
    grid-template-columns: 1fr;
  }

  .guide-soft-safety details {
    grid-column: 1;
  }

  .guide-timeline-four li:last-child {
    grid-column: auto;
    width: auto;
  }

  .guide-timeline-four li > div {
    min-height: 0;
  }

  .guide-finale-card {
    padding: 30px;
    border-radius: 34px;
  }

  .guide-finale-copy h2 {
    font-size: 52px;
  }

  .guide-finale-copy > p:not(.eyebrow) {
    font-size: 14px;
  }

  .guide-soft-safety ul {
    display: grid;
  }

  .guide-rules-story .guide-hero h1 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .guide-equipment-story .guide-hero h1 {
    font-size: clamp(29px, 8.7vw, 38px);
  }

  .guide-terms-story .guide-hero h1 {
    font-size: clamp(28px, 8.5vw, 38px);
  }

  .guide-terms-story .guide-hero h1 > span {
    white-space: normal;
  }

  .guide-mobile-break {
    display: block;
  }

  .guide-rules-intro,
  .guide-equipment-intro,
  .guide-terms-intro {
    padding: 68px 0 72px;
  }

  .guide-rules-story .guide-toc-story ol,
  .guide-equipment-story .guide-toc-story ol,
  .guide-terms-story .guide-toc-story ol {
    grid-template-columns: 1fr;
  }

  .guide-rules-story .guide-story-section,
  .guide-rules-conclusion,
  .guide-equipment-story .guide-story-section,
  .guide-equipment-conclusion,
  .guide-terms-story .guide-story-section,
  .guide-terms-conclusion {
    padding-block: 62px;
  }

  .guide-term-talk,
  .guide-flash-grid {
    grid-template-columns: 1fr;
  }

  .guide-term-talk {
    padding: 20px;
  }

  .guide-flashcards {
    padding-block: 68px;
  }

  .guide-flash-head h2 {
    font-size: clamp(39px, 12vw, 52px);
  }

  .guide-flash-card summary {
    min-height: 190px;
  }

  .guide-flash-card[open] summary {
    min-height: 142px;
  }

  .guide-flash-word strong {
    font-size: 29px;
  }

  .guide-term-entry + .guide-term-entry {
    margin-top: 43px;
    padding-top: 39px;
  }

  .guide-terms-prose .guide-term-entry h3 {
    font-size: 24px;
  }

  .guide-minimum-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .guide-rule-summary-wrap {
    margin-block: 60px;
    padding-top: 35px;
  }

  .guide-rule-summary li {
    grid-template-columns: 37px minmax(0, 1fr);
    gap: 13px;
    padding-block: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
