@charset "UTF-8";
.header {
  padding: 12px 0 8px;
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 10;
}
@media not screen and (min-width: 576px) {
  .header {
    padding: 9px 0 6px;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
}
@media (max-width: 1170px) {
  .header__inner {
    padding: 0 40px;
  }
}
@media not screen and (min-width: 576px) {
  .header__inner {
    padding: 0 5.3%;
  }
}
.header__logo {
  width: 159px;
}
@media not screen and (min-width: 576px) {
  .header__logo {
    width: 120px;
  }
}
.header .g-nav {
  margin: 0 30px 0 auto;
}
@media (max-width: 1170px) {
  .header .g-nav {
    margin: 0 15px 0 auto;
  }
}
@media (max-width: 1170px) {
  .header .g-nav {
    margin: 0 10px 0 auto;
  }
}
@media not screen and (min-width: 992px) {
  .header .g-nav {
    display: none;
  }
}
.header .g-nav__list {
  display: flex;
  justify-content: flex-end;
  gap: 0 30px;
}
@media (max-width: 1260px) {
  .header .g-nav__list {
    gap: 0 15px;
  }
}
@media (max-width: 1170px) {
  .header .g-nav__list {
    gap: 0 10px;
  }
}
.header .g-nav__item {
  font-weight: 500;
  font-size: 1.6rem;
  position: relative;
  transition: color 0.5s;
}
@media (max-width: 1170px) {
  .header .g-nav__item {
    font-size: 1.4rem;
  }
}
.header .g-nav__item:before {
  content: "";
  width: 36.5px;
  height: 2.5px;
  background: #38b8ef;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: ease-in 0.5s;
}
@media not screen and (min-width: 992px) {
  .header .g-nav__item:before {
    display: none;
  }
}
.header .g-nav__item:hover, .header .g-nav__item:focus {
  color: #38b8ef;
  transition: color 0.5s;
}
.header .g-nav__item:hover:before, .header .g-nav__item:focus:before {
  bottom: -6px;
  opacity: 1;
  transition: ease-in 0.5s;
}
.header__btn {
  padding: 14.5px 0 13.2px;
  width: 160px;
  font-weight: 400;
  font-size: 1.6rem;
  text-align: center;
  background: #ef3838;
  color: #fff;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media not screen and (min-width: 992px) {
  .header__btn {
    display: none;
  }
}
.header__btn::before {
  content: "";
  display: inline-block;
  width: 120%;
  height: 120%;
  background: #2a3f51;
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: -120%;
  transform: translateY(-50%);
  z-index: -1;
  transition: left ease-in 0.25s;
}
.header__btn:hover::before {
  left: 0;
  transition: left ease-in 0.25s;
}
.header .toggle-btn {
  display: none;
}
@media not screen and (min-width: 992px) {
  .header .toggle-btn {
    display: block;
    width: 27.21px;
    height: 22.35px;
    position: relative;
    z-index: 10;
  }
}
.header .toggle-btn span {
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #38b8ef;
  position: absolute;
}
.header .toggle-btn span:nth-child(1) {
  top: 0;
  left: 0;
  transition: ease-in 0.5s;
}
.header .toggle-btn span:nth-child(2) {
  top: 50%;
  opacity: 1;
  transition: opacity 0.5s;
}
.header .toggle-btn span:nth-child(3) {
  top: 100%;
  left: 0;
  transition: ease-in 0.5s;
}
.header .toggle-btn.is-active span {
  background: #fff;
}
.header .toggle-btn.is-active span:nth-child(1) {
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(35deg);
  transition: ease-in 0.5s;
}
.header .toggle-btn.is-active span:nth-child(2) {
  opacity: 0;
  transition: opacity 0.5s;
}
.header .toggle-btn.is-active span:nth-child(3) {
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-35deg);
  transition: ease-in 0.5s;
}
.header .slide-menu {
  display: none;
}
@media not screen and (min-width: 992px) {
  .header .slide-menu {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100vw;
    background: #2d3d50;
    transition: 0.5s;
    touch-action: none;
  }
}
.header .slide-menu.is-show {
  right: 0;
  transition: 0.5s;
}
.header .slide-menu__head {
  padding: 12.4px 5.3%;
  border-bottom: 1px solid #818181;
}
@media not screen and (min-width: 576px) {
  .header .slide-menu__head {
    padding: 9px 5.3% 6px;
  }
}
.header .slide-menu__head .logo-sp {
  display: block;
  width: 159px;
}
@media not screen and (min-width: 576px) {
  .header .slide-menu__head .logo-sp {
    width: 120px;
  }
}
.header .slide-menu__btn {
  margin: 5% auto 0;
  padding: 14.5px 0 13.2px;
  width: 160px;
  font-weight: 400;
  font-size: 1.6rem;
  text-align: center;
  background: #ef3838;
  color: #fff;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}
.header .slide-menu__btn::before {
  content: "";
  display: inline-block;
  width: 120%;
  height: 120%;
  background: #2a3f51;
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: -120%;
  transform: translateY(-50%);
  z-index: -1;
  transition: left ease-in 0.25s;
}
.header .slide-menu__btn:hover::before {
  left: 0;
  transition: left ease-in 0.25s;
}
.header .g-nav-sp .g-nav__list {
  display: flex;
  flex-direction: column;
  padding: 0 5.3%;
}
.header .g-nav-sp .g-nav__item {
  padding: 4% 0;
  font-weight: 300;
  font-size: 1.7rem;
  line-height: 2.6;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #818181;
  color: #f7f7f7;
}

.mv {
  margin: 77.34px 0 0;
  height: calc(100vh - 77.34px);
  position: relative;
}
@media not screen and (min-width: 576px) {
  .mv {
    margin: 51.33px 0 0;
    height: calc(93svh - 51.33px);
  }
}
.mv .splide {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media not screen and (min-width: 576px) {
  .mv .splide {
    height: 100%;
  }
}
.mv .splide__track {
  height: 100vh;
}
@media not screen and (min-width: 576px) {
  .mv .splide__track {
    height: 100%;
  }
}
.mv .splide__slide {
  height: 100vh;
}
@media not screen and (min-width: 576px) {
  .mv .splide__slide {
    height: 100%;
  }
}
.mv .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 10% 100%;
     object-position: 10% 100%;
}
@media not screen and (min-width: 992px) {
  .mv .splide__slide:nth-child(2) img {
    -o-object-position: 80% 10%;
       object-position: 80% 10%;
  }
}
.mv .splide__slide:nth-child(3) img {
  -o-object-position: 0% 10%;
     object-position: 0% 10%;
}
@media not screen and (min-width: 992px) {
  .mv .splide__slide:nth-child(3) img {
    -o-object-position: 20% 10%;
       object-position: 20% 10%;
  }
}
@media not screen and (min-width: 576px) {
  .mv .splide__slide:nth-child(3) img {
    -o-object-position: 20% 10%;
       object-position: 20% 10%;
  }
}
.mv__inner {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 0 50px 25px;
  max-width: inherit;
  height: 100%;
}
@media not screen and (min-width: 576px) {
  .mv__inner {
    padding: 0 5.3%;
    position: relative;
  }
}
.mv .hero {
  margin: 65px 0 0;
}
@media not screen and (min-width: 576px) {
  .mv .hero {
    margin: 12% 0 0;
  }
}
.mv .hero__ttl {
  max-width: 1156px;
  width: 100%;
}
@media not screen and (min-width: 1200px) {
  .mv .hero__ttl {
    font-size: 8rem;
  }
}
@media not screen and (min-width: 992px) {
  .mv .hero__ttl {
    font-size: 6.5rem;
  }
}
@media not screen and (min-width: 768px) {
  .mv .hero__ttl {
    font-size: 5rem;
  }
}
@media not screen and (min-width: 576px) {
  .mv .hero__ttl {
    font-size: 3.6rem;
    line-height: 1.2;
    letter-spacing: 0;
  }
}
.mv .hero__lead {
  display: inline-block;
  font-family: toppan-bunkyu-midashi-go-std, sans-serif;
  margin: 20px 0 0;
  font-weight: 700;
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 3px 4px #ccc;
  position: relative;
}
@media not screen and (min-width: 992px) {
  .mv .hero__lead {
    font-size: 2.4rem;
  }
}
@media not screen and (min-width: 768px) {
  .mv .hero__lead {
    font-size: 2rem;
  }
}
@media not screen and (min-width: 576px) {
  .mv .hero__lead {
    font-size: 1.8rem;
  }
}
.mv .hero__lead::before {
  content: "";
  display: inline-block;
  width: 85px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 55%;
  right: -90px;
  transform: translateY(-50%);
}
@media not screen and (min-width: 576px) {
  .mv .hero__lead::before {
    width: 24px;
    right: -30px;
  }
}
.mv__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5%;
}
@media (max-width: 1440px) {
  .mv__foot {
    margin-bottom: 0;
  }
}
@media not screen and (min-width: 576px) {
  .mv__foot {
    flex-direction: column;
    margin-bottom: 20%;
  }
}
.mv__foot-label {
  display: block;
  margin: 0 0 0 50px;
  max-width: 393px;
  width: 100%;
}
@media not screen and (min-width: 576px) {
  .mv__foot-label {
    margin: 0;
    width: 100%;
  }
}

