:root {
  --color-orange: #f5a700;
  --color-orange-deep: #ff3600;
  --color-blue: #6a84ec;
  --color-blue-deep: #4d69e3;
  --color-blue-soft: #dce9fb;
  --color-blue-pale: #ebf4ff;
  --color-yellow: #fcf3d6;
  --color-yellow-deep: #fff0bb;
  --color-text: #333333;
  --color-white: #ffffff;
  --color-line: #cbd9fb;
  --shadow: 0 10px 16px rgba(70, 70, 70, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container-wide: min(1100px, calc(100vw - 48px));
  --container: min(1000px, calc(100vw - 48px));
  --font-display: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-white);
  font-family: var(--font-body);
  line-height: 1.7;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
}

.site-header__inner,
.hero__inner,
.trust__inner,
.section__inner,
.final-cta__inner {
  width: var(--container-wide);
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.site-header__logo {
  width: 210px;
}

.site-header__login {
  position: relative;
  max-width: 264px;
  width: 100%;
  padding: 2px 22px;
  border: 2px solid var(--color-blue);
  border-radius: 999px;
  color: var(--color-blue);
  font-weight: 500;
  font-size: 1.25rem;
  text-align: center;
  box-shadow: 0 6px 16px rgba(107, 130, 235, 0.12);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}
.site-header__login:hover {
  box-shadow: none;
}
.site-header__login::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100px;
  border: 1px solid var(--color-blue);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.site-header__login::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid var(--color-blue);
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

/* =========================
      トップページ
  ========================= */
.hero {
  overflow: hidden;
  background-color: var(--color-yellow);
}

.hero__inner {
  width: var(--container);
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(320px, 0.95fr);
  align-items: end;
  column-gap: 24px;
  padding: 48px 0 28px;
}
.hero__content img {
  padding: 0 24px;
  margin-bottom: 16px;
}

.hero__lead,
.hero__title,
.hero__subtitle,
.hero__description,
.section-heading__title,
.final-cta__title {
  font-family: var(--font-body);
}

.hero__lead {
  margin: 0;
  color: var(--color-blue);
  font-size: clamp(1.5rem, 3.1vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero__title {
  margin: 8px 0 6px;
  color: var(--color-orange);
  font-size: clamp(4rem, 8.2vw, 8rem);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-shadow: 0.05em 0.05em 0 #ffe29a;
}

.hero__subtitle,
.hero__description {
  margin: 0;
  font-weight: 800;
  text-align: left;
}

.hero__subtitle {
  font-size: 26px;
  text-align: center;
}

.hero__description {
  font-size: 32px;
  text-align: center;
}

.cta-button {
  display: block;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 0 34px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-orange-deep) 0%, var(--color-orange) 100%);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1.875rem;
  font-weight: bold;
  box-shadow: var(--shadow);
  text-align: center;
  line-height: 68px;
  position: relative;
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}
.cta-button:hover {
  box-shadow: none;
}

.plans__button,
.reasons__button,
.final-cta__button {
  min-height: 90px;
  font-size: 2.2rem;
}
.cta-button::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.hero__button {
  margin-top: 16px;
  width: 100%;
}

.hero__stats {
  display: grid;
  grid-template-columns: 280px 280px 1fr;
  gap: 32px;
  margin: 0 auto;
  width: var(--container);
  align-items: center;
}

.hero__stat {
  padding: 16px 14px 18px;
  border: 3px solid var(--color-blue);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  position: relative;
}

.hero__stat-label {
  position: absolute;
  display: block;
  margin: -32px auto;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--color-blue);
  color: var(--color-white);
  font-size: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.hero__stat-value,
.hero__stat-score {
  display: block;
  margin-top: 8px;
  color: var(--color-orange);
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.1;
}

.hero__stat-value {
  font-size: 3.5rem;
}
.hero__stat-value .num {
  font-size: 4rem;
  line-height: 0;
}
.hero__stat-value span {
  font-size: 2.4rem;
}
.hero__visual {
  max-height: 390px;
}
.hero__bottom {
  width: var(--container);
  margin: 10px auto 56px;
}

.hero__mascot,
.company__figure {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 310px;
}

.hero__mascot {
  right: 0;
  bottom: 0;
  left: auto;
  transform: none;
}

.hero__mascot-head,
.company__figure::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 112px;
  height: 112px;
  border-radius: 52% 52% 48% 48%;
  background: linear-gradient(180deg, #8e665f 0%, #6b4d49 100%);
  transform: translateX(-50%);
  content: '';
}

.hero__mascot-head::after,
.company__figure::after {
  position: absolute;
  top: 46px;
  left: 50%;
  width: 74px;
  height: 64px;
  border-radius: 46%;
  background: #f3c7b8;
  transform: translateX(-50%);
  content: '';
}

.hero__mascot-phone {
  position: absolute;
  top: 124px;
  left: 52%;
  width: 42px;
  height: 68px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ff78a8 0%, #f05a91 100%);
  transform: translateX(-50%) rotate(8deg);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.25);
}

.trust {
  padding: 52px 0;
}

.trust__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  width: var(--container);
}

.trust__item {
  aspect-ratio: 1;
  background-image: url(../images/trust_bg.png);
  background-repeat: no-repeat;
  background-position-y: bottom;
  background-size: contain;
  place-items: center;
  text-align: center;
  width: 100%;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trust__icon img {
  width: auto;
  max-height: 47px;
  height: 100%;
}

.trust__title {
  margin: 2px 0 0;
  color: var(--color-orange);
  font-size: 1.9rem;
}

.trust__text {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
}

.section {
  padding: 78px 0;
}

.section--blue {
  background: #dfeafb;
}

.section__inner {
  width: var(--container);
}

.section__inner--narrow {
  width: min(820px, calc(100vw - 48px));
}

.methods {
  position: relative;
  background: var(--color-yellow);
  padding-bottom: 0;
}

.methods::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -100px;
  left: 0;
  height: 100px;
  background: var(--color-yellow);
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.section-heading {
  margin-bottom: 64px;
  text-align: center;
}

.section-heading__title {
  margin: 0 auto;
  width: clamp(60%, 40vw, 860px);
}

.section-heading__text {
  margin: 30px 0 40px;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
}

.cashrate-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -18px auto 42px;
}

.cashrate-summary__item {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 5px 14px;
  border: 2px solid var(--color-blue);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-blue);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
}

.plans {
  padding-top: 200px;
}
.plans__grid {
  display: grid;
  gap: 18px;
}

.methods__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}

.method-card,
.plan-card {
  overflow: hidden;
  border: 3px solid var(--color-blue);
  border-radius: var(--radius-lg);
  background: var(--color-white);
}

.method-card {
  text-align: center;
  position: relative;
  overflow: inherit;
  border-radius: 20px;
}

.method-card__logo,
.plan-card__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  padding: 3px 14px;
  border: 3px solid var(--color-blue);
  background: var(--color-white);
  color: var(--color-blue-deep);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
}

.method-card__logo {
  position: absolute;
  left: 50%;
  top: -24px;
  transform: translateX(-50%);
  width: 136px;
  height: 46px;
  padding: 10px;
  border-radius: 20px;
}
.method-card:nth-child(1) .method-card__logo img {
  width: 88px;
}
.method-card:nth-child(2) .method-card__logo img {
  width: 64px;
}
.method-card:nth-child(3) .method-card__logo img {
  width: 85px;
}
.method-card:nth-child(4) .method-card__logo img {
  width: 73px;
}
.method-card:nth-child(5) .method-card__logo img,
.method-card:nth-child(6) .method-card__logo img {
  width: 106px;
}

.method-card__logo img {
  height: auto;
}

.method-card__name,
.plan-card__name {
  margin: 0;
  padding: 24px 16px 10px;
  background: var(--color-blue);
  color: var(--color-white);
  font-size: 1.3rem;
  font-weight: bold;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.method-card__rate {
  margin: 0;
  padding: 14px 12px 18px;
  color: var(--color-orange);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.method-card__rate span {
  font-size: 0.52em;
}

.methods__notice,
.plans__lead {
  margin: 28px 0 0;
  text-align: center;
  font-size: clamp(1.7rem, 3.1vw, 2.5rem);
  font-weight: bold;
}
.plans__lead {
  margin: 56px 0 0;
}

.methods__notice span,
.plans__lead span {
  color: var(--color-orange);
  font-size: 2.5rem;
}

.methods__caption,
.plans__caption,
.final-cta__caption {
  margin: 16px 0 0;
  font-size: 0.875rem;
  text-align: center;
}

.methods__link-wrap {
  margin: 22px 0 0;
  text-align: center;
}

.methods__link {
  color: var(--color-blue);
  font-size: 1.75rem;
  font-weight: bold;
  border-bottom: 2px solid currentColor;
  position: relative;
}

.methods__link::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background-color: var(--color-blue);
  position: absolute;
  right: -30px;
  top: 60%;
  transform: translateY(-50%);
}
.methods__link::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid var(--color-white);
  position: absolute;
  right: -24px;
  top: 58%;
  transform: translateY(-50%);
  z-index: 1;
}

.plans__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px 24px;
}

.plan-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--color-blue);
}
.plan-card__logo {
  border-radius: 100px;
  width: 140px;
  height: 42px;
}
.plan-card:nth-child(1) .plan-card__logo img {
  width: 77px;
}
.plan-card:nth-child(2) .plan-card__logo img {
  width: 55px;
}
.plan-card:nth-child(3) .plan-card__logo img {
  width: 67px;
}
.plan-card:nth-child(4) .plan-card__logo img {
  width: 69px;
}
.plan-card:nth-child(5) .plan-card__logo img,
.plan-card:nth-child(6) .plan-card__logo img {
  width: 96px;
}
.plan-card__name {
  padding: 0;
  background: transparent;
  font-size: 1.5rem;
  font-weight: 400;
}

.plan-card__row {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 10px;
  margin: 0 12px;
  padding: 6px 0;
}

.plan-card__row + .plan-card__row {
  border-top: 1px solid var(--color-line);
}

.plan-card__tag {
  min-width: 88px;
  padding: 0 20px;
  border-radius: 999px;
  background: #e1ecf9;
  font-size: clamp(1rem, 2.2vw, 1.6rem);
  font-weight: 700;
  text-align: center;
}

.plan-card__tag--sub {
  background: #f6eed1;
}

.plan-card__meta {
  font-size: 1rem;
  font-weight: 700;
}

.plan-card__value {
  color: var(--color-orange);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: bold;
  line-height: 1.3;
}
.plan-card__value span {
  font-size: 2rem;
}

.plans__button,
.reasons__button,
.final-cta__button {
  display: flex;
  margin: 22px auto 0;
  max-width: 600px;
  width: 100%;
}

.flow .section-heading__title {
  width: 374px;
}
.flow__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.flow-step {
  position: relative;
  text-align: center;
}

.flow-step__count {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  margin-bottom: 32px;
}
.flow-step__count::after {
  content: '';
  position: absolute;
  top: 50%;
  left: clamp(140px, 19vw, 160px);
  width: clamp(120px, 18vw, 140px);
  border-top: 3px dotted var(--color-blue);
  transform: translateX(-38%);
}
.flow-step:last-child .flow-step__count:after {
  display: none;
}

