* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text-900);
  background: var(--color-white);
  font-family: var(--font-base);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0;
}

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

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

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

.section {
  padding: 72px 0 0;
}

.section--tight {
  padding-top: 64px;
}

.section--cta {
  padding-top: 56px;
}

.section--form {
  padding: 64px 0 88px;
}

.section-title {
  position: relative;
  width: fit-content;
  margin: 0 auto 28px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.section-title::before,
.section-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 35px;
  height: 8px;
  transform: translateY(-50%);
  background-image: radial-gradient(
    circle,
    var(--color-primary-600) 2px,
    transparent 2.8px
  );
  background-size: 12px 8px;
}

.section-title::before {
  right: calc(100% + 14px);
}

.section-title::after {
  left: calc(100% + 14px);
}

.hero {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 37% 34%,
      rgba(37, 160, 76, 0.08) 0 62px,
      transparent 63px
    ),
    linear-gradient(90deg, #fff 0%, #fff 52%, #f6fbf7 52%, #fff 100%);
}

@media (max-width: 1120px) {
  .hero {
    padding: 40px 0 0px;
    min-height: 0px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0 30px;
    min-height: 560px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 40px 0 14px;
    min-height: 560px;
  }
}

.hero__grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 14px;
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding-top: 6px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  margin: 0 0 20px;
  padding: 4px 14px 5px;
  color: var(--color-primary-700);
  border: 2px solid var(--color-primary-600);
  border-radius: var(--radius-badge);
  background: var(--color-white);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.3;
}

.hero__title {
  margin: 0;
  font-weight: 900;
  line-height: 1.03;
}

.hero__title > span {
  display: block;
  font-size: clamp(38px, 3.4vw, 56px);
}

.hero__title strong {
  display: block;
  color: var(--color-primary-600);
  font-size: clamp(62px, 7vw, 108px);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.hero__title strong span {
  font-size: 1.26em;
}

.hero__lead {
  display: inline-block;
  margin: 18px 0 16px;
  padding: 8px 18px;
  color: var(--color-white);
  border-radius: 4px;
  background: var(--color-primary-600);
  font-size: clamp(16px, 1.55vw, 22px);
  font-weight: 900;
  line-height: 1.35;
}

.hero__dates {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 700;
}

.hero__dates p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px 9px;
  margin: 0;
}

.hero__dates span {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px 3px;
  color: var(--color-primary-700);
  border-radius: var(--radius-pill);
  background: var(--color-primary-100);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.hero__dates strong {
  font-weight: 900;
}

.hero__dates em {
  font-style: normal;
  font-weight: 900;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 370px;
  min-height: 68px;
  padding: 0 32px;
  color: var(--color-white);
  border: 0;
  border-radius: var(--radius-button);
  background: linear-gradient(180deg, #ff9a0b, var(--color-orange-500));
  box-shadow: var(--shadow-button);
  font: inherit;
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  background: var(--color-orange-600);
  box-shadow: 0 8px 18px rgba(249, 121, 5, 0.34);
  transform: translateY(-1px);
}

.cta-button span {
  font-size: 34px;
  line-height: 0.8;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--color-primary-700);
  font-size: 13px;
  font-weight: 900;
  list-style: none;
}

.hero__features li {
  position: relative;
  padding-left: 24px;
}

.hero__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1.5px solid var(--color-primary-600);
  border-radius: 50%;
  font-size: 11px;
}

.hero__visual {
  position: relative;
  min-height: 505px;
}

.hero__people {
  position: absolute;
  right: 72px;
  bottom: 24px;
  z-index: 2;
  width: min(58vw, 560px);
  height: 392px;
  max-width: none;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.08));
}

/* lg */
@media (min-width: 1120px) {
  .hero__people {
    bottom: 0px;
  }
}

/* xl */
@media (min-width: 1280px) {
  .hero__people {
    bottom: -2vw;
  }
}

/* 2xl */
@media (min-width: 1536px) {
  /* 2xl以上 */
}

.hero__person {
  position: absolute;
  bottom: 0;
  object-fit: contain;
  object-position: bottom center;
}

.hero__person--tanabe {
  right: 100px;
  width: 420px;
  max-width: none;
}

.hero__person--akimura {
  right: -170px;
  width: 420px;
  max-width: none;
}

.speaker-label {
  position: absolute;
  z-index: 4;
  bottom: 18px;
  min-width: 180px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  background: var(--color-white);
  box-shadow: var(--shadow-subtle);
  text-align: center;
}

