:root {
  color-scheme: light;
  --hj-navy: #06152e;
  --hj-navy-2: #0d2948;
  --hj-blue: #087dad;
  --hj-blue-dark: #07658d;
  --hj-sky: #dff4fb;
  --hj-gold: #7d542c;
  --hj-gold-pale: #f4eadc;
  --hj-wine: #8a1c24;
  --hj-ink: #172033;
  --hj-muted: #596579;
  --hj-line: #dbe2e9;
  --hj-pale: #f5f7f9;
  --hj-white: #fff;
  --hj-shadow: 0 20px 54px rgba(6, 21, 46, 0.12);
  --hj-shadow-soft: 0 10px 30px rgba(6, 21, 46, 0.08);
  --hj-width: 1160px;
  --hj-radius: 14px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  color: var(--hj-ink);
  background: var(--hj-white);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: inherit;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.hj-container {
  width: min(var(--hj-width), calc(100% - 40px));
  margin: 0 auto;
}

.hj-skip {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 300;
  transform: translateY(-150%);
  padding: 9px 14px;
  color: #fff;
  background: var(--hj-navy);
  text-decoration: none;
}

.hj-skip:focus {
  transform: translateY(0);
}

.hj-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(219, 226, 233, 0.92);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.hj-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.hj-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--hj-navy);
  text-decoration: none;
}

.hj-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.hj-brand-copy {
  display: grid;
  line-height: 1.25;
}

.hj-brand-en {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hj-brand-ja {
  color: #536074;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hj-button,
.hj-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hj-button {
  color: #fff;
  background: var(--hj-wine);
  box-shadow: 0 10px 24px rgba(138, 28, 36, 0.22);
}

.hj-button:hover,
.hj-button:focus-visible {
  transform: translateY(-2px);
  background: #75171e;
  box-shadow: 0 14px 30px rgba(138, 28, 36, 0.28);
}

.hj-button-secondary {
  color: var(--hj-navy);
  border-color: rgba(6, 21, 46, 0.25);
  background: rgba(255, 255, 255, 0.94);
}

.hj-button-secondary:hover,
.hj-button-secondary:focus-visible {
  transform: translateY(-2px);
  border-color: var(--hj-blue);
  color: var(--hj-blue-dark);
}

.hj-button--large {
  min-height: 58px;
  padding: 16px 30px;
  font-size: 17px;
}

.hj-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: #fff;
  background: var(--hj-navy);
  isolation: isolate;
}

.hj-hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}

.hj-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 21, 46, 0.98) 0%, rgba(6, 21, 46, 0.93) 48%, rgba(6, 21, 46, 0.45) 78%, rgba(6, 21, 46, 0.25) 100%),
    linear-gradient(0deg, rgba(6, 21, 46, 0.72), transparent 45%);
}

.hj-hero::after {
  position: absolute;
  right: -130px;
  bottom: -270px;
  z-index: -1;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.025), 0 0 0 160px rgba(255, 255, 255, 0.02);
}

.hj-hero-inner {
  display: flex;
  align-items: center;
  min-height: 690px;
  padding: 74px 0 82px;
}

.hj-hero-copy {
  max-width: 780px;
}

.hj-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  color: #e2c79c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hj-eyebrow::before {
  width: 36px;
  height: 1px;
  content: "";
  background: currentColor;
}

.hj-hero h1 {
  max-width: 750px;
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.025em;
  text-wrap: balance;
}

.hj-hero-lead {
  max-width: 710px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.9;
}

.hj-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.hj-badges li {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.hj-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hj-hero-note {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.7;
}

.hj-trust {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  color: #fff;
  background: var(--hj-navy-2);
}

.hj-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hj-trust-item {
  display: grid;
  align-content: center;
  min-height: 126px;
  padding: 24px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.hj-trust-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.hj-trust-item strong {
  font-size: 16px;
}

.hj-trust-item span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.6;
}

.hj-section {
  padding: 96px 0;
}

.hj-section--pale {
  background: var(--hj-pale);
}

.hj-section--blue {
  background: #edf8fc;
}

.hj-section--navy {
  color: #fff;
  background: var(--hj-navy);
}

.hj-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 52px;
  margin-bottom: 42px;
}

