@charset "UTF-8";
body {
  font-size: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

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

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

@-webkit-keyframes fadeInFloat {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInFloat {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.heading {
  color: #ffffff;
  opacity: 0;
}
.heading.is-visible {
  -webkit-animation: fadeInFloat 1s ease-out forwards;
          animation: fadeInFloat 1s ease-out forwards;
}

.heading__title-en {
  /* 見出し英語SP */
  font-family: "Jost", sans-serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 500;
  line-height: 160%; /* 51.2px */
  letter-spacing: 0.96px;
  text-transform: uppercase;
}
@media screen and (min-width:1100px) {
  .heading__title-en {
    font-size: 64px;
    letter-spacing: 1.28px;
  }
}

.heading__title-jp {
  /* 見出し日本語SP */
  font-size: 15px;
  font-weight: 700;
  line-height: 180%; /* 27px */
  letter-spacing: 1.5px;
}
@media screen and (min-width:1100px) {
  .heading__title-jp {
    font-size: 18px;
    letter-spacing: 1.8px;
  }
}

.header {
  padding-block: 12px;
  padding-inline: 16px;
  background: -webkit-gradient(linear, right top, left top, from(#0291d9), to(#023e78));
  background: linear-gradient(270deg, #0291d9 0%, #023e78 100%);
  position: relative;
  z-index: 1001;
}
@media screen and (min-width:768px) {
  .header {
    padding-inline: 40px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  max-width: 1440px;
  margin: 0 auto;
}

.header__logo img {
  width: 175px;
  height: 32px;
  aspect-ratio: 175/32;
}
@media screen and (min-width:768px) {
  .header__logo img {
    width: 320px;
    height: 59px;
    aspect-ratio: 320/59;
  }
}

.header__icon {
  padding: 20px;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  width: 48px;
  height: 48px;
}
@media screen and (min-width:1100px) {
  .header__icon {
    display: none;
  }
}
.header__icon.is-active .drawer-icon__bar:first-child {
  -webkit-transform: rotate(20deg) translateY(4px);
          transform: rotate(20deg) translateY(4px);
}
.header__icon.is-active .drawer-icon__bar:last-child {
  -webkit-transform: rotate(-20deg) translateY(-4px);
          transform: rotate(-20deg) translateY(-4px);
}

.drawer__icon {
  position: relative;
}

.drawer-icon__bar {
  width: 40px;
  height: 2px;
  background: #ffffff;
  -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;
}

.header__nav {
  display: none;
}
@media screen and (min-width:1100px) {
  .header__nav {
    display: block;
    color: #ffffff;
    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:1100px) {
  .header__lists {
    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:1100px) {
  .header__link {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
    position: relative;
    display: inline-block;
  }
  .header__link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffffff;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
  }
  .header__link:hover::after {
    width: 100%;
  }
}

.button_header {
  position: relative;
  display: inline-block;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 44px;
  background: transparent;
  padding-block: 10px;
  padding-inline: 24px 46px;
  cursor: pointer;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  letter-spacing: 0.8px;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 1;
}
.button_header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  background: #023e78;
  border-radius: 44px;
  -webkit-transition: width 0.3s ease, height 0.4s ease;
  transition: width 0.3s ease, height 0.4s ease;
  z-index: -1;
}
.button_header:hover::before {
  width: 100%;
  height: 100%;
}
.button_header::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #ffd700;
  border-radius: 50%;
  top: 50%;
  right: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.button_header a {
  color: #ffffff;
  text-decoration: none;
}

.drawer {
  position: fixed;
  top: 71px;
  right: -100%;
  width: 100%;
  height: calc(100vh - 71px);
  padding: 20px 28px;
  background: -webkit-gradient(linear, right top, left top, from(#0291d9), to(#023e78));
  background: linear-gradient(270deg, #0291d9 0%, #023e78 100%);
  -webkit-transition: right 0.4s ease;
  transition: right 0.4s ease;
  z-index: 1000;
  overflow-y: auto;
}
.drawer.is-open {
  right: 0;
}
@media screen and (min-width:768px) {
  .drawer {
    top: 83px;
    height: calc(100vh - 83px);
  }
}
@media screen and (min-width:1100px) {
  .drawer {
    display: none;
  }
}

.drawer__contents {
  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;
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (min-width:768px) {
  .drawer__contents {
    gap: 40px;
  }
}

.drawer__lists {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (min-width:768px) {
  .drawer__lists {
    gap: 16px;
  }
}

.drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-bottom: 1px solid #c4ccd7;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
}
@media screen and (min-width:768px) {
  .drawer__list {
    gap: 16px;
    padding: 24px 0;
  }
}
.drawer__list::after {
  content: "";
  width: 8px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 1/2;
  background: url(../img/drawer-arrow.png) no-repeat center center/contain;
}

.main {
  height: 636px;
  background: -webkit-gradient(linear, right top, left top, from(#0291d9), to(#023e78));
  background: linear-gradient(270deg, #0291d9 0%, #023e78 100%);
  position: relative;
  overflow: visible;
  padding-top: 40px;
}
@media screen and (min-width:1100px) {
  .main {
    padding-top: 45px;
    height: 657px;
  }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.main__inner {
  position: relative;
}

.main__img-scroll {
  width: 100%;
  height: 560px;
  overflow: hidden;
  position: relative;
  opacity: 0;
}
.main__img-scroll.is-visible {
  -webkit-animation: fadeInUp 1.2s ease-out 0.3s forwards;
          animation: fadeInUp 1.2s ease-out 0.3s forwards;
}

.main__img-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 300%;
  -webkit-animation: scroll-left 45s linear infinite;
          animation: scroll-left 45s linear infinite;
}

@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-66.666%);
            transform: translateX(-66.666%);
  }
}

@keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-66.666%);
            transform: translateX(-66.666%);
  }
}
.main__img {
  width: 100%;
  height: 500px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.main__img img {
  width: 100%;
  height: 108%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width:768px) {
  .main__img img {
    height: 115%;
  }
}

.main__title-box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  position: absolute;
  left: 20px;
  bottom: 0;
  opacity: 0;
}
@media screen and (min-width:1100px) {
  .main__title-box {
    left: 40px;
    bottom: -52px;
    gap: 18px;
  }
}
.main__title-box.is-visible {
  -webkit-animation: fadeInUp 1.2s ease-out 0.8s forwards;
          animation: fadeInUp 1.2s ease-out 0.8s forwards;
}

/* SPでは非表示、PCでは表示 */
.main__title-box.hidden-sp {
  display: none;
}
@media screen and (min-width:1100px) {
  .main__title-box.hidden-sp {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

/* PCでは非表示、SPでは表示 */
.main__title-box.hidden-pc {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media screen and (min-width:1100px) {
  .main__title-box.hidden-pc {
    display: none;
  }
}

.main-title {
  color: #023e78;
  font-family: "Jost", sans-serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 500;
  line-height: 120%; /* 38.4px */
  letter-spacing: 0.64px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6px 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(40px);
}
@media screen and (min-width:768px) {
  .main-title {
    font-size: 64px;
    line-height: 130%; /* 83.2px */
    letter-spacing: 1.28px;
    padding: 8px 24px;
  }
}

.message {
  padding-block: 100px;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background: -webkit-gradient(linear, right top, left top, from(#0291d9), to(#023e78));
  background: linear-gradient(270deg, #0291d9 0%, #023e78 100%);
  position: relative;
}
@media screen and (min-width:768px) {
  .message {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width:1100px) {
  .message {
    padding-block: 100px 170px;
    padding-inline: 100px 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.message::after {
  content: "";
  position: absolute;
  background: url(../img/message-bg.png) no-repeat center center/contain;
  left: -35px;
  bottom: 33px;
  width: 353px;
  aspect-ratio: 353/188;
  z-index: 1;
  pointer-events: none;
}
@media screen and (min-width:768px) {
  .message::after {
    background: url(../img/message-bg.png) repeat-x left center;
    background-size: 800px auto;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 574px;
  }
}
@media screen and (min-width:1100px) {
  .message::after {
    background-size: 1080px auto;
    height: 574px;
  }
}

.message__inner {
  z-index: 2;
}
@media screen and (min-width:768px) {
  .message__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
  }
}
@media screen and (min-width:1100px) {
  .message__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 100%;
    gap: 24px;
    max-width: 1440px;
  }
}

.message__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 48px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (min-width:768px) {
  .message__texts {
    padding: 64px 0px 64px 48px;
  }
}
@media screen and (min-width:1100px) {
  .message__texts {
    width: 50%;
    padding: 145px 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 80px;
  }
}

.message__texts-text {
  color: #023e78;
  text-shadow: 0 0 64px rgba(0, 0, 0, 0.25);
  font-size: 15px;
  font-weight: 500;
  line-height: 220%; /* 33px */
}
@media screen and (min-width:1100px) {
  .message__texts-text {
    font-size: 18px;
  }
}
.message__texts-text span {
  color: #023e78;
  -webkit-transition: color 0.6s ease;
  transition: color 0.6s ease;
  display: inline-block;
}
.message__texts-text span.is-animate {
  color: #ffffff;
}

.message__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 64px 0;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
  width: 100%;
}
@media screen and (min-width:768px) {
  .message__img {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width:1100px) {
  .message__img {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0;
  }
}
@media screen and (min-width:1440px) {
  .message__img {
    position: absolute;
    right: 0;
    bottom: -55px;
    width: 640px;
    height: 800px;
    padding: 0;
  }
}
.message__img img {
  border-radius: 8px;
}
@media screen and (min-width:1100px) {
  .message__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.business {
  background: -webkit-gradient(linear, right top, left top, from(#0291d9), to(#023e78));
  background: linear-gradient(270deg, #0291d9 0%, #023e78 100%);
  padding: 0 20px;
  overflow: hidden;
}
@media screen and (min-width:1100px) {
  .business {
    padding: 0 60px;
  }
}
@media screen and (min-width:1440px) {
  .business {
    padding: 0 100px;
  }
}

.business__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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}

.business__tab {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  row-gap: 13px;
  width: 100%;
}
@media screen and (min-width:768px) {
  .business__tab {
    grid-template-columns: repeat(4, 1fr);
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }
}
@media screen and (min-width:1100px) {
  .business__tab {
    grid-template-columns: repeat(4, 1fr);
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    margin-top: 24px;
  }
}

.business__tab-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-block: 8px;
  padding-inline: 8px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  border-radius: 4px;
  border: 2px solid #023e78;
  background: #e4eaf1;
}
@media screen and (min-width:1100px) {
  .business__tab-content {
    padding-block: 20px;
    padding-inline: 16px 0;
    gap: 4px;
  }
}
@media screen and (min-width:1440px) {
  .business__tab-content {
    padding-block: 20px;
    padding-inline: 40px 0;
    gap: 4px;
  }
}
.business__tab-content.is-active {
  background: #023e78;
  border-color: #ffffff;
}

.business__tab-content-en {
  color: #023e78;
  font-family: "Jost", sans-serif;
  font-size: 8px;
  font-style: italic;
  font-weight: 500;
  line-height: 160%; /* 12.8px */
  text-transform: uppercase;
}
@media screen and (min-width:1100px) {
  .business__tab-content-en {
    font-size: 14px;
  }
}
.business__tab-content.is-active .business__tab-content-en {
  color: #ffffff;
}

@media screen and (min-width:1100px) {
  .business__tab-content-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 12px;
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
}

.business__tab-content-number {
  color: #023e78;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  line-height: 150%; /* 21px */
}
@media screen and (min-width:1100px) {
  .business__tab-content-number {
    font-size: 20px;
  }
}
.business__tab-content.is-active .business__tab-content-number {
  color: #ffffff;
}

.business__tab-content-jp {
  color: #023e78;
  font-size: 13px;
  font-weight: 700;
  line-height: 160%; /* 20.8px */
}
@media screen and (min-width:1100px) {
  .business__tab-content-jp {
    font-size: 15px;
  }
}
@media screen and (min-width:1440px) {
  .business__tab-content-jp {
    font-size: 18px;
  }
}
.business__tab-content.is-active .business__tab-content-jp {
  color: #ffffff;
}

.business__card-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  width: calc(100% + 20px);
  margin-right: -20px;
  padding-right: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media screen and (min-width:1100px) {
  .business__card-wrap {
    gap: 24px;
    width: calc(100% + 100px);
    margin-right: -100px;
    padding-right: 100px;
  }
}
.business__card-wrap::-webkit-scrollbar {
  display: none;
}

.business__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 312px;
  padding: 12px;
  -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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  border-radius: 4px;
  background: #e4eaf1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  scroll-snap-align: start;
}
@media screen and (min-width:1100px) {
  .business__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 608px;
    padding: 28px;
    -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;
    gap: 20px;
  }
}
.business__card:last-child {
  margin-right: 0;
}

.business__card-title-en {
  color: #023e78;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-style: italic;
  font-weight: 500;
  line-height: 160%; /* 19.2px */
  letter-spacing: 0.36px;
  text-transform: uppercase;
}
@media screen and (min-width:1100px) {
  .business__card-title-en {
    font-size: 16px;
    letter-spacing: 0.48px;
  }
}

.business__card-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  margin-top: 4px;
}

.business__card-title-number {
  color: #023e78;
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 160%; /* 32px */
  letter-spacing: 0.6px;
}
@media screen and (min-width:1100px) {
  .business__card-title-number {
    font-size: 28px;
    letter-spacing: 0.84px;
  }
}

.business__card-title-jp {
  color: #023e78;
  font-size: 18px;
  font-weight: 700;
  line-height: 160%; /* 28.8px */
}
@media screen and (min-width:1100px) {
  .business__card-title-jp {
    font-size: 24px;
  }
}

.business__bottom-wrap {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.business__bottom-title {
  color: #023e78;
  font-size: 15px;
  font-weight: 700;
  line-height: 160%; /* 24px */
}
@media screen and (min-width:1100px) {
  .business__bottom-title {
    font-size: 18px;
  }
}

.business__bottom-body {
  list-style-type: disc;
  padding-left: 20px;
}

.business__bottom-text {
  color: #404559;
  font-size: 14px;
  font-weight: 500;
  line-height: 170%; /* 23.8px */
}
@media screen and (min-width:1100px) {
  .business__bottom-text {
    font-size: 16px;
  }
}

.business__bottom-body li {
  margin-top: 4px;
}

.business__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: 20px;
  padding-inline: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-radius: 4px;
  background: #023e78;
  border: 1px solid #023e78;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  cursor: pointer;
}
@media screen and (min-width:1100px) {
  .business__button {
    padding-inline: 40px;
    margin-top: 6px;
  }
}
.business__button::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  background: #f2f4f6;
  border-radius: 4px;
  -webkit-transition: width 0.3s ease, height 0.4s ease;
  transition: width 0.3s ease, height 0.4s ease;
  z-index: -1;
}
.business__button:hover::before {
  width: 100%;
  height: 100%;
}
.business__button:hover {
  border-color: #023e78;
}
.business__button:hover .business__button-text {
  color: #023e78;
}
.business__button:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(14%) sepia(76%) saturate(2831%) hue-rotate(196deg) brightness(95%) contrast(102%);
          filter: brightness(0) saturate(100%) invert(14%) sepia(76%) saturate(2831%) hue-rotate(196deg) brightness(95%) contrast(102%);
}
.business__button img {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

.business__button-text {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.challenge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: 120px 77px;
  -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;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background: -webkit-gradient(linear, right top, left top, from(#0291d9), to(#023e78));
  background: linear-gradient(270deg, #0291d9 0%, #023e78 100%);
  position: relative;
  overflow: hidden;
}
@media screen and (min-width:1100px) {
  .challenge {
    padding-block: 232px 53px;
  }
}
.challenge::after {
  content: "";
  position: absolute;
  background: url(../img/yourchallenge-bg.png) no-repeat center center/contain;
  left: -32px;
  top: 51px;
  width: 531px;
  aspect-ratio: 531/187;
  z-index: 0;
  pointer-events: none;
}
@media screen and (min-width:1100px) {
  .challenge::after {
    width: 1620px;
    height: 574px;
    left: 27%;
    top: 0;
  }
}

.challenge__inner {
  padding-inline: 24px;
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width:1100px) {
  .challenge__inner {
    padding-inline: 100px;
  }
}

.challenge__contents {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  margin-top: 40px;
  max-width: 1440px;
}
@media screen and (min-width:1100px) {
  .challenge__contents {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 75px;
    -webkit-column-gap: 75px;
       -moz-column-gap: 75px;
            column-gap: 75px;
    row-gap: 33px;
    padding-bottom: 80px;
    margin: 0 auto;
    margin-top: 66px;
  }
}

.challenge__content-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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-radius: 4px;
  border-bottom: 12px solid #37a4db;
  background: rgba(244, 251, 255, 0.7);
}
@media screen and (min-width:1100px) {
  .challenge__content-card {
    width: 100%;
    height: 590px;
  }
}

@media screen and (min-width:1100px) {
  .challenge__content-card:nth-child(1) {
    -webkit-transform: translateY(64px);
            transform: translateY(64px);
    margin-bottom: 64px;
  }
}

.challenge__content-card:nth-child(2) {
  border-bottom-color: #2766ae;
}

.challenge__content-card:nth-child(3) {
  border-bottom-color: #025178;
}
@media screen and (min-width:1100px) {
  .challenge__content-card:nth-child(3) {
    -webkit-transform: translateY(64px);
            transform: translateY(64px);
    margin-bottom: 64px;
    height: 617px;
  }
}

.challenge__content-card:nth-child(4) {
  border-bottom-color: #023e78;
}
@media screen and (min-width:1100px) {
  .challenge__content-card:nth-child(4) {
    height: 617px;
  }
}

.challenge__content-card-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 28px;
  -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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4px;
  border-radius: 4px 0 4px 0;
  background: #37a4db;
}

.challenge__content-card:nth-child(2) .challenge__content-card-title {
  background: #2766ae;
}

.challenge__content-card:nth-child(3) .challenge__content-card-title {
  background: #025178;
}

.challenge__content-card:nth-child(4) .challenge__content-card-title {
  background: #023e78;
}

.challenge__content-card-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.challenge__content-card-title-en {
  color: #ffffff;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
  line-height: 100%; /* 15px */
  letter-spacing: 0.45px;
}
@media screen and (min-width:1100px) {
  .challenge__content-card-title-en {
    font-size: 18px;
    letter-spacing: 0.54px;
  }
}

.challenge__content-card-title-number {
  color: #ffffff;
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 100%; /* 20px */
  letter-spacing: 0.6px;
}
@media screen and (min-width:1100px) {
  .challenge__content-card-title-number {
    font-size: 24px;
    letter-spacing: 0.72px;
  }
}

.challenge__content-card-title-jp {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 160%; /* 28.8px */
}
@media screen and (min-width:1100px) {
  .challenge__content-card-title-jp {
    font-size: 24px;
  }
}

.challenge__content-card-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: 29px 18px;
  padding-inline: 24px;
  -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;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (min-width:1100px) {
  .challenge__content-card-bottom {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: 38px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.challenge__content-card-bottom img {
  margin-top: auto;
}

.challenge__content-card-text {
  color: #404559;
  font-size: 15px;
  font-weight: 500;
  line-height: 170%; /* 25.5px */
}
@media screen and (min-width:1100px) {
  .challenge__content-card-text {
    font-size: 16px;
  }
}

.stories {
  padding-inline: 20px;
  background: #e4eaf1;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width:1100px) {
  .stories {
    padding-inline: 100px;
  }
}
.stories::after {
  content: "";
  position: absolute;
  background: url(../img/stories-bg.png) no-repeat center center/contain;
  width: 305px;
  height: 162.102px;
  aspect-ratio: 305/162.1;
  left: -23px;
  top: 6px;
  z-index: 0;
  pointer-events: none;
}
@media screen and (min-width:1100px) {
  .stories::after {
    width: 940.767px;
    height: 500px;
    aspect-ratio: 940.77/500;
    left: -100.001px;
    top: -11.5px;
  }
}

.stories__inner {
  padding-block: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width:1100px) {
  .stories__inner {
    padding-block: 120px;
    gap: 40px;
  }
}

.stories__slider {
  width: calc(100vw - 20px);
  margin-left: 0;
  overflow: visible;
  position: relative;
}
@media screen and (min-width:1100px) {
  .stories__slider {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
  }
}

.stories__swiper {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width:1100px) {
  .stories__swiper {
    overflow: visible;
  }
}

.stories__wrapper {
  padding-bottom: 156px;
}
@media screen and (min-width:1100px) {
  .stories__wrapper {
    padding-bottom: 144px;
  }
}

.swiper-slide {
  width: 312px;
  height: auto;
}
@media screen and (min-width:1100px) {
  .swiper-slide {
    width: 386px;
  }
}

.stories__slide {
  width: 312px;
  height: 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: 20px;
  position: relative;
}
@media screen and (min-width:1100px) {
  .stories__slide {
    width: 386px;
  }
}

.stories__img {
  margin-top: 44px;
  height: 416px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  aspect-ratio: 3/4;
  position: relative;
}
@media screen and (min-width:1100px) {
  .stories__img {
    height: 514px;
  }
}
.stories__img img {
  width: 100%;
  height: auto;
  -webkit-filter: drop-shadow(0px 5px 15px rgba(26, 150, 239, 0.15));
          filter: drop-shadow(0px 5px 15px rgba(26, 150, 239, 0.15));
}

.stories__slide-number {
  color: #023e78;
  text-align: justify;
  text-shadow: 1px 1px 0 #fff;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--, #fff);
  font-family: "Jost", sans-serif;
  font-size: 56px;
  font-style: italic;
  font-weight: 500;
  line-height: 150%; /* 84px */
  letter-spacing: 1.12px;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 2;
}
.stories__img-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 24px;
  -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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  position: absolute;
  left: 0;
  top: 48.5%;
  z-index: 2;
}
@media screen and (min-width:1100px) {
  .stories__img-text {
    top: 57%;
  }
}

.stories__img-text-jp {
  color: #023e78;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: #ffffff;
}

.stories__img-text-en {
  color: #023e78;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: #ffffff;
}

.stories__img-text-name {
  font-size: 20px;
}

.stories__text {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  line-height: 200%; /* 30px */
  letter-spacing: 0.3px;
  padding: 10px 16px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border: 2px solid #023e78;
  background: #023e78;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width:1100px) {
  .stories__text {
    padding: 10px 15px;
  }
}

.stories__button-prev,
.stories__button-next {
  width: 45px;
  height: 45px;
  position: absolute;
  bottom: 0 !important;
  top: initial !important;
  border-radius: 50%;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  z-index: 10;
}
@media screen and (min-width:1100px) {
  .stories__button-prev,
  .stories__button-next {
    width: 80px;
    height: 80px;
    bottom: 2px !important;
  }
}
.stories__button-prev::before,
.stories__button-next::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  background: #023e78;
  border-radius: 50%;
  -webkit-transition: width 0.3s ease, height 0.4s ease;
  transition: width 0.3s ease, height 0.4s ease;
  z-index: -1;
  pointer-events: none;
}
.stories__button-prev:hover::before,
.stories__button-next:hover::before {
  width: 100%;
  height: 100%;
}
.stories__button-prev:hover,
.stories__button-next:hover {
  border-color: #ffffff;
}
.stories__button-prev svg,
.stories__button-next svg {
  display: none;
}

.stories__button-prev {
  right: 84px !important;
  left: initial !important;
  background: url(../img/prev-icon.png) no-repeat center center/contain;
}
@media screen and (min-width:1100px) {
  .stories__button-prev {
    right: auto !important;
    left: calc(50% + 620px - 280px) !important;
  }
}
@media screen and (min-width:1440px) {
  .stories__button-prev {
    left: calc(50% + 620px - 180px) !important;
  }
}
.stories__button-prev:hover {
  background-image: none;
}
.stories__button-prev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: url(../img/prev-icon.png) no-repeat center center/contain;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  pointer-events: none;
}
@media screen and (min-width:1100px) {
  .stories__button-prev::after {
    width: 80px;
    height: 80px;
  }
}
.stories__button-prev:hover::after {
  opacity: 1;
}

.stories__button-next {
  right: 20px !important;
  background: url(../img/next-icon.png) no-repeat center center/contain;
}
@media screen and (min-width:1100px) {
  .stories__button-next {
    right: auto !important;
    left: calc(50% + 620px - 180px) !important;
  }
}
@media screen and (min-width:1440px) {
  .stories__button-next {
    left: calc(50% + 620px - 80px) !important;
  }
}
.stories__button-next:hover {
  background-image: none;
}
.stories__button-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: url(../img/next-icon.png) no-repeat center center/contain;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  pointer-events: none;
}
@media screen and (min-width:1100px) {
  .stories__button-next::after {
    width: 80px;
    height: 80px;
  }
}
.stories__button-next:hover::after {
  opacity: 1;
}

.stories__scrollbar {
  width: calc(100vw - 40px) !important;
  height: 8px !important;
  background: #c4ccd7;
  bottom: 81px !important;
  max-width: 90vw !important;
  left: 0 !important;
}
@media screen and (min-width:1100px) {
  .stories__scrollbar {
    width: 60% !important;
    bottom: 34px !important;
  }
}
@media screen and (min-width:1440px) {
  .stories__scrollbar {
    width: 976px !important;
    bottom: 34px !important;
  }
}

.swiper-scrollbar-drag {
  background-color: #0961b6;
}

.culture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-top: 80px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  background: #f2f4f6;
  overflow: hidden;
}
@media screen and (min-width:1100px) {
  .culture {
    padding-top: 120px;
    gap: 64px;
  }
}

.culture__inner {
  padding-inline: 20px;
  width: 100%;
}
@media screen and (min-width:1100px) {
  .culture__inner {
    padding-inline: 100px;
  }
}

.culture__heading__title-en {
  background: -webkit-gradient(linear, right top, left top, from(#0291d9), to(#023e78));
  background: linear-gradient(270deg, #0291d9 0%, #023e78 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.culture__heading__title-jp {
  color: #404559;
}

.culture__top {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  padding-bottom: 85px;
  margin-top: 40px;
  padding-inline: 16px;
  max-width: 1440px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
@media screen and (min-width:1100px) {
  .culture__top {
    padding-inline: 40px;
    margin: 0 auto;
    margin-top: 60px;
    padding-bottom: 116px;
  }
}

.culture__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: 28px;
  -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;
  gap: 35px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-bottom: 2px solid #c4ccd7;
}
@media screen and (min-width:1100px) {
  .culture__card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    padding-inline: 34px;
    padding-bottom: 27px;
  }
}

.culture__card:nth-child(3) {
  border-bottom: none;
}

.culture__card-head {
  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;
  gap: 40px;
}
@media screen and (min-width:768px) {
  .culture__card-head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width:1100px) {
  .culture__card-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width:1440px) {
  .culture__card-head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.culture__card-head img {
  width: 63.882px;
  height: 63.882px;
}

@media screen and (min-width:768px) {
  .culture__card-title {
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 12px;
  }
}
@media screen and (min-width:1100px) {
  .culture__card-title {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 395px;
  }
}
@media screen and (min-width:1440px) {
  .culture__card-title {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.culture__card-title-jp {
  color: #023e78;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%; /* 27px */
  padding-bottom: 3px;
}
@media screen and (min-width:1100px) {
  .culture__card-title-jp {
    font-size: 24px;
    line-height: 160%; /* 38.4px */
  }
}

.culture__card-title-en {
  color: #023e78;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 500;
  line-height: 160%; /* 20.8px */
  letter-spacing: 0.39px;
  text-transform: uppercase;
}
@media screen and (min-width:1100px) {
  .culture__card-title-en {
    font-size: 14px;
    letter-spacing: 0.42px;
  }
}

.culture__card-text {
  color: #404559;
  font-size: 15px;
  font-weight: 500;
  line-height: 170%; /* 25.5px */
}
@media screen and (min-width:1100px) {
  .culture__card-text {
    font-size: 16px;
  }
}

.culture__img {
  background-attachment: scroll;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 380px;
  background-image: url("../img/culture-office-bg.png");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.culture__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-block: 80px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  position: relative;
  max-width: 1440px;
}
@media screen and (min-width:1100px) {
  .culture__bottom {
    padding-block: 120px;
    margin: 0 auto;
  }
}
.culture__bottom::after {
  content: "";
  position: absolute;
  background: url(../img/culture-bg.png) no-repeat center center/contain;
  right: -88px;
  top: -56.646px;
  width: 289px;
  height: 313px;
  aspect-ratio: 289/313;
  z-index: 0;
  pointer-events: none;
}
@media screen and (min-width:1100px) {
  .culture__bottom::after {
    right: -143px;
    top: -380px;
    width: 810px;
    height: 878px;
    aspect-ratio: 405/439;
  }
}

.culture__bottom-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.culture__bottom-title svg {
  width: 20px;
  height: 20px;
  aspect-ratio: 1/1;
}
@media screen and (min-width:1100px) {
  .culture__bottom-title svg {
    width: 29.309px;
    height: 29.309px;
  }
}

.culture__bottom-title-jp {
  color: #404559;
  font-size: 20px;
  font-weight: 700;
  line-height: 160%; /* 32px */
}
@media screen and (min-width:1100px) {
  .culture__bottom-title-jp {
    font-size: 24px;
  }
}

.culture__bottom-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 16px;
  -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;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  position: relative;
  z-index: 1;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
@media screen and (min-width:1100px) {
  .culture__bottom-body {
    padding: 0 40px;
  }
}

.faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 64px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  background: #e4eaf1;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width:1100px) {
  .faq {
    padding-block: 120px;
  }
}
.faq::before {
  content: "";
  position: absolute;
  background: url(../img/faq-bg2.png) no-repeat center center/contain;
  right: -15px;
  top: -25px;
  width: 183px;
  height: 183px;
  z-index: 1;
  pointer-events: none;
}
@media screen and (min-width:1100px) {
  .faq::before {
    width: 317px;
    height: 317px;
    right: -80px;
    top: 0px;
  }
}
.faq::after {
  content: "";
  position: absolute;
  background: url(../img/faq-bg3.png) no-repeat center center/contain;
  left: -40px;
  bottom: -137px;
  width: 317px;
  height: 343px;
  aspect-ratio: 317/343;
  z-index: 1;
  pointer-events: none;
}
@media screen and (min-width:1100px) {
  .faq::after {
    width: 725px;
    height: 786px;
    aspect-ratio: 725/786;
    left: -140px;
    bottom: -45px;
  }
}

.faq__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-inline: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  position: relative;
  z-index: 2;
}
@media screen and (min-width:1100px) {
  .faq__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-inline: 100px;
    gap: 160px;
    max-width: 1640px;
    margin: 0 auto;
    width: 1440px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.faq__boxes {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  position: relative;
  z-index: 2;
}
@media screen and (min-width:1100px) {
  .faq__boxes {
    gap: 24px;
    width: 880px;
  }
  .faq__boxes::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: 8.167px;
    width: 317px;
    height: 317px;
    border-radius: 317px;
    opacity: 0.5;
    background: #afd2e7;
    -webkit-filter: blur(75px);
            filter: blur(75px);
    z-index: -1;
    pointer-events: none;
  }
}

.faq__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-radius: 4px;
  background: #f2f4f6;
}
@media screen and (min-width:1100px) {
  .faq__box {
    width: 100%;
    padding: 8px 20px;
  }
}

.faq-box__head {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-block: 8px 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-bottom: 2px solid transparent;
}
.faq__box[open] .faq-box__head {
  border-bottom: 2px solid #c4ccd7;
}
@media screen and (min-width:1100px) {
  .faq-box__head {
    padding-block: 0;
  }
}

.faq-box__q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width:1100px) {
  .faq-box__q {
    padding: 16px 32px;
    gap: 32px;
  }
}

.faq-box__q-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width:1100px) {
  .faq-box__q-wrap {
    gap: 20px;
  }
}

.faq-box__q-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 28px;
  height: 28px;
  -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;
}
@media screen and (min-width:1100px) {
  .faq-box__q-icon {
    width: 36px;
    height: 36px;
  }
}

.faq-box__q-text {
  color: #404559;
  font-size: 15px;
  font-weight: 700;
  line-height: 160%; /* 24px */
}
@media screen and (min-width:1100px) {
  .faq-box__q-text {
    font-size: 20px;
  }
}

.faq-box__arrow {
  width: 32px;
  height: 32px;
  aspect-ratio: 1/1;
  -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;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq__box[open] .faq-box__arrow {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.faq-box__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (min-width:1100px) {
  .faq-box__body {
    padding: 16px 32px;
  }
}

.faq-box__a-text {
  color: #023e78;
  font-size: 15px;
  font-weight: 700;
  line-height: 200%; /* 30px */
}
@media screen and (min-width:1100px) {
  .faq-box__a-text {
    font-size: 16px;
  }
}

.cta {
  padding-block: 12px;
  padding-inline: 12px;
  background: #e4eaf1;
  -webkit-perspective: 1200px;
          perspective: 1200px;
}
@media screen and (min-width:1100px) {
  .cta {
    position: relative;
    min-height: 600px;
    padding-block: 32px;
    padding-inline: 32px;
  }
}

@media screen and (min-width:1100px) {
  .cta__inner {
    position: relative;
    max-width: 1440px;
    margin-inline: auto;
    overflow: hidden;
  }
}

.cta__img {
  display: none;
}
@media screen and (min-width:1100px) {
  .cta__img {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 2;
  }
}

.cta__img-left,
.cta__img-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  -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));
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: clip-path 1.4s ease-out, -webkit-transform 1.4s ease-out;
  transition: clip-path 1.4s ease-out, -webkit-transform 1.4s ease-out;
  transition: transform 1.4s ease-out, clip-path 1.4s ease-out;
  transition: transform 1.4s ease-out, clip-path 1.4s ease-out, -webkit-transform 1.4s ease-out;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.cta__img-left img,
.cta__img-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

/* ★ 左パネル：中央を基準に左側へ */
.cta__img-left {
  left: 50%;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: translateX(-100%) rotateY(0deg);
          transform: translateX(-100%) rotateY(0deg);
}

/* ★ 右パネル：中央を基準に右側へ */
.cta__img-right {
  left: 50%;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: translateX(0%) rotateY(0deg);
          transform: translateX(0%) rotateY(0deg);
}

/* ================================
   ★ CTAが開くときの状態（is-open）
================================= */
.cta.is-open .cta__img-left {
  clip-path: polygon(0 0, 81% 12%, 80% 90%, 0 100%);
  -webkit-transform: translateX(-125%) rotateY(35deg);
          transform: translateX(-125%) rotateY(35deg);
}
.cta.is-open .cta__img-right {
  clip-path: polygon(24% 12%, 100% 0, 100% 100%, 24% 90%);
  -webkit-transform: translateX(20%) rotateY(30deg);
          transform: translateX(20%) rotateY(30deg);
}
.cta.is-open .cta__contents {
  opacity: 1;
}

.cta__contents {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: 56px 54px;
  -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: 43px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-radius: 8px;
  background: -webkit-gradient(linear, right top, left top, from(#0291d9), to(#023e78));
  background: linear-gradient(270deg, #0291d9 0%, #023e78 100%);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-out;
  transition: opacity 0.6s ease-out;
}
@media screen and (min-width:1100px) {
  .cta__contents {
    gap: 56px;
    padding-block: 113.5px;
  }
}

.cta__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-inline: 8px;
  -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;
  gap: 24px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (min-width:1100px) {
  .cta__top {
    gap: 36px;
  }
}

.cta__top-title {
  color: #ffffff;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 500;
  line-height: 150%; /* 48px */
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
@media screen and (min-width:1440px) {
  .cta__top-title {
    font-size: 56px;
    letter-spacing: 1.68px;
  }
}

.cta__top-text {
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 170%; /* 23.8px */
}
@media screen and (min-width:1100px) {
  .cta__top-text {
    font-size: 16px;
  }
}

.cta__button {
  width: 215px;
  font-size: 18px;
  padding-block: 16px;
  padding-inline: 64px 92px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid #ffffff;
  cursor: pointer;
}
.cta__button::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  background: #023e78;
  border-radius: 44px;
  -webkit-transition: width 0.3s ease, height 0.4s ease;
  transition: width 0.3s ease, height 0.4s ease;
  z-index: -1;
}
.cta__button:hover::before {
  width: 100%;
  height: 100%;
}
.cta__button::after {
  content: "";
  width: 12px;
  height: 12px;
  right: 40px;
}
@media screen and (min-width:1100px) {
  .cta__button {
    width: 235px;
    padding-block: 16px;
    font-size: 24px;
  }
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 10px 32px 10px;
  -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;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background: #e4eaf1;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width:1100px) {
  .footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 80px 80px 32px 80px;
    -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;
  }
}
.footer::after {
  content: "";
  position: absolute;
  background: url(../img/footer_bg.png) no-repeat center center/contain;
  right: -95px;
  bottom: -256.197px;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
@media screen and (min-width:1100px) {
  .footer::after {
    width: 844px;
    height: 1132px;
    aspect-ratio: 211/283;
    right: -7px;
    bottom: -308.197px;
  }
}

.footer__inner {
  padding: 10px;
  z-index: 2;
  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: 32px;
}
@media screen and (min-width:1100px) {
  .footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 1240px;
    margin: 0 auto;
    padding: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 50px;
  }
}

.footer__pc-wrap {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 32px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (min-width:768px) {
  .footer__pc-wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width:1100px) {
  .footer__pc-wrap {
    padding: 16px;
    gap: 50px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.footer__logo {
  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:1100px) {
  .footer__logo {
    gap: 40px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.footer__logo img {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.footer__logo img:hover {
  opacity: 0.7;
}

.footer__address {
  color: #404559;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
}

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

.footer__nav {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  gap: 10px;
}
@media screen and (min-width:1100px) {
  .footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-block: 0;
    padding-inline: 16px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
}

.footer__nav-text {
  color: #404559;
  font-size: 18px;
  font-weight: 700;
  line-height: 140%; /* 25.2px */
  padding: 8px 0;
  width: 100%;
}
.footer__nav-text a {
  position: relative;
  display: inline-block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__nav-text a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0961b6;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.footer__nav-text a:hover {
  opacity: 0.7;
}
.footer__nav-text a:hover::after {
  width: 100%;
}

.footer__bottom {
  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:1100px) {
  .footer__bottom {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: 62px;
  }
}

.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 38px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width:1100px) {
  .footer__sns {
    padding-left: 32px;
  }
}

.footer__sns-link {
  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;
  width: 40px;
  height: 40px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__sns-link:hover {
  opacity: 0.7;
}
.footer__sns-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__sns-link img[alt=YouTube] {
  -o-object-fit: cover;
     object-fit: cover;
}

.footer__copyright {
  color: #404559;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%; /* 18px */
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.modal.is-open {
  display: block;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #023e78;
  opacity: 0.5;
  cursor: pointer;
}

.modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  background: #f2f4f6;
  border-radius: 12px;
  border: 2px solid #c4ccd7;
  z-index: 10000;
}
@media screen and (min-width:1100px) {
  .modal__content {
    width: 85%;
    max-width: 1200px;
  }
}

.modal__close {
  width: 48px;
  height: 48px;
  background: #023e78;
  border: none;
  border-radius: 4px;
  font-size: 28px;
  line-height: 1;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.modal__close:hover {
  opacity: 0.8;
}
@media screen and (min-width:1100px) {
  .modal__close {
    width: 56px;
    height: 56px;
    font-size: 32px;
  }
}

.modal__body {
  padding: 16px;
}
@media screen and (min-width:1100px) {
  .modal__body {
    padding: 48px;
    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;
    max-width: 1200px;
    margin: 0 auto;
  }
}

.modal__header {
  margin-bottom: 32px;
}
@media screen and (min-width:1100px) {
  .modal__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 4px;
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
}

.modal__header-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}
@media screen and (min-width:1100px) {
  .modal__header-top {
    -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: flex-end;
    margin-bottom: 0;
  }
}

.modal__header-info {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (min-width:1100px) {
  .modal__header-info {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.modal__header-link {
  color: #023e78;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.modal__header-link:hover {
  opacity: 0.7;
}
@media screen and (min-width:1100px) {
  .modal__header-link {
    font-size: 16px;
  }
}

.modal__header-en {
  color: #023e78;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  line-height: 160%;
  text-transform: uppercase;
}
@media screen and (min-width:1100px) {
  .modal__header-en {
    font-size: 16px;
  }
}

.modal__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
@media screen and (min-width:1100px) {
  .modal__title {
    gap: 16px;
    margin-bottom: 0;
  }
}

.modal__title-number {
  color: #023e78;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  line-height: 160%; /* 28.8px */
}
@media screen and (min-width:1100px) {
  .modal__title-number {
    font-size: 40px;
  }
}

.modal__title-text {
  color: #023e78;
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width:1100px) {
  .modal__title-text {
    font-size: 24px;
  }
}

.modal__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 40px;
}
@media screen and (min-width:1100px) {
  .modal__details {
    margin-bottom: 48px;
  }
}

.modal__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-bottom: 1px solid #c4ccd7;
}
.modal__section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media screen and (min-width:1100px) {
  .modal__section {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.modal__section-title {
  color: #023e78;
  font-size: 15px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width:1100px) {
  .modal__section-title {
    width: 378px;
    font-size: 18px;
  }
}

.modal__section-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: disc;
  padding-left: 20px;
}
@media screen and (min-width:1100px) {
  .modal__section-list {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.modal__section-list li {
  color: #404559;
  font-size: 15px;
  font-weight: 500;
  line-height: 170%;
}
@media screen and (min-width:1100px) {
  .modal__section-list li {
    font-size: 16px;
  }
}

.modal__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 36px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-radius: 4px;
  background: #023e78;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid #023e78;
  -webkit-transition: color 0.3s ease, border-color 0.3s ease;
  transition: color 0.3s ease, border-color 0.3s ease;
}
@media screen and (min-width:1100px) {
  .modal__button {
    min-width: 320px;
  }
}
.modal__button::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  background: #f2f4f6;
  border-radius: 4px;
  -webkit-transition: width 0.3s ease, height 0.4s ease;
  transition: width 0.3s ease, height 0.4s ease;
  z-index: -1;
}
.modal__button:hover::before {
  width: 100%;
  height: 100%;
}
.modal__button:hover {
  color: #023e78;
  border-color: #023e78;
}
.modal__button:hover::after {
  -webkit-filter: brightness(0) saturate(100%) invert(14%) sepia(76%) saturate(2831%) hue-rotate(196deg) brightness(95%) contrast(102%);
          filter: brightness(0) saturate(100%) invert(14%) sepia(76%) saturate(2831%) hue-rotate(196deg) brightness(95%) contrast(102%);
}
.modal__button::after {
  content: "";
  background: url(../img/modal-arrow.png) no-repeat center center/contain;
  width: 10px;
  height: 20px;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}