@charset "UTF-8";

/* =====================================================
   TABIKICHI TRAVEL JOURNAL 10.6.6
   Contemporary travel / 20s-30s lifestyle editorial
===================================================== */

:root {
  --tkg-ink: #191919;
  --tkg-text: #53514e;
  --tkg-muted: #85827d;
  --tkg-white: #fff;
  --tkg-bg: #f7f5ef;
  --tkg-paper: #fffdf8;
  --tkg-soft: #efede7;
  --tkg-coral: #ff5e50;
  --tkg-coral-dark: #e6493e;
  --tkg-butter: #f3df8c;
  --tkg-sky: #cfddff;
  --tkg-lilac: #ddd3ff;
  --tkg-mint: #cde6d5;
  --tkg-line: rgba(25, 25, 25, .14);
  --tkg-line-light: rgba(255, 255, 255, .35);
  --tkg-content: 1280px;
  --tkg-header-height: 72px;
  --tkg-admin-offset: 0px;
  --tkg-font: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

html { scroll-behavior: smooth; }

body.tkg-sky-template {
  margin: 0;
  overflow-x: clip;
  background: var(--tkg-bg);
  color: var(--tkg-ink);
  font-family: var(--tkg-font);
  -webkit-font-smoothing: antialiased;
  line-break: strict;
  text-rendering: optimizeLegibility;
}

.tkg-sky-hero__copy h1,
.tkg-sky-intro__copy h2,
.tkg-sky-section-head h2,
.tkg-sky-diagnosis h3,
.tkg-sky-diagnosis h4,
.tkg-sky-stampbook h3,
.tkg-sky-vision__copy h2,
.tkg-sky-roulette__panel h3,
.tkg-sky-area-card__body strong,
.tkg-sky-booking-card h3,
.tkg-sky-news-card h3,
.tkg-sky-author__content h2 {
  word-break: auto-phrase;
}

body.tkg-sky-template *,
body.tkg-sky-template *::before,
body.tkg-sky-template *::after { box-sizing: border-box; }

body.tkg-sky-template img { max-width: 100%; }

/* WordPress管理バーは実測高を使用し、固定ヘッダーだけをその直下へ配置する。
   WordPress側の html margin-top と二重加算しない。 */
body.tkg-sky-template .tkg-sky-header {
  top: var(--tkg-admin-offset);
}

/* 独立ページテンプレート内の支援技術向けテキストを確実に視覚非表示にする。
   親テーマのユーティリティークラスへ依存しない。 */
body.tkg-sky-template .screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
body.tkg-sky-template .screen-reader-text:focus {
  position: fixed !important;
  left: 16px !important;
  top: 16px !important;
  z-index: 100001 !important;
  width: auto !important;
  height: auto !important;
  padding: 12px 16px !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
  white-space: normal !important;
  border-radius: 10px !important;
  background: var(--tkg-ink) !important;
  color: var(--tkg-white) !important;
}

.tkg-sky-container {
  width: min(100%, var(--tkg-content));
  margin-inline: auto;
  padding-inline: 36px;
}

.tkg-sky-overview,
.tkg-sky-areas,
.tkg-sky-trip-tools,
.tkg-sky-roulette,
.tkg-sky-booking,
.tkg-sky-vision,
.tkg-sky-news { scroll-margin-top: calc(var(--tkg-header-height) + var(--tkg-admin-offset) + 18px); }

.tkg-sky-skip {
  position: fixed;
  left: 16px;
  top: -90px;
  z-index: 100000;
  padding: 11px 16px;
  border-radius: 10px;
  background: var(--tkg-ink);
  color: var(--tkg-white);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: top .2s ease;
}
.tkg-sky-skip:focus { top: 12px; }

.tkg-sky-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 99999;
  width: 100%;
  height: 3px;
  pointer-events: none;
}
.tkg-sky-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--tkg-coral);
}

body.tkg-sky-template :focus-visible {
  outline: 3px solid var(--tkg-coral);
  outline-offset: 3px;
}

/* Header */
.tkg-sky-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: clamp(56px, 6vw, 112px);
  min-height: var(--tkg-header-height);
  padding: 8px clamp(24px, 4vw, 64px);
  border-bottom: 1px solid var(--tkg-line);
  background: rgba(247, 245, 239, .9);
  backdrop-filter: blur(14px);
  transition: min-height .25s ease, background .25s ease, box-shadow .25s ease;
}
.tkg-sky-scrolled .tkg-sky-header {
  min-height: 62px;
  background: rgba(255, 253, 248, .98);
  box-shadow: 0 8px 24px rgba(25, 25, 25, .055);
}

.tkg-sky-brand {
  display: inline-flex;
  align-items: center;
  color: var(--tkg-ink);
  text-decoration: none;
}
.tkg-sky-brand__copy { display: flex; flex-direction: column; }
.tkg-sky-brand strong {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
}
.tkg-sky-brand small {
  margin-top: 6px;
  color: var(--tkg-coral);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: .18em;
}

.tkg-sky-nav,
.tkg-sky-nav__custom {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.tkg-sky-nav a,
.tkg-sky-nav__custom a {
  position: relative;
  display: inline-block;
  padding: 9px 0;
  color: var(--tkg-ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
}
.tkg-sky-nav a::after,
.tkg-sky-nav__custom a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 2px;
  background: var(--tkg-coral);
  transition: right .22s ease;
}
.tkg-sky-nav a:hover::after,
.tkg-sky-nav a.is-active::after,
.tkg-sky-nav__custom a:hover::after { right: 0; }
.tkg-sky-menu-button { display: none; }

/* Hero */
.tkg-sky-hero {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  background: var(--tkg-bg);
}
.tkg-sky-hero::before {
  content: "STAY";
  position: absolute;
  left: -2vw;
  bottom: -3vw;
  z-index: 0;
  color: rgba(25, 25, 25, .035);
  font-size: clamp(150px, 22vw, 350px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.09em;
  white-space: nowrap;
}
.tkg-sky-hero__grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: min(100%, 1600px);
  min-height: max(760px, 100svh);
  margin-inline: auto;
  padding: calc(var(--tkg-header-height) + 74px) clamp(36px, 6.5vw, 104px) 94px;
}
.tkg-sky-hero__collage {
  position: absolute;
  inset: calc(var(--tkg-header-height) + 24px) 30px 30px 48%;
  z-index: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(165px, 215px);
  gap: 14px;
  min-width: 0;
}
.tkg-sky-hero__visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--tkg-sky);
}
.tkg-sky-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .42));
  pointer-events: none;
}
.tkg-sky-hero__media {
  position: absolute;
  inset: 0;
  background:
    var(--tkg-sky-hero-image, linear-gradient(145deg, #b9c9ef, #85a1d2 55%, #566c9d));
  background-position: center;
  background-size: cover;
  filter: saturate(.98) contrast(1.02);
  transform: scale(1.01);
}
.tkg-sky-hero__visual figcaption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 9px;
  background: rgba(0, 0, 0, .34);
  color: var(--tkg-white);
  backdrop-filter: blur(8px);
}
.tkg-sky-hero__visual figcaption span,
.tkg-sky-hero__visual figcaption strong {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .08em;
}
.tkg-sky-hero__visual figcaption span { color: var(--tkg-butter); }
.tkg-sky-hero__stories {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}
.tkg-sky-hero__story {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding: 17px;
  overflow: hidden;
  border: 2px solid var(--tkg-ink);
  border-radius: 20px;
  background: var(--tkg-paper);
  color: var(--tkg-white);
  text-decoration: none;
  isolation: isolate;
}
.tkg-sky-hero__story-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    var(--tkg-sky-story-image, linear-gradient(145deg, #ffb5ad, #ffe6a6 52%, #b7d9ff));
  background-position: center;
  background-size: cover;
  transition: transform .45s ease, filter .35s ease;
}
.tkg-sky-hero__story::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .02) 20%, rgba(0, 0, 0, .78));
}
.tkg-sky-hero__story.is-fallback { color: var(--tkg-ink); }
.tkg-sky-hero__story.is-fallback::after {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .28), transparent 54%),
    repeating-linear-gradient(-45deg, transparent 0 18px, rgba(255, 255, 255, .12) 18px 19px);
}
.tkg-sky-hero__story:nth-child(2).is-fallback .tkg-sky-hero__story-image {
  background: linear-gradient(145deg, #d8ccff, #cfddff 54%, #cde6d5);
}
.tkg-sky-hero__story:hover .tkg-sky-hero__story-image { filter: saturate(1.08); transform: scale(1.045); }
.tkg-sky-hero__story-number {
  position: absolute;
  right: 12px;
  top: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: 9px;
  font-weight: 900;
}
.tkg-sky-hero__story.is-fallback .tkg-sky-hero__story-number { color: rgba(25, 25, 25, .45); }
.tkg-sky-hero__story small {
  color: var(--tkg-butter);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: .12em;
}
.tkg-sky-hero__story.is-fallback small { color: var(--tkg-coral-dark); }
.tkg-sky-hero__story > strong {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  font-size: clamp(13px, 1.15vw, 17px);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: -.025em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.tkg-sky-hero__story > b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-top: 13px;
  border-radius: 8px;
  background: var(--tkg-coral);
  color: var(--tkg-white);
  font-size: 13px;
}
.tkg-sky-hero__copy {
  position: relative;
  z-index: 2;
  width: min(42%, 610px);
  padding-right: clamp(24px, 4vw, 62px);
}
.tkg-sky-eyebrow,
.tkg-sky-section-head > p,
.tkg-sky-vision__copy > p {
  margin: 0 0 19px;
  color: var(--tkg-coral-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
}
.tkg-sky-hero .tkg-sky-eyebrow {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 10px;
  border-radius: 7px;
  background: var(--tkg-butter);
  color: var(--tkg-ink);
  transform: rotate(-1.5deg);
}
.tkg-sky-hero__copy h1 {
  margin: 0;
  padding: 0;
  color: var(--tkg-ink);
  font-size: clamp(78px, 8.8vw, 132px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.075em;
}
.tkg-sky-hero__tagline {
  max-width: 500px;
  margin: 28px 0 0;
  color: var(--tkg-ink);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: -.015em;
  word-break: auto-phrase;
  text-wrap: balance;
}
.tkg-sky-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.tkg-sky-hero__cta,
.tkg-sky-hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 56px;
  padding: 0 18px 0 22px;
  border: 2px solid var(--tkg-ink);
  border-radius: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .01em;
  text-decoration: none;
  transition: background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.tkg-sky-hero__cta {
  min-width: 236px;
  background: var(--tkg-ink);
  color: var(--tkg-white);
  box-shadow: 6px 6px 0 var(--tkg-coral);
}
.tkg-sky-hero__cta:hover { box-shadow: 3px 3px 0 var(--tkg-coral); transform: translate(4px, 4px); }
.tkg-sky-hero__cta-secondary {
  min-width: 190px;
  background: var(--tkg-white);
  color: var(--tkg-ink);
}
.tkg-sky-hero__cta-secondary:hover { background: var(--tkg-butter); transform: translateY(-2px); }
.tkg-sky-hero__cta b,
.tkg-sky-hero__cta-secondary b {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 8px;
  background: var(--tkg-coral);
  color: var(--tkg-white);
  font-size: 15px;
  font-weight: 600;
}
.tkg-sky-hero__cta-secondary b { background: var(--tkg-butter); color: var(--tkg-ink); }
.tkg-sky-hero__ticker {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  max-width: 500px;
  min-height: 35px;
  margin-top: 29px;
  padding: 7px 9px 7px 11px;
  border: 1px solid var(--tkg-line);
  border-radius: 11px;
  background: var(--tkg-white);
}
.tkg-sky-hero__ticker > strong {
  color: var(--tkg-coral-dark);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: .12em;
  white-space: nowrap;
}
.tkg-sky-hero__ticker > div { min-width: 0; overflow: hidden; }
.tkg-sky-hero__ticker-track {
  display: flex;
  width: max-content;
  animation: tkg-hero-ticker 18s linear infinite;
}
.tkg-sky-hero__ticker-track p {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding-right: 18px;
  white-space: nowrap;
}
.tkg-sky-hero__ticker-track span {
  position: relative;
  font-size: 8px;
  font-weight: 800;
}
.tkg-sky-hero__ticker-track span::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--tkg-coral);
  transform: translateY(-50%);
}
@keyframes tkg-hero-ticker {
  to { transform: translateX(-50%); }
}
.tkg-sky-hero__folio {
  position: absolute;
  left: clamp(36px, 6.5vw, 104px);
  bottom: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--tkg-muted);
}
.tkg-sky-hero__folio span {
  color: var(--tkg-coral);
  font-size: 18px;
  font-weight: 900;
}
.tkg-sky-hero__folio small { font-size: 7px; font-weight: 900; letter-spacing: .12em; }
.tkg-sky-hero__seal {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 3;
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 7px;
  align-items: center;
  padding: 12px 14px;
  border: 2px solid var(--tkg-ink);
  border-radius: 10px;
  background: var(--tkg-butter);
  color: var(--tkg-ink);
  box-shadow: 5px 5px 0 var(--tkg-ink);
  transform: rotate(4deg);
}
.tkg-sky-hero__seal span,
.tkg-sky-hero__seal small { font-size: 7px; font-weight: 900; }
.tkg-sky-hero__seal strong { grid-row: 1 / 3; grid-column: 2; font-size: 16px; font-weight: 900; }

/* Intro */
.tkg-sky-intro {
  padding: 136px 0;
  background: var(--tkg-white);
}
.tkg-sky-intro .tkg-sky-container {
  display: grid;
  grid-template-columns: 62px minmax(0, 1.1fr) minmax(330px, .72fr);
  gap: clamp(38px, 5vw, 74px);
  align-items: start;
}
.tkg-sky-intro__number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--tkg-ink);
  border-radius: 13px;
  background: var(--tkg-coral);
  color: var(--tkg-white);
  box-shadow: 4px 4px 0 var(--tkg-ink);
  font-size: 13px;
  font-weight: 900;
  transform: rotate(-3deg);
}
.tkg-sky-intro__copy h2,
.tkg-sky-section-head h2,
.tkg-sky-vision__copy h2 {
  margin: 0;
  color: var(--tkg-ink);
  font-size: clamp(42px, 4.9vw, 68px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: -.055em;
  line-break: strict;
  text-wrap: balance;
}
.tkg-sky-intro__copy > div { max-width: 650px; margin-top: 30px; }
.tkg-sky-intro__copy > div p {
  margin: 0;
  color: var(--tkg-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 2.1;
}
.tkg-sky-intro__points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tkg-sky-intro__points li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 2px 12px;
  align-items: center;
  min-height: 86px;
  padding: 15px 17px;
  border: 1px solid var(--tkg-line);
  border-radius: 18px;
  background: var(--tkg-bg);
}
.tkg-sky-intro__points li:nth-child(1) { background: var(--tkg-mint); }
.tkg-sky-intro__points li:nth-child(2) { background: var(--tkg-butter); }
.tkg-sky-intro__points li:nth-child(3) { background: var(--tkg-lilac); }
.tkg-sky-intro__points li > span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--tkg-ink);
  color: var(--tkg-white);
  font-size: 10px;
  font-weight: 900;
}
.tkg-sky-intro__points strong {
  align-self: end;
  color: var(--tkg-ink);
  font-size: 18px;
  font-weight: 800;
}
.tkg-sky-intro__points small {
  align-self: start;
  color: rgba(25, 25, 25, .62);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .08em;
}

/* Shared heading */
.tkg-sky-section-head { margin-bottom: 58px; }
.tkg-sky-section-head h2::after,
.tkg-sky-vision__copy h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 7px;
  margin-top: 22px;
  border-radius: 99px;
  background: var(--tkg-coral);
}

/* Feature body */
.tkg-sky-overview {
  padding: 140px 0;
  background: var(--tkg-soft);
}
.tkg-sky-overview > .tkg-sky-container {
  display: grid;
  grid-template-columns: minmax(280px, .65fr) minmax(0, 1fr);
  gap: clamp(54px, 8vw, 118px);
  align-items: start;
}
.tkg-sky-overview .tkg-sky-section-head {
  position: sticky;
  top: calc(var(--tkg-header-height) + 50px);
  margin-bottom: 0;
}
.tkg-sky-editor-content {
  width: 100%;
  min-width: 0;
  padding: 46px;
  border: 1px solid var(--tkg-line);
  border-radius: 24px;
  background: var(--tkg-white);
}
.tkg-sky-editor-content > *:first-child { margin-top: 0; }
.tkg-sky-editor-content > *:last-child { margin-bottom: 0; }
.tkg-sky-editor-content h2,
.tkg-sky-editor-content h3,
.tkg-sky-editor-content h4 {
  margin: 1.9em 0 .75em;
  padding: 0;
  border: 0;
  background: none;
  color: var(--tkg-ink);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -.035em;
}
.tkg-sky-editor-content h2 { font-size: clamp(29px, 3vw, 42px); }
.tkg-sky-editor-content h3 { font-size: clamp(22px, 2.2vw, 29px); }
.tkg-sky-editor-content p,
.tkg-sky-editor-content li {
  color: var(--tkg-text);
  font-size: 15px;
  line-height: 2.05;
}
.tkg-sky-editor-content a { color: var(--tkg-coral-dark); font-weight: 800; text-underline-offset: 4px; }
.tkg-sky-editor-content figure { margin-block: 46px; }
.tkg-sky-editor-content img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}
.tkg-sky-editor-content blockquote {
  margin: 38px 0;
  padding: 24px 26px;
  border: 0;
  border-left: 6px solid var(--tkg-coral);
  border-radius: 0 14px 14px 0;
  background: var(--tkg-bg);
}
.tkg-sky-editor-content table { width: 100%; border-collapse: collapse; background: var(--tkg-white); }
.tkg-sky-editor-content th,
.tkg-sky-editor-content td {
  padding: 14px;
  border: 1px solid var(--tkg-line);
  color: var(--tkg-text);
  font-size: 13px;
  line-height: 1.7;
  text-align: left;
}
.tkg-sky-editor-content th { background: var(--tkg-butter); color: var(--tkg-ink); }
.tkg-sky-editor-content .wp-block-button__link {
  border-radius: 12px;
  background: var(--tkg-ink);
  color: var(--tkg-white);
  font-size: 11px;
}

/* Destinations: bento gallery */
.tkg-sky-areas {
  padding: 140px 0 150px;
  background: var(--tkg-sky);
}
.tkg-sky-areas .tkg-sky-section-head > p { color: #35518d; }
.tkg-sky-area-list {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, 250px);
  gap: 16px;
}
.tkg-sky-area-card,
.tkg-sky-area-card:first-child {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 2px solid var(--tkg-ink);
  border-radius: 20px;
  background: var(--tkg-ink);
  color: var(--tkg-white);
  text-decoration: none;
  box-shadow: 5px 5px 0 rgba(25, 25, 25, .92);
  isolation: isolate;
  contain: layout paint;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tkg-sky-area-card:nth-child(1) { grid-column: 1 / 7; grid-row: 1 / 3; }
.tkg-sky-area-card:nth-child(2) { grid-column: 7 / 10; grid-row: 1; }
.tkg-sky-area-card:nth-child(3) { grid-column: 10 / 13; grid-row: 1; }
.tkg-sky-area-card:nth-child(4) { grid-column: 7 / 10; grid-row: 2; }
.tkg-sky-area-card:nth-child(5) { grid-column: 10 / 13; grid-row: 2; }
.tkg-sky-area-card:hover { box-shadow: 2px 2px 0 rgba(25, 25, 25, .92); transform: translate(3px, 3px); }
.tkg-sky-area-card__image,
.tkg-sky-area-card:first-child .tkg-sky-area-card__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .02) 38%, rgba(0, 0, 0, .78)),
    var(--tkg-card-image, linear-gradient(145deg, #7088bc, #364d7e));
  background-position: center;
  background-size: cover;
  filter: saturate(.95) contrast(1.03);
  z-index: 0;
  transition: filter .4s ease, transform .55s cubic-bezier(.22, 1, .36, 1);
}
.tkg-sky-area-card:hover .tkg-sky-area-card__image { filter: saturate(1.12); transform: scale(1.035); }
.tkg-sky-area-card__number {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 30px;
  border-radius: 8px;
  background: var(--tkg-butter);
  color: var(--tkg-ink);
  font-size: 10px;
  font-weight: 900;
}
.tkg-sky-area-card__body {
  position: absolute;
  left: 18px;
  right: 54px;
  bottom: 17px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tkg-sky-area-card__body strong {
  color: var(--tkg-white);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.04em;
}
.tkg-sky-area-card:nth-child(1) .tkg-sky-area-card__body strong { font-size: clamp(34px, 4.5vw, 62px); }
.tkg-sky-area-card__body em {
  color: rgba(255, 255, 255, .72);
  font-size: 7px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
}
.tkg-sky-area-card > b {
  position: absolute;
  right: 14px;
  bottom: 15px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--tkg-coral);
  color: var(--tkg-white);
  font-size: 14px;
  font-weight: 800;
}

/* Trip diagnosis and travel stamp book */
.tkg-sky-trip-tools {
  position: relative;
  padding: 140px 0 150px;
  overflow: hidden;
  background: var(--tkg-sky);
}
.tkg-sky-trip-tools::before {
  content: "PLAY";
  position: absolute;
  right: -20px;
  top: 26px;
  color: rgba(25, 25, 25, .035);
  font-size: clamp(150px, 22vw, 340px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.08em;
}
.tkg-sky-trip-tools > .tkg-sky-container { position: relative; z-index: 1; }
.tkg-sky-trip-tools__lead {
  width: min(100%, 680px);
  margin: -24px 0 43px auto;
  color: #454b58;
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
}
.tkg-sky-trip-tools [hidden] { display: none !important; }
.tkg-sky-trip-tools__noscript {
  padding: 18px;
  border: 2px solid var(--tkg-ink);
  background: var(--tkg-white);
  font-size: 13px;
  font-weight: 700;
}

.tkg-sky-diagnosis {
  display: grid;
  grid-template-columns: minmax(290px, .72fr) minmax(0, 1.65fr);
  min-height: 560px;
  overflow: hidden;
  border: 2px solid var(--tkg-ink);
  border-radius: 26px;
  background: var(--tkg-white);
  box-shadow: 10px 10px 0 var(--tkg-coral);
}
.tkg-sky-diagnosis__aside {
  position: relative;
  padding: clamp(31px, 4vw, 48px);
  overflow: hidden;
  background: var(--tkg-ink);
  color: var(--tkg-white);
}
.tkg-sky-diagnosis__aside::after {
  content: "3";
  position: absolute;
  right: -16px;
  bottom: -59px;
  color: rgba(255, 255, 255, .045);
  font-size: 260px;
  font-weight: 900;
  line-height: 1;
}
.tkg-sky-diagnosis__eyebrow,
.tkg-sky-stampbook__eyebrow {
  margin: 0 0 22px;
  color: var(--tkg-coral);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .14em;
}
.tkg-sky-diagnosis__aside h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(30px, 3.1vw, 43px);
  font-weight: 900;
  line-height: 1.42;
  letter-spacing: -.055em;
}
.tkg-sky-diagnosis__aside > p:not(.tkg-sky-diagnosis__eyebrow) {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.9;
}
.tkg-sky-diagnosis__progress {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}
.tkg-sky-diagnosis__progress li {
  padding: 12px 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 11px;
  color: rgba(255, 255, 255, .38);
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.tkg-sky-diagnosis__progress li.is-current {
  border-color: var(--tkg-butter);
  background: var(--tkg-butter);
  color: var(--tkg-ink);
}
.tkg-sky-diagnosis__progress li.is-complete {
  border-color: var(--tkg-coral);
  background: rgba(255, 94, 80, .14);
  color: var(--tkg-white);
}
.tkg-sky-diagnosis__progress span,
.tkg-sky-diagnosis__progress strong { display: block; }
.tkg-sky-diagnosis__progress span { font-size: 7px; font-weight: 900; }
.tkg-sky-diagnosis__progress strong { margin-top: 5px; font-size: 10px; }
.tkg-sky-diagnosis__meter {
  position: relative;
  z-index: 1;
  height: 4px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .13);
}
.tkg-sky-diagnosis__meter span {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: var(--tkg-coral);
  transition: width .3s ease;
}
.tkg-sky-diagnosis__main {
  min-width: 0;
  padding: clamp(30px, 4.3vw, 56px);
  background: var(--tkg-paper);
}
.tkg-sky-diagnosis__step > p,
.tkg-sky-diagnosis__result-head p {
  margin: 0 0 13px;
  color: var(--tkg-coral-dark);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .13em;
}
.tkg-sky-diagnosis__step > h3,
.tkg-sky-diagnosis__result-head h3 {
  margin: 0;
  font-size: clamp(29px, 3.4vw, 46px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -.055em;
}
.tkg-sky-diagnosis__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-top: 38px;
}
.tkg-sky-diagnosis__options--budget { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tkg-sky-diagnosis__options button {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 31px;
  align-content: center;
  min-height: 106px;
  padding: 19px;
  border: 2px solid var(--tkg-ink);
  border-radius: 15px;
  background: var(--tkg-white);
  color: var(--tkg-ink);
  font-family: var(--tkg-font);
  text-align: left;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.tkg-sky-diagnosis__options button:hover,
.tkg-sky-diagnosis__options button.is-selected {
  background: var(--tkg-butter);
  box-shadow: 4px 4px 0 var(--tkg-ink);
  transform: translate(-2px, -2px);
}
.tkg-sky-diagnosis__options button > span {
  align-self: end;
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 900;
  line-height: 1.35;
}
.tkg-sky-diagnosis__options button > small {
  align-self: start;
  margin-top: 7px;
  color: var(--tkg-muted);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .1em;
}
.tkg-sky-diagnosis__options button > b {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 9px;
  background: var(--tkg-ink);
  color: var(--tkg-white);
  font-size: 14px;
}
.tkg-sky-diagnosis__back,
.tkg-sky-diagnosis__result-head button {
  margin-top: 25px;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--tkg-ink);
  background: transparent;
  color: var(--tkg-ink);
  font-family: var(--tkg-font);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}
.tkg-sky-diagnosis__result-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.tkg-sky-diagnosis__result-head button { flex: 0 0 auto; margin-top: 0; }
.tkg-sky-diagnosis__summary {
  margin: 15px 0 27px;
  color: var(--tkg-muted);
  font-size: 11px;
  font-weight: 700;
}
.tkg-sky-diagnosis__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.tkg-sky-diagnosis-card {
  position: relative;
  min-width: 0;
  padding: 17px;
  overflow: hidden;
  border: 1px solid var(--tkg-line);
  border-radius: 16px;
  background: var(--tkg-white);
}
.tkg-sky-diagnosis-card__map {
  display: grid;
  place-items: center;
  height: 74px;
  margin-bottom: 15px;
  border-radius: 12px;
  background: #fff0ed;
}
.tkg-sky-diagnosis-card__map svg { width: 66px; height: 58px; overflow: visible; }
.tkg-sky-diagnosis-card__map path {
  fill: var(--tkg-coral);
  stroke: var(--tkg-coral-dark);
  stroke-width: 1.3;
  vector-effect: non-scaling-stroke;
}
.tkg-sky-diagnosis-card > small {
  color: var(--tkg-coral-dark);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .1em;
}
.tkg-sky-diagnosis-card h4 {
  margin: 5px 0 0;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 900;
  letter-spacing: -.055em;
}
.tkg-sky-diagnosis-card > p {
  min-height: 5.4em;
  margin: 10px 0 0;
  color: var(--tkg-text);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.8;
}
.tkg-sky-diagnosis-card > div:last-child { display: grid; gap: 7px; margin-top: 14px; }
.tkg-sky-diagnosis-card a,
.tkg-sky-diagnosis-card button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0 11px;
  border: 1px solid var(--tkg-ink);
  border-radius: 9px;
  font-family: var(--tkg-font);
  font-size: 8px;
  font-weight: 900;
  text-decoration: none;
}
.tkg-sky-diagnosis-card a { background: var(--tkg-ink); color: var(--tkg-white); }
.tkg-sky-diagnosis-card button { background: var(--tkg-white); color: var(--tkg-ink); cursor: pointer; }
.tkg-sky-diagnosis-card button:disabled { border-color: var(--tkg-mint); background: var(--tkg-mint); cursor: default; }
.tkg-sky-diagnosis__booking {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 17px;
  padding: 12px;
  border-radius: 13px;
  background: var(--tkg-butter);
}
.tkg-sky-diagnosis__booking > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--tkg-coral);
  color: var(--tkg-white);
  font-size: 8px;
  font-weight: 900;
}
.tkg-sky-diagnosis__booking div { min-width: 0; }
.tkg-sky-diagnosis__booking small,
.tkg-sky-diagnosis__booking strong { display: block; }
.tkg-sky-diagnosis__booking small { color: var(--tkg-text); font-size: 7px; font-weight: 700; }
.tkg-sky-diagnosis__booking strong { margin-top: 3px; font-size: 14px; font-weight: 900; }
.tkg-sky-diagnosis__booking a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  padding: 0 11px;
  border-radius: 9px;
  background: var(--tkg-ink);
  color: var(--tkg-white);
  font-size: 8px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}
.tkg-sky-diagnosis__notice { margin: 9px 0 0; color: var(--tkg-muted); font-size: 7px; line-height: 1.7; }

.tkg-sky-stampbook {
  display: grid;
  grid-template-columns: minmax(290px, .7fr) minmax(0, 1.3fr);
  margin-top: 92px;
  overflow: hidden;
  border: 2px solid var(--tkg-ink);
  border-radius: 26px;
  background: var(--tkg-white);
  box-shadow: 10px 10px 0 var(--tkg-butter);
}
.tkg-sky-stampbook__controls {
  padding: clamp(31px, 4vw, 46px);
  background: var(--tkg-ink);
  color: var(--tkg-white);
}
.tkg-sky-stampbook__controls h3 {
  margin: 0;
  font-size: clamp(31px, 3.3vw, 46px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -.055em;
}
.tkg-sky-stampbook__controls > p:not(.tkg-sky-stampbook__eyebrow):not(.tkg-sky-stampbook__current) {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.9;
}
.tkg-sky-stampbook__scores {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 32px;
}
.tkg-sky-stampbook__scores > div {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 13px;
}
.tkg-sky-stampbook__scores span,
.tkg-sky-stampbook__scores strong,
.tkg-sky-stampbook__scores em { display: block; }
.tkg-sky-stampbook__scores span { color: var(--tkg-coral); font-size: 6px; font-weight: 900; letter-spacing: .1em; }
.tkg-sky-stampbook__scores strong { margin-top: 6px; font-size: 31px; font-weight: 900; line-height: 1; }
.tkg-sky-stampbook__scores strong b { font: inherit; }
.tkg-sky-stampbook__scores strong small { margin-left: 2px; color: rgba(255, 255, 255, .38); font-size: 11px; }
.tkg-sky-stampbook__scores em { margin-top: 7px; color: rgba(255, 255, 255, .5); font-size: 8px; font-style: normal; font-weight: 700; }
.tkg-sky-stampbook__progress {
  height: 7px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .13);
}
.tkg-sky-stampbook__progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--tkg-coral);
  transition: width .3s ease;
}
.tkg-sky-stampbook__modes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 27px; }
.tkg-sky-stampbook__modes button {
  min-height: 48px;
  padding: 8px 5px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, .58);
  font-family: var(--tkg-font);
  font-size: 8px;
  font-weight: 800;
  cursor: pointer;
}
.tkg-sky-stampbook__modes button span {
  display: block;
  width: 15px;
  height: 5px;
  margin: 0 auto 6px;
  border-radius: 99px;
  background: #5f5f5f;
}
.tkg-sky-stampbook__modes button[data-stamp-mode="want"] span { background: #91b7ff; }
.tkg-sky-stampbook__modes button[data-stamp-mode="visited"] span { background: var(--tkg-coral); }
.tkg-sky-stampbook__modes button.is-active { border-color: var(--tkg-butter); background: var(--tkg-butter); color: var(--tkg-ink); }
.tkg-sky-stampbook__current { margin: 14px 0 0; }
.tkg-sky-stampbook__current small,
.tkg-sky-stampbook__current strong { display: block; }
.tkg-sky-stampbook__current small { color: rgba(255, 255, 255, .36); font-size: 6px; font-weight: 900; letter-spacing: .1em; }
.tkg-sky-stampbook__current strong { margin-top: 3px; font-size: 10px; }
.tkg-sky-stampbook__reset {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 18px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  background: transparent;
  color: rgba(255, 255, 255, .65);
  font-family: var(--tkg-font);
  font-size: 9px;
  cursor: pointer;
}
.tkg-sky-stampbook__map-wrap { position: relative; min-width: 0; padding: 25px; background: var(--tkg-paper); }
.tkg-sky-stampbook__map-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 0 4px 12px;
}
.tkg-sky-stampbook__map-meta span { color: var(--tkg-coral-dark); font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.tkg-sky-stampbook__map-meta strong { overflow: hidden; font-size: 10px; font-weight: 900; text-overflow: ellipsis; white-space: nowrap; }
.tkg-sky-stampbook__map { display: block; width: 100%; height: auto; overflow: visible; }
.tkg-sky-stampbook__inset rect {
  fill: rgba(25, 25, 25, .02);
  stroke: rgba(25, 25, 25, .13);
  stroke-dasharray: 4 5;
  vector-effect: non-scaling-stroke;
}
.tkg-sky-stampbook__inset text { fill: rgba(25, 25, 25, .3); font-size: 6px; font-weight: 900; letter-spacing: .1em; }
.tkg-sky-stamp-pref { cursor: pointer; outline: none; }
.tkg-sky-stamp-pref__hit { fill: transparent; stroke: transparent; stroke-width: 10; pointer-events: all; }
.tkg-sky-stamp-pref__shape {
  fill: #e8e6df;
  stroke: rgba(25, 25, 25, .52);
  stroke-linejoin: round;
  stroke-width: 1.05;
  pointer-events: none;
  vector-effect: non-scaling-stroke;
  transform-box: fill-box;
  transform-origin: center;
  transition: fill .16s ease, stroke .16s ease, transform .16s ease, filter .16s ease;
}
.tkg-sky-stamp-pref.is-want .tkg-sky-stamp-pref__shape { fill: #91b7ff; stroke: #4977ce; }
.tkg-sky-stamp-pref.is-visited .tkg-sky-stamp-pref__shape { fill: var(--tkg-coral); stroke: var(--tkg-coral-dark); }
.tkg-sky-stamp-pref:hover .tkg-sky-stamp-pref__shape,
.tkg-sky-stamp-pref:focus-visible .tkg-sky-stamp-pref__shape {
  stroke: var(--tkg-ink);
  stroke-width: 2.3;
  filter: drop-shadow(0 0 5px rgba(25, 25, 25, .28));
  transform: scale(1.035);
}
.tkg-sky-stampbook__legend { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 16px; margin-top: 5px; }
.tkg-sky-stampbook__legend span { display: flex; align-items: center; gap: 6px; color: var(--tkg-muted); font-size: 8px; font-weight: 700; }
.tkg-sky-stampbook__legend i { width: 13px; height: 6px; border-radius: 99px; background: #91b7ff; }
.tkg-sky-stampbook__legend span:nth-child(2) i { background: var(--tkg-coral); }
.tkg-sky-stampbook__legend span:nth-child(3) i { background: #e8e6df; }
.tkg-sky-stampbook__list { grid-column: 1 / -1; border-top: 2px solid var(--tkg-ink); background: var(--tkg-white); }
.tkg-sky-stampbook__list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding: 0 25px;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}
.tkg-sky-stampbook__list summary::-webkit-details-marker { display: none; }
.tkg-sky-stampbook__list summary span { font-size: 20px; transition: transform .2s ease; }
.tkg-sky-stampbook__list[open] summary span { transform: rotate(45deg); }
.tkg-sky-stampbook__list > div {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 7px;
  padding: 0 25px 25px;
}
.tkg-sky-stampbook__list button {
  min-width: 0;
  min-height: 46px;
  padding: 7px 8px;
  border: 1px solid var(--tkg-line);
  border-radius: 9px;
  background: var(--tkg-paper);
  color: var(--tkg-ink);
  font-family: var(--tkg-font);
  text-align: left;
  cursor: pointer;
}
.tkg-sky-stampbook__list button span,
.tkg-sky-stampbook__list button small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tkg-sky-stampbook__list button span { font-size: 9px; font-weight: 900; }
.tkg-sky-stampbook__list button small { margin-top: 3px; color: var(--tkg-muted); font-size: 6px; font-weight: 700; }
.tkg-sky-stampbook__list button.is-want { border-color: #91b7ff; background: #e7efff; }
.tkg-sky-stampbook__list button.is-visited { border-color: var(--tkg-coral); background: #fff0ed; }

/* 47 prefectures roulette */
.tkg-sky-roulette {
  position: relative;
  padding: 140px 0 150px;
  overflow: hidden;
  background: var(--tkg-ink);
  color: var(--tkg-white);
}
.tkg-sky-roulette::before {
  content: "SPIN";
  position: absolute;
  right: -24px;
  top: 36px;
  color: rgba(255, 255, 255, .025);
  font-size: clamp(150px, 21vw, 330px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.08em;
}
.tkg-sky-roulette .tkg-sky-container { position: relative; z-index: 1; }
.tkg-sky-section-head--roulette { margin-bottom: 20px; }
.tkg-sky-section-head--roulette > p { color: var(--tkg-butter); }
.tkg-sky-section-head--roulette h2 { color: var(--tkg-white); }
.tkg-sky-section-head--roulette h2::after { background: var(--tkg-coral); }
.tkg-sky-roulette__lead {
  width: min(100%, 640px);
  margin: 0 0 48px auto;
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
  line-height: 1.9;
}
.tkg-sky-roulette__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, .78fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}
.tkg-sky-map {
  position: relative;
  min-width: 0;
  padding: 20px 20px 15px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  background: #242424;
  box-shadow: 10px 10px 0 rgba(255, 94, 80, .86);
}
.tkg-sky-map__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 4px 10px;
  color: var(--tkg-butter);
}
.tkg-sky-map__meta span,
.tkg-sky-map__meta small {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
}
.tkg-sky-map__meta small { color: rgba(255, 255, 255, .48); }
.tkg-sky-map svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}
.tkg-sky-map__status {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 56px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 142px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(18, 18, 18, .86);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  pointer-events: none;
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}
.tkg-sky-map__status small {
  color: var(--tkg-coral);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: .13em;
  white-space: nowrap;
}
.tkg-sky-map__status strong {
  overflow: hidden;
  color: var(--tkg-white);
  font-size: 11px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tkg-sky-map__inset rect {
  fill: rgba(255, 255, 255, .025);
  stroke: rgba(255, 255, 255, .14);
  stroke-dasharray: 4 5;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.tkg-sky-map__inset text {
  fill: rgba(255, 255, 255, .32);
  font-family: var(--tkg-font-en);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .12em;
}
.tkg-sky-map-pref {
  color: var(--tkg-ink);
  cursor: pointer;
  outline: none;
  text-decoration: none;
}
.tkg-sky-map-pref__hit {
  fill: transparent;
  stroke: transparent;
  stroke-linejoin: round;
  stroke-width: 10;
  pointer-events: all;
}
.tkg-sky-map-pref__shape {
  fill: #eee;
  stroke: rgba(28, 28, 28, .72);
  stroke-linejoin: round;
  stroke-width: 1.05;
  pointer-events: none;
  vector-effect: non-scaling-stroke;
  transform-box: fill-box;
  transform-origin: center;
  transition: fill .14s ease, stroke .14s ease, transform .14s ease, filter .14s ease;
}
.tkg-sky-map-pref--hokkaido .tkg-sky-map-pref__shape,
.tkg-sky-map-pref--chugoku .tkg-sky-map-pref__shape { fill: #b9d8ff; }
.tkg-sky-map-pref--tohoku .tkg-sky-map-pref__shape,
.tkg-sky-map-pref--kyushu .tkg-sky-map-pref__shape { fill: #ccebdc; }
.tkg-sky-map-pref--kanto .tkg-sky-map-pref__shape,
.tkg-sky-map-pref--shikoku .tkg-sky-map-pref__shape { fill: #f8df8d; }
.tkg-sky-map-pref--chubu .tkg-sky-map-pref__shape { fill: #d8ccff; }
.tkg-sky-map-pref--kansai .tkg-sky-map-pref__shape { fill: #ffaaa3; }
.tkg-sky-map-pref--okinawa .tkg-sky-map-pref__shape { fill: var(--tkg-coral); }
.tkg-sky-map-pref:hover .tkg-sky-map-pref__shape,
.tkg-sky-map-pref:focus .tkg-sky-map-pref__shape,
.tkg-sky-map-pref:focus-visible .tkg-sky-map-pref__shape {
  stroke: var(--tkg-white);
  stroke-width: 2.2;
  filter: brightness(1.11) drop-shadow(0 0 4px rgba(255, 255, 255, .35));
  transform: scale(1.025);
}
.tkg-sky-map-pref.is-active .tkg-sky-map-pref__shape {
  fill: var(--tkg-coral);
  stroke: var(--tkg-white);
  stroke-width: 2.4;
  filter: drop-shadow(0 0 7px rgba(255, 94, 80, .88));
  transform: scale(1.04);
}
.tkg-sky-map-pref.is-selected .tkg-sky-map-pref__shape {
  fill: var(--tkg-coral);
  stroke: var(--tkg-butter);
  stroke-width: 3;
  filter: drop-shadow(0 0 9px rgba(255, 94, 80, .85));
  transform: scale(1.045);
}
.tkg-sky-map__hint {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 5px 4px 0;
  color: rgba(255, 255, 255, .48);
  font-size: 9px;
  font-weight: 700;
}
.tkg-sky-map__hint span { color: var(--tkg-coral); font-size: 14px; }
.tkg-sky-roulette__panel { min-width: 0; }
.tkg-sky-roulette__label {
  margin: 0 0 14px;
  color: var(--tkg-coral);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .14em;
}
.tkg-sky-roulette__panel h3 {
  margin: 0;
  color: var(--tkg-white);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -.05em;
  line-break: strict;
  text-wrap: balance;
}
.tkg-sky-roulette__panel h3 span {
  display: block;
  white-space: nowrap;
}
.tkg-sky-roulette__description {
  margin: 19px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  line-height: 1.9;
}
.tkg-sky-roulette__result {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 150px;
  margin-top: 27px;
  padding: 23px;
  overflow: hidden;
  border: 2px solid var(--tkg-white);
  border-radius: 18px;
  background: var(--tkg-white);
  color: var(--tkg-ink);
}
.tkg-sky-roulette__result::after {
  content: "?";
  position: absolute;
  right: 13px;
  top: -30px;
  color: rgba(25, 25, 25, .05);
  font-size: 145px;
  font-weight: 900;
  line-height: 1;
}
.tkg-sky-roulette__result.has-result::after {
  content: none;
}
.tkg-sky-roulette__result.has-map::after { content: none; }
.tkg-sky-roulette__result > span {
  position: relative;
  z-index: 1;
  color: var(--tkg-coral-dark);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .14em;
}
.tkg-sky-roulette__result > strong {
  position: relative;
  z-index: 1;
  margin-top: 7px;
  font-size: clamp(29px, 3.4vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.05em;
}
.tkg-sky-roulette__result.has-map > strong,
.tkg-sky-roulette__result.has-map > small { max-width: calc(100% - 128px); }
.tkg-sky-roulette__result > small {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  color: var(--tkg-muted);
  font-size: 9px;
  font-weight: 700;
}
.tkg-sky-roulette__result-map {
  position: absolute;
  z-index: 1;
  right: 18px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  padding: 18px;
  border-radius: 50%;
  background: #fff0ed;
  transform: translateY(-50%);
}
.tkg-sky-roulette__result-map[hidden] { display: none !important; }
.tkg-sky-roulette__result-map svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.tkg-sky-roulette__result-map path {
  fill: var(--tkg-coral);
  stroke: var(--tkg-coral-dark);
  stroke-linejoin: round;
  stroke-width: 1.35;
  vector-effect: non-scaling-stroke;
}
.tkg-sky-roulette__button,
.tkg-sky-roulette__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 54px;
  margin-top: 14px;
  padding: 0 15px 0 18px;
  border: 2px solid var(--tkg-white);
  border-radius: 13px;
  font-family: var(--tkg-font);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.tkg-sky-roulette__button {
  background: var(--tkg-butter);
  color: var(--tkg-ink);
  box-shadow: 5px 5px 0 var(--tkg-coral);
}
.tkg-sky-roulette__button:hover { background: var(--tkg-white); transform: translateY(-2px); }
.tkg-sky-roulette__button:disabled { cursor: wait; opacity: .82; }
.tkg-sky-roulette__button b,
.tkg-sky-roulette__link b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--tkg-ink);
  color: var(--tkg-white);
  font-size: 16px;
}
.tkg-sky-roulette.is-spinning .tkg-sky-roulette__button b { animation: tkg-roulette-spin .55s linear infinite; }
.tkg-sky-roulette__link {
  background: var(--tkg-coral);
  color: var(--tkg-white);
}
.tkg-sky-roulette__link:hover { background: var(--tkg-coral-dark); transform: translateY(-2px); }
.tkg-sky-roulette__link b { background: var(--tkg-white); color: var(--tkg-coral-dark); }
.tkg-sky-roulette__link[hidden] { display: none !important; }
.tkg-sky-roulette__note {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, .38);
  font-size: 8px;
  line-height: 1.7;
}

@keyframes tkg-roulette-spin {
  to { transform: rotate(360deg); }
}

/* Booking */
.tkg-sky-booking {
  padding: 140px 0 150px;
  background: var(--tkg-bg);
}
.tkg-sky-booking-lead {
  width: min(100%, 700px);
  margin: -26px 0 42px auto;
  color: var(--tkg-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}
.tkg-sky-aff-disclosure {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 13px;
  align-items: center;
  margin-bottom: 24px;
  padding: 14px 16px;
  border: 1px solid rgba(25, 25, 25, .14);
  border-radius: 14px;
  background: var(--tkg-butter);
}
.tkg-sky-aff-disclosure strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 30px;
  border-radius: 8px;
  background: var(--tkg-ink);
  color: var(--tkg-white);
  font-size: 8px;
  letter-spacing: .06em;
}
.tkg-sky-aff-disclosure p {
  margin: 0;
  color: rgba(25, 25, 25, .7);
  font-size: 10px;
  line-height: 1.75;
}
.tkg-sky-booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.tkg-sky-booking-card {
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr auto;
  gap: 0 18px;
  min-width: 0;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--tkg-line);
  border-radius: 18px;
  background: var(--tkg-white);
  transition: border-color .25s ease, transform .25s ease;
}
.tkg-sky-booking-card:hover { border-color: var(--tkg-ink); transform: translateY(-3px); }
.tkg-sky-booking-card.is-recommended { border: 2px solid var(--tkg-coral); }
.tkg-sky-booking-card__pick {
  position: absolute;
  right: 14px;
  top: 13px;
  z-index: 2;
  padding: 6px 9px;
  border-radius: 7px;
  background: var(--tkg-coral);
  color: var(--tkg-white);
  font-size: 7px;
  font-weight: 900;
}
.tkg-sky-booking-card__banner {
  grid-column: 1;
  grid-row: 1 / 5;
  display: grid;
  place-items: center;
  width: 104px;
  height: 76px;
  padding: 9px;
  overflow: hidden;
  border: 1px solid var(--tkg-line);
  border-radius: 12px;
  background: var(--tkg-white);
  text-decoration: none;
}
.tkg-sky-booking-card__banner img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}
.tkg-sky-booking-card__head {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 90px;
  color: var(--tkg-muted);
}
.tkg-sky-booking-card__head > span {
  color: var(--tkg-coral-dark);
  font-size: 11px;
  font-weight: 900;
}
.tkg-sky-booking-card__head > small {
  padding-left: 8px;
  border-left: 1px solid var(--tkg-line);
  font-size: 7px;
  font-weight: 900;
}
.tkg-sky-booking-card h3 {
  grid-column: 2;
  margin: 12px 0 0;
  color: var(--tkg-ink);
  font-size: 23px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -.035em;
}
.tkg-sky-booking-card > p {
  grid-column: 2;
  margin: 11px 0 16px;
  color: var(--tkg-text);
  font-size: 11px;
  line-height: 1.8;
}
.tkg-sky-booking-card > a:not(.tkg-sky-booking-card__banner) {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 39px;
  width: 100%;
  margin-top: auto;
  padding: 0 12px 0 14px;
  border: 2px solid var(--tkg-ink);
  border-radius: 10px;
  background: var(--tkg-white);
  color: var(--tkg-ink);
  font-size: 9px;
  font-weight: 900;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.tkg-sky-booking-card > a:not(.tkg-sky-booking-card__banner):hover { background: var(--tkg-ink); color: var(--tkg-white); }
.tkg-sky-booking-card > a:not(.tkg-sky-booking-card__banner) b { color: var(--tkg-coral); font-size: 13px; }
.tkg-sky-booking-card[hidden] { display: none !important; }
.tkg-sky-booking-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.tkg-sky-booking-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100%, 430px);
  min-height: 56px;
  padding: 0 20px 0 24px;
  border: 2px solid var(--tkg-ink);
  border-radius: 12px;
  background: var(--tkg-white);
  color: var(--tkg-ink);
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.tkg-sky-booking-more:hover {
  background: var(--tkg-ink);
  color: var(--tkg-white);
  transform: translateY(-2px);
}
.tkg-sky-booking-more b {
  color: var(--tkg-coral);
  font-size: 20px;
  line-height: 1;
}
.tkg-sky-booking-more:focus-visible {
  outline: 3px solid var(--tkg-coral);
  outline-offset: 3px;
}
.tkg-sky-booking-note {
  margin: 24px 0 0;
  color: var(--tkg-muted);
  font-size: 9px;
  line-height: 1.85;
}

/* Vision */
.tkg-sky-vision {
  padding: 145px 0;
  background: var(--tkg-butter);
}
.tkg-sky-vision .tkg-sky-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .5fr);
  gap: clamp(64px, 9vw, 130px);
  align-items: center;
}
.tkg-sky-vision__copy > p { color: #a83e34; }
.tkg-sky-vision__copy > div { max-width: 660px; margin-top: 30px; }
.tkg-sky-vision__copy > div p {
  margin: 0;
  color: rgba(25, 25, 25, .72);
  font-size: 14px;
  line-height: 2.05;
}
.tkg-sky-vision__copy > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-width: 232px;
  min-height: 48px;
  margin-top: 34px;
  padding: 0 16px;
  border: 2px solid var(--tkg-ink);
  border-radius: 12px;
  background: transparent;
  color: var(--tkg-ink);
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.tkg-sky-vision__copy > a:hover { background: var(--tkg-ink); color: var(--tkg-white); }
.tkg-sky-vision__random-image {
  position: relative;
  display: block;
  min-height: 390px;
  overflow: hidden;
  border: 2px solid var(--tkg-ink);
  border-radius: 24px;
  background: var(--tkg-ink);
  box-shadow: 8px 8px 0 var(--tkg-coral);
  transform: rotate(1.5deg);
  text-decoration: none;
}
.tkg-sky-vision__random-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.tkg-sky-vision__note {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 390px;
  padding: 30px;
  overflow: hidden;
  border: 2px solid var(--tkg-ink);
  border-radius: 24px;
  background: var(--tkg-ink);
  color: var(--tkg-white);
  box-shadow: 8px 8px 0 var(--tkg-coral);
  transform: rotate(1.5deg);
}
.tkg-sky-vision__note > span {
  color: var(--tkg-butter);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
}
.tkg-sky-vision__note > strong {
  position: absolute;
  right: -4px;
  top: 47px;
  color: var(--tkg-coral);
  font-size: 180px;
  font-weight: 900;
  line-height: 1;
}
.tkg-sky-vision__note > small {
  position: relative;
  align-self: flex-start;
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.9;
}

/* Latest stories */
.tkg-sky-news {
  padding: 140px 0 150px;
  background: var(--tkg-white);
}
.tkg-sky-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.tkg-sky-news-card { min-width: 0; }
.tkg-sky-news-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.tkg-sky-news-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--tkg-line);
  border-radius: 18px;
  background: var(--tkg-sky);
}
.tkg-sky-news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92);
  transition: filter .35s ease, transform .5s ease;
}
.tkg-sky-news-card:hover img { filter: saturate(1.1); transform: scale(1.035); }
.tkg-sky-news-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
  color: var(--tkg-muted);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .08em;
}
.tkg-sky-news-card h3 {
  margin: 13px 0 0;
  color: var(--tkg-ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: -.03em;
  text-wrap: balance;
}
.tkg-sky-news-card__more {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 17px;
  border-bottom: 2px solid var(--tkg-ink);
  color: var(--tkg-ink);
  font-size: 9px;
  font-weight: 900;
  line-height: 32px;
}
.tkg-sky-news-card__more b { color: var(--tkg-coral); font-size: 13px; }

/* Author */
.tkg-sky-author {
  padding: 130px 0;
  background: var(--tkg-lilac);
}
.tkg-sky-author__box {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(46px, 6vw, 82px);
  align-items: center;
  padding: 46px;
  border: 2px solid var(--tkg-ink);
  border-radius: 26px;
  background: var(--tkg-white);
  box-shadow: 8px 8px 0 var(--tkg-ink);
}
.tkg-sky-author__image {
  position: relative;
  width: 210px;
  height: 250px;
}
.tkg-sky-author__image::before {
  content: "CREW";
  position: absolute;
  right: -17px;
  top: 18px;
  z-index: 2;
  padding: 8px 9px;
  border: 2px solid var(--tkg-ink);
  border-radius: 9px;
  background: var(--tkg-butter);
  color: var(--tkg-ink);
  font-size: 8px;
  font-weight: 900;
  transform: rotate(6deg);
}
.tkg-sky-author__image img {
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid var(--tkg-ink);
  border-radius: 20px;
  object-fit: cover;
  filter: saturate(.95);
}
.tkg-sky-author__content h2 {
  margin: 0;
  color: var(--tkg-ink);
  font-size: clamp(32px, 3.3vw, 46px);
  font-weight: 900;
  letter-spacing: -.045em;
}
.tkg-sky-author__role {
  margin: 13px 0 0;
  color: var(--tkg-coral-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.8;
}
.tkg-sky-author__text {
  margin: 20px 0 0;
  color: var(--tkg-text);
  font-size: 13px;
  line-height: 1.95;
}
.tkg-sky-author__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.tkg-sky-author__points li {
  margin: 0;
  padding: 13px;
  border: 1px solid var(--tkg-line);
  border-radius: 12px;
  background: var(--tkg-bg);
  color: var(--tkg-text);
  font-size: 9px;
  line-height: 1.65;
}
.tkg-sky-author__points li::before { display: none; }
.tkg-sky-author__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-width: 214px;
  min-height: 46px;
  margin-top: 24px;
  padding: 0 15px;
  border: 2px solid var(--tkg-ink);
  border-radius: 11px;
  background: var(--tkg-coral);
  color: var(--tkg-white);
  font-size: 9px;
  font-weight: 900;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.tkg-sky-author__link:hover { background: var(--tkg-coral-dark); transform: translateY(-2px); }

/* Footer */
.tkg-sky-footer {
  padding: 80px 0 34px;
  background: var(--tkg-ink);
  color: var(--tkg-white);
}
.tkg-sky-footer .tkg-sky-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
}
.tkg-sky-footer__brand > span { display: flex; flex-direction: column; }
.tkg-sky-footer__brand strong { font-size: 22px; font-weight: 900; letter-spacing: -.04em; }
.tkg-sky-footer__brand small {
  margin-top: 7px;
  color: var(--tkg-coral);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: .15em;
}
.tkg-sky-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 11px 22px;
}
.tkg-sky-footer nav a {
  color: rgba(255, 255, 255, .66);
  font-size: 9px;
  font-weight: 700;
  text-decoration: none;
}
.tkg-sky-footer nav a:hover { color: var(--tkg-butter); }
.tkg-sky-footer .tkg-sky-container > p {
  grid-column: 1 / -1;
  margin: 38px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .38);
  font-size: 8px;
  letter-spacing: .1em;
}

/* Motion */
.tkg-sky-reveal { opacity: 1; transform: none; }
.tkg-sky-js .tkg-sky-reveal {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity .72s ease, transform .82s cubic-bezier(.22, 1, .36, 1);
}
.tkg-sky-js .tkg-sky-reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 1081px) {
  .tkg-sky-hero__copy {
    width: min(46%, 680px);
    padding-right: clamp(18px, 2.6vw, 42px);
  }

  .tkg-sky-hero .tkg-sky-eyebrow {
    margin-bottom: 26px;
    padding: 9px 13px;
    font-size: 11px;
  }

  .tkg-sky-hero__copy h1 {
    font-size: clamp(96px, 9.4vw, 150px);
  }

  .tkg-sky-hero__tagline {
    max-width: 570px;
    margin-top: 32px;
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.75;
  }

  .tkg-sky-hero__actions {
    gap: 14px;
    margin-top: 38px;
  }

  .tkg-sky-hero__cta,
  .tkg-sky-hero__cta-secondary {
    min-height: 64px;
    padding-inline: 25px 19px;
    font-size: 13px;
  }

  .tkg-sky-hero__cta { min-width: 260px; }
  .tkg-sky-hero__cta-secondary { min-width: 208px; }

  .tkg-sky-hero__cta b,
  .tkg-sky-hero__cta-secondary b {
    width: 31px;
    height: 31px;
    font-size: 17px;
  }

  .tkg-sky-hero__ticker {
    max-width: 570px;
    min-height: 42px;
    margin-top: 33px;
    padding: 9px 12px 9px 14px;
  }

  .tkg-sky-hero__ticker > strong { font-size: 7px; }
  .tkg-sky-hero__ticker-track span { font-size: 9px; }
}

@media (max-width: 1080px) {
  .tkg-sky-header { padding-inline: 24px; }
  .tkg-sky-nav,
  .tkg-sky-nav__custom { gap: 15px; }
  .tkg-sky-nav a,
  .tkg-sky-nav__custom a { font-size: 9px; }
  .tkg-sky-hero__collage {
    left: 47%;
    grid-template-columns: minmax(0, 1fr) minmax(140px, 165px);
    gap: 10px;
  }
  .tkg-sky-hero__stories { gap: 10px; }
  .tkg-sky-hero__story { padding: 13px; border-radius: 16px; }
  .tkg-sky-hero__story > strong { font-size: 12px; }
  .tkg-sky-hero__copy { width: 46%; }
  .tkg-sky-hero__seal { display: none; }
  .tkg-sky-intro .tkg-sky-container { grid-template-columns: 60px minmax(0, 1fr); }
  .tkg-sky-intro__points { grid-column: 2; grid-template-columns: repeat(3, 1fr); }
  .tkg-sky-diagnosis,
  .tkg-sky-stampbook { grid-template-columns: 1fr; }
  .tkg-sky-diagnosis { min-height: 0; }
  .tkg-sky-diagnosis__aside::after { bottom: -90px; }
  .tkg-sky-diagnosis__progress { width: min(100%, 430px); margin-top: 38px; }
  .tkg-sky-stampbook__list { grid-column: auto; }
  .tkg-sky-roulette__layout { grid-template-columns: 1fr; gap: 48px; }
  .tkg-sky-map { width: min(100%, 820px); margin-inline: auto; }
  .tkg-sky-roulette__panel { width: min(100%, 680px); margin-inline: auto; }
  .tkg-sky-booking-card { grid-template-columns: 90px minmax(0, 1fr); gap: 0 14px; padding: 21px; }
  .tkg-sky-booking-card__banner { width: 90px; height: 68px; }
}

@media (max-width: 768px) {
  :root { --tkg-header-height: 62px; }
  .tkg-sky-container { padding-inline: 18px; }
  .tkg-sky-header,
  .tkg-sky-scrolled .tkg-sky-header {
    min-height: var(--tkg-header-height);
    padding: 7px max(13px, env(safe-area-inset-right)) 7px max(13px, env(safe-area-inset-left));
    background: rgba(255, 253, 248, .98);
  }
  .tkg-sky-brand {
    min-height: 44px;
    padding: 6px 4px;
  }
  .tkg-sky-brand strong { font-size: 17px; }
  .tkg-sky-brand small { display: none; }
  .tkg-sky-menu-button {
    display: flex;
    margin-left: auto;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .tkg-sky-menu-button span:not(.screen-reader-text) {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 9px;
    background: var(--tkg-ink);
    transition: transform .22s ease, opacity .22s ease;
  }
  .tkg-sky-menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .tkg-sky-menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .tkg-sky-menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .tkg-sky-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: calc(var(--tkg-admin-offset) + var(--tkg-header-height));
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-height: 0;
    padding: 0 13px;
    overflow: hidden;
    border-bottom: 0 solid var(--tkg-line);
    background: rgba(255, 253, 248, .99);
    opacity: 0;
    transition: max-height .28s ease, opacity .22s ease, padding .28s ease;
  }
  .tkg-sky-nav.is-open {
    max-height: 320px;
    padding: 12px 13px 17px;
    border-bottom-width: 1px;
    opacity: 1;
  }
  .tkg-sky-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 6px;
    border-bottom: 1px solid var(--tkg-line);
  }
  .tkg-sky-nav__custom { display: contents; }

  .tkg-sky-hero,
  .tkg-sky-hero__grid { min-height: 1060px; }
  .tkg-sky-hero::before { left: -14px; bottom: 0; font-size: 120px; }
  .tkg-sky-hero__grid {
    display: block;
    padding: calc(var(--tkg-header-height) + 548px) 18px 64px;
  }
  .tkg-sky-hero__collage {
    inset: calc(var(--tkg-header-height) + 16px) 18px auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 330px 150px;
    gap: 10px;
    height: 490px;
  }
  .tkg-sky-hero__visual {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 0;
    border-radius: 20px;
  }
  .tkg-sky-hero__stories { display: contents; }
  .tkg-sky-hero__story { min-height: 0; padding: 13px; border-radius: 16px; }
  .tkg-sky-hero__story:nth-child(1) { grid-column: 1; grid-row: 2; }
  .tkg-sky-hero__story:nth-child(2) { grid-column: 2; grid-row: 2; }
  .tkg-sky-hero__story > strong { margin-top: 5px; font-size: 11px; line-height: 1.45; -webkit-line-clamp: 2; }
  .tkg-sky-hero__story > b { display: none; }
  .tkg-sky-hero__visual figcaption { right: 12px; bottom: 12px; }
  .tkg-sky-hero__copy { width: 100%; padding: 0; }
  .tkg-sky-eyebrow,
  .tkg-sky-section-head > p,
  .tkg-sky-vision__copy > p { margin-bottom: 14px; font-size: 8px; }
  .tkg-sky-hero .tkg-sky-eyebrow { margin-bottom: 17px; }
  .tkg-sky-hero__copy h1 { font-size: clamp(58px, 19vw, 76px); }
  .tkg-sky-hero__tagline { margin-top: 17px; font-size: 14px; line-height: 1.75; }
  .tkg-sky-hero__actions { display: grid; grid-template-columns: 1fr; gap: 9px; margin-top: 23px; }
  .tkg-sky-hero__cta,
  .tkg-sky-hero__cta-secondary { width: calc(100% - 6px); min-width: 0; min-height: 52px; }
  .tkg-sky-hero__ticker { max-width: none; margin-top: 22px; }
  .tkg-sky-hero__folio,
  .tkg-sky-hero__seal { display: none; }

  .tkg-sky-intro,
  .tkg-sky-overview,
  .tkg-sky-areas,
  .tkg-sky-trip-tools,
  .tkg-sky-roulette,
  .tkg-sky-booking,
  .tkg-sky-vision,
  .tkg-sky-news,
  .tkg-sky-author { padding: 88px 0; }
  .tkg-sky-intro .tkg-sky-container { grid-template-columns: 1fr; gap: 27px; }
  .tkg-sky-intro__number { width: 48px; height: 48px; }
  .tkg-sky-intro__copy h2,
  .tkg-sky-section-head h2,
  .tkg-sky-vision__copy h2 { font-size: clamp(33px, 10.2vw, 46px); line-height: 1.3; }
  .tkg-sky-intro__copy > div p,
  .tkg-sky-vision__copy > div p { font-size: 14px; line-height: 2; }
  .tkg-sky-intro__points { grid-column: auto; grid-template-columns: 1fr; }
  .tkg-sky-section-head { margin-bottom: 39px; }

  .tkg-sky-overview > .tkg-sky-container { grid-template-columns: 1fr; gap: 29px; }
  .tkg-sky-overview .tkg-sky-section-head { position: static; }
  .tkg-sky-editor-content { padding: 25px 20px; border-radius: 18px; }
  .tkg-sky-editor-content p,
  .tkg-sky-editor-content li { font-size: 14px; line-height: 1.95; }
  .tkg-sky-editor-content table { min-width: 650px; }
  .tkg-sky-editor-content .wp-block-table { overflow-x: auto; }

  /* モバイルではデスクトップ用Bento Gridを完全に解除し、通常フローへ戻す。
     min-heightとgrid-rowの併用をやめ、カード同士の重なりを構造的に防ぐ。 */
  .tkg-sky-area-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }
  .tkg-sky-area-card:nth-child(n),
  .tkg-sky-area-card:first-child {
    flex: 0 0 auto;
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
  .tkg-sky-area-card:nth-child(1) { aspect-ratio: 16 / 11; }
  .tkg-sky-area-card:nth-child(1) .tkg-sky-area-card__body strong,
  .tkg-sky-area-card__body strong { font-size: 30px; }

  .tkg-sky-trip-tools::before { top: 54px; font-size: 120px; }
  .tkg-sky-trip-tools__lead { width: 100%; margin: -13px 0 31px; font-size: 12px; }
  .tkg-sky-diagnosis,
  .tkg-sky-stampbook { border-radius: 19px; }
  .tkg-sky-diagnosis { box-shadow: 6px 6px 0 var(--tkg-coral); }
  .tkg-sky-diagnosis__aside,
  .tkg-sky-stampbook__controls { padding: 26px 21px; }
  .tkg-sky-diagnosis__aside h3,
  .tkg-sky-stampbook__controls h3 { font-size: 31px; }
  .tkg-sky-diagnosis__aside > p:not(.tkg-sky-diagnosis__eyebrow),
  .tkg-sky-stampbook__controls > p:not(.tkg-sky-stampbook__eyebrow):not(.tkg-sky-stampbook__current) { font-size: 10px; }
  .tkg-sky-diagnosis__progress { margin-top: 30px; }
  .tkg-sky-diagnosis__main { padding: 28px 19px; }
  .tkg-sky-diagnosis__step > h3,
  .tkg-sky-diagnosis__result-head h3 { font-size: 29px; }
  .tkg-sky-diagnosis__options { gap: 9px; margin-top: 27px; }
  .tkg-sky-diagnosis__options--budget { grid-template-columns: 1fr; }
  .tkg-sky-diagnosis__options button { min-height: 92px; padding: 15px; }
  .tkg-sky-diagnosis__options button > span { font-size: 14px; }
  .tkg-sky-diagnosis__result-head { display: block; }
  .tkg-sky-diagnosis__result-head button { margin-top: 14px; }
  .tkg-sky-diagnosis__cards { grid-template-columns: 1fr; }
  .tkg-sky-diagnosis-card { display: grid; grid-template-columns: 82px minmax(0, 1fr); gap: 0 13px; }
  .tkg-sky-diagnosis-card__map { grid-column: 1; grid-row: 1 / 5; height: 82px; margin: 0; }
  .tkg-sky-diagnosis-card__map svg { width: 60px; height: 55px; }
  .tkg-sky-diagnosis-card > small,
  .tkg-sky-diagnosis-card h4,
  .tkg-sky-diagnosis-card > p,
  .tkg-sky-diagnosis-card > div:last-child { grid-column: 2; }
  .tkg-sky-diagnosis-card h4 { font-size: 22px; }
  .tkg-sky-diagnosis-card > p { min-height: 0; }
  .tkg-sky-diagnosis-card > div:last-child { margin-top: 12px; }
  .tkg-sky-diagnosis__booking { grid-template-columns: 36px 1fr; }
  .tkg-sky-diagnosis__booking > span { width: 36px; height: 36px; }
  .tkg-sky-diagnosis__booking > a { grid-column: 1 / -1; justify-content: space-between; }

  .tkg-sky-stampbook { margin-top: 58px; box-shadow: 6px 6px 0 var(--tkg-butter); }
  .tkg-sky-stampbook__scores { margin-top: 25px; }
  .tkg-sky-stampbook__map-wrap { padding: 15px 8px 17px; }
  .tkg-sky-stampbook__map-meta { padding-inline: 7px; }
  .tkg-sky-stampbook__legend { justify-content: flex-start; padding-inline: 7px; }
  .tkg-sky-stampbook__list summary { min-height: 54px; padding: 0 17px; }
  .tkg-sky-stampbook__list > div { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0 17px 17px; }

  .tkg-sky-roulette::before { top: 60px; font-size: 120px; }
  .tkg-sky-roulette__lead { width: 100%; margin: -13px 0 34px; font-size: 12px; }
  .tkg-sky-roulette__layout { gap: 38px; }
  .tkg-sky-map { padding: 14px 8px 12px; border-radius: 18px; box-shadow: 6px 6px 0 rgba(255, 94, 80, .86); }
  .tkg-sky-map__meta { padding-inline: 7px; }
  .tkg-sky-map__status { top: 48px; min-width: 128px; padding: 7px 10px; }
  .tkg-sky-map__status strong { font-size: 10px; }
  .tkg-sky-map__hint { margin-inline: 8px; font-size: 8px; }
  .tkg-sky-roulette__panel h3 { font-size: clamp(31px, 9.4vw, 42px); }
  .tkg-sky-roulette__description { font-size: 12px; }
  .tkg-sky-roulette__result { min-height: 140px; padding: 20px; }
  .tkg-sky-roulette__result > strong { font-size: 30px; }
  .tkg-sky-roulette__result.has-map > strong,
  .tkg-sky-roulette__result.has-map > small { max-width: calc(100% - 104px); }
  .tkg-sky-roulette__result-map { right: 13px; width: 92px; height: 92px; padding: 15px; }

  .tkg-sky-booking-lead { width: 100%; margin: -13px 0 31px; font-size: 13px; }
  .tkg-sky-aff-disclosure { grid-template-columns: 40px 1fr; padding: 13px; }
  .tkg-sky-booking-grid { grid-template-columns: 1fr; }
  .tkg-sky-booking-card {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 0 13px;
    padding: 19px;
    border-radius: 16px;
  }
  .tkg-sky-booking-card__banner { width: 80px; height: 62px; }
  .tkg-sky-booking-card h3 { font-size: 21px; }
  .tkg-sky-booking-card__head { padding-right: 82px; }
  .tkg-sky-booking-card__pick { right: 12px; top: 12px; }
  .tkg-sky-booking-more-wrap { margin-top: 22px; }
  .tkg-sky-booking-more { min-height: 52px; padding: 0 17px 0 19px; font-size: 10px; }

  .tkg-sky-vision .tkg-sky-container { grid-template-columns: 1fr; gap: 45px; }
  .tkg-sky-vision__note { min-height: 320px; padding: 24px; }
  .tkg-sky-vision__random-image { min-height: 320px; }
  .tkg-sky-vision__note > strong { top: 45px; font-size: 140px; }

  .tkg-sky-news-grid { grid-template-columns: 1fr; gap: 40px; }

  .tkg-sky-author__box {
    grid-template-columns: 1fr;
    gap: 31px;
    padding: 23px;
    border-radius: 20px;
    box-shadow: 5px 5px 0 var(--tkg-ink);
  }
  .tkg-sky-author__image { width: 140px; height: 166px; }
  .tkg-sky-author__content h2 { font-size: 32px; }
  .tkg-sky-author__role,
  .tkg-sky-author__text { font-size: 12px; }
  .tkg-sky-author__points { grid-template-columns: 1fr; }

  .tkg-sky-footer { padding: 66px 0 30px; }
  .tkg-sky-footer .tkg-sky-container { grid-template-columns: 1fr; gap: 31px; }
  .tkg-sky-footer nav { justify-content: flex-start; gap: 10px 16px; }
  .tkg-sky-footer .tkg-sky-container > p { margin-top: 3px; }
}

@media (max-width: 380px) {
  .tkg-sky-hero,
  .tkg-sky-hero__grid { min-height: 1060px; }
  .tkg-sky-hero__copy h1 { font-size: 56px; }
  .tkg-sky-hero__collage { grid-template-rows: 310px 145px; height: 465px; }
  .tkg-sky-hero__grid { padding-top: calc(var(--tkg-header-height) + 522px); }
  .tkg-sky-hero__story { padding: 11px; }
  .tkg-sky-hero__story > strong { font-size: 10px; }
  .tkg-sky-intro__copy h2,
  .tkg-sky-section-head h2,
  .tkg-sky-vision__copy h2 { font-size: 31px; }
  .tkg-sky-diagnosis__options { grid-template-columns: 1fr; }
  .tkg-sky-diagnosis__progress li { padding: 10px 7px; }
  .tkg-sky-diagnosis-card { grid-template-columns: 70px minmax(0, 1fr); padding: 14px; }
  .tkg-sky-diagnosis-card__map { height: 70px; }
  .tkg-sky-stampbook__scores > div { padding: 12px; }
  .tkg-sky-stampbook__scores strong { font-size: 27px; }
  .tkg-sky-booking-card { grid-template-columns: 70px minmax(0, 1fr); padding: 16px; }
  .tkg-sky-booking-card__banner { width: 70px; height: 58px; }
  .tkg-sky-booking-card h3 { font-size: 19px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .tkg-sky-header,
  .tkg-sky-reveal,
  .tkg-sky-area-card,
  .tkg-sky-area-card__image,
  .tkg-sky-hero__story-image,
  .tkg-sky-hero__ticker-track,
  .tkg-sky-diagnosis__meter span,
  .tkg-sky-diagnosis__options button,
  .tkg-sky-stampbook__progress span,
  .tkg-sky-stamp-pref__shape,
  .tkg-sky-map-pref__shape,
  .tkg-sky-roulette__button b,
  .tkg-sky-news-card__image img,
  .tkg-sky-booking-card,
  .tkg-sky-hero__cta { animation: none !important; transition: none !important; transform: none !important; }
  .tkg-sky-js .tkg-sky-reveal { opacity: 1; }
}

/* A8.net banner impression pixel: load without affecting layout. */
.tkg-sky-affiliate-pixel {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

/* Unified travel map: roulette + travel log share one prefecture map. */
.tkg-sky-map-hub__switch {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  margin: 0 0 26px;
}
.tkg-sky-map-hub__switch button {
  display: grid;
  gap: 3px;
  min-width: 190px;
  min-height: 54px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .62);
  font-family: var(--tkg-font);
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.tkg-sky-map-hub__switch button:hover { transform: translateY(-2px); }
.tkg-sky-map-hub__switch button span {
  font-family: var(--tkg-font-en);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: .12em;
}
.tkg-sky-map-hub__switch button strong { font-size: 10px; font-weight: 900; }
.tkg-sky-map-hub__switch button.is-active {
  border-color: var(--tkg-butter);
  background: var(--tkg-butter);
  color: var(--tkg-ink);
  box-shadow: 4px 4px 0 var(--tkg-coral);
}
.tkg-sky-map-hub__side { min-width: 0; }
.tkg-sky-map-hub__side > [hidden],
.tkg-sky-roulette [data-map-panel][hidden] { display: none !important; }
.tkg-sky-stampbook__controls--merged {
  min-width: 0;
  padding: clamp(27px, 3.3vw, 39px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 20px;
  background: #242424;
  box-shadow: 7px 7px 0 rgba(145, 183, 255, .72);
}
.tkg-sky-stampbook__controls--merged h3 { font-size: clamp(30px, 3.2vw, 43px); }
.tkg-sky-stampbook__list--merged {
  margin-top: 28px;
  overflow: hidden;
  border: 2px solid var(--tkg-white);
  border-radius: 16px;
}
.tkg-sky-map__hint b { font: inherit; }
.tkg-sky-map-hub__legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px 15px;
  margin: 8px 4px 0;
}
.tkg-sky-map-hub__legend span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .52);
  font-size: 8px;
  font-weight: 700;
}
.tkg-sky-map-hub__legend i {
  width: 13px;
  height: 6px;
  border-radius: 99px;
  background: #91b7ff;
}
.tkg-sky-map-hub__legend span:nth-child(2) i { background: var(--tkg-coral); }
.tkg-sky-map-hub__legend span:nth-child(3) i { background: #e8e6df; }

/* Travel-log mode replaces region colors with saved state colors. */
.tkg-sky-roulette[data-active-map-tool="stamp"] .tkg-sky-map-pref__shape {
  fill: #e8e6df;
  stroke: rgba(25, 25, 25, .58);
  filter: none;
}
.tkg-sky-roulette[data-active-map-tool="stamp"] .tkg-sky-map-pref.is-want .tkg-sky-map-pref__shape {
  fill: #91b7ff;
  stroke: #4977ce;
}
.tkg-sky-roulette[data-active-map-tool="stamp"] .tkg-sky-map-pref.is-visited .tkg-sky-map-pref__shape {
  fill: var(--tkg-coral);
  stroke: var(--tkg-coral-dark);
}
.tkg-sky-roulette[data-active-map-tool="stamp"] .tkg-sky-map-pref.is-active .tkg-sky-map-pref__shape,
.tkg-sky-roulette[data-active-map-tool="stamp"] .tkg-sky-map-pref.is-selected .tkg-sky-map-pref__shape {
  transform: none;
  filter: none;
  stroke-width: 1.05;
}
.tkg-sky-roulette[data-active-map-tool="stamp"] .tkg-sky-map-pref.is-want.is-active .tkg-sky-map-pref__shape,
.tkg-sky-roulette[data-active-map-tool="stamp"] .tkg-sky-map-pref.is-want.is-selected .tkg-sky-map-pref__shape {
  fill: #91b7ff;
  stroke: #4977ce;
}
.tkg-sky-roulette[data-active-map-tool="stamp"] .tkg-sky-map-pref.is-visited.is-active .tkg-sky-map-pref__shape,
.tkg-sky-roulette[data-active-map-tool="stamp"] .tkg-sky-map-pref.is-visited.is-selected .tkg-sky-map-pref__shape {
  fill: var(--tkg-coral);
  stroke: var(--tkg-coral-dark);
}

@media (max-width: 1080px) {
  .tkg-sky-map-hub__switch { justify-content: center; }
  .tkg-sky-map-hub__side { width: min(100%, 680px); margin-inline: auto; }
}

@media (max-width: 768px) {
  .tkg-sky-map-hub__switch {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-bottom: 21px;
  }
  .tkg-sky-map-hub__switch button { min-width: 0; min-height: 51px; padding: 9px 11px; }
  .tkg-sky-map-hub__switch button strong { font-size: 9px; }
  .tkg-sky-stampbook__controls--merged { padding: 26px 21px; border-radius: 18px; box-shadow: 6px 6px 0 rgba(145, 183, 255, .72); }
  .tkg-sky-stampbook__controls--merged h3 { font-size: 31px; }
  .tkg-sky-map-hub__legend { justify-content: flex-start; margin-inline: 8px; }
  .tkg-sky-stampbook__list--merged { margin-top: 22px; }
}

@media (max-width: 380px) {
  .tkg-sky-map-hub__switch button span { font-size: 5px; }
  .tkg-sky-map-hub__switch button strong { font-size: 8px; }
}
.tkg-sky-stampbook__list--merged { color: var(--tkg-ink); }


/* Top-page follow-up tuning: mobile diagnosis heading to 2 lines, and roulette section brighter/pop. */
.tkg-sky-roulette {
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, .64) 0, rgba(255, 255, 255, 0) 24%),
    radial-gradient(circle at 86% 16%, rgba(255, 229, 140, .56) 0, rgba(255, 229, 140, 0) 20%),
    linear-gradient(135deg, #fff3bf 0%, #ffd8ee 46%, #d4efff 100%);
  color: var(--tkg-ink);
}
.tkg-sky-roulette::before { color: rgba(255, 93, 89, .08); }
.tkg-sky-section-head--roulette > p { color: var(--tkg-coral-dark); }
.tkg-sky-section-head--roulette h2 { color: var(--tkg-ink); }
.tkg-sky-roulette__lead,
.tkg-sky-roulette__description { color: rgba(37, 44, 68, .76); }
.tkg-sky-roulette__note { color: rgba(37, 44, 68, .56); }
.tkg-sky-map {
  border-color: rgba(53, 81, 141, .15);
  background: rgba(255, 255, 255, .9);
  box-shadow: 10px 10px 0 rgba(255, 93, 89, .7);
}
.tkg-sky-map__meta { color: #35518d; }
.tkg-sky-map__meta small { color: rgba(53, 81, 141, .56); }
.tkg-sky-map__status {
  border-color: rgba(53, 81, 141, .14);
  background: rgba(255, 255, 255, .9);
}
.tkg-sky-map__status small { color: var(--tkg-coral-dark); }
.tkg-sky-map__status strong { color: var(--tkg-ink); }
.tkg-sky-map__hint { color: rgba(53, 81, 141, .68); }
.tkg-sky-roulette__panel h3 { color: var(--tkg-ink); }
.tkg-sky-roulette__button,
.tkg-sky-roulette__link { border-color: var(--tkg-ink); }

@media (max-width: 768px) {
  .tkg-sky-diagnosis__aside h3 {
    max-width: 8.8em;
    font-size: clamp(26px, 8vw, 33px);
    line-height: 1.24;
    text-wrap: balance;
  }
}
