:root {
  --navy: #04307b;
  --blue: #0b63c7;
  --sky: #dff6ff;
  --yellow: #ffd23f;
  --yellow-deep: #f4b800;
  --green: #38bd91;
  --ink: #17233b;
  --muted: #5f6f86;
  --line: #dce7f3;
  --paper: #ffffff;
  --soft: #f5fbff;
  --section-blue: #eefaff;
  --shadow: 0 18px 44px rgba(4, 48, 123, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  background: var(--paper);
  line-height: 1.75;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(10px, 1.6vw, 22px);
  min-height: 82px;
  padding: 10px clamp(16px, 2.6vw, 40px);
  background: #fefefe;
  border-bottom: 1px solid rgba(4, 48, 123, 0.08);
  transition: min-height 0.36s ease, padding 0.36s ease, box-shadow 0.36s ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  padding-top: 6px;
  padding-bottom: 6px;
  box-shadow: 0 10px 26px rgba(4, 48, 123, 0.08);
}

.brand {
  display: inline-grid;
  gap: 2px;
  justify-self: start;
  color: #333;
  line-height: 1.35;
}

.brand-copy {
  display: block;
  max-height: 32px;
  max-width: min(44vw, 520px);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  white-space: normal;
  overflow: hidden;
  transition:
    opacity 0.42s ease,
    transform 0.42s ease,
    max-height 0.42s ease;
}

.site-header.is-scrolled .brand-copy {
  max-height: 0;
  opacity: 0;
  transform: translateY(-7px);
}

.brand img {
  width: 62px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 10px;
  transition: width 0.36s ease;
}

.site-header.is-scrolled .brand img {
  width: 56px;
}

.site-nav {
  position: static;
  grid-column: 2;
  justify-self: center;
  transform: none;
  display: flex;
  justify-content: center;
  gap: clamp(6px, 1vw, 18px);
}

.site-nav a {
  display: grid;
  gap: 2px;
  min-width: 76px;
  padding: 8px 0;
  color: #222;
  line-height: 1.22;
  text-align: center;
  border-bottom: 3px solid transparent;
}

.site-nav span {
  display: block;
  max-height: 16px;
  overflow: hidden;
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
  transition:
    opacity 0.42s ease,
    max-height 0.42s ease,
    transform 0.42s ease;
}

.site-header.is-scrolled .site-nav span {
  max-height: 0;
  opacity: 0;
  transform: translateY(-7px);
}

.site-nav strong {
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--green);
}

.header-tel {
  position: absolute;
  right: 292px;
  display: grid;
  min-width: 150px;
  color: #222;
  text-align: center;
  line-height: 1.25;
}

.header-tel span {
  order: 2;
  font-size: 11px;
  font-weight: 500;
}

.header-tel strong {
  position: relative;
  font-size: clamp(21px, 1.8vw, 25px);
  font-weight: 400;
  letter-spacing: 0;
}

.header-tel strong::before {
  content: "☎";
  margin-right: 8px;
  color: var(--navy);
  font-size: 21px;
}

.header-contact {
  position: absolute;
  right: clamp(16px, 2.6vw, 40px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  width: 220px;
  min-width: 0;
  padding: 12px 18px;
  border: 2px solid #2f62b9;
  outline: 4px solid var(--navy);
  outline-offset: -10px;
  background: linear-gradient(180deg, #174ea6, var(--navy));
  color: #fff;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.header-contact::before {
  content: "▶";
  margin-right: 9px;
  transform: rotate(-28deg);
}

.nav-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 4px;
  background: var(--navy);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transform-origin: center;
  transition:
    opacity 0.22s ease,
    transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 8px));
}

.nav-toggle span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.nav-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 8px));
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0.2);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-close {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: calc(100vh - 96px);
  padding: clamp(42px, 8vw, 92px) clamp(18px, 6vw, 76px);
  padding-left: 0;
  padding-bottom: clamp(46px, 8vw, 110px);
  overflow: hidden;
  background: var(--soft);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 48, 123, 0.04) 0%, rgba(4, 48, 123, 0.16) 48%, rgba(4, 48, 123, 0.58) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  width: min(480px, 56vw);
  max-width: 100%;
  padding-bottom: 0;
  text-align: left;
}

.hero-statement {
  display: grid;
  gap: 7px;
  justify-items: start;
  margin: 0;
  color: #050505;
  font-size: clamp(30px, 4.1vw, 55px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: none;
}

.hero-line {
  position: relative;
  display: inline-block;
  padding: 0.02em 0.2em 0.08em 1em;
  color: transparent;
  font-weight: 900;
  overflow: hidden;
  isolation: isolate;
}

.hero-line::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255, 255, 255, 0.94);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.62s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-line::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: inherit;
  color: #050505;
  opacity: 0;
  transform: translateX(-26px);
  transition:
    opacity 0.58s ease,
    transform 0.58s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-line-kokoro {
  letter-spacing: 0.18em;
}

.hero-line-detail {
  letter-spacing: 0.12em;
}

.hero-copy.is-visible .hero-line::before {
  transform: scaleX(1);
}

.hero-copy.is-visible .hero-line::after {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy.is-visible .hero-line:nth-child(1)::after {
  transition-delay: 0.22s;
}

.hero-copy.is-visible .hero-line:nth-child(2)::before {
  transition-delay: 0.18s;
}

.hero-copy.is-visible .hero-line:nth-child(2)::after {
  transition-delay: 0.4s;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 6.2vw, 86px);
  line-height: 1.12;
  overflow-wrap: normal;
  word-break: keep-all;
  text-shadow: 0 1px 22px rgba(255, 255, 255, 0.7);
}

h1 .title-line {
  display: block;
}

h1 .title-line span {
  display: inline-block;
}

.lead {
  margin: 24px 0 0;
  font-size: clamp(16px, 2.2vw, 21px);
  font-weight: 700;
  max-width: 680px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
}

.button.primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 10px 22px rgba(244, 184, 0, 0.28);
}

.button.secondary {
  background: var(--navy);
  color: #fff;
}