.hj-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 11px;
  color: var(--hj-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hj-kicker::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

.hj-heading {
  margin: 0;
  color: var(--hj-navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(31px, 4.2vw, 48px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.hj-section--navy .hj-heading {
  color: #fff;
}

.hj-section--navy .hj-kicker {
  color: #d9bc8d;
}

.hj-lead {
  margin: 0;
  color: var(--hj-muted);
  font-size: 17px;
  line-height: 1.9;
}

.hj-section--navy .hj-lead {
  color: rgba(255, 255, 255, 0.72);
}

.hj-grid-3,
.hj-grid-4,
.hj-role-grid,
.hj-process-grid {
  display: grid;
  gap: 20px;
}

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

.hj-grid-4,
.hj-process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.hj-card,
.hj-role-card,
.hj-process-card,
.hj-fee-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hj-line);
  border-radius: var(--hj-radius);
  background: #fff;
  box-shadow: var(--hj-shadow-soft);
}

.hj-card {
  padding: 30px;
}

.hj-card-number,
.hj-card-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 17px;
  color: var(--hj-blue-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hj-card h3,
.hj-role-card h3,
.hj-process-card h3,
.hj-fee-card h3 {
  margin: 0;
  color: var(--hj-navy);
  font-size: 21px;
  line-height: 1.5;
}

.hj-card p,
.hj-role-card p,
.hj-process-card p,
.hj-fee-card p {
  margin: 12px 0 0;
  color: var(--hj-muted);
}

.hj-pain-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--hj-blue), #55bde2);
}

.hj-theme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hj-theme {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 154px;
  padding: 20px 22px;
  border: 1px solid #d8e4ea;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(6, 21, 46, 0.05);
}

.hj-theme::before {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--hj-blue);
  content: "✓";
  font-size: 14px;
  font-weight: 900;
}

.hj-theme h3 {
  margin: 0;
  color: var(--hj-navy);
  font-size: 17px;
  line-height: 1.55;
}

.hj-theme p {
  margin: 8px 0 0;
  color: var(--hj-muted);
  font-size: 13px;
  line-height: 1.75;
}

.hj-program-note {
  margin: 20px 0 0;
  color: var(--hj-muted);
  font-size: 12px;
  line-height: 1.75;
}

.hj-support {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.hj-support-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--hj-shadow);
}

.hj-support-visual picture {
  display: block;
  height: 100%;
}

.hj-support-visual img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.hj-support-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  max-width: 260px;
  padding: 18px 20px;
  border-left: 4px solid #d6b17b;
  color: #fff;
  background: rgba(6, 21, 46, 0.92);
  box-shadow: var(--hj-shadow-soft);
}

.hj-support-badge strong,
.hj-support-badge span {
  display: block;
}

.hj-support-badge span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.hj-step-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.hj-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
  padding: 20px 0;
  border-top: 1px solid var(--hj-line);
}

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

.hj-step-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--hj-blue);
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 700;
}

.hj-step h3 {
  margin: 0;
  color: var(--hj-navy);
  font-size: 19px;
}

.hj-step p {
  margin: 5px 0 0;
  color: var(--hj-muted);
  font-size: 15px;
}

.hj-role-card {
  padding: 34px 30px;
  border-color: rgba(255, 255, 255, 0.13);
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.hj-role-card .hj-card-label {
  color: #8edcf7;
}

.hj-role-card h3 {
  color: #fff;
}

.hj-role-card p {
  color: rgba(255, 255, 255, 0.68);
}

.hj-role-card ul,
.hj-check-list {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.hj-role-card li,
.hj-check-list li {
  position: relative;
  padding-left: 24px;
}

.hj-role-card li::before,
.hj-check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #7cc9e8;
  content: "✓";
  font-weight: 900;
}

.hj-role-note {
  margin: 25px 0 0;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
}

.hj-process-card {
  padding: 30px 24px;
  box-shadow: none;
}

.hj-process-card::after {
  position: absolute;
  top: 50px;
  right: -17px;
  z-index: 2;
  width: 32px;
  height: 1px;
  content: "";
  background: var(--hj-blue);
}

.hj-process-card:last-child::after {
  display: none;
}

.hj-process-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--hj-blue);
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 700;
}

.hj-fee-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 46px;
  align-items: start;
}

.hj-fee-grid {
  display: grid;
  gap: 13px;
}

.hj-fee-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 22px;
  padding: 24px 26px;
  box-shadow: none;
}

.hj-fee-card h3 {
  font-size: 17px;
}

.hj-fee-card p {
  margin: 0;
  font-size: 14px;
}

