*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --black: #050505;
  --ink: #171717;
  --gray-900: #252525;
  --gray-800: #3e3e3e;
  --gray-700: #5e5e5e;
  --gray-500: #8c8c8c;
  --gray-300: #d8d8d8;
  --gray-200: #e9e9e9;
  --gray-100: #f4f4f1;
  --paper: #fbfaf6;
  --white: #ffffff;
  --accent: #d9ff39;
  --accent-2: #9fe870;
  --font: "Inter", "Noto Sans JP", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: var(--font);
  color: var(--black);
  background:
    radial-gradient(circle at 14px 14px, rgba(5, 5, 5, 0.08) 1.2px, transparent 1.2px) 0 0 / 28px 28px,
    var(--paper);
  font-size: 16px;
  line-height: 1.75;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

.nav {
  position: sticky;
  top: 0;
  left: auto;
  right: auto;
  z-index: 100;
  background: rgba(251, 250, 246, 0.84);
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-inner,
.page-header-inner,
.main-inner,
.form-wrap-inner,
.info-inner,
.calendar-inner,
.hero-inner,
.progress-inner,
.thanks-inner,
.footer-inner {
  width: min(1180px, calc(100% - 48px));
  max-width: none;
  margin: 0 auto;
}

.nav-inner {
  height: 72px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.nav-logo::before {
  content: "G";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--accent);
  border: 2px solid var(--black);
  border-radius: 50%;
  font-weight: 900;
}

.nav-logo .logo-suffix {
  margin-left: 2px;
  color: var(--gray-700);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  color: var(--gray-700);
  font-size: 0.82rem;
  font-weight: 800;
}

.nav-back {
  min-height: 38px;
  padding: 0 16px;
  color: var(--black) !important;
  background: var(--white);
  border: 1px solid var(--black);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--black);
}

.nav-back:hover {
  color: var(--black) !important;
  background: var(--accent);
}

.page-header {
  padding: 88px 0 58px;
  background: var(--paper);
  border-bottom: 2px solid var(--black);
}

.page-header-inner {
  max-width: 1080px;
}

.eyebrow,
.thanks-eyebrow,
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gray-700);
  font-family: var(--font);
  font-size: 0.8rem;
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow::before,
.thanks-eyebrow::before,
.hero-eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--black);
}

.page-title,
.thanks-title,
.hero-title {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: 3.15rem;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.page-title em,
.thanks-title em,
.hero-title em {
  position: relative;
  isolation: isolate;
  padding: 0 0.04em;
  font-style: normal;
  background: none;
}

.page-title em::before,
.thanks-title em::before,
.hero-title em::before {
  content: "";
  position: absolute;
  left: -0.04em;
  right: -0.04em;
  bottom: 0.05em;
  z-index: -1;
  height: 0.3em;
  background: rgba(217, 255, 57, 0.78);
  border-radius: 999px;
}

.page-lead,
.hero-lead,
.thanks-lead,
.form-wrap-lead {
  max-width: 720px;
  color: var(--gray-900);
  font-size: 1rem;
  line-height: 1.95;
  font-weight: 600;
}

.badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--gray-900);
  font-size: 0.9rem;
  font-weight: 800;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  background: var(--white);
  border: 1.5px solid var(--black);
  border-radius: 999px;
}

.badge .icon {
  color: var(--black);
  margin-right: 6px;
  font-weight: 900;
}

.page-visual {
  overflow: hidden;
  margin-top: 34px;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 8px;
  box-shadow: 10px 10px 0 var(--black);
}

.page-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.main,
.form-wrap,
.calendar-wrap {
  padding: 82px 0 100px;
  background: var(--paper);
}

.main-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: 58px;
  align-items: start;
}

.value-section h2,
.form-section h2,
.form-wrap h2,
.info-section h2,
.thanks-card h2,
.calendar-placeholder-title {
  margin-bottom: 16px;
  color: var(--black);
  font-size: 1.22rem;
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: 0;
}

.value-section,
.form-section,
.note-box,
.trust,
.info-card,
.faq-item,
.article,
.thanks-card {
  min-width: 0;
  max-width: 100%;
}

.value-list {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
  padding: 0;
  list-style: none;
}

.value-list li {
  position: relative;
  padding-left: 20px;
  color: var(--gray-900);
  font-size: 0.94rem;
  line-height: 1.75;
  font-weight: 700;
}

.value-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border: 1.5px solid var(--black);
  border-radius: 50%;
  transform: translateY(-50%);
}

.note-box,
.trust,
.form-section,
.info-card,
.faq-item,
.thanks-card,
.calendar-frame,
.company-box,
.article {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 8px;
}

.note-box,
.trust,
.company-box {
  padding: 22px 24px;
  margin-bottom: 26px;
  box-shadow: 7px 7px 0 var(--black);
}

.note-box h3 {
  margin-bottom: 14px;
  color: var(--gray-500);
  font-family: var(--font);
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.note-box ol,
.thanks-card ol {
  list-style: none;
  counter-reset: step;
}

.note-box li,
.thanks-card li {
  position: relative;
  counter-increment: step;
  padding-left: 36px;
  margin-bottom: 10px;
  color: var(--gray-700);
  font-size: 0.9rem;
  line-height: 1.8;
  font-weight: 700;
}

.note-box li:last-child,
.thanks-card li:last-child {
  margin-bottom: 0;
}

.note-box li::before,
.thanks-card li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.22em;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--black);
  border: 1.5px solid var(--black);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 900;
}

.trust {
  color: var(--gray-700);
  font-size: 0.84rem;
  line-height: 1.85;
  font-weight: 700;
}

.trust strong {
  color: var(--black);
  font-weight: 900;
}

.form-section {
  padding: 34px 32px;
  box-shadow: 10px 10px 0 var(--black);
}

.form-lead {
  margin-bottom: 28px;
  color: var(--gray-500);
  font-size: 0.84rem;
  font-weight: 800;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.86rem;
  font-weight: 900;
}

.required {
  color: var(--black);
  font-weight: 900;
}

.optional {
  color: var(--gray-500);
  font-size: 0.75rem;
  font-weight: 700;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid var(--black);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.92rem;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 3px solid rgba(217, 255, 57, 0.72);
  border-color: var(--black);
}

.form-row textarea {
  resize: vertical;
  min-height: 110px;
}

.form-consent {
  padding: 16px 18px;
  margin: 24px 0;
  background: var(--gray-100);
  border: 1.5px solid var(--black);
  border-radius: 8px;
  font-size: 0.83rem;
  line-height: 1.7;
}

.form-consent label {
  display: flex;
  gap: 10px;
  color: var(--gray-700);
  font-weight: 700;
  cursor: pointer;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
  flex: 0 0 auto;
}

.form-consent a,
.escape a,
.company-box a,
.footer-meta a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.form-submit,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  padding: 0 22px;
  color: var(--white);
  background: var(--black);
  border: 2px solid var(--black);
  border-radius: 999px;
  box-shadow: 5px 5px 0 var(--accent);
  font-family: var(--font);
  font-size: 0.94rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.form-submit:hover,
.btn:hover {
  background: var(--black);
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--accent);
}

.form-note {
  margin-top: 16px;
  color: var(--gray-500);
  font-size: 0.78rem;
  line-height: 1.7;
  text-align: center;
  font-weight: 700;
}

.info-section {
  padding: 86px 0;
  background: var(--white);
  border-top: 1px solid rgba(5, 5, 5, 0.14);
}

.info-inner {
  max-width: 1080px;
}

.info-section h2 {
  margin-bottom: 34px;
  text-align: left;
}

.info-grid,
.faq-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.faq-list {
  grid-template-columns: 1fr;
}

.info-card,
.faq-item {
  padding: 24px 24px;
  box-shadow: none;
}

.info-card .q,
.faq-q {
  position: relative;
  margin-bottom: 10px;
  padding-left: 36px;
  color: var(--black);
  font-size: 0.96rem;
  line-height: 1.55;
  font-weight: 900;
}

.info-card .q::before,
.faq-q::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0.08em;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  background: var(--accent);
  border: 1.5px solid var(--black);
  border-radius: 50%;
  color: var(--black);
  font-family: var(--font);
  font-size: 0.76rem;
  font-weight: 900;
}