.mv__foot-sp {
  display: none;
}
@media not screen and (min-width: 576px) {
  .mv__foot-sp {
    display: block;
    margin: -10% 0 0;
    padding: 0 5.3%;
  }
}

.fix-link {
  display: flex;
  width: 50px;
  writing-mode: vertical-rl;
  position: fixed;
  top: 20%;
  right: 0;
  z-index: 5;
}
@media not screen and (min-width: 576px) {
  .fix-link {
    display: none;
    width: 100%;
    writing-mode: inherit;
    position: static;
  }
}
.fix-link__btn {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 17px 0 20px;
  background: #2a3f51;
}
@media not screen and (min-width: 576px) {
  .fix-link__btn {
    gap: 0 20px;
    padding: 17px 0;
  }
}
.fix-link__btn-icon {
  width: 19.3px;
}
.fix-link__btn-txt {
  margin: 6px 0 0;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #fff;
}
@media not screen and (min-width: 576px) {
  .fix-link__btn-txt {
    margin: 0;
  }
}
.fix-link.pc {
  display: block;
}
@media not screen and (min-width: 576px) {
  .fix-link.pc {
    display: none;
  }
}
.fix-link.sp {
  display: none;
}
@media not screen and (min-width: 576px) {
  .fix-link.sp {
    display: block;
  }
}

.message {
  position: relative;
  overflow: hidden;
}
@media not screen and (min-width: 576px) {
  .message__bg {
    margin: 170px 0 0;
  }
}
.message-ttl {
  color: #fff;
  text-shadow: 0 3px 6px #ccc;
}
.message__inner {
  overflow: visible;
}
.message .splide {
  overflow: visible;
  margin: 0 calc(50% - 50vw);
}
.message__inner {
  width: 100%;
  position: absolute;
  top: 5vw;
  left: 50%;
  transform: translateX(-50%);
}
@media not screen and (min-width: 576px) {
  .message__inner {
    top: 5vw;
  }
}
.message__main {
  margin: 140px 0 0;
  text-align: center;
}
@media (max-width: 1440px) {
  .message__main {
    margin: 60px 0 0;
  }
}
@media not screen and (min-width: 576px) {
  .message__main {
    margin: 20px 0 0;
  }
}
.message__main__ttl {
  margin: 0 auto;
  max-width: 1302px;
  width: 100%;
}
.message__main__desc {
  margin: 80px auto 0;
  max-width: 800px;
  width: 100%;
}
@media (max-width: 1440px) {
  .message__main__desc {
    margin: 40px auto 0;
    max-width: 60%;
  }
}
@media not screen and (min-width: 576px) {
  .message__main__desc {
    margin: 20px auto;
    width: 60%;
  }
}