.hj-fee-label {
  display: block;
  margin-bottom: 5px;
  color: var(--hj-blue-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hj-fee-card--price h3 {
  font-size: 20px;
}

.hj-fee-card--price p strong {
  color: var(--hj-wine);
  font-size: 16px;
}

.hj-note {
  margin-top: 26px;
  padding: 20px 22px;
  border-left: 4px solid var(--hj-gold);
  color: #655438;
  background: var(--hj-gold-pale);
  font-size: 13px;
}

.hj-faq {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.hj-faq details {
  border: 1px solid var(--hj-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(6, 21, 46, 0.045);
}

.hj-faq summary {
  position: relative;
  padding: 22px 62px 22px 26px;
  color: var(--hj-navy);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.hj-faq summary::before {
  margin-right: 11px;
  color: var(--hj-blue);
  content: "Q.";
  font-family: Georgia, serif;
  font-size: 18px;
}

.hj-faq summary::after {
  position: absolute;
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  color: var(--hj-blue);
  content: "+";
  font-size: 25px;
  font-weight: 400;
}

.hj-faq details[open] summary::after {
  content: "−";
}

.hj-faq p {
  margin: 0;
  padding: 0 26px 24px 66px;
  color: var(--hj-muted);
}

.hj-form-section {
  padding: 100px 0;
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(75, 188, 230, 0.18), transparent 34%),
    var(--hj-navy);
}

.hj-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: 56px;
  align-items: start;
}

.hj-form-copy {
  position: sticky;
  top: 110px;
}

.hj-form-copy .hj-heading {
  color: #fff;
}

.hj-form-copy .hj-kicker {
  color: #d9bc8d;
}

.hj-form-copy > p:not(.hj-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.hj-form-copy .hj-check-list {
  color: rgba(255, 255, 255, 0.87);
}

.hj-form-card {
  padding: 38px;
  border-radius: 16px;
  color: var(--hj-ink);
  background: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.hj-form-card h3 {
  margin: 0 0 6px;
  color: var(--hj-navy);
  font-size: 24px;
}

.hj-form-intro {
  margin: 0 0 24px;
  color: var(--hj-muted);
  font-size: 14px;
}

.hj-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hj-field {
  display: grid;
  gap: 7px;
}

.hj-field--full,
.hj-turnstile,
.hj-form-actions,
.hj-form-error {
  grid-column: 1 / -1;
}

.hj-field label {
  color: var(--hj-navy);
  font-size: 13px;
  font-weight: 800;
}

.hj-required,
.hj-optional {
  display: inline-block;
  margin-left: 7px;
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 10px;
  line-height: 1.5;
  vertical-align: 1px;
}

.hj-required {
  color: #fff;
  background: var(--hj-wine);
}

.hj-optional {
  color: var(--hj-muted);
  background: #e9edf1;
}

.hj-field input,
.hj-field select,
.hj-field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cfd8e1;
  border-radius: 7px;
  padding: 11px 13px;
  color: var(--hj-ink);
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hj-field textarea {
  min-height: 130px;
  resize: vertical;
}

.hj-field input:focus,
.hj-field select:focus,
.hj-field textarea:focus {
  border-color: var(--hj-blue);
  box-shadow: 0 0 0 3px rgba(8, 125, 173, 0.13);
}

.hj-form-actions {
  display: grid;
  gap: 11px;
  margin-top: 4px;
}

.hj-form-actions button {
  width: 100%;
  cursor: pointer;
}

.hj-form-actions button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.hj-fineprint {
  margin: 0;
  color: #6d7787;
  font-size: 11px;
  line-height: 1.7;
}

.hj-fineprint a {
  color: var(--hj-blue-dark);
}

.hj-form-error {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #e6a8ad;
  border-radius: 7px;
  color: #8a1c24;
  background: #fff0f1;
  font-size: 13px;
}

.hj-hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.hj-profile {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 42px;
  align-items: center;
  padding: 38px;
  border: 1px solid var(--hj-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--hj-shadow-soft);
}

.hj-profile-photo {
  overflow: hidden;
  border-radius: 12px;
  background: var(--hj-pale);
}

.hj-profile-photo picture {
  display: block;
}

.hj-profile-photo img {
  width: 100%;
  aspect-ratio: 0.94;
  object-fit: cover;
  object-position: 25% center;
}

.hj-profile h2 {
  margin: 0;
  color: var(--hj-navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 34px;
  line-height: 1.4;
}

.hj-profile-name {
  margin: 16px 0 0;
  color: var(--hj-navy);
  font-size: 22px;
  font-weight: 800;
}

.hj-profile-title,
.hj-profile-copy {
  margin: 5px 0 0;
  color: var(--hj-muted);
}

.hj-profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hj-profile-badges span {
  padding: 6px 10px;
  border: 1px solid #cbdbe4;
  border-radius: 5px;
  color: var(--hj-blue-dark);
  background: #f3fafc;
  font-size: 12px;
  font-weight: 800;
}

.hj-operator-table {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid var(--hj-line);
}

.hj-operator-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hj-line);
  font-size: 14px;
}

.hj-operator-row strong {
  color: var(--hj-navy);
}

.hj-operator-row span {
  color: var(--hj-muted);
}

.hj-footer {
  padding: 42px 0 100px;
  color: rgba(255, 255, 255, 0.72);
  background: #041023;
  font-size: 12px;
}

.hj-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.hj-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.hj-footer a:hover,
.hj-footer a:focus-visible {
  color: #fff;
}

.hj-mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .hj-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hj-trust-item:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.13);
  }

  .hj-section-head,
  .hj-support,
  .hj-fee-layout,
  .hj-form-layout {
    grid-template-columns: 1fr;
  }

  .hj-section-head {
    gap: 20px;
  }

  .hj-section-head .hj-lead {
    max-width: 760px;
  }

  .hj-grid-3,
  .hj-role-grid,
  .hj-theme-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hj-grid-4,
  .hj-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hj-process-card:nth-child(2)::after,
  .hj-process-card:last-child::after {
    display: none;
  }

  .hj-form-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 66px;
  }

  body {
    padding-bottom: 74px;
    font-size: 15px;
  }

  .hj-container {
    width: min(100% - 28px, var(--hj-width));
  }

  .hj-header-inner {
    min-height: 64px;
  }

  .hj-brand img {
    width: 38px;
    height: 38px;
  }

  .hj-brand-en {
    font-size: 11px;
  }

  .hj-brand-ja {
    font-size: 8px;
  }

  .hj-header .hj-button {
    width: auto;
    flex: 0 0 auto;
    min-height: 40px;
    padding: 9px 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  .hj-hero,
  .hj-hero-inner {
    min-height: 660px;
  }

  .hj-hero-image {
    object-position: 64% center;
  }

  .hj-hero::before {
    background: linear-gradient(90deg, rgba(6, 21, 46, 0.97), rgba(6, 21, 46, 0.82));
  }

  .hj-hero-inner {
    padding: 58px 0 66px;
  }

  .hj-hero h1 {
    font-size: clamp(35px, 11vw, 49px);
  }

  .hj-hero-lead {
    font-size: 16px;
  }

  .hj-badges li {
    padding: 6px 9px;
    font-size: 11px;
  }

  .hj-hero-actions {
    display: grid;
  }

  .hj-button,
  .hj-button-secondary {
    width: 100%;
  }

  .hj-trust-grid,
  .hj-grid-3,
  .hj-grid-4,
  .hj-role-grid,
  .hj-theme-grid,
  .hj-process-grid,
  .hj-form-grid,
  .hj-profile {
    grid-template-columns: 1fr;
  }

  .hj-trust-item {
    min-height: 100px;
    padding: 20px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .hj-section {
    padding: 72px 0;
  }

  .hj-section-head {
    margin-bottom: 30px;
  }

  .hj-heading {
    font-size: clamp(28px, 9vw, 38px);
  }

  .hj-lead {
    font-size: 15px;
  }

  .hj-card,
  .hj-role-card {
    padding: 26px 22px;
  }

  .hj-support {
    gap: 34px;
  }

  .hj-support-visual,
  .hj-support-visual img {
    min-height: 390px;
  }

  .hj-support-visual img {
    object-position: 60% center;
  }

  .hj-support-badge {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .hj-process-card::after {
    display: none;
  }

  .hj-fee-card {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 22px;
  }

  .hj-faq summary {
    padding: 20px 52px 20px 18px;
  }

  .hj-faq summary::after {
    right: 18px;
  }

  .hj-faq p {
    padding: 0 18px 22px;
  }

  .hj-form-section {
    padding: 74px 0;
  }

  .hj-form-card {
    padding: 26px 20px;
  }

  .hj-profile {
    gap: 26px;
    padding: 22px;
  }

  .hj-profile-photo {
    max-width: 310px;
  }

  .hj-profile h2 {
    font-size: 29px;
  }

  .hj-operator-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hj-footer {
    padding-bottom: 28px;
  }

  .hj-footer-inner {
    display: grid;
  }

  .hj-footer-links {
    justify-content: flex-start;
  }

  .hj-mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 200;
    display: block;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(6, 21, 46, 0.14);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -8px 22px rgba(6, 21, 46, 0.11);
  }

  .hj-mobile-cta .hj-button {
    min-height: 48px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
