:root {
  --blue: #8BCBE5;
  --blue-strong: #3FA8D5;
  --pink: #F4A2C7;
  --yellow: #F7D76B;
  --orange: #F28A2E;
  --ink: #3B3B42;
  --muted: #72727A;
  --paper: #FFFFFF;
  --soft: #F7FBFD;
  --line: rgba(59, 59, 66, .14);
  --shadow: 0 20px 50px rgba(63, 168, 213, .16);
  --radius: 8px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
h1, h2, h3, .lead, .btn, summary { word-break: auto-phrase; text-wrap: balance; letter-spacing: 0; }
h1, h2, h3, p { margin-top: 0; }
p { margin-bottom: 1.1em; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--orange);
  color: #fff;
  padding: 10px 16px;
}
.skip-link:focus { left: 8px; top: 8px; }
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(139, 203, 229, .35);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand strong {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  line-height: 1.2;
}
.brand span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav__grab,
.site-nav__head {
  display: none;
}
.site-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: #4F5158;
  font-size: 14px;
  font-weight: 700;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(139, 203, 229, .18);
  color: #1D6E91;
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  position: relative;
}
.menu-toggle b {
  display: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle span { top: 22px; }
.menu-toggle::before { top: 16px; }
.menu-toggle::after { top: 28px; }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.4;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 26px rgba(242, 138, 46, .25);
}
.btn-secondary {
  background: #fff;
  color: #1F6F91;
  border-color: rgba(63, 168, 213, .28);
}
.btn-line {
  background: #06C755;
  color: #fff;
  box-shadow: 0 12px 26px rgba(6, 199, 85, .2);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn::after {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  flex: 0 0 auto;
}
.btn.no-arrow::after { display: none; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}
.section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}
.section--white { background: #fff; }
.section--blue { background: linear-gradient(180deg, #EAF8FE 0%, #FFFFFF 100%); }
.section--yellow { background: linear-gradient(180deg, rgba(247, 215, 107, .24), #fff); }
.section__head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 42px;
}
.section__head.center {
  display: block;
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1D6E91;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9A3C68;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 13px;
  font-weight: 900;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--pink);
}
.section-label::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--yellow) 0 42%, transparent 44%), rgba(139, 203, 229, .22);
}
.section h2,
.page-hero h1 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.28;
  margin-bottom: 16px;
}
.lead {
  font-size: clamp(17px, 2vw, 20px);
  color: #50525A;
  max-width: 720px;
}
.note { color: var(--muted); font-size: 14px; }

.hero {
  position: relative;
  width: 100%;
  min-height: 760px;
  background:
    radial-gradient(circle at 12% 20%, rgba(244, 162, 199, .24), transparent 20%),
    radial-gradient(circle at 82% 8%, rgba(247, 215, 107, .32), transparent 18%),
    linear-gradient(180deg, #fff 0%, #F3FBFE 100%);
  overflow: hidden;
}
.hero::before,
.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(63, 168, 213, .18) 0 10px, transparent 10px 22px);
  height: 60px;
  opacity: .5;
  transform: rotate(-4deg);
}
.hero::before { width: 52vw; left: -12vw; bottom: 48px; border-radius: 999px; }
.hero::after { width: 38vw; right: -10vw; top: 112px; border-radius: 999px; }
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1360px, calc(100% - 40px));
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 40px;
  padding: 78px 0 62px;
}
.hero-copy { max-width: 610px; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px dashed rgba(63, 168, 213, .55);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #1D6E91;
  font-weight: 800;
}
.hero h1 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.12;
  margin: 24px 0 22px;
}
.hero h1 .line {
  display: block;
  white-space: nowrap;
}
.hero h1 .mark {
  color: #1D88B5;
  background: linear-gradient(transparent 62%, rgba(247, 215, 107, .72) 62%);
}
.hero-text {
  font-size: clamp(17px, 2vw, 21px);
  color: #555760;
  max-width: 560px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.stat-chip {
  min-width: 128px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(139, 203, 229, .45);
  background: rgba(255, 255, 255, .76);
}
.stat-chip strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  line-height: 1;
  color: #1D88B5;
}
.stat-chip span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}
.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0 -8vw 0 0;
  border-radius: 28px 0 0 28px;
  overflow: hidden;
  opacity: .9;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.holo-stage {
  position: relative;
  z-index: 1;
  width: min(420px, 74vw);
  perspective: 900px;
}
.holo-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 34px 70px rgba(48, 117, 148, .26);
  transform-style: preserve-3d;
  will-change: transform;
}
.holo-card img { width: 100%; height: 100%; object-fit: cover; }
.holo-card__sheen {
  position: absolute;
  inset: 0;
  opacity: .5;
  mix-blend-mode: color-dodge;
  background: linear-gradient(115deg, transparent 22%, rgba(244, 162, 199, .55), rgba(139, 203, 229, .62), rgba(247, 215, 107, .46), transparent 78%);
  background-size: 210% 210%;
}
.holo-card__caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .84);
  backdrop-filter: blur(14px);
}
.holo-card__caption span {
  display: block;
  color: #1D6E91;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
}
.holo-card__caption strong {
  display: block;
  margin-top: 4px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 22px;
  line-height: 1.4;
}
.ticket-note {
  position: absolute;
  right: 6%;
  bottom: 4%;
  z-index: 2;
  max-width: 210px;
  padding: 14px 16px;
  background: #fff;
  border: 1px dashed rgba(63, 168, 213, .5);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(4deg);
  font-weight: 800;
  color: #1D6E91;
  animation: floatTicket 5.5s ease-in-out infinite;
}
@keyframes floatTicket {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-8px); }
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 44px;
  align-items: center;
}
.big-copy {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(32px, 6vw, 72px);
  line-height: 1.18;
  color: #1D88B5;
}
.manga-frame,
.visual-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(139, 203, 229, .42);
  background: #fff;
  box-shadow: var(--shadow);
}
.manga-frame img,
.visual-frame img { width: 100%; height: auto; }
.quote-line {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.45;
}
.quote-line strong { color: var(--orange); }

