@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  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,
aside,
figure,
figcaption {
  display: block;
}

a {
  text-decoration: none;
}

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

address {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

:root {
  --header-h: 80px;
}

[id] {
  scroll-margin-top: var(--header-h);
}

html {
  scroll-padding-top: var(--header-h);
  font-family:
    "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic",
    "Meiryo", sans-serif;
  font-size: 16px;
}
@media screen and (max-width: 1439px) and (min-width: 769px) {
  html {
    font-size: calc(16 / 1440 * 100vw);
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: calc(16 / 375 * 100vw);
  }
}

body {
  color: #000000;
}

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 820px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

button {
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
}

body.is-scroll {
  overflow: hidden;
}

.header {
  height: 4rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 768px) {
  .header {
    display: none;
    height: 0px;
  }
}

.header__inner {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.5rem 0 1rem;
}
@media screen and (max-width: 768px) {
  .header__inner {
    height: 60px;
  }
}

.header__logo {
  width: 10.8125rem;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 7.5rem;
    max-width: 173px;
  }
}

.header__logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.header__nav-list {
  display: flex;
}
@media screen and (max-width: 768px) {
  .header__nav-list {
    display: none;
  }
}

.header__nav-item a {
  display: grid;
  place-content: center;
  height: 4rem;
  padding: 0 2rem;
  color: #173b6f;
  font-size: 1rem;
  font-weight: bold;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header__nav-item a {
    height: 3.75rem;
  }
}

.header__nav-item.-narrow a {
  padding: 0 0.875rem;
}

@media (any-hover: hover) {
  .header__nav-item a:hover {
    color: #1bb9ee;
  }
}
.header__nav-item:not(:first-child) a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 2rem;
  background: #d4dbe3;
}

.drawer__icon {
  display: none;
}
@media screen and (max-width: 768px) {
  .drawer__icon {
    display: block;
    position: fixed;
    z-index: 102;
    top: 6px;
    right: 10px;
    width: 48px;
    height: 48px;
    background: #3071a5;
    border-radius: 8px;
  }
}

.drawer__icon-wrapper {
  width: 28px;
  height: 16px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.drawer__icon--bar {
  width: 100%;
  height: 1px;
  background: #fff;
}

.drawer__icon.js-show {
  background: none;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 7.5px;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -7.5px;
}

.drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 100%;
  height: 100dvh;
  background: linear-gradient(90deg, #173b6f 0%, #3172a5 100%);
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}
.drawer.js-show {
  opacity: 1;
  visibility: visible;
}

.drawer.--business {
  background: linear-gradient(90deg, #85064d 0%, #392b75 100%);
}

.drawer.--business .drawer__body::after {
  background: url(../img/business/drawer-bg_business.webp) no-repeat center
    center/contain;
}

.drawer__body {
  width: 100%;
  height: auto;
  padding: 100px 20px 136px;
  position: relative;
}

.drawer__body::after {
  content: "";
  background: url(../img/drawer-bg.webp) no-repeat center center/contain;
  position: absolute;
  bottom: -136px;
  right: 0;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 375/96;
}

.drawer__logo {
  position: absolute;
  top: 0;
  left: 0;
}

.drawer__logo a {
  display: block;
  width: 184px;
  background: #fff;
  padding: 10px 20px;
  border-radius: 0 0 12px 0;
}
.drawer__logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.drawer__list {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin-inline: auto;
}
.drawer__list li a {
  height: 64px;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: normal;
  border-bottom: 1px solid #fff;
}

.drawer__item a img {
  filter: brightness(0) invert(1);
}

.drawer__item:first-child a img {
  width: 45px;
  margin-left: 8px;
  aspect-ratio: 1/1;
}

.drawer__item:nth-child(2) a img {
  width: 45px;
  margin-left: 8px;
  aspect-ratio: 90/64;
}

.drawer__item:nth-child(3) a img {
  width: 46px;
  margin-left: 12px;
  aspect-ratio: 46/45;
}

.drawer__item:nth-child(4) a img {
  width: 52px;
  margin-left: 16px;
  aspect-ratio: 52/24;
}

.drawer__item:nth-child(5) a img {
  width: 36px;
  margin-left: 24px;
  aspect-ratio: 36/45;
}

.drawer__sub-list {
  max-width: 400px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer__sub-item a {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.footer__top {
  height: 9.5rem;
  padding: 1.625rem 0;
  background: url(../img/footer-bg.webp) no-repeat bottom center/cover;
}
@media screen and (max-width: 768px) {
  .footer__top {
    height: auto;
    padding: 40px 0;
    background: url(../img/footer-bg_sp.webp) no-repeat bottom center/cover;
  }
}

.footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    flex-direction: column;
  }
}

.footer__item a {
  height: 100px;
  display: grid;
  place-content: center;
  padding: 0 0.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #173b6f;
  font-size: 1rem;
  line-height: 1.5;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .footer__item a {
    height: auto;
    font-size: 14px;
    line-height: 2;
    padding: 0;
  }
}

@media (any-hover: hover) {
  .footer__item a:hover {
    color: #1bb9ee;
  }
}
.footer__top.-business {
  background: linear-gradient(
    90deg,
    rgba(133, 6, 77, 0.64) 0%,
    rgba(57, 43, 117, 0.64) 100%
  );
}

.footer__top.-business .footer__item a {
  color: #fff;
}

@media (any-hover: hover) {
  .footer__top.-business .footer__item a:hover {
    color: #b9a1be;
  }
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 1.4375rem 1.5rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
  }
}

.footer__logo {
  width: 13.5625rem;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 9rem;
    max-width: 217px;
  }
}

.footer__small {
  color: #173b6f;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .footer__small {
    font-size: 8px;
  }
}

.fv__block {
  aspect-ratio: 1440/640;
  position: relative;
}
@media screen and (max-width: 768px) {
  .fv__block {
    aspect-ratio: auto;
  }
}

.fv__block::before {
  content: "";
  width: 32rem;
  aspect-ratio: 512/224;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: url(../img/fv-deco01.webp) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .fv__block::before {
    width: 264px;
    background: url(../img/fv-deco01_sp.webp) no-repeat center center/contain;
    left: -6px;
  }
}

.fv__text-area {
  width: 52.5rem;
  aspect-ratio: 840/185;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  background: url(../img/fv-title-bg.webp) no-repeat bottom right/cover;
}
@media screen and (max-width: 768px) {
  .fv__text-area {
    width: 354px;
    aspect-ratio: 354/101;
    padding: 20px 20px 2px 7px;
    gap: 0.75rem;
    background: url(../img/fv-title-bg_sp.webp) no-repeat bottom right/cover;
  }
}

.fv__heading {
  width: fit-content;
  color: #fff;
  font-size: 5rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  padding: 0.75rem 0 0.5625rem 2.875rem;
}
@media screen and (max-width: 768px) {
  .fv__heading {
    font-size: 32px;
    padding: 0;
    padding-block-start: 10px;
  }
}

.fv__heading.small {
  font-size: 2.5rem;
  padding: 2rem 0 0.75rem 2.875rem;
}
@media screen and (max-width: 768px) {
  .fv__heading.small {
    font-size: 16px;
    padding: 0;
  }
}

.fv__swiper {
  width: 100%;
  position: relative;
  z-index: 1;
}
/* @media screen and (max-width: 768px) {
  .fv__swiper {
    height: calc(100svh - 88px);
  }
} */

.fv__swiper::after {
  content: "";
  width: 32rem;
  aspect-ratio: 512/224;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  background: url(../img/fv-deco02.webp) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .fv__swiper::after {
    width: 192px;
    background: url(../img/fv-deco02_sp.webp) no-repeat center center/contain;
    bottom: 101px;
    right: -12px;
  }
}

/* @media screen and (max-width: 768px) {
  .fv__swiper .swiper-wrapper.fv__swiper-wrapper {
    height: 100% !important;
  }
} */

@media screen and (max-width: 768px) {
  .fv-swiper__slide {
    height: 100% !important;
  }
}

.fv__img {
  display: inline-block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .fv__img {
    width: 100%;
    height: 100%;
  }
}
.fv__img img {
  height: 100%;
  object-fit: cover;
}
/* =============================
   ページネーション (bullets)
============================= */
/* 位置の設定 (枠組み) */
.swiper-pagination01.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .swiper-pagination01.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -33px;
    right: auto;
    left: 10px;
    width: fit-content;
  }
}

/* それぞれのページネーション */
.swiper-pagination01.swiper-pagination-bullets.swiper-pagination-horizontal
  .swiper-pagination-bullet {
  opacity: 1;
  width: 3rem;
  height: 0.25rem;
  border-radius: 0;
  background: #fff;
  margin-inline: 4;
}
@media screen and (max-width: 768px) {
  .swiper-pagination01.swiper-pagination-bullets.swiper-pagination-horizontal
    .swiper-pagination-bullet {
    width: 16px;
    height: 2px;
  }
}
.swiper-pagination01.swiper-pagination-bullets.swiper-pagination-horizontal
  .swiper-pagination-bullet:first-of-type {
  margin-left: 0;
}

/* activeな部分 */
.swiper-pagination01.swiper-pagination-bullets.swiper-pagination-horizontal
  .swiper-pagination-bullet-active {
  background: #87b7e5;
}

.fv__place-name {
  position: absolute;
  bottom: -2.1875rem;
  right: 1.625rem;
  z-index: 5;
  color: #fff;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.1875;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .fv__place-name {
    bottom: -65px;
    right: auto;
    left: 10px;
    font-size: 12px;
  }
}

.scroll {
  padding-bottom: 7.4305555556vw;
  position: absolute;
  bottom: 14.0625rem;
  left: 3.9375rem;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .scroll {
    display: none;
  }
}

.scroll::before {
  content: "scroll";
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 0.5625rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  transform: rotate(-90deg);
  position: absolute;
  top: 0.25rem;
  left: -1.3125rem;
}
@media screen and (max-width: 768px) {
  .scroll::before {
    color: #fff;
    font-weight: 600;
    top: -1rem;
  }
}

.scroll::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 6.6875rem;
  max-height: 107px;
}
@media screen and (max-width: 768px) {
  .scroll::after {
    height: 3.125rem;
  }
}

