@charset "UTF-8";
.hidden-sp {
  display: none;
}
@media screen and (min-width: 1280px) {
  .hidden-sp {
    display: block;
  }
}

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

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

.inner {
  padding-inline: 7.5%;
}
@media screen and (min-width: 1280px) {
  .inner {
    padding-inline: 170px;
    max-width: 1500px;
    margin-inline: auto;
  }
}

.button {
  position: relative;
  padding: 16px 64px 18px 31px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  position: relative;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  overflow: hidden;
  z-index: 0;
  font-family: "Rosario", sans-serif;
}
.button::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 13px;
  background: url(../img/arrow.webp) no-repeat center center/contain;
  top: 50%;
  right: 38px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 1280px) {
  .button {
    padding: 16px 64px 16px 32px;
  }
}

.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 1280px) {
  .title {
    gap: 12px;
  }
}
.title-ja {
  color: #005fe5;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding-left: 24px;
}
.title-ja::before {
  content: "●";
  font-size: 6px;
  position: absolute;
  top: 43%;
  left: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.title-en {
  font-family: "Rosario", sans-serif;
  font-weight: 500;
  background: linear-gradient(67deg, #005fe5 14.79%, #a1c1ff 85.21%);
  background-clip: text;
  font-size: 40px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 1280px) {
  .title-en {
    font-size: 96px;
  }
}
.title-sub {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
}
@media screen and (min-width: 1280px) {
  .title-sub {
    font-size: 16px;
  }
}

.reveal__line {
  display: block;
  clip-path: inset(0 100% 0 0);
}

.js-reveal.is-active .reveal__line {
  -webkit-animation: reveal 1s ease forwards;
          animation: reveal 1s ease forwards;
}

.js-reveal.is-active .reveal__line:nth-child(1) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.js-reveal.is-active .reveal__line:nth-child(2) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}

@-webkit-keyframes reveal {
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes reveal {
  to {
    clip-path: inset(0 0 0 0);
  }
}
.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(36px);
          transform: translateY(36px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hover:hover {
  opacity: 0.6;
}

.cta {
  margin-block: 40px;
}
@media screen and (min-width: 1280px) {
  .cta {
    margin-block: 100px;
  }
}
.cta__inner {
  padding-inline: 0;
}
@media screen and (min-width: 768px) {
  .cta__inner {
    max-width: 1000px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1280px) {
  .cta__inner {
    padding-inline: 170px;
    max-width: 1500px;
    margin-inline: auto;
  }
}
.cta__container {
  background: url(../img/cta-bg.webp) no-repeat center center/cover;
  width: 100%;
  border-radius: 40px;
  padding: 60px 27px 56px;
}
@media screen and (min-width: 768px) {
  .cta__container {
    border-radius: 80px;
    padding: 80px 100px 75px;
  }
}
.cta__title {
  color: #fff;
  text-shadow: 0 0 10px #587ec8;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  line-height: 1.8;
}
@media screen and (min-width: 1280px) {
  .cta__title {
    font-size: 40px;
  }
}
.cta__text {
  color: #fff;
  text-shadow: 0 0 10px #587ec8;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  line-height: 2.2;
  margin-top: 18px;
}
@media screen and (min-width: 1280px) {
  .cta__text {
    font-size: 20px;
    margin-top: 16px;
  }
}
.cta__button {
  margin-top: 24px;
  text-align: center;
  padding: 20px 110px 17px 64px;
  border-radius: 50px;
  display: inline-block;
  max-width: 320px;
}
@media screen and (min-width: 1280px) {
  .cta__button {
    max-width: 404px;
    padding: 20px 152px 20px 106px;
  }
}
.cta__button::before {
  right: 68px;
}
@media screen and (min-width: 1280px) {
  .cta__button::before {
    right: 110px;
  }
}
.cta__button span {
  display: block;
}
.cta__button-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
}
.cta__button-en {
  font-size: 20px;
  font-weight: 400;
}

.page-fv {
  background: url(../img/page-fv-sp.webp) no-repeat top center/cover;
  height: 75vw;
}
@media screen and (min-width: 1280px) {
  .page-fv {
    height: 30.5vw;
    background: url(../img/page-fv.webp) no-repeat top center/cover;
  }
}
@media screen and (min-width: 1440px) {
  .page-fv {
    height: 27.5vw;
  }
}
.page-fv__inner {
  padding-block: 24vw 22.5vw;
}
@media screen and (min-width: 1280px) {
  .page-fv__inner {
    padding-block: 9.1vw 5.21vw;
    max-width: unset;
    margin-inline: unset;
  }
}

.page__title-ja {
  color: #fff;
  font-size: 3.8vw;
}
@media screen and (min-width: 1280px) {
  .page__title-ja {
    font-size: 16px;
  }
}
.page__title-en {
  background: none;
  -webkit-text-fill-color: initial;
  color: #fff;
  font-size: 10.7vw;
}
@media screen and (min-width: 1280px) {
  .page__title-en {
    font-size: 96px;
  }
}

.page-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 11px;
}
@media screen and (min-width: 1280px) {
  .page-breadcrumb {
    margin-top: 20px;
  }
}
.page-breadcrumb a {
  font-size: 10px;
  color: #fff;
  text-decoration: underline;
}
@media screen and (min-width: 1280px) {
  .page-breadcrumb a {
    font-size: 14px;
  }
}
.page-breadcrumb__line {
  width: 16px;
  height: 1px;
  background-color: #bbb;
}
.page-breadcrumb__current {
  color: #bbb;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .page-breadcrumb__current {
    font-size: 14px;
  }
}

.header {
  padding: 21px 32px 23px 28px;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
}
@media screen and (min-width: 1280px) {
  .header {
    width: 76%;
    max-width: 995px;
    padding: 16px 21px;
    border-radius: 60px;
    top: 16px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 1440px) {
  .header {
    max-width: 1095px;
  }
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 1280px) {
  .header__inner {
    gap: 56px;
  }
}
@media screen and (min-width: 1440px) {
  .header__inner {
    gap: 96px;
  }
}
.header__logo {
  width: 145px;
}
@media screen and (min-width: 1280px) {
  .header__logo {
    width: 200px;
  }
}
@media screen and (min-width: 1440px) {
  .header__logo {
    width: 242px;
  }
}
.header__logo img {
  width: 100%;
}
.header__nav {
  display: none;
}
@media screen and (min-width: 1280px) {
  .header__nav {
    gap: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1440px) {
  .header__nav {
    gap: 32px;
  }
}
.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1280px) {
  .header__list {
    gap: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .header__list {
    gap: 32px;
  }
}
.header__list {
  margin-top: -1px;
}
.header__global, .header__global-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.header__global {
  gap: 4px;
  margin-top: -5px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.header__global-pic {
  width: 13.247px;
}
.header__global-pic img {
  width: 100%;
}
.header__global-line {
  display: inline-block;
  width: 1px;
  height: 14px;
  background-color: #C4C6D3;
}
.header__global-link {
  color: #C4C6D3;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
}
.header__global-link--en {
  color: #333;
}
.header__item:nth-of-type(2) {
  margin-right: 3px;
}
.header__item:nth-of-type(3) {
  margin-right: 8px;
}
.header__item:nth-of-type(4) {
  margin-right: 16.5px;
}
.header__item:nth-of-type(5) {
  margin-right: 2px;
}
.header__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__link-en {
  color: #005fe5;
  font-family: "Rosario", sans-serif;
  font-size: 16px;
  font-weight: 300;
}
.header__link-ja {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 11px;
  font-weight: 400;
}
.header__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 60px;
  padding: 5px 58px 6px 35px;
  position: relative;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  overflow: hidden;
  z-index: 0;
  font-family: "Rosario", sans-serif;
}
.header__button::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 13px;
  background: url(../img/arrow.webp) no-repeat center center/contain;
  top: 50%;
  right: 38px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header__button {
  background: var(--cegpf, linear-gradient(67deg, #587ec8 14.79%, #689bff 85.21%));
}
.header__button::before {
  right: 32px;
}
.header__button span {
  color: #fff;
}

body.is-drawer-open {
  overflow: hidden;
  height: 100dvh;
}

.drawer__icon {
  position: relative;
  width: 16px;
  height: 11px;
  cursor: pointer;
}
@media screen and (min-width: 1280px) {
  .drawer__icon {
    display: none;
  }
}
.drawer__icon.is-checked .drawer__bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 7.5px;
}
.drawer__icon.is-checked .drawer__bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.is-checked .drawer__bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 7.5px;
}

.drawer__bar {
  width: 16px;
  height: 1px;
  background-color: #005fe5;
  position: absolute;
  top: 1px;
  right: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.drawer__bar:nth-of-type(2) {
  top: 5.5px;
}
.drawer__bar:nth-of-type(3) {
  top: 11px;
}

.drawer {
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2px);
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.4s, visibility 0.4s;
  transition: opacity 0.4s, visibility 0.4s;
  border-top: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 80px;
}
@media screen and (min-width: 1280px) {
  .drawer {
    display: none;
  }
}
.drawer.is-checked {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.drawer__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  text-align: left;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.drawer__link {
  width: 100%;
  padding-block: 20px;
  border-bottom: 1px solid #bbb;
}
.drawer__link:first-child {
  border-top: 1px solid #bbb;
}
.drawer__link-ja {
  color: #005fe5;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.drawer__link-en {
  color: #bbb;
  font-family: "Rosario", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.drawer__link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.drawer__small-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.drawer__small-list a {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  padding-left: 19px;
  position: relative;
}
.drawer__small-list a::before {
  content: "";
  width: 10px;
  height: 1px;
  background-color: #333;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
}
.drawer__button {
  padding: 20px 110px 20px 63px;
  width: 320px;
  border-radius: 50px;
  border: 1px solid #005fe5;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  text-align: center;
  position: relative;
  margin-inline: auto;
  display: block;
}
.drawer__button-ja {
  color: #005fe5;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
}
.drawer__button-en {
  color: #bbb;
  text-align: center;
  font-family: "Rosario", sans-serif;
  font-size: 20px;
  font-weight: 400;
}
.drawer__button::before {
  content: "";
  width: 14px;
  height: 13px;
  background: url(../img/arrow-blue.webp) no-repeat center/contain;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  right: 68px;
}
.drawer__global {
  margin-inline: auto;
  padding-bottom: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 13px;
}
.drawer__global .header__global-link {
  font-size: 14px;
}
.drawer__bottom {
  border-top: 1px solid #bbb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
  gap: 9px;
}
.drawer__bottom-link {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
}
.drawer__bottom small {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}

.footer {
  background-color: #303551;
  padding-block: 40px;
}
@media screen and (min-width: 1280px) {
  .footer {
    padding-block: 100px;
  }
}
.footer__container {
  position: relative;
  padding-bottom: 20px;
}
@media screen and (min-width: 1280px) {
  .footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .footer__container {
    gap: 172px;
  }
}
.footer__container::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0.5;
  left: 0;
  bottom: 0;
  position: absolute;
}
.footer__left {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 1280px) {
  .footer__left {
    margin-inline: unset;
    width: 35%;
  }
}
@media screen and (min-width: 1440px) {
  .footer__left {
    width: 30%;
  }
}
.footer__logo {
  width: 320px;
}
@media screen and (min-width: 1280px) {
  .footer__logo {
    width: 328px;
  }
}
.footer__logo img {
  width: 100%;
}
.footer__address {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-top: 30px;
}
.footer__numbers {
  margin-top: 15px;
}
.footer__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (min-width: 1280px) {
  .footer__number:first-child {
    margin-left: 27px;
  }
}
.footer__number-head {
  color: #fff;
  font-family: "Rosario", sans-serif;
  font-size: 24px;
}
@media screen and (min-width: 1280px) {
  .footer__number-head {
    font-size: 26px;
  }
}
.footer__number-icon {
  width: 32px;
  height: 32px;
  display: inline-block;
}
.footer__number-icon img {
  width: auto;
  height: auto;
}
.footer__number-detail {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
}
@media screen and (min-width: 1280px) {
  .footer__number-detail {
    font-size: 26px;
  }
}
.footer__button {
  width: 320px;
  border-radius: 50px;
  padding: 20px 80px 20px 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}
.footer__button::before {
  right: 68px;
}
.footer__button-text {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
}
.footer__button-en {
  color: #fff;
  font-family: "Rosario", sans-serif;
  font-size: 20px;
  font-weight: 400;
  opacity: 0.5;
}
.footer__ads {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 1280px) {
  .footer__ads {
    margin-top: 179px;
  }
}
@media screen and (min-width: 1280px) {
  .footer__ad-item {
    width: 220px;
  }
  .footer__ad-item img {
    width: 100%;
  }
}
.footer__bottom {
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (min-width: 1280px) {
  .footer__bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 40px;
  }
}
.footer__bottom a {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
}
.footer__bottom small {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}

.footer-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin-top: 40px;
  max-width: 440px;
  margin-inline: auto;
}
@media screen and (min-width: 1280px) {
  .footer-details {
    margin-top: 0;
    max-height: 500px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (min-width: 1440px) {
  .footer-details {
    gap: 40px 68px;
  }
}

.footer-detail {
  position: relative;
}
.footer-detail__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .footer-detail__title {
    gap: 1px;
  }
}
.footer-detail__title-ja {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 700;
}
.footer-detail__title-en {
  color: #fff;
  font-family: "Rosario", sans-serif;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.5;
}
.footer-detail__list {
  display: none;
  margin-top: 10px;
}
@media screen and (min-width: 1280px) {
  .footer-detail__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.footer-detail__item {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}
.footer-detail__item::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 1px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
}
.footer-detail.is-open .footer-detail__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.footer-detail.is-open .footer__accordion-toggle::after {
  background: url(../img/open.webp) no-repeat center center/contain;
}

.footer__accordion-toggle {
  border: none;
  background: transparent;
  padding: 0;
  text-align: left;
  width: 100%;
  cursor: pointer;
  padding-right: 32px;
}
.footer__accordion-toggle::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: url(../img/close.webp) no-repeat center center/contain;
  right: 6px;
  top: 10px;
}
@media screen and (min-width: 1280px) {
  .footer__accordion-toggle::after {
    display: none;
  }
}

@media screen and (min-width: 1280px) {
  body.is-en .header {
    width: 82%;
    max-width: 1500px;
  }
}
@media screen and (min-width: 1280px) {
  body.is-en .footer__inner {
    padding-inline: 7.5%;
  }
}
@media screen and (min-width: 1440px) {
  body.is-en .footer__container {
    gap: 88px;
  }
}
@media screen and (min-width: 1280px) {
  body.is-en .footer-details {
    gap: 24px;
    margin-inline: unset;
  }
}

main {
  background: #F9F9F9;
}

.fv {
  position: relative;
  width: 100%;
  background: url(../img/fv-sp.webp) no-repeat top center/cover;
}
@media screen and (min-width: 1280px) {
  .fv {
    background: url(../img/fv.webp) no-repeat top center/cover;
  }
}
.fv__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  z-index: 10;
}
.fv__title {
  margin-right: 4vw;
  padding-top: 89.3vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (min-width: 1280px) {
  .fv__title {
    margin-right: 10.2vw;
    padding-top: 26.8vw;
  }
}
.fv__title span {
  color: #fff;
  text-shadow: 0 0 10px #002b82;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.4;
  font-size: 9vw;
}
@media screen and (min-width: 1280px) {
  .fv__title span {
    font-size: 4.44vw;
  }
}
.fv__text {
  text-align: right;
  margin-right: 6.9vw;
}
@media screen and (min-width: 1280px) {
  .fv__text {
    margin-right: 12.1vw;
  }
}
.fv__text span {
  color: #fff;
  text-shadow: 0 0 10px #002b82;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3.73vw;
  line-height: 2;
}
@media screen and (min-width: 1280px) {
  .fv__text span {
    font-size: 1.73vw;
  }
}
.fv__news {
  position: relative;
  overflow: hidden;
  z-index: 0;
  border-radius: 20px 0 0 0;
  background: rgba(255, 255, 255, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
  margin-top: 13px;
  padding: 14px 34px 14px 20px;
  width: 93%;
  margin-bottom: 24px;
}
@media screen and (min-width: 1280px) {
  .fv__news {
    padding: 19px 170px 17px 26px;
    margin-top: 6px;
    margin-bottom: 77px;
    width: 50.2%;
  }
}
.fv__news-head {
  color: #005fe5;
  font-family: "Rosario", sans-serif;
  font-size: 20px;
  font-weight: 300;
}
.fv__news-line {
  background-color: #005fe5;
  width: 1px;
  height: 16px;
  display: none;
}
@media screen and (min-width: 768px) {
  .fv__news-line {
    display: inline-block;
  }
}
.fv__news-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
}
@media screen and (min-width: 1280px) {
  .fv__news-main {
    gap: 15px;
  }
}
.fv__news-main span {
  color: #005fe5;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.fv__news-date {
  font-size: 11px;
}
@media screen and (min-width: 768px) {
  .fv__news-date {
    font-size: 14px;
  }
}
.fv__news-title {
  font-size: 12px;
  padding-right: 24px;
}
@media screen and (min-width: 768px) {
  .fv__news-title {
    font-size: 14px;
    padding-right: 41px;
  }
}
.fv__news-title::before {
  background: url(../img/arrow-blue.webp) no-repeat center center/contain;
  right: 0;
}

.about {
  position: relative;
  background: url(../img/about-bg-sp.webp) no-repeat center/cover;
  padding-block: 16px 40px;
}
@media screen and (min-width: 1280px) {
  .about {
    background: url(../img/about-bg.webp) no-repeat center/cover;
    padding-block: 0 230px;
  }
}
.about__inner {
  position: relative;
  z-index: 10;
}
.about__pic {
  width: 100%;
}
.about__pic img {
  width: 100%;
}
.about__title {
  color: #fff;
  text-shadow: 0 0 10px #587ec8;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
  font-size: 24px;
}
@media screen and (min-width: 1280px) {
  .about__title {
    font-size: 40px;
  }
}
.about__text {
  color: #fff;
  text-shadow: 0 0 10px #587ec8;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 2.2;
  font-size: 14px;
  margin-top: 17px;
}
@media screen and (min-width: 1280px) {
  .about__text {
    font-size: 20px;
    margin-top: 20px;
  }
}
.about__btn {
  display: block;
  margin-inline: auto;
  width: 183px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .about__btn {
    margin-left: 0;
  }
}
.about__map {
  position: absolute;
  right: 0;
  top: 32.8%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 74.5%;
  max-width: 1200px;
  z-index: 1;
}
.about__map img {
  width: 100%;
}
.about__loop-wrap {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 1280px) {
  .about__loop-wrap {
    bottom: 48px;
  }
}
.about__loop-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: loop 20s linear infinite;
          animation: loop 20s linear infinite;
}
.about__loop {
  color: rgba(255, 255, 255, 0.1);
  font-size: 96px;
  font-family: "Rosario", sans-serif;
  white-space: nowrap;
  padding-right: 80px;
}

@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.business {
  background: -webkit-gradient(linear, left top, left bottom, from(#f0f6ff), to(#c7daff));
  background: linear-gradient(180deg, #f0f6ff 0%, #c7daff 100%);
  position: relative;
  z-index: 10;
  overflow: hidden;
  padding-block: 40px;
}
@media screen and (min-width: 1280px) {
  .business {
    margin-top: -87px;
    border-radius: 80px;
    padding-top: 100px;
    height: 782px;
  }
}
.business__inner {
  position: relative;
  height: 100%;
}
.business__container {
  height: 100%;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1280px) {
  .business__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.business__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 1280px) {
  .business__title {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    z-index: 20;
    width: unset;
    margin-inline: unset;
  }
}
.business__list {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-top: 54px;
}
@media screen and (min-width: 768px) {
  .business__list {
    margin-left: -18px;
    max-height: 670px;
    overflow-y: auto;
    scrollbar-width: none;
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(78%, #000), color-stop(88%, rgba(0, 0, 0, 0.6)), color-stop(96%, rgba(0, 0, 0, 0.2)), to(transparent));
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 78%, rgba(0, 0, 0, 0.6) 88%, rgba(0, 0, 0, 0.2) 96%, transparent 100%);
    mask-image: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(78%, #000), color-stop(88%, rgba(0, 0, 0, 0.6)), color-stop(96%, rgba(0, 0, 0, 0.2)), to(transparent));
    mask-image: linear-gradient(to bottom, #000 0%, #000 78%, rgba(0, 0, 0, 0.6) 88%, rgba(0, 0, 0, 0.2) 96%, transparent 100%);
  }
  .business__list::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .business__list {
    margin-top: 0;
  }
}
.business__pic {
  width: 180px;
  height: 154px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: auto;
}
@media screen and (min-width: 1280px) {
  .business__pic {
    margin-inline: unset;
  }
}
.business__pic img {
  max-width: 87%;
  max-height: 87%;
  width: auto;
  height: auto;
}
.business__item {
  border-radius: 40px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  position: relative;
  width: 100%;
  padding: 20px 20px 24px;
}
@media screen and (min-width: 768px) {
  .business__item:nth-of-type(2) .business__pic {
    height: 114px;
  }
}
.business__item:last-child {
  margin-bottom: 10px;
}
@media screen and (min-width: 1280px) {
  .business__item:last-child {
    margin-bottom: 55px;
  }
}
@media screen and (min-width: 768px) {
  .business__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 32px 68px;
    border-radius: 40px;
    border: 1px solid #fff;
  }
}
.business__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  position: relative;
  padding-bottom: 28px;
}
@media screen and (min-width: 768px) {
  .business__wrapper {
    width: 65%;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    margin-top: 0;
    gap: 16px;
    padding-bottom: 0;
    padding-right: 62px;
  }
}
.business__wrapper::before {
  content: "";
  width: 14px;
  height: 13px;
  background: url(../img/arrow-blue.webp) no-repeat center/contain;
  left: 50%;
  bottom: 0;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .business__wrapper::before {
    left: unset;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.business__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.business__head-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (min-width: 1280px) {
  .business__head-main {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.business__head-num {
  color: #005fe5;
  font-family: "Rosario", sans-serif;
  font-size: 14px;
}
.business__head-ja {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
}
@media screen and (min-width: 1280px) {
  .business__head-ja {
    font-size: 24px;
  }
}
.business__head-en {
  font-family: "Rosario", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #bbb;
}
.business__text {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 1280px) {
  .business__text {
    font-size: 16px;
  }
}
.business__decor {
  position: absolute;
  width: 150%;
  top: 16px;
  z-index: 1;
  left: -36px;
  opacity: 0.2;
}
@media screen and (min-width: 1280px) {
  .business__decor {
    top: unset;
    bottom: 0;
    width: 105%;
  }
}

.news {
  padding-block: 40px;
}
@media screen and (min-width: 1280px) {
  .news {
    padding-block: 100px 0;
  }
}
@media screen and (min-width: 1280px) {
  .news__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 112px;
  }
}
@media screen and (min-width: 1280px) {
  .news__title {
    width: 30%;
  }
}
.news__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1280px) {
  .news__wrapper {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 20px;
  }
}
.news__list {
  margin-top: 61px;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .news__list {
    margin-top: 0;
  }
}
.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  border-bottom: 1px solid #bbb;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 40px;
}
@media screen and (min-width: 1440px) {
  .news__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.news__item:nth-of-type(2), .news__item:nth-of-type(3) {
  padding-top: 40px;
}
.news__item:nth-of-type(3) {
  border-bottom: none;
  padding-bottom: 24px;
}
@media screen and (min-width: 1280px) {
  .news__item:nth-of-type(3) {
    padding-bottom: 20px;
  }
}
.news__item-date {
  color: #bbb;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
}
.news__item-cat {
  border-radius: 20px;
  background: #132270;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  line-height: 1;
  padding: 5px 36px;
}
.news__item-title {
  color: #005fe5;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
}
@media screen and (min-width: 1280px) {
  .news__item-title {
    font-size: 20px;
  }
}
@media screen and (min-width: 1440px) {
  .news__item-title {
    max-width: 71%;
  }
}
.news__item-above {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.news__button {
  position: relative;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  overflow: hidden;
  z-index: 0;
  font-family: "Rosario", sans-serif;
}
.news__button::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 13px;
  background: url(../img/arrow.webp) no-repeat center center/contain;
  top: 50%;
  right: 38px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.news__button {
  color: #005fe5;
  padding: 17px 81px 16px 32px;
  border: 1px solid #fff;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 1280px) {
  .news__button {
    border: 1px solid #005fe5;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.news__button::before {
  background: url(../img/arrow-blue.webp) no-repeat center center/contain;
  top: 53%;
}

.page-business__contents {
  padding-block: 72px;
  border-radius: 40px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f0f6ff), to(#c7daff));
  background: linear-gradient(180deg, #f0f6ff 0%, #c7daff 100%);
  overflow: hidden;
  padding-inline: 7.5%;
}
@media screen and (min-width: 1280px) {
  .page-business__contents {
    padding: 112px 48px 80px 0;
    position: relative;
  }
  .page-business__contents::before {
    content: "";
    width: 100%;
    height: 30vw;
    background: url(../img/capa.webp) no-repeat center/cover;
    top: 57%;
    left: 0;
    position: absolute;
    opacity: 0.2;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (min-width: 1440px) {
  .page-business__contents {
    padding: 112px 169px 80px 0;
  }
}
@media screen and (min-width: 1280px) {
  .page-business__card {
    position: relative;
    display: grid;
    overflow: hidden;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 1500px;
    margin-inline: auto;
  }
}
.page-business__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 104px;
}
@media screen and (min-width: 1280px) {
  .page-business__wrapper {
    height: 100%;
    margin-left: -10px;
    gap: 184px;
  }
}
@media screen and (min-width: 1280px) {
  .page-business__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1280px) {
  .page-business__wrap {
    width: 82.6%;
  }
}
@media screen and (min-width: 1440px) {
  .page-business__wrap {
    width: 77.6%;
  }
}
.page-business__pic {
  width: 100%;
}
.page-business__pic img {
  width: 100%;
}
.page-business__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
  padding-block: 20px;
  border-bottom: 1px solid #bbb;
}
@media screen and (min-width: 1280px) {
  .page-business__top {
    padding-block: 0 20px;
  }
}
.page-business__num {
  color: #005fe5;
  font-family: "Rosario", sans-serif;
  font-size: 14px;
}
.page-business__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.page-business__title-ja {
  color: #005fe5;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .page-business__title-ja {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}
@media screen and (min-width: 1280px) {
  .page-business__title-ja {
    font-size: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.page-business__title-ja span {
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 10px;
}
@media screen and (min-width: 1280px) {
  .page-business__title-ja span {
    padding-inline: 7px;
  }
}
@media screen and (min-width: 768px) {
  .page-business__title-ja span:first-child {
    padding-inline: 10px 0;
  }
}
@media screen and (min-width: 1280px) {
  .page-business__title-ja span:first-child {
    padding-inline: 7px;
  }
}
@media screen and (min-width: 768px) {
  .page-business__title-ja span:last-child {
    padding-inline: 0 10px;
  }
}
@media screen and (min-width: 1280px) {
  .page-business__title-ja span:last-child {
    padding-inline: 7px;
  }
}
.page-business__title-en {
  font-size: 12px;
  font-weight: 400;
  color: #bbb;
  font-family: "Rosario", sans-serif;
}
@media screen and (min-width: 1280px) {
  .page-business__title-en {
    font-size: 14px;
  }
}
.page-business__text {
  margin-top: 20px;
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (min-width: 1280px) {
  .page-business__text {
    margin-top: 22px;
    font-size: 16px;
    margin-left: 22px;
  }
}
.page-business__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  border-radius: 10px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  padding: 40px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .page-business__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 13px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.page-business__item {
  display: grid;
  grid-template-rows: 24px auto 1fr;
  justify-items: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.page-business__item-icon {
  width: 24px;
  height: 24px;
}
.page-business__item-icon img {
  width: 100%;
}
.page-business__item-head {
  background: var(--cegpf, linear-gradient(67deg, #587ec8 14.79%, #689bff 85.21%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 8px;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .page-business__item-head {
    font-size: 20px;
  }
}
.page-business__item-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 9.5px;
  margin-inline: 12px;
}
@media screen and (min-width: 1280px) {
  .page-business__item-details {
    margin-inline: 10px;
  }
}
.page-business__item-detail {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}
.page-business__item-detail + .page-business__item-detail {
  margin-top: 9.5px;
}
.page-business__item-detail::before {
  content: "";
  width: 8px;
  height: 1px;
  background-color: #333;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  position: absolute;
}

body.is-en .page-message__content {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.page-about-mvv {
  padding-block: 24px 78px;
  position: relative;
  z-index: 1;
}
.page-about-mvv::before {
  content: "";
  background: url(../img/about-blur.webp) no-repeat top center/contain;
  width: 538px;
  height: 462px;
  aspect-ratio: 92/79;
  left: -241px;
  top: 121vw;
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .page-about-mvv::before {
    left: -15px;
    top: 100vw;
  }
}
@media screen and (min-width: 1280px) {
  .page-about-mvv::before {
    width: 960px;
    height: 822.857px;
    aspect-ratio: 7/6;
    left: 114px;
    top: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .page-about-mvv {
    height: 756px;
    overflow: hidden;
    padding-top: 15px;
  }
}
@media screen and (min-width: 1280px) {
  .page-about-mvv__inner {
    display: grid;
    grid-template-columns: 35.5% 1fr;
    height: 100%;
    gap: 100px;
  }
}
@media screen and (min-width: 1440px) {
  .page-about-mvv__inner {
    gap: 110px;
  }
}
@media screen and (min-width: 1280px) {
  .page-about-mvv__sticky {
    position: sticky;
    top: 0;
    height: 620px;
    display: grid;
    place-items: center;
  }
}
.page-about-mvv__figure {
  width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 1280px) {
  .page-about-mvv__figure {
    width: 100%;
    margin-inline: unset;
  }
}
.page-about-mvv__svg {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 1280px) {
  .page-about-mvv__shape {
    opacity: 0.2;
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
  .page-about-mvv__shape.is-active {
    opacity: 1;
  }
}
@media screen and (min-width: 1280px) {
  .page-about-mvv .page-about-mvv__scroll {
    height: 756px;
    overflow-y: auto;
    /* Chrome / Safari */
  }
  .page-about-mvv .page-about-mvv__scroll::-webkit-scrollbar {
    display: none;
  }
  .page-about-mvv .page-about-mvv__scroll {
    /* Firefox */
    scrollbar-width: none;
    /* IE */
    -ms-overflow-style: none;
  }
}
.page-about-mvv__contents {
  padding-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 85px;
}
@media screen and (min-width: 1280px) {
  .page-about-mvv__contents {
    padding-top: 60px;
    gap: 78px;
    padding-bottom: 240px;
  }
}
@media screen and (min-width: 1280px) {
  .page-about-mvv__content {
    display: grid;
    opacity: 0.2;
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
  .page-about-mvv__content.is-active {
    opacity: 1;
  }
}
.page-about-mvv__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
}
@media screen and (min-width: 1280px) {
  .page-about-mvv__title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
  }
}
.page-about-mvv__title-en {
  font-size: 64px;
  font-weight: 400;
  font-family: "Rosario", sans-serif;
}
@media screen and (min-width: 1280px) {
  .page-about-mvv__title-en {
    font-size: 96px;
  }
}
.page-about-mvv__title-ja {
  color: #333;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 34px;
}
@media screen and (min-width: 1280px) {
  .page-about-mvv__title-ja {
    margin-top: 40px;
  }
}
.page-about-mvv__title--mission .page-about-mvv__title-en {
  color: #689bff;
}
.page-about-mvv__title--vision .page-about-mvv__title-en {
  color: #005fe5;
}
.page-about-mvv__title--values .page-about-mvv__title-en {
  color: #132270;
}
.page-about-mvv__text-mission {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  background: linear-gradient(67deg, #005fe5 14.79%, #a1c1ff 85.21%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 40px;
}
@media screen and (min-width: 1280px) {
  .page-about-mvv__text-mission {
    font-size: 24px;
    margin-top: 18px;
    text-align: left;
  }
}
.page-about-mvv__list-vision {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 39px;
  padding-left: 24px;
  gap: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 1280px) {
  .page-about-mvv__list-vision {
    margin-top: 14px;
    padding-left: 0px;
  }
}
.page-about-mvv__text-vision {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  list-style: disc;
}
@media screen and (min-width: 1280px) {
  .page-about-mvv__text-vision {
    font-size: 20px;
  }
}

.values {
  position: relative;
  padding-left: 24px;
  margin-top: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.values::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: 1px;
  height: calc(100% - 84px);
  background: #bbb;
}
@media screen and (min-width: 620px) {
  .values::before {
    height: calc(100% - 58px);
  }
}
.values__item {
  position: relative;
  padding-bottom: 15px;
}
.values__item:last-child {
  padding-bottom: 0;
}
.values__item::before {
  content: "";
  position: absolute;
  top: 17px;
  left: -23px;
  width: 14px;
  height: 1px;
  background: #bbb;
}
.values__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.values__title-en {
  color: #005fe5;
  font-family: "Rosario", sans-serif;
  font-size: 24px;
  line-height: 34px;
}
@media screen and (min-width: 1280px) {
  .values__title-en {
    font-size: 32px;
  }
}
.values__title-ja {
  color: #132270;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (min-width: 1280px) {
  .values__title-ja {
    font-size: 16px;
  }
}
.values__text {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (min-width: 1280px) {
  .values__text {
    font-size: 16px;
  }
}

.page-message {
  background: url(../img/message-bg-sp.webp) no-repeat top center/cover;
  padding: 40px 7.5%;
}
@media screen and (min-width: 768px) {
  .page-message {
    padding: 100px 4.9%;
    background: url(../img/message-bg.webp) no-repeat top center/cover;
  }
}
.page-message__inner {
  background-color: #F9F9F9;
  border-radius: 20px;
  padding: 6%;
}
@media screen and (min-width: 1280px) {
  .page-message__inner {
    padding: 7.7%;
    border-radius: 80px;
    max-width: 1500px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1280px) {
  .page-message__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 120px;
  }
}
@media screen and (min-width: 1440px) {
  .page-message__top {
    gap: 149px;
  }
}
.page-message__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding-block: 20px;
  border-bottom: 1px solid #bbb;
}
@media screen and (min-width: 1280px) {
  .page-message__head {
    padding-block: 5px 24px;
    width: 70%;
  }
}
.page-message__head-line {
  color: #005fe5;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  background-color: #fff;
  padding-inline: 10px;
}
@media screen and (min-width: 1280px) {
  .page-message__head-line {
    font-size: 40px;
  }
}
.page-message__head-en {
  color: #bbb;
  font-family: "Rosario", sans-serif;
  font-size: 14px;
  font-weight: 400;
}
.page-message__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 39px;
}
@media screen and (min-width: 1280px) {
  .page-message__contents {
    gap: 65px;
  }
}
@media screen and (min-width: 1280px) {
  .page-message__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 60px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 1280px) {
  .page-message__content--2nd {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .page-message__content--2nd .page-message__texts {
    margin-top: 0 !important;
  }
  .page-message__content--2nd p:nth-of-type(2) {
    margin-top: 37px;
  }
}
@media screen and (min-width: 1280px) {
  .page-message__content--3rd {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: -5px;
  }
  .page-message__content--3rd .page-message__texts {
    margin-top: 0 !important;
    width: 71%;
  }
}
.page-message__content:first-child {
  gap: 60px;
}
@media screen and (min-width: 1440px) {
  .page-message__content:first-child {
    gap: 160px;
  }
}
.page-message__thumb {
  width: 400px;
}
@media screen and (min-width: 1440px) {
  .page-message__thumb {
    width: 340px;
  }
}
.page-message__thumb img {
  width: 100%;
}
.page-message .page-message__texts {
  margin-top: 20px;
}
@media screen and (min-width: 1280px) {
  .page-message .page-message__texts {
    width: 54.8%;
    margin-top: 24px;
  }
}
.page-message__text {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (min-width: 1280px) {
  .page-message__text {
    font-size: 16px;
  }
}
.page-message__text-top {
  font-weight: 500;
}
@media screen and (min-width: 1280px) {
  .page-message__text-top {
    font-size: 20px;
  }
}
.page-message__text--bold {
  font-weight: 700;
}
.page-message__text--blue {
  color: #005fe5;
}
.page-message p + p {
  margin-top: 24px;
}
@media screen and (min-width: 1280px) {
  .page-message p + p {
    margin-top: 29px;
  }
}
.page-message__pic {
  aspect-ratio: 280/200;
  width: 100%;
  display: block;
}
@media screen and (min-width: 1280px) {
  .page-message__pic {
    width: 440px;
  }
}
.page-message__pic img {
  width: 100%;
  border-radius: 10px;
}
.page-message__name {
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 28px;
  margin-top: 17px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 1280px) {
  .page-message__name {
    margin-top: 40px;
  }
}
.page-message__name-wrap {
  font-size: 12px;
  line-height: 1.8;
}
@media screen and (min-width: 1280px) {
  .page-message__name-wrap {
    font-size: 16px;
    line-height: 2;
  }
}
.page-message__name-wrap span {
  font-size: 14px;
}
@media screen and (min-width: 1280px) {
  .page-message__name-wrap span {
    font-size: 20px;
  }
}
.page-message__name-pic {
  width: 60px;
}
.page-message__name-pic img {
  width: 100%;
}

.page-member {
  padding-block: 40px;
}
@media screen and (min-width: 768px) {
  .page-member {
    padding-block: 100px;
    position: relative;
    z-index: 1;
    background: url(../img/member-bg.webp) no-repeat bottom center/contain;
  }
}
.page-member__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .page-member__contents {
    margin-top: 80px;
    gap: 80px;
  }
}
@media screen and (min-width: 1280px) {
  .page-member__contents {
    margin-top: 102px;
  }
}
.page-member__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px 17px;
}
@media screen and (min-width: 768px) {
  .page-member__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 80px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1280px) {
  .page-member__content {
    padding-left: 100px;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}
@media screen and (min-width: 1440px) {
  .page-member__content {
    padding-left: 240px;
  }
}
@media screen and (min-width: 768px) {
  .page-member__content:nth-of-type(2) {
    gap: 80px;
  }
}
.page-member__content:nth-of-type(2) .page-member__list {
  gap: 9px 16px;
}
@media screen and (min-width: 768px) {
  .page-member__content:nth-of-type(2) .page-member__list {
    gap: 16.5px;
  }
}
.page-member__content:nth-of-type(3), .page-member__content:nth-of-type(5) {
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .page-member__content:nth-of-type(3), .page-member__content:nth-of-type(5) {
    gap: 80px;
  }
}
.page-member__content:nth-of-type(4) {
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .page-member__content:nth-of-type(4) {
    gap: 80px;
  }
}
.page-member__content:nth-of-type(4) .page-member__list {
  gap: 9px 16px;
}
@media screen and (min-width: 768px) {
  .page-member__content:nth-of-type(4) .page-member__list {
    gap: 16.5px;
  }
}
.page-member__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .page-member__head {
    width: 180px;
    gap: 1px;
  }
}
.page-member__head-ja {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
}
@media screen and (min-width: 1280px) {
  .page-member__head-ja {
    font-size: 20px;
  }
}
.page-member__head-en {
  color: #689bff;
  font-family: "Rosario", sans-serif;
  font-size: 32px;
}
@media screen and (min-width: 1280px) {
  .page-member__head-en {
    font-size: 40px;
  }
}
.page-member__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 13px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .page-member__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16.5px;
  }
}
.page-member__item {
  width: 47.2%;
}
@media screen and (min-width: 768px) {
  .page-member__item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.page-member__clinic {
  padding-bottom: 1px;
  border-bottom: 1px solid #bbb;
}
@media screen and (min-width: 768px) {
  .page-member__clinic {
    width: 240px;
  }
}
@media screen and (min-width: 1280px) {
  .page-member__clinic {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 9px;
    width: unset;
  }
}
.page-member__clinic-ja {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 10px;
  height: 14px;
  display: inline-block;
}
@media screen and (min-width: 1280px) {
  .page-member__clinic-ja {
    font-size: 14px;
  }
}
.page-member__clinic-en {
  color: #bbb;
  font-family: "Rosario", sans-serif;
  font-size: 12px;
}
.page-member__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}
@media screen and (min-width: 768px) {
  .page-member__name {
    width: 160px;
    margin-top: 0;
    gap: 0;
  }
}
.page-member__name-ja {
  color: #005fe5;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
}
@media screen and (min-width: 1280px) {
  .page-member__name-ja {
    font-size: 20px;
  }
}
.page-member__name-en {
  color: #bbb;
  font-family: "Rosario", sans-serif;
  font-size: 12px;
}
@media screen and (min-width: 1280px) {
  .page-member__name-en {
    font-size: 14px;
  }
}
.page-member__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .page-member__boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 24px;
  }
}
@media screen and (min-width: 1280px) {
  .page-member__boxes {
    gap: 80px;
  }
}
.page-member__box {
  border-radius: 20px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  padding: 5.7%;
}
@media screen and (min-width: 768px) {
  .page-member__box {
    padding: 28px 55px;
    width: 50%;
    height: 240px;
  }
}
.page-member__box-head {
  color: #005fe5;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 20px;
  border-bottom: 1px solid #bbb;
}
@media screen and (min-width: 768px) {
  .page-member__box-head {
    font-size: 24px;
  }
}
.page-member__box-list {
  padding-top: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-member__box-link {
  color: #005fe5;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  padding-right: 32px;
  display: inline-block;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-member__box-link {
    font-size: 16px;
  }
}
.page-member__box-link::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/link-icon.webp) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page-member__decor {
  position: absolute;
  z-index: -1;
}
.page-member__decor--1st {
  width: 16vw;
  top: 2.6%;
  right: 3.7%;
}
.page-member__decor--2nd {
  width: 19vw;
  top: 40.5%;
  left: 4.5%;
}
.page-member__decor--3rd {
  width: 13vw;
  bottom: 21%;
  right: 2.5%;
}
.page-member__decor--4th {
  width: 7vw;
  height: 136px;
  bottom: 8.7%;
  left: 9.4%;
}
.page-member__decor img {
  opacity: 0;
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
  -webkit-transition: 1.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: 1.8s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: opacity, transform;
}
.page-member .page-member__decor.is-in-view img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.contact-form__inner {
  padding-block: 40px;
}
@media screen and (min-width: 1280px) {
  .contact-form__inner {
    padding-block: 100px;
  }
}
.contact-form__container {
  border-radius: 4px;
  background: #fff;
  padding: 38px 5.7% 40px;
}
@media screen and (min-width: 1280px) {
  .contact-form__container {
    padding: 100px;
  }
}
@media screen and (min-width: 1440px) {
  .contact-form__container {
    padding: 100px 200px;
  }
}
.contact-form__status {
  width: 100%;
  display: block;
  max-width: 500px;
  margin-inline: auto;
}
@media screen and (min-width: 1280px) {
  .contact-form__status {
    width: 384px;
  }
}
.contact-form__status img {
  width: 100%;
}
.contact-form__caution {
  color: #000;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-block: 40px;
  display: block;
  margin-inline: auto;
}
@media screen and (min-width: 1280px) {
  .contact-form__caution {
    font-size: 16px;
    margin-block: 80px;
  }
}
.contact-form__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (min-width: 1280px) {
  .contact-form__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 130px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
}
.contact-form__head label {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 1280px) {
  .contact-form__head label {
    font-size: 16px;
  }
}
.contact-form__head-tag {
  color: #005fe5;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 10px;
}
@media screen and (min-width: 1280px) {
  .contact-form__head-tag {
    font-size: 12px;
  }
}
.contact-form__wrap input[type=text],
.contact-form__wrap input[type=email],
.contact-form__wrap input[type=tel] {
  width: 100%;
  border: 1px solid #bbb;
  padding: 15px 20px;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-top: 10px;
  height: 50px;
}
@media screen and (min-width: 1280px) {
  .contact-form__wrap input[type=text],
  .contact-form__wrap input[type=email],
  .contact-form__wrap input[type=tel] {
    margin-top: 0;
    width: 71.4%;
  }
}
@media screen and (min-width: 1280px) {
  .contact-form__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact-form__wrap:nth-of-type(6) {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .contact-form__wrap:nth-of-type(7) {
    margin-left: 28.4%;
  }
}
@media screen and (min-width: 1440px) {
  .contact-form__wrap:nth-of-type(7) {
    margin-left: min(28.3%, 215px);
  }
}
.contact-form__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  margin-top: 20px;
  margin-left: 1px;
}
@media screen and (min-width: 1280px) {
  .contact-form__check {
    font-size: 16px;
  }
}
.contact-form__check input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #bbb;
  background: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
  position: relative;
  margin: 0;
}
@media screen and (min-width: 1280px) {
  .contact-form__check input[type=checkbox] {
    width: 24px;
    height: 24px;
  }
}
.contact-form__check input[type=checkbox]:checked {
  background: #fff url("../img/check-box.webp") no-repeat center center/12.5px 8.3px;
}
@media screen and (min-width: 1280px) {
  .contact-form__check-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.contact-form__inquiry {
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .contact-form__inquiry {
    width: 71.5%;
  }
}
.contact-form__privacy {
  font-weight: 500;
  margin-top: 6px;
}
@media screen and (min-width: 1280px) {
  .contact-form__privacy {
    margin-top: -6px;
  }
}
.contact-form__privacy-line {
  text-decoration: underline;
  margin-right: -10px;
}
.contact-form__error {
  color: #de0000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
}
.contact-form__submit {
  color: #005fe5;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  position: relative;
  padding: 15px 56px 16px 8px;
  border-radius: 30px;
  border: 1px solid #005fe5;
  width: 256px;
  background: url(../img/arrow-blue.webp) no-repeat right 36px center;
  margin-inline: auto;
  margin-top: 40px;
  background-size: 15px !important;
  cursor: pointer;
}
@media screen and (min-width: 1280px) {
  .contact-form__submit {
    margin-top: 80px;
  }
}
.contact-form__submit.is-disabled {
  color: #bbb;
  border: 1px solid #bbb;
  background: url(../img/arrow-grey.webp) no-repeat right 36px center;
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

textarea {
  margin-top: 20px;
  border: 1px solid #bbb;
  height: 160px;
  width: 100%;
  padding: 14px 20px;
  line-height: 1.5;
}
@media screen and (min-width: 1280px) {
  textarea {
    height: 300px;
  }
}

input,
textarea {
  font-size: 14px;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #bbb;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #bbb;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #bbb;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #bbb;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

input::placeholder,
textarea::placeholder {
  color: #bbb;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

input:focus,
textarea:focus {
  border: 1px solid #005fe5 !important;
  outline: none;
}

.contact-form__confirm {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
}
@media screen and (min-width: 1280px) {
  .contact-form__confirm {
    margin-top: 85px;
    gap: 30px;
  }
}
.contact-form__confirm-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1280px) {
  .contact-form__confirm-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .contact-form__confirm-wrap:nth-of-type(6) {
    margin-top: -5px;
  }
}
.contact-form__confirm p {
  color: #404040;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-left: 20px;
}
@media screen and (min-width: 1280px) {
  .contact-form__confirm p {
    font-size: 16px;
    width: 68.5%;
  }
}
.contact-form__confirm-check {
  margin-left: 22px;
  margin-top: -4px;
  font-weight: 700;
}
.contact-form__confirm-check-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1280px) {
  .contact-form__confirm-check-wrap {
    gap: 17px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 24px;
  }
}
.contact-form__confirm-text {
  margin-top: 10px;
  width: 85%;
  margin-top: 34px;
}
@media screen and (min-width: 1280px) {
  .contact-form__confirm-text {
    width: 90% !important;
    margin-top: 33px;
  }
}
.contact-form__confirm-submit {
  width: 176px;
  margin-top: 18px;
}
@media screen and (min-width: 1280px) {
  .contact-form__confirm-submit {
    margin-top: 64px;
  }
}
.contact-form__confirm-back {
  all: unset;
  display: block;
  text-align: center;
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: underline;
  margin-top: -16px;
}
@media screen and (min-width: 1280px) {
  .contact-form__confirm-back {
    margin-top: 10px;
    font-size: 16px;
  }
}
.contact-form__confirm-back:focus {
  border: none !important;
}

.contact-form__complete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.contact-form__complete-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1280px) {
  .contact-form__complete-wrap {
    margin-top: 40px;
  }
}
.contact-form__complete-check {
  width: 60px;
  height: 60px;
  margin-inline: auto;
}
@media screen and (min-width: 1280px) {
  .contact-form__complete-check {
    width: 80px;
    height: 80px;
  }
}
.contact-form__complete-check img {
  width: 100%;
}
.contact-form__complete-head {
  color: #333;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 1280px) {
  .contact-form__complete-head {
    font-size: 24px;
  }
}
.contact-form__complete-text {
  color: #333;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 1280px) {
  .contact-form__complete-text {
    font-size: 16px;
  }
}
.contact-form__complete-text--grey {
  color: #bbb;
  font-size: 12px;
  font-weight: 500;
}
@media screen and (min-width: 1280px) {
  .contact-form__complete-text--grey {
    font-size: 14px;
    padding-inline: 44px;
  }
}

.contact-form__back-to-top {
  margin-top: 0;
  padding: 15px 56px 16px 32px;
}
@media screen and (min-width: 1280px) {
  .contact-form__back-to-top {
    margin-top: 40px;
  }
}

@media screen and (min-width: 768px) {
  .archive__inner {
    padding-inline: 0;
    margin-inline: 7.5%;
  }
}
@media screen and (min-width: 1280px) {
  .archive__inner {
    padding-inline: 170px;
    max-width: 1500px;
    margin-inline: auto;
  }
}
.archive-cat {
  border-radius: 10px;
  background: #fff;
  padding: 5.2% 5.5%;
  margin-block: 40px;
}
@media screen and (min-width: 768px) {
  .archive-cat {
    padding: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .archive-cat {
    margin-block: 100px 56px;
  }
}
.archive-cat__head {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.archive-cat__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
@media screen and (min-width: 1280px) {
  .archive-cat__list {
    gap: 20px;
  }
}
.archive-cat__item {
  border-radius: 20px;
  background: #002b82;
  width: 100px;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .archive-cat__item {
    width: 120px;
  }
}
.archive-cat__item a {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  width: 100%;
  display: block;
  padding: 2px 16px 3px;
}
@media screen and (min-width: 1280px) {
  .archive-cat__item a {
    padding: 3px 16px;
  }
}
.archive__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
  padding-inline: 7.5%;
}
@media screen and (min-width: 768px) {
  .archive__list {
    padding-inline: unset;
    margin-bottom: 56px;
  }
}
.archive__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding-bottom: 39px;
  border-bottom: 1px solid #bbb;
}
@media screen and (min-width: 1280px) {
  .archive__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 39.5px;
  }
}
.archive__item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.archive__item-date {
  color: #bbb;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
}
.archive__item-cat {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  background-color: #002b82;
  padding: 2px 16px;
  border-radius: 20px;
  width: 120px;
  text-align: center;
}
.archive__item-title {
  color: #005fe5;
}
@media screen and (min-width: 1280px) {
  .archive__item-title {
    font-size: 20px;
  }
}

.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 100px;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  width: 18px;
  height: 18px;
  display: block;
  font-size: 0;
}
@media screen and (min-width: 1280px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    width: 24px;
    height: 24px;
  }
}
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.wp-pagenavi .previouspostslink::before {
  background-image: url("../img/arrow-left.webp");
}
.wp-pagenavi .nextpostslink::before {
  background-image: url("../img/arrow-right.webp");
}
.wp-pagenavi .page,
.wp-pagenavi .current,
.wp-pagenavi .pages,
.wp-pagenavi .last {
  font-size: 24px;
  font-weight: 400;
  color: #bbb;
}
.wp-pagenavi .current {
  font-weight: 700;
  color: #005fe5;
}
.wp-pagenavi .pages {
  pointer-events: none;
}
.wp-pagenavi .extend {
  color: #bbb;
}

.wp-pagenavi.is-single-page::after {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background: url("../img/arrow-right-grey.webp") no-repeat center center/contain;
}

.wp-pagenavi .last {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.wp-pagenavi .nextpostslink {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.wp-pagenavi .current,
.wp-pagenavi .page,
.wp-pagenavi .extend {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.single__inner {
  padding-block: 40px;
}
@media screen and (min-width: 1280px) {
  .single__inner {
    padding-block: 100px;
  }
}
.single__container {
  border-radius: 4px;
  background-color: #fff;
  padding: 38px 3.2%;
}
@media screen and (min-width: 1280px) {
  .single__container {
    padding: 40px 50px;
  }
}
.single__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
  margin-inline: 10px;
}
@media screen and (min-width: 1280px) {
  .single__top {
    margin-inline: 0;
  }
}
.single__top-date {
  color: #bbb;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
}
@media screen and (min-width: 1280px) {
  .single__top-date {
    font-size: 24px;
  }
}
.single__top-cat {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  width: 120px;
  background-color: #002b82;
  border-radius: 20px;
  padding: 3px 16px 2px;
  text-align: center;
}
.single__title {
  color: #005fe5;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 17px;
  padding-bottom: 23px;
  border-bottom: 1px solid #bbb;
  margin-inline: 10px;
}
@media screen and (min-width: 1280px) {
  .single__title {
    font-size: 32px;
    margin-inline: 0;
  }
}
.single p {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  margin-inline: 10px;
}
@media screen and (min-width: 1280px) {
  .single p {
    margin-inline: 0;
  }
}
.single p:nth-of-type(1) {
  padding-top: 40px;
}
.single p:last-child {
  padding-bottom: 40px;
  border-bottom: 1px solid #bbb;
}
.single ul li a {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  margin-inline: 10px;
  margin-top: 40px;
  display: inline-block;
  text-decoration: underline;
}
@media screen and (min-width: 1280px) {
  .single ul li a {
    margin-inline: 0;
  }
}
.single p + p {
  margin-top: 24px;
}
.single__button {
  margin-top: 40px;
  padding: 14px 31px 16px 36px;
  border-radius: 30px;
  border: 1px solid #005fe5;
  background: rgba(255, 255, 255, 0.1);
  display: block;
  width: 224px;
  margin-inline: auto;
}
.single__button span {
  color: #005fe5;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  padding-left: 43px;
  position: relative;
}
.single__button span::before {
  content: "";
  width: 14px;
  height: 13px;
  background: url(../img/arrow-blue.webp) no-repeat center/contain;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  position: absolute;
  top: 26%;
  left: 0;
}

.wp-block-image {
  margin-top: 40px;
  width: 100%;
  display: block;
}
@media screen and (min-width: 1280px) {
  .wp-block-image {
    width: 70%;
    margin-inline: auto;
    margin-top: 80px;
  }
}
.wp-block-image img {
  width: 100%;
}

.media__wrapper p img {
  width: 100%;
  display: block;
}
@media screen and (min-width: 1280px) {
  .media__wrapper p img {
    width: 70%;
    margin-inline: auto;
  }
}
.media p:nth-of-type(1) {
  padding-top: 40px;
}
@media screen and (min-width: 1280px) {
  .media p:nth-of-type(1) {
    padding-top: 80px;
  }
}
.media p:nth-of-type(2) {
  margin-top: 16px;
}
@media screen and (min-width: 1280px) {
  .media p:nth-of-type(2) {
    margin-top: 56px;
  }
}
.media p:last-child {
  padding-bottom: 40px;
  border-bottom: 1px solid #bbb;
}

.pickup__inner {
  padding-block: 40px;
}
@media screen and (min-width: 1280px) {
  .pickup__inner {
    padding-block: 100px 80px;
  }
}
.pickup__container {
  background: url(../img/pickup-sp.webp) no-repeat top center/cover;
  display: block;
  padding: 40px 6% 14px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (min-width: 1280px) {
  .pickup__container {
    background: url(../img/pickup.webp) no-repeat top center/cover;
    padding: 78px;
    display: grid;
    grid-template-columns: 44.8% 1fr;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.pickup__container::before {
  content: "";
  background: url(../img/capa2.webp) no-repeat center/cover;
  position: absolute;
  z-index: -1;
  width: 112%;
  height: 43.3%;
  right: -68.073px;
  bottom: 48.998px;
  opacity: 0.2;
}
@media screen and (min-width: 1280px) {
  .pickup__container::before {
    width: 100%;
    height: 100%;
    aspect-ratio: 482/169;
    right: 0;
    bottom: 0;
  }
}
.pickup__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 1280px) {
  .pickup__contents {
    gap: 20px;
    margin-top: 27px;
  }
}
.pickup__thumb {
  width: 100%;
  aspect-ratio: 123/76;
}
.pickup__thumb img {
  width: 100%;
}
.pickup__content-top {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media screen and (min-width: 1280px) {
  .pickup__content-top {
    margin-top: 0;
  }
}
.pickup__cat {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  border-radius: 20px;
  background: #002b82;
  padding: 2px 16px;
  width: 120px;
  text-align: center;
}
.pickup__date {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
}
.pickup__title {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
}
@media screen and (min-width: 1280px) {
  .pickup__title {
    font-size: 32px;
  }
}
.pickup__text span {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
}
.pickup__text-pc {
  display: none;
}
@media screen and (min-width: 1280px) {
  .pickup__text-pc {
    display: inline;
  }
}
.pickup__text-sp {
  display: inline;
}
@media screen and (min-width: 1280px) {
  .pickup__text-sp {
    display: none;
  }
}

.pickup-heading {
  position: absolute;
  left: 6.5%;
  top: 11px;
  z-index: 2;
  pointer-events: none;
}
@media screen and (min-width: 1280px) {
  .pickup-heading {
    left: 20px;
    top: 16px;
  }
}
.pickup-heading__text {
  display: block;
  font-family: "Rosario", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  background: rgba(255, 255, 255, 0.1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-filter: blur(0.3px);
          filter: blur(0.3px);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.12);
}
@media screen and (min-width: 1280px) {
  .pickup-heading__text {
    font-size: 96px;
  }
}

.archive-media__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  padding: 40px 6%;
}
@media screen and (min-width: 1280px) {
  .archive-media__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.archive-media__item {
  display: block;
  border-radius: 10px 10px 0 0;
  background-color: #fff;
}
@media screen and (min-width: 1280px) {
  .archive-media__item {
    width: 35.1vw;
  }
}
@media screen and (min-width: 1440px) {
  .archive-media__item {
    width: 23.6111vw;
    max-width: 359px;
  }
}
.archive-media__contents {
  padding: 20px;
  display: block;
}
@media screen and (min-width: 1280px) {
  .archive-media__contents {
    padding: 25.5px 30px 21px;
  }
}
.archive-media__thumb {
  width: 100%;
  display: block;
  aspect-ratio: 280/160;
  overflow: hidden;
}
@media screen and (min-width: 1280px) {
  .archive-media__thumb {
    aspect-ratio: 340/200;
  }
}
.archive-media__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 0 0;
}
.archive-media__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.archive-media__date {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.archive-media__title {
  color: #005fe5;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 10px;
}
@media screen and (min-width: 1280px) {
  .archive-media__title {
    font-size: 20px;
  }
}
.archive-media__text {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 10px;
}
@media screen and (min-width: 1280px) {
  .archive-media__text {
    display: inline-block;
  }
}
.archive-media__page .wp-pagenavi {
  padding-block: 40px;
}
@media screen and (min-width: 1280px) {
  .archive-media__page .wp-pagenavi {
    padding-block: 40px 100px;
  }
}

.archive-media__item.fade-in-up,
.pickup__container.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(36px);
          transform: translateY(36px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
  will-change: opacity, transform;
}

.archive-media__item.fade-in-up.is-in-view,
.pickup__container.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.privacy__inner {
  padding-block: 40px;
}
@media screen and (min-width: 1280px) {
  .privacy__inner {
    padding-block: 100px;
  }
}
.privacy__container {
  background-color: #fff;
  border-radius: 4px;
  padding: 40px 6.3%;
}
@media screen and (min-width: 1280px) {
  .privacy__container {
    padding: 100px;
  }
}
@media screen and (min-width: 1440px) {
  .privacy__container {
    padding: 100px 200px;
  }
}
.privacy__head-text {
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 1280px) {
  .privacy__head-text {
    font-size: 16px;
  }
}
.privacy__list {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1280px) {
  .privacy__list {
    margin-top: 80px;
  }
}
.privacy__head {
  color: #005fe5;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
}
@media screen and (min-width: 1280px) {
  .privacy__head {
    font-size: 18px;
  }
}
.privacy__text, .privacy__text-list-item {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 1280px) {
  .privacy__text, .privacy__text-list-item {
    font-size: 16px;
  }
}
.privacy__text {
  margin-top: 5px;
}
@media screen and (min-width: 1280px) {
  .privacy__text {
    margin-top: 2px;
  }
}
.privacy__text-list-item {
  margin-top: 0;
}
.privacy__text-list {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1280px) {
  .privacy__text-list--contact {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 48px;
  }
}