.speaker-label small,
.speaker-label strong {
  display: block;
}

.speaker-label small {
  font-size: 9px;
  font-weight: 900;
  line-height: 1.2;
}

.speaker-label strong {
  margin-top: 3px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
}

.speaker-label--left {
  right: 300px;
  bottom: 40px;
}

.speaker-label--right {
  right: 20px;
  bottom: 40px;
}

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

.benefit-card,
.info-card,
.learning-card,
.speaker-card,
.schedule-card,
.step-card,
.faq-item,
.form-card {
  border: 1px solid var(--color-line-200);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.benefit-card {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  align-items: center;
  min-height: 170px;
  padding: 23px 28px 22px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.yellow-label {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 4px 11px 5px;
  border-radius: 4px;
  background: var(--color-yellow-400);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.benefit-card h3 {
  margin: 0;
  font-size: clamp(20px, 1.8vw, 29px);
  font-weight: 900;
  line-height: 1.35;
}

.benefit-art,
.sprite {
  display: block;
  background-repeat: no-repeat;
  background-size: 400% 100%;
}

.benefit-art {
  height: 128px;
  background-size: contain;
  background-position: center;
}

.benefit-art--left {
  background-image: url('./img/special-1.png');
}

.benefit-art--right {
  background-image: url('./img/special-2.png');
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card {
  min-height: 200px;
  padding: 22px 18px 18px;
  border-radius: var(--radius-md);
  text-align: center;
}

.info-card p {
  margin: 13px 0 0;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.62;
}

.sprite {
  width: 118px;
  height: 88px;
  margin-inline: auto;
}

.sprite--recommend {
  width: 140px;
  background-position: center;
  background-size: cover;
}

.sprite--recommend.sprite--1 {
  background-image: url('./img/recommendation-1.png');
}

.sprite--recommend.sprite--2 {
  background-image: url('./img/recommendation-2.png');
}

.sprite--recommend.sprite--3 {
  background-image: url('./img/recommendation-3.png');
}

.sprite--recommend.sprite--4 {
  background-image: url('./img/recommendation-4.png');
}

.sprite--learning {
  background-position: center;
  background-size: contain;
}

.sprite--learning.sprite--1 {
  background-image: url('./img/learning-1.png');
}

.sprite--learning.sprite--2 {
  background-image: url('./img/learning-2.png');
}

.sprite--learning.sprite--3 {
  background-image: url('./img/learning-3.png');
}

.sprite--learning.sprite--4 {
  background-image: url('./img/learning-4.png');
}

.sprite--process {
  width: 72px;
  height: 64px;
  background-image: url('./img/calendar.png');
  background-position: center;
  background-size: contain;
}

.sprite--process.sprite--2 {
  background-image: url('./img/process-2.png');
}

.sprite--process.sprite--3 {
  background-image: url('./img/process-3.png');
}

.sprite--process.sprite--4 {
  background-image: url('./img/process-4.png');
}

.learning-card {
  position: relative;
  min-height: 205px;
  padding: 22px 14px 16px;
  border-radius: var(--radius-md);
  text-align: center;
}

.number {
  position: absolute;
  left: 22px;
  top: 14px;
  color: var(--color-primary-600);
  font-size: 31px;
  font-weight: 900;
  line-height: 1;
}

.learning-card h3 {
  min-height: 72px;
  margin: 48px 0 10px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.55;
}

.speaker-card {
  display: grid;
  grid-template-columns: 205px 1fr;
  align-items: start;
  min-height: 220px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, #f5faf6 0%, #fff 55%);
}

.speaker-card__photo {
  width: 100%;
  align-self: end;
  height: 210px;
  object-fit: cover;
  object-position: bottom center;
}

/* md */
@media (min-width: 768px) {
  /* md以上 */
}

/* lg */
@media (min-width: 1024px) {
  .speaker-card__photo {
    align-self: end;
  }
}

.speaker-card__photo--tanabe {
  object-position: 62% bottom;
}

.speaker-card__body {
  padding: 20px 26px 20px 10px;
}

.speaker-role {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 900;
}

.speaker-card h3 {
  margin: 0 0 18px;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.25;
}

.speaker-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
  list-style: none;
}

.speaker-card li {
  position: relative;
  padding-left: 15px;
}

.speaker-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary-600);
}

.cta-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 78px;
  padding: 12px 18px 12px 62px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--color-primary-600), #58c237);
  color: var(--color-white);
  box-shadow: 0 10px 22px rgba(37, 160, 76, 0.23);
}

.cta-strip > span {
  display: inline-flex;
  padding: 7px 18px;
  border-radius: 4px;
  background: var(--color-white);
  color: var(--color-primary-600);
  font-size: 14px;
  font-weight: 900;
}

.cta-strip strong {
  font-size: clamp(16px, 1.55vw, 22px);
  font-weight: 900;
  line-height: 1.4;
}

.cta-button--small {
  min-width: 285px;
  min-height: 52px;
  padding: 0 22px;
  font-size: 16px;
}

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

.schedule-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  min-height: 150px;
  padding: 22px 26px;
  border-radius: var(--radius-md);
}

.schedule-card .sprite {
  width: 68px;
  height: 68px;
}

.green-label {
  display: inline-flex;
  padding: 4px 12px 5px;
  color: var(--color-primary-700);
  border-radius: var(--radius-pill);
  background: var(--color-primary-100);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.schedule-card h3 {
  margin: 6px 0 0;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.15;
}

.schedule-card small {
  font-size: 17px;
}

.schedule-card p {
  margin: 0;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.25;
}

.centered {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.cta-button--medium {
  min-width: 310px;
  min-height: 58px;
  font-size: 18px;
}

.step-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.step-card {
  position: relative;
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  min-height: 134px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
}

.step-card:not(:last-child)::after {
  content: '›';
  position: absolute;
  right: -26px;
  top: 50%;
  color: #d7ddd7;
  font-size: 62px;
  font-weight: 400;
  transform: translateY(-50%);
}

.step-card strong {
  display: block;
  margin-bottom: 2px;
  color: var(--color-primary-600);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.step-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.55;
}

.notice {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 22px;
  margin-top: 20px;
  padding: 18px 28px;
  border: 1px solid #dbeedc;
  border-radius: var(--radius-md);
  background: var(--color-bg-50);
}

.notice h3 {
  margin: 0;
  padding: 14px 18px;
  border-radius: 4px;
  background: #ecf8ed;
  color: var(--color-primary-700);
  font-size: 17px;
  font-weight: 900;
  text-align: center;
}

.notice ul {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 700;
  list-style: none;
}

.notice li::before {
  content: '・';
  color: var(--color-primary-600);
  font-weight: 900;
}

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

.faq-item {
  border-radius: 8px;
  overflow: hidden;
}

.faq-item summary {
  display: grid;
  grid-template-columns: 30px 1fr 26px;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  padding: 9px 16px;
  font-weight: 900;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary-600);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.faq-item summary b {
  display: none;
}

.faq-item summary::after {
  content: '⌄';
  color: var(--color-primary-600);
  font-size: 20px;
  font-weight: 900;
  justify-self: end;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item p {
  margin: 0;
  padding: 0 18px 16px 60px;
  color: var(--color-text-700);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
}

.form-card {
  padding: 30px 48px 40px;
  border-radius: var(--radius-lg);
}

.form-grid p {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 46px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-line-200);
}

.form-grid label {
  display: grid;
  grid-template-columns: 104px 42px 1fr;
  align-items: center;
  gap: 8px;
  font-weight: 900;
}

.form-grid2 {
  padding-top: 24px;
}

.form-grid2 label {
  align-items: center;
  gap: 8px;
  font-weight: 900;
}

.form-grid label:nth-child(5) {
  grid-column: 1 / 2;
}

span.badge {
  display: inline-flex;
  justify-content: center;
  min-width: 34px;
  padding: 2px 5px 3px;
  border-radius: 3px;
  background: var(--color-orange-500);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

span.badge2 {
  display: inline-flex;
  justify-content: center;
  min-width: 34px;
  padding: 2px 5px 3px;
  border-radius: 3px;
  background: #999999;
  color: var(--color-white);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

input[type='text'],
input[type='tel'],
input[type='email'],
select {
  width: 100%;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid #dfe5df;
  border-radius: 5px;
  color: var(--color-text-900);
  font: inherit;
  font-size: 13px;
  line-height: 1.2;
  background-color: var(--color-white);
}

textarea {
  width: 100%;
  min-height: 38px;
  margin-top: 16px;
  padding: 9px 14px;
  border: 1px solid #dfe5df;
  border-radius: 5px;
  color: var(--color-text-900);
  font: inherit;
  font-size: 13px;
  line-height: 1.2;
  background-color: var(--color-white);
  height: 240px;
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M0 0l6 6 6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 36px;
}

input::placeholder {
  color: #babfba;
}

input:focus-visible,
summary:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(37, 160, 76, 0.35);
  outline-offset: 3px;
}

fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 34px;
  margin: 0;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid var(--color-line-200);
}

fieldset legend {
  float: left;
  width: 144px;
  margin-right: 10px;
  font-weight: 900;
}

fieldset label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  font-weight: 500;
}

input[type='radio'] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary-600);
}

.form-submit {
  display: flex;
  min-width: 390px;
  margin: 28px auto 0;
}

@media (max-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .form-grid p {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px 46px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-line-200);
  }
}

@media (max-width: 1120px) {
  .hero__visual {
    min-height: 240px;
    order: 2;
  }

  .hero__people {
    top: 0px;
    right: 50%;
    width: 480px;
    height: 350px;
    transform: translateX(50%);
  }

  .hero__person--tanabe {
    right: 20vw;
    width: 35vw;
  }

  .hero__person--akimura {
    right: 0vw;
    width: 35vw;
  }

  .speaker-label--left {
    right: 21vw;
    bottom: -90px;
  }

  .speaker-label--right {
    right: -2vw;
    bottom: -90px;
  }

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

  .cta-strip {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 24px;
    border-radius: 28px;
    text-align: center;
  }

  .speaker-card {
    grid-template-columns: 170px 1fr;
  }

  .schedule-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .step-card:not(:last-child)::after {
    display: none;
  }
}

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

  .section-title::before,
  .section-title::after {
    display: none;
  }

  .section,
  .section--tight,
  .section--form {
    padding-top: 46px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero__badge {
    margin-bottom: 14px;
    font-size: 14px;
  }

  .hero__title > span {
    font-size: clamp(31px, 10vw, 43px);
  }

  .hero__title strong {
    font-size: clamp(44px, 13.2vw, 64px);
    white-space: nowrap;
  }

  .hero__lead {
    font-size: 14px;
  }

  .hero__dates p {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: start;
    align-items: center;
    align-content: start;
    column-gap: 6px;
    row-gap: 6px;
    padding: 10px 11px;
    border: 1px solid var(--color-line-200);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-subtle);
  }

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

  .hero__dates span {
    grid-column: 1 / -1;
    width: fit-content;
    font-size: 11px;
  }

  .hero__dates strong {
    color: var(--color-primary-700);
    font-size: 15px;
    line-height: 1.25;
  }

  .hero__dates em {
    justify-self: start;
    font-size: 12px;
    line-height: 1.25;
  }

  .cta-button,
  .cta-button--small,
  .cta-button--medium,
  .form-submit {
    width: 100%;
    min-width: 0;
  }

  .hero__visual {
    min-height: 40vw;
  }

  .hero__people {
    width: 100%;
    height: auto;
  }

  .hero__person--tanabe {
    right: 40vw;
    width: 55vw;
    bottom: -10vw;
  }

  .hero__person--akimura {
    width: 55vw;
    right: -5vw;
    bottom: -10vw;
  }

  .speaker-label {
    bottom: 4px;
    min-width: 125px;
    padding: 6px 8px;
  }

  .speaker-label small {
    font-size: 7px;
  }

  .speaker-label strong {
    font-size: 14px;
  }

  .speaker-label--left {
    right: 55vw;
    bottom: -1vw;
  }

  .speaker-label--right {
    right: 5vw;
    bottom: -1vw;
  }

  .benefit-grid,
  .card-grid--four,
  .speaker-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: 0;
  }

  .benefit-art {
    height: 145px;
  }

  .info-card,
  .learning-card {
    min-height: 0;
  }

  .speaker-card {
    grid-template-columns: 140px 1fr;
  }

  .speaker-card__body {
    padding: 22px 18px 22px 22px;
  }

  .schedule-card,
  .step-card {
    grid-template-columns: 76px 1fr;
  }

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

  .form-card {
    padding: 22px 18px 30px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .form-grid label {
    grid-template-columns: 92px 40px 1fr;
  }

  .form-grid label:nth-child(5) {
    grid-column: auto;
  }

  fieldset {
    display: grid;
    gap: 10px;
  }

  fieldset legend {
    float: none;
    width: auto;
    margin: 0 0 8px;
    padding-top: 24px;
  }
}