.scroll::after {
  background-color: #fff;
  animation: scrollDown 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes scrollDown {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.fv__sp-bottom {
  display: none;
}
@media screen and (max-width: 768px) {
  .fv__sp-bottom {
    display: block;
    height: 88px;
    background: linear-gradient(to right, #173b6f 0%, #3172a5 100%);
  }
}

.fv__nav {
  background: linear-gradient(90deg, #173b6f 0%, #2f70a5 100%);
  padding: 4rem 0;
}
@media screen and (max-width: 768px) {
  .fv__nav {
    display: none;
  }
}

.fv__nav-list {
  max-width: 1240px;
  padding-inline: 20px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .fv__nav-list {
    max-width: 400px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 8px;
    padding-inline: 0.75rem;
  }
}

.fv__nav-item {
  width: 14.1875rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .fv__nav-item {
    width: 110px;
  }
}

.fv__nav-item:first-child a img {
  width: 2.8125rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .fv__nav-item:first-child a img {
    width: 25px;
  }
}

.fv__nav-item:nth-child(2) a img {
  width: 2.8125rem;
  aspect-ratio: 90/64;
}
@media screen and (max-width: 768px) {
  .fv__nav-item:nth-child(2) a img {
    width: 27px;
  }
}

.fv__nav-item:nth-child(3) a img {
  width: 2.875rem;
  aspect-ratio: 46/45;
}
@media screen and (max-width: 768px) {
  .fv__nav-item:nth-child(3) a img {
    width: 26px;
  }
}

.fv__nav-item:nth-child(4) a img {
  width: 3.25rem;
  aspect-ratio: 52/24;
}
@media screen and (max-width: 768px) {
  .fv__nav-item:nth-child(4) a img {
    width: 29px;
  }
}

.fv__nav-item:nth-child(5) a img {
  width: 2.25rem;
  aspect-ratio: 36/45;
}
@media screen and (max-width: 768px) {
  .fv__nav-item:nth-child(5) a img {
    width: 20px;
  }
}

@media screen and (max-width: 768px) {
  .fv__nav-item:nth-child(4) {
    transform: translateX(59px);
  }
  .fv__nav-item:nth-child(5) {
    transform: translateX(59px);
  }
}
.fv__nav-item a {
  display: flex;
  width: 100%;
  height: 5rem;
  padding-right: 1rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #ebf6fc;
  border-radius: 16px;
  border: 1px solid #fff;
  color: #084e8f;
  font-size: 1rem;
  font-weight: bold;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .fv__nav-item a {
    gap: 6px;
    font-size: 10px;
    height: 50px;
    padding-right: 12px;
  }
}
.fv__nav-item a img {
  transition: 0.3s;
}

.fv__nav-item:nth-child(1) a {
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .fv__nav-item:nth-child(1) a {
    gap: 6px;
  }
}

.fv__nav-item:nth-child(3) a {
  gap: 0.75rem;
}
@media screen and (max-width: 768px) {
  .fv__nav-item:nth-child(3) a {
    gap: 6px;
  }
}

.fv__nav-item:nth-child(5) a {
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .fv__nav-item:nth-child(5) a {
    gap: 6px;
  }
}

.fv__nav-item a::before {
  content: "";
  width: 1rem;
  aspect-ratio: 1/1;
  border-left: 3px solid #084e8f;
  border-bottom: 3px solid #084e8f;
  position: absolute;
  top: 1.75rem;
  right: 1.375rem;
  transform: rotate(-45deg);
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .fv__nav-item a::before {
    width: 8px;
    border-left: 2px solid #084e8f;
    border-bottom: 2px solid #084e8f;
    top: 50%;
    right: 8px;
    transform: translateY(-50%) rotate(-45deg);
  }
}

@media (any-hover: hover) {
  .fv__nav-item a:hover {
    background: #2f71a3;
    color: #fff;
  }
  .fv__nav-item a:hover img {
    filter: brightness(0) invert(1);
  }
  .fv__nav-item a:hover::before {
    border-color: #fff;
  }
}
.about__block {
  padding-block: 4.375rem 5rem;
  background: url(../img/about-bg.webp) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .about__block {
    padding: 2.6875rem 0 3rem;
  }
}

.about__block .inner {
  max-width: 80.5rem;
}

.about__title.section-title::after {
  content: "ABOUT";
  color: #fff;
}

.about__heading {
  margin-top: 5rem;
  color: #2f71a3;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.16em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about__heading {
    margin-top: 46px;
    font-size: 16px;
    line-height: 1.2;
  }
}

.about__contents {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
@media screen and (max-width: 768px) {
  .about__contents {
    margin-top: 32px;
    gap: 24px;
  }
}

.about__text {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about__text {
    font-size: 14px;
  }
}

.about__img-block {
  flex-shrink: 0;
  width: 36.3888888889vw;
  max-width: 524px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .about__img-block {
    width: 100%;
  }
}

.map__lead {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: #007db6;
  margin-block-start: 80px;
}
.map__contents {
  margin-top: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .map__contents {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .map__contents .inner {
    padding-inline: 0;
  }
}

.map__block {
  padding: 5rem 0 3rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .map__block {
    padding: 60px 0 38px;
  }
}

.section-title.map__title::after {
  content: "VISION MAP";
  color: #007db6;
}

#pagenation02 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -22px;
  width: initial;
}

.map__contents .swiper-pagination-bullet {
  background-color: #084e8f;
  height: 8px;
  width: 8px;
}

.map__contents .swiper-button-prev {
  left: clamp(100px, 100px + 400 * (100vw - 375px) / 1545, 500px);
}

.map__contents .swiper-button-next {
  right: clamp(100px, 100px + 400 * (100vw - 375px) / 1545, 500px);
}

.map__contents .swiper-button-prev,
.map__contents .swiper-button-next {
  position: absolute;
  bottom: -40px;
  top: auto;
  width: 32px;
  height: 32px;
  display: block;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .map__contents .swiper-button-prev,
  .map__contents .swiper-button-next {
    width: 38px;
    height: 38px;
  }
}
.map__contents .swiper-button-prev svg,
.map__contents .swiper-button-next svg {
  display: none;
}
.map__contents .swiper-button-prev:hover,
.map__contents .swiper-button-next:hover {
  background-color: transparent;
}
.map__contents .swiper-button-prev::before,
.map__contents .swiper-button-next::before {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 32px;
  margin: auto;
  width: 32px;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.map__contents .swiper-button-prev:before {
  background-image: url(../img/icon-swiper-arrow.svg);
}

.map__contents .swiper-button-next:before {
  background-image: url(../img/icon-swiper-arrow.svg);
  transform: rotate(180deg);
}

/* ホバー時の色変化 */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #8e8e8e;
  color: #fff;
}

/* 左右の位置を調整 */
.challenge__swiper .swiper-button-prev {
  left: 22.9166666667vw;
}
@media screen and (max-width: 1024px) {
  .challenge__swiper .swiper-button-prev {
    left: 13.8888888889vw;
  }
}
@media screen and (max-width: 768px) {
  .challenge__swiper .swiper-button-prev {
    left: 3.2vw;
  }
}

.challenge__swiper .swiper-button-next {
  right: 22.9166666667vw;
}
@media screen and (max-width: 1024px) {
  .challenge__swiper .swiper-button-next {
    right: 13.8888888889vw;
  }
}
@media screen and (max-width: 768px) {
  .challenge__swiper .swiper-button-next {
    right: 3.2vw;
  }
}

.link {
  position: relative;
}
.link__title {
  text-align: left;
  font-size: 24px;
  font-weight: 700;
  color: #173b6f;
  letter-spacing: 0.06rem;
  padding-bottom: 24px;
  border-bottom: solid 1px #87b7e5;
}
.link__subtitle {
  color: #173b6f;
  display: flex;
  align-items: center;
  border-left: solid 4px #87b7e5;
  padding-left: 16px;
}
.link__deco {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 592px;
}
.link__block {
  padding-block-end: 240px;
}
.link__list {
  padding-block-start: 24px;
  display: flex;
  row-gap: 24px;
  /* flex-wrap: wrap; */
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .link__list {
    padding-block-start: 60px;
    flex-direction: column;
  }
}
.link__item {
  position: relative;
  /* width: calc(25% - 20px); */
  padding-inline-start: 23px;
}
@media screen and (max-width: 768px) {
  .link__item {
    width: 100%;
    font-size: 12px;
  }
}
.link__item a {
  display: block;
  color: #2f71a3;
  letter-spacing: 0.04rem;
}
.link__item::before {
  content: "";
  width: 16px;
  height: 17px;
  background-image: url(../img/icon-link.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.movie__block {
  padding: 4.0625rem 0 5rem;
}
@media screen and (max-width: 768px) {
  .movie__block {
    padding: 38px 0 60px;
  }
}

.section-title.movie__title::after {
  content: "MOVIE";
  color: #007db6;
}

.movie__img {
  margin-top: 5.625rem;
  aspect-ratio: 1200/675;
}
@media screen and (max-width: 768px) {
  .movie__img {
    margin-top: 60px;
    width: 100%;
  }
}
.movie__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#video {
  width: 100%;
}

.movie__note {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .movie__note {
    margin-top: 16px;
    font-size: 8px;
    text-align: left;
  }
}

.features__block {
  margin-top: 4rem;
  padding: 6.25rem 0 14rem;
  background: url(../img/features-bg.webp) no-repeat bottom center/cover;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .features__block {
    margin-top: 30px;
    padding: 40px 0 7.125rem;
    background: url(../img/features-bg_sp.webp) no-repeat bottom center/cover;
  }
}

.features__block::before {
  content: "";
  background: url(../img/features-deco01.webp) no-repeat center center/cover;
  width: 100%;
  aspect-ratio: 1440/64;
  position: absolute;
  top: -4.375vw;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .features__block::before {
    top: -30px;
    aspect-ratio: auto;
    height: 30px;
    background: url(../img/features-deco01.webp) no-repeat center left/cover;
  }
}

.features__title.section-title {
  color: #fff;
}

.features__title.section-title::after {
  content: "Characteristics and Challenges";
  color: #fff;
  text-transform: uppercase;
}

.features__text {
  margin-top: 5.75rem;
  color: #c2e0ed;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.16em;
  text-align: center;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .features__text {
    margin: 48px auto;
    font-size: 16px;
    max-width: 500px;
  }
}

.features__contents {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .features__contents {
    margin-top: 60px;
  }
}

.features__list {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .features__list {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}

.features__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  background: #fff;
  border-radius: 24px;
  position: relative;
  padding: 1.5rem 1rem 2rem;
}
@media screen and (max-width: 768px) {
  .features__item {
    width: 355px;
    margin-inline: auto;
    row-gap: 0;
    padding: 24px 20px;
  }
}

.features__item::after {
  content: "";
  width: 10rem;
  aspect-ratio: 1/1;
  position: absolute;
  top: -1.5rem;
  right: -1rem;
}
@media screen and (max-width: 768px) {
  .features__item::after {
    width: 144px;
    top: -24px;
    right: -10px;
  }
}

.features__item:nth-child(1)::after {
  background: url(../img/features-img01.webp) no-repeat center center/contain;
}

.features__item:nth-child(2)::after {
  background: url(../img/features-img02.webp) no-repeat center center/contain;
}

.features__item:nth-child(3)::after {
  background: url(../img/features-img03.webp) no-repeat center center/contain;
}

.features-item__number {
  color: #2f71a3;
}

.features-item__number .tokusei {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .features-item__number .tokusei {
    font-size: 16px;
  }
}

.features-item__number .number {
  margin-left: 0.125rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .features-item__number .number {
    margin-left: 2px;
    font-size: 32px;
    line-height: 1;
  }
}

.features-item__title {
  color: #2f71a3;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .features-item__title {
    margin-top: 16px;
    line-height: 1.4;
    font-size: 16px;
  }
}

.features-item__text {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .features-item__text {
    margin-top: 16px;
    font-size: 16px;
  }
}

.features-item__desc-list {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .features-item__desc-list {
    font-size: 8px;
    margin-top: 16px;
  }
}

.features-assignment__list {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 2.0625rem;
}
@media screen and (max-width: 768px) {
  .features-assignment__list {
    margin-top: 32px;
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
}

.features__assignment-item {
  padding: 1.5rem 1rem 4rem;
  background: #fff;
  border-radius: 16px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  position: relative;
  gap: 0;
}
@media screen and (max-width: 768px) {
  .features__assignment-item {
    width: 100%;
    max-width: 355px;
    display: block;
    margin-inline: auto;
    padding: 24px 20px;
  }
}

.features__assignment-item::after {
  content: "";
  width: 9rem;
  aspect-ratio: 1/1;
  position: absolute;
  bottom: -2.25rem;
  right: -1rem;
}
@media screen and (max-width: 768px) {
  .features__assignment-item::after {
    width: 144px;
    bottom: -24px;
    right: 10px;
  }
}

.features__assignment-item:nth-child(1)::after {
  background: url(../img/features-img04.webp) no-repeat center center/contain;
}

.features__assignment-item:nth-child(2)::after {
  background: url(../img/features-img05.webp) no-repeat center center/contain;
}

.features__assignment-item:nth-child(3)::after {
  background: url(../img/features-img06.webp) no-repeat center center/contain;
}

.features__assignment-item:nth-child(4)::after {
  background: url(../img/features-img07.webp) no-repeat center center/contain;
}

.features-assignment-item__number {
  color: #87b7e5;
}

.features-assignment-item__number .kadai {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .features-assignment-item__number .kadai {
    font-size: 16px;
  }
}

.features-assignment-item__number .number {
  margin-left: 0.125rem;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .features-assignment-item__number .number {
    margin-left: 2px;
    font-size: 32px;
    line-height: 1;
  }
}

.features-assignment-item__title {
  padding-block: 16px;
  color: #87b7e5;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.2;
  align-content: center;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .features-assignment-item__title {
    margin-top: 13px;
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .features-assignment-item__contents {
    margin-top: 16px;
  }
}

.features-assignment-item__text {
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .features-assignment-item__text {
    font-size: 14px;
    font-feature-settings: "palt";
  }
}

.vision__block {
  margin-top: -13.8888888889vw;
  padding: 15.4166666667vw 0 1.8125rem;
  background: linear-gradient(
    to bottom,
    rgb(216, 235, 243) 0%,
    rgba(216, 235, 243, 0) 100%
  );
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .vision__block {
    margin-top: -5rem;
    padding: 7.125rem 0 7rem;
  }
}

.vision__title.section-title {
  word-break: normal;
}
@media screen and (max-width: 768px) {
  .vision__title.section-title {
    word-break: keep-all;
    padding-inline: 20px;
  }
}

@media screen and (max-width: 768px) {
  .vision__title.section-title .small {
    font-size: 15px;
  }
}

.vision__title.section-title::after {
  content: "VISION";
  color: #007db6;
}

.vision__contents {
  padding-right: 8.125rem;
  margin-block-start: 78px;
}
@media screen and (min-width: 1441px) {
  .vision__contents {
    margin-left: 120px;
  }
}
@media screen and (max-width: 768px) {
  .vision__contents {
    padding-right: 0;
    margin-top: 60px;
  }
}

.vision__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .vision__list {
    gap: 30px;
  }
}

.vision__item {
  height: 10.5rem;
  display: grid;
  grid-template-columns: 35rem 1fr;
  align-items: center;
  column-gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .vision__item {
    height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.vision-item__title {
  height: 100%;
  background: linear-gradient(90deg, #173b6f 0%, #3071a5 100%);
  padding-left: 7.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: -8px 8px 0 0 rgb(255, 255, 255);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .vision-item__title {
    padding: 24px 18px;
    width: 320px;
    height: 112px;
  }
}

.vision-item__title .small {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .vision-item__title .small {
    font-size: 12px;
  }
}

.vision-item__title .large {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
  font-size: 1.75rem;
  line-height: 1.2;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .vision-item__title .large {
    word-break: keep-all;
    margin-top: 8px;
    font-size: 20px;
  }
}

.vision-item__sub-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .vision-item__sub-list {
    gap: 8px;
    padding-left: 30px;
    padding-right: 20px;
  }
}

.vision-item__sub-item {
  margin-left: 2rem;
  color: #173b6f;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.06em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .vision-item__sub-item {
    margin-left: 22px;
    font-size: 14px;
  }
}

.vision-item__sub-item::before {
  content: "";
  display: block;
  width: 1rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #084e8f;
  position: absolute;
  top: 0.5lh;
  left: -2rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .vision-item__sub-item::before {
    width: 14px;
    left: -22px;
  }
}

.vition__quote {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: normal;
  text-align: right;
  word-break: keep-all;
}
@media screen and (max-width: 768px) {
  .vition__quote {
    margin-top: 24px;
    font-size: 8px;
    line-height: 1.5;
    padding-inline: 20px;
    text-align: left;
  }
}

.vition__quote .bold {
  font-weight: 500;
}

.vision__development {
  margin-top: 5.8125rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .vision__development {
    margin-top: 64px;
  }
}

.vision__development::before {
  content: "";
  background: url(../img/vision-deco.webp) no-repeat center center/cover;
  width: 100%;
  height: 10.5rem;
  position: absolute;
  top: -6.875rem;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .vision__development::before {
    background: url(../img/vision-deco_sp.webp) no-repeat center center/cover;
    height: 9rem;
    top: -8rem;
  }
}

.vision-development__title {
  height: 9.375rem;
  background: linear-gradient(90deg, #173b6f 0%, #3071a5 100%);
  box-shadow: 8px 8px 0 0 rgba(135, 183, 229, 0.4);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .vision-development__title {
    height: 104px;
    padding: 24px 0;
    gap: 8px;
  }
}

.vision-development__title .small {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .vision-development__title .small {
    font-size: 12px;
    text-align: center;
  }
}

.vision-development__title .large {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .vision-development__title .large {
    word-break: keep-all;
    font-size: 20px;
    letter-spacing: 0;
  }
}

.vision-development__contents {
  margin-top: 3rem;
  padding-inline: 2.75rem;
  display: grid;
  grid-template-columns: 30rem 1fr;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .vision-development__contents {
    width: 100%;
    margin-top: 24px;
    padding-inline: 0;
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.vision-development__map {
  width: 30rem;
  aspect-ratio: 480/574;
}
@media screen and (max-width: 768px) {
  .vision-development__map {
    width: 100%;
    max-width: 480px;
    min-width: 0;
    margin-inline: auto;
  }
}
.vision-development__map img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .vision-development__map img {
    mix-blend-mode: darken;
  }
}

.vision-development__note {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: normal;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .vision-development__note {
    margin-top: 8px;
    font-size: 8px;
    text-align: left;
  }
}

.vision-development__text-area {
  padding-top: 6.875rem;
}
@media screen and (max-width: 768px) {
  .vision-development__text-area {
    padding-top: 0;
  }
}

.vision-development__text {
  color: #173b6f;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .vision-development__text {
    font-size: 14px;
  }
}

.vision-development__list {
  margin-top: 0.375rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .vision-development__list {
    margin-top: 16px;
    gap: 8px;
  }
}

.vision-development__item {
  margin-left: 2rem;
  color: #173b6f;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .vision-development__item {
    margin-left: 24px;
    font-size: 14px;
  }
}

.vision-development__item::before {
  content: "";
  display: block;
  width: 1rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: absolute;
  top: 0.5lh;
  left: -2rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .vision-development__item::before {
    width: 16px;
    left: -24px;
  }
}

.vision-development__item:nth-child(1)::before {
  background: #70a73f;
}

.vision-development__item:nth-child(2)::before {
  background: #7e3181;
}

.vision-development__item:nth-child(3)::before {
  background: #0c5c9b;
}

.btn.vision-development__btn {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .btn.vision-development__btn {
    width: 335px;
    width: 100%;
    max-width: 400px;
    margin: 32px auto 0 auto;
  }
}

.role__block {
  margin-top: 5rem;
  padding: 5rem 0;
  background: linear-gradient(90deg, #ad6893 0%, #7e78a7 100%);
  position: relative;
}
@media screen and (max-width: 768px) {
  .role__block {
    margin-top: 40px;
    padding: 60px 0;
  }
}

.role__block::before {
  content: "";
  background: url(../img/role-bg.webp) no-repeat center center/cover;
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.role__block::after {
  content: "";
  background: url(../img/role-deco.webp) no-repeat center center/contain;
  width: 65rem;
  aspect-ratio: 1040/384;
  position: absolute;
  top: -18rem;
  right: 0;
}
@media screen and (max-width: 768px) {
  .role__block::after {
    width: 100%;
    background: url(../img/role-deco_sp.webp) no-repeat center center/contain;
    aspect-ratio: 750/192;
    top: -6rem;
    z-index: -1;
  }
}

.inner.role__inner {
  position: relative;
  z-index: 2;
}

.role__title.section-title {
  color: #fff;
}

.role__title.section-title::after {
  content: "ROLE";
  color: #fff;
}

.role__contents {
  margin-top: 5.625rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .role__contents {
    max-width: 500px;
    margin: 60px auto 0;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.role__text {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .role__text {
    font-size: 14px;
  }
}

.btn.role__btn {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .btn.role__btn {
    margin: 16px auto 0 auto;
    width: 100%;
    max-width: 400px;
  }
}

.role__img-area {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .role__img-area {
    gap: 20px;
  }
}

.history__block {
  padding: 5rem 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .history__block {
    padding-block: 68px;
  }
}

.section-title.history__title {
  text-align: left;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .section-title.history__title {
    margin-left: 0;
  }
}

.section-title.history__title::after {
  content: "The Past and the Future";
  text-transform: uppercase;
  text-align-last: left;
  color: #007db6;
  left: 0;
  transform: translateX(0);
}

.history-tabs {
  margin-top: 4.6875rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .history-tabs {
    margin-top: 60px;
  }
}

.history-tabs::after {
  content: "";
  height: 988px;
  width: 2.5rem;
  position: absolute;
  bottom: 2.5rem;
  right: 0;
  z-index: 2;
  background: #d4dbe3;
}
@media screen and (max-width: 768px) {
  .history-tabs::after {
    width: 10px;
    bottom: 16px;
  }
}

.history-tabs__list {
  width: fit-content;
  display: flex;
  border-radius: 27px;
  background: #173b6f;
  box-shadow: inset 4px 4px 4px 0 rgba(0, 0, 0, 0.16);
}

.history-tabs__item {
  display: grid;
  place-content: center;
  width: 7.75rem;
  padding: 0.375rem 0;
  border-radius: 23px;
  color: #d4dbe3;
  font-size: 1rem;
  font-weight: 600;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .history-tabs__item {
    padding: 12px 0;
    width: 110px;
    font-size: 16px;
  }
}
.history-tabs__item[aria-selected="true"] {
  background: #fff;
  color: #173b6f;
  pointer-events: none;
  margin: 0.25rem;
}
@media screen and (max-width: 768px) {
  .history-tabs__item[aria-selected="true"] {
    margin: 4px;
  }
}
.history-tabs__item[aria-selected="false"] {
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .history-tabs__item[aria-selected="false"]:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

.history-tabs__contents {
  /* ここに transform / will-change は入れない */
  margin-block-start: 16px;
}
@media screen and (max-width: 768px) {
  .history-tabs__contents {
    margin-top: 16px;
  }
}

.history-tabs__contents.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.history-tabs__panel {
  padding: 2.5rem;
  background: #d4dbe3;
}
@media screen and (max-width: 768px) {
  .history-tabs__panel {
    padding: 16px 10px;
  }
}
.history-tabs__panel[hidden] {
  display: none;
}

.history-tabs__content-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4375;
  letter-spacing: 0.04em;
  color: #084e8f;
}
@media screen and (max-width: 768px) {
  .history-tabs__content-text {
    font-size: 14px;
  }
}
.history-tabs__content-text .arrow {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  mask-image: url(../img/arrow.svg);
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: #084e8f;
  margin-right: 0.5625rem;
}
@media screen and (max-width: 768px) {
  .history-tabs__content-text .arrow {
    width: 14px;
    height: 14px;
    margin-right: 8px;
  }
}

.history-tabs__media {
  margin-top: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: auto;
  position: relative;
  cursor: grab;
  margin-top: 1.125rem;
}
@media screen and (max-width: 768px) {
  .history-tabs__media {
    margin-top: 16px;
  }
}
.history-tabs__media img {
  display: block;
  /* PC: 横スクロールさせたいので縮めない */
  height: 948px;
  width: auto;
  max-width: none;
  pointer-events: none;
  object-fit: cover;
  object-position: left;
}
@media screen and (max-width: 768px) {
  .history-tabs__media img {
    height: 948px; /* ← 固定高さ */
    width: auto; /* ← 横に伸ばす */
    max-width: none; /* ← 縮ませない（重要） */
    object-fit: cover; /* PCと揃える */
    object-position: left;
  }
}

/* スクロールバー */
.history-tabs__contents::-webkit-scrollbar {
  height: 4px;
}

.history-tabs__contents::-webkit-scrollbar-thumb {
  background: #8e8e8e;
  border-radius: 2px;
}

.business-fv__ur {
  display: inline-block;
  padding-left: 15px;
  width: clamp(200px, 290px + 221 * (100vw - 390px) / 1050, 511px);
}
@media screen and (max-width: 768px) {
  .business-fv__ur {
    padding-left: 0;
  }
}

.business-fv__block {
  aspect-ratio: 1440/480;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .business-fv__block {
    aspect-ratio: auto;
  }
}

.business-fv__swiper {
  width: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .business-fv__swiper {
    height: 100svh;
  }
}

@media screen and (max-width: 768px) {
  .business-fv__swiper-wrapper {
    height: 100% !important;
  }
}

@media screen and (max-width: 768px) {
  .business-fv-swiper__slide {
    height: 100% !important;
  }
}

@media screen and (max-width: 768px) {
  .business-fv__img {
    width: 100%;
    height: 100%;
  }
}
.business-fv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.business-fv__text-area {
  position: absolute;
  top: calc(50% + 7px);
  left: 3.5rem;
  z-index: 2;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .business-fv__text-area {
    width: 100%;
    top: auto;
    bottom: 0;
    left: 0;
    transform: none;
    padding: 34px 10px;
    background: linear-gradient(
      to right,
      rgba(47, 112, 165, 0.5),
      rgba(0, 125, 182, 0.5)
    );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
}

.business-fv__title {
  color: #fff;
  font-size: 5.5rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1rem;
}
@media screen and (max-width: 768px) {
  .business-fv__title {
    font-size: 48px;
    row-gap: 0.5rem;
    align-items: center;
  }
}

.business-fv__title .small {
  display: block;
  margin-left: 0.5rem;
  font-size: 2.5rem;
  line-height: 1.4;
  grid-row: 1/2;
  grid-column: 1/3;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .business-fv__title .small {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    margin-left: 0;
  }
}

.business-fv__title .large {
  display: inline-block;
  font-weight: 600;
  font-size: 6.75rem;
  line-height: 1;
  line-height: 0.8148148148;
  grid-row: 2/3;
  grid-column: 1/2;
}
@media screen and (max-width: 768px) {
  .business-fv__title .large {
    font-size: 58px;
  }
}

.business-fv__title .medium {
  grid-row: 2/3;
  grid-column: 2/3;
}

.business-fv__title span {
  display: inline-block;
}

.business-fv__link-box {
  margin-top: 1.9375rem;
  display: flex;
  gap: 2rem;
}

.business-fv__list {
  display: flex;
  flex-wrap: nowrap;
  margin-top: 1.9375rem;
}
@media screen and (max-width: 768px) {
  .business-fv__list {
    margin-top: 8px;
    justify-content: center;
  }
}

.business-fv__item {
  position: relative;
}

.business-fv__item:nth-child(1) a {
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.business-fv__item:nth-child(2) {
  margin-left: -1rem;
}
@media screen and (max-width: 768px) {
  .business-fv__item:nth-child(2) {
    margin-left: -9px;
  }
}
.business-fv__item:nth-child(2) a {
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
}

.business-fv__item:nth-child(3) {
  margin-left: -1rem;
}
@media screen and (max-width: 768px) {
  .business-fv__item:nth-child(3) {
    margin-left: -9px;
  }
}
.business-fv__item:nth-child(3) a {
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}

.business-fv__link {
  display: flex;
  align-items: center;
  height: 3.5rem;
  padding: 0.5625rem 2.5625rem 0.4375rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.4;
  background: rgba(8, 78, 143, 0.8);
}
@media screen and (max-width: 768px) {
  .business-fv__link {
    font-size: 10px;
    padding: 7px 16px;
    line-height: 1.5;
  }
}

.business-relationship__block {
  padding: 5rem 0 6.0625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .business-relationship__block {
    padding: 3rem 0;
  }
}

.business-relationship__block::before {
  content: "";
  background: url(../img/business/business-relationship__deco01.webp) no-repeat
    center center/contain;
  width: 65rem;
  aspect-ratio: 1040/256;
  position: absolute;
  top: -4rem;
  right: 0;
}
@media screen and (max-width: 768px) {
  .business-relationship__block::before {
    width: 100%;
    aspect-ratio: 750/192;
    background: url(../img/business/business-relationship__deco01_sp.webp)
      no-repeat center center/contain;
    top: 0;
  }
}

.business-relationship__block::after {
  content: "";
  background: url(../img/business/business-relationship__deco02.webp) no-repeat
    center center/contain;
  width: 65rem;
  aspect-ratio: 1040/256;
  position: absolute;
  bottom: -4rem;
  left: 0;
}
@media screen and (max-width: 768px) {
  .business-relationship__block::after {
    width: 100%;
    background: url(../img/business/business-relationship__deco02_sp.webp)
      no-repeat center center/contain;
    aspect-ratio: 750/192;
    bottom: 0;
  }
}

.section-title.business-relationship__title::after {
  content: "RELATIONSHIP";
  color: #2f71a3;
}

.business-relationship__contents {
  margin-top: 5.5625rem;
  display: grid;
  grid-template-columns: 1fr 30rem;
  align-items: center;
  gap: 3.125rem;
}
@media screen and (max-width: 768px) {
  .business-relationship__contents {
    margin-top: 46px;
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.business-relationship__heading {
  color: #87b7e5;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2083333333;
}
@media screen and (max-width: 768px) {
  .business-relationship__heading {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.16em;
    text-align: center;
  }
}

.business-relationship__text-box {
  margin-top: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .business-relationship__text-box {
    max-width: 500px;
    margin: 32px auto 0;
    gap: 0;
  }
}

.business-relationship__text {
  font-size: 1rem;
  font-weight: 500;
  color: #173b6f;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .business-relationship__text {
    font-size: 14px;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .business-relationship__img {
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
  }
}

.business-role__block {
  padding: 5rem 0 7.5rem;
  background: url(../img/business/business-role-bg.webp) no-repeat bottom
    center/cover;
}
@media screen and (max-width: 768px) {
  .business-role__block {
    padding: 48px 0 80px;
    background: url(../img/business/business-role-bg_sp.webp) no-repeat bottom
      center/cover;
  }
}

/* WebP対応ブラウザのみ上書き */
@supports (
  background-image: url("data:image/webp;base64,UklGRiIAAABXRUJQVlA4")
) {
  .business-role__block {
    background-image: url(../img/business/business-role-bg.webp);
  }
  @media screen and (max-width: 768px) {
    .business-role__block {
      background-image: url(../img/business/business-role-bg_sp.webp);
    }
  }
}
@media screen and (max-width: 768px) {
  .inner.business-role__inner {
    padding: 0.625rem;
  }
}

.business-role__title.section-title {
  color: #fff;
}

.business-role__title.section-title::after {
  content: "ROLE";
  color: #fff;
}

.business-role__text {
  margin-top: 6.1875rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .business-role__text {
    max-width: 500px;
    margin: 64px auto 0;
    font-size: 14px;
    font-feature-settings: "palt";
  }
}

.business-role__contents {
  max-width: 1120px;
  margin: 3rem auto 0;
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem 3.125rem;
}
@media screen and (max-width: 768px) {
  .business-role__contents {
    max-width: 500px;
    margin-inline: auto;
    padding: 24px 16px;
    margin: 32px auto 0;
    border-radius: 10px;
  }
}

.business-role__top-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .business-role__top-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.business-role__top-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
  align-items: center;
  background: #00437c;
  border-radius: 10px;
  padding: 1rem 1.125rem 1.5rem;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .business-role__top-item {
    padding: 16px 16px 24px;
  }
}

.business-role__top-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
}

.business-role__top-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.24);
  pointer-events: none;
}

.business-role__top-item:nth-child(1)::before {
  background: url(../img/business/business-role-img01.webp) no-repeat center
    center/contain;
  width: 7.25rem;
  aspect-ratio: 116/112;
}
@media screen and (max-width: 768px) {
  .business-role__top-item:nth-child(1)::before {
    max-width: 176px;
  }
}

.business-role__top-item:nth-child(2)::before {
  background: url(../img/business/business-role-img02.webp) no-repeat center
    center/contain;
  width: 8.75rem;
  aspect-ratio: 140/112;
}
@media screen and (max-width: 768px) {
  .business-role__top-item:nth-child(2)::before {
    max-width: 200px;
  }
}

.business-role__top-item:nth-child(3)::before {
  background: url(../img/business/business-role-img03.webp) no-repeat center
    center/contain;
  width: 11.0625rem;
  aspect-ratio: 177/112;
}
@media screen and (max-width: 768px) {
  .business-role__top-item:nth-child(3)::before {
    max-width: 237px;
  }
}

.business-role-top-item__title {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .business-role-top-item__title {
    font-size: 16px;
    padding-left: 8px;
  }
}

.business-role-top-item__title .large {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .business-role-top-item__title .large {
    font-size: 24px;
  }
}

.business-role-top-item__sub-list {
  margin-top: 1.4375rem;
  margin-left: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .business-role-top-item__sub-list {
    margin-top: 16px;
    margin-left: 15px;
  }
}

.business-role-top-item__sub-item {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .business-role-top-item__sub-item {
    font-size: 15px;
  }
}

.business-role-top-item__sub-item::before {
  content: "・";
  position: absolute;
  left: -0.9375rem;
}
@media screen and (max-width: 768px) {
  .business-role-top-item__sub-item::before {
    left: -15px;
  }
}

.business-role-center__top-text {
  margin-top: 2rem;
  color: #173b6f;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .business-role-center__top-text {
    margin-top: 32px;
    font-size: 14px;
  }
}

.business-role__center {
  margin-top: 1rem;
  padding: 1.5rem;
  border: 3px solid #d4dbe3;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.75rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .business-role__center {
    margin-top: 16px;
    padding: 24px 14px;
    background: #fff;
    flex-direction: column;
    gap: 16px;
  }
}

.business-role__center::before {
  content: "";
  width: 10rem;
  aspect-ratio: 160/64;
  position: absolute;
  top: -6.125rem;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/business/business-role-arrow.webp) no-repeat center
    center/contain;
}
@media screen and (max-width: 768px) {
  .business-role__center::before {
    width: 6.4375rem;
    top: -84px;
  }
}

.business-role__center::after {
  content: "";
  width: 10rem;
  aspect-ratio: 160/64;
  position: absolute;
  bottom: -6.125rem;
  left: 50%;
  z-index: 5;
  transform: translateX(-50%) rotate(180deg);
  background: url(../img/business/business-role-arrow.webp) no-repeat center
    center/contain;
}
@media screen and (max-width: 768px) {
  .business-role__center::after {
    width: 6.4375rem;
    bottom: -136px;
  }
}

.business-role-center__logo {
  width: 11.875rem;
  /* aspect-ratio: 190/34; */
}
@media screen and (max-width: 768px) {
  .business-role-center__logo {
    width: 9rem;
    max-width: 190px;
  }
}

.business-role-center__title {
  color: #173b6f;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .business-role-center__title {
    font-size: 16px;
    text-align: center;
    letter-spacing: 0;
  }
}

.business-role-center__text {
  margin-top: 0.625rem;
  color: #000000;
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .business-role-center__text {
    margin-top: 16px;
    font-size: 14px;
    text-align: center;
  }
}

.business-role-center__bottom-text {
  margin-top: 1rem;
  color: #173b6f;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .business-role-center__bottom-text {
    margin-top: 16px;
    font-size: 14px;
  }
}

.business-role-bottom__list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .business-role-bottom__list {
    margin-top: 32px;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0.625rem;
  }
}

@media screen and (max-width: 768px) {
  .business-role-bottom__item {
    width: 100%;
    margin-inline: auto;
  }
}

.business-role-bottom__title::before {
  content: "";
  position: absolute;
  top: 0.0625rem;
  right: 1rem;
  opacity: 24%;
}
@media screen and (max-width: 768px) {
  .business-role-bottom__title::before {
    top: 0;
    right: 16px;
  }
}

.business-role-bottom__item:nth-child(1) .business-role-bottom__title::before {
  background: url(../img/business/business-role-icon01.webp) no-repeat center
    center/contain;
  width: 3.5625rem;
  aspect-ratio: 57/87;
}
@media screen and (max-width: 768px) {
  .business-role-bottom__item:nth-child(1)
    .business-role-bottom__title::before {
    width: 47px;
  }
}

.business-role-bottom__item:nth-child(2) .business-role-bottom__title::before {
  background: url(../img/business/business-role-icon02.webp) no-repeat center
    center/contain;
  width: 4.3125rem;
  aspect-ratio: 69/88;
}
@media screen and (max-width: 768px) {
  .business-role-bottom__item:nth-child(2)
    .business-role-bottom__title::before {
    width: 57px;
  }
}

.business-role-bottom__item:nth-child(3) .business-role-bottom__title::before {
  background: url(../img/business/business-role-icon03.webp) no-repeat center
    center/contain;
  width: 5.9375rem;
  aspect-ratio: 95/88;
  right: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .business-role-bottom__item:nth-child(3)
    .business-role-bottom__title::before {
    width: 95px;
    right: -6px;
  }
}

@media screen and (max-width: 768px) {
  .business-role-bottom__item:nth-child(3) .business-role-bottom__title {
    height: 88px;
  }
}

.business-role-bottom__title {
  height: 5.5rem;
  background-color: rgba(135, 183, 229, 0.88);
  border-radius: 10px 10px 0 0;
  display: grid;
  place-content: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .business-role-bottom__title {
    height: 72px;
    font-size: 16px;
  }
}

.business-role-bottom__text {
  height: 3.125rem;
  background: #ecedf5;
  border-radius: 0 0 10px 10px;
  display: grid;
  place-content: center;
  color: #173b6f;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .business-role-bottom__text {
    height: 53px;
    font-size: 14px;
  }
}

.business-fourbusinesses__bottom {
  text-align: center;
  color: #173b6f;
}
.business-fourbusinesses a {
  color: #87b7e5;
}
.business-fourbusinesses p {
  line-height: 1.6;
}

.business-fourbusinesses__block {
  padding: 8.75rem 0;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__block {
    padding: 3rem 0 55px;
  }
}

.business-forbusinesses__bg {
  position: relative;
  background: #fff;
  opacity: 0.48;
  z-index: -1;
}

.image-with-gradient__mask {
  background: linear-gradient(to right, #85064d, #392b75);
  width: 100%;
  height: 95%;
  mix-blend-mode: screen;
  position: absolute;
  left: 0;
  bottom: 1%;
  pointer-events: none;
}

.image-with-gradient__img {
  width: 100%;
  aspect-ratio: 1440/375;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .image-with-gradient__img {
    aspect-ratio: auto;
    height: 372px;
  }
}
@media screen and (max-width: 768px) {
  .image-with-gradient__img img {
    object-fit: cover;
  }
}

.business-fourbusinesses__top {
  margin-top: -27.7777777778%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__top {
    margin-top: -25.4375rem;
    padding-top: 32px;
  }
}

@media screen and (max-width: 768px) {
  .inner.business-fourbusinesses__top-inner {
    margin-top: 48px;
  }
}

.section-title.business-fourbusinesses__title::after {
  content: "FOUR BUSINESSES";
  color: #87b7e5;
  bottom: -2.0625rem;
}
@media screen and (max-width: 768px) {
  .section-title.business-fourbusinesses__title::after {
    bottom: -33px;
  }
}

.business-fourbusinesses__text-box {
  margin-top: 4.1875rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__text-box {
    max-width: 500px;
    margin: 62px auto 0;
    gap: 21px;
  }
}

.business-fourbusinesses__text {
  color: #173b6f;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__text {
    font-size: 14px;
    font-feature-settings: "palt";
  }
}

.business-fourbusinesses__text--small {
  font-size: 12px;
}

.business-fourbusinesses__link {
  transition: 0.3s ease;
  color: #87b7e5;
}
.business-fourbusinesses__link:hover {
  text-decoration: underline;
  font-weight: 600;
}

.business-fourbusinesses__note {
  margin-top: 0.5rem;
  color: #173b6f;
  font-size: 0.75rem;
  font-weight: normal;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__note {
    margin-top: 11px;
    font-size: 8px;
    text-align: left;
  }
}

.business-fourbusinesses__note a {
  color: #2f71a3;
}

.business-tabs {
  margin-top: 1rem;
  overflow-x: auto;
}
@media screen and (max-width: 768px) {
  .business-tabs {
    margin-top: 18px;
  }
}

.business-tabs__list {
  width: fit-content;
  margin-left: auto;
  display: flex;
  border-radius: 27px;
  background: #173b6f;
  box-shadow: inset 4px 4px 4px 0 rgba(0, 0, 0, 0.16);
}

.business-tabs__item {
  display: grid;
  place-content: center;
  width: 6.25rem;
  padding: 0.75rem 0;
  border-radius: 23px;
  color: #d4dbe3;
  font-size: 1rem;
  font-weight: 600;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .business-tabs__item {
    padding: 6px 16px;
    font-size: 12px;
    width: fit-content;
  }
}
.business-tabs__item[aria-selected="true"] {
  background: #fff;
  border-radius: 23px;
  color: #173b6f;
  pointer-events: none;
  margin: 0.25rem;
}
@media screen and (max-width: 768px) {
  .business-tabs__item[aria-selected="true"] {
    margin: 4px;
  }
}
.business-tabs__item[aria-selected="false"] {
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .business-tabs__item[aria-selected="false"]:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

.business-tabs__item.left {
  border-radius: 23px;
}

.business-tabs__text {
  display: none;
}
@media screen and (max-width: 768px) {
  .business-tabs__text {
    display: block;
    font-size: 14px;
    color: #084e8f;
    font-weight: 500;
    letter-spacing: 0.04em;
  }
}

@media screen and (max-width: 768px) {
  .business-tabs__text .arrow {
    display: inline-block;
    width: 14px;
    height: 14px;
    mask-image: url(../img/arrow.svg);
    mask-position: center center;
    mask-repeat: no-repeat;
    mask-size: contain;
    background-color: #084e8f;
    margin-right: 8px;
  }
}

.business-tabs__contents {
  margin-top: 1rem;
  overflow-y: hidden;
}
@media screen and (max-width: 768px) {
  .business-tabs__contents {
    margin-top: 9px;
    height: 667px;
    overflow-x: auto;
    cursor: grab;
    will-change: scroll-position;
    transform: translateZ(0);
    scroll-behavior: auto;
  }
}

@media screen and (max-width: 768px) {
  .business-tabs__contents.is-dragging {
    cursor: grabbing;
    user-select: none;
  }
}

.business-tabs__content img {
  height: auto;
  object-fit: contain;
  object-position: left;
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .business-tabs__content img {
    pointer-events: none;
    object-fit: cover;
  }
}

.business-tabs__content-wrap {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition:
    opacity 0.3s ease,
    translate 0.3s ease;
  overflow-y: hidden;
  overflow-x: auto;
  translate: 0;
}
.business-tabs__content-wrap.js-show {
  opacity: 1;
  visibility: visible;
  height: fit-content;
  translate: 0;
}
@media screen and (max-width: 768px) {
  .business-tabs__content-wrap.js-show {
    width: 1200px;
  }
}

.section-title.district__title {
  margin-top: 6.875rem;
}
@media screen and (max-width: 768px) {
  .section-title.district__title {
    margin-top: 48px;
  }
}

.section-title.district__title::after {
  content: "BUSINESS DISTRICT";
  color: #007db6;
}

.business-fourbusinesses__list {
  margin-top: 11rem;
  display: flex;
  flex-direction: column;
  gap: 10.625rem;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__list {
    margin-top: 110px;
    gap: 110px;
  }
}

.business-fourbusinesses__item {
  counter-increment: number;
  padding-right: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__item {
    padding-right: 0;
    max-width: 500px;
    margin-inline: auto;
    width: 100%;
  }
}

.business-fourbusinesses__item:nth-child(1) .business-fourbusinesses__top-title,
.business-fourbusinesses__item:nth-child(1) .business-fourbusinesses__top-meta,
.business-fourbusinesses__item:nth-child(1)
  .business-fourbusinesses__center-heading {
  color: #f49c00;
}
.business-fourbusinesses__item:nth-child(1)
  .business-fourbusinesses__top-meta
  .circle {
  background: #f49c00;
}
.business-fourbusinesses__item:nth-child(1)
  .business-fourbusinesses-item__top-img::after {
  color: rgba(244, 156, 0, 0.32);
}

.business-fourbusinesses__item:nth-child(2) .business-fourbusinesses__top-title,
.business-fourbusinesses__item:nth-child(2) .business-fourbusinesses__top-meta,
.business-fourbusinesses__item:nth-child(2)
  .business-fourbusinesses__center-heading {
  color: #90cc75;
}
.business-fourbusinesses__item:nth-child(2)
  .business-fourbusinesses__top-meta
  .circle {
  background: #90cc75;
}
.business-fourbusinesses__item:nth-child(2)
  .business-fourbusinesses-item__top-img::after {
  color: rgba(113, 171, 88, 0.32);
}

.business-fourbusinesses__item:nth-child(3) .business-fourbusinesses__top-title,
.business-fourbusinesses__item:nth-child(3) .business-fourbusinesses__top-meta,
.business-fourbusinesses__item:nth-child(3)
  .business-fourbusinesses__center-heading {
  color: #a660a3;
}
.business-fourbusinesses__item:nth-child(3)
  .business-fourbusinesses__top-meta
  .circle {
  background: #a660a3;
}
.business-fourbusinesses__item:nth-child(3)
  .business-fourbusinesses-item__top-img::after {
  color: rgba(166, 96, 163, 0.32);
}

.business-fourbusinesses__item:nth-child(4) .business-fourbusinesses__top-title,
.business-fourbusinesses__item:nth-child(4) .business-fourbusinesses__top-meta,
.business-fourbusinesses__item:nth-child(4)
  .business-fourbusinesses__center-heading {
  color: #ae392b;
}
.business-fourbusinesses__item:nth-child(4)
  .business-fourbusinesses__top-meta
  .circle {
  background: #ae392b;
}
.business-fourbusinesses__item:nth-child(4)
  .business-fourbusinesses-item__top-img::after {
  color: rgba(174, 57, 43, 0.32);
}

.business-fourbusinesses-item__top {
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses-item__top {
    flex-direction: column;
    gap: 32px;
  }
}

.business-fourbusinesses-item__top-img {
  width: 27.3125rem;
  aspect-ratio: 480/208;
  flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses-item__top-img {
    width: 100%;
    max-width: 480px;
    margin-inline: auto;
  }
}

.business-fourbusinesses-item__top-img::after {
  content: "0" counter(number);
  font-family: "Montserrat", sans-serif;
  font-size: 10rem;
  line-height: 1.21875;
  letter-spacing: 0.06em;
  font-weight: bold;
  position: absolute;
  top: -8rem;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses-item__top-img::after {
    font-size: 120px;
    top: -94px;
    left: auto;
    right: 0;
  }
}

.business-fourbusinesses__top-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.1875;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__top-title {
    font-size: 24px;
    word-break: keep-all;
    text-align: center;
  }
}

.business-fourbusinesses__top-meta {
  margin-top: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4375;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__top-meta {
    margin-top: 16px;
    font-size: 14px;
  }
}

.business-fourbusinesses__top-meta .circle {
  display: inline-block;
  width: fit-content;
  border-radius: 24px;
  margin-right: 1rem;
  padding: 0.0625rem 1.3125rem 0.125rem 1.375rem;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4375;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__top-meta .circle {
    font-size: 14px;
    padding: 0.0625rem 1rem 0.125rem 1.0625rem;
  }
}

.business-fourbusinesses__top-text {
  margin-top: 2rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__top-text {
    margin-top: 16px;
    font-size: 16px;
  }
}

.business-fourbusinesses__center-heading {
  margin-top: 2.5rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.1875;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__center-heading {
    margin-top: 24px;
    font-size: 24px;
    text-align: center;
  }
}

.business-fourbusinesses__center-text {
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__center-text {
    margin-top: 16px;
    font-size: 16px;
  }
}

.business-fourbusinesses__bottom.-first {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 0.875rem;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__bottom.-first {
    margin-top: 24px;
    flex-direction: column-reverse;
    gap: 16px;
  }
}

.business-fourbusinesses__bottom-img01 {
  width: 17.0625rem;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__bottom-img01 {
    width: 100%;
    max-width: 581px;
    margin-inline: auto;
  }
}

.business-fourbusinesses__bottom-tunnel {
  display: flex;
  gap: 1.3125rem;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__bottom-tunnel {
    padding-right: 8px;
    height: fit-content;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0.75rem;
  }
}

.business-fourbusinesses__bottom-img02 {
  margin-top: 0.3125rem;
  height: 12.625rem;
  aspect-ratio: 498/424;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__bottom-img02 {
    width: 100%;
    height: fit-content;
    max-width: 2445px;
    margin-inline: auto;
  }
}

.business-fourbusinesses__bottom-list {
  margin-top: 0.3125rem;
  height: 12.625rem;
  background: #f6f6f6;
  padding: 2rem 1rem 2.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__bottom-list {
    height: calc(100% - 0.3125rem);
    padding: 0.375rem 6px 0.5rem;
    gap: 0.25rem;
  }
}

.business-fourbusinesses__bottom-item {
  color: #000000;
  text-align: left;
  font-size: clamp(10px, 10px + 2 * (100vw - 375px) / 1065, 12px);
  font-weight: 500;
  line-height: 1.25;
  display: flex;
  align-items: flex-start;
  gap: 0.5625rem;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__bottom-item {
    align-items: center;
  }
}

.business-fourbusinesses__bottom-item .meta {
  display: inline-block;
  background: #f49c00;
  padding: 0.0625rem 1.875rem 0.125rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5833333333;
  color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__bottom-item .meta {
    padding: 1px 6px 2px 6px;
    flex-shrink: 0;
    font-size: 9px;
  }
}

.business-fourbusinesses__bottom.-second {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__bottom.-second {
    margin-top: 24px;
    flex-direction: column;
    gap: 16px;
  }
}

.business-fourbusinesses__bottom-img03 {
  width: 43.75rem;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__bottom-img03 {
    width: 100%;
    max-width: 700px;
    margin-inline: auto;
  }
}

.business-fourbusinesses__bottom-img04 {
  width: 27.75rem;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__bottom-img04 {
    width: 100%;
    max-width: 444px;
    margin-inline: auto;
  }
}

.business-fourbusinesses__bottom-img03-caption {
  margin-top: 0.25rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__bottom-img03-caption {
    margin-top: 2px;
    font-size: 12px;
  }
}

.business-fourbusinesses__bottom.-third {
  margin-top: 2.5rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__bottom.-third {
    margin-top: 24px;
    flex-direction: column;
    gap: 16px;
  }
}

.business-fourbusinesses__bottom--caption {
  margin-block-start: 2px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.business-fourbusinesses__bottom.-fifth {
  padding-block-start: 16px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 904px;
  gap: 0.875rem;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__bottom.-fifth {
    margin-top: 24px;
    flex-direction: column;
    gap: 16px;
  }
}

.section-title.area-under-consideration__title {
  margin-top: -5.625rem;
}
@media screen and (max-width: 768px) {
  .section-title.area-under-consideration__title {
    margin-top: -1.875rem;
  }
}

.section-title.area-under-consideration__title::after {
  content: "AREA UNDER CONSIDERATION";
  color: #007db6;
}

.business-fourbusinesses-item__top.--fourth {
  margin-top: 5.6875rem;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses-item__top.--fourth {
    margin-top: 60px;
  }
}

.business-fourbusinesses-item__top-img.--fourth::after {
  display: none;
}

.business-fourbusinesses__bottom.-fourth {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__bottom.-fourth {
    margin-top: 24px;
    padding: 10px;
    width: 100%;
    overflow-x: auto;
    background: #f6f6f6;
  }
}

.business-fourbusinesses__bottom-fourth--text {
  display: none;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__bottom-fourth--text {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4285714286;
    letter-spacing: 0.04em;
  }
}

@media screen and (max-width: 768px) {
  .business-fourbusinesses__bottom-fourth--text .arrow {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 8px;
    mask-image: url(../img/arrow.svg);
    mask-position: center center;
    mask-repeat: no-repeat;
    mask-size: contain;
    background-color: #000000;
  }
}

.business-fourbusinesses__bottom-img06 {
  width: 72.5625rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .business-fourbusinesses__bottom-img06 {
    width: 1161px;
    margin-top: 18px;
  }
}
.business-fourbusinesses__bottom-img06-caption {
  margin-block-start: 2px;
  font-size: 12px;
  font-weight: 500;
}

.business-link {
  position: relative;
  padding-block: 160px;
}
@media screen and (max-width: 768px) {
  .business-link {
    padding-block: 80px 160px;
  }
}
.business-link:before {
  content: "";
  background: url(../img/business/business-footer-deco.webp);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  right: 0;
  bottom: -2px;
  width: 592px;
  height: 161px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .business-link:before {
    width: 100%;
    bottom: 0;
  }
}
.business-link__link-box {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .business-link__link-box {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.business-link__btn.btn.blue a {
  background: linear-gradient(90deg, #173b6f 0%, #3071a5 100%);
  padding: 0.9375rem 0.75rem 0.9375rem 1rem;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .business-link__btn.btn.blue a {
    padding: 15px;
  }
}
.business-link__btn.btn.blue span::after {
  mask-image: url(../img/arrow-blue.svg);
  background-color: #00437c;
}
.business-link__btn.btn.red a {
  background: linear-gradient(to right, #85064d 0%, #392b75 100%);
  padding: 0.9375rem 0.75rem 0.9375rem 1rem;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .business-link__btn.btn.red a {
    padding: 15px;
  }
}
.business-link__btn.btn.red span::after {
  mask-image: url(../img/arrow.svg);
}
.business-link__btn.btn p.text {
  text-align: center;
  display: block;
  width: 100%;
}
.business-link__btn.btn span {
  background: #fff;
  flex-shrink: 0;
}
.business-link__btn.btn span::before {
  background-color: #fff;
}
.business-link__btn.btn span::after {
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  background: #900c52;
}

.business-other-works {
  padding: 5rem 0;
  position: relative;
  background: url(../img/business/business-footer-bg.webp) no-repeat center
    center/cover;
}
@media screen and (max-width: 768px) {
  .business-other-works {
    padding: 48px 0 24px;
  }
}

.section-title.business-other-works__title {
  color: #fff;
}

.section-title.business-other-works__title::after {
  content: "Area under consideration";
  color: #fff;
  text-transform: uppercase;
}

.business-other-works__text {
  color: #fff;
  margin-top: 5.6875rem;
  line-height: 1.5;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .business-other-works__text {
    margin-top: 62px;
    padding-inline: 20px;
    font-size: 14px;
    letter-spacing: 0.06em;
  }
}

.business-other-works__list {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .business-other-works__list {
    margin-top: 32px;
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.business-introduction__block {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .business-introduction__block {
    margin-top: 46px;
  }
}

@media screen and (max-width: 768px) {
  .inner.business-introduction__inner {
    padding: 0;
  }
}

.business-introduction__contents {
  position: relative;
  padding: 4rem 0;
}
@media screen and (max-width: 768px) {
  .business-introduction__contents {
    padding: 20px 12px 28px;
  }
}

.business-introduction__contents::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(125, 119, 167, 0.72) 0%,
    rgba(151, 101, 132, 0.72) 100%
  );
  opacity: 24%;
  z-index: -1;
}

.section-title.business-introduction__title::after {
  content: "INTRODUCTION TO OUR SERVICES";
  color: #87b7e5;
}

.business-introduction__link-box {
  margin-top: 5.6875rem;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .business-introduction__link-box {
    margin-top: 60px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

.business-introduction__btn.btn {
  width: 20rem;
}
@media screen and (max-width: 768px) {
  .business-introduction__btn.btn {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }
}

.business-introduction__btn.btn a {
  background: linear-gradient(to right, #85064d 0%, #392b75 100%);
  padding: 0.9375rem 0.75rem 0.9375rem 4rem;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .business-introduction__btn.btn a {
    padding: 15px 113px 15px 72px;
  }
}

.business-introduction__btn.btn span {
  background: #fff;
  flex-shrink: 0;
}

.business-introduction__btn.btn span::before {
  background: #fff;
}

.business-introduction__btn.btn span::after {
  mask-image: url(../img/arrow.svg);
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  background: #900c52;
}

.business-media__block {
  padding-top: 5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .business-media__block {
    padding-top: 48px;
  }
}

.section-title.business-media__title::after {
  content: "MEDIA INFORMATION";
  color: #87b7e5;
}

.business-media__list {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .business-media__list {
    max-width: 500px;
    margin: 57px auto 0;
  }
}

.business-media__item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3.75rem;
  border-bottom: 1px solid #d4dbe3;
  padding: 1rem 0 1rem 1.25rem;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .business-media__item a {
    padding: 16px 0;
    gap: 24px;
  }
}

.business-media__item a .business-media-item__arrow {
  display: block;
  flex-shrink: 0;
  width: 2rem;
  aspect-ratio: 1/1;
  background: linear-gradient(to right, #85064d 0%, #392b75 100%);
  position: relative;
}
@media screen and (max-width: 768px) {
  .business-media__item a .business-media-item__arrow {
    width: 32px;
  }
}

.business-media__item a .business-media-item__arrow::before {
  content: "";
  background: url("../img/arrow.svg") center/16px no-repeat;
  width: 1rem;
  aspect-ratio: 18/15;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .business-media__item a .business-media-item__arrow::before {
    width: 16px;
  }
}

.business-media-item__meta {
  font-family: "Roboto", sans-serif;
  color: #2f71a3;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 0.95;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .business-media-item__meta {
    font-size: 12px;
  }
}

.business-media-item__title {
  font-family: "Roboto", sans-serif;
  color: #173b6f;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.1875;
  letter-spacing: 0.06em;
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .business-media-item__title {
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
  }
}

.business-media-item__text {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media (any-hover: hover) {
  .business-media__item a:hover .business-media-item__title {
    opacity: 0.7;
  }
  .business-media__item a:hover .business-media-item__arrow::before {
    left: 60%;
  }
}
.inner {
  width: 100%;
  height: 100%;
  max-width: 80rem;
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-inline: 10px;
  }
}

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

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

.btn {
  width: 20rem;
}
@media screen and (max-width: 768px) {
  .btn {
    width: 320px;
  }
}

.btn a {
  background: linear-gradient(90deg, #f6be65 0%, #f7ac36 100%);
  padding: 0.9375rem 0.75rem 0.9375rem 9.9375rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.4444444444;
  letter-spacing: 0.04em;
  white-space: nowrap;
  position: relative;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .btn a {
    padding: 15px 12px 15px;
    gap: 24px;
    font-size: 18px;
  }
}

.btn span {
  display: block;
  width: 2rem;
  aspect-ratio: 1/1;
  border-radius: 2px;
  background-color: #f6be65;
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn span {
    width: 32px;
  }
}

.btn span::before {
  content: "";
  width: 1px;
  height: 2.75rem;
  background: #f6be65;
  position: absolute;
  left: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .btn span::before {
    height: 44px;
    left: -12px;
  }
}

.btn span::after {
  content: "";
  display: block;
  width: 1rem;
  aspect-ratio: 17/15;
  background: url(../img/arrow.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .btn span::after {
    width: 16px;
  }
}

.btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
}

@media (any-hover: hover) {
  .btn a:hover::before {
    animation: shine 1s;
  }
}
@keyframes shine {
  100% {
    left: 120%;
  }
}
.section-title {
  color: #173b6f;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.06em;
  word-break: keep-all;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }
}

.section-title::after {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.16em;
  position: absolute;
  bottom: -3.1875rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .section-title::after {
    font-size: 12px;
    bottom: -30px;
    white-space: nowrap;
  }
}

.section-title .small {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .section-title .small {
    font-size: 18px;
  }
}

/* -------------------------
Swiper
------------------------- */
.card {
  background-color: #fff;
  box-shadow: 0px 0px 16px rgba(8, 78, 143, 0.16);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card__link {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
}
.card.blue .card__text--link::after {
  background-image: url(../img/arrow-link-text-orange.svg);
}
.card.orange .card__title,
.card.orange .card__text--link {
  color: #f49c00;
}
.card.orange .card__text--link::after {
  background-image: url(../img/arrow-link-text-orange.svg);
}
.card.orange:after {
  background-image: url(../img/card-swiper-icon-orange.webp);
}
.card.green .card__title,
.card.green .card__text--link {
  color: #90cc75;
}
.card.green .card__text--link::after {
  background-image: url(../img/arrow-link-text-green.svg);
}
.card.green:after {
  background-image: url(../img/card-swiper-icon-green.webp);
}
.card.purple .card__title,
.card.purple .card__text--link {
  color: #a660a3;
}
.card.purple .card__text--link::after {
  background-image: url(../img/arrow-link-text-purple.svg);
}
.card.purple:after {
  background-image: url(../img/card-swiper-icon-purple.webp);
}
.card.blue .card__title,
.card.blue .card__text--link {
  color: #2f71a3;
}
.card.blue .card__text--link::after {
  background-image: url(../img/arrow-link-text-blue.svg);
}
.card__badge {
  position: absolute;
  width: 48px;
  height: 64px;
  top: -16px;
  left: 0;
  z-index: 2;
}
.card__badge:before {
  content: "";
  position: absolute;
  width: 48px;
  height: 64px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.card__badge--orange::before {
  background-image: url(../img/pin-orange.webp);
}
.card__badge--blue::before {
  background-image: url(../img/pin-blue.webp);
}
.card__badge--green::before {
  background-image: url(../img/pin-green.webp);
}
.card__badge--purple::before {
  background-image: url(../img/pin-purple.webp);
}
.card__order {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  transform: translateY(10px);
}
.card__swiper {
  padding: 30px 0;
}
.card__swiper .swiper-slide {
  height: auto;
}
.card__body {
  text-align: center;
  position: relative;
  flex-grow: 1;
  padding: 20px 8px 8px 8px;
}
.card__body .card__desc {
  font-size: 8px;
  position: absolute;
  bottom: 8px;
  left: 8px;
}
.card__title {
  font-size: 15px;
  line-height: 1.2;
  font-weight: bold;
  color: #2f71a3;
  margin-bottom: 16px;
  font-feature-settings: "palt";
}
.card__title .small {
  font-size: 14px;
}
.card__text {
  font-feature-settings: "palt";
  font-size: 15px;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .card__text {
    font-size: 14px;
  }
}
.card__text--link {
  font-size: 12px;
  color: #084e8f;
  display: inline-block;
  position: relative;
  font-weight: bold;
}
.card__text--link::after {
  content: "";
  width: 16px;
  height: 6px;
  position: absolute;
  right: -24px;
  top: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}

/* -------------------------
地図
------------------------- */
.map-scroll {
  width: 100%;
  overflow: hidden;
}

.map-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1604/768;
  background-image: url(../img/map_pc.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .map-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    width: 144%;
  }
  .map-wrapper {
    width: 100%;
    background-size: contain;
    background-position: left center;
  }
}
/* エリアSVG（位置はあとで微調整） */
.map-area-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
}
.map-area-svg--a {
  left: 4%;
  width: 40%;
  right: auto;
  top: 24%;
}
.map-area-svg--a .map-area.is-active {
  fill: rgba(244, 156, 0, 0.4);
}
.map-area-svg--a.stroke .map-area.is-active {
  fill: rgba(85, 179, 214, 0.8);
  mix-blend-mode: multiply;
  stroke: #0a77ab;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.map-area-svg--a.fill .map-area.is-active {
  fill: rgba(0, 105, 183, 0.7);
  mix-blend-mode: multiply;
}
.map-area-svg--b {
  left: 30.5%;
  width: 100%;
  right: auto;
  top: 37%;
}
.map-area-svg--b.stroke .map-area.is-active {
  fill: rgba(85, 179, 214, 0.8);
  mix-blend-mode: multiply;
  stroke: #0a77ab;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.map-area-svg--b.fill .map-area.is-active {
  fill: rgba(0, 105, 183, 0.7);
  mix-blend-mode: multiply;
}
.map-area-svg--c {
  left: 0%;
  width: 100%;
  right: auto;
  top: 5%;
}
.map-area-svg--c.stroke .map-area.is-active {
  fill: rgba(85, 179, 214, 0.8);
  mix-blend-mode: multiply;
  stroke: #0a77ab;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.map-area-svg--c.fill .map-area.is-active {
  fill: rgba(0, 105, 183, 0.7);
  mix-blend-mode: multiply;
}
.map-area-svg--d {
  left: 0%;
  width: 100%;
  right: auto;
  top: 5%;
}
.map-area-svg--d.stroke .map-area.is-active {
  fill: rgba(85, 179, 214, 0.8);
  mix-blend-mode: multiply;
  stroke: #0a77ab;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.map-area-svg--d.fill .map-area.is-active {
  fill: rgba(0, 105, 183, 0.7);
  mix-blend-mode: multiply;
}
.map-area-svg--e {
  left: auto;
  width: 100%;
  right: 0;
  top: 4%;
}
.map-area-svg--e .map-area.is-active {
  fill: rgba(114, 204, 117, 0.4);
}
.map-area-svg--e.stroke .map-area.is-active {
  fill: rgba(85, 179, 214, 0.8);
  mix-blend-mode: multiply;
  stroke: #0a77ab;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.map-area-svg--e.fill .map-area.is-active {
  fill: rgba(0, 105, 183, 0.7);
  mix-blend-mode: multiply;
}
.map-area-svg--f {
  top: 5%;
  width: 100%;
  right: 0;
  left: auto;
}
.map-area-svg--f .map-area.is-active {
  fill: rgba(23, 59, 111, 0.4);
}
.map-area-svg--f.stroke .map-area.is-active {
  fill: rgba(85, 179, 214, 0.8);
  mix-blend-mode: multiply;
  stroke: #0a77ab;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.map-area-svg--f.fill .map-area.is-active {
  fill: rgba(0, 105, 183, 0.7);
  mix-blend-mode: multiply;
}
.map-area-svg--g {
  top: 4%;
  width: 100%;
  right: 0;
  left: auto;
}
.map-area-svg--g .map-area.is-active {
  fill: rgba(23, 59, 111, 0.4);
}
.map-area-svg--g.stroke .map-area.is-active {
  fill: rgba(85, 179, 214, 0.8);
  mix-blend-mode: multiply;
  stroke: #0a77ab;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.map-area-svg--g.fill .map-area.is-active {
  fill: rgba(0, 105, 183, 0.7);
  mix-blend-mode: multiply;
}
.map-area-svg--h {
  top: 5%;
  width: 100%;
  right: 0;
  left: auto;
}
.map-area-svg--h .map-area.is-active {
  fill: rgba(23, 59, 111, 0.4);
}
.map-area-svg--h.stroke .map-area.is-active {
  fill: rgba(85, 179, 214, 0.8);
  mix-blend-mode: multiply;
  stroke: #0a77ab;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.map-area-svg--h.fill .map-area.is-active {
  fill: rgba(0, 105, 183, 0.7);
  mix-blend-mode: multiply;
}
.map-area-svg--i {
  top: 5%;
  width: 100%;
  right: 0;
  left: auto;
}
.map-area-svg--i .map-area.is-active {
  fill: rgba(23, 59, 111, 0.4);
}
.map-area-svg--i.stroke .map-area.is-active {
  fill: rgba(85, 179, 214, 0.8);
  mix-blend-mode: multiply;
  stroke: #0a77ab;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.map-area-svg--i.fill .map-area.is-active {
  fill: rgba(0, 105, 183, 0.7);
  mix-blend-mode: multiply;
}
.map-area-svg--j {
  top: 5%;
  width: 100%;
  right: 0;
  left: auto;
}
.map-area-svg--j .map-area.is-active {
  fill: rgba(23, 59, 111, 0.4);
}
.map-area-svg--j.stroke .map-area.is-active {
  fill: rgba(85, 179, 214, 0.8);
  mix-blend-mode: multiply;
  stroke: #0a77ab;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.map-area-svg--j.fill .map-area.is-active {
  fill: rgba(0, 105, 183, 0.7);
  mix-blend-mode: multiply;
}
.map-area-svg--k {
  top: 5%;
  width: 100%;
  right: 0;
  left: auto;
}
.map-area-svg--k .map-area.is-active {
  fill: rgba(23, 59, 111, 0.4);
}
.map-area-svg--k.stroke .map-area.is-active {
  fill: rgba(85, 179, 214, 0.8);
  mix-blend-mode: multiply;
  stroke: #0a77ab;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.map-area-svg--k.fill .map-area.is-active {
  fill: rgba(0, 105, 183, 0.7);
  mix-blend-mode: multiply;
}
.map-area-svg--l {
  top: 5%;
  width: 100%;
  right: 0;
  left: auto;
}
.map-area-svg--l .map-area.is-active {
  fill: rgba(244, 156, 0, 0.4);
}
.map-area-svg--l.stroke .map-area.is-active {
  fill: rgba(85, 179, 214, 0.8);
  mix-blend-mode: multiply;
  stroke: #0a77ab;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.map-area-svg--l.fill .map-area.is-active {
  fill: rgba(0, 105, 183, 0.7);
  mix-blend-mode: multiply;
}
.map-area-svg--m {
  top: 5%;
  width: 100%;
  right: 0;
  left: auto;
}
.map-area-svg--m .map-area.is-active {
  fill: rgba(244, 156, 0, 0.4);
}
.map-area-svg--m.stroke .map-area.is-active {
  fill: rgba(85, 179, 214, 0.8);
  mix-blend-mode: multiply;
  stroke: #0a77ab;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.map-area-svg--m.fill .map-area.is-active {
  fill: rgba(0, 105, 183, 0.7);
  mix-blend-mode: multiply;
}
.map-area-svg--n {
  top: 5%;
  width: 100%;
  right: 0;
  left: auto;
}
.map-area-svg--n .map-area.is-active {
  fill: rgba(244, 156, 0, 0.4);
}
.map-area-svg--n.stroke .map-area.is-active {
  fill: rgba(85, 179, 214, 0.8);
  mix-blend-mode: multiply;
  stroke: #0a77ab;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.map-area-svg--n.fill .map-area.is-active {
  fill: rgba(0, 105, 183, 0.7);
  mix-blend-mode: multiply;
}
.map-area-svg--o {
  top: 5%;
  width: 100%;
  right: 0;
  left: auto;
}
.map-area-svg--o .map-area.is-active {
  fill: rgba(244, 156, 0, 0.4);
}
.map-area-svg--o.stroke .map-area.is-active {
  fill: rgba(85, 179, 214, 0.8);
  mix-blend-mode: multiply;
  stroke: #0a77ab;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.map-area-svg--o.fill .map-area.is-active {
  fill: rgba(0, 105, 183, 0.7);
  mix-blend-mode: multiply;
}

/* 実際に hover 判定を持つのは path の方 */
/* SVGのパス自体 */
.map-area {
  fill: transparent; /* 普段は透明 */
  stroke: transparent;
  pointer-events: auto;
  cursor: pointer;
  transition: fill 0.2s ease;
}

.pin {
  position: absolute;
  cursor: pointer;
  z-index: 3;
  transform: translate(-50%, -50%);
  width: clamp(20px, 2vw, 30px);
  height: clamp(20px, 2vw, 30px);
  line-height: clamp(20px, 2vw, 30px);
  text-align: center;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: bold;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.pin .icon {
  position: relative;
  width: 90%;
  color: white;
  font-size: 14px;
  text-align: center;
  transition: transform 0.4s ease;
}
@media screen and (max-width: 768px) {
  .pin .icon {
    font-size: 12px;
  }
}
.pin .icon::before {
  content: "";
  display: block;
  width: 26px;
  height: 34px;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .pin .icon::before {
    background-size: contain;
    width: 18px;
  }
}
.pin .icon:hover {
  transform: scale(1.3);
  z-index: 2;
}
.pin .icon.orange::before {
  background-image: url(../img/pin-orange.webp);
}
.pin .icon.blue::before {
  background-image: url(../img/pin-blue.webp);
}
.pin .icon.green::before {
  background-image: url(../img/pin-green.webp);
}
.pin .icon.purple::before {
  background-image: url(../img/pin-purple.webp);
}
.pin .border {
  position: relative;
}
.pin .border:hover {
  background-color: #fff;
  width: inherit;
  height: inherit;
}
.pin__a {
  top: 21%;
  left: 24%;
}
.pin__b {
  top: 41%;
  left: 35%;
}
.pin__c {
  top: 43%;
  left: 53%;
}
.pin__d {
  top: 37%;
  left: 56%;
}
.pin__e {
  top: 40%;
  left: 65%;
}
.pin__f {
  top: 34%;
  right: 19%;
}
.pin__g {
  top: 47%;
  right: 6%;
}
.pin__g .text,
.pin__g .image {
  display: none;
}
.pin__h {
  top: 52%;
  right: 24%;
}
.pin__h .text,
.pin__h .image {
  display: none;
}
.pin__h:hover .text {
  position: absolute;
  top: 0;
  left: -60px;
  width: 53px;
  display: block;
}
.pin__h:hover .image {
  position: absolute;
  bottom: -24px;
  left: -98px;
  width: 168px;
  z-index: -1;
  display: block;
}
.pin__i {
  bottom: 17%;
  right: 44%;
}
.pin__j {
  bottom: 48%;
  right: 29%;
}
.pin__k {
  bottom: 28%;
  right: 30%;
}
.pin__l {
  top: 50%;
  left: 60%;
}
.pin__m {
  top: 66%;
  left: 55%;
}
.pin__n {
  top: 35%;
  left: 21%;
}
.pin__o {
  top: 41%;
  left: 23%;
}

.map-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.map-highlight {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.18s ease-out;
  pointer-events: none; /* 透過画像がホバーをブロックしないように */
}

.map-highlight.is-active {
  opacity: 1;
}

.section-button__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .section-button__list {
    gap: 10px;
    padding-inline: 10px;
    max-width: 400px;
    margin: 0 auto;
  }
}
.section-button__item {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  border-radius: 16px;
  width: calc(33.3333333333% - 42px);
  display: flex;
  align-items: center;
  padding-block: 25px;
  padding-inline: 24px 38px;
  justify-content: space-evenly;
  gap: 24px;
  font-weight: bold;
}
.section-button__item p {
  flex-grow: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section-button__item {
    width: 100%;
    justify-content: flex-start;
    font-size: 14px;
  }
}
.section-button__item--orange {
  border: solid 1px #f49c00;
  color: #f49c00;
}
.section-button__item--orange.is-active {
  background-color: #f49c00;
  color: #fff;
}
.section-button__item--purple {
  border: solid 1px #a660a3;
  color: #a660a3;
}
.section-button__item--purple.is-active {
  background-color: #a660a3;
  color: #fff;
}
.section-button__item--green {
  border: solid 1px #90cc75;
  color: #90cc75;
}
.section-button__item--green.is-active {
  background-color: #90cc75;
  color: #fff;
}
.section-button__item--red {
  border: solid 1px #ae392b;
  color: #ae392b;
}
.section-button__item--red.is-active {
  background-color: #ae392b;
  color: #fff;
}
.section-button__item.is-active .section-button__arrow::before,
.section-button__item.is-active .section-button__arrow::after {
  background-color: #fff;
}
.section-button__arrow {
  position: relative;
  display: inline-block;
  width: 11.5px;
  height: 7.2px;
}
.section-button__arrow::before,
.section-button__arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 1.5px);
  width: 3px;
  height: 16px;
  border-radius: 9999px;
  transform-origin: 50% 1.5px;
}
.section-button__arrow:before {
  transform: rotate(45deg);
}
.section-button__arrow::after {
  transform: rotate(-45deg);
}
.section-button__arrow--orange::before,
.section-button__arrow--orange::after {
  background-color: #f49c00;
}
.section-button__arrow--purple::before,
.section-button__arrow--purple::after {
  background-color: #a660a3;
}
.section-button__arrow--green::before,
.section-button__arrow--green::after {
  background-color: #90cc75;
}
.section-button__arrow--red::before,
.section-button__arrow--red::after {
  background-color: #ae392b;
}

.swiper-container.map {
  position: relative;
}

/* セクション用レイヤー */
.map-section {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.2s ease-out;
  pointer-events: none;
}

.map-section.is-active {
  opacity: 1;
}

.map__note {
  padding-block-end: 40px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .map__note {
    font-size: 8px;
    text-align: left;
  }
}

.others-card__item {
  border-radius: 16px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 2.5rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.64);
  display: flex;
  width: calc(33.3333333333% - 20px);
  flex-direction: column;
}
.others-card__item:nth-child(2) {
  padding-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .others-card__item {
    padding: 24px 10px;
    max-width: 400px;
    margin-inline: auto;
    width: 100%;
  }
}

.others-card__title {
  color: #00437c;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
  position: relative;
  padding-block-end: 24px;
}
.others-card__item:nth-child(2) .others-card__title {
  padding-block-end: 9px;
}
.others-card__title small {
  font-size: 1rem;
}
.others-card__title:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #00437c;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .others-card__title {
    font-size: 16px;
  }
  .others-card__title small {
    font-size: 12px;
  }
}

.others-card__title .small {
  margin-top: 1rem;
  display: block;
  color: #00437c;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.1875;
}
@media screen and (max-width: 768px) {
  .others-card__title .small {
    margin-top: 8px;
    font-size: 14px;
  }
}

.others-card__img {
  margin-top: 1rem;
  display: grid;
  align-content: start;
}
@media screen and (max-width: 768px) {
  .others-card__img {
    margin-top: 16px;
  }
}
.others-card__img figcaption {
  font-size: 12px;
  text-align: right;
  margin-top: 8px;
}
.others-card__img img {
  border-radius: 10px;
  margin-bottom: 8px;
}

.others-card__text {
  padding-block-start: 16px;
  color: #00437c;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .others-card__text {
    margin-top: 16px;
    font-size: 14px;
  }
}

.others-card__btn {
  margin: 1rem auto 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .others-card__btn {
    max-width: 335px;
    margin: 16px auto 0;
  }
}

.others-card__btn a {
  justify-content: space-between;
  padding: 0.9375rem 0.75rem 0.9375rem 7rem;
}
@media screen and (max-width: 768px) {
  .others-card__btn a {
    padding: 15px 12px 15px 119px;
  }
} /*# sourceMappingURL=style.css.map */