.info-card .a,
.faq-a {
  position: relative;
  padding-left: 36px;
  color: var(--gray-700);
  font-size: 0.86rem;
  line-height: 1.85;
  font-weight: 700;
}

.info-card .a::before,
.faq-a::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 0.28em;
  color: var(--gray-500);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 900;
}

.escape {
  padding: 54px 0;
  background: var(--paper);
  text-align: center;
  border-top: 1px solid rgba(5, 5, 5, 0.14);
}

.escape p {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  color: var(--gray-700);
  font-size: 0.92rem;
  line-height: 1.85;
  font-weight: 700;
}

.progress {
  padding: 42px 0 0;
  background: var(--paper);
}

.progress-inner {
  max-width: 880px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--gray-700);
  font-size: 0.78rem;
  font-weight: 900;
}

.progress .step.done,
.progress .step.current {
  color: var(--black);
}

.progress .divider {
  color: var(--gray-500);
}

.hero {
  padding: 54px 0 42px;
  background: var(--paper);
}

.hero-inner {
  max-width: 880px;
  text-align: center;
}

.hero-eyebrow {
  justify-content: center;
}

.calendar-wrap {
  padding-top: 24px;
}

.calendar-frame {
  overflow: hidden;
  min-height: 560px;
  box-shadow: 10px 10px 0 var(--black);
}

.calendar-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  padding: 56px 32px;
  background: var(--white);
  text-align: center;
}

.calendar-placeholder-icon,
.thanks-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  color: var(--black);
  background: var(--accent);
  border: 2px solid var(--black);
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 900;
}

.calendar-placeholder-desc {
  max-width: 520px;
  color: var(--gray-700);
  font-size: 0.92rem;
  line-height: 1.85;
  font-weight: 700;
}

.calendar-placeholder-tag {
  display: inline-flex;
  margin-top: 16px;
  padding: 5px 10px;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid var(--black);
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0;
}

.notes {
  padding: 72px 0 86px;
  background: var(--white);
  border-top: 1px solid rgba(5, 5, 5, 0.14);
}

.notes-inner {
  width: min(880px, calc(100% - 48px));
  margin: 0 auto;
}

.notes h2 {
  margin-bottom: 22px;
  color: var(--black);
  font-size: 1.22rem;
  line-height: 1.5;
  font-weight: 900;
}

.notes-list {
  display: grid;
  gap: 10px;
  padding: 24px;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 8px;
  box-shadow: 8px 8px 0 var(--black);
  list-style: none;
}

.notes-list li {
  position: relative;
  padding-left: 22px;
  color: var(--gray-700);
  font-size: 0.92rem;
  line-height: 1.85;
  font-weight: 700;
}

.notes-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border: 1.5px solid var(--black);
  border-radius: 50%;
  transform: translateY(-50%);
}

.notes-contact {
  margin-top: 22px;
  color: var(--gray-500);
  font-size: 0.84rem;
  line-height: 1.8;
  font-weight: 700;
}

.notes-contact a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.thanks {
  min-height: auto;
  padding: 92px 0 96px;
  display: block;
  background: var(--paper);
  overflow: hidden;
}

.thanks::before {
  display: none;
}

.thanks-inner {
  max-width: 820px;
  text-align: center;
}

.thanks-eyebrow {
  justify-content: center;
}

.thanks-card {
  padding: 30px 34px;
  margin: 36px auto;
  text-align: left;
  box-shadow: 10px 10px 0 var(--black);
}

.thanks-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.thanks-actions .btn {
  width: auto;
  min-width: 190px;
}

.btn-secondary {
  color: var(--black);
  background: var(--white);
  box-shadow: 5px 5px 0 var(--black);
}

.btn-secondary:hover {
  color: var(--black);
  background: var(--accent);
  box-shadow: 3px 3px 0 var(--black);
}

.thanks-note {
  color: var(--gray-500);
  font-size: 0.84rem;
  line-height: 1.8;
  font-weight: 700;
}

.main-inner:has(.article),
.privacy-page .main-inner {
  display: block;
  max-width: 820px;
}

.lead {
  margin-bottom: 34px;
  padding: 0;
  border: 0;
  color: var(--gray-900);
  font-size: 0.98rem;
  line-height: 1.95;
  font-weight: 600;
}

.article {
  padding: 26px 28px;
  margin-bottom: 20px;
}

.article h2 {
  margin-bottom: 12px;
  color: var(--black);
  font-size: 1.08rem;
  line-height: 1.6;
  font-weight: 900;
}

.article p,
.article ul li {
  color: var(--gray-700);
  font-size: 0.92rem;
  line-height: 1.95;
  font-weight: 700;
}

.article ul {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.article ul li {
  position: relative;
  padding-left: 18px;
}

.article ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border: 1px solid var(--black);
  border-radius: 50%;
}

.company-box dl {
  display: grid;
  grid-template-columns: 8em 1fr;
  gap: 8px 16px;
  color: var(--gray-700);
  font-size: 0.92rem;
  line-height: 1.85;
  font-weight: 700;
}

.company-box dt {
  color: var(--gray-500);
  font-weight: 900;
}

.date-block {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(5, 5, 5, 0.18);
  color: var(--gray-500);
  font-size: 0.85rem;
  line-height: 2;
  font-weight: 700;
}

.footer {
  padding: 56px 0 32px;
  background: var(--black);
  color: var(--white);
  border-top: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  color: var(--white);
  font-family: var(--font);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0;
}

.footer-logo span {
  color: rgba(255, 255, 255, 0.62) !important;
  font-family: var(--font) !important;
  font-weight: 800 !important;
}

.footer-meta {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.9;
  font-weight: 700;
  text-align: right;
}

.footer-meta a {
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 0;
}

@media (max-width: 1040px) {
  .main-inner {
    grid-template-columns: 1fr;
  }

  .page-visual {
    max-width: 720px;
  }

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

@media (max-width: 760px) {
  body,
  body * {
    overflow-wrap: anywhere !important;
    line-break: anywhere !important;
    word-break: break-all !important;
  }

  .nav-inner,
  .page-header-inner,
  .main-inner,
  .form-wrap-inner,
  .info-inner,
  .calendar-inner,
  .hero-inner,
  .progress-inner,
  .thanks-inner,
  .footer-inner {
    width: min(100% - 32px, 1180px);
  }

  .main-inner,
  .article,
  .lead,
  .value-section,
  .form-section,
  .note-box,
  .trust,
  .thanks-card,
  .info-card,
  .faq-item {
    width: calc(100vw - 48px) !important;
    max-width: calc(100vw - 48px) !important;
  }

  .nav-inner {
    height: 64px;
  }

  .nav-links li:not(:last-child) {
    display: none;
  }

  .page-header {
    padding: 54px 0 42px;
  }

  .page-title,
  .thanks-title,
  .hero-title {
    font-size: 1.86rem;
    line-height: 1.3;
    overflow-wrap: anywhere;
    line-break: anywhere;
  }

  .page-lead,
  .hero-lead,
  .thanks-lead,
  .form-wrap-lead {
    font-size: 0.95rem;
    overflow-wrap: anywhere;
    line-break: anywhere;
    word-break: break-all;
  }

  .value-list li,
  .note-box li,
  .thanks-card li,
  .info-card .q,
  .info-card .a,
  .faq-q,
  .faq-a,
  .article p,
  .article ul li,
  .footer-meta,
  .thanks-note,
  .notes-list li,
  .notes-contact {
    overflow-wrap: anywhere;
    line-break: anywhere;
    word-break: break-all;
    white-space: normal !important;
  }

  .page-visual img {
    height: 230px;
    object-fit: cover;
  }

  .main,
  .form-wrap,
  .info-section,
  .calendar-wrap {
    padding: 58px 0;
  }

  .form-section,
  .thanks-card,
  .note-box,
  .trust,
  .company-box {
    padding: 22px;
    box-shadow: 7px 7px 0 var(--black);
  }

  .page-visual,
  .calendar-frame {
    box-shadow: 7px 7px 0 var(--black);
  }

  .thanks {
    padding: 68px 0;
  }

  .thanks-actions {
    flex-direction: column;
  }

  .thanks-actions .btn,
  .btn {
    width: 100%;
  }

  .company-box dl {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-meta {
    text-align: left;
  }

  .footer-meta,
  .footer-meta * {
    overflow-wrap: anywhere !important;
    word-break: break-all !important;
    white-space: normal !important;
  }
}
