@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

@media screen and (max-width: 1439px) and (min-width: 768px) {
  html {
    font-size: calc(16 / 1440 * 100vw);
  }
}
@media screen and (max-width: 374px) {
  html {
    font-size: calc(16 / 375 * 100vw);
  }
}

body {
  color: #023e78;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a,
span {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.p-header {
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: linear-gradient(to right, #023e78, #0291d9);
}
@media screen and (max-width: 767px) {
  .p-header {
    padding-inline: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-header {
    padding-inline: 20px;
  }
}
@media (min-width: 1440px) {
  .p-header {
    padding-inline: 2.5rem;
  }
}

.p-header__inner {
  display: grid;
  grid-template-columns: 30rem 1fr;
  align-items: center;
  margin: 0 auto;
  padding-block: 1.0625rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-header__inner {
    max-width: 100% !important;
  }
}
@media (min-width:1024px) {
  .p-header__inner {
    max-width: 1024px;
  }
}
@media (min-width: 1440px) {
  .p-header__inner {
    max-width: 1365px;
  }
}

@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 175px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-header__logo {
    width: 30rem;
  }
}
@media (min-width: 1440px) {
  .p-header__logo {
    width: 320px;
  }
}

.p-header__nav {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 36px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__list {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: -10px;
}
.p-header__list li a {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.p-header__list li a:hover {
  opacity: 0.7;
}

.p-header__btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 24px;
  border: 1px solid #fff;
  border-radius: 44px;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.p-header__btn:hover {
  background: #fff;
  color: linear-gradient(to right, #023e78, #0291d9);
}

.l-main {
  min-height: 100vh;
  background: linear-gradient(to right, #023e78, #0291d9);
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .l-main {
    padding-block-start: 2.875rem;
  }
}
@media (min-width:1024px) {
  .l-main {
    padding-block-start: 0;
  }
}
@media (min-width: 1440px) {
  .l-main {
    padding-block-start: 2.25rem;
  }
}
.l-main .l-inner {
  position: relative;
  padding: 0;
}

.fv {
  position: relative;
}
.fv .l-inner {
  overflow: visible;
}

.scrolling-wrapper {
  display: flex;
  width: max-content;
  animation: scroll-loop 40s linear infinite;
  flex-wrap: nowrap;
}
.scrolling-wrapper:hover {
  animation-play-state: paused;
}

@keyframes scroll-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.grid-container {
  display: grid;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .grid-container {
    width: 1120px;
    grid-template-columns: repeat(7, 150px);
    grid-template-rows: repeat(2, 254px);
    gap: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .grid-container {
    width: 1200px;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 20px;
  }
}
@media (min-width:1024px) {
  .grid-container {
    width: 1200px;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .grid-container {
    min-width: 1770px;
    max-width: 2020px;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(2, 270px);
    gap: 20px;
  }
}

.item-7 img, .item-6 img, .item-5 img, .item-4 img, .item-3 img, .item-2 img, .item-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-1 {
  grid-column: 1/2;
  grid-row: 1/3;
}
@media screen and (max-width: 767px) {
  .item-1 {
    width: 150px;
    height: 520px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .item-1 {
    height: 540px;
  }
}
@media (min-width:1024px) {
  .item-1 {
    height: 540px;
  }
}
@media (min-width: 1440px) {
  .item-1 {
    width: 268px;
    height: 560px;
  }
}

.item-2 {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (max-width: 767px) {
  .item-2 {
    width: 150px;
    height: 254px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .item-2 {
    width: 250px;
    height: 250px;
  }
}
@media (min-width:1024px) {
  .item-2 {
    width: 250px;
    height: 250px;
  }
}
@media (min-width: 1440px) {
  .item-2 {
    width: 268px;
    height: 270px;
  }
}

.item-3 {
  grid-column: 2/3;
  grid-row: 2/3;
}
@media screen and (max-width: 767px) {
  .item-3 {
    width: 150px;
    height: 254px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .item-3 {
    width: 250px;
    height: 250px;
  }
}
@media (min-width:1024px) {
  .item-3 {
    width: 250px;
    height: 250px;
  }
}
@media (min-width: 1440px) {
  .item-3 {
    width: 268px;
    height: 270px;
  }
}

.item-4 {
  grid-column: 3/5;
  grid-row: 1/3;
}
@media screen and (max-width: 767px) {
  .item-4 {
    width: 312px;
    height: 520px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .item-4 {
    height: 540px;
  }
}
@media (min-width:1024px) {
  .item-4 {
    height: 540px;
  }
}
@media (min-width: 1440px) {
  .item-4 {
    width: 557px;
    height: 560px;
  }
}

.item-5 {
  grid-column: 5/6;
  grid-row: 1/2;
}
@media screen and (max-width: 767px) {
  .item-5 {
    width: 150px;
    height: 254px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .item-5 {
    width: 250px;
    height: 250px;
  }
}
@media (min-width:1024px) {
  .item-5 {
    width: 250px;
    height: 250px;
  }
}
@media (min-width: 1440px) {
  .item-5 {
    width: 268px;
    height: 270px;
  }
}

.item-6 {
  grid-column: 5/6;
  grid-row: 2/3;
}
@media screen and (max-width: 767px) {
  .item-6 {
    width: 150px;
    height: 254px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .item-6 {
    width: 250px;
    height: 250px;
  }
}
@media (min-width:1024px) {
  .item-6 {
    width: 250px;
    height: 250px;
  }
}
@media (min-width: 1440px) {
  .item-6 {
    width: 268px;
    height: 270px;
  }
}

.item-7 {
  grid-column: 6/8;
  grid-row: 1/3;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .item-7 {
    width: 312px;
    height: 520px;
  }
}
@media (min-width: 640px) {
  .item-7 {
    width: 312px;
    height: 520px;
  }
}
@media (min-width:1024px) {
  .item-7 {
    height: 540px;
  }
}
@media (min-width:1024px) {
  .item-7 {
    height: 540px;
  }
}

.fv-text {
  position: absolute;
  z-index: 100;
  pointer-events: none;
  color: #023e78;
  font-family: Jost;
  font-style: italic;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .fv-text {
    bottom: -9%;
    left: 5%;
    font-size: 28px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 3px;
  }
}
@media (min-width:1024px) {
  .fv-text {
    bottom: 10%;
    left: 80px;
    width: 600px;
    font-size: 40px;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 1px;
    text-align: left;
  }
}
@media (min-width: 1440px) {
  .fv-text {
    bottom: -8%;
    left: 3%;
    width: 880px;
    font-size: 63px;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 1.28px;
    text-align: left;
  }
}
.fv-text p {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .fv-text p {
    padding: 8px 16px;
    margin: 0 0 12px 0;
  }
}
@media (min-width:1024px) {
  .fv-text p {
    padding: 10px 20px;
  }
}
@media (min-width: 1440px) {
  .fv-text p {
    padding: 12px 24px;
  }
  .fv-text p:nth-of-type(1) {
    margin-bottom: 20px;
  }
}

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

@media (min-width:1024px) {
  .fv-text__sp {
    display: none;
  }
}
@media (min-width: 1440px) {
  .fv-text__sp {
    display: none;
  }
}

.l-inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: inherit;
  padding: 0 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    max-width: 640px;
    padding: 0 1.25rem;
  }
}

.l-inner__narrow {
  max-width: 50rem;
}
@media screen and (max-width: 767px) {
  .l-inner__narrow {
    padding: 0 1.25rem;
    max-width: 600px;
  }
}

.footer {
  background: #e4eaf1;
  position: relative;
}
@media (min-width: 640px) {
  .footer {
    padding: 60px 80px 32px 95px;
  }
}
@media (min-width:1024px) {
  .footer {
    padding: 60px 80px 32px 95px;
  }
}
@media (min-width: 1440px) {
  .footer {
    padding: 110px 80px 32px 95px;
  }
}

.footer__inner {
  margin: 0 auto;
  display: flex;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
    max-width: 370px;
    width: 100%;
    padding: 58px 20px 0 5px;
    align-items: center;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer__inner {
    flex-direction: row;
    width: 784px;
    gap: 30px;
    padding: 10px;
  }
}
@media (min-width:1024px) {
  .footer__inner {
    flex-direction: row;
    width: 1024px;
    gap: 80px;
    padding: 10px;
  }
}
@media (min-width: 1440px) {
  .footer__inner {
    flex-direction: row;
    width: 1280px;
    gap: 118px;
    padding: 10px;
  }
}

.footer__logo-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .footer__logo-box {
    width: 350px;
    padding: 10px 5px 8px;
    gap: 30px;
  }
}
@media (min-width: 1440px) {
  .footer__logo-box {
    width: 553px;
    padding: 16px;
  }
}

.footer__logo {
  width: 280.5px;
  height: 68px;
  aspect-ratio: 280.5/68;
  background: url(../../img/footer-logo.png) #e4eaf1/cover no-repeat;
}

.footer__logo-text {
  color: #404559;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 170%;
}

.footer__logo-bottom-text {
  color: #404559;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
  padding-top: 30px;
  padding-left: 18px;
}
@media (min-width: 1440px) {
  .footer__logo-bottom-text {
    margin: 0 auto;
    width: 1240px;
  }
}

@media screen and (max-width: 767px) {
  .footer__nav {
    width: 318px;
    padding-top: 35px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer__nav {
    width: 300px;
    padding-top: 0;
  }
}
@media (min-width:1024px) {
  .footer__nav {
    width: 300px;
    padding-top: 0;
  }
}
@media (min-width: 1440px) {
  .footer__nav {
    width: 521px;
    padding-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding-left: 24px;
    padding-top: 8px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer__nav-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 24px 20px;
    align-items: center;
  }
}
@media (min-width:1024px) {
  .footer__nav-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 16px 10px;
    align-items: center;
  }
}
@media (min-width: 1440px) {
  .footer__nav-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 24px 20px;
    align-items: center;
  }
}

.footer__nav-item {
  width: 250px;
  color: #404559;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer__nav-item {
    width: 150px;
  }
}
@media (min-width:1024px) {
  .footer__nav-item {
    width: 200px;
  }
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 41px;
}
@media screen and (max-width: 767px) {
  .footer__social {
    width: 354.667px;
    padding: 54px 0 0 12px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer__social {
    width: 300px;
    padding-top: 30px;
  }
}
@media (min-width:1024px) {
  .footer__social {
    width: 400px;
    padding-top: 50px;
  }
}
@media (min-width: 1440px) {
  .footer__social {
    width: 553px;
    padding-top: 90px;
  }
}

.image__footer {
  width: 800px;
  height: 400px;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 1;
  z-index: 1;
}

.section__title-ja {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 1.8px;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .section__title-ja {
    font-size: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section__title-ja {
    font-size: 16px;
  }
}
@media (min-width:1024px) {
  .section__title-ja {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  .section__title-ja {
    font-size: 18px;
  }
}

.section__title-en {
  font-family: "Jost", sans-serif;
  font-style: italic;
  font-weight: 500;
  line-height: 160%;
  text-transform: uppercase;
  color: #fff;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .section__title-en {
    font-size: 32px;
    letter-spacing: 0.96px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section__title-en {
    font-size: 48px;
    letter-spacing: 1.12px;
  }
}
@media (min-width:1024px) {
  .section__title-en {
    font-size: 48px;
    letter-spacing: 1.12px;
  }
}
@media (min-width: 1440px) {
  .section__title-en {
    font-size: 64px;
    letter-spacing: 1.28px;
  }
}

@media screen and (max-width: 767px) {
  .Our-Business__inner,
  .member-stories__inner,
  .your-challenge__inner,
  .culture__inner,
  .FAQ__inner {
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .Our-Business__inner,
  .member-stories__inner,
  .your-challenge__inner,
  .culture__inner,
  .FAQ__inner {
    max-width: 768px;
    width: 768px;
    margin: 0 auto;
  }
}
@media (min-width:1024px) {
  .Our-Business__inner,
  .member-stories__inner,
  .your-challenge__inner,
  .culture__inner,
  .FAQ__inner {
    max-width: 1024px;
    width: 1024px;
    margin: 0 auto;
  }
}
@media (min-width: 1440px) {
  .Our-Business__inner,
  .member-stories__inner,
  .your-challenge__inner,
  .culture__inner,
  .FAQ__inner {
    max-width: 1440px;
    width: 1440px;
    margin: 0 auto;
  }
}

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

@media (min-width:1024px) {
  .br-none-2 {
    display: none;
  }
}
@media (min-width: 1440px) {
  .br-none-2 {
    display: none;
  }
}

.concept {
  position: relative;
}
.concept .l-inner {
  display: flex;
}
@media screen and (max-width: 767px) {
  .concept .l-inner {
    flex-direction: column;
    padding: 120px 24px 163px;
    gap: 48px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .concept .l-inner {
    flex-direction: row;
    padding: 160px 60px 100px;
    gap: 100px;
  }
}
@media (min-width:1024px) {
  .concept .l-inner {
    flex-direction: row;
    padding: 160px 60px 100px;
    gap: 100px;
  }
}
@media (min-width: 1440px) {
  .concept .l-inner {
    flex-direction: row;
    padding: 160px 0px 0 100px;
  }
}

.concept__text-wrapper {
  text-shadow: 0 0 64px rgba(0, 0, 0, 0.25);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  line-height: 220%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .concept__text-wrapper {
    font-size: 15px;
    width: 342px;
    padding-top: 52px;
    gap: 48px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .concept__text-wrapper {
    gap: 60px;
    font-size: 14px;
    padding-top: 0px;
    width: 480px;
  }
}
@media (min-width:1024px) {
  .concept__text-wrapper {
    gap: 60px;
    font-size: 16px;
    padding-top: 0px;
    width: 480px;
  }
}
@media (min-width: 1440px) {
  .concept__text-wrapper {
    gap: 80px;
    font-size: 18px;
    padding-top: 135px;
    width: 695px;
  }
}

.concept__text {
  opacity: 1;
  overflow: hidden;
  color: transparent;
  color: #fff;
  text-shadow: 0 0 64px rgba(0, 0, 0, 0.25);
  font-weight: 500;
  line-height: 220%;
}
.concept__text i {
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: inline-block;
  color: #000;
  opacity: 1;
  transform: translateY(0);
  transition: color 0.5s ease-out;
}
.concept__text i.js-animate {
  animation-name: textColorChange;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-delay: var(--delay, 0s);
}
.concept__text.js-in-view i {
  color: #fff;
}

@keyframes textColorChange {
  0% {
    color: #000;
  }
  100% {
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .concept__image {
    padding-top: 18px;
    width: 331px;
    height: 512px;
    margin-left: 35px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .concept__image {
    padding-top: 0px;
    width: 480px;
    height: 600px;
  }
}
@media (min-width:1024px) {
  .concept__image {
    padding-top: 0px;
    width: 480px;
    height: 600px;
  }
}
@media (min-width: 1440px) {
  .concept__image {
    padding-top: 120px;
    width: 745px;
    height: 921px;
  }
}

@media screen and (max-width: 767px) {
  .Our-Business__inner {
    max-width: none;
    margin: 0 auto;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .Our-Business__inner {
    width: 768px;
    max-width: 768px;
    margin: 0 auto;
  }
}
@media (min-width:1024px) {
  .Our-Business__inner {
    width: 1024px;
    max-width: 1024px;
    margin: 0 auto;
  }
}
@media (min-width: 1440px) {
  .Our-Business__inner {
    width: 1240px;
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 117px;
  }
}

.Our-Business_swiper-container {
  position: relative;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .Our-Business_swiper-container {
    width: calc(100vw - 20px);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .Our-Business_swiper-container {
    width: 964px;
  }
}
@media (min-width:1024px) {
  .Our-Business_swiper-container {
    width: 964px;
  }
}
@media (min-width: 1440px) {
  .Our-Business_swiper-container {
    width: 1340px;
  }
}
.Our-Business_swiper-container .swiper-button-next:after,
.Our-Business_swiper-container .swiper-button-prev:after {
  display: none !important;
  content: "" !important;
  font-family: none !important;
}

.Our-Business__swiper {
  position: relative;
  overflow: visible;
  cursor: grab;
}
.Our-Business__swiper:active {
  cursor: grabbing;
}

.Our-Business__swiper-wrapper {
  display: flex;
  transition-timing-function: ease-out;
}
@media screen and (max-width: 767px) {
  .Our-Business__swiper-wrapper {
    padding-top: 38px;
    gap: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .Our-Business__swiper-wrapper {
    padding-top: 0;
    gap: 20px;
  }
}
@media (min-width:1024px) {
  .Our-Business__swiper-wrapper {
    padding-top: 0;
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .Our-Business__swiper-wrapper {
    padding-top: 0;
    gap: 24px;
  }
}

.Our-Business__swiper-slide {
  position: relative;
  background: #e4eaf1;
  flex-shrink: 0;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .Our-Business__swiper-slide {
    padding: 12px;
    width: 312px;
    min-width: 312px;
    max-width: 312px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .Our-Business__swiper-slide {
    padding: 20px;
    width: 460px;
    min-width: 460px;
    max-width: 460px;
    height: 676px;
  }
}
@media (min-width:1024px) {
  .Our-Business__swiper-slide {
    padding: 20px;
    width: 460px;
    min-width: 460px;
    max-width: 460px;
    height: 676px;
  }
}
@media (min-width: 1440px) {
  .Our-Business__swiper-slide {
    padding: 28px;
    width: 608px;
    min-width: 608px;
    max-width: 608px;
    height: 806px;
  }
}
@media screen and (max-width: 767px) {
  .Our-Business__swiper-slide img {
    height: 162px;
    margin-top: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .Our-Business__swiper-slide img {
    width: 420px !important;
    height: 236px;
    margin-top: 20px;
  }
}
@media (min-width:1024px) {
  .Our-Business__swiper-slide img {
    width: 420px !important;
    height: 236px;
    margin-top: 20px;
  }
}
@media (min-width: 1440px) {
  .Our-Business__swiper-slide img {
    width: 552px !important;
    height: 310.5px;
    margin-top: 23.5px;
  }
}

.Our-Business__title-en {
  color: #023e78;
  font-family: "Jost", sans-serif;
  font-style: italic;
  font-weight: 500;
  line-height: 160%;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .Our-Business__title-en {
    font-size: 12px;
    letter-spacing: 0.48px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .Our-Business__title-en {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}
@media (min-width:1024px) {
  .Our-Business__title-en {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}
@media (min-width: 1440px) {
  .Our-Business__title-en {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}

.Our-Business__title-ja {
  color: #023e78;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .Our-Business__title-ja {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .Our-Business__title-ja {
    font-size: 20px;
  }
}
@media (min-width:1024px) {
  .Our-Business__title-ja {
    font-size: 20px;
  }
}
@media (min-width: 1440px) {
  .Our-Business__title-ja {
    font-size: 24px;
  }
}

.Our-Business__text-title {
  color: #023e78;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .Our-Business__text-title {
    font-size: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .Our-Business__text-title {
    font-size: 16px;
  }
}
@media (min-width:1024px) {
  .Our-Business__text-title {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  .Our-Business__text-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .Our-Business__text-title:nth-of-type(1), .Our-Business__text-title:nth-of-type(2) {
    margin-top: 12px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .Our-Business__text-title:nth-of-type(1), .Our-Business__text-title:nth-of-type(2) {
    margin-top: 16px;
  }
}
@media (min-width:1024px) {
  .Our-Business__text-title:nth-of-type(1), .Our-Business__text-title:nth-of-type(2) {
    margin-top: 16px;
  }
}
@media (min-width: 1440px) {
  .Our-Business__text-title:nth-of-type(1), .Our-Business__text-title:nth-of-type(2) {
    margin-top: 24px;
  }
}

.Our-Business__text-list {
  color: #404559;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 170%;
  list-style: disc;
  padding-left: 1em;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .Our-Business__text-list {
    font-size: 14px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .Our-Business__text-list {
    font-size: 15px;
  }
}
@media (min-width:1024px) {
  .Our-Business__text-list {
    font-size: 15px;
  }
}
@media (min-width: 1440px) {
  .Our-Business__text-list {
    font-size: 16px;
  }
}

.Our-Business__button {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  border-radius: 4px;
  background: #023e78;
  color: #fff;
  transition: all 0.3s ease;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .Our-Business__button {
    margin-top: 24px;
    padding: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .Our-Business__button {
    margin-top: 28px;
    padding: 18px 30px;
    font-size: 15px;
  }
}
@media (min-width:1024px) {
  .Our-Business__button {
    margin-top: 28px;
    padding: 18px 30px;
    font-size: 15px;
  }
}
@media (min-width: 1440px) {
  .Our-Business__button {
    margin-top: 32px;
    padding: 20px 40px;
    font-size: 16px;
  }
}
.Our-Business__button:hover {
  background: #fff;
  color: #023e78;
  border: 1px solid #023e78 s;
}

.Our-Business__top-button-wrapper {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .Our-Business__top-button-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 39px 0 0;
    width: 350px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .Our-Business__top-button-wrapper {
    width: 924px;
    padding: 48px 0 32px 0;
    margin: 0 auto;
  }
}
@media (min-width:1024px) {
  .Our-Business__top-button-wrapper {
    width: 924px;
    padding: 48px 0 32px 0;
    margin: 0 auto;
  }
}
@media (min-width: 1440px) {
  .Our-Business__top-button-wrapper {
    width: 1248px;
    padding: 64px 0 40px 0;
    margin: 0 auto;
  }
}

.Our-Business__top-button {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid #fff;
  background: #e4eaf1;
  color: #023e78;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .Our-Business__top-button {
    padding: 8px;
    width: 171px;
    align-items: baseline;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .Our-Business__top-button {
    padding: 16px;
    align-items: center;
  }
}
@media (min-width:1024px) {
  .Our-Business__top-button {
    padding: 16px;
    align-items: center;
  }
}
@media (min-width: 1440px) {
  .Our-Business__top-button {
    padding: 20px;
    align-items: center;
  }
}
.Our-Business__top-button:hover {
  background: #0961b6;
  color: #e4eaf1;
}

.Our-Business__mini-title-en {
  font-family: "Jost", sans-serif;
  font-style: italic;
  font-weight: 500;
  line-height: 160%;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .Our-Business__mini-title-en {
    font-size: 8px;
    letter-spacing: 0.3px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .Our-Business__mini-title-en {
    font-size: 12px;
    letter-spacing: 0.36px;
  }
}
@media (min-width:1024px) {
  .Our-Business__mini-title-en {
    font-size: 12px;
    letter-spacing: 0.36px;
  }
}
@media (min-width: 1440px) {
  .Our-Business__mini-title-en {
    font-size: 14px;
    letter-spacing: 0.42px;
  }
}

.Our-Business__mini-title-ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 160%;
  margin-top: -7px;
}
@media screen and (max-width: 767px) {
  .Our-Business__mini-title-ja {
    font-size: 13px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .Our-Business__mini-title-ja {
    font-size: 15px;
  }
}
@media (min-width:1024px) {
  .Our-Business__mini-title-ja {
    font-size: 15px;
  }
}
@media (min-width: 1440px) {
  .Our-Business__mini-title-ja {
    font-size: 18px;
  }
}

body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

.modal__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 12px;
  border: 1px solid #023e78;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .modal__inner {
    width: calc(100vw - 40px);
    max-width: 300px;
    padding: 60px 16px 0;
    gap: 24px;
    max-height: 80vh;
    overflow-y: auto;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .modal__inner {
    width: 600px;
    padding: 24px;
    gap: 40px;
  }
}
@media (min-width:1024px) {
  .modal__inner {
    width: 900px;
    padding: 48px;
    gap: 40px;
  }
}
@media (min-width: 1440px) {
  .modal__inner {
    width: 1200px;
    padding: 48px;
    gap: 40px;
  }
}

.modal__content {
  /* 必須: これがないと flex コンテナ内で中身のサイズが制限されないことがある */
  min-height: 0;
  /* 画面からはみ出さないように、最大高さを設定 */
  max-height: 95vh;
  /* contentがはみ出したら、content自体をスクロールさせる */
  overflow-y: auto;
  /* ⚠️ もしこれでうまくいかなければ、.modal__contentのdisplay: flex; を確認 */
}

.modal__close-btn {
  display: flex;
  width: 36px;
  height: 36px;
  padding: 8px;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1/1;
  position: absolute;
  right: 44px;
  top: 53.5px;
  border-radius: 4px;
  background: #023e78;
  stroke-width: 2px;
  stroke: #fff;
  width: 21.333px;
  height: 21.333px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .modal__close-btn {
    right: 44px;
    top: 40px;
  }
}

.modal__close-btn-text {
  position: absolute;
  right: 70px;
  top: 75px;
  color: #023e78;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 170%; /* 27.2px */
}
@media screen and (max-width: 767px) {
  .modal__close-btn-text {
    top: 37px;
  }
}

#modal-head1 {
  color: #023e78;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 160%; /* 44.8px */
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #modal-head1 {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #modal-head1 {
    font-size: 20px;
  }
}
@media (min-width:1024px) {
  #modal-head1 {
    font-size: 24px;
  }
}
@media (min-width: 1440px) {
  #modal-head1 {
    font-size: 28px;
  }
}

#modal-head2 {
  color: #023e78;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  line-height: 160%; /* 28.8px */
}
@media screen and (max-width: 767px) {
  #modal-head2 {
    font-size: 14px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #modal-head2 {
    font-size: 14px;
  }
}
@media (min-width:1024px) {
  #modal-head2 {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  #modal-head2 {
    font-size: 18px;
  }
}

.model-text-box {
  display: flex;
  padding: 12px 0;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid #c4ccd7;
}
@media screen and (max-width: 767px) {
  .model-text-box {
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .model-text-box {
    flex-direction: column;
  }
}
@media (min-width:1024px) {
  .model-text-box {
    flex-direction: row;
  }
}
@media (min-width: 1440px) {
  .model-text-box {
    flex-direction: row;
  }
}

.modal__text1 {
  color: #023e78;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 160%; /* 28.8px */
}
@media screen and (max-width: 767px) {
  .modal__text1 {
    font-size: 15px;
    width: 280px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .modal__text1 {
    font-size: 15px;
    width: 290px;
  }
}
@media (min-width:1024px) {
  .modal__text1 {
    width: 378px;
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  .modal__text1 {
    width: 378px;
    font-size: 18px;
  }
}

.modal__text2 {
  flex: 1 0 0;
  color: #404559;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 170%; /* 27.2px */
}
@media screen and (max-width: 767px) {
  .modal__text2 {
    font-size: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .modal__text2 {
    font-size: 15px;
  }
}
@media (min-width:1024px) {
  .modal__text2 {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  .modal__text2 {
    font-size: 16px;
  }
}

.Our-Business__button-2 {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  border-radius: 4px;
  background: #023e78;
  color: #fff;
  transition: all 0.3s ease;
  width: 90%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .Our-Business__button-2 {
    margin-top: 24px;
    padding: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .Our-Business__button-2 {
    margin-top: 28px;
    padding: 18px 30px;
    font-size: 15px;
  }
}
@media (min-width:1024px) {
  .Our-Business__button-2 {
    margin-top: 28px;
    padding: 18px 30px;
    font-size: 15px;
  }
}
@media (min-width: 1440px) {
  .Our-Business__button-2 {
    margin-top: 32px;
    padding: 20px 40px;
    font-size: 16px;
  }
}
.Our-Business__button-2:hover {
  background: #fff;
  color: #023e78;
  border: 1px solid #023e78;
}

.your-challenge {
  position: relative;
}
@media screen and (max-width: 767px) {
  .your-challenge {
    padding-top: 130px;
    padding-bottom: 100px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .your-challenge {
    padding-top: 160px;
    padding-bottom: 80px;
  }
}
@media (min-width:1024px) {
  .your-challenge {
    padding-top: 160px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1440px) {
  .your-challenge {
    padding-top: 232px;
    padding-bottom: 158px;
  }
}

.your-challenge__inner {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .your-challenge__inner {
    width: 390px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .your-challenge__inner {
    width: 768px;
  }
}
@media (min-width:1024px) {
  .your-challenge__inner {
    width: 1024px;
  }
}
@media (min-width: 1440px) {
  .your-challenge__inner {
    width: 1240px;
  }
}

@media screen and (max-width: 767px) {
  .your-challenge-boxes {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 45px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .your-challenge-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    min-width: 768px;
    margin: 0 auto;
    padding-top: 70px;
  }
}
@media (min-width:1024px) {
  .your-challenge-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    min-width: 1024px;
    margin: 0 auto;
    padding-top: 70px;
  }
}
@media (min-width: 1440px) {
  .your-challenge-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 72px;
    min-width: 1240px;
    margin: 0 auto;
    padding-top: 70px;
  }
}

.your-challenge-box {
  border-radius: 4px;
  border-bottom: 12px solid #37a4db;
  background: rgba(244, 251, 255, 0.7);
}
.your-challenge-box:nth-of-type(2) {
  border-bottom-color: #2766ae;
}
.your-challenge-box:nth-of-type(3) {
  border-bottom-color: #025178;
}
.your-challenge-box:nth-of-type(4) {
  border-bottom-color: #023e78;
}
@media screen and (max-width: 767px) {
  .your-challenge-box {
    min-height: 558px;
  }
  .your-challenge-box:nth-of-type(1) {
    margin-top: 0;
  }
  .your-challenge-box:nth-of-type(3) {
    margin-top: 14px;
  }
  .your-challenge-box:nth-of-type(4) {
    margin-top: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .your-challenge-box {
    width: 350px;
    height: 520px;
  }
  .your-challenge-box:nth-of-type(1), .your-challenge-box:nth-of-type(3) {
    margin-top: 48px;
  }
}
@media (min-width:1024px) {
  .your-challenge-box {
    width: 452px;
    height: 520px;
  }
  .your-challenge-box:nth-of-type(1), .your-challenge-box:nth-of-type(3) {
    margin-top: 48px;
  }
}
@media (min-width: 1440px) {
  .your-challenge-box {
    width: 582px;
    height: 590px;
  }
  .your-challenge-box:nth-of-type(1), .your-challenge-box:nth-of-type(3) {
    margin-top: 64px;
  }
}

.your-challenge__mini-title {
  width: fit-content;
  display: flex;
  padding: 12px 28px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  border-radius: 0 0 4px 0;
  background: #37a4db;
}
@media screen and (max-width: 767px) {
  .your-challenge__mini-title {
    max-width: 290px;
    min-width: 218px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .your-challenge__mini-title {
    max-width: 270px;
    min-width: 190px;
  }
}
@media (min-width:1024px) {
  .your-challenge__mini-title {
    max-width: 320px;
    min-width: 240px;
  }
}
@media (min-width: 1440px) {
  .your-challenge__mini-title {
    max-width: 368px;
    min-width: 272px;
  }
}

.your-challenge-box:nth-of-type(2) .your-challenge__mini-title {
  background: #2766ae !important;
}

.your-challenge-box:nth-of-type(3) .your-challenge__mini-title {
  background: #025178;
}

.your-challenge-box:nth-of-type(4) .your-challenge__mini-title {
  background: #023e78;
}

.your-challenge__mini-title-en {
  color: #fff;
  font-family: "Jost", sans-serif;
  font-style: italic;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.54px;
}
@media screen and (max-width: 767px) {
  .your-challenge__mini-title-en {
    font-size: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .your-challenge__mini-title-en {
    font-size: 16px;
  }
}
@media (min-width:1024px) {
  .your-challenge__mini-title-en {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  .your-challenge__mini-title-en {
    font-size: 18px;
  }
}

.your-challenge__mini-title-ja {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .your-challenge__mini-title-ja {
    font-size: 18px;
    margin-top: 6px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .your-challenge__mini-title-ja {
    font-size: 20px;
    margin-top: 0px;
  }
}
@media (min-width:1024px) {
  .your-challenge__mini-title-ja {
    font-size: 20px;
    margin-top: 0px;
  }
}
@media (min-width: 1440px) {
  .your-challenge__mini-title-ja {
    font-size: 24px;
    margin-top: 0px;
  }
}

.your-challenge__text {
  color: #404559;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .your-challenge__text {
    font-size: 15px;
    padding: 28px 24px 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .your-challenge__text {
    font-size: 15px;
    padding: 24px 20px 0;
  }
}
@media (min-width:1024px) {
  .your-challenge__text {
    font-size: 15px;
    padding: 24px 20px 0;
  }
}
@media (min-width: 1440px) {
  .your-challenge__text {
    font-size: 16px;
    padding: 28px 28px 0;
  }
}

.your-challenge__image {
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .your-challenge__image {
    height: 246px;
    padding: 28px 14px 0px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .your-challenge__image {
    width: 300px;
    height: 150px;
    margin: 20px 20px;
  }
}
@media (min-width:1024px) {
  .your-challenge__image {
    width: 412px;
    height: 206px;
    margin: 20px 20px;
  }
}
@media (min-width: 1440px) {
  .your-challenge__image {
    width: 534px;
    height: 268px;
    margin: 28px 24px;
  }
}
.your-challenge__image img {
  width: auto;
  height: 100%;
  object-fit: none;
  object-position: center;
  display: block;
  margin: 0 auto;
}

.member-stories {
  background: #e4eaf1;
}
@media screen and (max-width: 767px) {
  .member-stories {
    padding-top: 78px;
    padding-bottom: 235px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .member-stories {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}
@media (min-width:1024px) {
  .member-stories {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .member-stories {
    padding-top: 117px;
    padding-bottom: 265px;
  }
}
.member-stories .section__title-en,
.member-stories .section__title-ja {
  color: #0a9ae5;
}

.member-stories__inner {
  margin: 0 auto;
}
.member-stories__inner .section__title-en,
.member-stories__inner .section__title-ja {
  background: linear-gradient(to right, #023e78, #0291d9);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .member-stories__inner {
    width: 768px;
  }
}
@media (min-width:1024px) {
  .member-stories__inner {
    width: 1024px;
  }
}
@media (min-width: 1440px) {
  .member-stories__inner {
    width: 1240px;
  }
}

.member-stories__swiper-container {
  position: relative;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .member-stories__swiper-container {
    padding-top: 65px;
  }
}
@media (min-width: 1440px) {
  .member-stories__swiper-container {
    padding-top: 83px;
  }
}
.member-stories__swiper-container .swiper-pagination-progressbar.swiper-pagination-horizontal {
  position: absolute;
  bottom: -14%;
  left: 39%;
  transform: translateX(-50%);
  width: 976px;
  height: 7px;
  background: #d9d9d9;
  border-radius: 4px;
  top: unset;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .member-stories__swiper-container .swiper-pagination-progressbar.swiper-pagination-horizontal {
    width: 350px;
    bottom: -10%;
    left: 50%;
  }
}
@media (min-width:1024px) {
  .member-stories__swiper-container .swiper-pagination-progressbar.swiper-pagination-horizontal {
    width: 400px;
  }
}
@media (min-width: 1440px) {
  .member-stories__swiper-container .swiper-pagination-progressbar.swiper-pagination-horizontal {
    width: 973px;
  }
}
.member-stories__swiper-container .swiper-pagination-progressbar.swiper-pagination-horizontal .swiper-pagination-progressbar-fill {
  background: #0a9ae5;
  border-radius: 4px;
  transition: transform 0.3s ease;
}
.member-stories__swiper-container .swiper-button-prev,
.member-stories__swiper-container .swiper-button-next {
  position: absolute;
  top: 110%;
  width: 80px;
  height: 80px;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .member-stories__swiper-container .swiper-button-prev,
  .member-stories__swiper-container .swiper-button-next {
    width: 40px;
    height: 40px;
    top: 115%;
  }
}
.member-stories__swiper-container .swiper-button-prev,
.member-stories__swiper-container .swiper-button-next {
  /* 1. デフォルトの色/ボーダーは元の色を維持 */
  color: #0a9ae5;
  border: 2px solid #0961b6;
  /* 2. 斜めトランジションのための初期設定 */
  /* 背景を2倍サイズにし、初期位置（右上がりの対角線上）を右下に設定（左上から色が広がるようにするため） */
  background-image: linear-gradient(to bottom right, #023e78 50%, rgba(255, 255, 255, 0.9) 50%);
  background-size: 200% 200%; /* ホバーで背景全体を覆うためにサイズを2倍に */
  background-position: 100% 100%; /* 初期位置：右下（この位置だとデフォルトの白背景が表示される） */
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  /* 3. トランジション設定の追加/変更 */
  /* 背景位置の変更も滑らかにするため、transitionにbackground-positionを追加 */
  transition: all 0.3s ease, background-position 0.4s ease; /* 0.4sにすると、より広がるのが分かりやすいかも */
  z-index: 10;
  padding: 0;
}
.member-stories__swiper-container .swiper-button-prev:after,
.member-stories__swiper-container .swiper-button-next:after {
  font-size: 12px;
  font-weight: 900;
}
.member-stories__swiper-container .swiper-button-prev,
.member-stories__swiper-container .swiper-button-next {
  /* --- ホバー時の設定 (ここを大きく変更) --- */
}
.member-stories__swiper-container .swiper-button-prev:hover:not(.swiper-button-disabled),
.member-stories__swiper-container .swiper-button-next:hover:not(.swiper-button-disabled) {
  /* 1. 背景の移動: 左上へ移動（0% 0%）。これにより、#023E78が左下から斜めに広がりながら全体を覆う */
  background-position: 0% 0%;
  /* 2. アイコンとボーダーの色を変更 */
  color: #ffffff;
  border-color: #ffffff;
  /* 3. スケールアップはそのまま維持 */
  transform: scale(1.1);
}
.member-stories__swiper-container .swiper-button-prev.swiper-button-disabled,
.member-stories__swiper-container .swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: rgba(200, 200, 200, 0.5);
  color: #999;
}
.member-stories__swiper-container .swiper-button-prev.swiper-button-disabled:hover,
.member-stories__swiper-container .swiper-button-next.swiper-button-disabled:hover {
  transform: none;
}
.member-stories__swiper-container .swiper-button-prev {
  right: 104px;
}
@media screen and (max-width: 767px) {
  .member-stories__swiper-container .swiper-button-prev {
    right: 64px;
  }
}
.member-stories__swiper-container .swiper-button-next {
  right: 3px;
}

.member-stories__swiper {
  overflow: visible;
}

@media screen and (max-width: 767px) {
  .member-stories__swiper-slide {
    width: 312px;
    min-width: 312px;
    max-width: 312px;
    height: 670px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .member-stories__swiper-slide {
    width: 340px;
    min-width: 340px;
    max-width: 340px;
    height: 620px;
  }
}
@media (min-width:1024px) {
  .member-stories__swiper-slide {
    width: 340px;
    min-width: 340px;
    max-width: 340px;
    height: 620px;
  }
}
@media (min-width: 1440px) {
  .member-stories__swiper-slide {
    width: 386px;
    min-width: 386px;
    max-width: 386px;
    height: 738px;
  }
}
.member-stories__swiper-slide img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 767px) {
  .member-stories__swiper-slide img {
    width: 312px;
    min-width: 312px;
    max-width: 312px;
    height: 416px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .member-stories__swiper-slide img {
    width: 340px;
    height: 380px;
  }
}
@media (min-width:1024px) {
  .member-stories__swiper-slide img {
    width: 340px;
    height: 380px;
  }
}
@media (min-width: 1440px) {
  .member-stories__swiper-slide img {
    width: 386px;
    height: 514px;
  }
}
.member-stories__swiper-slide img:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2), 0 6px 12px rgba(0, 0, 0, 0.15);
}

.member-stories__text {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  border: 2px solid #023e78;
  background: #023e78;
  font-family: "Zen Kaku Gothic New", sans-serif;
  gap: 10px;
  flex-shrink: 0;
  align-self: stretch;
  font-size: 15px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.3px;
  margin-top: 20px;
  padding: 12px 16px;
  z-index: 8;
}
@media screen and (max-width: 767px) {
  .member-stories__text {
    width: 312px;
    height: 231px;
    padding: 12px 16px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .member-stories__text {
    width: 340px;
    height: 190px;
  }
}
@media (min-width:1024px) {
  .member-stories__text {
    width: 340px;
    height: 190px;
  }
}
@media (min-width: 1440px) {
  .member-stories__text {
    width: 390px;
    height: 210px;
  }
}

.member-stories__title {
  position: absolute;
  color: #023e78;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  z-index: 12;
}
@media screen and (max-width: 767px) {
  .member-stories__title {
    top: 302px;
    left: -15px;
    padding: 4px 16px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .member-stories__title {
    top: 285px;
    left: -15px;
    padding: 4px 16px;
  }
}
@media (min-width:1024px) {
  .member-stories__title {
    top: 285px;
    left: -15px;
    padding: 4px 16px;
  }
}
@media (min-width: 1440px) {
  .member-stories__title {
    top: 55%;
    left: -4%;
  }
}
.member-stories__title p {
  background: #fff;
  padding: 4px 16px;
  z-index: 12;
}

.member-stories__title-mini {
  color: #023e78;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.8px;
}

.member-stories__number {
  position: absolute;
  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%;
  letter-spacing: 1.12px;
  z-index: 15;
}
@media screen and (max-width: 767px) {
  .member-stories__number {
    top: -49px;
    right: 4px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .member-stories__number {
    top: -44px;
    right: 30px;
  }
}
@media (min-width:1024px) {
  .member-stories__number {
    top: -44px;
    right: 30px;
  }
}
@media (min-width: 1440px) {
  .member-stories__number {
    top: -44px;
    right: 0px;
  }
}

.culture {
  background: #f2f4f6;
}
@media screen and (max-width: 767px) {
  .culture {
    padding-top: 77px;
    padding-bottom: 100px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .culture {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width:1024px) {
  .culture {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .culture {
    padding-top: 120px;
    padding-bottom: 142px;
  }
}
.culture .section__title-en, .culture .section__title-ja {
  background: linear-gradient(to right, #023e78, #0291d9);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.culture__inner {
  margin: 0 auto;
  will-change: transform, opacity;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .culture__inner {
    max-width: 1024px;
  }
}
@media (min-width:1024px) {
  .culture__inner {
    max-width: 1024px;
  }
}
@media (min-width: 1440px) {
  .culture__inner {
    max-width: 1240px;
  }
}

@media screen and (max-width: 767px) {
  .culture__boxes {
    width: 350px;
    padding-top: 72px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .culture__boxes {
    padding-left: 60px;
    padding-right: 60px;
    width: 600px;
    margin: 0 auto;
  }
}
@media (min-width:1024px) {
  .culture__boxes {
    padding-left: 60px;
    padding-right: 60px;
    width: 904px;
    margin: 0 auto;
  }
}
@media (min-width: 1440px) {
  .culture__boxes {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 92px;
    width: 1160px;
    margin: 0 auto;
  }
}

.culture__box {
  display: flex;
  gap: 40px;
  align-items: center;
  border-bottom: 2px solid #c4ccd7;
  padding-bottom: 28px;
  margin-bottom: 28px;
  will-change: transform, opacity;
}
.culture__box:nth-of-type(3) {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.culture__box svg {
  width: 63.882px;
  height: 63.882px;
}
@media screen and (max-width: 767px) {
  .culture__box {
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .culture__box {
    flex-direction: row;
    gap: 30px;
  }
}
@media (min-width:1024px) {
  .culture__box {
    flex-direction: row;
    gap: 30px;
  }
}
@media (min-width: 1440px) {
  .culture__box {
    flex-direction: row;
    gap: 40px;
  }
}

@media screen and (max-width: 767px) {
  .culture__box-title {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .culture__box-title {
    width: 100%;
  }
}
@media (min-width:1024px) {
  .culture__box-title {
    width: 320px;
  }
}
@media (min-width: 1440px) {
  .culture__box-title {
    width: 395px;
  }
}

.culture__box-title-ja {
  color: #023e78;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .culture__box-title-ja {
    font-size: 18px;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .culture__box-title-ja {
    font-size: 18px;
    text-align: center;
  }
}
@media (min-width:1024px) {
  .culture__box-title-ja {
    font-size: 20px;
  }
}
@media (min-width: 1440px) {
  .culture__box-title-ja {
    font-size: 24px;
  }
}

.culture__box-title-en {
  color: #023e78;
  font-family: "Jost", sans-serif;
  font-style: italic;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.42px;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .culture__box-title-en {
    font-size: 13px;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .culture__box-title-en {
    font-size: 13px;
  }
}
@media (min-width:1024px) {
  .culture__box-title-en {
    font-size: 13px;
  }
}
@media (min-width: 1440px) {
  .culture__box-title-en {
    font-size: 14px;
  }
}

.culture__box-text {
  color: #404559;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .culture__box-text {
    font-size: 15px;
    width: 318px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .culture__box-text {
    font-size: 15px;
    width: 380px;
  }
}
@media (min-width:1024px) {
  .culture__box-text {
    font-size: 15px;
    width: 450px;
  }
}
@media (min-width: 1440px) {
  .culture__box-text {
    font-size: 16px;
    width: 561px;
  }
}

.fukuri-kousei {
  background: #f2f4f6;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .fukuri-kousei {
    padding: 80px 20px 115px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .fukuri-kousei {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width:1024px) {
  .fukuri-kousei {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .fukuri-kousei {
    padding-top: 120px;
    padding-bottom: 140px;
  }
}

.fukuri-kousei__inner {
  position: relative;
  z-index: 10;
  will-change: transform, opacity;
}
@media screen and (max-width: 767px) {
  .fukuri-kousei__inner {
    width: 350px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .fukuri-kousei__inner {
    width: 600px;
    margin: 0 auto;
  }
}
@media (min-width:1024px) {
  .fukuri-kousei__inner {
    width: 904px;
    margin: 0 auto;
  }
}
@media (min-width: 1440px) {
  .fukuri-kousei__inner {
    width: 1160px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .fukuri-kousei__boxes {
    width: 350px;
    padding-top: 49px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .fukuri-kousei__boxes {
    padding-left: 60px;
    padding-right: 60px;
    width: 600px;
    margin: 0 auto;
  }
}
@media (min-width:1024px) {
  .fukuri-kousei__boxes {
    padding-left: 60px;
    padding-right: 60px;
    width: 904px;
    margin: 0 auto;
  }
}
@media (min-width: 1440px) {
  .fukuri-kousei__boxes {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 48px;
    width: 1160px;
    margin: 0 auto;
  }
}

.fukuri-kousei__box {
  display: flex;
  gap: 40px;
  align-items: center;
  border-bottom: 2px solid #c4ccd7;
  padding-bottom: 28px;
  margin-bottom: 28px;
  will-change: transform, opacity;
}
.fukuri-kousei__box:nth-of-type(3) {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.fukuri-kousei__box svg {
  width: 63.882px;
  height: 63.882px;
}
@media screen and (max-width: 767px) {
  .fukuri-kousei__box {
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .fukuri-kousei__box {
    flex-direction: row;
    gap: 30px;
  }
}
@media (min-width:1024px) {
  .fukuri-kousei__box {
    flex-direction: row;
    gap: 30px;
  }
}
@media (min-width: 1440px) {
  .fukuri-kousei__box {
    flex-direction: row;
    gap: 40px;
  }
}

@media screen and (max-width: 767px) {
  .fukuri-kousei__box-title {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .fukuri-kousei__box-title {
    width: 100%;
  }
}
@media (min-width:1024px) {
  .fukuri-kousei__box-title {
    width: 320px;
  }
}
@media (min-width: 1440px) {
  .fukuri-kousei__box-title {
    width: 395px;
  }
}

.fukuri-kousei__box-title-ja {
  color: #023e78;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .fukuri-kousei__box-title-ja {
    font-size: 18px;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .fukuri-kousei__box-title-ja {
    font-size: 18px;
  }
}
@media (min-width:1024px) {
  .fukuri-kousei__box-title-ja {
    font-size: 20px;
  }
}
@media (min-width: 1440px) {
  .fukuri-kousei__box-title-ja {
    font-size: 24px;
  }
}

.fukuri-kousei__box-title-en {
  color: #023e78;
  font-family: "Jost", sans-serif;
  font-style: italic;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.42px;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .fukuri-kousei__box-title-en {
    font-size: 13px;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .fukuri-kousei__box-title-en {
    font-size: 13px;
  }
}
@media (min-width:1024px) {
  .fukuri-kousei__box-title-en {
    font-size: 13px;
  }
}
@media (min-width: 1440px) {
  .fukuri-kousei__box-title-en {
    font-size: 14px;
  }
}

.fukuri-kousei__box-text {
  color: #404559;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .fukuri-kousei__box-text {
    font-size: 15px;
    width: 324px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .fukuri-kousei__box-text {
    font-size: 15px;
    width: 380px;
  }
}
@media (min-width:1024px) {
  .fukuri-kousei__box-text {
    font-size: 15px;
    width: 450px;
  }
}
@media (min-width: 1440px) {
  .fukuri-kousei__box-text {
    font-size: 16px;
    width: 561px;
  }
}

.fukuri-kousei__title {
  color: #404559;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 160%;
  align-self: flex-start;
}
@media screen and (max-width: 767px) {
  .fukuri-kousei__title {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .fukuri-kousei__title {
    font-size: 22px;
  }
}
@media (min-width:1024px) {
  .fukuri-kousei__title {
    font-size: 22px;
  }
}
@media (min-width: 1440px) {
  .fukuri-kousei__title {
    font-size: 24px;
  }
}

.fukuri-kousei__image {
  width: 20px;
  height: 20px;
}

.fv-middle {
  display: block;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .fv-middle {
    width: 100%;
    height: 380px;
    max-width: 485px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .fv-middle {
    width: 768px;
    height: 380px;
  }
}
@media (min-width:1024px) {
  .fv-middle {
    width: 1024px;
    height: 380px;
  }
}
@media (min-width: 1440px) {
  .fv-middle {
    width: 1440px;
    height: 380px;
  }
}
.fv-middle img {
  z-index: 50;
}

.FAQ {
  background: #e4eaf1;
}
@media screen and (max-width: 767px) {
  .FAQ {
    padding-top: 102px;
    padding-bottom: 150px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .FAQ {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width:1024px) {
  .FAQ {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1440px) {
  .FAQ {
    padding-top: 120px;
    padding-bottom: 147px;
  }
}

.FAQ__inner {
  display: flex;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .FAQ__inner {
    width: 350px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0;
    flex-direction: column;
    gap: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .FAQ__inner {
    width: 768px;
    margin: 0 auto;
    gap: 60px;
    flex-direction: row;
  }
}
@media (min-width:1024px) {
  .FAQ__inner {
    width: 924px;
    margin: 0 auto;
    gap: 120px;
    flex-direction: row;
  }
}
@media (min-width: 1440px) {
  .FAQ__inner {
    width: 1240px;
    margin: 0 auto;
    gap: 160px;
    flex-direction: row;
  }
}

@media (min-width:1024px) {
  .FAQ__title {
    width: 180px;
  }
}
@media (min-width: 1440px) {
  .FAQ__title {
    width: 200px;
  }
}
.FAQ__title .section__title-en,
.FAQ__title .section__title-ja {
  background: linear-gradient(to right, #023e78, #0291d9);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.FAQ__boxes {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .FAQ__boxes {
    width: 350px;
    padding-top: 25px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .FAQ__boxes {
    width: 600px;
    padding-top: 0;
  }
}
@media (min-width:1024px) {
  .FAQ__boxes {
    width: 624px;
    padding-top: 0;
  }
}
@media (min-width: 1440px) {
  .FAQ__boxes {
    width: 880px;
    padding-top: 0;
  }
}

.FAQ__box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 4px;
  background: #f2f4f6;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .FAQ__box {
    width: 350px;
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .FAQ__box {
    width: 600px;
    padding: 8px 20px;
  }
}
@media (min-width:1024px) {
  .FAQ__box {
    width: 624px;
    padding: 8px 20px;
  }
}
@media (min-width: 1440px) {
  .FAQ__box {
    width: 880px;
    padding: 8px 20px;
  }
}
.FAQ__box.is-opened .FAQ__box-question {
  border-bottom: none;
}
.FAQ__box.is-opened .FAQ__box-question::after {
  transform: translateY(-50%) rotate(180deg);
}
.FAQ__box .FAQ__box-question {
  color: #404559;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 160%;
  border-bottom: 2px solid #c4ccd7;
  display: flex;
  cursor: pointer;
  transition: all 0.3s ease, border-bottom 0.3s ease;
  position: relative;
}
.FAQ__box .FAQ__box-question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -7%;
  width: 23px;
  height: 12px;
  background: url(../img/yazirusi.png) no-repeat center;
  background-size: contain;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .FAQ__box .FAQ__box-question {
    width: 298px;
    font-size: 15px;
    padding: 16px 16px 8px 0;
    margin-left: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .FAQ__box .FAQ__box-question {
    width: 600px;
    font-size: 18px;
    padding: 16px 32px;
  }
}
@media (min-width:1024px) {
  .FAQ__box .FAQ__box-question {
    width: 520px;
    font-size: 18px;
    padding: 16px 32px;
  }
}
@media (min-width: 1440px) {
  .FAQ__box .FAQ__box-question {
    width: 776px;
    font-size: 20px;
    padding: 16px 32px;
  }
}
.FAQ__box .FAQ__box-question:hover {
  background-color: rgba(194, 204, 215, 0.1);
}
.FAQ__box .FAQ__box-answer {
  color: #023e78;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 200%;
  display: block;
  opacity: 1;
  max-height: none;
}
@media screen and (max-width: 767px) {
  .FAQ__box .FAQ__box-answer {
    font-size: 14px;
    padding: 8px 16px;
    line-height: 220%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .FAQ__box .FAQ__box-answer {
    font-size: 15px;
    padding: 8px 16px;
  }
}
@media (min-width:1024px) {
  .FAQ__box .FAQ__box-answer {
    font-size: 15px;
    padding: 16px 32px;
  }
}
@media (min-width: 1440px) {
  .FAQ__box .FAQ__box-answer {
    font-size: 16px;
    padding: 16px 32px;
  }
}

.FAQ__icon {
  color: #023e78;
  font-family: "Jost", sans-serif;
  font-style: italic;
  font-weight: 500;
  line-height: 140%;
  background: rgba(255, 244, 0, 0.4);
  border-radius: 50%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .FAQ__icon {
    font-size: 22px;
    margin-right: 8px;
    width: 25px;
    height: 25px;
  }
}
@media (min-width:1024px) {
  .FAQ__icon {
    font-size: 28px;
    margin-right: 20px;
    width: 36px;
    height: 39px;
  }
}
@media (min-width: 1440px) {
  .FAQ__icon {
    font-size: 28px;
    margin-right: 20px;
    width: 36px;
    height: 39px;
  }
}

summary {
  display: block;
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}
summary::-moz-list-bullet {
  list-style-type: none;
}
@media (any-hover: hover) {
  summary:hover {
    cursor: pointer;
  }
}

.content {
  padding-top: 12px;
}

.content-inner {
  padding-top: 12px;
}

.cta {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .cta {
    height: 400px;
    min-width: 366px;
    margin: 0 auto;
    border-radius: 8px;
  }
  .cta .cta__door {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .cta {
    height: 636px;
    padding: 0 16px;
    background: #afd2e7;
  }
}
@media (min-width:1024px) {
  .cta {
    height: 636px;
    padding: 0 32px;
    background: #afd2e7;
  }
}
@media (min-width: 1440px) {
  .cta {
    height: 636px;
    padding: 0 32px;
    background: #afd2e7;
  }
}

.cta__inner {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .cta__inner {
    background: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .cta__inner {
    min-width: 768px;
    max-width: 1024px;
    border-radius: 8px;
    background: linear-gradient(to right, #023e78, #0291d9);
  }
}
@media (min-width:1024px) {
  .cta__inner {
    min-width: 1024px;
    border-radius: 8px;
    background: linear-gradient(to right, #023e78, #0291d9);
  }
}
@media (min-width: 1440px) {
  .cta__inner {
    max-width: 1376px;
    border-radius: 8px;
    background: linear-gradient(to right, #023e78, #0291d9);
  }
}

.cta__images {
  height: 300px;
  padding: 56px 0;
}
@media (min-width: 1440px) {
  .cta__images {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.cta__door {
  position: absolute;
  top: 0;
  height: 636px;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}
.cta__door img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cta__door.js-opened {
  width: 580px;
}
@media (min-width: 640px) {
  .cta__door.js-opened {
    width: 220px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .cta__door.js-opened {
    width: 300px;
  }
}
@media (min-width:1024px) {
  .cta__door.js-opened {
    width: 400px;
  }
}
@media (min-width: 1440px) {
  .cta__door.js-opened {
    width: 588px;
  }
}
.cta__door.js-opened.cta__door--left {
  transform: perspective(1200px) rotateY(30deg);
  transform-origin: left center;
  left: 0;
}
.cta__door.js-opened.cta__door--right {
  transform: perspective(1200px) rotateY(-30deg);
  transform-origin: right center;
  right: 0;
}

.cta__door--left {
  left: calc(50% - 680px);
}
.cta__door--left img {
  object-position: center;
}

.cta__door--right {
  right: calc(50% - 680px);
}
.cta__door--right img {
  object-position: center;
}

.cta__content {
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease 0.4s;
  padding: 0;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .cta__content {
    opacity: 1;
    position: relative;
    width: 100%;
    height: 300px;
    top: 0;
    left: 0;
    transform: none;
    background: linear-gradient(to right, #023e78, #0291d9);
    gap: 35px;
  }
}
@media (min-width:1024px) {
  .cta__content {
    width: 500px;
    height: 636px;
  }
}
@media (min-width: 1440px) {
  .cta__content {
    width: 544px;
    height: 636px;
  }
}
.cta__content.js-visible {
  opacity: 1;
}

.cta__title {
  color: #fff;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-style: italic;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 1.68px;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .cta__title {
    font-size: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .cta__title {
    font-size: 36px;
  }
}
@media (min-width:1024px) {
  .cta__title {
    font-size: 40px;
  }
}
@media (min-width: 1440px) {
  .cta__title {
    font-size: 56px;
  }
}

.cta__text {
  color: #fff;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .cta__text {
    font-size: 14px;
    line-height: 160%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .cta__text {
    font-size: 14px;
  }
}
@media (min-width:1024px) {
  .cta__text {
    font-size: 15px;
  }
}
@media (min-width: 1440px) {
  .cta__text {
    font-size: 16px;
  }
}

.cta__button {
  padding: 0.5rem 1.625rem;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 44px;
  transition: all 0.3s ease;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
}
.cta__button svg {
  width: 12px;
  height: 12px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .cta__button {
    padding: 18px 60px;
    font-size: 16px;
  }
}
@media (min-width:1024px) {
  .cta__button {
    padding: 14px 40px;
    font-size: 17px;
  }
}
@media (min-width: 1440px) {
  .cta__button {
    padding: 16px 64px;
    font-size: 24px;
  }
}
.cta__button:hover {
  background: #fff;
  color: #023e78;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.image__concept {
  width: 1080px;
  height: 574px;
  aspect-ratio: 540/287;
  position: absolute;
  top: 58%;
  left: 0%;
  z-index: -1;
}

.image__your-challenge {
  width: 1620px;
  height: 574px;
  position: absolute;
  top: 0;
  right: -759px;
  opacity: 1;
  z-index: 1;
}

.image__fukuri-kousei {
  width: 810px;
  height: 878px;
  aspect-ratio: 405/439;
  position: absolute;
  right: -43px;
  top: -380.167px;
  opacity: 0.5;
  z-index: -1;
}

.image__FAQ {
  width: 600px;
  height: 786px;
  aspect-ratio: 725/786;
  position: absolute;
  left: -108px;
  bottom: -129.833px;
  opacity: 0.5;
  z-index: -1;
}

.image__footer {
  width: 720px;
  height: 344px;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.5;
  z-index: -1;
}

.p-header {
  z-index: 1000;
}

.p-drawer {
  z-index: 999;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination {
  z-index: 100;
}

.fv-middle {
  z-index: 50;
  position: relative;
}

main {
  z-index: 1;
}

.concept__inner,
.your-challenge__inner,
.fukuri-kousei__inner,
.FAQ__inner,
.footer__inner {
  position: relative;
  z-index: 10;
}

.image__concept,
.image__your-challenge,
.image__fukuri-kousei,
.image__FAQ,
.image__footer {
  z-index: -1;
  position: absolute;
}

.c-animated__fadeIn {
  translate: 0 20px;
  opacity: 0;
}
.c-animated__fadeIn.js-show {
  translate: 0;
  opacity: 1;
}

.p-drawer__icon {
  position: fixed;
  z-index: 102;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  top: 17px;
  right: 20px;
  width: 24px;
  height: 16px;
}
@media (min-width:1024px) {
  .p-drawer__icon {
    display: none;
  }
}

.p-drawer__icon--bar {
  width: 100%;
  height: 2px; /* 1px → 2px で視認性向上 */
  background: #fff;
  transition: all 0.3s ease; /* transitionをここに統合 */
  border-radius: 1px; /* 角を少し丸く */
}

.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 7.5px;
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(2) {
  opacity: 0; /* display: none より滑らか */
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -7.5px;
}

.p-drawer {
  position: fixed;
  z-index: 101;
  overflow-y: auto; /* scroll → auto */
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: linear-gradient(to right, #023e78, #0291d9); /* 透明度追加 */
  /* スライドアニメーション */
  translate: 100%; /* 101% → 100% */
  transition: translate 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-drawer.js-show {
  translate: 0;
}

.p-drawer__body {
  width: 100%;
  height: fit-content;
  padding: 88px 34px 40px;
}

.p-drawer__list {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  margin-bottom: 40px;
  list-style: none; /* リストマーカーを削除 */
  padding: 0; /* デフォルトパディングを削除 */
}
.p-drawer__list li a {
  padding: 12px 0;
  font-size: 16px; /* 20px → 16px */
  font-weight: 500; /* 400 → 500 */
  font-family: "Zen Kaku Gothic New";
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #c4ccd7;
  transition: all 0.3s ease;
  line-height: normal;
}
.p-drawer__list li a:hover {
  color: linear-gradient(to right, #023e78, #0291d9);
  padding-left: 8px;
}

.p-drawer__btn {
  display: inline-block;
  background: linear-gradient(to right, #023e78, #0291d9); /* 白 → ブランドカラー */
  color: #fff; /* テキストを白に */
  font-size: 16px; /* 20px → 16px */
  font-family: "Zen Kaku Gothic New";
  transition: all 0.3s ease;
  padding: 0.5rem 1.625rem;
  border: 1px solid #fff;
  display: flex;
  padding: 10px 24px;
  align-items: center;
  gap: 16px;
  border-radius: 44px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.p-drawer__btn:hover {
  background: #fff;
  color: linear-gradient(to right, #023e78, #0291d9);
}

.p-test {
  padding-block: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-test {
    padding-block: 4.375rem;
  }
}

.p-test__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-test__container {
    flex-direction: column;
    row-gap: 1.25rem;
  }
}

.p-test__title {
  text-transform: uppercase;
}

.p-test__text {
  margin-block-start: 2.5rem;
}

.p-test__text-wrap {
  width: min(25rem, 100%);
}

.p-test__img {
  width: min(37.5rem, 100%);
  height: auto;
}

@media (min-width:1024px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
.u-font {
  font-family: "Noto Sans JP", sans-serif;
}
.u-font__jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.u-font__en {
  font-family: "Jost", sans-serif;
}

.u-text__center {
  text-align: center !important;
}
@media screen and (max-width: 767px) {
  .u-text__center--sp {
    text-align: center !important;
  }
}
@media (min-width:1024px) {
  .u-text__center--pc {
    text-align: center !important;
  }
}

.u-text__left {
  text-align: left !important;
}
@media screen and (max-width: 767px) {
  .u-text__left--sp {
    text-align: left !important;
  }
}
@media (min-width:1024px) {
  .u-text__left--pc {
    text-align: left !important;
  }
}

.u-text__right {
  text-align: right !important;
}
@media screen and (max-width: 767px) {
  .u-text__right--sp {
    text-align: right !important;
  }
}
@media (min-width:1024px) {
  .u-text__right--pc {
    text-align: right !important;
  }
}

.u-text__nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .u-text__nowrap--sp {
    white-space: nowrap;
  }
}
@media (min-width:1024px) {
  .u-text__nowrap--pc {
    white-space: nowrap;
  }
}

.u-pointer__none {
  pointer-events: none !important;
}
@media screen and (max-width: 767px) {
  .u-pointer__none--sp {
    pointer-events: none !important;
  }
}
@media (min-width:1024px) {
  .u-pointer__none--pc {
    pointer-events: none !important;
  }
}

/*# sourceMappingURL=style.css.map */
