*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-width: 320px;
  color: #111;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  background: #fff;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-title {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 5px;
    margin: 0;
    width: 100%;
    height: auto;
    background-color: #009844;
    color: #FFFFFF;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    font-size: 1rem;
    text-align: center;
    padding-top: 5px;
}

.page-title span {
  display: inline-block;
  margin-left: 1em;
}


.page {
  width: 100%;
}

.hero {
  width: min(100%, 1300px);
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 48% 52%;
    grid-template-areas: "content visual"
    "actions visual";
    align-items: center;
    align-content: center;
    min-height: 580px;
    padding-top: 56px;
    padding-right: 40px;
    padding-left: 30px;
    padding-bottom: 34px;
}

.hero__content {
  position: relative;
  z-index: 2;
  grid-area: content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: center;
  width: min(100%, 620px);
  min-width: 0;
}

.hero__ribbon {
  position: absolute;
  top: 0;
  left: clamp(138px, 31%, 180px);
  z-index: 3;
  width: clamp(300px, 68%, 430px);
  margin: 0;
}

.hero__title {
  display: grid;
  grid-template-columns: clamp(160px, 31%, 190px) minmax(0, 1fr);
  align-items: end;
  width: 100%;
  max-width: 620px;
  margin: 16px 0 30px;
}

.hero__mark {
  width: clamp(160px, 100%, 190px);
  margin-right: -8px;
}

.hero__name {
  width: 100%;
  max-width: 425px;
  margin: 0 0 4px;
}

.hero__actions {
    position: relative;
    z-index: 2;
    grid-area: actions;
    display: grid;
    gap: 12px;
    width: 100%;
    max-width: 350px;
    margin-left: 45px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 62px;
    border-radius: 4px;
    font-size: 1.32rem;
    font-weight: 800;
    line-height: 1.2;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    margin-bottom: .1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.button:focus-visible {
  outline: 3px solid #111;
  outline-offset: 3px;
}

.button--primary {
  color: #fff;
  background: #009b43;
  box-shadow: 0 5px 0 #007a35;
}

.button--primary:hover {
  transform: translateY(2px);
  box-shadow: 0 3px 0 #007a35;
}

.button--secondary {
  min-height: 52px;
  color: #009b43;
  border: 2px solid #009b43;
  background: #fff;
  font-size: 1.05rem;
  font-weight: 700;
}

.button--secondary:hover {
  background: #effaf4;
}

.button__icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.button__arrow {
  width: 16px;
  height: 16px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.hero__visual {
    position: relative;
    z-index: 1;
    grid-area: visual;
    align-self: start;
    min-height: 445px;

}

.hero__shape {
  position: absolute;
  right: -18px;
  bottom: 0;
  width: min(126%, 1040px);
  height: 370px;
  background: url("../images/back.webp") right bottom / 134% auto no-repeat;
}

.hero__pc {
  position: absolute;
  right: -12px;
  top: 0;
  bottom: auto;
  z-index: 2;
  width: min(108%, 690px);
}

.hero__badge {
  position: absolute;
  right: 26px;
  top: 78px;
  z-index: 3;
  width: 128px;
}

@media (max-width: 1280px) {
  .hero__pc {
    top: auto;
    bottom: 0;
  }
}

@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: minmax(310px, 46%) minmax(0, 54%);
    min-height: 510px;
    padding: 44px 28px 32px;
  }

  .hero__title {
    grid-template-columns: 128px minmax(0, 1fr);
    margin: 14px 0 24px;
  }

  .hero__mark {
    width: 128px;
  }

  .hero__ribbon {
    top: 0;
    left: clamp(112px, 31%, 132px);
    width: min(72%, 320px);
  }

  .hero__pc {
    right: -14px;
    top: auto;
    bottom: 0;
    width: min(108%, 560px);
  }

  .hero__badge {
    top: 72px;
    width: 110px;
  }
}

