@import url("https://cdn.jsdelivr.net/npm/destyle.css@4.0.0/destyle.min.css");
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 52px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
}

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

.ssp {
  display: none;
}
@media screen and (max-width: 500px) {
  .ssp {
    display: block;
  }
}

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

.header {
  position: sticky;
  top: 0;
  height: 80px;
  background-color: #fff;
  z-index: 200;
}
@media screen and (max-width: 768px) {
  .header {
    height: 52px;
  }
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1140px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 10px 20px;
  }
}
.header__logo a {
  display: block;
  line-height: 0;
}
.header__logo img {
  width: 161px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .header__logo img {
    width: 105px;
    height: 32.6px;
  }
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav-text {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  white-space: nowrap;
}
.header__nav-text a {
  color: #333;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header__nav-text a:hover {
  color: #0036a4;
}
.header__menu-btn {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .header__menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #003d7c;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__menu-btn span:not(:last-child) {
  margin-bottom: 6px;
}
.header__menu-btn.is-active span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}
.header__menu-btn.is-active span:nth-child(2) {
  opacity: 0;
}
.header__menu-btn.is-active span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}
.header__mobile-menu {
  position: fixed;
  top: 52px;
  left: 0;
  width: 100%;
  height: calc(100vh - 52px);
  background-color: #fff;
  overflow-y: auto;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .header__mobile-menu.is-active {
    opacity: 1;
    visibility: visible;
  }
}
.header__mobile-nav {
  padding: 0 20px 20px;
  border-top: 1px solid #e0e0e0;
}
.header__mobile-nav-list li {
  border-bottom: 1px solid #e0e0e0;
}
.header__mobile-nav-list li a {
  display: block;
  padding: 15px 0;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header__mobile-nav-list li a:hover {
  opacity: 0.7;
}

.hero {
  background-image: url(../images/kv-bg.png);
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.hero__inner {
  padding: 47px 20px;
}
@media (max-width: 500px) {
  .hero__inner {
    padding: 27px 20px;
  }
}
.hero__inner img {
  width: 100%;
  max-width: 810px;
  height: auto;
}
.hero__more {
  height: 90px;
  width: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #0036a4;
  position: absolute;
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  border-radius: 9999px;
  bottom: -45px;
}
@media (max-width: 500px) {
  .hero__more {
    height: 84px;
    width: 84px;
    font-size: 20px;
    bottom: -62px;
  }
}

.intro__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 20px 70px;
}
@media (max-width: 500px) {
  .intro__inner {
    padding: 30px 20px 30px;
  }
}
.intro__title {
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 500px) {
  .intro__title {
    margin-bottom: 18px;
  }
}
.intro__title-main {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 3px;
  color: #0036a4;
}
@media (max-width: 500px) {
  .intro__title-main {
    font-size: 26px;
    letter-spacing: 2px;
  }
}
.intro__title-year {
  color: #df0000;
  font-size: 30px;
}
@media (max-width: 500px) {
  .intro__title-year {
    font-size: 26px;
    letter-spacing: 2.6px;
  }
}
.intro__title-rate {
  color: #df0000;
  font-size: 42px;
  letter-spacing: 4.2px;
  line-height: 1.3;
}
@media (max-width: 500px) {
  .intro__title-rate {
    font-size: 32px;
    letter-spacing: 3.2px;
  }
}
.intro__title-percent {
  color: #df0000;
  font-size: 30px;
}
@media (max-width: 500px) {
  .intro__title-percent {
    font-size: 26px;
    letter-spacing: 2.6px;
  }
}
.intro__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1.6px;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 500px) {
  .intro__description {
    font-size: 15px;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
  }
}
.intro__table table {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  border-collapse: collapse;
}
.intro__table thead tr th:first-child {
  width: 720px;
}
@media (max-width: 500px) {
  .intro__table thead tr th:first-child {
    width: 230px;
  }
}
.intro__table thead tr th:last-child {
  width: 381px;
}
@media (max-width: 500px) {
  .intro__table thead tr th:last-child {
    width: 122px;
  }
}
.intro__table-header {
  background-color: #3768ce;
  border: 1px solid #0036a4;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.8px;
  text-align: center;
  padding: 15px 10px;
  height: 55px;
}
@media (max-width: 500px) {
  .intro__table-header {
    font-size: 15px;
    letter-spacing: 1.5px;
    height: 40px;
    padding: 10px 5px;
  }
}
.intro__table-cell {
  background-color: #fff;
  border: 1px solid #0036a4;
  color: #333;
  font-size: 15.9px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
  padding: 15px 20px;
  height: 55px;
  vertical-align: middle;
}
@media (max-width: 500px) {
  .intro__table-cell {
    font-size: 15px;
    letter-spacing: 1.5px;
    padding: 10px 13px;
    height: 74px;
  }
}
.intro__table-cell--rate {
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 500px) {
  .intro__table-cell--rate {
    height: 317px;
    padding: 9px;
  }
}
.intro__table-cell--large {
  height: 177px;
  padding: 20px;
}
.intro__table-cell--wrap {
  height: 78px;
}
.intro__table-note {
  font-size: 14px;
  letter-spacing: 1.4px;
}
@media (max-width: 500px) {
  .intro__table-row--sp-hidden {
    display: none;
  }
}
@media (max-width: 500px) {
  .intro tbody tr:first-child .intro__table-cell:first-child {
    height: 98px;
  }
}
.intro__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 940px) {
  .intro__cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 500px) {
  .intro__cta {
    margin-top: 30px;
    gap: 10px;
  }
}
.intro__cta-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  max-width: 440px;
  width: 100%;
  padding: 15px 20px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (max-width: 940px) {
  .intro__cta-button {
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 500px) {
  .intro__cta-button {
    height: 62px;
  }
}
.intro__cta-button:hover {
  opacity: 0.8;
}
.intro__cta-button--orange {
  background-color: #f06b00;
}
.intro__cta-button--blue {
  background-color: #0036a4;
}
.intro__cta-button-sub {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1.4px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 500px) {
  .intro__cta-button-sub {
    font-size: 12px;
    letter-spacing: 0;
  }
}
.intro__cta-button-main {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 2.6px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 500px) {
  .intro__cta-button-main {
    font-size: 16px;
    letter-spacing: 0;
  }
}

.merit {
  background-color: #dcf3ff;
  padding: 70px 0 70px;
}
@media (max-width: 500px) {
  .merit {
    padding: 40px 0 50px;
  }
}
.merit__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.merit__illustration {
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 500px) {
  .merit__illustration {
    margin-bottom: 20px;
  }
}
.merit__illustration img {
  max-width: 316px;
  height: auto;
}
@media (max-width: 500px) {
  .merit__illustration img {
    max-width: 270px;
  }
}
.merit__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 3px;
  color: #0036a4;
  text-align: center;
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 20px;
}
@media (max-width: 500px) {
  .merit__title {
    font-size: 27px;
    letter-spacing: 2.6px;
    padding-bottom: 16px;
  }
}
.merit__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50px;
  height: 5px;
  background-color: #f06b00;
}
.merit__cards {
  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;
  gap: 50px 40px;
  margin-top: 45px;
}
@media (max-width: 500px) {
  .merit__cards {
    gap: 20px;
    margin-top: 30px;
  }
}
.merit__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  width: calc((100% - 40px) / 3);
  max-width: 340px;
}
@media (max-width: 940px) {
  .merit__card {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 500px) {
  .merit__card {
    width: 100%;
    max-width: 350px;
  }
}
.merit__card-image {
  width: 100%;
  max-width: 340px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 500px) {
  .merit__card-image {
    max-width: 350px;
  }
}
.merit__card-image img {
  width: 100%;
  height: auto;
  display: block;
}
.merit__card-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1.6px;
  color: #333;
  max-width: 340px;
  width: 100%;
}
@media (max-width: 500px) {
  .merit__card-text {
    font-size: 15px;
    letter-spacing: 1.5px;
    max-width: 350px;
  }
}
@media (max-width: 500px) {
  .merit__card-text:last-of-type {
    font-size: 14px;
    letter-spacing: 1.4px;
  }
}

