:root {
  --ink: #182525;
  --muted: #66706d;
  --line: #e4ebe7;
  --paper: #fbfaf5;
  --white: #ffffff;
  --sage: #8fb2a6;
  --sage-dark: #5f8175;
  --clay: #b88770;
  --gold: #d9c49b;
  --aqua: #79cddd;
  --navy: #1d2948;
  --rose: #df8f92;
  --rose-soft: #fff0ef;
  --mist: #f1f7f4;
  --shadow: 0 28px 90px rgba(95, 129, 117, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fffdf8 0, #ffffff 42%, #f8fcfa 72%, #fbfaf5 100%);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.75;
}

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

.page-flow {
  display: flex;
  flex-direction: column;
}

.hero {
  order: 1;
}

.hero-contact-strip {
  order: 1;
}

.intro {
  order: 2;
}

.service-finder {
  order: 3;
}

.concerns {
  order: 4;
}

.feature-band {
  order: 5;
}

.blog-section {
  order: 6;
}

.profile {
  order: 7;
}

.faq-section {
  order: 8;
}

.price-section {
  order: 9;
}

.contact-section {
  order: 10;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(24px, 5vw, 88px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 227, 223, 0.38);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 188px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--sage-dark);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: min(260px, 34vw);
  max-height: 54px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 0;
  font-weight: 700;
  line-height: 1.35;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 44px);
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  display: grid;
  grid-template-columns: auto;
  gap: 2px;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: color 160ms ease;
}

.site-nav small {
  color: rgba(29, 41, 72, 0.58);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
}

.nav-icon {
  grid-row: 1 / span 2;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--navy);
  font-size: 17px;
  line-height: 1;
}

.site-nav a:hover {
  color: var(--sage-dark);
}

.nav-contact {
  min-width: 160px;
  padding: 14px 22px;
  color: var(--white) !important;
  background: var(--navy);
  border-radius: 0;
}

.nav-contact small,
.nav-contact .nav-icon {
  color: rgba(255, 255, 255, 0.78);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: block;
  min-height: 0;
  aspect-ratio: 1672 / 760;
  padding: 0;
  overflow: hidden;
  background: url("assets/hero-without-header.png") center top / cover no-repeat;
}

.hero::before {
  content: none;
}

.hero::after {
  content: none;
}

@keyframes heroHeadlineSheen {
  0%,
  46% {
    opacity: 0;
    transform: translateX(-120%);
  }
  56% {
    opacity: 0.78;
  }
  76% {
    opacity: 0;
    transform: translateX(72%);
  }
  100% {
    opacity: 0;
    transform: translateX(72%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before {
    animation: none;
  }

  .button,
  .button::after,
  .button-arrow {
    animation: none;
    transition: none;
  }
}

.hero-copy {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.hero-hotspot {
  position: absolute;
  z-index: 2;
  display: block;
}

.hero-hotspot-line {
  top: 56%;
  left: 4.8%;
  width: 21.8%;
  height: 9.4%;
}

.hero-hotspot-chatwork {
  top: 56%;
  left: 29.5%;
  width: 16%;
  height: 9.4%;
}

.hero-hotspot-service {
  top: 4.6%;
  left: 42.5%;
  width: 5.8%;
  height: 4.8%;
}

.hero-hotspot-price {
  top: 4.6%;
  left: 50.4%;
  width: 6.5%;
  height: 4.8%;
}

.hero-hotspot-about {
  top: 4.6%;
  left: 58%;
  width: 6.5%;
  height: 4.8%;
}

.hero-hotspot-column {
  top: 4.6%;
  left: 65.8%;
  width: 5.7%;
  height: 4.8%;
}

.hero-hotspot-contact {
  top: 4.6%;
  left: 72.1%;
  width: 7.5%;
  height: 4.8%;
}

.hero-hotspot-free {
  top: 3.9%;
  left: 83.2%;
  width: 14.1%;
  height: 5.8%;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--aqua);
  font-family: "Helvetica Neue", Arial, "Yu Gothic", Meiryo, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 28px;
  color: var(--navy);
  font-size: clamp(44px, 5.2vw, 78px);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: 0.08em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.2;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.45;
}

.lead {
  max-width: 630px;
  margin-bottom: 34px;
  color: var(--navy);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 600;
  letter-spacing: 0.07em;
}

.hero-subcopy {
  max-width: 660px;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.45;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-bottom: clamp(34px, 4.6vw, 54px);
}

.hero-contact-strip {
  padding: clamp(48px, 5.4vw, 76px) 20px clamp(10px, 2vw, 22px);
  background: #ffffff;
}

.hero-contact-strip .hero-actions {
  width: min(100%, 1080px);
  margin: 0 auto;
  gap: clamp(18px, 4vw, 56px);
  justify-content: center;
}

.hero-contact-strip .button {
  flex: 1 1 360px;
  max-width: 520px;
  min-height: 68px;
  font-size: clamp(16px, 1.7vw, 22px);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  gap: 14px;
  min-width: min(100%, 330px);
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-weight: 700;
  line-height: 1.35;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.22) 46%, transparent 58%);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 180ms ease;
  content: "";
}

