@charset "UTF-8";
:root {
  --bgL: #EDEFF6;
  --bgL-rgb: 237, 239, 246;
  --navy: #0B1D71;
  --navy-deep: #081652;
  --navy-base: #0a1654;
  --ink: #18225E;
  --muted: #5F699B;
  --cream: #EEF1FA;
  --cream-70: rgba(238, 241, 250, 0.74);
  --cream-45: rgba(238, 241, 250, 0.45);
  --line: rgba(24, 34, 94, 0.15);
  --line-cream: rgba(238, 241, 250, 0.22);
  --accent: #B8852F;
  --accent-soft: #C79447;
  --gold-bright: oklch(0.83 0.11 82);
  --card: #FFFFFF;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Manrope", "Noto Sans JP", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-jp);
  background: var(--bgL);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

em {
  font-style: normal;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.container-wide {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.en {
  font-family: var(--font-en);
}

main {
  position: relative;
  z-index: 1;
  display: block;
}

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

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

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    transition: none;
    opacity: 1;
    transform: none;
  }
  html {
    scroll-behavior: auto;
  }
}
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(var(--bgL-rgb), 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.4s;
}

.header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 24px rgba(11, 29, 113, 0.05);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  height: 30px;
  width: auto;
}

.brand-logo {
  height: 22px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-text strong {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-text span {
  font-size: 9.5px;
  opacity: 0.6;
  font-family: var(--font-en);
  letter-spacing: 0.14em;
}

.gnav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  align-items: center;
}

.gnav > a, .gnav .has-sub > a {
  font-size: 13px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  display: inline-block;
  white-space: nowrap;
}

.gnav > a::after, .gnav .has-sub > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.gnav > a:hover::after, .gnav .has-sub:hover > a::after, .gnav > a.current::after {
  transform: scaleX(1);
}

.gnav a.current {
  color: var(--accent);
}

.has-sub {
  position: relative;
}

.has-sub > a::before {
  content: "▾";
  font-size: 9px;
  margin-left: 5px;
  opacity: 0.5;
}

.sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 236px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 20px 48px rgba(11, 29, 113, 0.14);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, transform 0.25s;
}

.has-sub:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.sub-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.sub-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 11px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.sub-menu a:hover {
  background: var(--bgL);
  color: var(--accent);
}

.sub-menu a .n {
  font-family: var(--font-en);
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  padding: 13px 28px;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
  border: none;
  font-family: var(--font-jp);
}

.btn-fill {
  background: var(--navy);
  color: var(--cream);
}

.btn-fill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11, 29, 113, 0.3);
}

.btn-line {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

.btn-line:hover {
  background: var(--ink);
  color: var(--bgL);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--accent);
  color: #fff;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(184, 133, 47, 0.34);
}

.btn .arrow {
  transition: transform 0.25s;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

.header .btn {
  padding: 11px 22px;
  font-size: 13px;
}

.label-row {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.label-row::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--accent);
}

.page-hero {
  position: relative;
  background: var(--navy-base);
  color: var(--cream);
  padding: 168px 0 72px;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #0b1d71 0%, rgba(11, 29, 113, 0.62) 38%, rgba(11, 29, 113, 0.28) 64%, rgba(11, 29, 113, 0.08) 84%, rgba(11, 29, 113, 0) 100%);
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 33.33%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line-cream);
  box-shadow: 33.33vw 0 0 var(--line-cream);
  pointer-events: none;
  opacity: 0.6;
}

.page-hero .container {
  z-index: 2;
}

.page-hero .word {
  position: absolute;
  right: 3%;
  bottom: -0.18em;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(90px, 15vw, 220px);
  line-height: 1;
  color: rgba(238, 241, 250, 0.05);
  letter-spacing: 0.01em;
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
}

.ph-eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--accent-soft);
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-top: 18px;
  text-wrap: balance;
}

.page-hero .ph-en {
  display: block;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--cream-70);
  margin-top: 14px;
}

.page-hero .ph-lead {
  font-size: 15.5px;
  color: var(--cream-70);
  max-width: 42em;
  margin-top: 24px;
  text-wrap: pretty;
}

.crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--cream-70);
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.crumb a {
  transition: color 0.2s;
}

.crumb a:hover {
  color: var(--cream);
}

.crumb .sep {
  opacity: 0.5;
}

.crumb .cur {
  color: var(--accent-soft);
}

section.block {
  padding: 104px 0;
  position: relative;
}

section.block.tight {
  padding: 72px 0;
}

.sec-head {
  max-width: 760px;
}

.sec-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 900;
  line-height: 1.4;
  margin-top: 16px;
  text-wrap: balance;
}

.sec-head p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 18px;
  text-wrap: pretty;
}

.lead-xl {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.85;
  letter-spacing: 0.01em;
  text-wrap: pretty;
}

.lead-xl em {
  color: var(--accent);
}

.prose p {
  font-size: 15.5px;
  color: var(--muted);
  margin-top: 20px;
  line-height: 2;
  text-wrap: pretty;
}

.prose p:first-child {
  margin-top: 0;
}

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

.rule {
  height: 1px;
  background: var(--line);
  border: none;
}

.feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feat + .feat {
  margin-top: 88px;
}

.feat.rev .feat-media {
  order: 2;
}

.feat-media {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #dfe3ef;
}

.feat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feat-media .tag {
  position: absolute;
  left: 0;
  top: 24px;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 9px 20px 9px 24px;
}

.feat-body .no {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.feat-body h3 {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5;
  margin-top: 12px;
  text-wrap: pretty;
}

.feat-body p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 18px;
  text-wrap: pretty;
}

.cards {
  display: grid;
  gap: 24px;
}

.cards.c3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards.c2 {
  grid-template-columns: repeat(2, 1fr);
}

.s-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--card);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.s-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(11, 29, 113, 0.12);
  border-color: transparent;
}

.s-card .s-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #dfe3ef;
  position: relative;
}

.s-card .s-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.s-card:hover .s-media img {
  transform: scale(1.05);
}

.s-card .s-no {
  position: absolute;
  left: 16px;
  top: 14px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 8px rgba(11, 29, 113, 0.6);
}

.s-card .s-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.s-card .fit {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}

.s-card h3 {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
  margin-top: 10px;
  text-wrap: pretty;
}

.s-card p {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 14px;
  flex: 1;
  text-wrap: pretty;
}

.s-card .more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 22px;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 3px;
  align-self: flex-start;
  transition: color 0.25s, border-color 0.25s;
}

.s-card:hover .more {
  color: var(--accent);
  border-color: var(--accent);
}

.col-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--card);
  transition: transform 0.3s, box-shadow 0.3s;
}

.col-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11, 29, 113, 0.1);
}

.col-card .c-media {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: repeating-linear-gradient(-45deg, #E0E4F1 0 12px, #E9ECF6 12px 24px);
  display: grid;
  place-items: center;
}

.col-card .c-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ph-note {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 10.5px;
  color: #8E97C0;
  background: rgba(255, 255, 255, 0.85);
  border: 1px dashed #B9C1E0;
  border-radius: 6px;
  padding: 3px 9px;
}

.col-card .c-body {
  padding: 20px 22px 24px;
}

.c-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 2px 12px;
}

.col-card h3 {
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 13px;
  text-wrap: pretty;
}

.col-card time {
  display: block;
  font-family: var(--font-en);
  font-size: 11.5px;
  color: #8E97C0;
  margin-top: 12px;
}

.row-list {
  border-top: 1px solid var(--line);
}

.row-item {
  display: grid;
  grid-template-columns: 130px 120px 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 26px 6px;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s;
}

.row-item:hover {
  background: rgba(255, 255, 255, 0.6);
}

.row-item time {
  font-family: var(--font-en);
  color: var(--muted);
  font-size: 13.5px;
}

.row-item .cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 3px 0;
  text-align: center;
  width: 96px;
}

.row-item .ttl {
  font-weight: 700;
  font-size: 15px;
  text-wrap: pretty;
}

.row-item:hover .ttl {
  color: var(--accent);
}

