@charset "UTF-8";
body {
  color: #404559;
  font-size: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.7;
  font-weight: 500;
  background: -webkit-gradient(linear, right top, left top, from(#0291d9), to(#023e78));
  background: linear-gradient(270deg, #0291d9 0%, #023e78 100%);
}
body.is-fixed {
  overflow-y: hidden;
}
@media screen and (min-width: 900px) {
  body {
    font-size: 16px;
  }
}

.inner {
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .inner {
    padding-inline: 40px;
    max-width: 1320px;
    margin-inline: auto;
  }
}

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

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

.text-bold {
  font-weight: 700;
}

.button {
  border-radius: 44px;
  border: 1px solid #fff;
  padding: 9px 23px 9px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 110;
  overflow: hidden;
  font-family: "Jost", sans-serif;
  cursor: pointer;
}
.button::after {
  position: absolute;
  content: "";
  background: #023e78;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  -webkit-transform: translate(-150%, 50%) rotate(25deg);
          transform: translate(-150%, 50%) rotate(25deg);
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.button:hover::after {
  -webkit-transform: translate(-50%, -50%) rotate(25deg);
          transform: translate(-50%, -50%) rotate(25deg);
}

.button__text {
  line-height: 1.4;
  letter-spacing: 0.8px;
  font-size: 16px;
  text-transform: uppercase;
  z-index: 110;
}

.button_mark {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff400;
  z-index: 110;
}

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

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

.heading {
  color: #fff;
}
.heading-l .heading-en {
  background: -webkit-gradient(linear, right top, left top, from(#0a9ae5), to(#023e78));
  background: linear-gradient(270deg, #0a9ae5 0%, #023e78 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.heading-l .heading-ja {
  color: #404559;
}

.heading-en {
  font-family: "Jost", sans-serif;
  font-size: 32px;
  line-height: 1.6;
  letter-spacing: 0.96px;
  font-style: italic;
  text-transform: uppercase;
  font-weight: 500;
}
@media screen and (min-width: 900px) {
  .heading-en {
    font-size: 64px;
    letter-spacing: 1.28px;
  }
}

.heading-ja {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 1.5px;
}
@media screen and (min-width: 900px) {
  .heading-ja {
    font-size: 18px;
    letter-spacing: 1.8px;
  }
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header {
  height: 72px;
  position: fixed;
  background: -webkit-gradient(linear, right top, left top, from(#0291d9), to(#023e78));
  background: linear-gradient(270deg, #0291d9 0%, #023e78 100%);
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (min-width: 900px) {
  .header {
    height: 83px;
  }
}

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

.header-logo img {
  width: 175px;
}
@media screen and (min-width: 900px) {
  .header-logo img {
    width: 320px;
  }
}

.header-logo-link {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header-logo-link:hover {
  opacity: 0.8;
}

.header__nav {
  color: #fff;
  padding-inline: 28px;
  padding-block: 22px;
  font-size: 16px;
  position: fixed;
  top: 72px;
  right: 0;
  width: 100%;
  height: calc(100% - 72px);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  background: -webkit-gradient(linear, right top, left top, from(#0291d9), to(#023e78));
  background: linear-gradient(270deg, #0291d9 0%, #023e78 100%);
}
.header__nav.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 1200px) {
  .header__nav {
    position: static;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: auto;
    height: auto;
    background: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 37px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
  }
}

.header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1200px) {
  .header__lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 36px;
  }
}

.header__list {
  padding-block: 13.1px;
  border-bottom: 1px solid #c4ccd7;
  position: relative;
  font-size: 16px;
}
.header__list::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 23px;
  background: url("../img/header-arrow.png") no-repeat center center/contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
@media screen and (min-width: 1200px) {
  .header__list::after {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .header__list {
    border-bottom: none;
  }
}

@media screen and (min-width: 1200px) {
  .link {
    padding-bottom: 5px;
    position: relative;
  }
  .link::before {
    background: #fff;
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .link:hover::before {
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

.header__button {
  margin-top: 33px;
}
@media screen and (min-width: 1200px) {
  .header__button {
    margin-top: 0;
  }
}

.header--button {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.drawer-icon {
  position: relative;
  width: 44px;
  height: 17px;
  z-index: 50px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 5px;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  top: 5px;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
@media screen and (min-width: 1200px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #fff;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 0;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 8px;
}

.fv {
  margin-top: 72px;
  padding-top: 41px;
  padding-bottom: 36px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .fv {
    margin-top: 83px;
    padding-top: 45px;
    padding-bottom: 80px;
  }
}

.fv__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: fv-scroll 30s linear infinite;
          animation: fv-scroll 30s linear infinite;
}

@-webkit-keyframes fv-scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0); /* 0から開始 */
  }
  100% {
    /* 全く同じHTML（fv__slides）が2つ並んでいるので、
       ピッタリ半分（-50%）動かせば無限に繋がります */
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes fv-scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0); /* 0から開始 */
  }
  100% {
    /* 全く同じHTML（fv__slides）が2つ並んでいるので、
       ピッタリ半分（-50%）動かせば無限に繋がります */
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.fv__slides {
  display: grid;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  grid-template-rows: repeat(2, 254px);
  grid-template-columns: repeat(7, 150px);
  gap: 12px;
  padding-right: 12px;
  padding-bottom: 40px;
}
@media screen and (min-width: 900px) {
  .fv__slides {
    grid-template-rows: repeat(2, 270px);
    grid-template-columns: repeat(7, 269px);
    gap: 20px;
    padding-bottom: 0;
    padding-right: 20px;
  }
}

.fv__slide1 {
  grid-row: 1/3;
  grid-column: 1/2;
}

.fv__slide2 {
  grid-row: 1/2;
  grid-column: 2/3;
}

.fv__slide3 {
  grid-row: 2/3;
  grid-column: 2/3;
}

.fv__slide4 {
  grid-row: 1/3;
  grid-column: 3/5;
}

.fv__slide5 {
  grid-row: 1/2;
  grid-column: 5/6;
}

.fv__slide6 {
  grid-row: 2/3;
  grid-column: 5/6;
}

.fv__slide7 {
  grid-row: 1/3;
  grid-column: 6/8;
}

.fv__image {
  height: 100%;
}
.fv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

.fv__texts {
  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;
  position: absolute;
  top: 502px;
  left: 20px;
}
@media screen and (min-width: 900px) {
  .fv__texts {
    gap: 20px;
    left: 40px;
    top: 520px;
  }
}

.fv_text {
  font-family: "Jost", sans-serif;
  font-size: 32px;
  font-style: italic;
  color: #023e78;
  line-height: 1.2;
  letter-spacing: 0.64px;
  font-weight: 500;
  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;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(40px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1200px) {
  .fv_text {
    font-size: 64px;
    line-height: 1.3; /* 83.2px */
    letter-spacing: 1.28px;
    padding: 8px 24px;
  }
}
@media screen and (min-width: 1200px) {
  .fv_text.hidden-pc {
    display: none;
  }
}
.fv_text.hidden-sp {
  display: none;
}
@media screen and (min-width: 1200px) {
  .fv_text.hidden-sp {
    display: inline-block;
  }
}

.message {
  padding-top: 100px;
  padding-bottom: 164px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .message {
    padding-top: 214px;
    padding-bottom: 118px;
  }
  .message::before {
    position: absolute;
    content: "";
    background: url("../img/bg-image.png") no-repeat center center/contain;
    width: 1080px;
    height: 574px;
    right: -720px;
    left: 0;
    bottom: 2px;
  }
}
.message::after {
  position: absolute;
  content: "";
  width: 353px;
  height: 188px;
  background: url("../img/bg-image.png") no-repeat center center/contain;
  bottom: 33px;
  left: -66px;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .message::after {
    width: 1080px;
    height: 574px;
    left: 0;
    bottom: 2px;
  }
}

.message__inner {
  padding-left: 24px;
  padding-right: 0;
}
@media screen and (min-width: 900px) {
  .message__inner {
    padding-left: 100px;
  }
}

@media screen and (min-width: 900px) {
  .message__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}

.message__texts {
  padding-right: 24px;
  color: #fff;
  text-shadow: 0 0 64px rgba(0, 0, 0, 0.25);
  line-height: 2.2;
  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;
}
@media screen and (min-width: 900px) {
  .message__texts {
    padding-right: 0;
    font-size: 18px;
    gap: 83px;
  }
}
.message__texts > * span {
  color: #023e78;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
  will-change: color;
  font-weight: 500;
}
.message__texts.is-active span {
  color: #fff;
}

.message__image-area {
  margin-top: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
@media screen and (min-width: 900px) {
  .message__image-area {
    margin-top: 0;
  }
}

.message__image {
  display: block;
}
.message__image img {
  width: 331px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(48.92%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.5))), -webkit-gradient(linear, left bottom, left top, from(rgba(0, 23, 59, 0.07)), to(rgba(0, 23, 59, 0.07))), url(<path-to-image>) lightgray 50%/cover no-repeat;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 48.92%, rgba(255, 255, 255, 0.5) 100%), linear-gradient(0deg, rgba(0, 23, 59, 0.07) 0%, rgba(0, 23, 59, 0.07) 100%), url(<path-to-image>) lightgray 50%/cover no-repeat;
  border-radius: 4px;
}
@media screen and (min-width: 900px) {
  .message__image img {
    width: 640px;
  }
}

.business__heading {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .business__heading {
    max-width: 1280px;
    margin-inline: auto;
  }
}

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

.business__guides {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px 8px;
  padding-inline: 20px;
}
@media screen and (min-width: 1200px) {
  .business__guides {
    max-width: 1280px;
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
  }
}

.business__guide {
  border-radius: 4px;
  border: 2px solid #0961b6;
  background: #e4eaf1;
  padding: 6px;
  color: #023e78;
}
@media screen and (min-width: 1200px) {
  .business__guide {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 17px;
    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;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-left: 39px;
  }
}
.business__guide.is-clicked {
  border: 1px solid #fff;
  background: #023e78;
  color: #fff;
}

.guide__title-en {
  font-family: "Jost", sans-serif;
  font-size: 8px;
  font-style: italic;
  line-height: 1.6;
  font-weight: 500;
  text-transform: uppercase;
}
@media screen and (min-width: 1200px) {
  .guide__title-en {
    font-size: 14px;
  }
}

.guide__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 900px) {
  .guide__title {
    -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;
  }
}

.guide__number {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
  margin-top: 4px;
  font-weight: 500;
}
@media screen and (min-width: 900px) {
  .guide__number {
    font-size: 20px;
    margin-top: 0;
  }
}

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

.business__cards {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-left: 20px;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
  scroll-behavior: smooth;
}
@media screen and (min-width: 900px) {
  .business__cards {
    margin-right: 0;
    margin-left: auto;
    padding-left: 100px;
    gap: 25px;
  }
}

.business__card {
  border-radius: 4px;
  background: #e4eaf1;
  padding: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 312px;
  height: 100%;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media screen and (min-width: 900px) {
  .business__card {
    padding: 28px;
    width: 608px;
  }
}

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

.business__title {
  color: #023e78;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
@media screen and (min-width: 900px) {
  .business__title {
    margin-top: 8px;
  }
}

.business__number {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
  letter-spacing: 0.6px;
  font-weight: 500;
}
@media screen and (min-width: 900px) {
  .business__number {
    font-size: 28px;
    letter-spacing: 0.84px;
  }
}

.business__title-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .business__title-text {
    font-size: 24px;
  }
}

.business__card-image {
  margin-top: 12px;
}
@media screen and (min-width: 900px) {
  .business__card-image {
    margin-top: 17px;
  }
}

.business__card-body {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 900px) {
  .business__card-body {
    margin-top: 20px;
  }
}

.business__content-title {
  color: #023e78;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .business__content-title {
    font-size: 18px;
  }
}

.business__content-lists {
  margin-top: 6px;
}

.business__content-list {
  font-size: 14px;
  padding-left: 21px;
  line-height: 1.7;
  position: relative;
}
@media screen and (min-width: 900px) {
  .business__content-list {
    font-size: 16px;
    padding-left: 24px;
  }
}
.business__content-list::before {
  content: "";
  position: absolute;
  background: #404559;
  top: 11px;
  left: 9px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
}
@media screen and (min-width: 900px) {
  .business__content-list::before {
    top: 12px;
    left: 11px;
  }
}

.business__button {
  margin-top: 24px;
  border-radius: 4px;
  background: #023e78;
  border: 1px solid #023e78;
  padding: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .business__button {
    margin-top: 32px;
    padding-inline: 40px;
    padding-block: 0;
    height: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.business__button::after {
  content: "";
  position: absolute;
  background: #ffffff;
  top: 50%;
  left: 50%;
  /* ボタンの対角線よりもずっと大きく作る（300%あれば確実） */
  width: 300%;
  height: 300%;
  /* 1. rotateで斜めの角度を作る（面の角度）
    2. translateで左下（画面外）に待機させる
  */
  -webkit-transform: translate(-150%, 50%) rotate(25deg);
          transform: translate(-150%, 50%) rotate(25deg);
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .business__button::after {
    height: 500%;
    width: 500%;
  }
}
.business__button:hover .business--button {
  color: #023e78;
}
.business__button:hover .business--button::before, .business__button:hover .business--button::after {
  background-color: #023e78;
}
.business__button:hover::after {
  -webkit-transform: translate(-50%, -50%) rotate(25deg);
          transform: translate(-50%, -50%) rotate(25deg);
}

.business--button {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  z-index: 30;
  position: relative;
  display: block;
  width: 100%;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  pointer-events: none;
}
.business--button::before, .business--button::after {
  position: absolute;
  content: "";
  background: #fff;
  width: 14px;
  height: 2px;
  right: 5px;
  top: 50%;
  z-index: 50;
}
.business--button::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.business--button::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.business__modal {
  background-color: rgba(2, 62, 120, 0.5);
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  padding-inline: 10px;
}
.business__modal.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal__card {
  border-radius: 12px;
  border: 1px solid #023e78;
  background: #fff;
  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;
  padding: 15px;
  position: relative;
  z-index: 1000;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  max-width: 1200px;
  overflow-y: auto;
  border-radius: 12px;
  padding: 16px;
  width: 100%;
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 900px) {
  .modal__card {
    max-width: 1200px;
    margin-inline: auto;
    gap: 40px;
    padding-bottom: 48px;
    padding-inline: 48px;
    padding-top: 8px;
  }
}

.modal__heading {
  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;
  margin-top: 42px;
}

.modal__heading-en {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  font-size: 14px;
  font-style: italic;
}
@media screen and (min-width: 900px) {
  .modal__heading-en {
    font-size: 18px;
  }
}

.modal__heading-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .modal__heading-main {
    gap: 16px;
  }
}

.modal__heading-number {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .modal__heading-number {
    font-size: 30px;
  }
}

.modal__heading-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .modal__heading-text {
    font-size: 28px;
  }
}

.modal__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 11px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #c4ccd7;
}
@media screen and (min-width: 900px) {
  .modal__area {
    gap: 40px;
    -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;
    padding-top: 10px;
  }
}

.modal__area-title {
  color: #023e78;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .modal__area-title {
    font-size: 18px;
  }
}

.modal__lists {
  color: var(--, #404559);
  line-height: 1.7; /* 25.5px */
  padding-left: 24px;
}
@media screen and (min-width: 900px) {
  .modal__lists {
    width: 716px;
  }
}

.modal__list {
  position: relative;
}
.modal__list::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  top: 11px;
  left: -14px;
  background: #404559;
}

.modal__button {
  margin-top: 12px;
  text-align: center;
  border-radius: 4px;
  background: #023e78;
  padding: 17px;
}
@media screen and (min-width: 900px) {
  .modal__button {
    margin-top: 43px;
  }
}

.modal--button {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  padding-right: 46px;
  position: relative;
}
.modal--button::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 20px;
  background: url("../img/modal-arrow.png") no-repeat center center/contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -1px;
}

.business__modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  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;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .business__modal-close {
    -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: flex-end;
    gap: 8.5px;
    top: 53px;
    right: 44px;
  }
}

.business__modal--button img {
  width: 36px;
}

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

.challenge {
  padding-top: 120px;
  padding-bottom: 82px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .challenge {
    padding-top: 234px;
    padding-bottom: 133px;
  }
}
.challenge::after {
  position: absolute;
  content: "";
  width: 531px;
  height: 187px;
  background: url("../img/bg-image.png") no-repeat center center/contain;
  top: 49px;
  left: 0;
  top: 49px;
  left: -6px;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .challenge::after {
    width: 1620px;
    height: 574px;
    top: 4px;
    left: 309px;
  }
}

.challenge__inner {
  padding-inline: 24px;
}
@media screen and (min-width: 900px) {
  .challenge__inner {
    max-width: 1288px;
    margin-inline: auto;
  }
}

.challenge__cards {
  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: 27px;
}
@media screen and (min-width: 900px) {
  .challenge__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 5px 76px;
    margin-top: 65px;
  }
}

.challenge__card {
  border-radius: 4px;
  background: rgba(238, 246, 254, 0.7);
  padding: 106px 24px 16px 24px;
  position: relative;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .challenge__card {
    padding: 117px 24px 16px 24px;
  }
}
.challenge__card:nth-of-type(1) {
  border-bottom: 12px solid #37a4db;
  background: rgba(244, 251, 255, 0.7);
}
@media screen and (min-width: 900px) {
  .challenge__card:nth-of-type(1) {
    height: 590px;
  }
}
.challenge__card:nth-of-type(1) .challenge__card-title {
  background: #37a4db;
}
.challenge__card:nth-of-type(2) {
  border-bottom: 12px solid #2766ae;
  background: rgba(238, 246, 254, 0.7);
}
@media screen and (min-width: 900px) {
  .challenge__card:nth-of-type(2) {
    height: 590px;
  }
}
.challenge__card:nth-of-type(2) .challenge__card-title {
  background: #2766ae;
}
.challenge__card:nth-of-type(3) {
  border-bottom: 12px solid #025178;
  background: rgba(235, 243, 247, 0.7);
}
@media screen and (min-width: 900px) {
  .challenge__card:nth-of-type(3) {
    height: 617px;
  }
}
.challenge__card:nth-of-type(3) .challenge__card-title {
  background: #025178;
}
.challenge__card:nth-of-type(4) {
  border-bottom: 12px solid #023e78;
  background: rgba(233, 242, 250, 0.7);
}
@media screen and (min-width: 900px) {
  .challenge__card:nth-of-type(4) {
    height: 617px;
  }
}
.challenge__card:nth-of-type(4) .challenge__card-title {
  background: #023e78;
}
@media screen and (min-width: 900px) {
  .challenge__card:nth-last-of-type(2), .challenge__card:nth-last-of-type(4) {
    margin-top: 64px;
  }
}

.challenge__card-title {
  padding: 14px 28px 12px;
  color: #fff;
  background: #2766ae;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1px;
  position: absolute;
  top: 0;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px 0 4px 0;
}

.challenge__card-title1 {
  font-family: "Jost", sans-serif;
  line-height: 1;
  font-style: italic;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.challenge__card-title-en {
  letter-spacing: 0.45px;
}
@media screen and (min-width: 900px) {
  .challenge__card-title-en {
    font-size: 18px;
    letter-spacing: 0.54px;
  }
}

.challenge__card-title-number {
  font-size: 20px;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 900px) {
  .challenge__card-title-number {
    font-size: 24px;
    letter-spacing: 0.72px;
  }
}

.challenge__card-title2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .challenge__card-title2 {
    font-size: 24px;
  }
}

@media screen and (min-width: 900px) {
  .challenge__card-body {
    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;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 900px) {
  .challenge__card-text {
    font-size: 16px;
  }
}

.challenge__card-image {
  display: block;
  text-align: center;
  margin-top: 28px;
  border-radius: 4px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(77, 175, 236, 0.1)), to(rgba(77, 175, 236, 0.1))), url(<path-to-image>) lightgray 50%/cover no-repeat, #bebdbd;
  background: linear-gradient(0deg, rgba(77, 175, 236, 0.1) 0%, rgba(77, 175, 236, 0.1) 100%), url(<path-to-image>) lightgray 50%/cover no-repeat, #bebdbd;
}
@media screen and (min-width: 900px) {
  .challenge__card-image {
    margin-top: 0;
  }
}

.member {
  background: #e4eaf1;
  padding-top: 80px;
  padding-bottom: 238px;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.member::after {
  position: absolute;
  content: "";
  width: 305px;
  height: 162px;
  top: 9px;
  left: -2px;
  background: url("../img/bg-image3.png") no-repeat center center/contain;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .member::after {
    width: 941px;
    height: 500px;
    top: -11px;
  }
}
@media screen and (min-width: 900px) {
  .member {
    padding-top: 120px;
    padding-bottom: 42px;
  }
}

@media screen and (min-width: 900px) {
  .member__inner {
    margin-left: 100px;
    padding-bottom: 220px;
    overflow: hidden;
  }
}

.member__heading {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .member__heading {
    max-width: 1280px;
    margin-left: 0;
    margin-right: auto;
  }
}
@media screen and (min-width: 900px) {
  .member__heading {
    padding-inline: 0px;
  }
}

.member__content {
  position: relative;
  margin-top: 63px;
  padding-left: 20px;
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .member__content {
    margin-right: 0;
    margin-left: auto;
    padding-left: 0;
    margin-top: 59px;
  }
}

.member__swiper {
  overflow: visible;
  position: relative;
}
@media screen and (min-width: 900px) {
  .member__swiper {
    padding-top: 25px;
  }
}

.member__slide {
  height: auto;
  display: grid;
}

.member__card {
  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;
}

.member__card-head {
  position: relative;
}

.member__card-number {
  color: #023e78;
  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: 1.5;
  letter-spacing: 1.12px;
  position: absolute;
  top: -44px;
  right: 6px;
}

.member__card-image {
  aspect-ratio: 3/4;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(49.93%, rgba(255, 255, 255, 0)), to(#fff)), url(<path-to-image>) lightgray 50%/cover no-repeat;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 49.93%, #fff 100%), url(<path-to-image>) lightgray 50%/cover no-repeat;
  background-blend-mode: multiply, normal;
}
.member__card-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.member__card-text {
  color: #023e78;
  font-weight: 700;
  line-height: 1.5;
  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;
  position: absolute;
  bottom: 25px;
  left: 0;
}

.member__department {
  font-size: 20px;
  letter-spacing: 1px;
  padding: 4px 16px;
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.member__card-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 12px;
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.member__year {
  font-size: 16px;
  letter-spacing: 0.8px;
}

.member__name {
  font-size: 20px;
  letter-spacing: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.member__card-body {
  border: 2px solid #023e78;
  background: #023e78;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.3px;
  padding: 10px 14px;
  font-size: 15px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.member-prev,
.member-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  overflow: hidden;
  width: 40px;
  height: 40px;
  z-index: 20;
  top: auto;
  bottom: -158px;
  border-radius: 50%;
}
.member-prev svg,
.member-next svg {
  width: 15px;
  height: 30px;
  position: relative;
  z-index: 30;
}
@media screen and (min-width: 900px) {
  .member-prev svg,
  .member-next svg {
    width: 30px;
    height: 45px;
  }
}
@media screen and (min-width: 900px) {
  .member-prev,
  .member-next {
    bottom: -191px;
  }
}
@media screen and (min-width: 1200px) {
  .member-prev,
  .member-next {
    width: 80px;
    height: 80px;
    bottom: -215px;
  }
}
@media (min-width: 1400px) {
  .member-prev,
  .member-next {
    bottom: -142px;
  }
}
.member-prev,
.member-next {
  /* 枠線（外側の丸） */
}
.member-prev::after,
.member-next::after {
  content: "";
  position: absolute;
  overflow: hidden;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #0961b6;
  z-index: 25;
}
@media screen and (min-width: 1200px) {
  .member-prev::after,
  .member-next::after {
    width: 80px;
    height: 80px;
    border: 2px solid #0961b6;
  }
}
.member-prev,
.member-next {
  /* ホバー時に広がる斜め背景 */
}
.member-prev::before,
.member-next::before {
  content: "";
  position: absolute;
  overflow: hidden;
  background: #023e78;
  z-index: 10;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  /* ボタンの対角線よりもずっと大きく作る（300%あれば確実） */
  width: 300%;
  height: 300%;
  /* 1. rotateで斜めの角度を作る（面の角度）
    2. translateで左下（画面外）に待機させる
  */
  -webkit-transform: translate(-150%, 50%) rotate(25deg);
          transform: translate(-150%, 50%) rotate(25deg);
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.member-prev,
.member-next {
  /* ★ ホバー時のアニメーション */
}
.member-prev:hover,
.member-next:hover {
  overflow: hidden;
  /* SVG の stroke を白に */
}
.member-prev:hover svg path,
.member-next:hover svg path {
  stroke: #fff;
}
.member-prev:hover,
.member-next:hover {
  /* 背景が斜めに広がる */
}
.member-prev:hover::before,
.member-next:hover::before {
  -webkit-transform: translate(-50%, -50%) rotate(25deg);
          transform: translate(-50%, -50%) rotate(25deg);
}
.member-prev:hover,
.member-next:hover {
  /* 枠線を白に変更 */
}
.member-prev:hover::after,
.member-next:hover::after {
  border: 2px solid #fff;
}

.member-prev {
  right: 86px;
  left: auto !important;
}
@media screen and (min-width: 900px) {
  .member-prev {
    right: 162px;
  }
}
@media screen and (min-width: 1200px) {
  .member-prev {
    right: 201px;
  }
}
@media (min-width: 2300px) {
  .member-prev {
    left: 75% !important;
    -webkit-transform: translateX(-75%);
            transform: translateX(-75%);
  }
}

.member-next {
  right: 22px;
}
.member-next svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 900px) {
  .member-next {
    right: 102px;
  }
}
@media (min-width: 2300px) {
  .member-next {
    left: 80% !important;
    -webkit-transform: translateX(-80%);
            transform: translateX(-80%);
  }
}

.member-scrollbar {
  position: absolute;
  z-index: 20;
  background: #c4ccd7;
  height: 8px !important;
  border-radius: 0 !important;
  bottom: -76px !important;
  left: 50% !important;
  -webkit-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
  width: clamp(350px, 80vw, 976px) !important;
}
@media screen and (min-width: 900px) {
  .member-scrollbar {
    bottom: -109px !important;
    left: -10px !important;
    -webkit-transform: translateX(0) !important;
            transform: translateX(0) !important;
  }
}
@media (min-width: 1700px) {
  .member-scrollbar {
    left: 50% !important;
    -webkit-transform: translateX(-50%) !important;
            transform: translateX(-50%) !important;
  }
}

.swiper-scrollbar-drag {
  background: #0961b6;
  border-radius: 0 !important;
}
.culture {
  background: #f2f4f6;
  padding-top: 82px;
  padding-bottom: 80px;
}
@media screen and (min-width: 900px) {
  .culture {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.culture__lists {
  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;
  text-align: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
@media screen and (min-width: 1200px) {
  .culture__lists {
    padding-inline: 40px;
    max-width: 1220px;
    margin-inline: auto;
    margin-top: 63px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.culture__list {
  padding-top: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 33px;
  padding-inline: 16px;
}
.culture__list:nth-of-type(3) .culture__list-text {
  border-bottom: none;
}
@media screen and (min-width: 1200px) {
  .culture__list {
    border-bottom: 2px solid #c4ccd7;
  }
  .culture__list:nth-of-type(3) {
    border-bottom: none;
  }
}
@media screen and (min-width: 1200px) {
  .culture__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-block: 24px;
    padding-inline: 24px;
  }
}

.culture__list-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: 41px;
}
@media screen and (min-width: 1200px) {
  .culture__list-head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    max-width: 500px;
    width: 100%;
  }
}

.culture__list-image img {
  width: 64px;
}

.culture__list-title {
  color: #023e78;
  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;
}
@media screen and (min-width: 1200px) {
  .culture__list-title {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    text-align: left;
    gap: 12px;
  }
}

.culture__list-title-ja {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 1200px) {
  .culture__list-title-ja {
    font-size: 24px;
    line-height: 1.6;
  }
}

.culture__list-title-en {
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6; /* 20.8px */
  letter-spacing: 0.39px;
  text-transform: uppercase;
}
@media screen and (min-width: 1200px) {
  .culture__list-title-en {
    font-size: 14px;
    letter-spacing: 0.42px;
  }
}

.culture__list-text {
  text-align: left;
  line-height: 1.75;
  padding-bottom: 22px;
  border-bottom: 2px solid #c4ccd7;
}
@media screen and (min-width: 1200px) {
  .culture__list-text {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.cta {
  background-image: url("../img/cta-image.png");
  background-attachment: fixed; /* ← 背景を固定 */
  background-size: cover; /* ← 画面いっぱいに広げる */
  background-position: center; /* ← 位置中央 */
  background-repeat: no-repeat;
  height: 380px; /* ← 画面いっぱいの高さに */
  position: relative;
}

.benefits {
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
  background: #f2f4f6;
  position: relative;
}
@media screen and (min-width: 900px) {
  .benefits {
    padding-top: 120px;
    padding-bottom: 122px;
  }
}
.benefits::after {
  position: absolute;
  content: "";
  width: 289px;
  height: 313px;
  top: -57px;
  right: -69px;
  background: url("../img/bg-image2.png") no-repeat center center/contain;
  z-index: 0;
}
@media screen and (min-width: 1200px) {
  .benefits::after {
    width: 810px;
    height: 878px;
    top: -380px;
    right: -42px;
  }
}

.benefits__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1200px) {
  .benefits__heading {
    max-width: 1240px;
  }
}

.benefits__heading-image img {
  width: 20px;
}
@media screen and (min-width: 1200px) {
  .benefits__heading-image img {
    width: 30px;
  }
}

.benefits-heading-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 1200px) {
  .benefits-heading-text {
    font-size: 24px;
  }
}

.benefits__lists {
  margin-top: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
}
@media screen and (min-width: 1200px) {
  .benefits__lists {
    padding-inline: 40px;
    max-width: 1220px;
    margin-inline: auto;
    margin-top: 23px;
  }
}

.benefits__list {
  padding-block: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 33px;
  padding-inline: 16px;
}
.benefits__list:not(:last-child) {
  border-bottom: 2px solid #c4ccd7;
}
@media screen and (min-width: 1200px) {
  .benefits__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-block: 24px;
    padding-inline: 24px;
  }
}

.benefits__list-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: 41px;
}
@media screen and (min-width: 1200px) {
  .benefits__list-head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    max-width: 500px;
    width: 100%;
  }
}

.benefits__list-image img {
  width: 64px;
}

.benefits__list-title {
  color: #023e78;
  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;
}
@media screen and (min-width: 1200px) {
  .benefits__list-title {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    text-align: left;
    gap: 12px;
  }
}

.benefits__list-title-ja {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 1200px) {
  .benefits__list-title-ja {
    font-size: 24px;
    line-height: 1.6;
  }
}

.benefits__list-title-en {
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6; /* 20.8px */
  letter-spacing: 0.39px;
  text-transform: uppercase;
}
@media screen and (min-width: 1200px) {
  .benefits__list-title-en {
    font-size: 14px;
    letter-spacing: 0.42px;
  }
}

.benefits__list-text {
  text-align: left;
  line-height: 1.75;
}

.faq {
  background: #e4eaf1;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .faq {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.faq::after {
  position: absolute;
  content: "";
  width: 317px;
  height: 343px;
  background: url("../img/bg-image4.png") no-repeat center center/contain;
  bottom: -132px;
  left: -41px;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .faq::after {
    width: 725px;
    height: 786px;
    bottom: -43px;
    left: -140px;
  }
}

.faq__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 43px;
}
@media screen and (min-width: 900px) {
  .faq__inner {
    -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;
  }
}

.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;
  gap: 19px;
}
@media screen and (min-width: 900px) {
  .faq__boxes {
    max-width: 880px;
    gap: 22px;
  }
}

.faq__box {
  padding: 8px 12px;
  border-radius: 4px;
  background: #f2f4f6;
}
@media screen and (min-width: 900px) {
  .faq__box {
    padding: 8px 20px;
  }
}
.faq__box.is-open .faq-box__icon {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.faq__box.is-open .faq-box__head {
  border-bottom: 2px solid #c4ccd7;
}

.faq-box__head {
  padding-top: 9px;
  padding-bottom: 7px;
  padding-right: 6px;
  width: 100%;
  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;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .faq-box__head {
    padding-block: 16px;
    padding-right: 38px;
    padding-left: 32px;
  }
}

.faq-box__head-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .faq-box__head-body {
    gap: 20px;
  }
}

.faq-box__head-icon {
  color: #023e78;
  font-family: "Jost", sans-serif;
  font-size: 22px;
  font-style: italic;
  line-height: 28px;
  font-weight: 500;
  position: relative;
  width: 28px;
  height: 28px;
  background: rgba(255, 244, 0, 0.4);
  border-radius: 50%;
  padding-left: 5px;
}
@media screen and (min-width: 900px) {
  .faq-box__head-icon {
    font-size: 28px;
    line-height: 1.4;
    width: 36px;
    height: 39px;
  }
}

.faq-box__head-text {
  color: #404559;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .faq-box__head-text {
    font-size: 20px;
  }
}

.faq-box__icon {
  background: url("../img/faq-arrow.png") no-repeat center center/contain;
  width: 20px;
  height: 10px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.faq-box__body {
  padding-block: 8px;
}
@media screen and (min-width: 900px) {
  .faq-box__body {
    padding: 16px 32px;
  }
}

.faq-box__a-text {
  color: #023e78;
  font-weight: 700;
  line-height: 2;
}

.join {
  padding: 12px;
  background: #e4eaf1;
}
@media screen and (min-width: 900px) {
  .join {
    padding: 31px;
  }
}

.join__content {
  text-align: center;
  border-radius: 8px;
  background: -webkit-gradient(linear, right top, left top, from(#0291d9), to(#023e78));
  background: linear-gradient(270deg, #0291d9 0%, #023e78 100%);
  padding-block: 56px;
  color: #fff;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-perspective: 1500px;
          perspective: 1500px; /* ← 3D効果 */
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .join__content {
    height: 636px;
    padding-block: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 900px) {
  .join__texts {
    position: absolute;
    inset: 0;
    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;
    font-size: 60px;
    font-weight: 700;
  }
}

.join__title {
  font-family: "Jost", sans-serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5; /* 48px */
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
@media screen and (min-width: 900px) {
  .join__title {
    font-size: 56px;
    letter-spacing: 1.68px;
  }
}

.join__text {
  font-size: 14px;
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .join__text {
    margin-top: 36px;
    font-size: 16px;
  }
}

.join__button {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .join__button {
    margin-top: 56px;
  }
}

.join--button {
  padding: 16px 39px 16px 63px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.join-button__text {
  font-size: 18px;
  text-transform: uppercase;
}
@media screen and (min-width: 900px) {
  .join-button__text {
    font-size: 24px;
    letter-spacing: 1.2px;
  }
}

.join-button__mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff400;
}

.join__image {
  display: none;
}
@media screen and (min-width: 1200px) {
  .join__image {
    display: block;
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 20;
    -webkit-transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .join__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
}

@media screen and (min-width: 1200px) {
  .join__image-l {
    left: 0;
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
  .join__image-l.active {
    -webkit-transform: rotateY(65deg);
            transform: rotateY(65deg);
  }
}

@media screen and (min-width: 1200px) {
  .join__image-r {
    right: 0;
    -webkit-transform-origin: right center;
            transform-origin: right center;
  }
  .join__image-r.active {
    -webkit-transform: rotateY(-65deg);
            transform: rotateY(-65deg);
  }
}

.footer {
  background: #e4eaf1;
  padding-top: 38px;
  padding-bottom: 32px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .footer {
    padding-top: 20px;
  }
}
.footer::after {
  position: absolute;
  content: "";
  width: 335px;
  height: 450px;
  bottom: -218px;
  right: -86px;
  background: url("../img/bg-image-footer.png") no-repeat center center/contain;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .footer::after {
    width: 884px;
    height: 1132px;
    right: -29px;
    bottom: -274px;
  }
}

.footer__inner {
  padding-inline: 10px;
}
@media screen and (min-width: 900px) {
  .footer__inner {
    max-width: 1224px;
    padding-top: 78px;
    padding-bottom: 32px;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer__content {
  padding: 10px 10px 16px;
}
@media screen and (min-width: 900px) {
  .footer__content {
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
}

.footer-logo-link {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer-logo-link:hover {
  opacity: 0.8;
}
.footer-logo-link img {
  width: 281px;
}

.footer__information {
  margin-top: 35px;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .footer__information {
    margin-top: 42px;
    font-size: 16px;
    font-weight: 500;
  }
}

.footer__bottom {
  margin-top: 32px;
}
@media screen and (min-width: 900px) {
  .footer__bottom {
    margin-top: 0;
    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 {
    max-width: 534px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px 20px;
    grid-auto-flow: column;
    padding-top: 0;
  }
}

.footer__nav-item {
  padding-block: 8px;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
}
@media screen and (min-width: 900px) {
  .footer__nav-item {
    width: 251px;
  }
}
.footer__nav-item::before {
  position: absolute;
  content: "";
  background: #0961b6;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.footer__nav-item:hover::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.footer__sns {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 41px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .footer__sns {
    margin-top: 60px;
    padding-left: 15px;
  }
}

.footer__sns-link {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__sns-link img {
  width: 40px;
}
.footer__sns-link:hover {
  opacity: 0.7;
}

.footer__copyright {
  margin-top: 25px;
  font-size: 12px;
  line-height: 1.5;
}
@media screen and (min-width: 900px) {
  .footer__copyright {
    position: absolute;
    left: 9px;
    bottom: 61px;
  }
}