.outline {
  background-color: #dcf3ff;
  padding-bottom: 70px;
}
@media (max-width: 500px) {
  .outline {
    padding: 0px 0 60px;
  }
}
.outline__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 500px) {
  .outline__inner {
    padding: 0 20px;
  }
}
.outline__title {
  background-color: #0036a4;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 3px;
  text-align: center;
  padding: 26px 20px;
  border-radius: 10px 10px 0 0;
}
@media (max-width: 500px) {
  .outline__title {
    font-size: 26px;
    letter-spacing: 2.6px;
    padding: 16px 20px;
  }
}
.outline__content {
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}
.outline__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  min-height: 56px;
  gap: 20px;
  padding: 15px 0;
}
@media (max-width: 500px) {
  .outline__row {
    min-height: auto;
    gap: 10px;
    padding: 13px 0;
  }
}
.outline__row--gray {
  background-color: #f3f3f3;
}
.outline__row:last-child {
  border-radius: 0 0 10px 10px;
}
.outline__label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.6px;
  color: #333;
  width: 187px;
  padding-left: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: center;
      align-self: center;
}
@media (max-width: 500px) {
  .outline__label {
    font-size: 15px;
    letter-spacing: 1.5px;
    width: 120px;
    padding-left: 10px;
  }
}
.outline__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1.6px;
  color: #333;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 20px;
}
@media (max-width: 500px) {
  .outline__text {
    font-size: 15px;
    letter-spacing: 1.5px;
    padding-right: 10px;
  }
}
.outline__text ol {
  list-style: decimal;
  padding-left: 24px;
}
@media (max-width: 500px) {
  .outline__text ol {
    padding-left: 22.5px;
  }
}
.outline__text ol li {
  margin-bottom: 0;
}
.outline__text ol li:not(:last-child) {
  margin-bottom: 0;
}
.outline__text ul {
  list-style: disc;
  padding-left: 24px;
}
@media (max-width: 500px) {
  .outline__text ul {
    padding-left: 22.5px;
  }
}
.outline__text ul li {
  margin-bottom: 0;
}
.outline__text ul li:not(:last-child) {
  margin-bottom: 0;
}
.outline__text p {
  margin: 0;
}
.outline__text p:not(:last-child) {
  margin-bottom: 16px;
}
@media (max-width: 500px) {
  .outline__text p:not(:last-child) {
    margin-bottom: 12px;
  }
}
.outline__note {
  font-size: 14px;
  letter-spacing: 1.4px;
  margin-top: 16px;
}
@media (max-width: 500px) {
  .outline__note {
    margin-top: 12px;
  }
}
.outline__date {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1.4px;
  color: #333;
  text-align: right;
  margin-top: 17px;
}
@media (max-width: 500px) {
  .outline__date {
    margin-top: 12px;
  }
}