.row-item .go {
  font-family: var(--font-en);
  color: var(--muted);
  transition: transform 0.25s, color 0.25s;
}

.row-item:hover .go {
  color: var(--accent);
  transform: translateX(3px);
}

.dl-table {
  border-top: 1px solid var(--line);
}

.dl-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  padding: 24px 6px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.dl-row dt {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.dl-row dd {
  font-size: 15px;
  color: var(--muted);
  text-wrap: pretty;
}

.dl-row dd a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.acc-item {
  border-top: 1px solid var(--line);
}

.acc-item:last-child {
  border-bottom: 1px solid var(--line);
}

.acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 6px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.acc-q {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--accent);
  font-size: 15px;
  flex-shrink: 0;
}

.acc-toggle {
  margin-left: auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  transition: background 0.25s, border-color 0.25s;
}

.acc-toggle::before, .acc-toggle::after {
  content: "";
  position: absolute;
  background: var(--muted);
  transition: transform 0.3s, background 0.25s;
}

.acc-toggle::before {
  width: 11px;
  height: 1.5px;
}

.acc-toggle::after {
  width: 1.5px;
  height: 11px;
}

.acc-item.is-open .acc-toggle {
  background: var(--navy);
  border-color: var(--navy);
}

.acc-item.is-open .acc-toggle::before {
  background: var(--cream);
}

.acc-item.is-open .acc-toggle::after {
  transform: scaleY(0);
}

.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.acc-item.is-open .acc-panel {
  grid-template-rows: 1fr;
}

.acc-panel-inner {
  overflow: hidden;
}

.acc-panel p {
  padding: 0 6px 26px 56px;
  font-size: 14.5px;
  color: var(--muted);
  text-wrap: pretty;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.field.full {
  grid-column: 1/-1;
}

.field label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.field label .req {
  font-size: 10.5px;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  border-radius: 4px;
  padding: 1px 7px;
  letter-spacing: 0.04em;
}

.field label .opt {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1px 7px;
}

.field input, .field select, .field textarea {
  font-family: var(--font-jp);
  font-size: 15px;
  color: var(--ink);
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.field textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.8;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 133, 47, 0.14);
}

.field input::placeholder, .field textarea::placeholder {
  color: #A6AECB;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 6px;
}

.form-consent input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
}

.form-consent a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.form-actions {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.form-actions .btn {
  padding: 17px 56px;
  font-size: 15px;
}

.cm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cm-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 38px 36px;
  background: var(--card);
}

.cm-card .eyebrow {
  margin-bottom: 16px;
}

.cm-card h3 {
  font-size: 21px;
  font-weight: 900;
}

.cm-card p {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 10px;
  text-wrap: pretty;
}

.cm-card .tel {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 16px;
}

.cm-card .hours {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 6px;
}

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}

.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 20px 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  text-wrap: pretty;
}

.checklist li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-top: 2px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/15px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/15px no-repeat;
}

.steps {
  display: grid;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.step .step-no {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0;
  padding-left: 16px;
  position: relative;
  align-self: start;
  padding-top: 4px;
}

.step .step-no::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.step .step-no::after {
  content: "";
  position: absolute;
  left: 3px;
  top: calc(50% + 8px);
  width: 2px;
  bottom: -40px;
  background: var(--accent);
}

.steps .step:last-child .step-no::after {
  display: none;
}

.step .step-no b {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}

.step h3 {
  font-size: 22px;
  font-weight: 900;
}

.step p {
  font-size: 14.5px;
  color: var(--muted);
  margin-top: 12px;
  text-wrap: pretty;
  line-height: 1.9;
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mini-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

a.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11, 29, 113, 0.1);
  border-color: transparent;
}

.mini-card .n {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}

.mini-card h4 {
  font-size: 16.5px;
  font-weight: 900;
  line-height: 1.5;
  text-wrap: pretty;
}

.mini-card .more {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
  margin-top: 6px;
}

a.mini-card:hover .more {
  color: var(--accent);
}