.button-primary,
.button-line {
  color: var(--white);
  background: linear-gradient(135deg, #061941, #0d275c);
  box-shadow: 0 16px 34px rgba(6, 25, 65, 0.2);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--line);
}

.button-chatwork {
  color: var(--navy);
  background: var(--white);
  border-color: var(--aqua);
}

.button-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--navy);
  background: var(--white);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.button-dots {
  position: relative;
  width: 34px;
  height: 34px;
}

.button-dots::before,
.button-dots::after {
  position: absolute;
  background: var(--aqua);
  border-radius: 50%;
  content: "";
}

.button-dots::before {
  top: 5px;
  left: 5px;
  width: 13px;
  height: 13px;
  box-shadow: 16px 0 0 #36b7cb, 0 16px 0 #36b7cb;
}

.button-dots::after {
  right: 5px;
  bottom: 5px;
  width: 13px;
  height: 13px;
}

.button-arrow {
  margin-left: auto;
  color: currentColor;
  font-size: 20px;
  line-height: 1;
  transition: transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:hover::after {
  opacity: 1;
  animation: buttonSheen 950ms ease;
}

.button:hover .button-arrow {
  transform: translateX(5px);
}

@keyframes buttonSheen {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-meta span {
  padding: 8px 13px;
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-support {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 830px);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-support-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 6px 18px;
  align-items: center;
  min-height: 104px;
  padding: 10px clamp(18px, 2vw, 28px) 10px 0;
}

.hero-support-item:not(:last-child) {
  border-right: 1px solid rgba(29, 41, 72, 0.2);
}

.hero-support-icon {
  grid-row: 1 / span 2;
  width: 64px;
  height: 64px;
  color: var(--aqua);
}

.hero-support-icon svg {
  width: 58px;
  height: 58px;
  stroke-width: 2;
}

.hero-support-item strong {
  color: var(--navy);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.08em;
}

.hero-support-item span:not(.line-icon) {
  color: var(--navy);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 600;
  line-height: 1.75;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(220px, 1fr);
  gap: clamp(24px, 9vw, 120px);
  align-items: end;
  width: min(100%, 1260px);
  margin-top: clamp(34px, 5vw, 66px);
}

.hero-wordmark {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(70px, 10vw, 150px);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-wordmark::first-letter {
  color: var(--navy);
}

.hero-tagline {
  position: relative;
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: right;
}

.hero-tagline::before {
  display: inline-block;
  width: clamp(120px, 16vw, 210px);
  height: 2px;
  margin-right: 34px;
  background: var(--aqua);
  vertical-align: middle;
  content: "";
}

.hero-visual {
  position: relative;
  min-height: min(620px, 66vw);
}

.visual-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(100%, 680px);
  height: 100%;
  border: 1px solid rgba(228, 235, 231, 0.95);
  border-radius: 0;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center;
}

.visual-card {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(220, 227, 223, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(31, 42, 42, 0.1);
}

.visual-card-sub {
  right: clamp(14px, 3vw, 30px);
  bottom: clamp(14px, 3vw, 30px);
  display: grid;
  gap: 8px;
  min-width: 188px;
  padding: 14px;
  backdrop-filter: blur(16px);
}

.mascot-card {
  position: absolute;
  z-index: 3;
  left: clamp(0px, 2vw, 22px);
  bottom: clamp(88px, 10vw, 132px);
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: min(330px, 72%);
  padding: 12px 16px 12px 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(228, 235, 231, 0.95);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(31, 42, 42, 0.12);
  backdrop-filter: blur(16px);
}

.mascot-card img {
  width: 86px;
  aspect-ratio: 1;
  border-radius: 999px;
  object-fit: cover;
  object-position: 52% 30%;
  background: var(--rose-soft);
}

.mascot-card span {
  display: block;
  margin-bottom: 2px;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
}

.mascot-card p {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.visual-card-sub span {
  padding: 7px 11px;
  background: rgba(241, 247, 244, 0.92);
  border-radius: 999px;
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 88px);
}

.intro {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(24px, 6vw, 96px);
  align-items: start;
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff, #f7fbff);
  border-block: 1px solid var(--line);
}

.intro::before {
  position: absolute;
  right: clamp(18px, 7vw, 110px);
  bottom: -88px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(121, 205, 221, 0.26);
  border-radius: 50%;
  content: "";
}

.intro::after {
  position: absolute;
  right: clamp(120px, 18vw, 260px);
  bottom: 54px;
  width: 86px;
  height: 2px;
  background: var(--aqua);
  content: "";
}

.intro > * {
  position: relative;
  z-index: 1;
}

.intro .section-heading {
  grid-column: 1 / -1;
  width: min(100%, 1240px);
  max-width: 1240px;
  margin: 0 auto 16px;
  text-align: center;
}

.intro .section-heading h2 {
  max-width: none;
  font-size: clamp(32px, 3.2vw, 44px);
  white-space: nowrap;
}

.intro-body {
  grid-column: 1 / -1;
  width: min(100%, 1100px);
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(18px, 2.4vw, 26px);
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #d7e6ef;
  border-radius: 12px;
}

.intro-body > p {
  max-width: none;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 2;
}

.intro-support {
  grid-column: 1 / -1;
  width: min(100%, 900px);
  margin: 16px auto 0;
  padding-top: 14px;
  border-top: 1px solid #d7e6ef;
}

.intro-support .hero-support-item {
  padding-top: 8px;
  padding-bottom: 8px;
}

.section-contact-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 42px);
  width: min(100%, 1080px);
  margin: 34px auto 0;
  justify-content: center;
}

.section-contact-actions .button {
  flex: 1 1 340px;
  max-width: 500px;
  min-height: 62px;
  font-size: clamp(15px, 1.4vw, 20px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.row-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.service-grid,
.blog-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.blog-card,
.price-card {
  min-height: 250px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 18px 50px rgba(24, 37, 37, 0.05);
}

.service-card {
  min-height: 220px;
  padding: 42px 34px 38px 0;
  background: transparent;
  border-width: 1px 0 0;
  border-radius: 0;
  box-shadow: none;
}

.service-top {
  display: grid;
  align-items: start;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.line-icon {
  display: grid;
  width: 118px;
  height: 118px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--aqua);
  background: transparent;
  border: 0;
  border-radius: 0;
}

.line-icon svg {
  width: 108px;
  height: 108px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.service-top .line-icon {
  order: -1;
}

.service-top .card-number {
  width: fit-content;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(121, 205, 221, 0.48);
  color: var(--navy);
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p,
.blog-card p,
.price-card p,
.feature-copy p,
.profile p,
.contact-inner p {
  color: var(--muted);
}

.card-number,
.category {
  display: block;
  margin-bottom: 0;
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.center-heading {
  max-width: none;
  text-align: center;
}

.center-heading .eyebrow {
  color: var(--aqua);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.center-heading h2 {
  color: var(--navy);
}

.center-heading::after {
  display: block;
  width: 54px;
  height: 4px;
  margin: 18px auto 0;
  background: var(--aqua);
  content: "";
}

.service-finder {
  background: #ffffff;
}

.finder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 54px auto 0;
}

.finder-contact-actions,
.feature-contact-actions {
  margin-top: clamp(42px, 5vw, 70px);
}

.finder-card {
  display: grid;
  min-height: 310px;
  padding: 30px 22px 26px;
  place-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #c5dff3;
  border-top: 4px solid var(--aqua);
  border-radius: 10px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.finder-card:hover,
.finder-card:focus-visible {
  border-color: var(--aqua);
  box-shadow: 0 18px 44px rgba(14, 49, 84, 0.08);
  transform: translateY(-2px);
}

.monthly-hero,
.spot-card,
.rules-panel {
  scroll-margin-top: 28px;
}

.finder-card p {
  margin: 20px 0 10px;
  color: #32445a;
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(18px, 1.6vw, 23px);
  font-weight: 700;
  line-height: 1.65;
}

.finder-icon {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  color: var(--navy);
  background: #eef6fc;
  border-radius: 50%;
}

.finder-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.finder-icon.green {
  color: var(--navy);
  background: #eef6fc;
}

.finder-icon.blue {
  color: var(--navy);
  background: #eef6fc;
}

.finder-icon.brown {
  color: var(--navy);
  background: #eef6fc;
}

.finder-icon.gold {
  color: var(--navy);
  background: #eef6fc;
}

.finder-arrow {
  color: var(--aqua);
  font-size: 26px;
  line-height: 1;
}

.finder-card strong {
  display: inline-flex;
  min-width: 118px;
  justify-content: center;
  padding: 7px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 5px;
  font-size: 18px;
}

.finder-card strong.green {
  background: var(--navy);
}

.finder-card strong.blue {
  background: var(--navy);
}

.finder-card strong.brown {
  background: var(--navy);
}

.finder-card strong.gold {
  background: var(--navy);
}

.finder-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  margin-top: 8px;
  padding: 9px 18px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid var(--aqua);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.finder-cta::after {
  margin-left: 8px;
  color: var(--aqua);
  content: "→";
}

.price-section {
  background: linear-gradient(180deg, #eef6fc 0, #eef6fc 28%, #ffffff 28%, #ffffff 100%);
}

.monthly-hero {
  display: grid;
  max-width: 1180px;
  margin: 56px auto 56px;
  padding: clamp(38px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.78);
  background: #0e3154;
  border-radius: 18px;
}

.plan-kicker,
.plan-label,
.spot-en {
  color: #78bf43;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.monthly-hero h3 {
  color: var(--white);
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(32px, 3vw, 48px);
}

.monthly-hero p {
  max-width: 820px;
  font-size: 18px;
}

.monthly-price {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: baseline;
  margin-top: 22px;
}

.monthly-price span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.monthly-price strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 50px);
}

.plan-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.plan-tags span {
  padding: 7px 16px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-weight: 700;
}

.plan-grid,
.spot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.spot-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.plan-card,
.spot-card {
  position: relative;
  padding: 32px 30px;
  background: var(--white);
  border: 1px solid #c5dff3;
  border-top: 6px solid #315f8e;
  border-radius: 10px;
}

.featured-plan,
.popular {
  border-top-color: #407c58;
}

.spot-card.popular {
  padding-top: 54px;
}

.plan-card h3,
.spot-card h3,
.rules-panel h3 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(23px, 1.7vw, 28px);
}

.plan-card h3 {
  white-space: nowrap;
}

.plan-audience {
  display: inline-block;
  min-height: 54px;
  margin: 0 0 18px;
  padding: 8px 12px;
  color: #315f8e;
  background: #eef6fc;
  border-left: 3px solid var(--aqua);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.plan-card .price,
.spot-card .price,
.rules-panel .price {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 800;
}

.plan-card ul,
.spot-card ul {
  display: grid;
  gap: 10px;
  padding: 20px 0 0;
  margin: 20px 0 0;
  border-top: 1px solid #d7e6ef;
  list-style: none;
}

.plan-card li,
.spot-card li {
  color: #38505c;
  font-weight: 700;
  line-height: 1.6;
}

.plan-card li::before,
.spot-card li::before {
  color: #76b842;
  content: "✓ ";
  font-weight: 800;
}

.mini-note,
.note {
  color: var(--muted);
  font-size: 14px;
}

.spot-heading {
  margin-top: clamp(72px, 9vw, 116px);
}

.spot-en {
  display: block;
  margin: -6px 0 16px;
  color: #6fa1c0;
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 14px;
  color: var(--white);
  background: #76b842;
  border-radius: 999px;
  font-weight: 700;
}

.rules-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: 1180px;
  margin: 48px auto 0;
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  border: 3px solid #407c58;
  border-radius: 18px;
}

.rules-panel p:not(.price) {
  max-width: 780px;
  color: #38505c;
  font-size: 18px;
}

.price-table-wrap {
  max-width: 1180px;
  margin: 54px auto 0;
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--navy);
  background: var(--white);
}

.price-table th {
  padding: 22px 24px;
  color: var(--white);
  background: #0e3154;
  font-size: 20px;
  text-align: left;
}

.price-table td {
  padding: 20px 24px;
  border-bottom: 1px solid #d7e6ef;
  font-size: 18px;
  font-weight: 700;
  vertical-align: middle;
}

.price-table td:last-child {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.price-table td:last-child small {
  display: block;
  margin-top: 3px;
  color: #6a7b83;
  font-family: "Helvetica Neue", Arial, "Yu Gothic", Meiryo, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.price-table td span {
  display: inline-flex;
  margin-right: 10px;
  padding: 2px 10px;
  color: #315f8e;
  background: #dff2fb;
  border-radius: 5px;
  font-size: 14px;
}

.concerns {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfefe 100%);
}

.concerns .section-heading {
  position: relative;
  max-width: 900px;
  margin-bottom: clamp(56px, 8vw, 96px);
}

.concerns .section-heading::before {
  position: absolute;
  z-index: 0;
  top: -38px;
  left: -58px;
  width: 148px;
  height: 148px;
  background: rgba(121, 205, 221, 0.34);
  border-radius: 50%;
  content: "";
}

.concerns .section-heading > * {
  position: relative;
  z-index: 1;
}

.concern-list {
  display: grid;
  gap: clamp(72px, 11vw, 136px);
  max-width: 1240px;
}

.concern-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  min-height: 210px;
}

.concern-mark {
  grid-row: 1 / span 2;
  grid-column: 1;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(72px, 8vw, 118px);
  line-height: 1;
  text-align: center;
  text-shadow: 2px 2px 0 rgba(29, 41, 72, 0.12);
}

.concern-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.34fr);
}

.concern-card:nth-child(even) .concern-mark {
  grid-column: 2;
}

.concern-card h3 {
  margin-bottom: 0;
  color: var(--aqua);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 650;
  line-height: 1.55;
}

.concern-card p {
  margin: 0;
  color: var(--navy);
  font-size: clamp(17px, 1.8vw, 23px);
  font-weight: 650;
  line-height: 1.9;
}

.concern-copy {
  grid-column: 2;
}

.concern-heading-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
}

.concern-icon {
  width: 54px;
  height: 54px;
  color: var(--aqua);
  background: transparent;
}

.concern-icon svg {
  width: 46px;
  height: 46px;
}

.concern-card:nth-child(even) .concern-copy {
  grid-column: 1;
}

.concern-card p::before {
  color: var(--clay);
  content: "A ";
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
}

.feature-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbf9 100%);
  border-top: 1px solid var(--line);
}

