html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}
@media screen and (min-width: 1200px) {
  html {
    scroll-padding-top: 83px;
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: #fff;
  background: -webkit-gradient(linear, right top, left top, from(#0291D9), to(#023E78));
  background: linear-gradient(270deg, #0291D9 0%, #023E78 100%);
}

img {
  max-width: 100%;
}

.wrapper {
  overflow: hidden;
}

.hidden-sm {
  display: none;
}
@media screen and (min-width: 600px) {
  .hidden-sm {
    display: block;
  }
}

.hidden-md {
  display: none;
}
@media screen and (min-width: 600px) {
  .hidden-md {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .hidden-md {
    display: block;
  }
}

@media screen and (min-width: 900px) {
  .hidden-lg {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .hidden-xl {
    display: none;
  }
}

.fade-in {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease, -webkit-transform 0.7s ease;
}

.fade-in.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (min-width: 1200px) {
  .inner {
    padding-inline: 100px;
    max-width: 1640px;
    margin-inline: auto;
  }
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 44px;
  border: 1px solid #fff;
  padding: 10px 24px;
}

.button-text {
  font-family: "Jost", sans-serif;
  line-height: 140%;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.button-dot {
  width: 6px;
  height: 6px;
  background: #FFF400;
  border-radius: 50%;
}

.heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.heading__en {
  font-family: "Jost", sans-serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 900px) {
  .heading__en {
    font-size: 64px;
    letter-spacing: 1.28px;
  }
}

.heading__en-blue {
  background: -webkit-gradient(linear, right top, left top, from(#0A9AE5), to(#023E78));
  background: linear-gradient(270deg, #0A9AE5 0%, #023E78 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading__ja {
  margin-top: -3px;
  font-size: 15px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 1.5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 900px) {
  .heading__ja {
    font-size: 18px;
    letter-spacing: 1.8px;
  }
}

.heading__ja-gray {
  color: #404559;
}

.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;
  padding: 12px 16px;
}
@media screen and (min-width: 900px) {
  .header__inner {
    padding-inline: 36px;
  }
}

.header__logo {
  z-index: 51;
}
.header__logo img {
  width: 175px;
  height: 32px;
  display: block;
}
@media screen and (min-width: 1200px) {
  .header__logo img {
    width: 320px;
    height: 59px;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 900px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 36px;
  }
}

@media screen and (min-width: 900px) {
  .header__link {
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
}
@media screen and (min-width: 1200px) {
  .header__link {
    font-size: 16px;
  }
}
.header__link::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.header__link:hover::after {
  width: 100%;
}

.header__button {
  gap: 16px;
  position: relative;
  background: transparent;
  overflow: hidden;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  z-index: 1;
}
.header__button::before {
  content: "";
  position: absolute;
  left: -200%;
  bottom: -300%;
  width: 200%;
  height: 300%;
  background: #023E78;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: -1;
}
.header__button:hover::before {
  left: -90%;
  bottom: 0;
}

.drawer-icon {
  width: 40px;
  height: 10px;
  margin: 18px 4px 20px;
  position: relative;
  z-index: 51;
}
@media screen and (min-width: 900px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-checked .drawer-icon__bar {
  top: 4px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.drawer-icon__bar {
  position: absolute;
  content: "";
  width: 40px;
  height: 2px;
  left: 0;
  background: #fff;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, top 0.4s;
  transition: transform 0.4s, top 0.4s, -webkit-transform 0.4s;
}
.drawer-icon__bar:nth-child(1) {
  top: 0;
}
.drawer-icon__bar:nth-child(2) {
  top: 8px;
}

.drawer-content {
  background: -webkit-gradient(linear, right top, left top, from(#0291D9), to(#023E78));
  background: linear-gradient(270deg, #0291D9 0%, #023E78 100%);
  width: 100%;
  height: calc(100% - 72px);
  position: fixed;
  top: 71px;
  left: 0;
  z-index: 50;
  padding: 20px 28px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s linear;
  transition: -webkit-transform 0.4s linear;
  transition: transform 0.4s linear;
  transition: transform 0.4s linear, -webkit-transform 0.4s linear;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__menu {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.drawer-content__link {
  padding-bottom: 16px;
  border-bottom: 1px solid #C4CCD7;
  position: relative;
}
.drawer-content__link::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 16px;
  top: 6px;
  right: 0;
  background: url(../img/drawer-arrow.svg) no-repeat center center/contain;
}

.drawer-content__button {
  margin-top: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.fv {
  padding-top: 40px;
  padding-bottom: 76px;
}
@media screen and (min-width: 900px) {
  .fv {
    padding-top: 44px;
    padding-bottom: 80px;
  }
}

.fv__inner {
  position: relative;
}

.fv__title {
  position: absolute;
  top: 390px;
  left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding-bottom: 36px;
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .fv__title {
    top: 394px;
    left: 40px;
    gap: 20px;
    padding-bottom: 28px;
  }
}

.fv__title-text {
  color: #023E78;
  font-family: "Jost", sans-serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 10px;
  padding: 6px 16px;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(40px);
}
@media screen and (min-width: 600px) {
  .fv__title-text {
    font-size: 40px;
  }
}
@media screen and (min-width: 900px) {
  .fv__title-text {
    font-size: 56px;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 1.28px;
    padding: 8px 24px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__title-text {
    font-size: 64px;
  }
}

.swiper1 {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper1 {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: 520px;
}
@media screen and (min-width: 900px) {
  .swiper-wrapper1 {
    max-height: 560px;
  }
}

.swiper-slide1 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.fv__img1 {
  width: 149.7143px;
  height: 520px;
}
@media screen and (min-width: 900px) {
  .fv__img1 {
    width: 268.5714px;
    height: 560px;
  }
}

.fv__img4,
.fv__img7 {
  width: 311.4286px;
  height: 520px;
}
@media screen and (min-width: 900px) {
  .fv__img4,
  .fv__img7 {
    width: 557.1429px;
    height: 560px;
  }
}

.fv__img2-3,
.fv__img5-6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  width: 149.7143px;
}
@media screen and (min-width: 900px) {
  .fv__img2-3,
  .fv__img5-6 {
    gap: 20px;
    width: 268.5714px;
  }
}

.message {
  padding-block: 100px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .message {
    padding-top: 95px;
    padding-bottom: 54px;
  }
}
.message::before {
  position: absolute;
  content: "";
  width: 353px;
  height: 188px;
  bottom: 64px;
  left: -180px;
  background: url(../img/bg/bg_message.png) no-repeat center center/contain;
  z-index: -1;
}
@media screen and (min-width: 600px) {
  .message::before {
    width: 706px;
    height: 376px;
  }
}
@media screen and (min-width: 900px) {
  .message::before {
    width: 100%;
    height: 574px;
    background-size: 1080px auto;
    background-repeat: repeat-x;
  }
}

.message__inner {
  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: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 64px;
}
@media screen and (min-width: 900px) {
  .message__inner {
    padding-left: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .message__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding-left: 100px;
  }
}

.message__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  padding-inline: 24px;
}
@media screen and (min-width: 900px) {
  .message__content {
    padding-inline: 0;
  }
}
@media screen and (min-width: 1200px) {
  .message__content {
    gap: 82px;
    padding-block: 120px;
  }
}

.message__text {
  color: #023E78;
  text-shadow: 0 0 64px rgba(0, 0, 0, 0.25);
  font-size: 15px;
  font-weight: 500;
  line-height: 220%;
  display: block;
}
.message__text span {
  color: #023E78;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
  display: inline-block;
}
.message__text span.active {
  color: #fff;
}
@media screen and (min-width: 600px) {
  .message__text {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .message__text {
    font-size: 18px;
  }
}

.message__img {
  padding-bottom: 64px;
  max-width: 331px;
}
@media screen and (min-width: 600px) {
  .message__img {
    max-width: 500px;
  }
}
@media screen and (min-width: 900px) {
  .message__img {
    padding-top: 120px;
    max-width: 640px;
  }
}

.business__heading {
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .business__heading {
    padding-inline: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .business__heading {
    padding-inline: 100px;
  }
}

.business__content {
  margin-top: 41px;
}
@media screen and (min-width: 900px) {
  .business__content {
    margin-top: 60px;
  }
}

.business__tags {
  padding-inline: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 8px;
}
@media screen and (min-width: 600px) {
  .business__tags {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 900px) {
  .business__tags {
    padding-inline: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .business__tags {
    padding-inline: 100px;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.business-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  padding: 6px;
  border-radius: 4px;
  border: 2px solid #0961B6;
  background-color: #E4EAF1;
}
@media screen and (min-width: 1200px) {
  .business-tag {
    padding: 19px 19px 19px 39px;
  }
}
.business-tag.is-checked {
  border: 1px solid #fff;
  background-color: #023E78;
}
.business-tag.is-checked .business-tag__en,
.business-tag.is-checked .business-tag__title {
  color: #fff;
}

.business-tag__en {
  color: #023E78;
  font-family: "Jost", sans-serif;
  font-size: 8px;
  font-style: italic;
  font-weight: 500;
  line-height: 160%;
  text-transform: uppercase;
}
@media screen and (min-width: 900px) {
  .business-tag__en {
    font-size: 14px;
  }
}

.business-tag__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #023E78;
}
@media screen and (min-width: 900px) {
  .business-tag__title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: top;
        -ms-flex-align: top;
            align-items: top;
    gap: 12px;
  }
}

.business-tag__title-num {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-style: italic;
  line-height: 150%;
}
@media screen and (min-width: 900px) {
  .business-tag__title-num {
    font-size: 20px;
  }
}

.business-tag__title-ja {
  font-size: 13px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .business-tag__title-ja {
    font-size: 18px;
  }
}

.business__cards {
  padding-left: 20px;
  margin-top: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (min-width: 900px) {
  .business__cards {
    gap: 24px;
    padding-left: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .business__cards {
    margin-top: 36px;
    padding-left: 100px;
  }
}

.business-card {
  padding: 12px;
  border-radius: 4px;
  background-color: #E4EAF1;
  min-width: 84.3243243243%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (min-width: 900px) {
  .business-card {
    padding: 28px;
    min-width: 608px;
  }
}

.business-card__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  color: #023E78;
}

.business-card__tag-en {
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-style: italic;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.36px;
  text-transform: uppercase;
}
@media screen and (min-width: 900px) {
  .business-card__tag-en {
    font-size: 16px;
    letter-spacing: 0.48px;
  }
}

.business-card__tag-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.business-card__tag-title-num {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-style: italic;
  line-height: 160%;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 900px) {
  .business-card__tag-title-num {
    font-size: 28px;
    letter-spacing: 0.84px;
  }
}

.business-card__tag-title-ja {
  font-size: 18px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .business-card__tag-title-ja {
    font-size: 24px;
  }
}

.business-card__img {
  margin-top: 12px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .business-card__img {
    margin-top: 20px;
  }
}

.business-card__content:nth-of-type(1) {
  margin-top: 13px;
}
@media screen and (min-width: 900px) {
  .business-card__content:nth-of-type(1) {
    margin-top: 20px;
  }
}
.business-card__content:nth-of-type(2) {
  margin-top: 24px;
}

.business-card__content-title {
  color: #023E78;
  font-size: 15px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .business-card__content-title {
    font-size: 18px;
  }
}

.business-card__content-body {
  margin-top: 6px;
  padding-left: 24px;
}

.business-card__content-text {
  color: #404559;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.business-card__content-text::before {
  position: absolute;
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  top: 11px;
  left: -13px;
  background-color: #404559;
  border-radius: 50%;
}
@media screen and (min-width: 900px) {
  .business-card__content-text::before {
    top: 12.5px;
  }
}
@media screen and (min-width: 900px) {
  .business-card__content-text {
    font-size: 16px;
  }
}

.business-card__button {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .business-card__button {
    margin-top: 32px;
  }
}

.button__modal {
  width: 100%;
  text-align: left;
  padding: 20px;
  border-radius: 4px;
  background: #023E78;
  color: #fff;
  font-weight: 700;
  line-height: normal;
  position: relative;
  -webkit-transition: border-color 0.3s, background-color 0.3s, color 0.3s ease;
  transition: border-color 0.3s, background-color 0.3s, color 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.button__modal::after {
  content: "";
  position: absolute;
  left: -200%;
  bottom: -900%;
  width: 200%;
  height: 900%;
  background: #FFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .button__modal {
    padding: 20px 40px;
    line-height: 140%;
  }
}
.button__modal::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 24px;
  background: url(../img/our-business/card_icon.svg) no-repeat center center/contain;
}
@media screen and (min-width: 900px) {
  .button__modal::before {
    right: 40px;
  }
}
.button__modal:hover {
  padding: 19px;
  color: #023E78;
  border: 1px solid #023E78;
}
@media screen and (min-width: 900px) {
  .button__modal:hover {
    padding: 19px 39px;
  }
}
.button__modal:hover::before {
  background: url(../img/our-business/card_icon-hover.svg);
}
.button__modal:hover::after {
  left: -90%;
  bottom: 0;
}

.business-modal {
  position: fixed;
  width: calc(100% - 20px);
  margin: auto;
  padding: 15px;
  overflow: auto;
  overscroll-behavior-y: none;
  z-index: 50;
  border-radius: 12px;
  border: 1px solid #023E78;
  background: #FFF;
  scrollbar-width: none;
}
@media screen and (min-width: 900px) {
  .business-modal {
    width: 900px;
    padding: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .business-modal {
    width: 1200px;
    padding: 48px;
  }
}
.business-modal::-ms-backdrop {
  opacity: 0.5;
  background: #023E78;
}
.business-modal::backdrop {
  opacity: 0.5;
  background: #023E78;
}

.business-modal__head {
  position: relative;
}

.business-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .business-modal__close {
    top: 5.5px;
    right: -9px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    gap: 8.5px;
  }
}

.business-modal__close-text {
  color: #023E78;
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .business-modal__close-text {
    font-size: 16px;
  }
}

.business-modal__close-icon {
  width: 36px;
  height: 36px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 1;
}
.business-modal__close-icon:hover {
  opacity: 0.6;
}
@media screen and (min-width: 900px) {
  .business-modal__close-icon {
    padding-right: 5px;
  }
}

.business-modal__head-en {
  padding-top: 48px;
  color: #023E78;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-style: italic;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .business-modal__head-en {
    padding: 0;
    font-size: 18px;
  }
}

.business-modal__head-title {
  margin-top: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  color: #023E78;
}
@media screen and (min-width: 900px) {
  .business-modal__head-title {
    gap: 16px;
  }
}

.business-modal__head-title__num {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-style: italic;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .business-modal__head-title__num {
    font-size: 30px;
  }
}

.business-modal__head-title__ja {
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .business-modal__head-title__ja {
    font-size: 28px;
  }
}

.business-modal__boxes {
  margin-top: 12px;
}
@media screen and (min-width: 900px) {
  .business-modal__boxes {
    margin-top: 40px;
  }
}

.business-modal-box {
  padding-block: 12px;
  border-bottom: 1px solid #C4CCD7;
}
@media screen and (min-width: 900px) {
  .business-modal-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
}

.business-modal-box__title {
  color: #023E78;
  font-size: 15px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .business-modal-box__title {
    font-size: 18px;
    min-width: 34.2391304348%;
  }
}

.business-modal-box__text-box {
  margin-top: 10px;
}
@media screen and (min-width: 900px) {
  .business-modal-box__text-box {
    margin-top: 0;
  }
}

.business-modal-box__text {
  color: #404559;
  font-size: 15px;
}
@media screen and (min-width: 900px) {
  .business-modal-box__text {
    font-size: 16px;
  }
}

.business-modal-button {
  margin-top: 12px;
  margin-inline: auto;
  padding: 20px 40px 20px 76px;
  border-radius: 4px;
  background: #023E78;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 1;
}
.business-modal-button:hover {
  opacity: 0.6;
}
@media screen and (min-width: 900px) {
  .business-modal-button {
    margin-top: 40px;
  }
}

.business-modal-button__text {
  color: #fff;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 900px) {
  .business-modal-button__text {
    font-size: 20px;
  }
}

.business-modal-button__icon img {
  width: 10px;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.challenge {
  position: relative;
}
.challenge::before {
  position: absolute;
  content: "";
  width: 531px;
  height: 187px;
  top: 51px;
  left: 83px;
  background: url(../img/bg/bg_your-challenge.png) no-repeat center left/contain;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .challenge::before {
    width: 1620px;
    height: 574px;
    top: 0;
    left: 579px;
  }
}

.challenge__inner {
  padding: 120px 24px 80px 24px;
}
@media screen and (min-width: 900px) {
  .challenge__inner {
    padding: 232px 60px 132.5px 60px;
  }
}
@media screen and (min-width: 1200px) {
  .challenge__inner {
    padding-inline: 100px;
  }
}

.challenge__content {
  margin-top: 40px;
}
@media screen and (min-width: 900px) {
  .challenge__content {
    margin-top: 64px;
  }
}

.challenge__cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  justify-items: center;
}
@media screen and (min-width: 900px) {
  .challenge__cards {
    gap: 32px 76px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.challenge-card {
  border-radius: 4px;
  max-width: 590px;
}
.challenge-card:nth-of-type(1) {
  border-bottom: 12px solid #37A4DB;
  background-color: rgba(244, 251, 255, 0.7);
}
.challenge-card:nth-of-type(1) .challenge-card__title {
  background-color: #37A4DB;
}
@media screen and (min-width: 900px) {
  .challenge-card:nth-of-type(1) .challenge-card__body {
    min-height: 488px;
  }
}
@media screen and (min-width: 900px) {
  .challenge-card:nth-of-type(1) {
    margin-top: 64px;
  }
}
.challenge-card:nth-of-type(2) {
  border-bottom: 12px solid #2766AE;
  background-color: rgba(238, 246, 254, 0.7);
}
.challenge-card:nth-of-type(2) .challenge-card__title {
  background-color: #2766AE;
}
@media screen and (min-width: 900px) {
  .challenge-card:nth-of-type(2) .challenge-card__body {
    min-height: 488px;
  }
}
@media screen and (min-width: 900px) {
  .challenge-card:nth-of-type(2) {
    margin-bottom: 64px;
  }
}
.challenge-card:nth-of-type(3) {
  border-bottom: 12px solid #025178;
  background-color: rgba(235, 243, 247, 0.7);
}
.challenge-card:nth-of-type(3) .challenge-card__title {
  background-color: #025178;
}
@media screen and (min-width: 900px) {
  .challenge-card:nth-of-type(3) .challenge-card__body {
    min-height: 515px;
  }
}
@media screen and (min-width: 900px) {
  .challenge-card:nth-of-type(3) {
    margin-top: 64px;
  }
}
.challenge-card:nth-of-type(4) {
  border-bottom: 12px solid #023E78;
  background-color: rgba(233, 242, 250, 0.7);
}
.challenge-card:nth-of-type(4) .challenge-card__title {
  background-color: #023E78;
}
@media screen and (min-width: 900px) {
  .challenge-card:nth-of-type(4) .challenge-card__body {
    min-height: 515px;
  }
}
@media screen and (min-width: 900px) {
  .challenge-card:nth-of-type(4) {
    margin-bottom: 64px;
  }
}

.challenge-card__title {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px 0 4px 0;
}

.challenge-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.challenge-card__head-en {
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.45px;
}
@media screen and (min-width: 900px) {
  .challenge-card__head-en {
    font-size: 18px;
    letter-spacing: 0.54px;
  }
}

.challenge-card__head-num {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 900px) {
  .challenge-card__head-num {
    font-size: 24px;
    letter-spacing: 0.72px;
  }
}

.challenge-card__head-ja {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .challenge-card__head-ja {
    font-size: 24px;
    font-weight: 700;
    line-height: 160%;
  }
}

.challenge-card__body {
  padding: 28px 24px 16px;
}
@media screen and (min-width: 900px) {
  .challenge-card__body {
    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-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.challenge-card__text {
  color: #404559;
  font-size: 15px;
  font-weight: 500;
  line-height: 174%;
}
@media screen and (min-width: 900px) {
  .challenge-card__text {
    font-size: 16px;
  }
}

.challenge-card__img {
  width: 100%;
  margin-top: 27px;
  border-radius: 4px;
}

.member {
  background-color: #E4EAF1;
  position: relative;
  overflow: hidden;
}
.member::before {
  position: absolute;
  content: "";
  width: 305px;
  height: 162.102px;
  top: 6px;
  left: -3px;
  background: url(../img/bg/bg_member-stories.png) no-repeat center center/contain;
  z-index: 0;
}
@media screen and (min-width: 900px) {
  .member::before {
    width: 940.767px;
    height: 500px;
    top: -12px;
    left: 0;
  }
}

.member__inner {
  padding: 80px 0 236px 20px;
}
@media screen and (min-width: 900px) {
  .member__inner {
    padding: 120px 0 264px 60px;
  }
}
@media screen and (min-width: 1200px) {
  .member__inner {
    padding: 120px 0 264px 100px;
  }
}

.member__heading {
  position: relative;
  z-index: 10;
}

.swiper2 {
  position: relative;
  overflow: visible;
}
@media screen and (min-width: 1200px) {
  .swiper2 {
    margin-right: 80px;
  }
}
.swiper2 .swiper-scrollbar {
  position: absolute;
  bottom: -76px;
  left: 0;
  width: 350px;
  height: 8px;
  border-radius: 0;
  background: #C4CCD7;
}
@media screen and (min-width: 1200px) {
  .swiper2 .swiper-scrollbar {
    bottom: -108px;
    width: 72.8358208955%;
  }
}
.swiper2 .swiper-scrollbar-drag {
  background: #0961B6;
  border-radius: 0;
}
.swiper2 .swiper-button-prev,
.swiper2 .swiper-button-next {
  top: auto;
  left: auto;
  position: absolute;
  width: 40px;
  height: 40px;
  bottom: -156px;
  border: 2px solid #0961B6;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: border-color 0.3s, color 0.3s ease;
  transition: border-color 0.3s, color 0.3s ease;
}
@media screen and (min-width: 1200px) {
  .swiper2 .swiper-button-prev,
  .swiper2 .swiper-button-next {
    bottom: -142px;
    width: 80px;
    height: 80px;
  }
}
.swiper2 .swiper-button-prev::before,
.swiper2 .swiper-button-next::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 1200px) {
  .swiper2 .swiper-button-prev::before,
  .swiper2 .swiper-button-next::before {
    width: 14px;
    height: 24px;
  }
}
.swiper2 .swiper-button-prev::after,
.swiper2 .swiper-button-next::after {
  content: "";
  position: absolute;
  left: -200%;
  bottom: -300%;
  width: 200%;
  height: 320%;
  background: #023E78;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: -1;
}
.swiper2 .swiper-button-prev:hover,
.swiper2 .swiper-button-next:hover {
  border-color: #FFF;
}
.swiper2 .swiper-button-prev:hover::after,
.swiper2 .swiper-button-next:hover::after {
  left: -10%;
  bottom: 0;
}
.swiper2 .swiper-button-prev svg,
.swiper2 .swiper-button-next svg {
  display: none;
}
.swiper2 .swiper-button-prev {
  right: 85px !important;
}
@media screen and (min-width: 900px) {
  .swiper2 .swiper-button-prev {
    right: 200px !important;
  }
}
.swiper2 .swiper-button-prev:before {
  left: 14px;
  background: url(../img/member-stories/prev-icon.png) no-repeat center center/contain;
}
@media screen and (min-width: 1200px) {
  .swiper2 .swiper-button-prev:before {
    left: 30px;
  }
}
.swiper2 .swiper-button-prev:hover::before {
  background: url(../img/member-stories/prev-icon_hover.png) no-repeat center center/contain;
}
.swiper2 .swiper-button-next {
  right: 22px !important;
}
@media screen and (min-width: 900px) {
  .swiper2 .swiper-button-next {
    right: 100px !important;
  }
}
.swiper2 .swiper-button-next:before {
  left: 15px;
  background: url(../img/member-stories/next-icon.png) no-repeat center center/contain;
}
@media screen and (min-width: 1200px) {
  .swiper2 .swiper-button-next:before {
    left: 33px;
  }
}
.swiper2 .swiper-button-next:hover::before {
  background: url(../img/member-stories/next-icon_hover.png) no-repeat center center/contain;
}

.swiper-slide2 {
  width: 312px;
}
@media screen and (min-width: 900px) {
  .swiper-slide2 {
    width: 406px;
  }
}

.member-card {
  margin-top: 64px;
  max-width: 312px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .member-card {
    margin-top: 84px;
    max-width: 386px;
  }
}

.member-card__num {
  position: absolute;
  top: -44px;
  right: 8px;
  color: #023E78;
  text-shadow: 1px 1px 0 #FFF;
  font-family: "Jost", sans-serif;
  font-size: 56px;
  font-style: italic;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 1.12px;
  z-index: 10;
}

.member-card__head {
  position: relative;
}

.member-card__head-img {
  width: 100%;
  aspect-ratio: 3/4;
  -webkit-box-shadow: 0 5px 15px 0 rgba(26, 150, 239, 0.15);
          box-shadow: 0 5px 15px 0 rgba(26, 150, 239, 0.15);
}
@media screen and (min-width: 900px) {
  .member-card__head-img {
    aspect-ratio: 386/514.67;
  }
}

.member-card__head-textarea {
  position: absolute;
  top: 307px;
  left: 0;
}
@media screen and (min-width: 900px) {
  .member-card__head-textarea {
    top: 406px;
  }
}

.member-card__head-department {
  color: #023E78;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1px;
  padding: 4px 16px;
  background-color: #FFF;
}

.member-card__head-bottom {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 145px;
  padding: 4px 12px;
  background-color: #FFF;
}

.member-card__head-year {
  color: #023E78;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.8px;
}

.member-card__head-name {
  color: #023E78;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1px;
}

.member-card__body {
  margin-top: 20px;
  min-height: 234px;
  font-size: 15px;
  line-height: 200%;
  letter-spacing: 0.3px;
  padding: 10px 14px;
  border: 2px solid #023E78;
  background: #023E78;
}
@media screen and (min-width: 900px) {
  .member-card__body {
    min-height: 204px;
  }
}

.culture {
  padding-block: 80px;
  background-color: #F2F4F6;
  position: relative;
}
@media screen and (min-width: 900px) {
  .culture {
    padding-top: 116px;
    padding-bottom: 120px;
  }
}
.culture::before {
  position: absolute;
  content: "";
  width: 289px;
  height: 313px;
  top: 2112px;
  right: -70px;
  background: url(../img/bg/bg_culture.png) no-repeat center center/contain;
  z-index: 0;
}
@media screen and (min-width: 600px) {
  .culture::before {
    top: 1600px;
  }
}
@media screen and (min-width: 900px) {
  .culture::before {
    width: 810px;
    height: 878px;
    top: 1118.13px;
    left: 673px;
  }
}

.culture__heading {
  padding-left: 20px;
}
@media screen and (min-width: 900px) {
  .culture__heading {
    padding-left: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .culture__heading {
    padding-left: 100px;
  }
}

.culture__content {
  margin-top: 40px;
}
@media screen and (min-width: 900px) {
  .culture__content {
    margin-top: 64px;
  }
}

.culture__boxes {
  margin-inline: 20px;
  padding-inline: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
@media screen and (min-width: 900px) {
  .culture__boxes {
    margin-inline: 60px;
    backdrop-filter: none;
  }
}
@media screen and (min-width: 1200px) {
  .culture__boxes {
    margin-inline: 100px;
    padding-inline: 40px;
  }
}

.culture-box {
  padding: 28px 0 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
.culture-box:nth-of-type(1), .culture-box:nth-of-type(2) {
  border-bottom: 2px solid #C4CCD7;
}
@media screen and (min-width: 900px) {
  .culture-box {
    padding: 28px 34px 24px 34px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.culture-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  text-align: center;
  color: #023E78;
}
@media screen and (min-width: 900px) {
  .culture-box__head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
  }
}

.culture-box__head-img img {
  width: 63.882px;
}

.culture-box__head-ja {
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 900px) {
  .culture-box__head-ja {
    font-size: 24px;
    line-height: 160%;
  }
}

.culture-box__head-en {
  margin-top: 4px;
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.39px;
  text-transform: uppercase;
}
@media screen and (min-width: 900px) {
  .culture-box__head-en {
    margin-top: 12px;
    font-size: 14px;
    letter-spacing: 0.42px;
  }
}

.culture-box__text {
  color: #404559;
  font-size: 15px;
  font-weight: 500;
  line-height: 175%;
}
@media screen and (min-width: 900px) {
  .culture-box__text {
    max-width: 350px;
    line-height: 170%;
  }
}
@media screen and (min-width: 1200px) {
  .culture-box__text {
    max-width: 561px;
    font-size: 16px;
  }
}

.culture__img {
  padding-top: 80px;
  position: relative;
  z-index: 1;
  width: 390px;
  height: 460px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .culture__img {
    margin-top: 120px;
    padding-top: 0;
    width: 1440px;
    height: 380px;
  }
}
.culture__img img {
  width: 390px;
  height: 488px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% calc(0% - 43px);
     object-position: 50% calc(0% - 43px);
}
@media screen and (min-width: 900px) {
  .culture__img img {
    width: 100%;
    height: 380px;
    -o-object-position: 50% calc(50% + 32px);
       object-position: 50% calc(50% + 32px);
  }
}

.culture__content-heading {
  margin: 82px 20px 20px 20px;
  color: #404559;
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
  position: relative;
  padding-left: 32px;
}
@media screen and (min-width: 900px) {
  .culture__content-heading {
    margin: 120px 100px 20px 100px;
    font-size: 24px;
    padding-left: 41.309px;
  }
}
.culture__content-heading::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 3.69px;
  left: 0;
  background: url(../img/culture/culture-content-heading_icon.png) no-repeat center center/contain;
}
@media screen and (min-width: 900px) {
  .culture__content-heading::before {
    width: 29.309px;
    height: 29.309px;
    top: 6.19px;
  }
}

.qa {
  padding-block: 100px;
  background-color: #E4EAF1;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .qa {
    padding-block: 120px;
  }
}
.qa::before {
  position: absolute;
  content: "";
  width: 317px;
  height: 343px;
  bottom: -135px;
  left: -41px;
  background: url(../img/bg/bg_qa.png) no-repeat center center/contain;
  z-index: 0;
}
@media screen and (min-width: 900px) {
  .qa::before {
    width: 725px;
    height: 786px;
    bottom: -44.83px;
    left: -141px;
  }
}
.qa::after {
  position: absolute;
  content: "";
  width: 183px;
  height: 183px;
  top: -57px;
  right: -43px;
  background: url(../img/bg/bg_qa-circle.png) no-repeat center center/contain;
  z-index: 0;
}
@media screen and (min-width: 900px) {
  .qa::after {
    width: 317px;
    height: 317px;
    top: 5.83px;
    right: -80px;
  }
}

.qa__inner {
  padding-inline: 20px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .qa__inner {
    padding-inline: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 1200px) {
  .qa__inner {
    padding-inline: 100px;
  }
}

.qa__boxes {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 900px) {
  .qa__boxes {
    max-width: 600px;
    margin-top: 0;
    gap: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .qa__boxes {
    max-width: 880px;
  }
}

.qa-box {
  padding: 8px 12px;
  border-radius: 4px;
  background-color: #F2F4F6;
}
@media screen and (min-width: 900px) {
  .qa-box {
    padding: 8px 20px;
  }
}
.qa-box.is-close .qa-box__head {
  border: none;
}
.qa-box.is-close .qa-box__head::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.qa-box__head {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 8px;
  padding-right: 44px;
  border-bottom: 2px solid #C4CCD7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .qa-box__head {
    padding: 18px 96px 14px 32px;
    gap: 20px;
  }
}
.qa-box__head::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 10px;
  right: 6px;
  background: url(../img/qa/qa-arrow.png) no-repeat center center/contain;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
@media screen and (min-width: 900px) {
  .qa-box__head::before {
    right: 38px;
  }
}

.qa-box__head-icon {
  color: #023E78;
  font-family: "Jost", sans-serif;
  font-size: 22px;
  font-style: italic;
  line-height: 28px;
  padding-inline: 5px;
  border-radius: 50%;
  background: rgba(255, 244, 0, 0.4);
  width: 28px;
  height: 28px;
}
@media screen and (min-width: 900px) {
  .qa-box__head-icon {
    font-size: 28px;
    line-height: 140%;
    padding-inline: 6px;
    width: 36px;
    height: 39px;
  }
}

.qa-box__head-text {
  color: #404559;
  font-size: 15px;
  font-weight: 700;
  line-height: 160%;
  text-align: left;
}
@media screen and (min-width: 900px) {
  .qa-box__head-text {
    font-size: 20px;
  }
}

.qa-box__text {
  padding-block: 8px;
  color: #023E78;
  font-size: 15px;
  font-weight: 700;
  line-height: 200%;
}
@media screen and (min-width: 900px) {
  .qa-box__text {
    padding: 16px 32px;
    font-size: 16px;
  }
}

.footer__area {
  background: #E4EAF1;
}

.cta {
  padding: 12px;
}
@media screen and (min-width: 900px) {
  .cta {
    padding: 32px;
    height: 550px;
    position: relative;
  }
}
@media screen and (min-width: 1200px) {
  .cta {
    height: 700px;
  }
}

.cta__img {
  display: none;
}
@media screen and (min-width: 900px) {
  .cta__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .cta__img.show .cta__img-left img {
    -webkit-transform: rotateY(14deg);
            transform: rotateY(14deg);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
            filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
  }
  .cta__img.show .cta__img-right img {
    -webkit-transform: rotateY(-14deg);
            transform: rotateY(-14deg);
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
            filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
  }
}

@media screen and (min-width: 900px) {
  .cta__img-left,
  .cta__img-right {
    display: block;
    z-index: 20;
    width: 50%;
    height: 486px;
    overflow: hidden;
    position: absolute;
    top: 32px;
    -webkit-perspective: 270px;
            perspective: 270px;
  }
}
@media screen and (min-width: 1200px) {
  .cta__img-left,
  .cta__img-right {
    height: 636px;
    -webkit-perspective: 28.3333333333%;
            perspective: 28.3333333333%;
  }
}
.cta__img-left img,
.cta__img-right img {
  width: calc(100% - 32px);
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media screen and (min-width: 900px) {
  .cta__img-left img,
  .cta__img-right img {
    -webkit-transition: -webkit-transform 1s ease;
    transition: -webkit-transform 1s ease;
    transition: transform 1s ease;
    transition: transform 1s ease, -webkit-transform 1s ease;
  }
}

@media screen and (min-width: 900px) {
  .cta__img-left {
    left: 32px;
    -webkit-perspective-origin: left;
            perspective-origin: left;
  }
  .cta__img-left img {
    border-radius: 8px 0 0 8px;
  }
}

@media screen and (min-width: 900px) {
  .cta__img-right {
    right: 0px;
    -webkit-perspective-origin: right;
            perspective-origin: right;
  }
  .cta__img-right img {
    border-radius: 0 8px 8px 0;
  }
}

.cta__content {
  padding-block: 56px;
  border-radius: 8px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(228, 234, 241, 0.1)), to(rgba(228, 234, 241, 0.1))), -webkit-gradient(linear, right top, left top, from(#0291D9), to(#023E78));
  background: linear-gradient(rgba(228, 234, 241, 0.1), rgba(228, 234, 241, 0.1)), linear-gradient(270deg, #0291D9 0%, #023E78 100%);
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .cta__content {
    padding-block: 70px;
    position: absolute;
    top: 32px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: calc(100% - 64px);
    height: calc(100% - 64px);
    z-index: 10;
  }
}
@media screen and (min-width: 1200px) {
  .cta__content {
    padding-block: 113.5px;
  }
}

.cta__heading {
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
@media screen and (min-width: 1200px) {
  .cta__heading {
    font-size: 56px;
    letter-spacing: 1.68px;
  }
}

.cta__text {
  margin-top: 24px;
  color: #fff;
  font-size: 14px;
}
@media screen and (min-width: 1200px) {
  .cta__text {
    margin-top: 34px;
    font-size: 16px;
  }
}

.cta__button {
  margin-top: 40px;
  max-width: 215px;
  margin-inline: auto;
  padding: 15px 39px 15px 63px;
  gap: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 44px;
  border: 1px solid #fff;
  position: relative;
  background: transparent;
  overflow: hidden;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .cta__button {
    margin-top: 56px;
    max-width: 235px;
  }
}
.cta__button::before {
  content: "";
  position: absolute;
  left: -200%;
  bottom: -300%;
  width: 200%;
  height: 300%;
  background: #023E78;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: -1;
}
.cta__button:hover::before {
  left: -75%;
  bottom: 0;
}

.cta__button-text {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}
@media screen and (min-width: 1200px) {
  .cta__button-text {
    font-size: 24px;
    letter-spacing: 1.2px;
  }
}

.button-dot {
  width: 12px;
  height: 12px;
  background: #FFF400;
  border-radius: 50%;
}

.footer {
  padding: 40px 10px 32px 10px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .footer {
    padding: 80px 60px 32px 60px;
  }
}
@media screen and (min-width: 1200px) {
  .footer {
    padding: 80px 100px 32px 100px;
  }
}
.footer::before {
  position: absolute;
  content: "";
  width: 335px;
  height: 450px;
  bottom: -224.2px;
  right: -85px;
  background: url(../img/bg/bg_footer.png) no-repeat center center/contain;
  z-index: 0;
}
@media screen and (min-width: 900px) {
  .footer::before {
    width: 844px;
    height: 1132px;
    bottom: -290px;
    right: -7px;
  }
}

.footer__inner {
  position: relative;
  z-index: 10;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 900px) {
  .footer__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1240px;
    margin: auto;
  }
}

@media screen and (min-width: 900px) {
  .footer__head {
    padding: 16px;
  }
}

.footer__logo {
  max-width: 280.5px;
}

.footer__address {
  margin-top: 32px;
  color: #404559;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .footer__address {
    margin-top: 40px;
  }
}

@media screen and (min-width: 900px) {
  .footer__bottom {
    padding: 16px;
  }
}

.footer__nav {
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 900px) {
  .footer__nav {
    padding: 12px 16px 16px 16px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 20px;
  }
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.footer__link {
  display: inline-block;
  padding-block: 8px;
  color: #404559;
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
  position: relative;
}
.footer__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #0961B6;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.footer__link:hover::after {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .footer__link {
    min-width: 150px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__link {
    min-width: 250.5px;
  }
}

.footer__sns {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
}
@media screen and (min-width: 900px) {
  .footer__sns {
    margin-top: 48px;
    padding: 16px;
  }
}

.footer__sns-link {
  height: 40px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__sns-link:hover {
  opacity: 0.7;
}
.footer__sns-link img {
  height: 100%;
  width: auto;
}

.footer__copy-right {
  color: #404559;
  font-size: 12px;
  line-height: 150%;
}
@media screen and (min-width: 900px) {
  .footer__copy-right {
    margin-top: 40px;
  }
}