@media (max-width: 760px) {
  .mini-cards {
    grid-template-columns: 1fr;
  }
  .cards.c2 {
    grid-template-columns: 1fr;
  }
  .checklist {
    grid-template-columns: 1fr;
  }
  .step {
    grid-template-columns: 80px 1fr;
    gap: 16px;
    padding: 28px 0;
  }
  .step .step-no::after {
    bottom: -28px;
  }
}
.cta {
  position: relative;
  background: var(--navy-base);
  color: var(--cream);
  padding: 104px 0;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #0b1d71 0%, rgba(11, 29, 113, 0.5) 46%, rgba(11, 29, 113, 0.12) 78%, rgba(11, 29, 113, 0) 100%);
  pointer-events: none;
}

.cta .container {
  z-index: 2;
  text-align: center;
}

.cta .eyebrow {
  justify-content: center;
  color: var(--accent-soft);
}

.cta .eyebrow::before {
  background: var(--accent-soft);
}

.cta h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.4;
  margin-top: 20px;
  text-wrap: balance;
}

.cta p {
  font-size: 15px;
  color: var(--cream-70);
  margin-top: 20px;
  max-width: 40em;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 38px;
}

.cta .btn-fill {
  background: var(--cream);
  color: var(--navy-deep);
}

.cta .btn-fill:hover {
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
}

.cta .btn-line {
  border-color: var(--cream-70);
  color: var(--cream);
}

.cta .btn-line:hover {
  background: var(--cream);
  color: var(--navy-deep);
}

.cta .tel-line {
  margin-top: 30px;
  font-size: 13.5px;
  color: var(--cream-70);
}

.cta .tel-line b {
  font-family: var(--font-en);
  font-size: 22px;
  color: var(--cream);
  font-weight: 700;
  vertical-align: middle;
  margin-left: 8px;
}

.footer {
  position: relative;
  background: var(--navy-deep);
  color: var(--cream);
  padding: 84px 0 38px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-tagline {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.7;
  color: var(--cream);
}

.footer-tagline small {
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--accent-soft);
  margin-top: 14px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 14px 56px;
}

.footer-nav a {
  font-size: 13.5px;
  color: var(--cream-70);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--cream);
}

.footer-contact {
  font-size: 13px;
  color: var(--cream-70);
  line-height: 2;
}

.footer-contact .tel {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 64px;
  padding-top: 30px;
  border-top: 1px solid var(--line-cream);
  font-size: 12px;
  color: var(--cream-70);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}

.footer-brand img {
  height: 26px;
}

.footer-policy {
  display: flex;
  gap: 24px;
}

.footer-policy a:hover {
  color: var(--cream);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  position: relative;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--navy-deep);
  color: var(--cream);
  transform: translateX(100%);
  transition: transform 0.42s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 92px 30px 40px;
  overflow-y: auto;
  visibility: hidden;
}

body.nav-open .mobile-nav {
  transform: none;
  visibility: visible;
}

body.nav-open {
  overflow: hidden;
}

.mnav-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}

.mobile-nav .m-link {
  font-size: 21px;
  font-weight: 900;
  padding: 17px 2px;
  border-bottom: 1px solid var(--line-cream);
  color: var(--cream);
}

.mobile-nav .m-sub {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream-70);
  padding: 12px 2px 12px 20px;
  border-bottom: 1px solid rgba(238, 241, 250, 0.08);
}

.mobile-nav .m-cta {
  margin-top: 30px;
}

.mobile-nav .m-cta .btn {
  width: 100%;
  background: var(--cream);
  color: var(--navy-deep);
}