.answer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
}
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(139, 203, 229, .4);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: center;
}
.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}
.split.reverse .split-media { order: -1; }
.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(139, 203, 229, .38);
  background: #fff;
  box-shadow: var(--shadow);
}
.split-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.editorial-list {
  display: grid;
  gap: 18px;
  border-top: 1px solid var(--line);
}
.editorial-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.editorial-item b {
  color: var(--pink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
  line-height: 1;
}
.editorial-item h3 {
  margin-bottom: 4px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 22px;
}

.service-map {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 30px;
  align-items: start;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.service-card,
.work-card,
.line-card,
.price-card,
.faq-card,
.news-card {
  border-radius: var(--radius);
  border: 1px solid rgba(139, 203, 229, .42);
  background: rgba(255, 255, 255, .9);
}
.service-card {
  min-height: 230px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}
.service-card h3,
.work-card h3,
.line-card h3,
.price-card h3,
.news-card h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 22px;
  line-height: 1.35;
  margin-bottom: 8px;
}
.guide-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px dashed rgba(63, 168, 213, .55);
  box-shadow: var(--shadow);
}
.guide-panel .route {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.route span {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: #F4FBFE;
  font-weight: 800;
}

.stats-band {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 38px;
  align-items: center;
}
.mega-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(72px, 12vw, 148px);
  line-height: .9;
  color: #1D88B5;
  letter-spacing: 0;
}
.stat-list {
  display: grid;
  gap: 14px;
}
.stat-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.stat-row strong {
  font-family: "Space Grotesk", sans-serif;
  color: var(--orange);
  font-size: 34px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 16px;
}
.work-card {
  min-height: 430px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.work-card--person { background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(240, 250, 254, .82)); }