@media (max-width: 768px) {
  body {
    background: #fff;
  }

  .hero {
    max-width: 768px;
  }

  .hero__inner {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 5rem 14px 20px;
    background: #e9f4ed;
  }

  .hero__content {
    order: 1;
    align-items: center;
    width: 100%;
  }

  .hero__ribbon {
    position: static;
    order: 1;
    width: min(100%, 470px);
    margin-bottom: 4px;
  }

  .hero__title {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: none;
    margin: 0 0 12px;
  }

  .hero__mark {
    width: min(34vw, 138px);
    margin: -4px 0 15px;
  }

  .hero__name {
    width: min(100%, 420px);
    max-width: none;
    margin: 0;
  }

  .hero__visual {
    order: 2;
    width: 100%;
    min-height: auto;
    margin-top: 2rem;
	      margin-bottom: 2rem;
  }

  .hero__shape {
    display: none;
  }

  .hero__pc {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: min(100%, 430px);
    margin: 0 auto;
  }

  .hero__badge {
    right: max(10px, calc(50% - 190px));
    top: 13%;
    width: min(27vw, 116px);
  }

  .hero__actions {
    order: 3;
    max-width: 436px;
    gap: 12px;
    margin-top: 14px;
    justify-self: center;
    margin-left: 0;
  }

  .button {
    min-height: 78px;
    gap: 18px;
    border-radius: 7px;
    font-size: clamp(1.45rem, 6.2vw, 2rem);
  }

  .button--secondary {
    min-height: 60px;
    font-size: clamp(1.1rem, 5vw, 1.55rem);
  }

  .button__icon {
    width: 40px;
    height: 40px;
  }
}

.free-section {
  width: min(100%, 1300px);
  margin: 0 auto;
  padding: 12px 24px 56px;
  background: #fff;
}

.free-section__inner {
  width: 100%;
  margin: 0 auto;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 20px;
  color: #111;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}

.section-heading::before,
.section-heading::after {
  width: 44px;
  height: 2px;
  background: #009844;
  content: "";
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.feature-card {
  min-width: 0;
  padding: 24px 14px 22px;
  border: 1px solid #cbdcf0;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 47, 92, 0.05);
}

.feature-card__icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.03rem;
  font-weight: 900;
  line-height: 1.35;
}

.feature-card p {
    margin: 0;
    font-size: 0.84rem;
    font-weight: normal;
    line-height: 1.5;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    text-align: left;
}

.recommend-box {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  align-items: center;
  min-height: 312px;
  margin-top: 22px;
  padding: 28px 42px 16px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 5%, rgba(255, 243, 206, 0.9) 0, rgba(255, 243, 206, 0.35) 33%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(100deg, #fffaf0 0%, #fff 48%, #fff7dc 100%);
}

.recommend-box__text {
  position: relative;
  z-index: 2;
}

.recommend-box h2 {
  margin: 0 0 16px;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}
#recommend-title{
    font-size: 1.5rem;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.recommend-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.recommend-list li {
    position: relative;
    padding-left: 28px;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.45;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.recommend-list li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #fff;
  background: #009844;
  font-size: 0.78rem;
  font-weight: 900;
  content: "✓";
}

.recommend-box__visual {
  position: relative;
  min-height: 260px;
}

.recommend-box__illust {
  position: absolute;
  right: 50%;
  bottom: -8px;
  width: min(65%, 380px);
  transform: translateX(50%);
}

.info-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  border: 1px solid #cbdcf0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.info-card {
  padding: 24px 30px 28px;
}

.info-card + .info-card {
  border-left: 1px solid #cbdcf0;
}

.info-card__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.info-card__icon {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: contain;
}

.info-card h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.35;
}

.info-card__body {
  width: 100%;
}

.info-card p {
  margin: 0 0 10px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.8;
}

.text-link,
.support-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  line-height: 1.4;
}

.text-link {
  margin: 3px 18px 0 0;
  color: #009844;
  font-size: 0.95rem;
}

.text-link::after,
.support-button::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.support-button {
  min-height: 42px;
  margin-top: 10px;
  padding: 0 18px;
  border-radius: 4px;
  color: #fff;
  background: #009844;
  font-size: 0.95rem;
  box-shadow: 0 4px 0 #007a35;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.support-button:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #007a35;
}

.support-button:focus-visible {
  outline: 3px solid #111;
  outline-offset: 3px;
}

.faq-section {
  width: min(100%, 1300px);
  margin: 0 auto;
  padding: 0 24px 64px;
  background: #fff;
}

.faq-section__inner {
  width: 100%;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid #cbdcf0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 47, 92, 0.04);
}

.faq-item[open] {
  border-color: rgba(0, 152, 68, 0.42);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 17px 64px 17px 24px;
  color: #111;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.5;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  margin-right: 14px;
  border-radius: 50%;
  color: #fff;
  background: #009844;
  font-size: 1rem;
  font-weight: 900;
  content: "Q";
}