.company {
  margin-top: -75px; /* 固定ナビの高さ分のネガティブマージン */
  padding-top: 182px; /* 打ち消し用のパディング */
}
.company-ttl {
  position: relative;
}
.company-ttl::after {
  content: url(../../images/webp/company_bg-txt.webp);
  display: inline-block;
  width: 100%;
  position: absolute;
  top: -140px;
  left: 20%;
  transform: translateX(-50%) scale(0.5);
}
@media not screen and (min-width: 576px) {
  .company-ttl::after {
    top: -130px;
    left: 10%;
    transform: translateX(-50%) scale(0.3);
  }
}
.company-lead {
  margin: 23px 0 0;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #2e2e2e;
}
@media not screen and (min-width: 576px) {
  .company-lead {
    font-size: 1.1rem;
  }
}
.company .history {
  margin: 50px 0 0;
  padding: 100px 17px 64.8px 0;
  background: #e9e9e9;
}
@media not screen and (min-width: 576px) {
  .company .history {
    padding: 40px 14px 80px;
  }
}
.company .history__ttl {
  margin: 0 0 0 60px;
  font-weight: 700;
  font-size: 4rem;
  line-height: 2;
  color: #000;
}
@media not screen and (min-width: 576px) {
  .company .history__ttl {
    margin: 0;
    font-size: 2rem;
  }
}
.company .history__ttl-accent {
  display: inline-block;
  margin-top: -20px;
  vertical-align: top;
  color: #38b8ef;
}
@media not screen and (min-width: 576px) {
  .company .history__ttl-accent {
    margin: -10px 0 0;
    font-size: 3.2rem;
    letter-spacing: -0.1em;
  }
}
.company .history__ttl-strong {
  padding: 0 5px;
  font-weight: 900;
  font-size: 6.6rem;
  line-height: 1.21;
  color: #38b8ef;
}
@media not screen and (min-width: 576px) {
  .company .history__ttl-strong {
    font-size: 3.2rem;
  }
}
.company .history__arrow {
  margin: 262px 0 0;
  position: relative;
}
.company .history__arrow.pc {
  display: block;
}
@media not screen and (min-width: 576px) {
  .company .history__arrow.pc {
    display: none;
  }
}
.company .history__arrow.pc .history__list {
  display: flex;
  flex-direction: column;
  gap: 26.7px 0;
  position: absolute;
  z-index: 2;
}
.company .history__arrow.pc .history__list01 {
  bottom: -3.5%;
  left: 0.5%;
}
@media (max-width: 1440px) {
  .company .history__arrow.pc .history__list01 {
    bottom: -3.5%;
    left: 0.5%;
  }
}
.company .history__arrow.pc .history__list02 {
  bottom: 0;
  left: 5%;
}
.company .history__arrow.pc .history__list03 {
  bottom: 2%;
  left: 14%;
}
.company .history__arrow.pc .history__list04 {
  left: 31%;
  bottom: 45%;
}
.company .history__arrow.pc .history__list05 {
  top: 12%;
  right: 2%;
}
@media (max-width: 1280px) {
  .company .history__arrow.pc .history__list05 {
    right: 0;
  }
}
.company .history__arrow.pc .history__list06 {
  right: 8%;
  bottom: 64%;
}
.company .history__arrow.pc .history__list07 {
  top: -4.5%;
  right: -0.5%;
}
.company .history__arrow.pc .history__item {
  display: flex;
  flex-direction: column-reverse;
  border-radius: 5px;
}
.company .history__arrow.pc .history__item01 {
  width: 306.2px;
}
@media (max-width: 1280px) {
  .company .history__arrow.pc .history__item01 {
    width: 25vw;
  }
}
.company .history__arrow.pc .history__item04 {
  width: 714px;
}
@media (max-width: 1280px) {
  .company .history__arrow.pc .history__item04 {
    width: 55vw;
  }
}
.company .history__arrow.pc .history__item06 {
  width: 911px;
}
@media (max-width: 1280px) {
  .company .history__arrow.pc .history__item06 {
    width: 68vw;
  }
}
.company .history__arrow.pc .history__item08 {
  margin: 0 0 0 auto;
  width: 389px;
}
@media (max-width: 1280px) {
  .company .history__arrow.pc .history__item08 {
    width: 30vw;
  }
}
.company .history__arrow.pc .history__item10 {
  width: 616px;
}
@media (max-width: 1280px) {
  .company .history__arrow.pc .history__item10 {
    width: 48vw;
  }
}
.company .history__arrow.pc .history__item11 {
  width: 247px;
}
@media (max-width: 1280px) {
  .company .history__arrow.pc .history__item11 {
    width: 19vw;
  }
}
.company .history__arrow.pc .history__item12 {
  width: 66px;
}
.company .history__arrow.sp {
  display: none;
}
@media not screen and (min-width: 576px) {
  .company .history__arrow.sp {
    display: flex;
    justify-content: space-between;
    margin: 66px 0 0;
    width: 100%;
  }
}
.company .history__arrow.sp .history__arrow-figure {
  width: 28vw;
}
.company .history__arrow.sp .history__lists {
  display: flex;
  flex-direction: column;
}
.company .history__arrow.sp .history__list {
  display: flex;
  flex-direction: column;
}
.company .history__arrow.sp .history__list01 {
  margin: -30px 0 0 -15vw;
}
.company .history__arrow.sp .history__list02 {
  margin: 4% 0 0 -15vw;
  gap: 10px 0;
}
.company .history__arrow.sp .history__list03 {
  margin: 3% 0 0 -15vw;
  gap: 10px 0;
}
.company .history__arrow.sp .history__list04 {
  margin: 3% 0 0 -15vw;
  gap: 10px 0;
}
.company .history__arrow.sp .history__list05 {
  margin: 3% 0 0 -15vw;
  gap: 10px 0;
}
.company .history__arrow.sp .history__list06 {
  margin: 0 0 0 -15.8vw;
}
.company .history__arrow.sp .history__list07 {
  width: 66px;
  position: absolute;
  bottom: -30px;
  left: -2.5%;
}
.company .history__arrow.sp .history__item {
  position: relative;
  z-index: 1;
}
.company .history__arrow.sp .history__item02 {
  margin: 0 0 0 auto;
  width: 68.5vw;
}
.company .history__arrow.sp .history__item04 {
  margin: 0 0 0 auto;
  width: 68.5vw;
}
.company .history__arrow.sp .history__item05 {
  margin: 0 0 0 auto;
  width: 68.5vw;
}
.company .history__arrow.sp .history__item07 {
  margin: 0 0 0 auto;
  width: 68.5vw;
}
.company .history__arrow.sp .history__item09 {
  margin: 0 0 0 auto;
  width: 68.5vw;
}
.company .history__arrow.sp .history__item11 {
  margin: 0 0 0 auto;
}