.work-card__thumb {
  margin: -20px -20px 8px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #EAF8FE, #FFF8E0);
  border-bottom: 1px solid rgba(139, 203, 229, .36);
}
.work-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform .24s ease;
}
.work-card:hover .work-card__thumb img { transform: scale(1.03); }
.work-card__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.work-card__meta {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(244, 162, 199, .18);
  color: #9A3C68;
  font-weight: 800;
  font-size: 12px;
}
.work-card__kind {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(247, 215, 107, .32);
  color: #75520B;
  font-weight: 800;
  font-size: 12px;
}
.work-card__role {
  margin-top: -4px;
  color: #1D6E91;
  font-weight: 900;
  font-size: 13px;
}
.work-card a {
  margin-top: auto;
  color: #1D6E91;
  font-weight: 900;
}
.work-strip {
  display: flex;
  gap: 14px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.work-strip img {
  flex: 0 0 260px;
  width: 260px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.line-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}
.line-card {
  padding: 22px;
}
.line-card:nth-child(2n) { background: #FFF8E0; }
.line-card:nth-child(3n) { background: #FFF1F8; }
.line-card:nth-child(4n) { background: #F0FAFE; }

.profile {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: center;
}
.profile-photo {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.profile-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; }
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.story-card {
  position: relative;
  min-height: 260px;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(139, 203, 229, .42);
  box-shadow: 0 14px 34px rgba(45, 96, 120, .08);
}
.story-card span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 900;
}
.story-card:nth-child(2) span { background: var(--orange); }
.story-card:nth-child(3) span { background: var(--blue); }
.story-card h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 22px;
  line-height: 1.35;
  margin-bottom: 10px;
}
.story-card p { color: #575A62; }
.timeline {
  display: grid;
  gap: 14px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.timeline-item time {
  color: #1D88B5;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: start;
}
.price-card {
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}
.price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 12px 0 20px;
}
.price strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(48px, 8vw, 86px);
  line-height: .9;
  color: var(--orange);
}
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.check-list li {
  position: relative;
  padding-left: 24px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(247, 215, 107, .28);
}

.faq-list {
  display: grid;
  gap: 12px;
}
.faq-card {
  overflow: hidden;
}
.faq-card summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
  list-style: none;
}
.faq-card summary::-webkit-details-marker { display: none; }
.faq-card summary::after {
  content: "";
  float: right;
  width: 10px;
  height: 10px;
  margin-top: 9px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
}
.faq-card[open] summary::after { transform: rotate(225deg); margin-top: 14px; }
.faq-card p {
  margin: 0;
  padding: 0 20px 20px;
  color: #575A62;
}

.cta-band {
  position: relative;
  padding: 64px 0;
  background: linear-gradient(135deg, #EAF8FE 0%, #FFF8E0 55%, #FFF1F8 100%);
  overflow: hidden;
}
.cta-panel {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}
.cta-panel h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.32;
  margin-bottom: 10px;
}

.page-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: center;
  padding: 74px 0;
  background: linear-gradient(180deg, #fff 0%, #EAF8FE 100%);
  overflow: hidden;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .7fr);
  gap: 32px;
  align-items: center;
}
.page-hero__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(139, 203, 229, .38);
  box-shadow: var(--shadow);
}
.page-hero__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}
.breadcrumbs a { color: #1D6E91; font-weight: 800; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: start;
}
.contact-box {
  border-radius: var(--radius);
  border: 1px solid rgba(139, 203, 229, .42);
  background: #fff;
  padding: 24px;
}
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: #fff;
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.agreement {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #555760;
  font-weight: 500;
}
.agreement input { width: auto; margin-top: 8px; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.news-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.news-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.news-card__body { padding: 20px; }
.tag {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(139, 203, 229, .2);
  color: #1D6E91;
  font-size: 12px;
  font-weight: 900;
}

.legal {
  display: grid;
  gap: 26px;
  max-width: 880px;
}
.legal h2 {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 24px;
}

.site-footer {
  background: #2F3338;
  color: #fff;
  padding: 58px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 34px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand img { width: 48px; height: 48px; object-fit: contain; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px 18px;
}
.footer-links a {
  color: rgba(255, 255, 255, .82);
  min-height: 34px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
}

.reveal {
  opacity: 1;
  transform: none;
}
.j .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.j .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 980px) {
  .site-header {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: none;
  }
  body.is-locked::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(35, 31, 28, .42);
    backdrop-filter: blur(2px);
  }
  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-height: calc(100dvh - 86px);
    padding: 12px 18px 30px;
    border-radius: 26px 26px 0 0;
    background: #fff;
    box-shadow: 0 -24px 50px -24px rgba(35, 31, 28, .42);
    border: 1px solid rgba(139, 203, 229, .34);
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(105%);
    transition: transform .55s cubic-bezier(.22, 1, .36, 1), visibility .55s;
  }
  .site-nav__grab {
    display: block;
    grid-column: 1 / -1;
    width: 44px;
    height: 5px;
    margin: 0 auto -2px;
    border-radius: 999px;
    background: rgba(59, 59, 66, .22);
  }
  .site-nav__head {
    grid-column: 1 / -1;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 4px 12px;
    border-bottom: 1px solid rgba(59, 59, 66, .12);
  }
  .site-nav__head b {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 17px;
    letter-spacing: .08em;
  }
  .site-nav__head small {
    font-family: "Space Grotesk", sans-serif;
    font-size: 9px;
    letter-spacing: .22em;
    color: #1D6E91;
    font-weight: 800;
  }
  .site-nav.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .site-nav a {
    min-height: 96px;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(139, 203, 229, .34);
    border-radius: 14px;
    background: #F7FBFD;
    color: var(--ink);
    font-size: 15px;
  }
  .site-nav a:nth-of-type(5) {
    grid-column: 1 / -1;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    border: 0;
    border-radius: 0;
    border-bottom: 1px dashed rgba(59, 59, 66, .18);
    background: transparent;
    padding: 12px 6px;
    font-size: 14px;
  }
  .site-nav a:nth-of-type(5)::before {
    display: none;
  }
  .site-nav a:nth-of-type(5)::after {
    content: "→";
    display: inline-block;
    color: #1D6E91;
    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    font-weight: 900;
  }
  .site-nav a::before {
    content: attr(data-en);
    font-family: "Space Grotesk", sans-serif;
    font-size: 9px;
    letter-spacing: .18em;
    color: #1D6E91;
    font-weight: 800;
  }
  .site-nav a::after {
    content: attr(data-desc);
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
  }
  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    background: #EAF8FE;
  }
  .site-nav a:last-child {
    grid-column: 1 / -1;
    min-height: 56px;
    align-items: center;
    background: #06C755;
    color: #fff;
    border-color: transparent;
    border-radius: 13px;
    box-shadow: 0 12px 26px rgba(6, 199, 85, .2);
  }
  .site-nav a:last-child::before,
  .site-nav a:last-child::after {
    display: none;
  }
  .menu-toggle {
    z-index: 100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 78px;
    height: 42px;
    padding: 0 14px 0 38px;
  }
  .menu-toggle b { display: block; }
  .menu-toggle span,
  .menu-toggle::before,
  .menu-toggle::after {
    left: 14px;
    right: auto;
    width: 15px;
  }
  .menu-toggle[aria-expanded="true"] {
    background: var(--ink);
    color: #fff;
  }
  .menu-toggle[aria-expanded="true"] span,
  .menu-toggle[aria-expanded="true"]::before,
  .menu-toggle[aria-expanded="true"]::after {
    background: #fff;
  }
  .header-actions .btn { display: none; }
  .hero-inner,
  .intro-grid,
  .section__head,
  .split,
  .split.reverse,
  .service-map,
  .stats-band,
  .line-grid,
  .profile,
  .price-layout,
  .page-hero__inner,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .split.reverse .split-media { order: 0; }
  .guide-panel { position: static; }
  .hero-visual { min-height: 470px; }
  .hero-bg { inset: 0; border-radius: 24px; }
  .cta-panel { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  .wrap, .header-inner, .hero-inner, .cta-panel { width: min(100% - 28px, var(--max)); }
  .section { padding: 66px 0; }
  .hero { min-height: auto; }
  .hero-inner { min-height: auto; padding: 44px 0 44px; gap: 24px; }
  .hero h1 .line { white-space: normal; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; }
  .stat-chip { min-width: 0; }
  .ticket-note { position: relative; right: auto; bottom: auto; margin: -20px auto 0; }
  .service-cards, .work-grid, .news-grid, .story-grid { grid-template-columns: 1fr; }
  .work-card { min-height: auto; }
  .story-card { min-height: auto; }
  .editorial-item, .timeline-item, .stat-row { grid-template-columns: 1fr; gap: 6px; }
  .page-hero { min-height: auto; padding: 54px 0; }
  .footer-bottom { display: grid; }
}