.sectionToggle {
  margin-inline: auto;
  margin-top: -10px;
  display: block;
}

.apply {
  background-color: #fff;
  padding: 30px 0 40px;
}
@media (max-width: 500px) {
  .apply {
    padding: 50px 0 50px;
  }
}
.apply__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.apply__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 3px;
  color: #0036a4;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}
@media (max-width: 500px) {
  .apply__title {
    font-size: 26px;
    letter-spacing: 2.6px;
    padding-bottom: 16px;
  }
}
.apply__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50px;
  height: 5px;
  background-color: #f06b00;
}
.apply__content {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 35px;
}
@media (max-width: 500px) {
  .apply__content {
    padding-top: 30px;
  }
}
.apply__subtitle {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 2.6px;
  color: #0036a4;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 500px) {
  .apply__subtitle {
    font-size: 22px;
    letter-spacing: 2.2px;
    margin-bottom: 25px;
  }
}
.apply__conditions {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1.6px;
  color: #333;
  list-style: decimal;
  padding-left: 24px;
  margin-bottom: 30px;
}
@media (max-width: 500px) {
  .apply__conditions {
    font-size: 15px;
    letter-spacing: 1.5px;
    padding-left: 32.5px;
    margin-bottom: 36px;
  }
}
.apply__conditions li {
  margin-bottom: 0;
}
.apply__notice {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 2.2px;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 500px) {
  .apply__notice {
    font-size: 18px;
    letter-spacing: 1.8px;
    margin-bottom: 30px;
  }
}
.apply__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media (max-width: 940px) {
  .apply__cards {
    -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;
    gap: 30px;
  }
}
@media (max-width: 500px) {
  .apply__cards {
    gap: 30px;
  }
}
.apply__card {
  width: 380px;
  max-width: 100%;
}
@media (max-width: 500px) {
  .apply__card {
    width: 350px;
  }
}
.apply__card-icon {
  width: 100%;
  height: 170px;
  background-color: #fff;
  border: 2px solid #0079bf;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}
.apply__card-icon img {
  -o-object-fit: contain;
     object-fit: contain;
}
.apply__card-content {
  text-align: center;
}
@media (max-width: 500px) {
  .apply__card-content {
    text-align: center;
  }
}
.apply__card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.8px;
  color: #333;
  margin-bottom: 10px;
}
@media (max-width: 500px) {
  .apply__card-title {
    font-size: 16px;
    letter-spacing: 1.6px;
  }
}
.apply__card-subtitle {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.6px;
}
@media (max-width: 500px) {
  .apply__card-subtitle {
    font-size: 15px;
    letter-spacing: 1.5px;
  }
}
.apply__card-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1.6px;
  color: #333;
  text-align: left;
}
@media (max-width: 500px) {
  .apply__card-text {
    font-size: 16px;
    letter-spacing: 1.6px;
  }
}
.apply__card-list {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1.6px;
  color: #333;
  list-style: decimal;
  padding-left: 24px;
  text-align: left;
}
@media (max-width: 500px) {
  .apply__card-list {
    font-size: 15px;
    letter-spacing: 1.5px;
    padding-left: 22.5px;
  }
}
.apply__card-list li {
  margin-bottom: 0;
}