.faq-item summary::after {
  position: absolute;
  right: 24px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-right: 3px solid #009844;
  border-bottom: 3px solid #009844;
  content: "";
  transform: translateY(-62%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-item__content {
  padding: 0 72px 22px 68px;
}

.faq-item__content p {
  margin: 0 0 12px;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.9;
}

.faq-item__content p:last-child {
  margin-bottom: 0;
}

.faq-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 3px 24px 0 0;
  color: #009844;
  font-weight: 900;
  line-height: 1.5;
}

.faq-link::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

@media (max-width: 1100px) {
  .feature-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .recommend-box {
    grid-template-columns: minmax(0, 56%) minmax(0, 44%);
    padding: 28px 30px 16px;
  }

  .recommend-box__illust {
    right: 50%;
    width: min(88%, 340px);
    transform: translateX(50%);
  }

  .info-card {
    padding: 24px 22px 26px;
  }
}

@media (max-width: 768px) {
  .free-section {
    padding: 32px 14px 42px;
  }

  .faq-section {
    padding: 0 14px 48px;
  }

  .section-heading {
    gap: 12px;
    font-size: 1.32rem;
  }

  .section-heading::before,
  .section-heading::after {
    width: 28px;
  }

  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .feature-card {
    padding: 20px 10px 18px;
  }

  .feature-card__icon {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }

  .feature-card h3 {
    font-size: 0.95rem;
  }

  .feature-card p {
    font-size: 0.8rem;
  }

  .recommend-box {
    display: flex;
    flex-direction: column;
    padding: 24px 18px 0;
  }

  .recommend-box h2 {
    font-size: 1.32rem;
  }

  .recommend-list li {
    font-size: 0.94rem;
  }

  .recommend-box__visual {
    width: 100%;
    min-height: 240px;
    margin-top: 12px;
  }

  .recommend-box__illust {
    right: 50%;
    bottom: -12px;
    width: min(100%, 330px);
    transform: translateX(50%);
  }

  .info-list {
    grid-template-columns: 1fr;
  }

  .info-card {
    padding: 22px 18px 24px;
  }

  .info-card + .info-card {
    border-top: 1px solid #cbdcf0;
    border-left: 0;
  }

  .faq-item summary {
    min-height: 58px;
    padding: 15px 50px 15px 16px;
    font-size: 0.98rem;
  }

  .faq-item summary::before {
    width: 26px;
    height: 26px;
    margin-right: 10px;
    font-size: 0.9rem;
  }

  .faq-item summary::after {
    right: 18px;
    width: 15px;
    height: 15px;
  }

  .faq-item__content {
    padding: 0 18px 20px 52px;
  }

  .faq-item__content p {
    font-size: 0.92rem;
    line-height: 1.85;
  }
}

@media (max-width: 430px) {
  .feature-list {
    grid-template-columns: 1fr;
  }

  .feature-card {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    column-gap: 14px;
    align-items: center;
    text-align: left;
  }

  .feature-card__icon {
    grid-row: span 2;
    width: 64px;
    height: 64px;
    margin: 0;
  }

  .feature-card h3 {
    margin-bottom: 4px;
  }

  .info-card {
    text-align: center;
  }

  .info-card__head {
    justify-content: center;
  }

  .info-card__body {
    text-align: left;
  }

  .info-card__icon {
    margin: 0;
  }

  .text-link,
  .support-button {
    justify-content: center;
  }

  .faq-item__content {
    padding-left: 18px;
  }

  .faq-link {
    display: flex;
    margin-right: 0;
  }
}

.closing-cta {
  width: min(100%, 1300px);
  margin: 0 auto;
  padding: 4px 24px 58px;
}

.closing-cta__inner {
  display: grid;
  gap: 28px;
  padding: 38px 44px 42px;
  border: 1px solid #cfe9d9;
  border-radius: 8px;
  background: linear-gradient(90deg, #eef9f3 0%, #fff 100%);
}

.closing-cta__text {
  min-width: 0;
}

.closing-cta__label {
  margin: 0 0 6px;
  color: #009844;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.5;
}

.closing-cta h2 {
  margin: 0 0 8px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.35;
}

.closing-cta p {
  margin: 0;
}

.closing-cta__text > p:last-child {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.8;
}

.application-form__head {
  text-align: center;
}

.application-form__form {
  width: 100%;
}

.application-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.form-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.4;
}

.form-required {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  color: #fff;
  background: #009844;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #bfd8cb;
  border-radius: 6px;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 96px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #009844;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(0, 152, 68, 0.16);
}

.postal-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.postal-field__button {
  min-height: 50px;
  padding: 0 18px;
  border: 2px solid #009844;
  border-radius: 6px;
  color: #009844;
  background: #fff;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 900;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.postal-field__button:hover,
.postal-field__button:focus-visible {
  color: #fff;
  background: #009844;
}

.postal-field__button:disabled {
  opacity: 0.65;
  cursor: progress;
}

.form-help {
  min-height: 1.5em;
  color: #54645a;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.5;
}

.form-help:empty {
  display: none;
}

.form-help.is-error {
  color: #c62828;
}

.application-form__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.application-form__submit,
.application-form__back {
  min-width: 240px;
  border: 0;
  cursor: pointer;
}

.application-form__back {
  border: 2px solid #009b43;
}

.application-confirm {
  padding: 28px;
  border: 1px solid #cfe9d9;
  border-radius: 8px;
  background: #fff;
}

.application-confirm__head {
  margin-bottom: 20px;
  text-align: center;
}

.application-confirm__head h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.4;
}

.application-confirm__head p {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.7;
}

.application-confirm__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  margin: 0;
  border: 1px solid #d7eadf;
  border-radius: 8px;
  background: #fff;
}

.application-confirm__list div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-width: 0;
  border-bottom: 1px solid #d7eadf;
}

.application-confirm__list div:nth-child(odd) {
  border-right: 1px solid #d7eadf;
}

.application-confirm__list div:last-child,
.application-confirm__list div:nth-last-child(2):nth-child(odd) {
  border-bottom: 0;
}

.application-confirm__list dt,
.application-confirm__list dd {
  margin: 0;
  padding: 14px 16px;
  font-size: 0.94rem;
  line-height: 1.6;
}

.application-confirm__list dt {
  color: #009844;
  background: #f3fbf6;
  font-weight: 900;
}

.application-confirm__list dd {
  overflow-wrap: anywhere;
  font-weight: 700;
}

.application-confirm__list div:last-child {
  grid-column: 1 / -1;
  grid-template-columns: 150px minmax(0, 1fr);
  border-right: 0;
}

.site-footer {
  color: #111;
  border-top: 1px solid #d7eadf;
  background: #f6faf8;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.4fr);
  gap: 24px 40px;
  width: min(100%, 1300px);
  margin: 0 auto;
  padding: 34px 40px 20px;
}

.site-footer__name {
  margin: 0 0 8px;
  color: #009844;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.3;
}

.site-footer__text {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.7;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
  align-content: flex-start;
}

.site-footer__nav a {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.site-footer__nav a:hover {
  color: #009844;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer__copy {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding-top: 18px;
  color: #54645a;
  border-top: 1px solid #d7eadf;
  font-size: 0.86rem;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 768px) {
  .closing-cta {
    padding: 0 14px 42px;
  }

  .closing-cta__inner {
    display: grid;
    gap: 22px;
    padding: 28px 20px;
    text-align: center;
  }

  .application-form__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
  }

  .form-field--full {
    grid-column: auto;
  }

  .application-form__actions {
    display: grid;
    margin-top: 24px;
  }

  .application-form__submit,
  .application-form__back {
    width: 100%;
    min-width: 0;
    max-width: 430px;
    justify-self: center;
  }

  .application-confirm {
    padding: 20px;
  }

  .application-confirm__list {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .application-confirm__list div,
  .application-confirm__list div:last-child {
    grid-column: auto;
    grid-template-columns: 128px minmax(0, 1fr);
    border-right: 0;
    border-bottom: 1px solid #d7eadf;
  }

  .application-confirm__list div:last-child {
    border-bottom: 0;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 18px 18px;
    text-align: center;
  }

  .site-footer__nav {
    justify-content: center;
    gap: 8px 18px;
  }

  .site-footer__copy {
    margin-top: 4px;
  }
}

@media (max-width: 430px) {
  .closing-cta h2 {
    font-size: 1.45rem;
  }

  .closing-cta__inner {
    padding: 24px 16px;
  }

  .postal-field {
    grid-template-columns: 1fr;
  }

  .application-confirm {
    padding: 16px;
  }

  .application-confirm__list div,
  .application-confirm__list div:last-child {
    grid-template-columns: 1fr;
  }

  .application-confirm__list dt {
    padding-bottom: 4px;
  }

  .application-confirm__list dd {
    padding-top: 4px;
  }

  .site-footer__nav {
    display: grid;
    gap: 8px;
  }
}