.feature-title {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.feature-title h2 {
  color: var(--ink);
}

.feature-title p:last-child {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 18px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 1240px;
  margin: 40px auto 0;
  border-top: 1px solid var(--line);
}

.feature-item {
  position: relative;
  min-height: 320px;
  padding: 34px 28px 18px 0;
  background: transparent;
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

.feature-item:not(:last-child) {
  padding-right: 34px;
  border-right: 1px solid rgba(228, 235, 231, 0.78);
}

.feature-item + .feature-item {
  padding-left: 28px;
}

.feature-item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--gold);
  content: "";
}

.feature-label {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
}

.feature-number {
  position: static;
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
}

.feature-item h3 {
  color: var(--ink);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.45;
}

.feature-item p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.price-card {
  min-height: 220px;
}

.price-card.featured {
  background:
    linear-gradient(145deg, rgba(35, 54, 54, 0.96), rgba(95, 129, 117, 0.92));
  color: var(--white);
  border-color: var(--ink);
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.price {
  margin-bottom: 18px;
  color: var(--sage-dark);
  font-size: 26px;
  font-weight: 700;
}

.price-card.featured .price {
  color: var(--white);
}

.note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  color: var(--sage-dark);
  font-weight: 700;
}

.blog-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border-top: 1px solid #d7e6ef;
}