.flow {
  background-color: #fff;
  padding: 0px 0px 70px;
}
@media (max-width: 500px) {
  .flow {
    padding: 0px 0 50px;
  }
}
.flow__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.flow__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 2.2px;
  color: #333;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 500px) {
  .flow__title {
    font-size: 18px;
    letter-spacing: 1.8px;
    margin-bottom: 30px;
  }
}
.flow__wrapper {
  position: relative;
}
.flow__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7px;
}
@media (max-width: 1140px) {
  .flow__container {
    overflow-x: auto;
    overflow-y: hidden;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 20px;
  }
  .flow__container::-webkit-scrollbar {
    display: none;
  }
}
.flow__arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 60px;
  margin-left: 5px;
}
@media (max-width: 1140px) {
  .flow__arrow {
    display: none;
  }
}
.flow__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 245px;
  scroll-snap-align: start;
}
@media (max-width: 500px) {
  .flow__item {
    width: 245px;
  }
}
.flow__card {
  margin-bottom: 20px;
}
.flow__card img {
  width: 245px;
  height: auto;
  display: block;
}
.flow__step-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.8px;
  color: #333;
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 500px) {
  .flow__step-title {
    font-size: 16px;
    letter-spacing: 1.6px;
  }
}
.flow__step-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1.6px;
  color: #333;
  text-align: left;
}
@media (max-width: 500px) {
  .flow__step-text {
    font-size: 15px;
    letter-spacing: 1.5px;
  }
}