.button.full {
  width: 100%;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  min-width: 0;
  min-height: 100%;
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 15s infinite;
}

.hero-slider img:nth-child(2) {
  animation-delay: 5s;
}

.hero-slider img:nth-child(3) {
  animation-delay: 10s;
}

@keyframes heroFade {
  0%,
  100% {
    opacity: 0;
  }

  8%,
  33% {
    opacity: 1;
  }

  42% {
    opacity: 0;
  }
}

section {
  padding: clamp(68px, 9vw, 118px) clamp(18px, 6vw, 76px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.25;
}

h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.35;
}

.section-lead {
  margin: 14px auto 0;
  color: var(--muted);
  font-weight: 700;
}

.role {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
}

.intro {
  background: var(--section-blue);
}

.intro-inner {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.intro-pill {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin: 0 0 24px;
  padding: 8px 26px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 800;
  line-height: 1.2;
}

.intro-logo-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}

.intro-logo-heading img {
  width: clamp(72px, 7.4vw, 104px);
  aspect-ratio: 1;
  border-radius: 0;
  object-fit: contain;
}

.intro-logo-heading h2 {
  color: #111;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.08;
}

.intro-message p {
  margin: 0;
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 700;
  line-height: 2;
}

.intro-message p + p {
  margin-top: 16px;
}

.intro-message {
  color: #1d2430;
}

.intro-message p {
  margin: 0;
}

.draft-intro .intro-message p {
  font-size: clamp(14px, 1.12vw, 16px);
  font-weight: 500;
  line-height: 2.05;
}

.draft-service {
  padding: 0;
  overflow: hidden;
  background: var(--section-blue);
}

.draft-service-image {
  height: clamp(260px, 31vw, 430px);
  margin: 0;
  overflow: hidden;
}

.draft-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.draft-service-heading {
  position: relative;
  display: grid;
  justify-items: center;
  padding: clamp(54px, 7vw, 88px) 24px clamp(40px, 5vw, 66px);
}

.draft-service-heading h2 {
  position: absolute;
  right: clamp(34px, 9vw, 180px);
  top: clamp(-62px, -4.4vw, -42px);
  margin: 0;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", Georgia, serif;
  font-size: clamp(58px, 8vw, 128px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: 0;
}

.draft-service-heading p {
  position: relative;
  margin: 0;
  color: #050505;
  font-size: clamp(22px, 2.6vw, 38px);
  font-weight: 900;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  letter-spacing: 0.06em;
}

.draft-service-heading p::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 120px;
  height: 2px;
  background: var(--navy);
  transform: translateX(-50%);
}

.draft-service-body {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 70px) clamp(78px, 9vw, 128px);
}

.draft-service-feature {
  position: relative;
  z-index: 0;
  display: block;
  margin-bottom: clamp(42px, 6vw, 78px);
  padding: clamp(42px, 5vw, 72px) clamp(42px, 6vw, 86px) clamp(170px, 15vw, 250px);
  outline: 2px solid var(--navy);
  outline-offset: 20px;
  background: rgba(255, 255, 255, 0.82);
}

.draft-service-feature-title,
.draft-service-wide-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.draft-service-feature-title > span,
.draft-service-wide-title > span {
  display: block;
  width: 2px;
  height: 54px;
  background: var(--navy);
}

.draft-service-feature h3,
.draft-service-wide h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(23px, 2.7vw, 38px);
  font-weight: 900;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.draft-service-wide h3 span {
  display: block;
  white-space: nowrap;
}

.draft-service-feature-text p,
.draft-service-card p,
.draft-service-wide p {
  margin: 0;
  color: #222;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 500;
  line-height: 2.05;
}

.draft-service-card-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(-210px, -13vw, -130px);
  margin-bottom: clamp(42px, 6vw, 78px);
}

.draft-service-card {
  background: #fff;
}

.draft-service-placeholder {
  min-height: 260px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.44), rgba(4, 48, 123, 0.06)),
    repeating-linear-gradient(135deg, rgba(4, 48, 123, 0.08) 0 1px, transparent 1px 18px);
  overflow: hidden;
}

.draft-service-card .draft-service-placeholder {
  height: clamp(320px, 27vw, 430px);
  min-height: 0;
}

.draft-service-placeholder img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.draft-service-card .draft-service-placeholder img {
  min-height: 0;
}

.draft-service-card-content {
  padding: clamp(26px, 4vw, 48px);
}

.draft-service-card h3 {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
  margin: 0 0 24px;
  color: #050505;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: left;
  white-space: nowrap;
}

.draft-service-card h3::before {
  content: "";
  width: 2px;
  height: 34px;
  background: var(--navy);
}

.draft-service-card h3::after {
  content: none;
}

.draft-service-wide {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  margin-top: clamp(34px, 5vw, 70px);
  padding: clamp(30px, 4vw, 54px);
  outline: 2px solid var(--navy);
  outline-offset: 20px;
  background: #fff;
}

.draft-service-wide.reverse {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.draft-service-wide.reverse .draft-service-wide-image {
  order: 2;
}

.draft-service-wide-image {
  min-height: clamp(260px, 26vw, 430px);
}

.draft-service-wide-content {
  display: grid;
  gap: 28px;
}

.draft-price {
  background: var(--section-blue);
}

.draft-price-heading {
  display: grid;
  justify-items: center;
  margin-bottom: clamp(32px, 5vw, 58px);
  text-align: center;
}

.draft-price-heading h2 {
  position: relative;
  margin: 0;
  color: #050505;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  letter-spacing: 0.06em;
}

.draft-price-heading h2 span {
  color: var(--green);
}

.draft-price-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 120px;
  height: 2px;
  background: var(--navy);
  transform: translateX(-50%);
}

.draft-price-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
  max-width: 1160px;
  margin: 0 auto clamp(34px, 4vw, 52px);
}

.draft-price-card {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  min-height: clamp(120px, 11vw, 162px);
  padding: clamp(20px, 3vw, 36px);
  border: 1px solid #7d7162;
  outline: 1px solid #7d7162;
  outline-offset: -10px;
  background: #fff;
}

.draft-price-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  min-height: 34px;
  padding: 6px 18px;
  border-radius: 999px;
  background: #f0ebe4;
  color: #7d7162;
  font-weight: 900;
  line-height: 1;
}

.draft-price-card strong {
  color: #91c80f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 7vw, 94px);
  font-style: italic;
  line-height: 0.9;
}

.draft-price-card p {
  margin: 0;
  color: #7d7162;
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 900;
}

.draft-price-note {
  max-width: 820px;
  margin: 0 auto clamp(46px, 6vw, 76px);
  color: #222;
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
  text-align: center;
}

.draft-faq {
  padding-top: 0;
  background: #fff;
}

.draft-faq-image {
  width: 100vw;
  max-width: none;
  height: clamp(260px, 31vw, 430px);
  margin: 0 0 0 calc(50% - 50vw);
  overflow: hidden;
}

.draft-faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 76%;
}

.draft-faq-heading {
  display: grid;
  justify-items: center;
  padding: clamp(44px, 5vw, 68px) 24px clamp(32px, 3.6vw, 48px);
  text-align: center;
}

.draft-faq-heading h2 {
  position: relative;
  margin: 0;
  color: #050505;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  letter-spacing: 0.06em;
}

.draft-faq-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 120px;
  height: 2px;
  background: var(--navy);
  transform: translateX(-50%);
}

.draft-faq-list {
  display: grid;
  gap: clamp(12px, 1.4vw, 18px);
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 70px) clamp(72px, 8vw, 120px);
}

.draft-faq-list details {
  border: 0;
  border-radius: 0;
  background: var(--section-blue);
}

.draft-faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(14px, 1.6vw, 22px);
  align-items: center;
  min-height: clamp(64px, 6vw, 86px);
  padding: clamp(13px, 1.7vw, 20px) clamp(20px, 2.4vw, 34px);
  color: #080808;
  font-size: clamp(14px, 1.15vw, 18px);
  font-weight: 800;
  list-style: none;
}

.draft-faq-list summary::-webkit-details-marker {
  display: none;
}

.draft-faq-list summary span {
  display: inline-grid;
  place-items: center;
  width: clamp(34px, 3vw, 46px);
  height: clamp(34px, 3vw, 46px);
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 700;
  line-height: 1;
}

.draft-faq-list summary::after {
  content: "+";
  justify-self: end;
  color: var(--green);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 300;
  line-height: 1;
}

.draft-faq-list details[open] summary::after {
  content: "-";
}

.draft-faq-list details p {
  margin: 0;
  padding: 0 clamp(20px, 2.4vw, 34px) clamp(18px, 2.4vw, 26px) calc(clamp(20px, 2.4vw, 34px) + clamp(34px, 3vw, 46px) + clamp(14px, 1.6vw, 22px));
  color: #2b3442;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 500;
  line-height: 1.9;
}

.draft-company {
  background: #fff;
}

.draft-company-heading {
  display: grid;
  justify-items: center;
  margin-bottom: clamp(40px, 6vw, 78px);
  text-align: center;
}

.draft-company-heading h2 {
  position: relative;
  margin: 0;
  color: #050505;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  letter-spacing: 0.06em;
}

.draft-company-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 120px;
  height: 2px;
  background: var(--green);
  transform: translateX(-50%);
}

.draft-company-list {
  display: grid;
  max-width: 980px;
  margin: 0 auto;
}

.draft-company-list div {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  align-items: start;
  min-height: 86px;
  border-bottom: 1px solid var(--line);
}

.draft-company-list dt {
  align-self: stretch;
  display: grid;
  place-items: center;
  margin: 0;
  border-bottom: 2px solid var(--green);
  color: var(--green);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 900;
}

.draft-company-list dd {
  margin: 0;
  padding: 26px clamp(20px, 3vw, 42px);
  color: #111;
  font-size: clamp(14px, 1.18vw, 17px);
  font-weight: 600;
  line-height: 1.85;
}

.draft-contact,
.draft-privacy {
  background: #fff;
}

.draft-recruit .draft-section-heading {
  margin-top: clamp(16px, 2vw, 28px);
}

.draft-section-heading {
  display: grid;
  justify-items: center;
  margin-bottom: clamp(30px, 4vw, 46px);
  text-align: center;
}

.draft-section-heading h2 {
  position: relative;
  margin: 0;
  color: #050505;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: 0.06em;
}

.draft-section-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 120px;
  height: 2px;
  background: var(--green);
  transform: translateX(-50%);
}

.draft-section-lead {
  max-width: 760px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  color: var(--muted);
  font-size: clamp(14px, 1.15vw, 16px);
  font-weight: 600;
  line-height: 1.9;
  text-align: center;
}

.draft-contact .contact-form {
  border-top: 0;
  background: #fff;
}

.draft-privacy .privacy-scroll {
  background: #fff;
}

.reason {
  background: var(--section-blue);
}

.reason-body {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 42px);
  border-top: 4px solid var(--yellow);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.reason-body p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.features {
  background: var(--section-blue);
}

.feature-grid,
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card,
.staff-card,
.contact-box {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(4, 48, 123, 0.08);
}

.number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
}

.feature-card p,
.staff-card p,
.service-card p,
.contact-box p {
  margin: 0;
  color: var(--muted);
}

.service {
  background: var(--section-blue);
  padding-bottom: clamp(84px, 10vw, 132px);
}

.service-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(34px, 8vw, 116px);
  align-items: start;
  margin-bottom: clamp(50px, 7vw, 92px);
}

.service-title-block {
  position: relative;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
}

.service-heading h2 {
  margin: 0;
  color: #02050a;
  font-family: Arial, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: clamp(46px, 5.1vw, 78px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
}

.service-heading-ja {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  margin: 0;
  color: #111;
  font-size: clamp(15px, 1.3vw, 20px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: right;
  white-space: nowrap;
}

.service-heading-space {
  min-height: clamp(120px, 15vw, 210px);
}

.service-list {
  display: grid;
  gap: clamp(42px, 6vw, 82px);
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(22px, 4vw, 56px);
  row-gap: 18px;
  align-items: start;
}

.service-card-label {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  color: #02050a;
  font-size: clamp(17px, 1.8vw, 25px);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-card-label::before,
.service-card-label::after {
  color: #02050a;
  font-weight: 700;
}

.service-card-label::before {
  content: "(";
}

.service-card-label::after {
  content: ")";
}

.service-visual {
  grid-column: 1;
  position: relative;
  min-height: clamp(230px, 30vw, 430px);
  margin: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 42px rgba(4, 48, 123, 0.08);
}

.service-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border-radius: inherit;
  object-fit: cover;
  object-position: left top;
}

.service-visual figcaption {
  position: absolute;
  top: clamp(-50px, -3.4vw, -28px);
  right: clamp(24px, 4vw, 58px);
  color: var(--navy);
  font-family: "Arial Black", "Arial", sans-serif;
  font-size: clamp(46px, 5.4vw, 86px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.service-description {
  grid-column: 2;
  margin: clamp(12px, 3vw, 42px) 0 0;
  color: #20242a;
  font-size: clamp(15px, 1.3vw, 20px);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.service-description p {
  margin: 0;
}

.service-description-detail {
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.85;
  letter-spacing: 0;
}

.service-description-detail p {
  margin: 0;
}

.service-needs {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.service-needs li {
  position: relative;
  padding-left: 1.25em;
  color: var(--navy);
  font-weight: 800;
}

.service-needs li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.48em;
  height: 0.48em;
  border-radius: 50%;
  background: #38bd91;
}

.service-description-detail h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(17px, 1.5vw, 22px);
}

.service-detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.service-detail-list div {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(4, 48, 123, 0.14);
}

.service-detail-list dt {
  margin: 0 0 4px;
  color: var(--navy);
  font-weight: 900;
}

.service-detail-list dd {
  margin: 0;
  color: #3c4654;
  font-weight: 600;
}

.service-visual-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(220px, 32vw, 420px);
  border: 1px dashed rgba(4, 48, 123, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(229, 247, 255, 0.82)),
    repeating-linear-gradient(135deg, rgba(4, 48, 123, 0.05) 0 1px, transparent 1px 18px);
}

.building-support {
  display: grid;
  grid-template-columns: minmax(72px, 0.12fr) minmax(0, 1fr);
  gap: clamp(20px, 3.8vw, 58px);
  align-items: stretch;
  margin-top: clamp(62px, 9vw, 132px);
}

.building-support-title {
  align-self: start;
  justify-self: center;
  margin: clamp(38px, 5vw, 72px) 0 0;
  color: var(--navy);
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.building-support-title span {
  color: #38bd91;
}

.building-support-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 5vw, 72px);
  row-gap: 0;
  padding: clamp(34px, 5.4vw, 82px) clamp(32px, 6vw, 86px);
  border-radius: 8px;
  background: #fff;
}

.building-support-list div {
  display: grid;
  align-content: start;
  min-height: clamp(98px, 8.6vw, 132px);
  padding: clamp(16px, 2.2vw, 24px) 0 clamp(20px, 2.8vw, 34px);
  border-bottom: 1px solid rgba(4, 48, 123, 0.16);
}

.building-support-list h3 {
  margin: 0 0 12px;
  color: #38bd91;
  font-size: clamp(17px, 1.5vw, 22px);
}

.building-support-list h3::before {
  content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  margin-right: 0.5em;
  border-radius: 50%;
  background: #38bd91;
}

.building-support-list p {
  margin: 0;
  color: #2b3442;
  font-weight: 700;
  line-height: 1.85;
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.wave-divider {
  position: relative;
  height: clamp(86px, 10vw, 150px);
  margin-top: -1px;
  overflow: hidden;
  background: var(--section-blue);
}

.wave-divider::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40%;
  width: 180%;
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='150' viewBox='0 0 1440 150' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 50C190 112 382 118 574 88C760 59 920 5 1122 18C1260 27 1360 60 1440 82V150H0V50Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center bottom;
  animation: wave-slide 12s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes wave-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(22%);
  }
}

.staff {
  background: var(--navy);
}

.staff .section-heading h2 {
  color: #fff;
}

.staff-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 980px;
  margin: 0 auto;
}

.staff-card {
  border-color: rgba(255, 255, 255, 0.18);
}

.staff-card h3 {
  font-size: 30px;
}

.price {
  background: #fff;
}