.blog-list {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid #d7e6ef;
}

.blog-card {
  display: grid;
  grid-template-columns: 120px minmax(180px, 260px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  min-height: auto;
  padding: 34px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7e6ef;
  border-radius: 0;
  box-shadow: none;
}

.blog-number {
  color: rgba(14, 49, 84, 0.24);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
}

.blog-thumb {
  display: block;
  align-self: start;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #ffffff;
  border: 1px solid #d7e6ef;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(14, 49, 84, 0.08);
}

.blog-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 220ms ease;
}

.blog-thumb:hover img {
  transform: scale(1.03);
}

.blog-thumb-text {
  display: grid;
  place-items: center;
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(121, 205, 221, 0.22), rgba(217, 196, 155, 0.18)),
    #ffffff;
}

.blog-thumb-text span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.4vw, 32px);
  font-style: italic;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.blog-card .category {
  margin-bottom: 10px;
  color: var(--aqua);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-card h3 {
  max-width: 760px;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: clamp(22px, 2.3vw, 34px);
  font-weight: 700;
}

.blog-card h3 a {
  background-image: linear-gradient(transparent 68%, rgba(121, 205, 221, 0.28) 68%);
  background-size: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 220ms ease, color 220ms ease;
}

.blog-card h3 a:hover {
  color: var(--sage-dark);
  background-size: 100% 100%;
}

.blog-card p:not(.category) {
  max-width: 820px;
  margin-bottom: 0;
  color: #52666f;
  font-size: 16px;
}

.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--sage-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.blog-read-link span {
  transition: transform 180ms ease;
}

.blog-read-link:hover span {
  transform: translateX(4px);
}

.article-page {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 42%, #ffffff 100%);
}

.article-hero {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: clamp(52px, 8vw, 96px) clamp(22px, 5vw, 56px) clamp(34px, 5vw, 62px);
}

.article-back {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--sage-dark);
  font-size: 14px;
  font-weight: 800;
}

.article-category {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 16px;
  padding: 7px 13px;
  color: var(--navy);
  background: rgba(121, 205, 221, 0.16);
  border: 1px solid rgba(121, 205, 221, 0.45);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.article-hero h1 {
  max-width: 900px;
  margin: 0 0 20px;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.28;
}

.article-lead {
  max-width: 820px;
  margin: 0;
  color: #52666f;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.9;
}

.article-cover {
  max-width: 760px;
  margin: clamp(28px, 4vw, 44px) 0 0;
}

.article-cover img {
  display: block;
  width: 100%;
  height: auto;
  background: #ffffff;
  border: 1px solid #d7e6ef;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(14, 49, 84, 0.1);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 780px);
  gap: clamp(28px, 5vw, 72px);
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 clamp(22px, 5vw, 56px) clamp(70px, 8vw, 112px);
  align-items: start;
}

.article-summary {
  position: sticky;
  top: 112px;
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d7e6ef;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(24, 37, 37, 0.05);
}

.summary-title,
.article-box-label {
  margin: 0 0 12px;
  color: var(--aqua);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.article-summary ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.article-body {
  min-width: 0;
  padding: clamp(28px, 5vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #d7e6ef;
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(14, 49, 84, 0.08);
}

.article-body section {
  margin-top: clamp(42px, 6vw, 62px);
}

.article-body h2 {
  margin: 0 0 20px;
  padding-bottom: 12px;
  color: var(--navy);
  border-bottom: 1px solid #d7e6ef;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.45;
}

.article-body p {
  margin: 0 0 22px;
  color: #34484d;
  font-size: 17px;
  line-height: 2;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 10px;
  margin: 20px 0 26px;
  padding-left: 24px;
  color: #34484d;
  font-size: 16px;
  line-height: 1.9;
}

.article-point,
.article-checklist,
.article-cta {
  margin: clamp(34px, 5vw, 54px) 0;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 8px;
}

.article-point {
  background: linear-gradient(135deg, rgba(121, 205, 221, 0.18), rgba(143, 178, 166, 0.14));
  border: 1px solid rgba(121, 205, 221, 0.42);
}

.article-point p:last-child,
.article-checklist p:last-child,
.article-cta p:last-child {
  margin-bottom: 0;
}

.article-checklist {
  background: #fbfaf5;
  border: 1px solid #e4ebe7;
}

.article-checklist ul {
  gap: 12px;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.article-checklist li {
  position: relative;
  padding: 12px 14px 12px 42px;
  background: var(--white);
  border: 1px solid #e4ebe7;
  border-radius: 8px;
  color: var(--navy);
  font-weight: 700;
}

.article-checklist li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid var(--aqua);
  border-radius: 4px;
  transform: translateY(-50%);
}

.article-checklist li::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 8px;
  height: 4px;
  border: solid var(--sage-dark);
  border-width: 0 0 2px 2px;
  transform: translateY(-65%) rotate(-45deg);
}

.article-related a {
  color: var(--sage-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-related a:hover {
  opacity: 0.75;
}

.article-cta {
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.article-cta .article-box-label {
  color: var(--aqua);
}

.article-cta h2 {
  margin-bottom: 12px;
  padding-bottom: 0;
  color: var(--white);
  border: 0;
  font-size: clamp(24px, 3vw, 32px);
}

.article-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.article-actions .button {
  flex: 1 1 240px;
  justify-content: center;
}

.profile {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) 1fr;
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  background: var(--white);
  border-block: 1px solid var(--line);
}

.profile-photo {
  display: block;
  width: 100%;
  height: min(540px, 62vw);
  min-height: 420px;
  border-radius: 4px;
  object-fit: contain;
  object-position: center top;
  background: var(--white);
}

.profile-name {
  margin-top: 24px;
  font-weight: 700;
}

.faq-section {
  background: #ffffff;
}

.faq-list {
  display: grid;
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid #d7e6ef;
}

details {
  padding: 28px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7e6ef;
  border-radius: 0;
}

summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  color: var(--navy);
  cursor: pointer;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  line-height: 1.6;
}

summary::after {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--aqua);
  border: 1px solid #c5dff3;
  border-radius: 50%;
  content: "+";
  font-family: Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

summary::marker,
summary::-webkit-details-marker {
  display: none;
  color: transparent;
}

details p {
  max-width: 780px;
  margin: 16px 54px 0 0;
  color: #52666f;
  font-size: 16px;
}

.contact-section {
  padding: clamp(72px, 11vw, 140px) clamp(20px, 6vw, 88px);
  background:
    linear-gradient(135deg, rgba(24, 37, 37, 0.98), rgba(29, 41, 72, 0.94));
  color: var(--white);
}

.contact-inner {
  max-width: 920px;
}

.contact-inner h2 {
  max-width: 760px;
}

.contact-inner p {
  max-width: 720px;
}

.contact-note {
  margin-top: 18px;
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: end;
  padding: clamp(42px, 6vw, 74px) clamp(20px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(135deg, #061941 0%, #0e3154 72%, #123e64 100%);
  border-top: 1px solid rgba(121, 205, 221, 0.36);
}

.footer-brand {
  display: grid;
  gap: 8px;
  max-width: 620px;
}

.footer-wordmark {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6vw, 92px);
  line-height: 0.92;
  letter-spacing: 0;
}

.footer-wordmark-img {
  display: block;
  width: clamp(230px, 30vw, 420px);
  height: auto;
}

.footer-office {
  margin: 0;
  color: var(--aqua);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.site-footer p:not(.footer-wordmark):not(.footer-office) {
  margin: 6px 0 0;
  font-size: 15px;
  line-height: 1.8;
}

.footer-right {
  display: grid;
  gap: 30px;
  justify-items: end;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  justify-content: end;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.footer-nav a {
  position: relative;
}

.footer-nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--aqua);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
  content: "";
}

.footer-nav a:hover::after {
  transform: scaleX(1);
}

.site-footer small {
  color: rgba(255, 255, 255, 0.52);
  letter-spacing: 0.06em;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 81px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
    grid-template-columns: 1fr;
    justify-content: start;
    text-align: left;
  }

  .nav-contact {
    margin-top: 6px;
    text-align: center;
  }

  .hero,
  .intro,
  .profile {
    grid-template-columns: 1fr;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-inline: clamp(18px, 5vw, 42px);
  }

  .article-summary {
    position: static;
    order: 1;
    width: 100%;
    padding: 22px 20px;
  }

  .article-summary ol {
    gap: 10px;
    font-size: 15px;
    line-height: 1.8;
  }

  .article-body {
    order: 2;
  }

  .profile-photo {
    width: min(360px, 76vw);
    height: auto;
    min-height: 0;
    margin: 0 auto;
    object-fit: contain;
    object-position: center top;
    background: var(--white);
  }

  .hero {
    min-height: auto;
    background: url("assets/hero-final-no-employment-headline.png") center top / cover no-repeat;
  }

  .hero-support {
    grid-template-columns: 1fr;
    width: min(100%, 640px);
  }

  .hero-support-item {
    min-height: auto;
    padding: 24px 26px;
  }

  .hero-support-item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(210, 220, 222, 0.88);
  }

  .hero-visual {
    min-height: 430px;
  }

  .mascot-card {
    left: 14px;
  }

  .service-grid,
  .blog-grid,
  .price-grid,
  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .finder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }

  .finder-card:nth-child(6) {
    grid-column: auto;
  }

  .plan-grid,
  .spot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rules-panel {
    grid-template-columns: 1fr;
  }

  .price-table {
    min-width: 760px;
  }

  .feature-item {
    min-height: 280px;
  }

  .feature-item:nth-child(2) {
    border-right: 0;
  }

  .feature-item + .feature-item {
    padding-left: 22px;
  }

}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: min(188px, 54vw);
  }

  .brand-text span {
    font-size: 14px;
  }

  .brand-text small {
    font-size: 10px;
  }

  .hero {
    display: grid;
    padding-top: 0;
    aspect-ratio: auto;
    overflow: hidden;
    background: none;
  }

  .hero::before {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 980 / 760;
    background: url("assets/hero-without-header.png") left top / 170.7% 100% no-repeat;
  }

  .hero::after {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 760 / 760;
    background: url("assets/hero-without-header.png") right top / 220% 100% no-repeat;
  }

  .hero-copy {
    display: none;
  }

  .hero-copy h1,
  .hero-subcopy,
  .hero-copy .lead {
    display: none;
  }

  .hero-hotspot {
    display: none;
  }

  h1 {
    margin-bottom: 14px;
    font-size: 31px;
    line-height: 1.42;
    letter-spacing: 0.05em;
  }

  .hero-subcopy,
  .lead {
    font-size: 15px;
    letter-spacing: 0.04em;
  }

  h2 {
    font-size: 30px;
  }

  .intro .section-heading h2 {
    white-space: normal;
  }

  .center-heading .eyebrow {
    font-size: 13px;
    letter-spacing: 0.16em;
  }

  .hero-actions,
  .contact-actions,
  .section-contact-actions,
  .row-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
    margin: 0 0 20px;
  }

  .hero-contact-strip {
    padding: 42px 18px 10px;
  }

  .hero-contact-strip .hero-actions {
    margin: 0;
  }

  .hero-contact-strip .button {
    flex: 0 0 auto;
    max-width: none;
    min-height: 58px;
    padding: 14px 18px;
  }

  .section-contact-actions {
    gap: 10px;
    margin-top: 26px;
  }

  .section-contact-actions .button {
    flex: 0 0 auto;
    max-width: none;
    min-height: 58px;
    padding: 14px 18px;
    font-size: 15px;
  }

  .hero-actions .button {
    min-height: 58px;
    border-radius: 8px;
    font-size: 15px;
  }

  .hero-support {
    display: grid;
    width: 100%;
    border-radius: 6px;
    background: #ffffff;
    border: 1px solid #d7e6ef;
  }

  .hero-support-item {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 4px 16px;
    padding: 22px 20px;
  }

  .hero-support-icon {
    width: 54px;
    height: 54px;
  }

  .hero-support-icon svg {
    width: 48px;
    height: 48px;
  }

  .hero-support-item strong {
    font-size: 20px;
  }

  .hero-bottom {
    display: none;
  }

  .hero-wordmark {
    font-size: clamp(58px, 17vw, 92px);
  }

  .hero-tagline {
    font-size: 12px;
    text-align: left;
  }

  .hero-tagline::before {
    width: 82px;
    margin-right: 14px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .visual-card-sub {
    right: 8px;
    bottom: 0;
    min-width: 164px;
    padding: 12px;
  }

  .mascot-card {
    grid-template-columns: 72px 1fr;
    width: min(320px, 92%);
    bottom: 92px;
  }

  .mascot-card img {
    width: 72px;
  }

  .service-grid,
  .blog-grid,
  .price-grid,
  .feature-list {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 0;
  }

  .service-card,
  .price-card {
    min-height: auto;
    padding: 24px 0;
  }

  .finder-grid,
  .plan-grid,
  .spot-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 34px;
  }

  .finder-card {
    min-height: auto;
    padding: 24px 18px 22px;
  }

  .finder-card p {
    font-size: 17px;
  }

  .finder-icon {
    width: 64px;
    height: 64px;
  }

  .monthly-hero {
    margin: 36px auto;
    padding: 28px 20px;
    border-radius: 10px;
  }

  .monthly-hero p,
  .rules-panel p:not(.price) {
    font-size: 15px;
  }

  .plan-card,
  .spot-card {
    padding: 24px 20px;
  }

  .plan-card h3 {
    white-space: normal;
  }

  .rules-panel {
    gap: 18px;
    margin-top: 34px;
    padding: 24px 20px;
    border-width: 2px;
    border-radius: 12px;
  }

  .price-table-wrap {
    margin-top: 34px;
  }

  .price-table th {
    padding: 16px 18px;
    font-size: 16px;
  }

  .price-table td {
    padding: 16px 18px;
    font-size: 15px;
  }

  .price-table td:last-child {
    font-size: 16px;
  }

  .price-card {
    padding: 24px;
  }

  .blog-card {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: auto;
    padding: 28px 0;
  }

  .blog-number {
    font-size: 38px;
  }

  .blog-thumb {
    width: 100%;
    height: clamp(156px, 48vw, 220px);
    aspect-ratio: auto;
  }

  .blog-thumb img {
    object-fit: cover;
    object-position: center top;
  }

  .article-cover {
    max-width: 100%;
    margin-top: 24px;
  }

  .article-cover img {
    max-height: 72vh;
    object-fit: contain;
  }

  .article-layout {
    gap: 18px;
    padding: 0 18px 72px;
  }

  .article-summary {
    padding: 22px 18px;
  }

  .article-summary ol {
    padding-left: 20px;
  }

  .article-body {
    padding: 26px 18px;
  }

  summary {
    grid-template-columns: minmax(0, 1fr) 34px;
    font-size: 17px;
  }

  details p {
    margin-right: 0;
    font-size: 15px;
  }

  .card-number,
  .category {
    margin-bottom: 22px;
  }

  .service-top .card-number {
    margin-bottom: 0;
  }

  .concern-card {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
  }

  .concern-mark,
  .concern-copy,
  .concern-card:nth-child(even) .concern-mark,
  .concern-card:nth-child(even) .concern-copy {
    grid-column: 1;
  }

  .concern-mark {
    grid-row: auto;
    text-align: left;
  }

  .concern-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .concern-card h3 {
    font-size: 22px;
  }

  .concern-heading-row {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .concern-icon {
    width: 48px;
    height: 48px;
  }

  .concern-icon svg {
    width: 40px;
    height: 40px;
  }

  .concern-card p {
    font-size: 15px;
    font-weight: 500;
  }

  .feature-points div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .intro-body {
    padding: 22px 18px;
  }

  .intro-body > p {
    font-size: 16px;
  }

  .feature-item h3 {
    font-size: 20px;
  }

  .feature-item,
  .feature-item:not(:last-child) {
    min-height: auto;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-item + .feature-item {
    padding-left: 0;
  }

  .feature-item p {
    font-size: 15px;
  }

  .profile-photo {
    width: min(320px, 76vw);
    height: auto;
    min-height: 0;
    margin: 0 auto;
    object-fit: contain;
    object-position: center top;
    background: var(--white);
  }

  .mascot-figure {
    min-height: 340px;
  }

  .mascot-figure img {
    width: 360px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-right {
    justify-items: start;
  }

  .footer-nav {
    justify-content: start;
  }
}