@media (hover: none) {
  .btn, .site-nav a, .menu-toggle { min-height: 44px; }
}

body.home-variant-c .hero {
  min-height: 800px;
  background:
    linear-gradient(112deg, rgba(247, 215, 107, .58) 0 28%, transparent 28% 100%),
    radial-gradient(circle at 88% 10%, rgba(244, 162, 199, .22), transparent 22%),
    linear-gradient(180deg, #fff 0%, #EAF8FE 100%);
}
body.home-variant-c .hero::before {
  background: repeating-linear-gradient(90deg, rgba(247, 215, 107, .72) 0 12px, transparent 12px 24px);
}
body.home-variant-c .hero-inner {
  min-height: 800px;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}
.hero--poster h1 {
  font-size: clamp(38px, 5.8vw, 76px);
  line-height: 1.08;
}
.hero--poster h1 .mark {
  color: #1785B2;
  background: linear-gradient(transparent 58%, rgba(247, 215, 107, .88) 58%);
}
.hero--poster .hero-text {
  max-width: 590px;
  font-weight: 700;
}
.poster-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}
.poster-frame {
  position: relative;
  width: min(390px, 72vw);
  overflow: visible;
  border: 10px solid #fff;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 34px 72px rgba(45, 96, 120, .22);
  transform: rotate(2deg);
}
.poster-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 980px) {
  body.home-variant-c .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}