.flow-step__icon {
  max-width: 100px;
  max-height: 100px;
  height: 100%;
  text-align: center;
  margin: 0 auto;
  width: auto;
}

.flow-step__icon img {
  height: 100%;
  width: auto;
  margin: 0 auto;
}
.flow-step__title {
  margin: 16px 0 0;
  color: var(--color-orange);
  font-size: 1.875rem;
  line-height: 1.2;
}

.flow-step__text,
.flow-step__note {
  font-weight: bold;
  font-size: 1.25rem;
}
.flow-step__note {
  margin-top: 8px;
  font-size: 0.82rem;
}

.flow__free {
  position: relative;
  max-width: 762px;
  margin: 44px auto 0;
  padding: 38px 20px 24px;
  border-radius: 18px;
  background: var(--color-blue-pale);
  text-align: center;
}

.flow__free-check {
  position: absolute;
  top: -44px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 117px;
  height: 117px;
  border-radius: 50%;
  background: var(--color-blue-pale);
  transform: translateX(-50%);
}
.flow__free-check::after {
  content: '';
  position: absolute;
  background-image: url(../images/flow_free_icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 38px;
  height: 38px;
  top: 16px;
}

.flow__free-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  z-index: 1;
  position: relative;
}

.flow__free-badges span,
.company__term {
  padding: 4px 0;
  border-radius: 999px;
  background: var(--color-blue);
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 500;
}
.flow__free-badges span {
  padding: 4px 16px;
}

.flow__free-title {
  display: block;
  margin-top: 10px;
  color: var(--color-orange);
  font-size: 2.2rem;
  line-height: 1.6;
  letter-spacing: 0.2rem;
}

.flow__free-text {
  margin: 8px 0 0;
  font-weight: 700;
  font-size: 1.375rem;
}

.reasons {
  background: var(--color-yellow);
}
.reasons .section-heading {
  margin-bottom: 20px;
}
.reasons .section-heading__title {
  max-width: 886px;
  width: 100%;
}
.reasons__grid {
  grid-template-columns: repeat(24, 1fr);
  display: grid;
  align-items: start;
  gap: 20px;
}

.reason-card:nth-child(1) {
  grid-column: 4 / span 6;
}

.reason-card:nth-child(2) {
  grid-column: 10 / span 6;
}

.reason-card:nth-child(3) {
  grid-column: 16 / span 6;
}
.reason-card:nth-child(4) {
  grid-column: 1 / span 6;
}

.reason-card:nth-child(5) {
  grid-column: 7 / span 6;
}

.reason-card:nth-child(6) {
  grid-column: 13 / span 6;
}

.reason-card:nth-child(7) {
  grid-column: 19 / span 6;
}
.reasons__mascot {
  width: 124px;
  margin: 0 auto;
  grid-column: 10 / span 6;
}

.reasons__foot {
  margin: 18px auto;
}

.reasons__mascot {
  width: 124px;
  margin: 0 auto;
}
.voices {
  padding-bottom: 0;
}
.voices .section-heading__title {
  max-width: 374px;
  width: 100%;
}
.voices__list {
  display: grid;
  gap: 16px;
  max-width: 840px;
  width: 100%;
}

.voice-card {
  display: grid;
  gap: 20px;
  align-items: start;
}

.voice-card--left {
  grid-template-columns: 148px 1fr;
  margin-right: 24px;
}

.voice-card--right {
  grid-template-columns: 1fr 148px;
  margin-left: 24px;
}

.voice-card__bubble {
  position: relative;
  margin: 30px 0 0;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  font-weight: bold;
  font-size: 1.25rem;
}

.voice-card__bubble::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid #fff;
  border-left: 20px solid transparent;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
}

.voice-card--left .voice-card__bubble::before {
  left: -20px;
}

.voice-card--right .voice-card__bubble::before {
  border-right: 20px solid transparent;
  right: -20px;
}

.voice-card__bubble span {
  color: var(--color-orange);
}
.faq .section-heading__title {
  max-width: 458px;
  width: 100%;
}
.faq__list {
  display: grid;
  gap: 22px;
}
.faq-item {
  font-size: 1.25rem;
}
.faq-item {
  overflow: hidden;
  border-radius: 0;
}

.faq-item__question {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 0;
  background: var(--color-blue);
  color: var(--color-white);
  cursor: pointer;
  text-align: left;
}
.faq-item__question-text {
  font-size: 1.25rem;
}
.faq-item__question img,
.faq-item__answer img {
  width: 42px;
}

.faq-item__toggle {
  position: relative;
  width: 18px;
  height: 18px;
}
.faq-item__toggle::before,
.faq-item__toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s ease;
  border-radius: 100px;
}
.faq-item__toggle::before {
  transform: translate(-90%, -50%) rotate(45deg);
}
.faq-item__toggle::after {
  transform: translate(-25%, -50%) rotate(-45deg);
}
.faq-item.is-open .faq-item__toggle::before {
  transform: translate(-90%, -50%) rotate(-45deg);
}
.faq-item.is-open .faq-item__toggle::after {
  transform: translate(-25%, -50%) rotate(45deg);
}
.faq-item__answer {
  display: none;
  align-items: start;
  gap: 14px;
  padding: 16px 20px;
  background: #ebf4ff;
}
.faq-item.is-open .faq-item__answer {
  display: flex;
}

.faq-item__answer p {
  margin: 0;
  font-weight: bold;
  padding-right: 32px;
}

.final-cta {
  padding: 74px 0;
  background: linear-gradient(180deg, #fff5cd 0%, #fff7dd 100%);
}

.final-cta__inner {
  text-align: center;
}

.final-cta__title {
  max-width: 478px;
  width: 100%;
  margin: 0 auto;
}
.final-cta__label span {
  display: inline-block;
  margin: 30px 0 0;
  background: var(--color-blue);
  color: var(--color-white);
  font-size: clamp(1.8rem, 3.8vw, 2rem);
  font-weight: bold;
  line-height: 1.6;
}
.final-cta__label span:first-child {
  padding-left: 16px;
}
.final-cta__label span:nth-of-type(2) {
  padding-right: 16px;
}

.final-cta__copy {
  margin: 30px 0 0;
  font-size: 1.5rem;
  font-weight: bold;
  display: inline-block;
  position: relative;
}
.final-cta__copy::before,
.final-cta__copy::after {
  content: '';
  position: absolute;
  background-image: url(../images/cta_copy_deco.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 24px;
  top: 50%;
}
.final-cta__copy::before {
  left: -20px;
  transform: translateY(-50%);
}
.final-cta__copy::after {
  right: -20px;
  transform: scaleX(-1) translateY(-50%);
}
.final-cta__button {
  min-height: 90px;
  font-size: 2.2rem;
}
.company {
  padding-bottom: 0;
}
.company .section-heading__title {
  max-width: 322px;
  width: 100%;
}
.company__table {
  display: grid;
  gap: 28px;
  margin-left: 60px;
}

.company__table--image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.company__table--image img {
  display: block;
  width: 100%;
  height: auto;
}

.company__row {
  display: grid;
  grid-template-columns: 154px 1fr;
  align-items: start;
  gap: 22px;
}

.company__term {
  text-align: center;
}

.company__desc {
  margin: 0;
  font-weight: 500;
  font-size: 1.25rem;
}

.company__mascot {
  margin-top: 24px;
  max-width: 384px;
  margin: 70px auto 0;
}
.company__mascot img {
  width: 100%;
  height: 250px;
  object-position: top;
  object-fit: cover;
}

.site-footer {
  padding: 24px 20px 32px;
  text-align: center;
  background: #fff;
}
.site-footer__logo {
  width: 300px;
  margin: 0 auto 32px;
}

.site-footer__brand {
  justify-content: center;
}

.site-footer__copyright,
.site-footer__links {
  margin: 4px 0 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 10px;
}

.pc_none {
  display: none;
}
/* =========================
  プライバシーポリシー、利用規約
  ========================= */
.policy-page,
.terms-page {
  background: #ffffff;
}

.policy-page__main,
.terms-page__main {
  padding: 80px 0 120px;
}

.policy-page__inner,
.terms-page__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 0 5px;
  letter-spacing: 0.02rem;
}

.policy-page__title,
.terms-page__title {
  margin: 0;
  color: var(--color-orange);
  font-size: clamp(1.9rem, 2.9vw, 2.5rem);
  font-weight: bold;
  text-align: center;
}

.policy-page__content,
.terms-page__content {
  margin: 80px auto 0;
}

.policy-page__block + .policy-page__block {
  margin-top: 58px;
}

.policy-page__heading,
.terms-page__heading {
  margin: 0;
  color: var(--color-orange);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
}

.policy-page__text,
.terms-page__text {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.8;
}

.terms-page__intro {
  margin: 0 0 96px;
  font-size: 1.25rem;
  line-height: 1.8;
}

.terms-page__block + .terms-page__block {
  margin-top: 46px;
}

.terms-page__text + .terms-page__text {
  margin-top: 12px;
}
.terms-page__text {
  padding-left: 40px;
}


/* =========================
      入力フォーム
  ========================= */
.form-page {
  background: var(--color-yellow);
}

.form-page__main {
  padding: 34px 0 80px;
}

.form-hero__inner,
.entry__inner {
  width: min(860px, calc(100vw - 48px));
  margin: 0 auto;
}

.form-hero__inner {
  padding: 90px 0 440px;
  text-align: center;
}

.form-hero__eyebrow {
  margin: 0;
  color: var(--color-blue);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-hero__title {
  margin: 0;
  color: var(--color-orange);
  font-size: 2.5rem;
  font-weight: 800;
  padding-bottom: 10px;
}

.form-hero__text {
  margin: 12px auto 0;
  font-size: 1rem;
  font-weight: 500;
}
.form-hero__inner span a {
  color: #e50000;
  border-bottom: 1px solid #e50000;
}
.entry-result,
.entry-form__section {
  background: rgba(255, 255, 255, 0.95);
  border: 3px solid var(--color-blue);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.entry-result {
  padding: 30px;
  text-align: center;
}

.entry-result--error {
  margin-bottom: 24px;
  border-color: #ef6b57;
  background: #fff5f2;
}

.entry-result__title {
  margin: 0;
  color: var(--color-orange);
  font-size: 1.7rem;
  font-weight: 800;
}

.entry-result__text {
  margin: 10px 0 0;
  font-weight: 500;
}

.entry-result__button {
  max-width: 360px;
  margin: 24px auto 0;
}

.entry-form {
  display: grid;
}

.entry-form__section-header {
  margin: 0;
  padding: 16px 22px;
  background: var(--color-blue);
  color: var(--color-white);
}

.entry-form__section-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
}

.entry-form__section-text {
  margin: 6px 0 0;
  font-size: 0.95rem;
}

.entry-form__grid,
.entry-form__stack,
.entry-form__choice-group {
  padding: 24px 22px 22px;
}

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

.entry-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.entry-form__field--full {
  grid-column: 1 / -1;
}

.entry-form__label {
  font-size: 0.98rem;
  font-weight: 700;
}

.entry-form__label em {
  margin-left: 6px;
  color: var(--color-orange-deep);
  font-style: normal;
}

.entry-form__input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  background: var(--color-white);
  color: var(--color-text);
  font-size: 1rem;
}

.entry-form__input:focus {
  outline: 2px solid rgba(106, 132, 236, 0.35);
  border-color: var(--color-blue);
}

.entry-form__input--textarea {
  min-height: 120px;
  resize: vertical;
}

.entry-form__input--file {
  padding: 10px 12px;
}

.entry-form__choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.entry-form__choice {
  display: block;
  position: relative;
}

.entry-form__choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.entry-form__choice-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 110px;
  padding: 16px 12px;
  border: 2px solid var(--color-line);
  border-radius: 14px;
  background: #fff;
  text-align: center;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.entry-form__choice-card img {
  max-height: 28px;
  width: auto;
}

.entry-form__choice-card small {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
}

.entry-form__choice input:checked + .entry-form__choice-card {
  border-color: var(--color-blue);
  box-shadow: 0 8px 20px rgba(106, 132, 236, 0.16);
  transform: translateY(-2px);
}

.entry-form__agreement {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

.entry-form__agreement input {
  margin-top: 0.25em;
}

.entry-form__error {
  color: #dc4e39;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.5;
}

.entry-form__submit {
  text-align: center;
}

.entry-form__submit-note {
  margin: 0 0 14px;
  color: #666;
  font-size: 0.9rem;
}

.entry-form__submit .cta-button {
  width: min(100%, 420px);
  margin: 0 auto;
}

.entry-form_note_red {
  color: #e50000;
}

.entry-form_note--rate {
  display: block;
  margin-top: 8px;
  color: #e50000;
  font-weight: 700;
}

.entry-form_note--rate.is-hidden {
  display: none;
}

.form-page--designed {
  background: #fcf3d6;
}

.form-hero--designed .form-hero__inner,
.entry__inner--designed {
  width: min(640px, calc(100vw - 28px));
}

.form-hero--designed .form-hero__inner {
  padding: 10px 0 14px;
}

.entry-form--designed .entry-form__band {
  background: #6a84ec;
  color: #fff;
}

.entry-form--designed .entry-form__band-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 0.95rem;
  font-weight: 700;
}

.entry-form--designed .entry-row {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  margin: 0 auto;
}
.entry-form--designed .entry-columns {
  display: grid;
  grid-template-rows: 1fr 1fr;
  align-items: center;
}

.entry-form--designed .entry-row--start {
  align-items: start;
}

.entry-form--designed .entry-row--single {
  margin-top: 14px;
}

.entry-form--designed .entry-row__controlwrap {
  display: flex;
  align-items: center;
  column-gap: 20px;
  font-size: 1.2rem;
}
.entry-form--designed .entry-row__controlwrap .entry-row__control {
  flex: 1;
}
.entry-form--designed .entry-row__control {
  display: block;
}

.entry-form--designed .entry-form__input--textarea {
  min-height: 86px;
}

.entry-form--designed .entry-form__choice-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
}