.visit {
  background-color: #fff;
  padding: 0px 0px 100px;
}
@media (max-width: 768px) {
  .visit {
    padding: 0px 0px 50px;
  }
}
@media (max-width: 500px) {
  .visit {
    padding: 0px 0px;
  }
}
.visit__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.visit__main-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 2.6px;
  color: #0036a4;
  text-align: center;
  margin-bottom: 27px;
}
@media (max-width: 500px) {
  .visit__main-title {
    font-size: 22px;
    letter-spacing: 2.2px;
    margin-bottom: 30px;
  }
}
.visit__prepare {
  margin-bottom: 40px;
}
@media (max-width: 500px) {
  .visit__prepare {
    margin-bottom: 50px;
  }
}
.visit__subtitle {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 2.2px;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 500px) {
  .visit__subtitle {
    font-size: 18px;
    letter-spacing: 1.8px;
    margin-bottom: 30px;
  }
}
.visit__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media (max-width: 940px) {
  .visit__cards {
    -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;
    gap: 30px;
  }
}
@media (max-width: 500px) {
  .visit__cards {
    gap: 20px;
  }
}
.visit__card {
  width: 340px;
  max-width: 100%;
}
@media (max-width: 500px) {
  .visit__card {
    width: 350px;
  }
}
.visit__card-icon {
  width: 100%;
  height: 170px;
  background-color: #fff;
  border: 2px solid #0079bf;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}
@media (max-width: 500px) {
  .visit__card-icon {
    height: 150px;
  }
}
.visit__card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.8px;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 500px) {
  .visit__card-title {
    font-size: 16px;
    letter-spacing: 1.6px;
  }
}
.visit__card-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1.6px;
  color: #333;
  text-align: left;
}
@media (max-width: 500px) {
  .visit__card-text {
    font-size: 16px;
    letter-spacing: 1.6px;
  }
}
.visit__flow-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 2.2px;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 500px) {
  .visit__flow-title {
    font-size: 18px;
    letter-spacing: 1.8px;
    margin-bottom: 30px;
  }
}
.visit__flow-wrapper {
  position: relative;
}
.visit__flow-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7px;
}
@media (max-width: 1140px) {
  .visit__flow-container {
    overflow-x: auto;
    overflow-y: hidden;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 20px;
  }
  .visit__flow-container::-webkit-scrollbar {
    display: none;
  }
}
.visit__flow-arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 60px;
  margin-left: 5px;
}
@media (max-width: 1140px) {
  .visit__flow-arrow {
    display: none;
  }
}
.visit__flow-item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 245px;
  scroll-snap-align: start;
}
@media (max-width: 500px) {
  .visit__flow-item {
    width: 245px;
  }
}
.visit__flow-card {
  margin-bottom: 20px;
}
.visit__flow-card img {
  width: 245px;
  height: auto;
  display: block;
}
.visit__flow-step-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.8px;
  color: #333;
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 500px) {
  .visit__flow-step-title {
    font-size: 16px;
    letter-spacing: 1.6px;
  }
}
.visit__flow-step-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1.6px;
  color: #333;
  text-align: left;
}
@media (max-width: 500px) {
  .visit__flow-step-text {
    font-size: 15px;
    letter-spacing: 1.5px;
  }
}

.faq {
  background-color: #fff;
  padding: 0px 0px 70px;
}
@media (max-width: 768px) {
  .faq {
    padding: 50px 0px;
  }
}
@media (max-width: 500px) {
  .faq {
    padding: 40px 0px;
  }
}
.faq__inner {
  max-width: 990px;
  margin: 0 auto;
  padding: 0 20px;
}
.faq__title {
  font-size: 60px;
  font-weight: 700;
  line-height: normal;
  color: #0036a4;
  text-align: center;
  margin-bottom: 0;
}
@media (max-width: 500px) {
  .faq__title {
    font-size: 40px;
  }
}
.faq__subtitle {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 3px;
  color: #0036a4;
  text-align: center;
  margin-bottom: 45px;
}
@media (max-width: 500px) {
  .faq__subtitle {
    font-size: 22px;
    letter-spacing: 2.2px;
    margin-bottom: 30px;
  }
}
.faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media (max-width: 500px) {
  .faq__list {
    gap: 20px;
  }
}
.faq__item {
  border-radius: 10px;
  overflow: hidden;
}
.faq__question {
  width: 100%;
  background-color: #0079bf;
  color: #fff;
  border: none;
  padding: 13px 60px 13px 20px;
  text-align: left;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  min-height: 50px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.faq__question:hover {
  background-color: #006aa8;
}
@media (max-width: 500px) {
  .faq__question {
    padding: 13px 50px 13px 15px;
  }
}
.faq__question-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1.6px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 500px) {
  .faq__question-text {
    font-size: 15px;
    letter-spacing: 1.5px;
  }
}
.faq__toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 500px) {
  .faq__toggle {
    right: 15px;
    width: 28px;
    height: 28px;
  }
}
.faq__toggle-icon {
  position: relative;
  width: 20px;
  height: 20px;
  display: block;
}
@media (max-width: 500px) {
  .faq__toggle-icon {
    width: 18px;
    height: 18px;
  }
}
.faq__toggle-icon::before, .faq__toggle-icon::after {
  content: "";
  position: absolute;
  background-color: #0079bf;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq__toggle-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.faq__toggle-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.faq__question[aria-expanded=true] .faq__toggle-icon::after {
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
.faq__answer-content {
  background-color: #dcf3ff;
  padding: 20px;
}
@media (max-width: 500px) {
  .faq__answer-content {
    padding: 15px;
  }
}
.faq__answer-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1.6px;
  color: #333;
  margin-bottom: 0;
}
.faq__answer-content p:not(:last-child) {
  margin-bottom: 0px;
}
@media (max-width: 500px) {
  .faq__answer-content p {
    font-size: 15px;
    letter-spacing: 1.5px;
  }
}
.faq__answer-content ul {
  list-style: disc;
  padding-left: 24px;
  margin: 0px 0;
}
@media (max-width: 500px) {
  .faq__answer-content ul {
    padding-left: 20px;
  }
}
.faq__answer-content ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1.6px;
  color: #333;
  margin-bottom: 0;
}
@media (max-width: 500px) {
  .faq__answer-content ul li {
    font-size: 15px;
    letter-spacing: 1.5px;
  }
}
.faq__note {
  font-size: 12px !important;
  letter-spacing: 1.2px !important;
}