.price-heading {
  display: grid;
  gap: 18px;
  justify-items: start;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.price-title-block {
  position: relative;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
}

.price-heading h2 {
  margin: 0;
  color: #02050a;
  font-family: Arial, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: clamp(46px, 5.1vw, 78px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
}

.price-heading-ja {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  margin: 0;
  color: #111;
  font-size: clamp(15px, 1.3vw, 20px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: right;
  white-space: nowrap;
}

.price-heading .section-lead {
  margin: 0;
  max-width: 680px;
}

.price-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.price-table-wrap,
.price-side {
  padding: clamp(22px, 3vw, 34px);
  border-radius: 8px;
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  width: 58%;
  font-weight: 800;
}

td:last-child {
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.price-list {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.price-list strong {
  color: var(--navy);
  white-space: nowrap;
}

.note {
  max-width: 920px;
  margin: 24px auto 0;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.faq {
  position: relative;
  overflow: hidden;
  padding-top: clamp(112px, 12vw, 170px);
  padding-bottom: clamp(112px, 12vw, 170px);
  background: var(--section-blue);
}

.faq::before,
.faq::after {
  content: "";
  position: absolute;
  left: -40%;
  width: 180%;
  height: clamp(76px, 8vw, 132px);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  animation: wave-slide 12s ease-in-out infinite alternate;
  will-change: transform;
  pointer-events: none;
}

.faq::before {
  top: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='132' viewBox='0 0 1440 132' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 0H1440V58C1260 110 1100 112 908 82C704 50 540 16 342 36C206 50 96 84 0 104V0Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

.faq::after {
  bottom: 0;
  animation-direction: alternate-reverse;
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='132' viewBox='0 0 1440 132' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 42C190 104 382 110 574 80C760 51 920 0 1122 12C1260 21 1360 52 1440 74V132H0V42Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

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

.faq-image {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 0;
  width: min(38vw, 620px);
  height: clamp(420px, 43vw, 620px);
  margin: 0;
  overflow: hidden;
  border-radius: 18px 0 0 18px;
  transform: translateY(-50%);
  pointer-events: none;
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.faq-image.reveal {
  opacity: 0;
  transform: translateY(calc(-50% + 38px));
}

.faq-image.reveal.is-visible {
  opacity: 1;
  transform: translateY(-50%);
}

.faq-heading {
  display: grid;
  justify-items: start;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.faq-title-block {
  position: relative;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
}

.faq-heading h2 {
  margin: 0;
  color: #02050a;
  font-family: Arial, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: clamp(46px, 5.1vw, 78px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
}

.faq-heading-ja {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  margin: 0;
  color: #111;
  font-size: clamp(15px, 1.3vw, 20px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: right;
  white-space: nowrap;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: min(980px, calc(100vw - min(38vw, 620px) - 132px));
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--navy);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.company {
  position: relative;
  overflow: hidden;
  background: #fff;
}

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

.company-layout {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 820px);
  column-gap: clamp(36px, 5vw, 70px);
  row-gap: clamp(44px, 6vw, 88px);
  align-items: start;
  max-width: min(1110px, calc(100vw - min(32vw, 520px) - 120px));
  margin: 0 auto 0 0;
}

.company-heading {
  display: grid;
  justify-items: start;
  margin-bottom: clamp(54px, 7vw, 92px);
  text-align: left;
}

.company-title-block {
  position: relative;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
}

.company-heading h2 {
  margin: 0;
  color: #02050a;
  font-family: Arial, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: clamp(46px, 5.1vw, 78px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
}

.company-heading-ja {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  margin: 0;
  color: #111;
  font-size: clamp(15px, 1.3vw, 20px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: right;
  white-space: nowrap;
}

.company-philosophy {
  margin: 0;
  padding-bottom: clamp(28px, 3vw, 40px);
  border-bottom: 1px solid rgba(4, 48, 123, 0.18);
}

.company-label {
  margin: 0;
  color: #050505;
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 900;
  letter-spacing: 0.08em;
  justify-self: start;
  text-align: left;
}

.company-label::before {
  content: "（";
}

.company-label::after {
  content: "）";
}

.company-philosophy-text {
  margin: 0;
  color: #050505;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.company-profile {
  margin: 0;
}

.company-list {
  margin: 0;
  border-top: 1px solid rgba(4, 48, 123, 0.18);
  background: #fff;
}

.company-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(4, 48, 123, 0.18);
}

.company-list dt {
  color: var(--navy);
  font-weight: 900;
}

.company-list dd {
  margin: 0;
}

.company-image {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 0;
  width: min(32vw, 520px);
  height: clamp(420px, 42vw, 620px);
  margin: 0;
  overflow: hidden;
  border-radius: 18px 0 0 18px;
  transform: translateY(-50%);
  pointer-events: none;
}

.company-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.company-image.reveal {
  opacity: 0;
  transform: translateY(calc(-50% + 38px));
}

.company-image.reveal.is-visible {
  opacity: 1;
  transform: translateY(-50%);
}

.contact {
  background: var(--section-blue);
}

.contact-heading,
.privacy-heading {
  display: grid;
  gap: 18px;
  justify-items: start;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.contact-title-block,
.privacy-title-block {
  position: relative;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
}

.contact-heading h2,
.privacy-heading h2 {
  margin: 0;
  color: #02050a;
  font-family: Arial, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: clamp(46px, 5.1vw, 78px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
}

.contact-heading-ja,
.privacy-heading-ja {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  margin: 0;
  color: #111;
  font-size: clamp(15px, 1.3vw, 20px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: right;
  white-space: nowrap;
}

.contact-heading .section-lead,
.privacy-heading .section-lead {
  margin: 0;
  max-width: 760px;
}

.contact-form {
  max-width: 1080px;
  margin: 0 auto;
  border-top: 1px solid rgba(4, 48, 123, 0.16);
  background: #fff;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(22px, 4vw, 56px);
  padding: clamp(22px, 3vw, 34px) clamp(22px, 4vw, 54px);
  border-bottom: 1px solid rgba(4, 48, 123, 0.16);
}

.form-row-textarea {
  align-items: start;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--navy);
  font-weight: 900;
}

.form-label em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 22px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-style: normal;
  line-height: 1;
}

.form-label small {
  flex-basis: 100%;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(4, 48, 123, 0.16);
  border-radius: 0;
  background: #fbfdff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

.form-field input {
  min-height: 44px;
  padding: 10px 14px;
}

.form-field textarea {
  min-height: 176px;
  padding: 14px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--green);
  outline: 2px solid rgba(56, 189, 145, 0.16);
  outline-offset: 0;
}

.form-options {
  display: flex;
  gap: clamp(18px, 4vw, 54px);
  flex-wrap: wrap;
  align-items: center;
  color: #222;
  font-weight: 700;
}

.form-options label,
.form-consent label {
  cursor: pointer;
}

.form-options input,
.form-consent input {
  accent-color: var(--green);
}

.form-stack {
  display: grid;
  gap: 10px;
}

.form-help {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.form-consent {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: clamp(24px, 3vw, 34px) 22px 0;
  color: #2b3442;
  font-weight: 700;
  text-align: center;
}

.form-consent a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-actions {
  display: flex;
  justify-content: center;
  padding: 22px 22px clamp(28px, 4vw, 44px);
}

.form-actions .button {
  border: 0;
  border-radius: 0;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
}

.privacy {
  background: #fff;
}

.privacy-scroll {
  max-width: 1080px;
  max-height: clamp(320px, 42vw, 480px);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 46px);
  overflow-y: auto;
  border: 1px solid rgba(56, 189, 145, 0.55);
  background: #fbfff8;
  color: #222;
  scrollbar-color: var(--green) #eef7f1;
}

.privacy-scroll:focus {
  outline: 2px solid rgba(56, 189, 145, 0.34);
  outline-offset: 4px;
}

.privacy-scroll p,
.privacy-scroll li {
  color: #263141;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.95;
}

.privacy-scroll p {
  margin: 0 0 20px;
}

.privacy-scroll h3 {
  margin: 28px 0 10px;
  color: var(--navy);
  font-size: 18px;
}

.privacy-scroll ul {
  display: grid;
  gap: 6px;
  margin: 0 0 20px;
  padding-left: 1.2em;
}

.recruit {
  position: relative;
  overflow: hidden;
  padding-top: clamp(112px, 12vw, 170px);
  background:
    linear-gradient(135deg, rgba(56, 189, 145, 0.16), transparent 44%),
    #fff;
}

.recruit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 180%;
  height: clamp(76px, 8vw, 132px);
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='132' viewBox='0 0 1440 132' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 0H1440V58C1260 110 1100 112 908 82C704 50 540 16 342 36C206 50 96 84 0 104V0Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  animation: wave-slide 12s ease-in-out infinite alternate;
  pointer-events: none;
  will-change: transform;
}

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

.recruit-heading {
  display: grid;
  gap: 18px;
  justify-items: start;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.recruit-title-block {
  position: relative;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
}

.recruit-heading h2 {
  margin: 0;
  color: #02050a;
  font-family: Arial, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: clamp(46px, 5.1vw, 78px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
}

.recruit-heading-ja {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  margin: 0;
  color: #111;
  font-size: clamp(15px, 1.3vw, 20px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: right;
  white-space: nowrap;
}

.recruit-heading .section-lead {
  margin: 0;
  max-width: 760px;
}

.recruit-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}

.recruit-box h3 {
  color: #fff;
}

.recruit-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.recruit-button {
  justify-self: center;
  background: var(--green);
  color: #fff;
}

.contact-box {
  position: sticky;
  top: 112px;
  text-align: center;
}

.contact-box img {
  width: 160px;
  margin: 0 auto 18px;
  border-radius: 8px;
}

.site-footer {
  padding: 46px 18px 36px;
  background: var(--navy);
  color: #fff;
  text-align: center;
}

.footer-logo img {
  width: 118px;
  margin: 0 auto 20px;
  border-radius: 8px;
}

.site-footer p {
  margin: 6px 0;
}

.site-footer small {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.7);
}

.draft-link {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(4, 48, 123, 0.18);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    grid-column: 3;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    transform: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: calc(100dvh - 82px);
    padding: 26px clamp(28px, 8vw, 58px) 32px;
    background: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid rgba(4, 48, 123, 0.12);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    backdrop-filter: blur(16px);
    transform: translateY(-18px);
    transition:
      opacity 0.34s ease,
      transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1),
      visibility 0s linear 0.42s;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav a {
    min-width: 0;
    padding: 16px 0;
    border-bottom: 1px solid rgba(4, 48, 123, 0.16);
    opacity: 0;
    transform: translateX(18px);
    transition:
      opacity 0.34s ease,
      transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1),
      border-color 0.24s ease;
  }

  .site-nav.is-open a {
    opacity: 1;
    transform: translateX(0);
  }

  .site-nav.is-open a:nth-child(1) {
    transition-delay: 0.04s;
  }

  .site-nav.is-open a:nth-child(2) {
    transition-delay: 0.08s;
  }

  .site-nav.is-open a:nth-child(3) {
    transition-delay: 0.12s;
  }

  .site-nav.is-open a:nth-child(4) {
    transition-delay: 0.16s;
  }

  .site-nav.is-open a:nth-child(5) {
    transition-delay: 0.2s;
  }

  .site-nav strong {
    font-size: 20px;
  }

  .site-header.is-scrolled .site-nav.is-open span,
  .site-nav.is-open span {
    max-height: 18px;
    opacity: 1;
    transform: none;
  }

  .nav-close {
    display: grid;
    place-items: center;
    align-self: center;
    width: 52px;
    height: 52px;
    margin-top: auto;
    border: 1px solid rgba(4, 48, 123, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.64);
    color: var(--navy);
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px) rotate(-18deg);
    transition:
      opacity 0.34s ease,
      transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1),
      background 0.24s ease;
  }

  .site-nav.is-open .nav-close {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
    transition-delay: 0.24s;
  }

  .nav-close:hover,
  .nav-close:focus-visible {
    background: #fff;
  }

  .header-tel {
    display: none;
  }

  .header-contact {
    display: none;
  }

  .hero,
  .price-layout {
    grid-template-columns: 1fr;
  }

  .intro-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero {
    min-height: calc(100vh - 72px);
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-media {
    min-height: 100%;
  }

  .hero-slider {
    height: 100%;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .recruit-box {
    grid-template-columns: 1fr;
  }

  .service-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 46px;
  }

  .service-heading-space {
    display: none;
  }

  .contact-box {
    position: static;
  }
}

@media (max-width: 640px) {
  :root {
    --mobile-gutter: 34px;
  }

  main,
  section,
  .site-header,
  .site-footer {
    width: 100vw;
    max-width: 100vw;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 72px;
    padding: 10px 16px;
  }

  .nav-toggle {
    position: absolute;
    top: 50%;
    right: 16px;
    z-index: 2;
    grid-column: auto;
    justify-self: auto;
    margin-left: 0;
    transform: translateY(-50%);
  }

  .site-nav {
    top: 72px;
    min-height: calc(100dvh - 72px);
  }

  .brand img {
    width: 84px;
  }

  .brand-copy {
    display: none;
  }

  .hero {
    display: flex;
    width: 100vw;
    max-width: 100vw;
    min-height: calc(100vh - 104px);
    padding-top: 34px;
    padding-right: 60px;
    padding-left: 0;
    overflow: hidden;
  }

  .hero-copy {
    width: min(360px, calc(100vw - 40px));
    max-width: 100%;
  }

  .hero-media {
    width: 100%;
    max-width: none;
  }

  section > * {
    width: min(300px, 100%);
    max-width: 300px;
  }

  .draft-service > *,
  .draft-price > *,
  .draft-faq > *,
  .draft-company > *,
  .draft-contact > *,
  .draft-privacy > *,
  .draft-recruit > * {
    width: 100%;
    max-width: none;
  }

  .service > * {
    width: 100%;
    max-width: none;
  }

  .price > *,
  .faq > *,
  .company > * {
    width: 100%;
    max-width: none;
  }

  .intro-inner,
  .intro-title,
  .intro-message {
    width: 100%;
    max-width: 100%;
  }

  .intro-logo-heading {
    gap: 14px;
  }

  .intro-logo-heading img {
    width: 66px;
    border-radius: 0;
  }

  .intro-pill {
    min-height: 42px;
    margin-bottom: 20px;
    padding: 8px 18px;
    font-size: 18px;
  }

  .intro-message p {
    font-size: 15px;
    line-height: 1.9;
  }

  .draft-service-image {
    width: 100vw;
    max-width: 100vw;
    height: 220px;
    margin-left: calc(50% - 50vw);
  }

  .draft-service-heading {
    padding: 52px 24px 42px;
  }

  .draft-service-heading h2 {
    right: 18px;
    top: -36px;
    font-size: clamp(48px, 15vw, 66px);
  }

  .draft-service-heading p {
    font-size: 24px;
  }

  .draft-service-body {
    padding: 28px 18px 72px;
  }

  .draft-service-feature,
  .draft-service-card-grid,
  .draft-service-wide,
  .draft-service-wide.reverse {
    grid-template-columns: 1fr;
  }

  .draft-service-feature,
  .draft-service-wide {
    gap: 24px;
    outline-offset: 12px;
    padding: 28px 18px 120px;
  }

  .draft-service-card-grid {
    margin-top: -94px;
  }

  .draft-service-wide.reverse .draft-service-wide-image {
    order: 0;
  }

  .draft-service-feature-title,
  .draft-service-wide-title {
    align-items: stretch;
    gap: 12px;
  }

  .draft-service-feature-title > span,
  .draft-service-wide-title > span {
    height: auto;
    min-height: 44px;
  }

  .draft-service-feature h3,
  .draft-service-wide h3 {
    font-size: 20px;
    white-space: normal;
  }

  .draft-service-placeholder,
  .draft-service-wide-image {
    min-height: 190px;
  }

  .draft-service-card .draft-service-placeholder {
    height: clamp(220px, 58vw, 280px);
  }

  .draft-service-card-content {
    padding: 24px 18px 28px;
  }

  .draft-service-card h3 {
    gap: 10px;
    font-size: 20px;
    white-space: normal;
  }

  .draft-service-card h3::before {
    width: 2px;
    height: 30px;
  }

  .draft-price-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .draft-price-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    min-height: 104px;
    padding: 22px 18px;
  }

  .draft-price-card span {
    min-width: 96px;
    padding: 6px 12px;
    font-size: 13px;
  }

  .draft-price-card strong {
    justify-self: end;
    font-size: clamp(42px, 14vw, 54px);
  }

  .draft-price-card p {
    font-size: 16px;
  }

  .draft-price-note {
    text-align: left;
  }

  .draft-price-heading,
  .draft-faq-heading,
  .draft-company-heading,
  .draft-section-heading {
    justify-items: center;
    text-align: center;
  }

  .draft-price .price-layout,
  .draft-price .price-table-wrap,
  .draft-price .price-side {
    width: 100%;
    max-width: 100%;
  }

  .draft-price .price-table-wrap,
  .draft-price .price-side {
    padding-right: 16px;
    padding-left: 16px;
  }

  .draft-faq-image {
    width: 100vw;
    max-width: 100vw;
    height: clamp(220px, 58vw, 280px);
    margin-left: calc(50% - 50vw);
  }

  .draft-faq-image img {
    object-position: center 82%;
  }

  .draft-faq-heading {
    padding: 42px var(--mobile-gutter) 34px;
  }

  .draft-faq-list {
    gap: 14px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .draft-faq-list summary {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 64px;
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.55;
  }

  .draft-faq-list summary span {
    width: 34px;
    height: 34px;
    font-size: 21px;
  }

  .draft-faq-list details p {
    padding: 0 16px 18px 62px;
  }

  .draft-company-list {
    width: 100%;
  }

  .draft-company-list div {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .draft-company-list dt {
    place-items: start;
    padding: 18px 0 10px;
    border-bottom-width: 2px;
  }

  .draft-company-list dd {
    padding: 14px 0 22px;
  }

  h1 {
    font-size: 35px;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  h2 {
    font-size: 30px;
  }

  section {
    padding-right: var(--mobile-gutter);
    padding-left: var(--mobile-gutter);
  }

  .lead {
    font-size: 16px;
    line-height: 1.75;
  }

  .button {
    width: min(300px, 100%);
  }

  .draft-link {
    right: 12px;
    bottom: 12px;
    min-height: 40px;
    padding: 8px 14px;
    font-size: 13px;
    box-shadow: 0 8px 18px rgba(4, 48, 123, 0.14);
  }

  .hero-slider {
    height: 100%;
  }

  .feature-grid,
  .staff-grid {
    grid-template-columns: 1fr;
  }

  .service-heading h2 {
    font-size: clamp(42px, 14vw, 60px);
  }

  .price-heading h2 {
    font-size: clamp(42px, 14vw, 60px);
  }

  .faq-heading h2 {
    font-size: clamp(42px, 14vw, 60px);
  }

  .company-heading h2 {
    font-size: clamp(40px, 15vw, 58px);
    white-space: nowrap;
  }

  .contact-heading h2,
  .privacy-heading h2,
  .recruit-heading h2 {
    font-size: clamp(42px, 14vw, 60px);
  }

  .service-heading-ja {
    bottom: calc(100% + 6px);
    font-size: 14px;
  }

  .price-heading-ja {
    bottom: calc(100% + 6px);
    font-size: 14px;
  }

  .faq-heading-ja {
    bottom: calc(100% + 6px);
    font-size: 14px;
  }

  .company-heading-ja {
    bottom: calc(100% + 6px);
    font-size: 14px;
  }

  .contact-heading-ja,
  .privacy-heading-ja,
  .recruit-heading-ja {
    bottom: calc(100% + 6px);
    font-size: 14px;
  }

  .company-layout {
    grid-template-columns: 1fr;
    gap: 34px;
    max-width: none;
  }

  .company-heading {
    justify-items: start;
    text-align: left;
  }

  .company-label {
    justify-self: start;
    text-align: left;
    margin-bottom: -20px;
  }

  .company-image {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 190px;
    margin: 44px 0 0;
    border-radius: 10px;
    transform: none;
  }

  .company-image.reveal,
  .faq-image.reveal {
    transform: translateY(38px);
  }

  .company-image.reveal.is-visible,
  .faq-image.reveal.is-visible {
    transform: translateY(0);
  }

  .company-image img {
    object-position: center 22%;
  }

  .faq {
    padding-right: var(--mobile-gutter);
    padding-left: var(--mobile-gutter);
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .faq-image {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100vw - (var(--mobile-gutter) * 2));
    height: 180px;
    margin: 0 0 42px;
    border-radius: 10px;
    transform: none;
  }

  .faq-image img {
    object-position: center 88%;
  }

  .faq-heading {
    padding-right: 0;
    padding-left: 0;
  }

  .faq-list {
    width: 100%;
    max-width: 100%;
  }

  details {
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-radius: 8px;
  }

  summary {
    padding: 18px 20px;
    font-size: 18px;
    line-height: 1.55;
  }

  details p {
    padding-right: 20px;
    padding-left: 20px;
  }

  .faq::before,
  .faq::after {
    height: 72px;
  }

  .recruit {
    padding-top: 92px;
  }

  .recruit > * {
    width: 100%;
    max-width: none;
  }

  .recruit .recruit-box {
    width: 100%;
    max-width: none;
    padding: 28px 24px;
  }

  .draft-recruit .draft-section-heading {
    justify-items: center;
    text-align: center;
  }

  .draft-recruit .recruit-box {
    width: 100%;
    max-width: none;
    padding: 28px 24px;
  }

  .recruit::before {
    height: 72px;
  }

  .service-card-label {
    margin-bottom: 14px;
    font-size: 16px;
    display: block;
    line-height: 1.85;
    letter-spacing: 0.04em;
  }

  .service-card-label::before {
    content: "( ";
  }

  .service-card-label::after {
    content: " )";
  }

  .service-card {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .service-visual,
  .service-visual-empty {
    grid-column: 1;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(var(--mobile-gutter) * -1);
    border-radius: 0;
    min-height: 230px;
  }

  .service-visual img {
    border-radius: 0;
  }

  .service-visual figcaption {
    top: -28px;
    right: 28px;
    font-size: 44px;
  }

  .service-description {
    grid-column: 1;
    margin: 0;
    padding-right: 16px;
    font-size: 15px;
    line-height: 1.8;
  }

  .service-description-detail {
    font-size: 14px;
    line-height: 1.8;
  }

  .service-needs {
    margin: 14px 0 18px;
  }

  .service-detail-list {
    gap: 10px;
  }

  .building-support {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 54px;
  }

  .building-support-title {
    justify-self: start;
    margin: 0;
    font-size: 24px;
    line-height: 1.6;
    writing-mode: horizontal-tb;
  }

  .building-support-list {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .building-support-list div {
    min-height: auto;
    padding: 18px 0 22px;
  }

  .building-support-list h3 {
    font-size: 17px;
  }

  .building-support-list p {
    font-size: 14px;
  }

  .wave-divider::before {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    background-image: url("data:image/svg+xml,%3Csvg width='1440' height='150' viewBox='0 0 1440 150' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 78C240 104 480 108 720 92C960 76 1200 58 1440 76V150H0V78Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    animation: none;
  }

  .company-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .price {
    padding-right: var(--mobile-gutter);
    padding-left: var(--mobile-gutter);
  }

  .price-layout,
  .price-table-wrap,
  .price-side {
    width: 100%;
    max-width: 100%;
  }

  .price-table-wrap,
  .price-side {
    padding-right: 0;
    padding-left: 0;
  }

  .draft-price .price-table-wrap,
  .draft-price .price-side {
    padding-right: 16px;
    padding-left: 16px;
  }

  .company-philosophy-text {
    font-size: 28px;
  }

  .contact > *,
  .privacy > * {
    width: 100%;
    max-width: none;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 18px;
  }

  .form-options {
    display: grid;
    gap: 10px;
  }

  .form-consent {
    justify-items: start;
    padding-right: 18px;
    padding-left: 18px;
    text-align: left;
  }

  .draft-contact .form-consent {
    justify-items: center;
    text-align: center;
  }

  .form-actions {
    justify-content: flex-start;
    padding-right: 18px;
    padding-left: 18px;
  }

  .draft-contact .form-actions {
    justify-content: center;
  }

  .privacy-scroll {
    max-height: 360px;
    padding: 22px 18px;
  }

  table,
  tbody,
  tr,
  th,
  td {
    display: block;
    width: 100%;
  }

  tr {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  th,
  td {
    padding: 2px 0;
    border-bottom: 0;
  }

  td:last-child {
    white-space: normal;
  }

  .price-table-wrap table tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 14px;
    align-items: center;
    padding: 16px 0;
  }

  .price-table-wrap table th {
    grid-column: 1;
    grid-row: 1;
  }

  .price-table-wrap table td:not(:last-child) {
    grid-column: 1;
    grid-row: 2;
    color: var(--ink);
    font-weight: 500;
  }

  .price-table-wrap table td:not(:last-child):empty {
    display: none;
  }

  .price-table-wrap table td:last-child {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: end;
    text-align: right;
    white-space: nowrap;
  }
}
