:root {
  --ink: #17241f;
  --ink-soft: #4c5b55;
  --forest: #1f604e;
  --forest-deep: #123c32;
  --mint: #e8f1ed;
  --mint-pale: #f4f8f6;
  --yellow: #f5cf25;
  --yellow-soft: #fff5bd;
  --white: #ffffff;
  --line: #d9e2de;
  --danger: #a63030;
  --shadow: 0 24px 70px rgba(18, 60, 50, 0.12);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --container: 1160px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body.form-page {
  background: var(--mint-pale);
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest-deep);
  border-radius: 6px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

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

.narrow {
  max-width: 900px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 226, 222, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 82px;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: 196px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.header-nav a,
.back-link {
  color: var(--ink-soft);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}

.header-nav a:hover,
.back-link:hover {
  color: var(--forest);
}

.back-link {
  margin-left: auto;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 58px;
  padding: 14px 26px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.button-primary {
  color: var(--forest-deep);
  background: var(--yellow);
  box-shadow: 0 12px 28px rgba(110, 92, 0, 0.18);
}

.button-primary:hover {
  background: #ffdc38;
  box-shadow: 0 16px 34px rgba(110, 92, 0, 0.23);
}

.button-secondary {
  color: var(--forest-deep);
  background: var(--white);
  border-color: var(--forest-deep);
}

.button-small {
  min-height: 46px;
  padding: 10px 20px;
  font-size: 0.875rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 94px;
  background:
    radial-gradient(circle at 92% 8%, rgba(245, 207, 37, 0.3) 0 7%, transparent 7.2%),
    linear-gradient(140deg, var(--mint-pale) 0 60%, #e2f0ea 60% 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 24px;
  right: -110px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(31, 96, 78, 0.16);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.17fr) minmax(340px, 0.83fr);
  align-items: center;
  gap: clamp(40px, 7vw, 88px);
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 5.2vw, 4.55rem);
  line-height: 1.24;
  letter-spacing: -0.035em;
}

.hero-copy h1 span {
  position: relative;
  z-index: 0;
  display: inline-block;
}

.hero-copy h1 span::after {
  content: "";
  position: absolute;
  right: -0.06em;
  bottom: 0.08em;
  left: -0.06em;
  z-index: -1;
  height: 0.28em;
  background: var(--yellow);
  border-radius: 3px;
}

.hero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 24px;
  color: var(--forest-deep);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-points li::before {
  content: "✓";
  position: absolute;
  top: -1px;
  left: 0;
  color: var(--forest);
  font-weight: 900;
}

.hero-panel {
  position: relative;
  padding: 38px;
  color: var(--white);
  background: var(--forest-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-panel::after {
  content: "";
  position: absolute;
  top: -12px;
  right: 28px;
  width: 54px;
  height: 54px;
  background: var(--yellow);
  border-radius: 50%;
}

.panel-kicker {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.hero-panel h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.45;
}

.mini-flow {
  display: grid;
  gap: 2px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.mini-flow li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.mini-flow li > span {
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--forest-deep);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 900;
}

.mini-flow strong,
.mini-flow small {
  display: block;
}

.mini-flow strong {
  font-size: 1rem;
}

.mini-flow small {
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.68);
}

.panel-note {
  margin: 20px 0 0;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--yellow);
  font-size: 0.8rem;
  line-height: 1.65;
}

.trust-strip {
  color: var(--white);
  background: var(--forest);
}

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

.trust-grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 88px;
  padding: 18px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-grid span {
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.trust-grid strong {
  font-size: 0.93rem;
}

.section {
  padding: 104px 0;
}

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

.section-dark {
  color: var(--white);
  background: var(--forest-deep);
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.reward-box h2,
.final-cta h2,
.form-intro h1 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.section-heading > p:last-child,
.final-cta p,
.form-intro > p {
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.section-heading.light > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.section-heading.light .eyebrow,
.section-dark .eyebrow {
  color: var(--yellow);
}

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

.audience-card {
  min-height: 100%;
  padding: 28px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 40px rgba(18, 60, 50, 0.06);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  color: var(--forest-deep);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
}

.audience-card h3 {
  margin: 22px 0 10px;
  font-size: 1.25rem;
}

.audience-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.issue-list {
  display: grid;
  gap: 14px;
}

.issue-list article {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.issue-list article > span {
  flex: 0 0 40px;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.issue-list h3,
.issue-list p {
  margin: 0;
}

.issue-list h3 {
  font-size: 1.12rem;
}

.issue-list p {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.role-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 70px minmax(0, 1fr);
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.role-card {
  min-height: 330px;
  padding: 42px;
  border-radius: var(--radius-lg);
}

.role-partner {
  background: var(--mint);
}

.role-company {
  color: var(--white);
  background: var(--forest-deep);
}

.role-label {
  margin: 0;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.role-company .role-label {
  color: var(--yellow);
}

.role-card h3 {
  margin: 12px 0 24px;
  font-size: 1.65rem;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--forest);
  font-weight: 900;
}

.role-company .check-list li::before {
  color: var(--yellow);
}

.role-bridge {
  display: grid;
  position: relative;
  z-index: 2;
  place-items: center;
  width: 70px;
  height: 70px;
  color: var(--forest-deep);
  background: var(--yellow);
  border: 8px solid var(--white);
  border-radius: 50%;
  font-size: 1.45rem;
  font-weight: 900;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  counter-reset: flow;
  list-style: none;
}

.flow-grid li {
  position: relative;
  padding: 30px 25px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
}

.flow-grid li::after {
  content: "";
  position: absolute;
  top: 48px;
  right: -17px;
  z-index: 2;
  width: 18px;
  height: 2px;
  background: var(--yellow);
}

.flow-grid li:last-child::after {
  display: none;
}

.flow-grid span {
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.flow-grid h3 {
  margin: 14px 0 10px;
  font-size: 1.18rem;
}

.flow-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.reward-box {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 7vw, 68px);
  background: var(--yellow-soft);
  border: 1px solid #eed870;
  border-radius: var(--radius-lg);
}

.reward-box::after {
  content: "条件を事前に明示";
  position: absolute;
  top: 32px;
  right: -52px;
  width: 230px;
  padding: 9px 0;
  color: var(--white);
  background: var(--forest);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  transform: rotate(38deg);
}

.reward-box .reward-lead {
  margin: 24px 0 10px;
  font-size: 1.18rem;
  font-weight: 800;
}

.reward-box > p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.faq-list summary {
  position: relative;
  padding: 22px 60px 22px 24px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--forest);
  font-size: 1.5rem;
  line-height: 1;
  transform: translateY(-50%);
}

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

.faq-list details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--ink-soft);
}

.final-cta {
  background: var(--white);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
  padding: 52px clamp(28px, 6vw, 70px);
  background: var(--mint);
  border-radius: var(--radius-lg);
}

.final-cta h2 {
  max-width: 720px;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
}

.final-cta p {
  max-width: 740px;
}

.site-footer {
  padding: 48px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #0d2821;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 26px;
}

.footer-brand {
  display: inline-flex;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 6px;
}

.footer-brand img {
  width: 170px;
}

.footer-inner p {
  margin: 0;
  font-size: 0.8rem;
}

.copyright {
  margin-left: auto !important;
}

/* Contact form */
.form-main {
  padding: 72px 0 100px;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: clamp(36px, 7vw, 86px);
}

.form-intro {
  position: sticky;
  top: 128px;
}

.form-intro h1 {
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.privacy-notice {
  margin-top: 30px;
  padding: 22px;
  color: var(--forest-deep);
  background: var(--yellow-soft);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius-sm);
}

.privacy-notice strong {
  display: block;
  font-size: 0.94rem;
}

.privacy-notice p {
  margin: 8px 0 0;
  font-size: 0.82rem;
  line-height: 1.7;
}

.contact-steps {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.contact-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-steps span {
  display: grid;
  flex: 0 0 32px;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-size: 0.72rem;
}

.form-card {
  padding: clamp(28px, 5vw, 50px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-card-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.form-card-head h2 {
  order: -1;
  margin: 0;
  font-size: 1.6rem;
}

.form-required-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.form-required-note span,
.required {
  color: var(--danger);
  font-size: 0.72rem;
  font-weight: 800;
}

#partner-contact-form {
  display: grid;
  gap: 25px;
  margin-top: 30px;
}

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

.field label,
.field > label:first-child {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #bdcbc5;
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input,
.field select {
  min-height: 52px;
  padding: 10px 14px;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(31, 96, 78, 0.11);
  outline: none;
}

.field [aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(166, 48, 48, 0.08);
}

.field-error {
  min-height: 0;
  margin: 5px 0 0;
  color: var(--danger);
  font-size: 0.75rem;
  line-height: 1.5;
}

.field-error:empty {
  display: none;
}

.field-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  color: #718078;
  font-size: 0.72rem;
}

.consent-box {
  padding: 20px;
  background: var(--mint-pale);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.checkbox-label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  cursor: pointer;
}

.checkbox-label input {
  width: 20px;
  height: 20px;
  margin: 3px 0 0;
  accent-color: var(--forest);
}

.checkbox-label span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

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

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
}

.form-status.is-visible {
  display: block;
  color: var(--forest-deep);
  background: var(--mint);
}

.form-status.is-error {
  display: block;
  color: #741f1f;
  background: #fce8e8;
}

.form-submit {
  width: 100%;
  border: 0;
}

.submit-note {
  margin: -14px 0 0;
  color: #718078;
  font-size: 0.74rem;
  text-align: center;
}

.noscript-note {
  margin: 0;
  padding: 12px;
  color: #741f1f;
  background: #fce8e8;
  border-radius: 8px;
  font-size: 0.82rem;
}

@media (max-width: 1040px) {
  .header-nav {
    display: none;
  }

  .site-header .button-small {
    margin-left: auto;
  }

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

  .hero-panel {
    max-width: 680px;
  }

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

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

  .flow-grid li:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 30px, var(--container));
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 164px;
  }

  .site-header .button-small {
    display: none;
  }

  .hero {
    padding: 62px 0 72px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding: 12px 0;
  }

  .trust-grid > div {
    justify-content: flex-start;
    min-height: 0;
    padding: 10px 14px;
    border: 0;
  }

  .trust-grid > div:last-child {
    border: 0;
  }

  .section {
    padding: 78px 0;
  }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .role-bridge {
    margin: -10px auto;
    transform: rotate(90deg);
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .copyright {
    margin-left: 0 !important;
  }

  .form-main {
    padding: 54px 0 80px;
  }

  .form-layout {
    grid-template-columns: 1fr;
  }

  .form-intro {
    position: static;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 10.5vw, 3rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 8px;
  }

  .hero-panel {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .hero-panel::after {
    width: 38px;
    height: 38px;
  }

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

  .section-heading h2,
  .reward-box h2,
  .final-cta h2,
  .form-intro h1 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }

  .audience-grid,
  .flow-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .audience-card {
    padding: 24px;
  }

  .role-card {
    min-height: 0;
    padding: 30px 24px;
    border-radius: 22px;
  }

  .flow-grid li::after {
    top: auto;
    right: 50%;
    bottom: -17px;
    width: 2px;
    height: 18px;
  }

  .flow-grid li:nth-child(2)::after {
    display: block;
  }

  .reward-box {
    padding: 32px 24px;
    border-radius: 22px;
  }

  .reward-box::after {
    display: none;
  }

  .final-cta-inner {
    padding: 34px 24px;
    border-radius: 22px;
  }

  .form-card {
    padding: 26px 20px;
    border-radius: 18px;
  }

  .form-card-head {
    display: block;
  }

  .form-required-note {
    margin-top: 8px;
  }

  .back-link {
    font-size: 0.78rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* 入力画面 / 確認画面の切り替え */
#partner-contact-form[hidden],
.form-card-head[hidden],
.confirm-panel[hidden] {
  display: none;
}

.confirm-panel {
  display: grid;
  gap: 25px;
}

.confirm-lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.8;
}

.confirm-list {
  display: grid;
  gap: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.confirm-row {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.confirm-row:first-child {
  border-top: 0;
}

.confirm-row dt {
  margin: 0;
  color: var(--forest-deep);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.7;
}

.confirm-row dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.8;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.confirm-row dd.is-empty {
  color: #93a09a;
}

.confirm-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 16px;
}

.confirm-actions .button {
  width: 100%;
  border-width: 2px;
}

.confirm-actions .button-primary {
  border-color: transparent;
}

.confirm-actions .button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 600px) {
  .confirm-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .confirm-actions {
    grid-template-columns: 1fr;
  }
}