@media (min-width: 961px) {
  .nav-toggle {
    display: none !important;
  }
  .mobile-nav {
    display: none;
  }
}
@media (min-width: 961px) and (max-width: 1120px) {
  .header-inner {
    gap: 18px;
    padding: 0 20px;
  }
  .gnav {
    gap: 16px;
  }
  .gnav > a, .gnav .has-sub > a {
    font-size: 12px;
  }
  .brand-text strong {
    font-size: 13px;
  }
  .brand-logo {
    height: 20px;
  }
  .header .btn {
    padding: 10px 16px;
    font-size: 12px;
  }
}
@media (max-width: 960px) {
  .gnav {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .header-inner > .btn {
    display: none;
  }
  .feat, .feat.rev .feat-media {
    grid-template-columns: 1fr;
    order: 0;
  }
  .feat-media {
    order: -1;
  }
  .cards.c3 {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .cm-grid {
    grid-template-columns: 1fr;
  }
  .dl-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .row-item {
    grid-template-columns: 96px 1fr;
    gap: 8px 18px;
  }
  .row-item .cat {
    grid-row: 1;
    justify-self: start;
  }
  .row-item .go {
    display: none;
  }
  .cta {
    padding: 52px 0;
  }
}
@media (max-width: 600px) {
  .container, .container-wide {
    padding: 0 22px;
  }
  .cards.c3 {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding: 130px 0 56px;
  }
  .brand-logo {
    height: auto;
    width: min(220px, 56vw);
  }
}
.contact-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-lead .prose p {
  margin-top: 16px;
}

.flow-mini {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.flow-mini li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--muted);
}

.flow-mini li b {
  font-family: var(--font-en);
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.form-notice {
  font-size: 13.5px;
  line-height: 1.85;
  font-weight: 600;
  color: #B42318;
  background: #FCEBEA;
  border: none;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 24px;
  text-wrap: pretty;
}

.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 48px 48px 52px;
  box-shadow: 0 20px 60px rgba(11, 29, 113, 0.06);
}

.thanks {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.thanks.show {
  display: block;
}

.thanks .ok {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
}

.thanks .ok::after {
  content: "";
  width: 24px;
  height: 13px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
  margin-top: -5px;
}

.thanks h3 {
  font-size: 24px;
  font-weight: 900;
}

.thanks p {
  font-size: 14.5px;
  color: var(--muted);
  margin-top: 14px;
}

@media (max-width: 860px) {
  .contact-lead {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .form-card {
    padding: 30px 22px 36px;
  }
}
.access {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}

.access-map {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  background: #dfe3ef;
  position: relative;
}

.access-map img, .access-map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.access-info h3 {
  font-size: 20px;
  font-weight: 900;
}

.access-info .addr {
  font-size: 15px;
  color: var(--muted);
  line-height: 2;
  margin-top: 14px;
  text-wrap: pretty;
}

.access-info .zip {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 20px;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 3px;
  transition: color 0.25s, border-color 0.25s;
}

.map-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 860px) {
  .access {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.pres {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.pres-photo {
  position: sticky;
  top: 108px;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #dfe3ef;
}

.pres-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pres-name-en {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.26em;
  color: var(--accent);
  font-weight: 700;
}

.pres-role {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 14px;
}

.pres-name {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.pres-name span {
  font-size: 0.45em;
  color: var(--muted);
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  margin-left: 14px;
  font-weight: 700;
}

.pres-msg {
  font-size: 16px;
  line-height: 2.1;
  color: var(--ink);
  margin-top: 34px;
  text-wrap: pretty;
}

.pres-msg p + p {
  margin-top: 22px;
}

.pres-sign {
  margin-top: 30px;
  font-size: 14px;
  color: var(--muted);
}

.pres-sign b {
  font-size: 22px;
  color: var(--ink);
  font-weight: 900;
  margin-left: 10px;
}

.career {
  margin-top: 14px;
}

.career dt {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.career dd {
  font-size: 15px;
  line-height: 2;
  color: var(--muted);
  margin-top: 12px;
  text-wrap: pretty;
}

@media (max-width: 860px) {
  .pres {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pres-photo {
    position: static;
    max-width: 360px;
  }
}
.faq-cat {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin: 56px 0 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-cat:first-of-type {
  margin-top: 0;
}

.faq-cat .jp {
  font-family: var(--font-jp);
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: 0;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.chip {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  transition: all 0.2s;
  cursor: pointer;
  background: var(--card);
}

.chip:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.chip.on {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 64px;
}

.pager a, .pager .current, .pager .page-numbers {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  transition: all 0.2s;
}

.pager a:hover, .pager a.on, .pager .current, .pager .page-numbers.current {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.col-note, .news-note {
  font-size: 12px;
  color: var(--muted);
  font-family: ui-monospace, Menlo, monospace;
  margin-top: 18px;
}

.article {
  max-width: 760px;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.article-meta time {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--muted);
}

.article-hero-img {
  aspect-ratio: 16/8;
  border-radius: 12px;
  overflow: hidden;
  background: repeating-linear-gradient(-45deg, #E0E4F1 0 14px, #E9ECF6 14px 28px);
  display: grid;
  place-items: center;
  margin: 0 auto 56px;
  max-width: 900px;
}

.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article h2 {
  font-size: 25px;
  font-weight: 900;
  line-height: 1.5;
  margin: 52px 0 0;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  text-wrap: pretty;
}

.article h3 {
  font-size: 19px;
  font-weight: 900;
  margin: 36px 0 0;
}

.article p {
  font-size: 16px;
  line-height: 2.05;
  color: #3A4475;
  margin-top: 20px;
  text-wrap: pretty;
}

.article p strong {
  color: var(--ink);
  font-weight: 700;
}

.article .lead {
  font-size: 18px;
  line-height: 2;
  color: var(--ink);
  font-weight: 500;
}

.article ul.dots {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article ul.dots li {
  position: relative;
  padding-left: 26px;
  font-size: 15.5px;
  line-height: 1.9;
  color: #3A4475;
}

.article ul.dots li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.article .callout {
  margin-top: 32px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px 28px;
  font-size: 15px;
  line-height: 1.95;
  color: #3A4475;
}

.share-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

.share-row .tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-left: auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 3px;
  transition: color 0.25s, border-color 0.25s;
}

.back-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.article-note {
  font-size: 12px;
  color: var(--muted);
  font-family: ui-monospace, Menlo, monospace;
  margin-top: 8px;
}

.article h4 {
  font-size: 17px;
  font-weight: 900;
  margin: 28px 0 0;
}

.article ul:not(.dots), .article ol {
  margin-top: 20px;
  padding-left: 1.5em;
}

.article ul:not(.dots) {
  list-style: disc;
}

.article ol {
  list-style: decimal;
}

.article li {
  font-size: 15.5px;
  line-height: 1.9;
  color: #3A4475;
  margin-top: 8px;
}

.article li::marker {
  color: var(--accent);
}

.article li > ul, .article li > ol {
  margin-top: 8px;
}

.article blockquote, .article .wp-block-quote {
  margin: 32px 0 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px 28px;
  font-size: 15px;
  line-height: 1.95;
  color: #3A4475;
}

.article blockquote p {
  font-size: 15px;
  margin-top: 0;
}

.article blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
}

.article hr, .article .wp-block-separator {
  border: none;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}

.article table, .article .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  font-size: 15px;
}

.article th {
  background: var(--card);
  font-weight: 700;
  text-align: left;
  padding: 14px 18px;
  border: 1px solid var(--line);
  color: var(--ink);
}

.article td {
  padding: 14px 18px;
  border: 1px solid var(--line);
  color: #3A4475;
  line-height: 1.8;
}

.article .wp-block-image {
  margin: 32px 0;
  border-radius: 10px;
  overflow: hidden;
}

.article .wp-block-image img {
  border-radius: 10px;
}

.article .wp-block-image figcaption {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

.article pre, .article .wp-block-code {
  background: #1B2547;
  color: #E0E4F1;
  border-radius: 10px;
  padding: 24px 28px;
  font-size: 14px;
  line-height: 1.7;
  overflow-x: auto;
  margin-top: 28px;
}

.article code {
  font-family: ui-monospace, Menlo, "Courier New", monospace;
  font-size: 0.9em;
  background: var(--card);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent);
}

.article pre code {
  background: none;
  padding: 0;
  color: inherit;
}

.article :where(p, li, td, th, blockquote, dd, figcaption) a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article :where(p, li, td, th, blockquote, dd, figcaption) a:hover {
  color: var(--ink);
}

.article .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.article .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--cream);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  border-radius: 999px;
  padding: 14px 30px;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
}

.article .wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(11, 29, 113, 0.25);
  color: var(--cream);
}

.article .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

.article .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--ink);
  color: var(--cream);
}

.article .wp-block-pullquote {
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  padding: 30px 0;
  margin: 44px 0;
  text-align: center;
}

.article .wp-block-pullquote p {
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
}

.article .wp-block-pullquote cite {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
}

.article .wp-block-quote.is-style-large p {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.article figure {
  margin: 32px 0;
}

.article .aligncenter {
  text-align: center;
}

.article .alignright {
  float: right;
  margin: 8px 0 20px 28px;
  max-width: 50%;
}

.article .alignleft {
  float: left;
  margin: 8px 28px 20px 0;
  max-width: 50%;
}

.article .alignwide {
  width: min(100%, 980px);
  margin-left: 50%;
  transform: translateX(-50%);
}

.article .alignfull {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  border-radius: 0;
}

.article figcaption, .article .wp-block-image figcaption {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

.article .wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 32px 0;
}

.article .wp-block-gallery figure {
  margin: 0;
}

.article .wp-block-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.article .wp-block-cover {
  border-radius: 14px;
  overflow: hidden;
  margin: 36px 0;
  min-height: 320px;
  padding: 40px;
}

.article .wp-block-cover .wp-block-cover__inner-container {
  color: var(--cream);
  max-width: 640px;
}

.article .wp-block-cover h2, .article .wp-block-cover h3 {
  color: var(--cream);
  border: none;
  padding: 0;
  margin: 0 0 12px;
}

.article .wp-block-cover p {
  color: var(--cream-70);
  margin-top: 8px;
}

.article .wp-block-media-text {
  margin: 36px 0;
  gap: 36px;
  align-items: center;
}

.article .wp-block-media-text img {
  border-radius: 12px;
}

.article .wp-block-media-text .wp-block-media-text__content {
  padding: 0 8px;
}

.article .wp-block-group {
  margin-top: 28px;
}

.article .wp-block-group.has-background {
  padding: 32px;
  border-radius: 14px;
}

.article .wp-block-columns {
  gap: 28px;
  margin-top: 28px;
}

@media (max-width: 600px) {
  .article .wp-block-columns {
    gap: 8px;
  }
}
.article .wp-block-preformatted {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 26px;
  font-family: ui-monospace, Menlo, "Courier New", monospace;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink);
  overflow-x: auto;
  margin-top: 28px;
}

.article .wp-block-verse {
  background: var(--card);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  padding: 22px 26px;
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 2;
  color: #3A4475;
  margin-top: 28px;
}

.article .wp-block-separator.is-style-dots {
  border: none;
  text-align: center;
  line-height: 1;
  max-width: none;
}

.article .wp-block-separator.is-style-dots::before {
  content: "···";
  color: var(--accent);
  font-size: 28px;
  letter-spacing: 14px;
  padding-left: 14px;
}

.article .wp-block-separator.is-style-wide {
  border-top-width: 1px;
}

.article mark {
  background: rgba(184, 133, 47, 0.18);
  color: var(--ink);
  padding: 1px 4px;
  border-radius: 3px;
}

.article kbd {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 0.85em;
  background: var(--ink);
  color: var(--cream);
  border-radius: 4px;
  padding: 2px 7px;
}

.article .wp-block-details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 24px;
  margin-top: 28px;
}

.article .wp-block-details summary {
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  padding: 14px 0;
}

.article .wp-block-details[open] summary {
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}

.article .wp-block-footnotes {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--muted);
}

.article .wp-block-file {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 22px;
  margin-top: 28px;
}

.article .wp-block-file a:first-child {
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.article .wp-block-file .wp-block-file__button {
  background: var(--navy);
  color: var(--cream);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.article .wp-block-embed {
  margin: 32px 0;
}

.article .wp-block-embed figcaption {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

.article .wp-block-audio, .article .wp-block-video {
  margin: 32px 0;
}

.article .wp-block-video video, .article .wp-block-audio audio {
  width: 100%;
  border-radius: 10px;
}
/*# sourceMappingURL=common.css.map */