.future {
  margin: 208px 0 0;
  padding: 0 0 203px;
}
.future-ttl {
  display: inline-block;
  position: relative;
}
.future-ttl::after {
  content: url(../../images/webp/future_bg-txt.webp);
  display: inline-block;
  width: 100%;
  position: absolute;
  top: -140px;
  left: 10%;
  transform: translateX(-50%) scale(0.5);
}
@media not screen and (min-width: 576px) {
  .future-ttl::after {
    top: -130px;
    left: 5%;
    transform: translateX(-50%) scale(0.3);
  }
}
.future-lead {
  margin: 23px 0 0;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #2e2e2e;
}
.future__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 7.7%;
  margin: 50px auto 0;
  padding: 0 34px;
  max-width: 906px;
  width: 100%;
  background: #fff;
  border-radius: 5px;
  position: relative;
}
.future__list:before, .future__list:after {
  content: url(../../images/webp/play-duotone.webp);
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.5);
}
@media not screen and (min-width: 768px) {
  .future__list:before, .future__list:after {
    top: auto;
    transform: translate(-50%, -50%) scale(0.4) rotate(90deg);
  }
}
.future__list:before {
  left: 31%;
}
@media not screen and (min-width: 768px) {
  .future__list:before {
    top: 33%;
    left: 50%;
  }
}
.future__list:after {
  right: 32%;
}
@media not screen and (min-width: 768px) {
  .future__list:after {
    bottom: 25%;
    left: 50%;
  }
}
@media not screen and (min-width: 768px) {
  .future__list {
    flex-direction: column;
    gap: 30px 0;
    background: transparent;
  }
}
@media not screen and (min-width: 576px) {
  .future__list {
    padding: 0 10px;
  }
}
.future__item {
  padding: 23px 20px 20px;
  background: #fff;
  border-radius: 5px;
}
@media not screen and (min-width: 576px) {
  .future__item {
    padding: 23px 36px 20px;
  }
}
.future__item__head {
  display: flex;
  flex-direction: column-reverse;
  font-weight: 500;
  text-align: center;
  color: #166594;
}
.future__item__head-ttl {
  margin: 12.4px 0 0;
  font-size: 1.6rem;
}
.future__item__head-label {
  font-size: 1.4rem;
}
.future__item__head-icon {
  display: block;
  width: 100%;
  height: 52.4px;
  position: relative;
}
.future__item:first-child .future__item__head-icon {
  margin: 17.4px auto 0;
}
.future__item:first-child .future__item__head-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35.33px;
}
.future__item:first-child .future__item__head-icon img.initialImg01 {
  opacity: 1;
}
.future__item:first-child .future__item__head-icon img.changeImg01 {
  opacity: 0;
}
.future__item:nth-child(2) .future__item__head-icon {
  margin: 23.3px auto 0;
}
.future__item:nth-child(2) .future__item__head-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 49.32px;
}
.future__item:nth-child(2) .future__item__head-icon img.initialImg02 {
  opacity: 1;
}
.future__item:nth-child(2) .future__item__head-icon img.changeImg02 {
  opacity: 0;
}
.future__item:last-child .future__item__head-icon {
  margin: 17.4px auto 0;
}
.future__item:last-child .future__item__head-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65.49px;
}
.future__item:last-child .future__item__head-icon img.initialImg03 {
  opacity: 1;
}
.future__item:last-child .future__item__head-icon img.changeImg03 {
  opacity: 0;
}
.future__item-desc {
  margin: 8px 0 0;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.42;
  color: #2e2e2e;
}