@media (max-width: 768px) {
  body.home-variant-c .hero {
    background:
      linear-gradient(104deg, rgba(247, 215, 107, .74) 0 33%, transparent 33% 100%),
      linear-gradient(180deg, #fff 0%, #EAF8FE 100%);
  }
  body.home-variant-c .hero-inner {
    padding-top: 28px;
  }
  .hero--poster h1 {
    font-size: clamp(34px, 10.6vw, 50px);
  }
  .hero--poster .hero-actions {
    margin: 18px 0 14px;
  }
  .hero--poster .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .hero--poster .stat-chip {
    padding: 9px 8px;
  }
  .hero--poster .stat-chip strong {
    font-size: 20px;
  }
  .hero--poster .stat-chip span {
    font-size: 10px;
    line-height: 1.25;
  }
  .poster-stage {
    min-height: auto;
    margin-top: 8px;
  }
  .poster-frame {
    width: min(100%, 330px);
    border-width: 7px;
    transform: none;
  }
}

/* WordPress dynamic content */
.admin-bar .site-header { top: 32px; }
.p-newsgrid,
.wp-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.p-card,
.archive-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(63, 168, 213, .22);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.p-card__ph,
.archive-card__thumb {
  overflow: hidden;
  background: #EAF8FE;
}
.p-card__ph img,
.archive-card__thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.p-card__bd,
.archive-card__body { padding: 20px; }
.p-card__meta,
.archive-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: #1D6E91;
  font-size: 13px;
  font-weight: 800;
}
.p-card__ttl,
.archive-card__title {
  margin-bottom: 8px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  line-height: 1.45;
}
.p-newsgrid .archive-card__title,
.wp-archive-grid .archive-card__title {
  font-size: clamp(18px, 1.7vw, 20px);
}
.p-card__ex,
.archive-card__excerpt { color: var(--muted); }
.p-card__more,
.archive-card__more {
  display: inline-flex;
  margin-top: auto;
  color: #1D6E91;
  font-weight: 900;
}
.post-wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 96px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 42px;
}
.post-main {
  min-width: 0;
  border: 1px solid rgba(63, 168, 213, .22);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.post-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: 8px 8px 0 0;
}
.single-post .page-hero__media {
  background: #fff;
}
.single-post .page-hero__media img {
  display: block;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}
.single-post .post-figure {
  display: none;
}
.post-body {
  padding: 36px;
}
.post-body h2,
.post-body h3 {
  margin-top: 1.8em;
  font-family: "Zen Maru Gothic", sans-serif;
}
.post-body p,
.post-body li { line-height: 2; }
.post-side {
  display: grid;
  align-content: start;
  gap: 18px;
}
.widget {
  border: 1px solid rgba(63, 168, 213, .22);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  box-shadow: var(--shadow);
}
.widget__ttl,
.widget h2,
.widget h3 {
  margin-bottom: 12px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
}
.pagination,
.nav-links {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(63, 168, 213, .28);
  border-radius: 999px;
  background: #fff;
  font-weight: 900;
}
.page-numbers.current {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.empty-state {
  padding: 32px;
  border: 1px dashed rgba(63, 168, 213, .42);
  border-radius: 8px;
  background: #fff;
}
@media (max-width: 900px) {
  .p-newsgrid,
  .wp-archive-grid,
  .post-wrap {
    grid-template-columns: 1fr;
  }
  .post-wrap { padding: 54px 0 72px; }
  .post-body { padding: 24px; }
  .p-newsgrid .archive-card__title,
  .wp-archive-grid .archive-card__title {
    font-size: 19px;
    line-height: 1.45;
  }
}
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}