.entry-form--designed .entry-form__choice-card--compact {
  min-height: 64px;
  padding: 10px 8px;
  border-width: 1px;
  border-radius: 8px;
}

.entry-form--designed .entry-form__choice-card--compact img {
  max-height: 22px;
}

.entry-form--designed .entry-form__choice-card--compact small {
  font-size: 0.72rem;
  line-height: 1.3;
}

.entry-form--designed .entry-form__notice {
  margin: 0 0 14px;
  color: #555;
  font-size: 0.76rem;
  line-height: 1.8;
}

.entry-form--designed .entry-form__guide-card--selfie {
  background: #fffdf7;
  border-color: #f1df9b;
}
.entry-form--designed .entry-form__guide-copy p {
  margin: 0;
  color: #555;
  font-size: 0.76rem;
  line-height: 1.8;
}

.entry-form--designed .entry-form__agreement--boxed {
  margin-top: 14px;
  padding: 10px 12px;
  border: 1px solid #eadba4;
  background: #fffaf0;
}

.entry-form--designed .entry-form__error {
  display: block;
  margin-top: 5px;
  font-size: 0.72rem;
}

.entry-form--designed .entry-form__error--block {
  margin-top: 10px;
}

.entry-form--designed .entry-form__submit--designed {
  margin-top: 8px;
}

.entry-form--designed .entry-form__submit--designed .cta-button {
  width: min(100%, 300px);
  min-height: 54px;
  font-size: 1.25rem;
  line-height: 54px;
}

.entry-form__input::placeholder {
  color: #bcbcbc;
}

.form-page--designed {
  background: var(--color-yellow);
}

.form-hero--designed .form-hero__inner,
.entry__inner--designed {
  width: min(474px, calc(100vw - 24px));
}

.form-page--designed .form-page__main {
  padding: 12px 0 52px;
}

.form-hero--designed .form-hero__inner {
  padding: 8px 0 10px;
}

.form-hero--designed .form-hero__text {
  margin-top: 4px;
  font-size: 1.25rem;
  line-height: 1.65;
  margin-bottom: 14px;
  color: #555;
}
.entry-form--designed .entry-form__band {
  background: #6b82eb;
  color: #fff;
  margin: 24px 0 0;
}

.entry-form--designed .entry-form__band-title {
  margin: 0;
  padding: 5px 10px;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.4;
}

.entry-form--designed .entry-form__rows {
  display: grid;
  gap: 6px;
}

.entry-form--designed .entry-row--single {
  margin-top: 8px;
}

.entry-form--designed .entry-row__control {
  display: block;
}

.entry-form--designed .entry-form__input--textarea {
  min-height: 48px;
}

.entry-form--designed .entry-form__choice-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 0;
}

.entry-form--designed .entry-form__choice-card--compact {
  min-height: 40px;
  padding: 5px 4px;
  border-width: 1px;
  border-radius: 3px;
  gap: 4px;
}

.entry-form--designed .entry-form__choice-card--compact img {
  max-height: 14px;
}

.entry-form--designed .entry-form__choice-card--compact small {
  font-size: 0.5rem;
  line-height: 1.25;
}

.entry-form--designed .entry-form__inline-note {
  margin: 6px 0 0;
  color: #777;
  font-size: 0.52rem;
  text-align: center;
}

.entry-form--designed .entry-form__panel--calendar {
  padding: 8px;
}

.entry-form--designed .entry-form__calendar {
  border: 1px solid #d8d8d8;
  background: #fff;
}

.entry-form--designed .entry-form__calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 8px;
  background: #f6f8ff;
  color: #546fdc;
  font-size: 0.56rem;
  font-weight: 700;
}

.entry-form--designed .entry-form__calendar-weekdays,
.entry-form--designed .entry-form__calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.entry-form--designed .entry-form__calendar-weekdays span,
.entry-form--designed .entry-form__calendar-grid span {
  display: grid;
  place-items: center;
  min-height: 20px;
  border-top: 1px solid #e7e7e7;
  border-right: 1px solid #e7e7e7;
  font-size: 0.52rem;
}

.entry-form--designed .entry-form__calendar-weekdays span:nth-child(7n),
.entry-form--designed .entry-form__calendar-grid span:nth-child(7n) {
  border-right: 0;
}

.entry-form--designed .entry-form__calendar-weekdays span {
  min-height: 18px;
  background: #fbfcff;
  color: #6a84ec;
  font-weight: 700;
}

.entry-form--designed .entry-form__calendar-grid .is-muted {
  color: #b8bfd4;
  background: #fbfbfb;
}

.entry-form--designed .entry-form__calendar-grid .is-active {
  background: #6a84ec;
  color: #fff;
  font-weight: 700;
}

.entry-form--designed .entry-form__notice,
.entry-form--designed .entry-form__guide-copy p,
.entry-form--designed .entry-form__submit-note {
  font-size: 0.54rem;
  line-height: 1.6;
}

.entry-form--designed .entry-form__notice {
  margin: 0 0 8px;
}

.entry-form--designed .entry-form__guide-card--selfie {
  background: #fffdf7;
}

.entry-form--designed .entry-form__guide-illust--id::before,
.entry-form--designed .entry-form__guide-illust--selfie::before {
  inset: 8px 10px;
  border-radius: 6px;
}

.entry-form--designed .entry-form__guide-illust--id::after {
  font-size: 1.1rem;
}

.entry-form--designed .entry-form__guide-illust--selfie::after {
  font-size: 1.3rem;
}

.entry-form--designed .entry-form__rows--upload {
  margin-top: 8px;
}

.entry-form--designed .entry-form__agreement--boxed {
  margin-top: 8px;
  padding: 8px;
  border: 1px solid #eadba4;
  background: #fffaf0;
  font-size: 0.58rem;
}

.entry-form--designed .entry-form__agreement--boxed input {
  margin-top: 1px;
}

.entry-form--designed .entry-form__submit--designed {
  margin-top: 2px;
  text-align: center;
}

.entry-form--designed .entry-form__submit--designed .cta-button {
  width: min(100%, 142px);
  min-height: 31px;
  padding: 0 18px;
  font-size: 0.62rem;
  line-height: 31px;
}

.entry-form--designed .entry-form__submit--designed .cta-button::after {
  right: 10px;
  border-top-width: 4px;
  border-bottom-width: 4px;
  border-left-width: 6px;
}

.entry-form--designed .entry-form__panel {
  padding: 12px 14px;
}

.entry-form--designed .entry-form__choice-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.entry-form--designed .entry-form__choice-card--compact {
  min-height: 58px;
  border-radius: 4px;
}

.entry-form--designed .entry-form__inline-note {
  margin: 8px 0 0;
  color: #777;
  font-size: 0.68rem;
  text-align: center;
}

.entry-form--designed .entry-form__panel--calendar {
  padding: 14px;
}

.entry-form--designed .entry-form__calendar {
  border: 1px solid #d8d8d8;
  background: #fff;
}

.entry-form--designed .entry-form__calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background: #f6f8ff;
  color: #546fdc;
  font-size: 0.73rem;
  font-weight: 700;
}

.entry-form--designed .entry-form__calendar-weekdays,
.entry-form--designed .entry-form__calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.entry-form--designed .entry-form__calendar-weekdays span,
.entry-form--designed .entry-form__calendar-grid span {
  display: grid;
  place-items: center;
  min-height: 32px;
  border-top: 1px solid #e7e7e7;
  border-right: 1px solid #e7e7e7;
  font-size: 0.72rem;
}

.entry-form--designed .entry-form__calendar-weekdays span:nth-child(7n),
.entry-form--designed .entry-form__calendar-grid span:nth-child(7n) {
  border-right: 0;
}

.entry-form--designed .entry-form__calendar-weekdays span {
  min-height: 26px;
  background: #fbfcff;
  color: #6a84ec;
  font-weight: 700;
}

.entry-form--designed .entry-form__calendar-grid .is-muted {
  color: #b8bfd4;
  background: #fbfbfb;
}

.entry-form--designed .entry-form__calendar-grid .is-active {
  background: #6a84ec;
  color: #fff;
  font-weight: 700;
}

.entry-form--designed .entry-form__notice,
.entry-form--designed .entry-form__guide-copy p,
.entry-form--designed .entry-form__submit-note {
  font-size: 0.7rem;
}
.entry-form--designed .entry-form__agreement--boxed {
  font-size: 0.74rem;
}

.entry-form--designed .entry-form__submit--designed .cta-button {
  width: min(100%, 220px);
  min-height: 44px;
  font-size: 0.98rem;
  line-height: 44px;
}

.form-hero--designed .form-hero__inner,
.entry__inner--designed {
  width: var(--container);
}

.entry-form--designed .entry-form__panel--plain {
  background: transparent;
  border: 0;
  padding: 0;
}

.entry-form--designed .entry-form__panel--calendar-fields {
  margin-top: 8px;
}

.entry-form--designed .entry-form__rows {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 8px;
}
.entry-form--designed .entry-row--start {
  grid-column: 1 / -1;
}

.entry-form--designed .entry-row--single {
  grid-column: 1 / -1;
}

.entry-form--designed .entry-form__panel--guide,
.entry-form--designed .entry-form__panel--calendar {
  background: #fff;
  border: 1px solid #d7d7d7;
  padding: 12px;
}

.entry-form--designed .entry-form__rows--upload {
  grid-template-columns: 1fr;
}
.entry-form--single .entry-form__panel--guide.bg__white {
  background: var(--color-white);
  padding-bottom: 10px;
}

.entry-form--single .entry-form__panel--guide.bg__white p {
  width: 100%;
  margin: 0 auto;
  padding: 24px 30px;
  font-size: 1.25rem;
}
.entry-form--single .entry-form__panel--guide.bg__white p strong {
  font-size: 1.25rem;
}
.entry-form__guide-copy {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  padding: 24px 0 16px;
  text-align: left;
  font-size: 1.25rem;
}
.entry-form__guide-headding {
  font-size: 1.25rem;
}

.entry-form--designed .entry-form__rows--singlecol {
  grid-template-columns: 1fr;
  row-gap: 8px;
}

.entry-form--designed .entry-form__panel--topfields {
  background: transparent;
  border: 0;
  padding: 0;
}

.entry-form--designed .entry-form__panel--bank {
  background: #fff;
  padding: 40px 16px 80px;
}

.entry-form--designed .entry-form__bank-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  font-weight: 800;
  font-size: 0.88rem;
  text-align: center;
}

.entry-form--designed .entry-form__kana-picker {
  border: 1px solid #8d8d8d;
  background: #fff;
}

.entry-form--designed .entry-form__kana-title {
  padding: 10px 12px;
  border-bottom: 1px solid #8d8d8d;
  color: #6b82eb;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

.entry-form--designed .entry-form__kana-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
}

.entry-form--designed .entry-form__kana-grid span {
  display: grid;
  place-items: center;
  min-height: 58px;
  border-right: 1px solid #8d8d8d;
  border-bottom: 1px solid #8d8d8d;
  color: #6b82eb;
  font-size: 1rem;
  font-weight: 700;
}

.entry-form--designed .entry-form__kana-grid span:nth-child(10n) {
  border-right: 0;
}

.entry-form--designed .entry-form__kana-grid span:nth-last-child(-n + 10) {
  border-bottom: 0;
}

.entry-form--designed .entry-form__rows--bankfields {
  row-gap: 18px;
}

.entry-form--designed .entry-row--accounttype {
  align-items: center;
}

.entry-form--designed .entry-form__accounttype-buttons {
  display: flex;
  gap: 18px;
}

.entry-form--designed .entry-form__accounttype-button {
  position: relative;
  display: inline-flex;
}

.entry-form--designed .entry-form__accounttype-button input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.entry-form--designed .entry-form__accounttype-button--dark span {
  background: #999;
}
.entry-form--single .entry-form__rows--singlecol {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 30px;
  margin: 40px auto;
}

.entry-form__panel--guide .entry-form__rows--singlecol {
  max-width: 640px;
  margin: 0 auto;
  padding: 10px 0;
  margin: 40px auto;
}

.entry-form--single .entry-row__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 500;
}

.entry-form--single .entry-row__label em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1px;
  background: #f5a623;
  color: var(--color-white);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  padding: 2px 10px;
}

.entry-form--single .entry-row__control {
  display: grid;
  gap: 6px;
}

.entry-form--single .entry-form__input--compact,
.entry-form--single .entry-form__textarea {
  display: block;
  width: 100%;
  min-height: 64px;
  border: 1px solid #bcbcbc;
  border-radius: 2px;
  background: #fff;
  box-shadow: none;
  color: #333;
  font-size: 1.25rem;
  -webkit-appearance: none;
  appearance: none;
}
.entry-row__control:has(select) {
  position: relative;
}
.entry-row__control:has(select)::after {
  position: absolute;
  content: '';
  display: block;
  color: #333;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform:rotate(135deg);
  right: 10px;
  top: 20px;
}


/* .entry-form--single select.entry-form__input--compact {
  appearance: auto;
} */

.entry-form--single .entry-form__textarea {
  min-height: 96px;
  padding-top: 10px;
  resize: vertical;
}

.entry-form--single .entry-form__panel--plain,
.entry-form--single .entry-form__panel--guide,
.entry-form--single {
  padding: 0;
  background: transparent;
  border: 0;
}

.entry-form--single .entry-form__band-title {
  margin: 0;
  padding: 20px 26px;
  background: var(--color-blue);
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}

.entry-form--single .entry-form__bank-copy {
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 700;
  max-width: 640px;
  width: 100%;
  margin: 18px auto 16px;
}

.entry-form--single .entry-form__bank-grid--selectable {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 12px;
  margin-bottom: 18px;
  max-width: 640px;
  width: 100%;
  margin: 10px auto 48px;
}

.entry-form--single .entry-form__bank-option {
  position: relative;
  display: block;
  max-width: calc((100% - 32px) / 3);
}

.entry-form--single .entry-form__bank-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.entry-form--single .entry-form__bank-option span {
  display: grid;
  place-items: center;
  min-height: 50px;
  padding: 4px 8px;
  border: 1px solid transparent;
  background: transparent;
}

.entry-form--single .entry-form__bank-option img {
  max-width: 100%;
  object-fit: contain;
}

.entry-form--single .entry-form__bank-option.is-selected span {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 2px rgba(110, 130, 235, 0.12);
}

.entry-form--single .entry-form__kana-picker {
  margin-top: 10px;
  border: 1px solid #b4b4b4;
  background: #fff;
  max-width: 640px;
  width: 100%;
  margin: 0 auto 24px;
}

.entry-form--single .entry-form__kana-title {
  padding: 8px 12px;
  border-bottom: 1px solid #b4b4b4;
  color: var(--color-blue);
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all .3s;
}

.entry-form--single .entry-form__kana-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
}

.entry-form--single .entry-form__kana-grid span {
  display: grid;
  place-items: center;
  min-height: 52px;
  border-right: 1px solid #b4b4b4;
  border-bottom: 1px solid #b4b4b4;
  color: var(--color-blue);
  font-size: 1.25rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .3s;
}
.entry-form--single .entry-form__kana-title:hover,
.entry-form--single .entry-form__kana-grid span:hover {
  opacity: .7;
}
.entry-form--single .entry-form__kana-grid span:nth-child(10n) {
  border-right: 0;
}

.entry-form--single .entry-form__kana-grid span:nth-last-child(-n + 10) {
  border-bottom: 0;
}
.entry-form--single .entry-form__kana-grid span:nth-of-type(18),
.entry-form--single .entry-form__kana-grid span:nth-of-type(20),
.entry-form--single .entry-form__kana-grid span:nth-of-type(30),
.entry-form--single .entry-form__kana-grid span:nth-of-type(38),
.entry-form--single .entry-form__kana-grid span:nth-of-type(40),
.entry-form--single .entry-form__kana-grid span:nth-of-type(50) {
  color: var(--color-text); 
  font-weight: 400;
  pointer-events: none;
}

.entry-form--single .entry-form__bank-search {
  height: 64px;
  margin: 14px 0 18px;
  border: 1px solid #b4b4b4;
  background: #fff;
  max-width: 640px;
  width: 100%;
  margin: 0 auto 24px;
}

.entry-form--single .entry-form__rows--bankfields {
  row-gap: 24px;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}

.entry-form--single .entry-row--accounttype {
  display: grid;
  align-items: center;
  gap: 14px;
}

.entry-form--single .entry-form__accounttype-buttons {
  display: flex;
  gap: 10px;
}

.entry-form--single .entry-form__accounttype-button {
  position: relative;
}

.entry-form--single .entry-form__accounttype-button input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.entry-form--single .entry-form__accounttype-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 4px 0;
  border-radius: 999px;
  background: #8d8d8d;
  color: #fff;
  font-size: 1.25rem;
}

.entry-form--single .entry-form__accounttype-button--dark span {
  background: #8d8d8d;
}

.entry-form--single .entry-form__accounttype-button.is-active span {
  background: #f2af2c;
}

.entry-form--single .entry-form__accounttype-button--dark.is-active span {
  background: #f2af2c;
}

.entry-form--single .entry-form__guide-card {
  display: grid;
  grid-template-rows: 160px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 56px 24px;
  background: #fff;
  text-align: center;
}

.entry-form--single .entry-form__guide-id-cards {
  display: grid;
  grid-template-rows: 60px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 10px 24px;
  background: #fff;
  text-align: center;
  max-width: 810px;
  margin: 0 auto;
}

.entry-form--single .entry-form__guide-illust {
  display: grid;
  place-items: center;
}

.entry-form--single .entry-form__guide-illust img {
  max-width: 100%;
  height: auto;
}

.entry-form--single strong {
  margin-bottom: 8px;
  color: #e50000;
  font-size: 1.25rem;
  font-weight: 400;
}

.entry-form--single .entry-form__guide-copy p,
.entry-form--single .entry-form__notice,
.entry-form--single .entry-form__submit-note,
.entry-form--single .entry-form__agreement--boxed {
  color: #555;
  font-size: 0.82rem;
  line-height: 1.8;
}

.entry-form--single .entry-form__agreement--boxed {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.entry-form--single .entry-form__submit--designed {
  display: grid;
  justify-items: center;
  margin-top: 24px;
}

.entry-form--single .entry-form__submit--designed .cta-button {
  min-width: 220px;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffb517 0%, #f49800 100%);
  box-shadow: inset 0 -2px 0 rgba(167, 94, 0, 0.2);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}
.entry-result--complete {
  max-width: 680px;
  margin: 0 auto;
}
.upload-button {
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
}

.upload-button input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-button span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 56px;
  border-radius: 8px;
  background: #f6ad00;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.upload-filename {
    display: flex;
    align-items: center;
    width: 100%;
    height: 56px;
  padding: 0 16px;
  border: 1px solid #9f9f9f;
  background: #fff;
  color: #c5c5c5;
  font-size: 1.25rem;
  font-weight: 400;
  box-sizing: border-box;
}

.upload-preview {
  display: grid;
  place-items: center;
  flex: 0 0 100%;
  width: 100%;
  min-height: 160px;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #d8e3f0;
  border-radius: 8px;
  background: #fff;
  box-sizing: border-box;
}

.upload-preview:empty {
  display: none;
}

.upload-preview img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 240px;
  object-fit: contain;
}

.upload-preview__file {
    color: #17335d;
    font-size: 0.86rem;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.upload-section__format {
  margin: 0;
  font-size: 1rem;
  text-align: left;
}

.upload-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 40px;
  background: #f5f5f5;
}

.upload-section__lead {
  margin: 0;
  font-size: 44px;
  line-height: 1.6;
  font-weight: 500;
  color: #444;
}

.upload-section__lead span {
  color: #ff3b30;
  font-weight: 700;
}

.upload-section__notes {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.upload-section__notes li {
  font-size: 22px;
  line-height: 1.9;
  color: #444;
}

.upload-field {
  margin-top: 56px;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}
.upload__field-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
}

.upload__field-inner .upload-button {
  flex: 0 0 auto;
}

.upload__field-inner .upload-filename {
  flex: 1 1 280px;
  min-width: 0;
}

#bankBranchSelectArea {
  box-sizing: border-box;
  margin-top: 12px;
}
.entry-form--single .entry-form__panel--guide.bg__white .upload-field p {
  padding: 0;
}
/* =========================
      確認画面
  ========================= */
.form-page--confirmflow .form-hero--confirmflow {
  padding: 24px 0 12px;
}

.form-page--confirmflow .form-hero__title {
  color: var(--color-orange);
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 20px;
}

.confirm-card__section {
  overflow: hidden;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 0 0 1px #d8d8d8;
}

.confirm-card__section + .confirm-card__section {
  margin-top: 24px;
}

.confirm-card__head {
  margin: 0;
  padding: 14px 40px;
  background: var(--color-blue);
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}

.confirm-card__table {
  display: grid;
}

.confirm-card__row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
}

.confirm-card__row:nth-child(odd) .confirm-card__label,
.confirm-card__row:nth-child(odd) .confirm-card__value {
  background: #ebf4ff;
}
.confirm-card__doc-subtitle {
  background: #ebf4ff;
}
.confirm-card__section--docs {
  padding-bottom: 22px;
}

.confirm-card__docs-title,
.confirm-card__doc-subtitle {
  padding: 14px 16px;
  text-align: center;
  color: #555;
  font-size: 0.92rem;
  font-weight: 700;
}

.confirm-card__doc-main {
  display: grid;
  place-items: center;
}

.confirm-card__doc-main img {
  width: 94px;
  height: auto;
}

.confirm-card__doc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0 22px;
}

.confirm-card__doc-item--selfie {
  grid-column: 1 / -1;
}

.confirm-card__doc-label {
  margin-bottom: 8px;
  color: #4e4e4e;
  font-size: 0.82rem;
  font-weight: 700;
}

.confirm-card__doc-frame {
  display: grid;
  place-items: center;
  min-height: 124px;
  background: #fff;
  padding: 6px;
}

.form-page--confirmflow .form-hero__text--confirm {
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}

.form-page--confirmflow .form-hero__text--confirm span {
  color: #ff3a2f;
  font-weight: 700;
}

.confirm-card__section--full {
  box-shadow: 0 0 0 1px #d7dce8;
}

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

.confirm-card__label,
.confirm-card__value {
  padding: 21px 40px;
  font-size: 1.25rem;
  line-height: 1.45;
  font-weight: 500;
}

.confirm-card__docs-title {
  padding: 20px 16px 10px;
  font-size: 1.25rem;
}

.confirm-card__doc-main {
  max-width: 188px;
  margin: 0 auto;
}

.confirm-card__doc-main img {
  width: 100%;
  height: 230px;
  object-position: top;
  object-fit: cover;
}

.confirm-card__doc-subtitle {
  padding: 21px 40px;
  font-size: 1.25rem;
}

.confirm-card__doc-grid {
  gap: 40px;
  padding: 0 18px 18px;
  max-width: 810px;
  margin: 24px auto;
}

.confirm-card__doc-label {
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: bold;
}
.confirm-card__doc-item img {
  width: 100%;
}
.confirm-card__doc-frame {
  min-height: 96px;
  padding: 4px;
}
.confirm-card__actions {
  gap: 48px;
  margin: 80px 0;
  display: flex;
  justify-content: center;
}

.confirm-card__actions .cta-button--confirm {
  background: linear-gradient(180deg, #a8a8a8 0%, #8d8d8d 100%);
}

/* =========================
      お問い合わせ / 配信停止
  ========================= */
.contact-flow {
  padding-bottom: 70px;
}

.contact-form .entry-form__panel--topfields {
  padding-bottom: 20px;
}

.contact-form .entry-form__input--compact {
  padding-inline: 16px;
}

.contact-form__textarea {
  min-height: 180px;
  padding: 16px;
  resize: vertical;
}

.contact-form__actions {
  padding-bottom: 10px;
}

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

.contact-check {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid #bcbcbc;
  border-radius: 4px;
  background: #fff;
  color: #333;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.35;
}

.contact-check input {
  width: 20px;
  height: 20px;
  accent-color: var(--color-orange);
  flex: 0 0 auto;
}

.confirm-card__value--pre {
  white-space: normal;
  word-break: break-word;
}

.contact-confirm__line {
  display: block;
}

.contact-confirm__line + .contact-confirm__line {
  margin-top: 4px;
}

.contact-complete {
  max-width: 860px;
  margin: 0 auto 70px;
  padding: 52px 42px;
  border: 3px solid var(--color-blue);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-complete__title {
  margin: 0;
  color: var(--color-orange);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.45;
}

.contact-complete__text {
  margin: 18px auto 0;
  max-width: 700px;
  color: #333;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.8;
}

.contact-complete .cta-button {
  max-width: 320px;
  margin: 32px auto 0;
}

/* =========================
      送信完了ページ
  ========================= */
.thanks-page {
  background: #ffffff;
}

.site-header--thanks {
  position: relative;
  z-index: 10;
  background: #fff;
}

.thanks-main {
  overflow: hidden;
}

.thanks-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1080px, calc(100vw - 32px));
  margin: 0 auto;
  text-align: center;
}
.thanks-hero__lead {
  font-weight: 600;
}
.thanks-hero__mascot-wrap {
  position: relative;
  z-index: 2;
}

.thanks-hero__mascot {
  width: min(360px, 42vw);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.08));
}

.thanks-hero__flags {
  position: absolute;
  top: 0;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.thanks-hero__flags--left {
  left: max(12px, calc(50vw - 660px));
}

.thanks-hero__flags--right {
  right: max(12px, calc(50vw - 660px));
  transform: scaleX(-1);
}

.thanks-hero__flags span {
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 42px solid #f6a300;
  transform: rotate(10deg);
}

.thanks-hero__flags span:nth-child(2) {
  border-top-color: #6788ff;
}

.thanks-hero__flags span:nth-child(3) {
  border-top-color: #ffd44c;
}

.thanks-hero__flags span:nth-child(4) {
  border-top-color: #f6a300;
}

.thanks-hero__coins {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.thanks-flow {
  position: relative;
  padding: 24px 0 96px;
}

.thanks-flow__inner {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100vw - 32px));
  margin: 0 auto;
}

.thanks-flow__title {
  margin: 0;
  color: #f5a700;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}

.thanks-flow__copy {
  margin: 10px 0 0;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}

.thanks-steps {
  margin: 66px 0 0;
  display: grid;
  gap: 48px;
}

.thanks-step__badge span {
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

.thanks-step__badge strong {
  margin-bottom: 12px;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.thanks-step__card {
  padding: 34px 56px 30px 128px;
  border-radius: 20px;
  background: var(--color-yellow);
}

.thanks-step__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.thanks-step__heading::before {
  content: '';
  position: absolute;
  background-image: url(../images/icon_1.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 75px;
  height: 75px;
  left: -94px;
}
.thanks-steps :nth-of-type(2) .thanks-step__heading::before {
  background-image: url(../images/icon_2.png);
}
.thanks-steps :nth-of-type(3) .thanks-step__heading::before {
  background-image: url(../images/icon_3.png);
}
.thanks-steps :nth-of-type(4) .thanks-step__heading::before {
  background-image: url(../images/icon_4.png);
}

.thanks-step__heading::after {
  content: '';
  position: absolute;
  top: 296%;
  left: -144px;
  width: 176px;
  border-top: 3px dotted var(--color-orange);
  transform: rotate(90deg);
}
.thanks-steps :nth-of-type(2) .thanks-step__heading::after {
  left: -178px;
  width: 246px;
}
.thanks-steps :nth-of-type(3) .thanks-step__heading::after {
  top: 434%;
  left: -212px;
  width: 314px;
}
.thanks-steps :nth-of-type(4) .thanks-step__heading::after {
  content: none;
}
.thanks-step__heading .thanks-step__title {
  position: relative;
}
.thanks-step__heading .thanks-step__title::after {
  content: '';
  position: absolute;
  background-image: url(../images/thanks_flow_img01.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 35px;
  height: 58px;
  right: -56px;
}
.thanks-steps :nth-of-type(2) .thanks-step__heading .thanks-step__title::after {
  background-image: url(../images/thanks_flow_img02.png);
  width: 56px;
  height: 56px;
}
.thanks-steps :nth-of-type(3) .thanks-step__heading .thanks-step__title::after {
  background-image: url(../images/thanks_flow_img03.png);
  width: 72px;
  height: 46px;
  right: -90px;
}
.thanks-steps :nth-of-type(4) .thanks-step__heading .thanks-step__title::after {
  background-image: url(../images/thanks_flow_img04.png);
  width: 46px;
  height: 46px;
}

.thanks-step__title {
  margin: 0;
  color: var(--color-blue);
  font-size: 1.875rem;
  font-weight: 700;
}

.thanks-step__icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
}

.thanks-step__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #7d92ff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thanks-step__text {
  margin: 18px 0 0;
  color: #333;
  font-size: clamp(0.98rem, 1.16vw, 1.3rem);
  font-weight: 700;
  line-height: 1.95;
}

.thanks-step__note {
  margin: 12px 0 0;
  color: #333;
  font-size: 0.95rem;
  font-weight: 700;
}

.thanks-step__subgrid {
  display: flex;
  gap: 16px;
  margin-top: 22px;
}

.thanks-step__subhead {
  display: inline-block;
  padding: 2px 20px;
  border-top-right-radius: 10px;
  background: var(--color-blue);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
.thanks-step__subbox {
  flex-basis: 42%;
}
.thanks-step__subbox p {
  margin: 0;
  padding: 16px 18px 18px;
  color: #333;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.8;
  background: var(--color-white);
}

.thanks-hours {
  margin: 56px auto 0;
  padding: 30px 24px;
  border-radius: 18px;
  background: var(--color-blue-pale);
  text-align: center;
}

.thanks-hours__main {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
}

.thanks-hours__main small {
  font-size: 0.875rem;
  font-weight: 700;
  vertical-align: middle;
}

.thanks-hours__sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
  font-size: 1.5rem;
  font-weight: 500;
}

.thanks-hours__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 36px;
  padding: 0 14px;
  background: var(--color-orange);
  color: #fff;
  font-size: 1.25rem;
}

.site-footer--thanks {
  padding: 34px 16px 44px;
  background: #fff;
}

.site-footer--thanks .site-footer__logo {
  width: min(240px, 52vw);
}

.thanks-main {
  background-image: url(../images/thanks_hero_bg.png);
  background-repeat: no-repeat;
  background-position-x: 50%;
  position: relative;
}
.thanks-main::before {
  content: '';
  position: absolute;
  background-image: url(../images/thanks_hero_bg_deco.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  left: 0;
  width: 262px;
  height: 158px;
}

.thanks-main::after {
  content: '';
  position: absolute;
  background-image: url(../images/thanks_hero_bg_deco.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform: scaleX(-1);
  top: 0;
  right: 0;
  width: 262px;
  height: 158px;
}

.agreement-section {
  padding: 50px 20px;
  text-align: center;
}
.agreement-section p {
  font-size: 1.25rem;
}
.agreement-box {
  overflow-y: auto;
  text-align: left;
  height: 150px;
  margin-top: 10px;
  margin-bottom: 20px;
  background-color: #fff;
  padding: 14px 16px;
}
.agreement-section .agreement-box p {
  font-size: 1rem;
}
.agreement-box .terms-page__content {
  margin: 0;
}
.agreement-box .terms-page__intro {
  margin: 0 0 14px;
  font-size: 0.92rem;
  line-height: 1.75;
}
.agreement-box .terms-page__block + .terms-page__block {
  margin-top: 14px;
}
.agreement-box .terms-page__heading {
  margin: 0 0 6px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.agreement-box .terms-page__text {
  padding-left: 0;
  font-size: 0.9rem;
  line-height: 1.75;
}
.agreement-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: fit-content;
  margin: 0 auto;
  cursor: pointer;
  text-align: left;
}
.agreement-check input {
  display: none;
}
.agreement-check__box {
  position: relative;
  width: 24px;
  height: 24px;
  margin-top: 9px;
  border: 1px solid #333;
  background: #fff;
  flex-shrink: 0;
  border-radius: 3px;
}
.agreement-check input:checked + .agreement-check__box::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 10px;
  width: 8px;
  height: 18px;
  border-right: 4px solid #e50000;
  border-bottom: 4px solid #e50000;
  transform: rotate(45deg);
}
.agreement-check__text {
  font-size: 1.25rem;
  line-height: 2;
}

.agreement-check__text strong {
  display: inline-block;
  color: #e50000;
  font-size: 1.25rem;
  font-weight: 700;
}

.agreement-section p a {
  color: #e50000;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.agreement-section .agreement-underline {
  display: flex;
  width: fit-content;
  margin: 14px auto 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 6px;
  font-size: 1rem;
  cursor: pointer;
}
.agreement-section textarea {
  width: 100%;
  height: 100px;
  margin-top: 10px;
  resize: vertical;
  border-radius: 6px;
  padding: 6px;
}
.agreement-section textarea.is-hidden {
  display: none;
}

.agreement-button,
.login-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 286px;
  max-width: 100%;
  height: 67px;
  margin: 60px auto 0;
  border: none;
  border-radius: 999px;
  background: #f5a800;
  box-shadow: 0 4px 0 #7d4300;
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.agreement-button:hover {
  transform: translateY(2px);
  box-shadow: none;
}

.agreement-button:disabled,
.agreement-button:disabled:hover,
.agreement-button:disabled:active,
.agreement-button.is-disabled,
.agreement-button.is-disabled:hover,
.agreement-button.is-disabled:active,
.agreement-button[aria-disabled="true"],
.agreement-button[aria-disabled="true"]:hover,
.agreement-button[aria-disabled="true"]:active {
  background: #b8b8b8;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.entry-row.is-client-missing .entry-form__input,
.entry-row.is-client-missing .entry-form__select,
.entry-column.is-client-missing .upload-section__drop,
.entry-columns.is-client-missing .entry-form__input,
.entry-form__bank-grid.is-client-missing .entry-form__bank-option,
.entry-form__accounttype-buttons.is-client-missing .entry-form__accounttype-button,
.agreement-section.is-client-missing .agreement-check__box,
.agreement-check.is-client-missing .agreement-check__box {
  border-color: #dc4e39;
  box-shadow: 0 0 0 3px rgba(220, 78, 57, 0.15);
}

.agreement-button:active {
  transform: translateY(6px);
  box-shadow: 0 0 0 #7d4300;
}

.confirm-card__actions .cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 286px;
  max-width: 100%;
  height: 67px;
  border: none;
  border-radius: 999px;
  background: #f5a800;
  box-shadow: 0 4px 0 #7d4300;
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.confirm-card__actions .cta-button::after {
  content: none;
}

.confirm-card__actions .cta-button--confirm {
  background: #aeaeae;
  box-shadow: 0 4px 0 #525251;
}

/* =========================
      ログインページ
  ========================= */
.login-main {
  flex: 1;
  padding: 70px 20px 100px;
}

.login-container {
  max-width: var(--container);
  margin: 0 auto;
}

.login-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-orange);
  margin-bottom: 55px;
  letter-spacing: 0.08em;
}

.login-card {
  background: var(--color-yellow);
  padding: 90px 0;
}

.login-form {
  width: 420px;
  margin: 0 auto;
}

.login-field + .login-field {
  margin-top: 42px;
}

.login-label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.login-input {
  width: 100%;
  height: 64px;
  border: 1px solid #666;
  background: #fff;
  padding: 0 16px;
  font-size: 16px;
}

.login-button-wrap {
  text-align: center;
  margin-top: 48px;
}

.site-footer {
  padding: 40px 20px 24px;
  text-align: center;
}

.site-footer__logo {
  width: 230px;
  margin: 0 auto 18px;
}

.site-footer__copyright {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.site-footer__links {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}


@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: minmax(410px, 600px) minmax(280px, 0.95fr);
    column-gap: 20px;
  }
  .hero__subtitle {
    font-size: clamp(1rem, 2.8vw, 1.8rem);
  }
  .hero__description {
    font-size: clamp(1.2rem, 3.2vw, 2rem);
  }
  .hero__stats {
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
  .hero__stat-label {
    font-size: 1.125rem;
  }
  .hero__stat-value .num {
    font-size: 3rem;
  }
  .hero__stat-value {
    font-size: 2.5rem;
  }
  .hero__stat-value span {
    font-size: 1.8rem;
  }
  .hero__stat--score {
    margin-left: 0;
  }
  .trust__icon img {
    max-height: 32px;
    margin: 0 auto;
  }
  .trust__title {
    font-size: 1.5rem;
  }
  .trust__text {
    font-size: 1rem;
  }
  .trust__inner {
    gap: 16px;
  }
  .methods__grid {
    column-gap: 24px;
    row-gap: 48px;
  }
  .method-card__name,
  .plan-card__name {
    font-size: 1.125rem;
  }
  .plan-card__tag {
    padding: 0px 10px;
    font-size: 1.125rem;
  }
  .plan-card__logo {
    width: 120px;
  }
  .plan-card__value span {
    font-size: 1.4rem;
  }
  .reasons__grid {
    gap: 16px;
  }

  .company__table {
    margin-left: 0;
  }

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

  .thanks-hero::after {
    height: 96px;
  }

  .thanks-hero__mascot {
    width: min(270px, 52vw);
  }

  .thanks-steps {
    width: 100%;
  }

  .thanks-step__title {
    font-size: 1.5rem;
  }
  .thanks-step__subbox {
    flex-basis: 50%;
  }
  .thanks-step__subgrid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .form-hero--designed .form-hero__inner,
  .entry__inner--designed {
    width: min(calc(100vw - 24px), 760px);
  }

  .entry-form--designed .entry-form__rows {
    grid-template-columns: 1fr;
  }

  .entry-form--single .entry-row,
  .entry-form--single .entry-row--accounttype {
    grid-template-columns: 1fr;
  }

  .entry-form--single .entry-row__label {
    padding-top: 0;
  }

  .confirm-card__doc-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  :root {
    --container: min(600px, calc(100vw - 48px));
  }
  .pc_none {
    display: block;
  }
  .sp_none {
    display: none;
  }
  .hero__inner,
  .trust__inner,
  .methods__grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-heading__title {
    width: 100%;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .hero__content {
    text-align: center;
  }

  .hero__subtitle,
  .hero__description {
    text-align: center;
  }

  .hero__button {
    margin-right: auto;
    margin-left: auto;
    width: 90%;
    min-height: 100px;
    font-size: 40px;
    line-height: 96px;
  }

  .hero__visual {
    margin: 0 auto;
    flex-basis: 30%;
  }
  .hero__visual img {
    height: 100%;
    width: auto;
  }
  .hero__stats {
    grid-template-columns: repeat(1, 1fr);
    flex-basis: 60%;
    gap: 10px;
  }
  .hero__stat-value .num {
    font-size: 4rem;
  }
  .hero__stat-value {
    font-size: 3.5rem;
  }
  .hero__bottom {
    display: flex;
    margin-bottom: 24px;
  }
  .plans__grid {
    grid-template-columns: 1fr;
  }
  .plan-card__value {
    font-size: 2.2rem;
  }
  .trust__icon img {
    max-height: 42px;
    margin: 0 auto 10px;
  }
  .trust__inner {
    gap: 32px;
    padding: 0 48px;
  }

  .flow__steps::before {
    display: none;
  }
  .flow__free-badges {
    gap: 20px;
  }
  .flow-step__count::after {
    left: 118%;
    width: 130%;
    transform: translateX(0);
  }
  .reasons__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reason-card:nth-child(1) {
    grid-column: 1 / span 1;
  }

  .reason-card:nth-child(2) {
    grid-column: 2 / span 1;
  }

  .reason-card:nth-child(3) {
    grid-column: 3 / span 1;
  }
  .reason-card:nth-child(4) {
    grid-column: 1 / span 1;
  }

  .reason-card:nth-child(5) {
    grid-column: 2 / span 1;
  }

  .reason-card:nth-child(6) {
    grid-column: 3 / span 1;
  }

  .reason-card:nth-child(7) {
    grid-column: 1 / span 1;
  }
  .reasons__mascot {
    width: 124px;
    margin: 0 auto;
    grid-column: 3 / span 1;
  }
  .final-cta__label span {
    padding: 0 16px;
    margin-top: 10px;
  }
  .thanks-main::before {
    width: 108px;
  }
  .thanks-main::after {
    width: 108px;
  }
  .thanks-step__card {
    padding: 34px 32px 30px 100px;
  }
  .thanks-step__heading::before {
    width: 55px;
    height: 55px;
    left: -76px;
  }
  .thanks-step__heading::after {
    content: '';
    position: absolute;
    top: 369%;
    left: -148px;
    width: 200px;
  }
  .thanks-steps :nth-of-type(2) .thanks-step__heading::after {
    left: -178px;
    width: 259px;
  }
  .thanks-steps :nth-of-type(3) .thanks-step__heading::after {
    top: 520%;
    left: -225px;
    width: 354px;
  }
  .login-main {
    padding-top: 40px;
  }

  .login-title {
    font-size: 2rem;
    margin-bottom: 32px;
  }

  .login-card {
    padding: 50px 24px;
  }

  .login-form {
    width: 100%;
  }

  .login-input {
    height: 56px;
  }

  .login-button {
    width: 100%;
    max-width: 240px;
    height: 64px;
    font-size: 20px;
  }

  .site-footer__logo {
    width: 180px;
  }
}
@media (max-width: 640px) {
  .hero__inner,
  .trust__inner,
  .section__inner,
  .final-cta__inner {
    width: min(calc(100vw - 20px), 560px);
  }
  .site-header__inner {
    width: min(calc(100vw - 15px), 570px);
    min-height: 50px;
  }
  .site-header__logo {
    width: 130px;
  }
  .site-header__login {
    max-width: 200px;
  }
  .site-header__brand-icon,
  .site-footer__brand-icon {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
    border-width: 2px;
  }
  .site-header__brand-text strong,
  .site-footer__brand-text strong {
    font-size: 1.05rem;
  }
  .site-header__brand-text small,
  .site-footer__brand-text small {
    font-size: 0.66rem;
  }
  .site-header__login {
    min-width: 118px;
    padding: 8px 14px;
    font-size: 0.88rem;
  }
  .hero__inner {
    gap: 18px;
    padding: 18px 0 20px;
  }
  .hero__content img {
    padding: 0;
  }

  .hero__lead {
    font-size: 1.8rem;
  }

  .hero__title {
    font-size: 5rem;
  }

  .hero__subtitle {
    font-size: 1.3rem;
  }

  .hero__description {
    font-size: 0.95rem;
  }
  .hero__stats {
    gap: 30px;
  }
  .hero__bottom {
    align-items: end;
  }
  .hero__visual img {
    height: auto;
    width: auto;
  }

  .plans__grid,
  .flow__steps {
    grid-template-columns: 1fr;
  }

  .hero__stat {
    padding-top: 18px;
  }
  .trust__title {
    font-size: 1.2rem;
  }
  .trust__text {
    font-size: 0.9rem;
  }
  .trust__inner {
    gap: 24px;
  }

  .section-heading__title {
    font-size: 2.1rem;
  }

  .method-card__name,
  .plan-card__name {
    font-size: 1.1rem;
  }

  .method-card__rate {
    font-size: 2.45rem;
  }

  .methods__notice {
    line-height: 1.5;
  }
  .flow .section-heading__title {
    width: 80%;
  }

  .flow-step {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, auto);
    column-gap: 20px;
    align-items: center;
  }
  .flow-step:nth-of-type(2) {
    margin-bottom: 40px;
  }
  .flow-step__count {
    grid-column: 1 / span 1;
    grid-row: 1 / span 2;
    width: 100%;
    margin: 0;
  }

  .flow-step__icon {
    grid-column: 2 / span 1;
    grid-row: 1 / span 2;
    max-height: 76px;
  }
  .flow-step__text {
    grid-column: 3 / span 3;
    grid-row: 2 / span 1;
    text-align: left;
    margin: 0;
  }
  .flow-step__note {
    grid-column: 3 / span 3;
    grid-row: 3 / span 1;
    text-align: left;
  }

  .flow-step__title {
    font-size: 1.5rem;
    grid-column: 3 / span 3;
    grid-row: 1 / span 1;
    text-align: left;
    margin: 0;
  }

  .flow__free-title {
    font-size: 2rem;
  }
  .flow-step__count::after {
    top: auto;
    bottom: -60%;
    width: 60px;
    transform: rotate(90deg) translateY(-50%);
    left: auto;
  }
  .flow__free {
    margin: 100px auto 0;
  }

  .reasons__grid {
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }
  .reason-card:nth-child(1) {
    grid-column: 1 / span 1;
  }

  .reason-card:nth-child(2) {
    grid-column: 2 / span 1;
  }

  .reason-card:nth-child(3) {
    grid-column: 1 / span 1;
  }
  .reason-card:nth-child(4) {
    grid-column: 2 / span 1;
  }

  .reason-card:nth-child(5) {
    grid-column: 1 / span 1;
  }

  .reason-card:nth-child(6) {
    grid-column: 2 / span 1;
  }

  .reason-card:nth-child(7) {
    grid-column: 1 / span 1;
  }
  .reasons__mascot {
    width: 50%;
    grid-column: 2 / span 1;
  }
  .voices {
    padding-bottom: 78px;
  }
  .voice-card {
    align-items: end;
  }
  .faq-item__answer p {
    padding-right: 0;
  }
  .faq__list {
    gap: 14px;
  }
  .company__row {
    grid-template-columns: 138px 1fr;
  }
  .faq-item__question {
    gap: 10px;
    padding: 14px 12px;
  }
  .faq-item__answer {
    padding: 14px 12px;
  }
  .faq-item__question img,
  .faq-item__answer img {
    width: 32px;
  }
  .final-cta__title {
    font-size: 2.3rem;
  }
  .site-footer {
    padding-top: 18px;
  }

  .form-page__main {
    padding: 18px 0 54px;
  }

  .form-hero__inner,
  .entry__inner {
    width: min(calc(100vw - 20px), 560px);
  }

  .form-hero__title {
    font-size: 2.5rem;
    line-height: 1.5;
    padding: 0;
  }

  .entry-result {
    padding: 22px 16px;
  }

  .entry-form__section-header {
    padding: 14px 16px;
  }

  .entry-form__grid,
  .entry-form__stack,
  .entry-form__choice-group {
    padding: 18px 16px 16px;
  }

  .entry-form__grid,
  .entry-form__choice-grid {
    grid-template-columns: 1fr;
  }

  .entry-form__section-title {
    font-size: 1.15rem;
  }

  .entry-form__choice-card {
    min-height: 90px;
  }

  .entry-form__submit .cta-button {
    font-size: 1.05rem;
  }
  .form-hero--designed .form-hero__text {
    margin-top: -3px;
    margin-bottom: 17px;
    font-size: 0.88rem;
  }
  .form-hero--designed .form-hero__text + span {
    font-size: 0.61rem;
    display: block;
  }

  .entry-form--designed .entry-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  
  .entry-form--designed .entry-form__rows {
    margin-top: 6px;
    row-gap: 17px;
  }

  .entry-form--designed .entry-row__label {
    font-size: 0.88rem;
    column-gap: 4px;
  }
  .entry-form--single .entry-row__label em {
    font-size: 0.6rem;
    padding: 3px 6.5px 2px;
    line-height: 1;
  }
  .entry-form--single .entry-form__input--compact,
  .entry-form--single .entry-form__textarea {
    min-height: 42px;
    font-size: 0.7rem;
    padding: 6px 13px;
  }
  .entry-form_note_red,
  .entry-form_note {
    font-size: 0.61rem;
    line-height: 1.55;
    display: block;
  }
  .entry-form_note_red + .entry-form_note {
    padding-left: 1em;
    text-indent: -1em;
  }
  .entry-form--designed .entry-row__controlwrap {
    padding-left: 7px;
    column-gap: 10px;
    font-size: 0.8rem;
  }
  .entry-row__control:has(select)::after {
    width: 0.6em;
    height: 0.6em;
    top: 13px;
  }
  .entry-form--designed .entry-form__band {
    margin: 10px 7px 0;
  }
  .entry-form--single .entry-form__band-title {
    font-size: 1rem;
    padding: 11px 17px;
  }
  .entry-form--designed .entry-form__panel--bank {
    margin: 0 7px 37px;
    padding-bottom: 24px !important;
  }
  .entry-form--single .entry-form__bank-copy {
    font-size: 0.85rem;
    margin-top: 10px;
    margin-left: 12px;
    margin-bottom: 0;
  }
  .entry-form--single .entry-form__bank-option span {
    min-height: 32px;
    padding: 0 8px;
  }
  .entry-form--single .entry-form__bank-grid--selectable {
    margin-bottom: 19px;
  }
  .entry-form--single .entry-form__kana-picker {
    width: 95%;
    margin-bottom: 17px;
  }
  .entry-form--single .entry-form__kana-title {
    font-size: 0.9rem;
    padding: 5px;
  }
  .entry-form--single .entry-form__bank-search {
    height: 42px;
    width: 95%;
    margin-bottom: 11px;
  }
  .entry-form--single .entry-form__rows--bankfields {
    width: 95%;
    row-gap: 11px;
  }
  .entry-form--single .entry-form__accounttype-button span {
    font-size: 0.8rem;
    min-width: 76px;
    margin-top: -5px;
  }
  .entry-form--single .entry-form__panel--guide.bg__white {
    margin: 0 7px 38px;
  }
  .entry-form--single .entry-form__panel--guide.bg__white p {
    font-size: 0.77rem;
    padding: 16px 9px 14px;
    line-height: 1.8;
  }
  .entry-form--single .entry-form__panel--guide.bg__white p strong {
    font-size: 0.77rem;
  }
  .entry-form--designed .entry-form__choice-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .entry-form--designed .entry-form__guide-card {
    grid-template-columns: 1fr;
  }

  .entry-form--designed .entry-form__calendar-head {
    flex-direction: column;
    gap: 3px;
  }
  .entry-form--designed .entry-form__choice-grid--compact {
    grid-template-columns: 1fr 1fr;
  }

  .entry-form--designed .entry-form__calendar-head {
    flex-direction: column;
    gap: 4px;
  }
  .form-hero--designed .form-hero__inner,
  .entry__inner--designed {
    width: min(calc(100vw - 16px), 560px);
  }

  .entry-form--designed .entry-form__panel {
    padding: 0 6px;
  }

  .entry-form--designed .entry-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .entry-form--designed .entry-form__choice-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .entry-form--designed .entry-form__guide-card {
    grid-template-columns: 1fr;
  }

  .confirm-card__doc-grid {
    grid-template-columns: 1fr;
  }
  .entry-form--single .entry-form__kana-grid span {
    min-height: 30px;
    font-size: 0.9rem;
  }
  .entry-form--single .entry-form__guide-illust {
    width: 117px;
    margin: 0 auto;
  }
  .entry-form--single .entry-form__guide-card {
    padding: 17px 16px 20px;
    row-gap: 15px;
  }
  .entry-form--single .entry-form__guide-copy p,
  .entry-form--single .entry-form__notice,
  .entry-form--single .entry-form__submit-note,
  .entry-form--single .entry-form__agreement--boxed {
    font-size: 0.61rem;
    line-height: 1.7;
  }
  .entry-form--single .entry-form__guide-copy p {
    margin-top: 7px;
  }
  .entry-form__guide-copy,
  .entry-form__guide-copy strong {
    font-size: 0.77rem;
  }
  .entry-form__guide-copy {
    padding: 0;
  }

  .confirm-card__actions {
    flex-direction: column;
    align-items: center;
    margin: 40px 0;
    gap: 30px;
  }
  .entry-form--single .entry-form__guide-card.entry-form__guide-card--selfie {
    margin-bottom: 45px;
  }
  .upload__field-inner {
    gap: 7px;
  }
  .upload-button span {
    width: 98px;
    font-size: 0.7rem;
    height: 35px;
    border-radius: 5px;
  }
  .upload-filename {
    font-size: 0.7rem;
    height: 35px;
  }
  .upload-preview {
    min-height: 130px;
    margin-top: 6px;
    padding: 7px;
  }
  .upload-preview img {
    max-height: 200px;
  }
  .upload-section__format {
    font-size: 0.61rem;
  }
  .entry-form__guide-headding,
  .entry-form__guide-headding strong {
    font-size: 0.77rem;
  }
  .entry-form--single .entry-form__guide-id-cards {
   padding: 0; 
   gap: 0;
  }
  .entry-form--single .entry-form__guide-illust.entry-form__guide-illust--id {
    width: 94%;
    margin-top: -8px;
  }
  .entry-form__panel--guide .entry-form__rows--singlecol {
    padding: 10px 8px 20px;
    margin-top: 18px;
    margin-bottom: 0;
  }
  .entry-form--designed .entry-form__error {
    display: block;
    margin-top: 3px;
    font-size: 0.54rem;
    line-height: 1.45;
  }

  .entry-form--designed .entry-form__error--block {
    margin-top: 6px;
  }
  .agreement-section {
    padding: 0 0 10px;
  }
  .agreement-section p,
  .agreement-section .agreement-box p {
    font-size: 0.88rem;
  }
  .entry-result__title {
    font-size: 1.25rem;
  }
  .entry-result__text {
    font-size: 1rem;
  }
  .policy-page__main,
  .terms-page__main {
    padding: 36px 0 72px;
  }
  .policy-page__content,
  .terms-page__content {
    margin-top: 54px;
  }

  .policy-page__block + .policy-page__block,
  .terms-page__block + .terms-page__block {
    margin-top: 36px;
  }

  .policy-page__heading,
  .terms-page__heading {
    margin-bottom: 12px;
    line-height: 1.55;
  }

  .policy-page__text,
  .terms-page__text {
    line-height: 1.95;
  }

  .terms-page__intro {
    margin-bottom: 36px;
    line-height: 1.95;
  }
  .policy-page__block + .policy-page__block {
    margin-top: 32px;
  }
  .form-page--confirmflow .form-hero--confirmflow {
    padding-top: 5px;
    padding-bottom: 4px;
  }
  .form-page--confirmflow .form-hero__title {
    font-size: 1.6rem;
  }
  .confirm-card__section--full {
    width: 96%;
    margin: 0 auto;
  }
  .confirm-card__head {
    font-size: 0.94rem;
    letter-spacing: 0.08em;
    padding: 10px 16px;
  }
  .confirm-card__row {
    grid-template-columns: 140px 1fr;
  }
  .confirm-card__label,
  .confirm-card__value {
    font-size: 0.88rem;
    padding: 13px 0 13px 15px;
  }
  .confirm-card__docs-title {
    font-size: 0.88rem;
    padding: 13px;
  }
  .confirm-card__doc-subtitle {
    font-size: 0.88rem;
    padding: 9px;
  }
  .confirm-card__doc-label {
    font-size: 0.88rem;
    margin-bottom: 0;
  }
  .confirm-card__doc-main {
    width: 140px;
  }
  .confirm-card__doc-main img {
    height: 180px;
  }
  .confirm-card__doc-grid {
    max-width: 82%;
    row-gap: 18px;
    margin-bottom: 10px;
  }
  .thanks-main {
    background: top center / 100% auto no-repeat url(../images/thanks_hero_bg-sp.jpg);
  }
  .thanks-hero {
    padding-top: 8px;
  }
  .thanks-hero .form-hero__inner {
    padding-top: 22px;
    height: 78.4vw;
    padding-bottom: 0;
  }
  .thanks-hero .form-hero__title {
    font-size: 1.6rem;
  }
  .thanks-hero__lead {
    margin: 10px 0;
    font-size: 0.81rem;
  }
  .thanks-flow__title {
    line-height: 1.4;
    font-size: 1.5625rem;
    margin-bottom: 20px;
  }
  .thanks-flow__copy {
    font-size: 0.81rem;
    margin-top: 0;
    line-height: 1.75;
  }

  .thanks-flow {
    padding-bottom: 30px;
  }
  .thanks-steps {
    margin-top: 30px;
    row-gap: 24px;
  }
  .thanks-steps::before {
    left: 29px;
  }

  .thanks-step__badge {
    top: 20px;
    width: 60px;
    height: 60px;
  }

  .thanks-step__badge span {
    margin-top: 8px;
    font-size: 0.55rem;
  }

  .thanks-step__badge strong {
    margin-bottom: 8px;
    font-size: 1.3rem;
  }

  .thanks-step__card {
    padding: 30px 10px 22px 75px;
    border-radius: 16px;
  }
  .thanks-step__heading::after {
    left: -131px;
    width: 190px;
  }
  .thanks-steps :nth-of-type(2) .thanks-step__heading::after {
    left: -131px;
    width: 190px;
  }
  .thanks-steps :nth-of-type(3) .thanks-step__heading::after {
    top: 610%;
    left: -210px;
    width: 348px;
  }
  .thanks-step__heading::before {
    top: -6px;
    width: 47.5px;
    height: 47.5px;
    left: -60px;
  }
  .thanks-step__heading .thanks-step__title::after {
    width: 20px;
    height: 54px;
    right: -29px;
  }
  .thanks-steps :nth-of-type(2) .thanks-step__heading .thanks-step__title::after {
    width: 36px;
    right: -38px;
  }
  .thanks-steps :nth-of-type(3) .thanks-step__heading .thanks-step__title::after {
    width: 46px;
    height: 46px;
    right: -57px;
  }
  .thanks-steps :nth-of-type(4) .thanks-step__heading .thanks-step__title::after {
    width: 31px;
    height: 31px;
  }
  .thanks-step__subgrid {
    flex-wrap: wrap;
  }
  .thanks-step__subbox {
    flex-basis: 100%;
  }

  .thanks-step__heading {
    align-items: flex-start;
    gap: 10px;
  }

  .thanks-step__title {
    font-size: 1.25rem;
    letter-spacing: 0.08em;
  }

  .thanks-step__icon {
    width: 32px;
    height: 32px;
  }

  .thanks-step__text {
    font-size: 0.88rem;
  }
  .thanks-step__text {
    margin-top: 8px;
    line-height: 1.6;
  }
  .thanks-step__note {
    font-size: 0.625rem;
  }
  .thanks-step__subgrid {
    margin-top: 17px;
  }
  .thanks-step__subhead {
    font-size: 0.81rem;
    padding: 2px 24px 2px 13px;
    line-height: 1.5;
  }
  .thanks-step__subbox p {
    font-size: 0.81rem;
    padding: 6px 14px;
  }

  .thanks-hours {
    padding: 22px 16px;
    margin-top: 44px;
  }
  .thanks-hours__main {
    font-size: 0.9375rem;
    letter-spacing: 0.08em;
  }
  .thanks-hours__main small {
    display: block;
    font-size: 0.5625rem;
  }
  .thanks-hours__sub {
    column-gap: 8px;
  }
  .thanks-hours__sub span {
    font-size: 0.9375rem;
  }
  .thanks-hours__sub .thanks-hours__badge {
    min-width: 68.5px;
    min-height: 20px;
    font-size: 0.6825rem;
  }
}
@media (max-width: 480px) {
  .plans__button,
  .reasons__button,
  .final-cta__button {
    font-size: 7vw;
  }
  .site-header__login {
    max-width: 32%;
    padding: 4px;
    font-size: 0.75rem;
  }
  .site-header__login::before {
    width: 15px;
    height: 15px;
  }
  .site-header__login::after {
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 4.5px solid var(--color-blue);
    right: 15px;
  }
  .hero__bottom {
    width: 100%;
  }
  .hero__stat-value .num {
    font-size: 13vw;
  }
  .hero__stat-value {
    font-size: 12vw;
  }
  .hero__stats {
    gap: 24px;
  }
  .hero__button {
    font-size: 8vw;
  }
  .trust__inner {
    padding: 0;
    gap: 16px;
  }
  .trust__icon img {
    max-height: 32px;
    margin: 0 auto 6px;
  }
  .method-card__name {
    font-size: 4vw;
    padding: 20px 0 10px;
  }
  .methods__grid {
    column-gap: 16px;
  }
  .method-card {
    border-radius: 16px;
  }
  .method-card__name,
  .plan-card__name {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  .method-card__logo {
    width: 110px;
    height: auto;
    padding: 6px 2px;
    top: -18px;
  }
  .methods__notice span,
  .plans__lead span {
    font-size: 2.2rem;
  }
  .method-card:nth-child(1) .method-card__logo img {
    width: 58px;
  }
  .method-card:nth-child(2) .method-card__logo img {
    width: 34px;
  }
  .method-card:nth-child(3) .method-card__logo img {
    width: 55px;
  }
  .method-card:nth-child(4) .method-card__logo img {
    width: 43px;
  }
  .method-card:nth-child(5) .method-card__logo img,
  .method-card:nth-child(6) .method-card__logo img {
    width: 76px;
  }
  .methods__link {
    font-size: 1.5rem;
    margin-right: 20px;
  }
  .methods__link::before,
  .methods__link::after {
    top: 60%;
  }
  .methods__link::before {
    right: -24px;
  }
  .methods__link::after {
    right: -18px;
  }
  .methods::after {
    bottom: -50px;
    height: 50px;
  }
  .plans {
    padding-top: 80px;
  }
  .section-heading__text {
    font-size: 1.25rem;
    margin-top: 24px;
  }
  .section-heading {
    margin-bottom: 40px;
  }
  .plans__grid {
    gap: 24px 16px;
  }
  .plans__lead {
    font-size: 1.3rem;
  }
  .plans__lead span {
    font-size: 1.7rem;
  }
  .flow-step__icon {
    max-height: 55px;
  }
  .flow-step__text {
    font-size: 1rem;
  }
  .flow-step__note {
    font-size: 0.875rem;
  }
  .flow__free {
    margin: 80px auto 0;
  }
  .flow__free-badges {
    gap: 6px;
  }
  .flow__free-badges span,
  .company__term {
    font-size: 1rem;
    padding: 4px 10px;
  }
  .voice-card--left {
    grid-template-columns: 90px 1fr;
    margin-right: 10px;
  }
  .voice-card__bubble {
    padding: 16px;
    font-size: 1rem;
  }
  .voice-card--right {
    grid-template-columns: 1fr 90px;
    margin-left: 10px;
  }
  .faq-item__question-text {
    font-size: 1rem;
  }
  .faq-item__answer p {
    font-size: 1.125rem;
  }
  .final-cta__label span {
    font-size: 1.4rem;
  }
  .final-cta__copy {
    font-size: 5.2vw;
  }
  .final-cta__button {
    font-size: 7vw;
  }
  .company__row {
    grid-template-columns: 116px 1fr;
    gap: 10px;
  }
  .company__desc {
    font-size: 1.125rem;
  }
  .company__mascot {
    margin: 50px auto 0;
  }
  .thanks-hours__sub {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .contact-form .entry-form__panel--topfields {
    width: 96%;
    margin: 0 auto;
  }

  .contact-form__textarea {
    min-height: 150px;
  }

  .contact-checks {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-check {
    min-height: 48px;
    padding: 10px 12px;
    font-size: 0.94rem;
  }

  .contact-complete {
    width: 92%;
    padding: 34px 18px;
    margin-bottom: 42px;
  }

  .contact-complete__title {
    font-size: 1.22rem;
  }

  .contact-complete__text {
    font-size: 0.94rem;
  }

  .contact-complete .cta-button {
    max-width: 280px;
  }
}
