@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Yomogi&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");

:root {
  --cream: #f0ecdf;
  --paper: #fffcf6;
  --ink: #111;
  --mute: #5a5a5a;
  --line: #111;
  --yellow: #fbd557;
  --coral: #ff6641;
  --green: #55ba63;
  --blue: #4794fd;
  --violet: #8a88e4;
  --max: 1180px;
  --font: "Zen Kaku Gothic New", "Hiragino Sans", sans-serif;
  --display: "Dela Gothic One", sans-serif;
  --hand: "Yomogi", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
}

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

.ad-bar {
  background: #f3f3f2;
  color: #6e6e6a;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  padding: 5px 16px;
  border-bottom: 1px solid #e3e3e0;
}

.note .ad-tag { font-size: 11px; color: #8a8a86; margin: 0 0 6px; }
.note.ad-box { margin: 32px 0; }
.note.ad-box .btn { font-size: 14px; padding: 10px 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.header-inner,
.wrap {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-logo {
  height: 50px;
  width: auto;
  flex: none;
  object-fit: contain;
}
.brand span {
  font-family: var(--hand);
  font-size: 13px;
  color: var(--mute);
}
.nav { display: flex; gap: 22px; align-items: center; }
.nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.nav a:hover { background: var(--yellow); }
.nav-toggle {
  display: none;
  border: 2px solid var(--ink);
  background: var(--yellow);
  font-family: inherit;
  font-weight: 800;
  padding: 8px 14px;
  cursor: pointer;
}

.hero {
  position: relative;
  padding: 24px 0 12px;
  min-height: calc(100vh - 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-stage {
  width: min(var(--max), calc(100% - 24px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 42%) 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 14px 34px;
}
.isle { margin: 0; }
.isle img { width: min(100%, 280px); margin: 0 auto; }
/* 写真に差し替えたとき用。イラストのときは付きません */
.isle.is-photo img {
  width: min(100%, 258px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 2.5px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--paper);
}
.isle-a.is-photo img, .isle-d.is-photo img { transform: rotate(-1.2deg); }
.isle-b.is-photo img, .isle-c.is-photo img { transform: rotate(1.2deg); }
.isle-a { grid-column: 1; grid-row: 1; justify-self: start; }
.isle-b { grid-column: 1; grid-row: 2; justify-self: start; }
.isle-c { grid-column: 3; grid-row: 1; justify-self: end; }
.isle-d { grid-column: 3; grid-row: 2; justify-self: end; }
.hero-core {
  grid-column: 2;
  grid-row: 1 / 3;
  text-align: center;
  z-index: 2;
}
.hand {
  font-family: var(--hand);
  font-size: 18px;
  margin: 0 0 8px;
}
.hand::before {
  content: "✦ ✦ ✦";
  display: block;
  font-size: 12px;
  letter-spacing: 0.4em;
  margin-bottom: 6px;
}
.hero-core h1 {
  font-family: var(--display);
  font-size: clamp(44px, 9vw, 92px);
  line-height: 1.05;
  margin: 0 0 10px;
  letter-spacing: 0.06em;
  font-weight: 400;
}
.hero-logo {
  display: flex;
  justify-content: center;
  margin: 0 0 14px;
}
.hero-logo img {
  width: min(100%, 460px);
  height: auto;
  margin: 0 auto;
}
.hero-en {
  margin: 0 0 22px;
  font-size: 13px;
  letter-spacing: 0.28em;
  font-weight: 800;
}
.lead-kit {
  margin: 0 auto 22px;
  max-width: 26rem;
  color: var(--mute);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn-primary,
.btn-kit {
  background: var(--yellow);
}
.btn:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn-ghost { background: var(--paper); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.quiz .hero-actions {
  margin-top: 32px;
  padding-top: 8px;
  justify-content: flex-start;
  gap: 18px;
}

.scroll-ind {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.28em;
  font-weight: 800;
  margin: 18px 0 8px;
}
.scroll-ind::after {
  content: "";
  display: block;
  width: 1px;
  height: 36px;
  background: var(--ink);
  margin: 8px auto 0;
}

.band {
  background: var(--blue);
  color: #fff;
  position: relative;
  padding: 64px 0;
  overflow: hidden;
}
.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}
.band .wrap { position: relative; z-index: 1; }
.band h2 {
  font-family: var(--display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 400;
  margin: 0 0 18px;
  line-height: 1.3;
}
.band p { max-width: 36rem; margin: 0 0 1em; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.chip {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 800;
}

.section { padding: 56px 0 64px; }
.section h2 {
  font-family: var(--display);
  font-size: clamp(26px, 4.4vw, 40px);
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 10px;
}
.kicker-hand {
  font-family: var(--hand);
  margin: 0 0 6px;
  font-size: 16px;
}

.quiz {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  padding: 28px;
  box-shadow: 8px 8px 0 var(--ink);
  max-width: 720px;
  margin: 0 auto;
  transform: rotate(-0.4deg);
}
.quiz-progress {
  height: 10px;
  background: #e2e2e2;
  border: 2px solid var(--ink);
  margin-bottom: 16px;
}
.quiz-progress b { display: block; height: 100%; background: var(--yellow); width: 20%; }
.choices { display: grid; gap: 10px; }
.choice {
  text-align: left;
  border: 2px solid var(--ink);
  background: #fff;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 0;
}
.choice:hover, .choice.is-on { background: var(--yellow); }
.result-type {
  display: inline-block;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
  padding: 8px 14px;
  background: var(--coral);
  color: #fff;
  border: 2.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}

.spread {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.tile {
  display: block;
  text-decoration: none;
  border: 2.5px solid var(--ink);
  background: var(--paper);
  padding: 22px 20px 18px;
  min-height: 170px;
  box-shadow: 5px 5px 0 var(--ink);
}
.tile:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--ink); }
.tile small {
  font-family: var(--display);
  font-size: 22px;
  display: block;
  margin-bottom: 8px;
}
.tile h3 {
  font-size: 20px;
  margin: 0 0 8px;
  font-weight: 900;
}
.tile p { margin: 0; color: var(--mute); font-size: 14px; }
.tile-hero {
  grid-row: span 2;
  background: var(--yellow);
  min-height: 360px;
}
.tile-green { background: #d8f4dc; }
.tile-coral { background: #ffd8cf; }
.tile-blue { background: #d5e8ff; }
.tile-violet { background: #e4e3ff; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 2.5px solid var(--ink);
  margin-top: 12px;
}
.split > div { padding: 28px; }
.split > div:first-child { background: var(--paper); border-right: 2.5px solid var(--ink); }
.split > div:last-child { background: var(--coral); color: #fff; }
.split h3 { margin: 0 0 10px; font-family: var(--display); font-weight: 400; font-size: 24px; }

.picks {
  margin: 28px 0 64px;
  padding: 22px 18px 22px;
  background: #111;
  color: #fff;
  border: 2.5px solid var(--ink);
  box-shadow: 8px 8px 0 var(--coral);
}
.picks-kicker {
  font-family: var(--hand);
  font-size: 16px;
  color: var(--yellow);
  margin: 0 0 6px;
}
.picks-title {
  font-family: var(--display);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 400;
  line-height: 1.35;
  margin: 0 0 10px;
}
.picks-note {
  font-size: 13px;
  color: #ddd;
  margin: 0 0 16px;
}
.picks-grid {
  display: grid;
  gap: 16px;
}
.pick {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 14px;
  row-gap: 8px;
  text-decoration: none;
  color: var(--ink);
  background: var(--yellow);
  border: 2.5px solid #fff;
  padding: 18px 16px 16px;
}
.pick:nth-child(2) { background: #fff; }
.pick:nth-child(3) { background: #d8f4dc; }
.pick-num {
  grid-row: 1 / 4;
  align-self: start;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1;
}
.pick-name {
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
}
.pick-why {
  font-size: 15px;
  color: var(--mute);
  margin: 0;
  line-height: 1.8;
}
.pick-go {
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 6px;
}
.pick:hover { transform: translate(2px, 2px); }

.note, .warn {
  border: 2.5px solid var(--ink);
  padding: 20px 18px;
  background: var(--paper);
  line-height: 1.9;
}
.note { background: #d8f4dc; }
.warn { background: var(--yellow); }
.note strong, .warn strong {
  display: block;
  margin-bottom: 10px;
  line-height: 1.6;
}
.quiz .note { margin-top: 64px; }
.quiz .warn { margin-top: 20px; }

.breadcrumb { font-size: 13px; font-weight: 700; margin: 28px 0 8px; }
.breadcrumb a { text-decoration: none; }

.article { max-width: 740px; padding-bottom: 72px; }
.article h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.25;
  margin: 0 0 18px;
}
.article h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  margin: 1.6em 0 0.5em;
}
.article p { margin: 0 0 1.05em; }
.article ul, .article ol { padding-left: 1.2em; }
.article li { margin: 0.4em 0; }
.article .btn { margin-top: 8px; }

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  font-size: 15px;
  border: 2.5px solid var(--ink);
  margin: 0 0 1.2em;
}
th, td {
  border-bottom: 2px solid var(--ink);
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
}
th { background: var(--yellow); }

.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 40px 0 48px;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 12px 18px; margin-bottom: 16px; }
.footer-nav a { color: #fff; text-decoration: none; font-weight: 700; font-size: 14px; }
.footer-nav a:hover { color: var(--yellow); }
.site-footer p { margin: 0; color: #ccc; font-size: 13px; }
.site-footer .footer-note { margin-top: 14px; color: #999; font-size: 11px; line-height: 1.8; }

@media (max-width: 900px) {
  .hero-stage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .hero-core { grid-column: 1 / 3; grid-row: 1; }
  .isle-a { grid-column: 1; grid-row: 2; }
  .isle-c { grid-column: 2; grid-row: 2; }
  .isle-b { grid-column: 1; grid-row: 3; }
  .isle-d { grid-column: 2; grid-row: 3; }
  .spread { grid-template-columns: 1fr 1fr; }
  .tile-hero { grid-row: auto; min-height: 220px; }
  .split { grid-template-columns: 1fr; }
  .split > div:first-child { border-right: 0; border-bottom: 2.5px solid var(--ink); }
}
@media (max-width: 820px) {
  .brand-logo { height: 38px; }
  .brand span { display: none; }
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
    padding: 12px 16px 18px;
  }
  .nav-toggle { display: inline-flex; }
  .spread { grid-template-columns: 1fr; }
  .quiz { transform: none; }
}