.company {
  background-color: #dcf3ff;
  padding: 100px 0px;
}
@media (max-width: 768px) {
  .company {
    padding: 50px 0px;
  }
}
@media (max-width: 500px) {
  .company {
    padding: 40px 0px;
  }
}
.company__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.company__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 3.6px;
  color: #0036a4;
  text-align: center;
  margin-bottom: 55px;
}
@media (max-width: 500px) {
  .company__title {
    font-size: 28px;
    letter-spacing: 2.8px;
    margin-bottom: 40px;
  }
}
.company__list {
  max-width: 530px;
  margin: 0 auto;
}
.company .list-last {
  max-width: 530px;
  margin: 40px auto 0;
  text-align: end;
}
.company__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px dashed #d1d1d1;
}
@media (max-width: 500px) {
  .company__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px 0;
  }
}
.company__item:first-child {
  padding-top: 0;
}
.company__item:last-child {
  border-bottom: none;
}
.company__term {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.6px;
  color: #333;
  width: 135px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 500px) {
  .company__term {
    font-size: 15px;
    letter-spacing: 1.5px;
    width: 100%;
    font-weight: 500;
    margin-bottom: 5px;
  }
}
.company__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1.6px;
  color: #333;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 500px) {
  .company__description {
    font-size: 15px;
    letter-spacing: 1.5px;
  }
}
.company__description a {
  color: #0066cc;
  text-decoration: underline;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.company__description a:hover {
  opacity: 0.7;
}

.footer {
  background-color: #0036a4;
  padding: 14px 20px;
  margin-bottom: 135px;
}
@media (max-width: 768px) {
  .footer {
    margin-bottom: 65px;
  }
}
@media (max-width: 500px) {
  .footer {
    margin-bottom: 50px;
  }
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer__copyright {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  text-align: center;
  margin: 0;
}
@media (max-width: 500px) {
  .footer__copyright {
    font-size: 12px;
  }
}

.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.fixed-cta.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.fixed-cta__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .fixed-cta__inner {
    padding: 0px;
    gap: 0px;
  }
}
.fixed-cta__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  width: 440px;
  padding: 15px 0px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .fixed-cta__button {
    width: calc(50% - 0px);
    padding: 10px;
    border-radius: 0px;
  }
}
@media (max-width: 500px) {
  .fixed-cta__button {
    padding: 16px 0px;
  }
}
.fixed-cta__button:hover {
  opacity: 0.9;
}
.fixed-cta__button--orange {
  background-color: #f06b00;
}
.fixed-cta__button--blue {
  background-color: #0036a4;
}
.fixed-cta__subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1.4px;
  color: #fff;
  text-align: center;
  margin: 0;
}
@media (max-width: 768px) {
  .fixed-cta__subtitle {
    font-size: 11px;
    letter-spacing: 1px;
  }
  .fixed-cta__subtitle span {
    display: none;
  }
}
.fixed-cta__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 2.6px;
  color: #fff;
  text-align: center;
  margin: 0;
}
@media (max-width: 1024px) {
  .fixed-cta__title {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .fixed-cta__title {
    font-size: 18px;
    letter-spacing: 1.4px;
    letter-spacing: 0px;
  }
  .fixed-cta__title span {
    font-size: 12px;
  }
  .fixed-cta__title span.hidden {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */