:root {
  --ink: #102033;
  --paper: #f7f2e8;
  --blue: #3157ff;
  color-scheme: light;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  padding-bottom: calc(116px + env(safe-area-inset-bottom));
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 0%, rgba(49, 87, 255, 0.16), rgba(49, 87, 255, 0) 32%),
    linear-gradient(180deg, var(--paper) 0, rgba(247, 242, 232, 0.8) 42%, var(--paper) 100%);
  color: var(--ink);
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(135deg, rgba(49, 87, 255, 0.09) 1px, rgba(49, 87, 255, 0) 1px),
    linear-gradient(45deg, rgba(16, 32, 51, 0.05) 1px, rgba(16, 32, 51, 0) 1px);
  background-size: 58px 58px, 96px 96px;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-160%);
}

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

.eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.site-header,
.hero-block,
.promo-strip,
.news-section,
.look-section,
.contents-section,
footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.logo-mark,
.circle-mark {
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--blue);
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 26px rgba(49, 87, 255, 0.24);
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header nav a,
.menu-button {
  min-height: 38px;
  border: 0;
  text-decoration: none;
  cursor: pointer;
}

.site-header nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  color: rgba(16, 32, 51, 0.78);
  font-size: 12px;
  font-weight: 900;
  background: rgba(247, 242, 232, 0.74);
  border: 1px solid rgba(247, 242, 232, 0.86);
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--paper);
  background: var(--blue);
  transform: translateY(-2px);
}

.sample-link {
  color: var(--paper) !important;
  background: var(--ink) !important;
}

.menu-button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  background: var(--paper);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.12);
}

.menu-button span {
  display: block;
  width: 16px;
  height: 2px;
  margin: -5px 0;
  background: var(--ink);
  border-radius: 999px;
}

/* Hero */

.hero-block {
  position: relative;
  display: grid;
  min-height: 720px;
  align-items: end;
  padding: 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(247, 242, 232, 0.32), rgba(247, 242, 232, 0) 18%),
    var(--blue);
  border-radius: 0 0 34px 34px;
}

.hero-block::before,
.schedule-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(135deg, rgba(247, 242, 232, 0.18) 1px, rgba(247, 242, 232, 0) 1px),
    linear-gradient(45deg, rgba(247, 242, 232, 0.1) 1px, rgba(247, 242, 232, 0) 1px);
  background-size: 54px 54px, 88px 88px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
  color: var(--paper);
}

.hero-copy .eyebrow {
  color: rgba(247, 242, 232, 0.76);
}

.hero-copy h1 {
  margin: 12px 0 14px;
  font-size: clamp(44px, 8vw, 106px);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.hero-copy p:last-child {
  max-width: 560px;
  margin: 0;
  color: rgba(247, 242, 232, 0.82);
  font-weight: 700;
  line-height: 1.8;
}

.hero-block > img {
  position: absolute;
  right: 42px;
  top: 86px;
  z-index: 1;
  width: min(72%, 850px);
  height: 470px;
  border: 14px solid rgba(247, 242, 232, 0.88);
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(16, 32, 51, 0.14);
}

.hero-badge {
  position: absolute;
  right: 30px;
  bottom: 118px;
  z-index: 3;
  width: 148px;
  min-height: 148px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--ink);
  text-align: center;
  background: var(--paper);
  border: 7px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 20px 45px rgba(16, 32, 51, 0.18);
}

.hero-badge span {
  display: block;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-badge strong {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.25;
}

/* Promo */

.promo-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: -34px;
}

.promo-card {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  overflow: hidden;
  color: var(--paper);
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 18px 36px rgba(16, 32, 51, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.promo-card:hover,
.promo-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(16, 32, 51, 0.22);
}

.promo-card span,
.contents-grid span,
.look-track span,
.news-grid span {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-card strong {
  margin-top: 6px;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1;
}

.promo-blue {
  background:
    linear-gradient(135deg, rgba(247, 242, 232, 0.14), rgba(247, 242, 232, 0)),
    var(--blue);
}

.promo-ink {
  background:
    linear-gradient(135deg, rgba(247, 242, 232, 0.18), rgba(247, 242, 232, 0)),
    var(--ink);
}

.promo-paper {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(49, 87, 255, 0.15), rgba(49, 87, 255, 0)),
    var(--paper);
}

/* Shared sections */

.news-section,
.look-section,
.contents-section {
  padding: 96px 0;
}

.section-head,
.look-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section-head h2,
.look-intro h2,
.contents-section > h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.section-head a,
.look-intro a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  background: var(--paper);
  border: 1px solid rgba(16, 32, 51, 0.13);
  border-radius: 999px;
}

.section-head a::after,
.look-intro a::after {
  content: ">";
  margin-left: 8px;
}

/* News */

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

.news-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  min-height: 116px;
  padding: 18px;
  background: rgba(247, 242, 232, 0.9);
  border: 1px solid rgba(247, 242, 232, 0.86);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(16, 32, 51, 0.08);
}

.news-grid time {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
  background: var(--blue);
  border-radius: 50%;
  font-variant-numeric: tabular-nums;
}

.news-grid span,
.contents-grid span,
.look-track span {
  color: var(--blue);
}

.news-grid h3 {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.news-grid em {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 7px;
  color: var(--paper);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  background: var(--ink);
  border-radius: 999px;
}

/* Schedule */

.schedule-section {
  position: relative;
  overflow: hidden;
  padding: 76px max(20px, calc((100vw - 1120px) / 2)) 88px;
  background: var(--blue);
}

.schedule-section .section-head {
  position: relative;
  z-index: 1;
  color: var(--paper);
}

.schedule-section .section-head a {
  color: var(--paper);
  background: rgba(16, 32, 51, 0.32);
  border-color: rgba(247, 242, 232, 0.25);
}

.schedule-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(860px, 100%);
}

.schedule-list article {
  display: grid;
  grid-template-columns: 88px 160px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 68px;
  padding: 14px 24px;
  color: var(--ink);
  background: rgba(247, 242, 232, 0.9);
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(16, 32, 51, 0.12);
}

.schedule-list span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-list time {
  font-size: 13px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.schedule-list p {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

/* Look */

.look-section {
  display: grid;
  grid-template-columns: minmax(150px, 0.3fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.look-intro {
  display: block;
  margin: 0;
}

.look-intro a {
  margin-top: 18px;
}

.look-track {
  display: grid;
  grid-auto-columns: minmax(330px, 72%);
  grid-auto-flow: column;
  gap: 22px;
  overflow-x: auto;
  padding: 8px 0 18px;
  scroll-snap-type: x mandatory;
}

.look-track article {
  scroll-snap-align: start;
}

.look-track img {
  width: 100%;
  height: 360px;
  border-radius: 4px;
  box-shadow: 0 24px 70px rgba(16, 32, 51, 0.14);
}

.look-track h3 {
  margin: 8px 0 4px;
  font-size: 18px;
  line-height: 1.35;
}

.look-track time {
  color: rgba(16, 32, 51, 0.68);
  font-size: 12px;
  font-weight: 800;
}

/* Circle */

.circle-section {
  display: grid;
  justify-items: center;
  padding: 92px 20px 88px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(49, 87, 255, 0.18), rgba(49, 87, 255, 0) 34%),
    linear-gradient(180deg, var(--paper), rgba(247, 242, 232, 0.86));
}

.circle-mark {
  width: 92px;
  height: 92px;
  margin-bottom: 18px;
  font-size: 44px;
  border-radius: 30px;
}

.circle-section h2 {
  max-width: 720px;
  margin: 12px 0 0;
  font-size: clamp(26px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.circle-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.circle-actions a,
.final-cta a,
.contact-fixed > a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.circle-actions a:first-child,
.final-cta a,
.contact-fixed > a {
  background: var(--blue);
  border-color: var(--blue);
}

.circle-actions a:hover,
.circle-actions a:focus-visible,
.final-cta a:hover,
.final-cta a:focus-visible,
.contact-fixed > a:hover,
.contact-fixed > a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(16, 32, 51, 0.2);
}

/* Contents */

.contents-section {
  padding-top: 78px;
}

.contents-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.contents-grid article {
  min-width: 0;
}

.contents-grid img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.1);
}

.contents-grid h3 {
  margin: 8px 0 6px;
  font-size: 17px;
  line-height: 1.42;
}

.contents-grid p {
  margin: 0;
  color: rgba(16, 32, 51, 0.68);
  font-size: 13px;
  line-height: 1.65;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 56px auto 0;
  padding: 34px;
  background: var(--paper);
  border: 1px solid rgba(16, 32, 51, 0.13);
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(16, 32, 51, 0.14);
}

.final-cta h2 {
  margin: 8px 0 0;
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

/* Footer */

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 0;
  color: rgba(16, 32, 51, 0.68);
  font-size: 12px;
  font-weight: 800;
  border-top: 1px solid rgba(16, 32, 51, 0.13);
}

footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

footer p {
  margin: 0;
}

/* Fixed CTA */

.contact-fixed {
  position: fixed;
  left: 50%;
  bottom: calc(14px + env(safe-area-inset-bottom));
  z-index: 40;
  display: flex;
  width: min(720px, calc(100% - 28px));
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 12px 12px 20px;
  color: var(--ink);
  background: rgba(247, 242, 232, 0.94);
  border: 1px solid rgba(16, 32, 51, 0.14);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(16, 32, 51, 0.18);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.contact-fixed > div > span {
  display: block;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-fixed > div > p {
  margin: 3px 0 0;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

/* Reveal */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */

@media (max-width: 900px) {
  .site-header,
  .hero-block,
  .promo-strip,
  .news-section,
  .look-section,
  .contents-section,
  footer {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    align-items: flex-start;
  }

  .site-header nav a:not(.sample-link) {
    display: none;
  }

  .hero-block {
    min-height: 660px;
    padding: 30px;
  }

  .hero-block > img {
    right: 30px;
    top: 86px;
    width: calc(100% - 60px);
    height: 350px;
  }

  .hero-copy {
    padding-top: 370px;
  }

  .hero-badge {
    right: 18px;
    bottom: 230px;
    width: 118px;
    min-height: 118px;
    border-width: 5px;
  }

  .promo-strip,
  .news-grid,
  .contents-grid {
    grid-template-columns: 1fr;
  }

  .schedule-list article {
    grid-template-columns: 76px 1fr;
  }

  .schedule-list p {
    grid-column: 2;
  }

  .look-section {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .look-track {
    grid-auto-columns: minmax(280px, 84%);
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: calc(154px + env(safe-area-inset-bottom));
  }

  .site-header {
    padding-top: 18px;
  }

  .logo {
    font-size: 18px;
  }

  .logo-mark {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .sample-link {
    max-width: 96px;
    padding-inline: 10px !important;
    font-size: 11px !important;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .hero-block {
    min-height: 610px;
    padding: 18px;
    border-radius: 0 0 24px 24px;
  }

  .hero-block > img {
    right: 18px;
    top: 74px;
    width: calc(100% - 36px);
    height: 280px;
    border-width: 8px;
  }

  .hero-copy {
    padding-top: 328px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 14vw, 58px);
  }

  .hero-copy p:last-child {
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-badge {
    display: none;
  }

  .promo-strip {
    margin-top: 12px;
  }

  .news-section,
  .look-section,
  .contents-section {
    padding: 68px 0;
  }

  .schedule-section {
    padding-top: 60px;
    padding-bottom: 68px;
  }

  .schedule-list article {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px;
  }

  .schedule-list p {
    grid-column: auto;
  }

  .look-track img {
    height: 260px;
  }

  .circle-section {
    padding: 72px 18px;
  }

  .circle-actions,
  footer,
  footer div {
    flex-direction: column;
  }

  .circle-actions a,
  .final-cta a {
    width: 100%;
  }

  .final-cta {
    padding: 24px;
  }

  .contact-fixed {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
  }

  .contact-fixed > a {
    width: 100%;
  }

  .contact-fixed > div > p {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .promo-card:hover,
  .promo-card:focus-visible,
  .site-header nav a:hover,
  .site-header nav a:focus-visible,
  .circle-actions a:hover,
  .circle-actions a:focus-visible,
  .final-cta a:hover,
  .final-cta a:focus-visible,
  .contact-fixed > a:hover,
  .contact-fixed > a:focus-visible {
    transform: none;
  }
}