.business {
  padding: 184px 0 169px;
  background: #fff;
  overflow-x: hidden;
}
@media not screen and (min-width: 576px) {
  .business {
    padding: 184px 0 80px;
  }
}
.business-ttl {
  position: relative;
}
.business-ttl::after {
  content: url(../../images/webp/business_bg-txt.webp);
  display: inline-block;
  width: 100%;
  position: absolute;
  top: -140px;
  left: 20%;
  transform: translateX(-50%) scale(0.5);
}
@media not screen and (min-width: 576px) {
  .business-ttl::after {
    top: -130px;
    left: 10%;
    transform: translateX(-50%) scale(0.3);
  }
}
.business-lead {
  margin: 23px 0 0;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #2e2e2e;
}
.business__main {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  width: 100vw;
  margin: 0 calc(50% - 50vw) 0;
  position: relative;
  background: #fff;
  position: relative;
}
@media not screen and (min-width: 576px) {
  .business__main {
    margin: 20px calc(50% - 50vw) 0;
    height: 50vh;
  }
}
.business__main-bg {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  padding: 200px 0 0;
  background: linear-gradient(-180deg, #fff, #e4eff9);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
          clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
  position: relative;
}
@media not screen and (min-width: 576px) {
  .business__main-bg {
    padding: 40px 0 0;
  }
}
.business .circle {
  margin: 0 auto -15%;
  max-width: 1366px;
  width: 100%;
  position: relative;
}
@media (max-width: 1440px) {
  .business .circle {
    margin: 0 auto -180px;
  }
}
@media (max-width: 1170px) {
  .business .circle {
    margin: 0 auto -12%;
  }
}
@media not screen and (min-width: 992px) {
  .business .circle {
    margin: 0 auto -16%;
  }
}
@media not screen and (min-width: 768px) {
  .business .circle {
    margin: 0 auto -12%;
  }
}
@media not screen and (min-width: 576px) {
  .business .circle {
    margin: 0 auto -12%;
  }
}
.business .circle__center {
  text-align: center;
  position: absolute;
  top: 42%;
  left: 30%;
  transform: rotate(101deg);
}
@media (max-width: 1440px) {
  .business .circle__center {
    top: 41%;
    left: 30%;
  }
}
@media not screen and (min-width: 992px) {
  .business .circle__center {
    top: 39%;
    left: 30%;
  }
}
@media not screen and (min-width: 576px) {
  .business .circle__center {
    width: 80%;
    top: 52%;
    left: 55%;
    transform: translate(-50%, -50%) rotate(101deg);
  }
}
.business .circle__center-ttl {
  font-weight: 700;
  font-size: 10rem;
  line-height: 1.3;
  color: #2a3f51;
}
@media (max-width: 1440px) {
  .business .circle__center-ttl {
    font-size: 8rem;
  }
}
@media (max-width: 1170px) {
  .business .circle__center-ttl {
    font-size: 6rem;
  }
}
@media not screen and (min-width: 768px) {
  .business .circle__center-ttl {
    font-size: 4rem;
    line-height: 1.27;
  }
}
@media not screen and (min-width: 576px) {
  .business .circle__center-ttl {
    font-size: 2.4rem;
    line-height: 1.27;
  }
}
.business .circle__center-desc {
  margin: 18px 0 0;
  font-weight: 400;
  font-size: 4rem;
}
@media (max-width: 1440px) {
  .business .circle__center-desc {
    font-size: 3.6rem;
  }
}
@media (max-width: 1170px) {
  .business .circle__center-desc {
    font-size: 2.4rem;
  }
}
@media not screen and (min-width: 768px) {
  .business .circle__center-desc {
    font-size: 2rem;
    line-height: 1.27;
  }
}
@media not screen and (min-width: 576px) {
  .business .circle__center-desc {
    font-size: 1.1rem;
    line-height: 1.27;
  }
}
.business .circle__line {
  margin: 0 auto;
  max-width: 1366px;
  height: 1366px;
  background-image: conic-gradient(#2a3f51 45deg, transparent 45deg);
  -webkit-clip-path: circle();
          clip-path: circle();
  display: grid;
  place-items: center;
  transform: rotate(-101deg);
}
@media (max-width: 1440px) {
  .business .circle__line {
    width: 1080px;
    height: 1080px;
  }
}
@media (max-width: 1170px) {
  .business .circle__line {
    width: 850px;
    height: 850px;
  }
}
@media not screen and (min-width: 992px) {
  .business .circle__line {
    width: 700px;
    height: 700px;
  }
}
@media not screen and (min-width: 768px) {
  .business .circle__line {
    width: 500px;
    height: 500px;
  }
}
@media not screen and (min-width: 576px) {
  .business .circle__line {
    width: 300px;
    height: 300px;
  }
}
.business .circle__line:before {
  content: "";
  width: 1364px;
  height: 1364px;
  background: linear-gradient(-90deg, #feffff 20%, #deebf7 80%);
  -webkit-clip-path: circle();
          clip-path: circle();
}
@media (max-width: 1440px) {
  .business .circle__line:before {
    width: 1078px;
    height: 1078px;
  }
}
@media (max-width: 1170px) {
  .business .circle__line:before {
    width: 848px;
    height: 848px;
  }
}
@media not screen and (min-width: 992px) {
  .business .circle__line:before {
    width: 698px;
    height: 698px;
  }
}
@media not screen and (min-width: 768px) {
  .business .circle__line:before {
    width: 498px;
    height: 498px;
  }
}
@media not screen and (min-width: 576px) {
  .business .circle__line:before {
    width: 296px;
    height: 296px;
  }
}
.business .circle__list {
  display: block;
  position: absolute;
  max-width: 1366px;
  width: 100%;
  top: 0;
  left: 44%;
  transform: translateX(-50%);
  z-index: 10;
}
@media (max-width: 1440px) {
  .business .circle__list {
    width: 1078px;
    top: -2%;
  }
}
@media (max-width: 1170px) {
  .business .circle__list {
    width: 848px;
    left: 43%;
  }
}
@media not screen and (min-width: 992px) {
  .business .circle__list {
    width: 698px;
    top: -2%;
    left: 46%;
  }
}
@media not screen and (min-width: 768px) {
  .business .circle__list {
    width: 498px;
    left: 45%;
  }
}
@media not screen and (min-width: 576px) {
  .business .circle__list {
    width: 273px;
    left: 40%;
  }
}
.business .circle__item {
  width: 155px;
  height: 155px;
  position: absolute;
  transform: translate(0, -50%);
  z-index: 2;
}
@media not screen and (min-width: 992px) {
  .business .circle__item {
    width: 100px;
    height: 100px;
  }
}
@media not screen and (min-width: 992px) {
  .business .circle__item {
    width: 80px;
    height: 80px;
  }
}
@media not screen and (min-width: 576px) {
  .business .circle__item {
    width: 50px;
    height: 50px;
  }
}
.business__foot {
  margin: 85px 0 0;
  padding: 107px 0 0;
  text-align: center;
  background: #fff;
  position: relative;
  z-index: 5;
}
@media not screen and (min-width: 576px) {
  .business__foot {
    margin: 0;
  }
}
.business__foot-ttl {
  display: inline-block;
  font-weight: 500;
  font-size: 3.2rem;
  color: #2a3f51;
  position: relative;
}
@media not screen and (min-width: 992px) {
  .business__foot-ttl {
    font-size: 2rem;
  }
}
@media not screen and (min-width: 576px) {
  .business__foot-ttl {
    font-size: 1.1rem;
    letter-spacing: -0.02em;
  }
}
.business__foot-ttl::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 3.5px;
  background: linear-gradient(90deg, #2a3f51 0%, #2a3f51 15%, #38b8ef 15%, #38b8ef 100%);
  position: absolute;
  bottom: -10px;
  left: 0;
}
.business__foot-view {
  display: block;
  margin: 65px auto 0;
  max-width: 840px;
  width: 100%;
  overflow: hidden;
  transition: transform 0.5s;
}
.business__foot-view:hover .business__foot-document {
  opacity: 0.7;
  transform: scale(1.05);
  transition: transform 0.5s, opacity 0.5s;
}
.business__foot-document {
  position: relative;
  opacity: 1;
  transform: scale(1);
  transition: transform 0.5s, opacity 0.5s;
}
.business__foot-circle {
  position: absolute;
  top: 50%;
  right: 44px;
  display: none;
  justify-content: center;
  align-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  font-weight: 500;
  font-size: 0.9rem;
  color: #38b8ef;
  background: #fff;
  transform: translateY(-50%);
}
.business__foot-circle:before {
  content: "";
  display: inline-block;
  width: 76px;
  height: 76px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media not screen and (min-width: 576px) {
  .business__foot-circle {
    display: flex;
  }
}

.culture {
  padding: 193px 0 87px;
  background: rgba(56, 184, 239, 0.11);
}
.culture-ttl {
  position: relative;
}
.culture-ttl::after {
  content: url(../../images/webp/culture_bg-txt.webp);
  display: inline-block;
  width: 100%;
  position: absolute;
  top: -160px;
  left: 20%;
  transform: translateX(-50%) scale(0.5);
}
@media not screen and (min-width: 576px) {
  .culture-ttl::after {
    top: -170px;
    left: 15%;
    transform: translateX(-50%) scale(0.3);
  }
}
.culture__head {
  margin: 68px 0 0;
  text-align: center;
}
.culture__head-ttl {
  font-weight: 700;
  font-size: 3.2rem;
  color: #2e2e2e;
}
@media not screen and (min-width: 576px) {
  .culture__head-ttl {
    font-size: 2.6rem;
  }
}
.culture__head-lead {
  margin: 29px 0 0;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  color: #2e2e2e;
}
@media not screen and (min-width: 576px) {
  .culture__head-lead {
    margin: 15px 0 0;
    font-size: 1.1rem;
  }
}
.culture__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 0 70px;
  margin: 21px 0 0;
}
@media (max-width: 1134px) {
  .culture__list {
    gap: 0 40px;
  }
}
@media not screen and (min-width: 576px) {
  .culture__list {
    margin: 30px 0 0;
  }
}
.culture__item {
  margin: 25px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid #2a3f51;
}
@media not screen and (min-width: 576px) {
  .culture__item:first-child {
    margin: 0;
  }
}
.culture__item__head {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row-reverse;
  gap: 0 13.5px;
}
.culture__item__head-ttl {
  font-weight: 700;
  font-size: 2.3rem;
}
@media not screen and (min-width: 576px) {
  .culture__item__head-ttl {
    font-size: 2rem;
  }
}
.culture__item__head-num {
  margin: 0 0 0 7px;
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
@media not screen and (min-width: 576px) {
  .culture__item__head-num {
    font-size: 1.5rem;
  }
}
.culture__item__head-num:before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #2a3f51;
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
}
@media not screen and (min-width: 576px) {
  .culture__item__head-num:before {
    width: 32px;
    height: 32px;
  }
}
.culture__item-desc {
  margin: 18px 0 0;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.78;
  color: #2e2e2e;
}
@media not screen and (min-width: 576px) {
  .culture__item-desc {
    font-size: 1.1rem;
  }
}

.interview {
  padding: 168px 0 130px;
  background: #fff;
  overflow: hidden;
}
.interview-ttl {
  position: relative;
}
.interview-ttl::after {
  content: url(../../images/webp/interview_bg-txt.webp);
  display: inline-block;
  width: 100%;
  position: absolute;
  top: -170px;
  left: 20%;
  transform: translateX(-50%) scale(0.5);
  z-index: 2;
}
@media not screen and (min-width: 576px) {
  .interview-ttl::after {
    top: -190px;
    left: 15%;
    transform: translateX(-50%) scale(0.3);
  }
}
.interview__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 5px 0 0;
}
.interview__head-ttl {
  display: flex;
  flex-direction: column-reverse;
  margin: 0 -26px 0 0;
  width: 172px;
  font-family: "Unbounded", cursive;
  font-weight: 700;
  font-size: 3rem;
  color: #2e2e2e;
  position: relative;
}
.interview__head-ruby {
  display: flex;
  align-items: center;
  gap: 0 8px;
  font-weight: 500;
  font-size: 1.4rem;
  color: #2e2e2e;
}
.interview__head-ruby::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #38b8ef;
  border-radius: 50%;
}
.interview__head__thumb {
  width: 100vw;
  margin-right: calc(50% - 50vw);
}
@media not screen and (min-width: 576px) {
  .interview__head__thumb {
    margin: 30px calc(50% - 50vw) 0 -100%;
  }
}
.interview .splide {
  margin: 65px 0 0;
  /* 前の矢印 */
  /* 次の矢印 */
  /* 次のスライドが無い場合の矢印 */
  /* スライドのサイズ調整 */
}
.interview .splide__arrow {
  position: static;
}
.interview .splide__arrows {
  display: flex;
  justify-content: flex-start;
  margin: 28.3px 0 0;
}
.interview .splide__arrows:before {
  content: "";
  display: inline-block;
  margin: 0 55.5px 0 0;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, #38b8ef 0, #38b8ef 20%, #bebebe 20%, #bebebe 100%);
}
@media not screen and (min-width: 576px) {
  .interview .splide__arrows:before {
    display: none;
  }
}
.interview .splide .button {
  background-color: transparent;
  height: 55px;
  transition: 0.2s;
  width: 55px;
}
@media not screen and (min-width: 576px) {
  .interview .splide .button {
    display: none;
  }
}
.interview .splide .button::before {
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  height: 50px;
  left: 0;
  margin: auto;
  position: static;
  top: 0;
  width: 50px;
}
.interview .splide .prev::before {
  background-image: url(../../images/webp/slide_arrow-prev.webp);
  bottom: 0;
}
.interview .splide .next::before {
  background-image: url(../../images/webp/slide_arrow-next.webp);
}
.interview .splide .button:disabled::before {
  opacity: 0.5;
}
.interview .splide .splide__slide img {
  height: auto;
  width: 100%;
}
.interview .splide__track {
  padding-bottom: 20px;
}
.interview .splide__slide {
  box-shadow: 0 3px 6px #e7e7e7;
}
@media not screen and (min-width: 576px) {
  .interview .splide__slide:not(:first-child) {
    margin: 25px 0 0;
  }
}
.interview .splide__slide-link {
  display: flex;
  flex-direction: column-reverse;
}
.interview .splide__slide__body {
  display: flex;
  flex-direction: column-reverse;
  padding: 22px 10px;
}
.interview .splide__slide__body__txt {
  margin: 5px 0 0;
}
.interview .splide__slide__body__txt-ttl {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #2e2e2e;
}
@media not screen and (min-width: 576px) {
  .interview .splide__slide__body__txt-ttl {
    font-size: 1.4rem;
  }
}
.interview .splide__slide__body__txt-desc {
  margin: 5px 0 0;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.71;
  color: #2e2e2e;
}
.interview .splide__slide__head {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
.interview .splide__slide__head-label {
  font-weight: 500;
  font-size: 1.6rem;
  color: #38b8ef;
}
@media not screen and (min-width: 576px) {
  .interview .splide__slide__head-label {
    font-size: 1.4rem;
  }
}
.interview .splide__slide__head-date {
  font-weight: 500;
  font-size: 1.4rem;
  color: #878787;
}
.interview .splide__slide__thumb {
  width: 100%;
  position: relative;
}
.interview .splide__slide__thumb:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
}
.interview .splide__slide__thumb-caption {
  font-weight: 700;
  font-size: 1.5rem;
  writing-mode: vertical-rl;
  color: #fff;
  position: absolute;
  top: 23px;
}
@media not screen and (min-width: 576px) {
  .interview .splide__slide__thumb-caption {
    font-size: 1.3rem;
  }
}
.interview .splide__slide__thumb-caption01 {
  left: 10px;
}
.interview .splide__slide__thumb-caption02 {
  right: 12px;
}
.interview .btn {
  display: flex;
  justify-content: flex-end;
  margin: -10px 18.3px 0 auto;
  position: relative;
}
@media not screen and (min-width: 576px) {
  .interview .btn {
    justify-content: center;
    margin: 30px auto 0;
    padding: 0 30px 0 0;
  }
}
.interview .btn-txt {
  width: 89.15px;
}
.interview .btn::after {
  content: url(../../images/webp/view-more_arrow.webp);
  width: 100%;
  position: absolute;
  top: 10px;
  right: -120px;
  transform: translate(-50%, -50%) scale(0.5);
  transition: 0.5s ease-in;
}
.interview .btn:hover:after {
  transform: translate(-50%, -50%) scale(0.6);
  transition: 0.5s ease-in;
}

.about {
  padding: 65px 0 0;
  background: #f2f2f2;
}
.about-ttl {
  display: flex;
  flex-direction: column;
  color: #000;
}
.about-ttl-ruby {
  font-weight: 700;
  font-size: 1.4rem;
  color: #38b8ef;
}
.about__sec-ttl {
  font-weight: 700;
  font-size: 3.2rem;
  color: #000;
  position: relative;
}
@media not screen and (min-width: 576px) {
  .about__sec-ttl {
    font-size: 2.2rem;
  }
}
.about__sec-ttl::before {
  content: "";
  display: inline-block;
  width: 49px;
  height: 3.5px;
  background: #38b8ef;
  position: absolute;
  bottom: -10px;
  left: 0;
}

.flow {
  padding: 109px 0 130px;
  min-height: 820px;
  background: url(../../images/webp/flow_bg.webp) no-repeat center/cover;
  position: relative;
}
@media not screen and (min-width: 992px) {
  .flow {
    padding: 120px 0 130px;
    margin: -20px 0 0;
    background: url(../../images/webp/flow_bg-sp.webp) no-repeat center/cover;
  }
}
.flow-ttl {
  display: flex;
  flex-direction: column;
  text-align: left;
  color: #2a3f51;
  position: relative;
  z-index: 5;
}
.flow-ttl-ruby {
  font-weight: 700;
  font-size: 1.4rem;
  color: #38b8ef;
}
.flow__bg-txt {
  max-width: 507px;
  width: 100%;
  position: absolute;
  top: 122px;
  right: 15px;
}
@media not screen and (min-width: 992px) {
  .flow__bg-txt {
    max-width: inherit;
    width: 40%;
  }
}
@media not screen and (min-width: 576px) {
  .flow__bg-txt {
    width: 194px;
    top: 70px;
  }
}
.flow .circle {
  width: 283.2px;
  position: absolute;
  top: 180px;
  left: 16%;
}
@media (max-width: 1440px) {
  .flow .circle {
    top: 180px;
    left: 8%;
  }
}
@media not screen and (min-width: 992px) {
  .flow .circle {
    position: static;
    width: 60%;
  }
}
@media not screen and (min-width: 576px) {
  .flow .circle {
    width: 100%;
  }
}
.flow .circle::before {
  content: "";
  display: inline-block;
  border: 2.5px solid #38b8ef;
  border-radius: 50%;
  position: absolute;
  width: 687px;
  height: 687px;
  background: url(../../images/webp/flow_circle_thumb.webp) no-repeat center/cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1440px) {
  .flow .circle::before {
    width: 600px;
    height: 600px;
    top: 45%;
    left: 20%;
  }
}
@media not screen and (min-width: 992px) {
  .flow .circle::before {
    display: none;
  }
}
@media not screen and (min-width: 992px) {
  .flow .circle__logo {
    display: none;
  }
}
.flow .circle__list {
  display: flex;
  flex-direction: column;
  gap: 34px 0;
  position: absolute;
  top: -18%;
  left: 140%;
}
@media (max-width: 1440px) {
  .flow .circle__list {
    top: -18%;
    left: 100%;
  }
}
@media not screen and (min-width: 992px) {
  .flow .circle__list {
    gap: 20px 0;
    margin: 40px 0 0;
    position: static;
  }
}
.flow .circle__item {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row-reverse;
}
.flow .circle__item:first-child {
  gap: 0 20px;
}
@media not screen and (min-width: 992px) {
  .flow .circle__item:first-child {
    gap: 0 19px;
  }
}
.flow .circle__item:first-child .circle__item__main {
  width: 343px;
}
@media not screen and (min-width: 992px) {
  .flow .circle__item:first-child .circle__item__main {
    width: 85%;
  }
}
.flow .circle__item:first-child .circle__item-icon {
  width: 33px;
}
@media not screen and (min-width: 992px) {
  .flow .circle__item:first-child .circle__item-icon {
    width: 26.83px;
  }
}
.flow .circle__item:first-child .circle__item-num {
  right: 38px;
}
@media not screen and (min-width: 992px) {
  .flow .circle__item:first-child .circle__item-num {
    right: 0;
  }
}
.flow .circle__item:nth-child(2) {
  gap: 0 80px;
}
@media not screen and (min-width: 992px) {
  .flow .circle__item:nth-child(2) {
    gap: 0 19px;
  }
}
.flow .circle__item:nth-child(2) .circle__item__main {
  width: 252px;
}
@media not screen and (min-width: 992px) {
  .flow .circle__item:nth-child(2) .circle__item__main {
    width: 85%;
  }
}
.flow .circle__item:nth-child(2) .circle__item-icon {
  width: 31.57px;
}
.flow .circle__item:nth-child(2) .circle__item-num {
  left: 30px;
}
@media (max-width: 1440px) {
  .flow .circle__item:nth-child(2) .circle__item-num {
    left: 20px;
  }
}
@media not screen and (min-width: 992px) {
  .flow .circle__item:nth-child(2) .circle__item-num {
    left: 0;
  }
}
.flow .circle__item:nth-child(3) {
  gap: 0 120px;
}
@media not screen and (min-width: 992px) {
  .flow .circle__item:nth-child(3) {
    gap: 0 19px;
  }
}
.flow .circle__item:nth-child(3) .circle__item__main {
  width: 301px;
}
@media not screen and (min-width: 992px) {
  .flow .circle__item:nth-child(3) .circle__item__main {
    width: 85%;
  }
}
.flow .circle__item:nth-child(3) .circle__item-icon {
  width: 33.94px;
}
.flow .circle__item:nth-child(3) .circle__item-num {
  left: 48px;
}
@media (max-width: 1440px) {
  .flow .circle__item:nth-child(3) .circle__item-num {
    left: 34px;
  }
}
@media not screen and (min-width: 992px) {
  .flow .circle__item:nth-child(3) .circle__item-num {
    left: 0;
  }
}
.flow .circle__item:nth-child(4) {
  gap: 0 87px;
}
@media not screen and (min-width: 992px) {
  .flow .circle__item:nth-child(4) {
    gap: 0 19px;
  }
}
.flow .circle__item:nth-child(4) .circle__item__main {
  width: 343px;
}
@media not screen and (min-width: 992px) {
  .flow .circle__item:nth-child(4) .circle__item__main {
    width: 85%;
  }
}
.flow .circle__item:nth-child(4) .circle__item-icon {
  width: 36.5px;
}
.flow .circle__item:nth-child(4) .circle__item-num {
  left: 35px;
}
@media (max-width: 1440px) {
  .flow .circle__item:nth-child(4) .circle__item-num {
    left: 10px;
  }
}
@media not screen and (min-width: 992px) {
  .flow .circle__item:nth-child(4) .circle__item-num {
    left: 0;
  }
}
.flow .circle__item:last-child {
  gap: 0 40px;
}
@media not screen and (min-width: 992px) {
  .flow .circle__item:last-child {
    gap: 0 19px;
  }
}
.flow .circle__item:last-child .circle__item__main {
  width: 419px;
}
@media not screen and (min-width: 992px) {
  .flow .circle__item:last-child .circle__item__main {
    width: 85%;
  }
}
.flow .circle__item:last-child .circle__item-icon {
  width: 29.06px;
}
.flow .circle__item:last-child .circle__item-num {
  bottom: 10px;
  left: -20px;
}
@media (max-width: 1440px) {
  .flow .circle__item:last-child .circle__item-num {
    bottom: 10px;
    left: -60px;
  }
}
@media not screen and (min-width: 992px) {
  .flow .circle__item:last-child .circle__item-num {
    bottom: 0;
    left: 0;
  }
}
.flow .circle__item__main {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row-reverse;
  gap: 0 19.6px;
  padding: 15px 32px 15px 32.3px;
  background: #fff;
  border-radius: 5px;
  position: relative;
}
@media not screen and (min-width: 992px) {
  .flow .circle__item__main {
    justify-content: flex-end;
    gap: 0 15px;
    padding: 15px 0 15px 16.6px;
  }
}
.flow .circle__item__main:before {
  content: "";
  position: absolute;
  top: 52%;
  left: -32px;
  margin-top: -15px;
  border: 12px solid transparent;
  border-right: 20px solid #fff;
}
.flow .circle__item__body {
  color: #2a3f51;
}
@media not screen and (min-width: 992px) {
  .flow .circle__item__body {
    line-height: 2;
  }
}
.flow .circle__item__body-ttl {
  font-weight: 500;
  font-size: 1.6rem;
}
.flow .circle__item__body-desc {
  font-weight: 400;
  font-size: 1.4rem;
}
@media not screen and (min-width: 992px) {
  .flow .circle__item__body-desc {
    font-size: 1.3rem;
    letter-spacing: -0.06em;
  }
}
.flow .circle__item-num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  font-family: "Unbounded", cursive;
  font-weight: 500;
  font-size: 3rem;
  color: #2a3f51;
  background: #fff;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
@media not screen and (min-width: 992px) {
  .flow .circle__item-num {
    width: 39px;
    height: 39px;
    font-size: 1.5rem;
  }
}

.recruit {
  padding: 130px 0 65px;
}
.recruit-ttl {
  display: flex;
  flex-direction: column;
  color: #000;
}
.recruit-ttl-ruby {
  font-weight: 700;
  font-size: 1.4rem;
  color: #38b8ef;
}
.recruit__link {
  display: block;
  margin: 0 auto;
  max-width: 607px;
  width: 100%;
  border-radius: 30px;
  box-shadow: 5px 5px 0 #38b8ef;
  opacity: 1;
  transition: opacity 0.5s;
  overflow: hidden;
}
.recruit__link:hover, .recruit__link:focus {
  opacity: 0.7;
  transition: opacity 0.5s;
}
.recruit__link:hover img, .recruit__link:focus img {
  transform: scale(1.1);
  transition: transform 0.5s, opacity 0.5s;
}
.recruit__link img {
  transform: scale(1);
  transition: transform 0.5s, opacity 0.5s;
}

.news {
  margin: -75px 0 0;
  padding: 162px 0 64.7px;
}
.news-ttl {
  display: flex;
  flex-direction: column;
  text-align: left;
  color: #000;
}
.news-ttl-ruby {
  font-weight: 700;
  font-size: 1.4rem;
  color: #38b8ef;
}
.news .splide {
  margin: 65px 0 0;
  /* 前の矢印 */
  /* 次の矢印 */
  /* 次のスライドが無い場合の矢印 */
  /* スライドのサイズ調整 */
}
.news .splide__arrow {
  position: inherit;
}
.news .splide__arrows {
  display: flex;
  justify-content: center;
  margin: 28.3px 0 0;
}
.news .splide .button {
  background-color: transparent; /* ボタンの背景を透明にする */
  height: 50px;
  transition: 0.2s;
  width: 50px;
}
.news .splide .button::before {
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  height: 50px;
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 50px;
}
.news .splide .prev::before {
  background-image: url(../../images/webp/slide_arrow-prev.webp);
  bottom: 0;
  transition: 0.5s;
}
.news .splide .prev:hover::before, .news .splide .prev:focus::before {
  background-image: url(../../images/webp/slide_arrow-prev-white.webp);
  transition: 0.5s;
}
.news .splide .next::before {
  background-image: url(../../images/webp/slide_arrow-next.webp);
  transition: 0.5s;
}
.news .splide .next:hover::before, .news .splide .next:focus::before {
  background-image: url(../../images/webp/slide_arrow-next-white.webp);
  transition: 0.5s;
}
.news .splide .button:disabled::before {
  opacity: 0.5;
}
.news .splide .splide__slide img {
  height: auto;
  width: 100%;
}
.news .splide__track {
  padding-bottom: 20px;
}
.news .splide__slide {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  height: 384px;
  box-shadow: 0 3px 6px #e7e7e7;
  border-radius: 10px;
}
.news .splide__slide__body {
  display: flex;
  flex-direction: column-reverse;
  padding: 22px 10px;
}
.news .splide__slide__body__txt {
  margin: 5px 0 0;
}
.news .splide__slide__body__txt-ttl {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #2e2e2e;
}
.news .splide__slide__body__txt-desc {
  margin: 5px 0 0;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #2e2e2e;
}
.news .splide__slide__head {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row-reverse;
  gap: 0 10px;
}
.news .splide__slide__head-label {
  padding: 3px 0 4px;
  width: 113px;
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
  background: #d7e5f9;
  color: #62a2ea;
  border-radius: 5px;
}
.news .splide__slide__head-date {
  font-weight: 500;
  font-size: 1.4rem;
  color: #878787;
}
.news .splide__slide__thumb {
  position: relative;
}
.news .splide__slide__thumb:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px 10px 0 0;
  position: absolute;
  top: 0;
  left: 0;
}
.news .splide__slide__thumb-caption {
  font-weight: 700;
  font-size: 1.5rem;
  writing-mode: vertical-rl;
  color: #fff;
  position: absolute;
  top: 23px;
}
.news .splide__slide__thumb-caption01 {
  left: 10px;
}
.news .splide__slide__thumb-caption02 {
  right: 12px;
}

.contact {
  padding: 65px 0;
  background: #f2f2f2;
}
.contact-ttl {
  display: flex;
  flex-direction: column;
  color: #000;
}
.contact-ttl-ruby {
  font-weight: 700;
  font-size: 1.4rem;
  color: #38b8ef;
}
.contact__body {
  margin: 75px auto 0;
  max-width: 540px;
  width: 100%;
  text-align: center;
}
@media not screen and (min-width: 576px) {
  .contact__body {
    margin: 40px 0 0;
  }
}
.contact__body-desc {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2;
}
@media not screen and (min-width: 576px) {
  .contact__body-desc {
    margin: 0 0 30px;
  }
}
.contact__body-detail {
  display: block;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
}
.contact__body-detail a {
  margin: 0 5px;
}
@media not screen and (min-width: 576px) {
  .contact__body-detail a {
    margin: 0;
  }
}

.footer {
  padding: 65px 0 21px;
}
.footer__inner {
  display: flex;
}
@media not screen and (min-width: 576px) {
  .footer__inner {
    align-items: center;
    flex-direction: column;
  }
}
.footer__logo {
  width: 159.04px;
}
.footer .f-nav__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0 auto;
  width: 50%;
}
@media not screen and (min-width: 576px) {
  .footer .f-nav__list {
    margin: 40px 0 0;
    width: 100%;
  }
}
.footer .f-nav__item {
  display: flex;
  align-items: center;
  gap: 0 4.5px;
  width: 50%;
  font-weight: 500;
  font-size: 1.6rem;
  color: #222222;
}
.footer .f-nav__item:not(:first-child, :nth-child(2)) {
  margin: 16px 0 0;
}
.footer .f-nav__item:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 1.5px;
  background: #38b8ef;
}
.footer__copy {
  margin: 74.9px 0 0;
  font-weight: 100;
  font-size: 1.2rem;
  text-align: center;
}