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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: #222;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.65;
  overflow-x: hidden;
}

body,
h1,
h2,
h3,
p,
ul,
li,
figure,
dl,
dd {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
a:hover {
  opacity: 0.78;
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.section {
  padding: 140px 0 100px;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 70px 0 56px;
  }
}

.section__inner {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
}
.section__inner--narrow {
  width: min(100% - 40px, 760px);
}

.section-heading {
  position: relative;
  text-align: center;
}

.section-heading__bg {
  position: absolute;
  top: -68px;
  left: 50%;
  z-index: 0;
  color: rgba(0, 103, 184, 0.06);
  font-size: 13.8rem;
  font-weight: 700;
  line-height: 1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .section-heading__bg {
    top: -42px;
    max-width: calc(100vw - 32px);
    font-size: clamp(5.8rem, 17vw, 7.2rem);
    overflow: hidden;
  }
}

.section-heading__title {
  position: relative;
  z-index: 1;
  color: #00478f;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.45;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .section-heading__title {
    font-size: 2.6rem;
  }
}

.section-heading__text {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .section-heading__text {
    font-size: 1.5rem;
  }
}

.button {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 90px;
  max-width: 48rem;
  width: 100%;
  padding: 0 74px 0 50px;
  border-radius: 999px;
  background-image: -webkit-gradient(linear, left top, right top, from(#f98122), to(#e94e08));
  background-image: linear-gradient(90deg, #f98122, #e94e08);
  border: 2px solid #fff;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.button::after {
  position: absolute;
  top: 50%;
  right: 34px;
  width: 21px;
  height: 42px;
  background: url("../images/button-arrow.svg") center/contain no-repeat;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.button:hover {
  opacity: 1;
  background: #fff;
  color: #e94e08;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.button:hover::after {
  background-image: url("../images/button-arrow-orange.svg");
}
@media screen and (max-width: 767px) {
  .button {
    min-height: 58px;
    max-width: 32rem;
    padding: 0 48px 0 28px;
    font-size: 1.7rem;
  }
  .button::after {
    right: 24px;
    width: 12px;
    height: 24px;
  }
}

@media screen and (max-width: 767px) {
  .hero .button--large {
    position: absolute;
    bottom: 50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
  padding: 24px 0;
  gap: 34px;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 18px;
    padding: 16px 20px;
    position: fixed;
    width: 100%;
  }
}

.header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 133px;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 80px;
  }
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  gap: 26px;
  color: #182b3d;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}

.header__button {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 56px;
  padding: 12px 40px;
  border-radius: 999px;
  background-image: -webkit-gradient(linear, left top, right top, from(#f98122), to(#e94e08));
  background-image: linear-gradient(90deg, #f98122, #e94e08);
  color: #fff;
  border: 2px solid #fff;
  font-size: 1.6rem;
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__button::after {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 10px;
  height: 20px;
  background: url("../images/button-arrow.svg") center/contain no-repeat;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header__button:hover {
  opacity: 1;
  background: #fff;
  color: #e94e08;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__button:hover::after {
  background-image: url("../images/button-arrow-orange.svg");
}
@media screen and (max-width: 767px) {
  .header__button {
    min-height: 40px;
    padding: 0 30px 0 14px;
    font-size: 1.4rem;
    border: 1px solid #fff;
  }
  .header__button::after {
    right: 12px;
    width: 7px;
    height: 14px;
  }
}

.hero {
  display: grid;
  min-height: 900px;
  padding-top: 102px;
  background-image: url("../images/fv.jpg");
  background-position: center top;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .hero {
    min-height: 700px;
    background-position: 58% top;
  }
}
@media screen and (max-width: 767px) {
  .hero {
    min-height: 800px;
    padding-top: 74px;
    background-position: 58% top;
    background-image: url("../images/fv-sp.jpg");
  }
}

.hero__inner {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
  padding-top: 42px;
}
@media screen and (max-width: 767px) {
  .hero__inner {
    padding-top: 0;
  }
}

.hero__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 66px;
  padding: 0 36px;
  background: -webkit-gradient(linear, left top, right top, from(#0062b5), to(#00286f));
  background: linear-gradient(90deg, #0062b5 0%, #00286f 100%);
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
  color: #fff;
  font-size: 3.2rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .hero__label {
    height: 44px;
    padding: 0 24px;
    font-size: 2rem;
  }
}

.hero__title {
  color: #222;
  font-weight: 700;
  font-size: clamp(4.2rem, 6vw, 7.2rem);
  font-size: 10rem;
  line-height: 1.16;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .hero__title {
    margin-top: 0;
    font-size: clamp(4.6rem, 14vw, 6.4rem);
    line-height: 1.18;
    color: #fff;
  }
}

.hero__title__s {
  font-size: 7.2rem;
}
@media screen and (max-width: 767px) {
  .hero__title__s {
    font-size: clamp(3.4rem, 10.8vw, 5.2rem);
  }
}

.hero__title__blue {
  display: inline-block;
  margin-right: -0.18em;
  margin-left: -0.08em;
  padding-right: 0.18em;
  padding-left: 0.08em;
  background: -webkit-gradient(linear, left top, right top, from(#0062b5), to(#00286f));
  background: linear-gradient(90deg, #0062b5 0%, #00286f 100%);
  background-clip: text;
  color: #0062b5;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .hero__title__blue {
    background: -webkit-gradient(linear, left top, right top, from(#fff6b4), to(#ffe94e));
    background: linear-gradient(90deg, #fff6b4 0%, #ffe94e 100%);
    -webkit-background-clip: text;
            background-clip: text;
  }
}

.hero__lead {
  margin-top: 24px;
  color: #222;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.7;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .hero__lead {
    margin-top: 14px;
    font-size: 1.8rem;
    line-height: 1.5;
    color: #fff;
  }
}

.hero .button {
  margin-top: 32px;
}

.problem__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 46px;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .problem__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.problem-card {
  display: grid;
  -ms-flex-line-pack: start;
      align-content: start;
  justify-items: center;
  min-height: 316px;
  padding: 48px 14px 24px;
  border-radius: 10px;
  background: #f0f0f0;
  row-gap: 24px;
  text-align: center;
}
.problem-card .card-icon {
  display: grid;
  width: 170px;
  height: 170px;
  padding: 42px;
  border-radius: 50%;
  background: #fff;
  place-items: center;
}
.problem-card img {
  width: 100px;
  max-height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
.problem-card p {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.55;
}
@media screen and (max-width: 767px) {
  .problem-card {
    min-height: 216px;
    padding: 22px 8px 18px;
    row-gap: 14px;
  }
  .problem-card .card-icon {
    width: min(34vw, 126px);
    height: min(34vw, 126px);
    padding: 0;
  }
  .problem-card img {
    width: min(21vw, 78px);
    max-height: min(21vw, 78px);
    padding: 0;
  }
  .problem-card p {
    font-size: 1.4rem;
    line-height: 1.45;
  }
}

.method {
  position: relative;
  padding: 92px 0 86px;
  background: linear-gradient(120deg, #0b91ce 0%, #002f7f 100%);
  color: #fff;
}
.method::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 28px solid #fff;
  border-right: 22px solid transparent;
  border-left: 22px solid transparent;
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .method {
    padding: 52px 0 46px;
  }
}

.method__title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.55;
  text-align: center;
}
.method__title::before, .method__title::after {
  position: absolute;
  top: 50%;
  width: 140px;
  height: 2px;
  background: rgba(255, 255, 255, 0.82);
  content: "";
}
.method__title::before {
  left: -130px;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}
.method__title::after {
  right: -130px;
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
}
@media screen and (max-width: 767px) {
  .method__title {
    font-size: 2.4rem;
    line-height: 1.5;
    text-align: left;
  }
  .method__title::before, .method__title::after {
    display: none;
  }
}

.method__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .method__list {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
}

.method-card {
  display: grid;
  -ms-flex-line-pack: start;
      align-content: start;
  justify-items: center;
  min-height: 290px;
  padding: 42px 20px 30px;
  border-radius: 4px;
  background: #fff;
  row-gap: 26px;
  text-align: center;
}
.method-card .card-icon {
  display: grid;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #f0f0f0;
  place-items: center;
}
.method-card img {
  width: 100px;
  max-height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
.method-card p {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
}
.method-card span {
  color: #e60012;
}
@media screen and (max-width: 767px) {
  .method-card {
    min-height: 240px;
    padding: 30px 18px 24px;
    row-gap: 18px;
  }
  .method-card .card-icon {
    width: 132px;
    height: 132px;
  }
  .method-card img {
    width: 84px;
    max-height: 84px;
  }
  .method-card p {
    font-size: 1.6rem;
  }
}

.coach-profile {
  display: grid;
  grid-template-columns: 330px 1fr;
  margin-top: 46px;
  padding: 30px;
  border-radius: 4px;
  background: #f0f0f0;
  gap: 34px;
}
@media screen and (max-width: 767px) {
  .coach-profile {
    grid-template-columns: 1fr;
    padding: 18px;
  }
}

.coach-profile__image img {
  width: 100%;
  border-radius: 4px;
}

.coach-profile__name {
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .coach-profile__name {
    font-size: 2.4rem;
  }
}

.coach-profile__role {
  margin-top: 4px;
  color: #6d7883;
  color: #969696;
}

.coach-profile__text {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .coach-profile__text {
    font-size: 1.5rem;
  }
}

.coach-profile__history {
  display: grid;
  margin-top: 22px;
  gap: 10px;
}
.coach-profile__history li {
  padding: 13px 18px;
  border-radius: 2px;
  background: #fff;
  font-weight: 700;
  border-left: 6px solid #0067b8;
}
@media screen and (max-width: 767px) {
  .coach-profile__history li {
    font-size: 1.5rem;
  }
}

.cta {
  padding: 74px 0 70px;
  background-image: url("../images/cta-bg.jpg");
  background-position: center;
  background-size: cover;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cta {
    padding: 40px 0;
  }
}

.cta--bottom {
  margin-top: 0;
}

.cta__inner {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
}

.cta__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 276px;
  min-height: 48px;
  margin-bottom: 22px;
  background: #fff;
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);
  color: #00478f;
  font-size: 2.2rem;
  font-weight: 700;
  gap: 4px;
}
.cta__label strong {
  font-size: 3.4rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .cta__label {
    min-width: 220px;
    min-height: 42px;
    font-size: 1.8rem;
  }
  .cta__label strong {
    font-size: 2.8rem;
  }
}

.cta__title {
  color: #fff;
  font-size: clamp(2.4rem, 3.4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .cta__title {
    font-size: 2.4rem;
  }
}

.cta__text {
  margin: 20px auto 0;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .cta__text {
    font-size: 1.5rem;
    text-align: left;
  }
}

.cta__points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 26px;
  gap: 18px 28px;
}
@media screen and (max-width: 767px) {
  .cta__points {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
.cta__points li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .cta__points li {
    font-size: 1.5rem;
  }
}
.cta__points li::before {
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  background: url("../images/check-icon.svg") center/contain no-repeat;
  content: "";
}

.cta .button {
  margin-top: 50px;
}

.price__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 64px;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .price__cards {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 30px;
  }
}

.price-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 190px;
  padding: 42px 24px 34px;
  border-radius: 8px;
  background: #f0f0f0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.price-card--featured {
  border: 4px solid #00478f;
  background: #fff;
}
.price-card h3 {
  margin-top: 18px;
  color: #222;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .price-card h3 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .price-card {
    min-height: 168px;
    padding: 34px 18px 28px;
  }
}

.price-card__recommend {
  position: absolute;
  top: -22px;
  left: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 130px;
  height: 36px;
  padding: 0 18px;
  background: #00478f;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .price-card__recommend {
    min-width: 112px;
    height: 32px;
    font-size: 1.6rem;
  }
}

.price-card__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 136px;
  min-height: 32px;
  padding: 0 16px;
  border: 2px solid #00478f;
  background: #fff;
  color: #00478f;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .price-card__badge {
    min-height: 28px;
    font-size: 1.5rem;
  }
}

.price-card__amount {
  margin-top: 14px;
  color: #e60012;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
.price-card__amount span {
  font-size: 5.2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .price-card__amount {
    font-size: 2rem;
  }
  .price-card__amount span {
    font-size: 4.2rem;
  }
}

.price__note {
  margin-top: 22px;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .price__note {
    font-size: 1.5rem;
  }
}

.overview {
  background: #f2f2f2;
}

.overview__panel {
  margin-top: 44px;
  padding: 22px 26px;
  border-radius: 10px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .overview__panel {
    padding: 22px 16px;
  }
}

.overview__title {
  color: #00478f;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .overview__title {
    font-size: 1.8rem;
  }
}

.overview__panel-title {
  margin-bottom: 22px;
}

.overview-table {
  width: 100%;
  border-collapse: collapse;
}
.overview-table th,
.overview-table td {
  padding: 22px 26px;
  border-bottom: 1px solid #dbe4ee;
  vertical-align: middle;
}
.overview-table th {
  width: 184px;
  background: #eaf5ff;
  color: #00478f;
  font-weight: 700;
  text-align: center;
}
.overview-table td {
  font-size: 1.6rem;
  font-weight: 700;
}
.overview-table tr:last-child th,
.overview-table tr:last-child td {
  border-bottom: 0;
}
.overview-table dl {
  display: grid;
  gap: 8px;
}
.overview-table dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
}
.overview-table dt {
  color: #00478f;
  font-weight: 700;
}
.overview-table dd {
  font-weight: 700;
  font-size: 1.6rem;
}
.overview-table .overview-table__link {
  display: inline-block;
  margin-left: 10px;
  color: inherit;
  text-decoration: underline;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .overview-table .overview-table__link {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .overview-table th,
  .overview-table td {
    display: block;
    width: 100%;
    padding: 8px 12px;
    font-size: 1.4rem;
    text-align: left;
  }
  .overview-table tr:last-child th {
    border-bottom: 1px solid #dbe4ee;
  }
  .overview-table dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

.overview__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 18px;
  gap: 18px;
}
.overview__cards article {
  min-height: 128px;
  padding: 22px 26px;
  border-radius: 10px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .overview__cards article {
    padding: 22px 16px;
  }
}
.overview__cards p {
  margin-top: 10px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .overview__cards {
    grid-template-columns: 1fr;
  }
  .overview__cards p {
    font-size: 1.5rem;
  }
}

.faq__list {
  display: grid;
  margin-top: 42px;
  gap: 12px;
}

.faq-item {
  border: 1px solid #0b67af;
  background: #fff;
}
.faq-item summary {
  display: block;
  padding: 16px 22px 6px;
  color: #00478f;
  font-weight: 700;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .faq-item summary {
    font-size: 1.5rem;
  }
}
.faq-item p {
  padding: 0 22px 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .faq-item p {
    font-size: 1.5rem;
  }
}

.footer {
  display: grid;
  min-height: 70px;
  background: #003f84;
  color: #fff;
  place-items: center;
}
.footer small {
  font-size: 1.1rem;
  font-weight: 500;
}