@charset "UTF-8";
/* Sassモジュール */
:root {
  /* en weight */
  --text-weight-en-s: 200;
  --text-weight-s: 300;
  /* jp weight */
  --text-weight: 400;
  --text-weight-xm: 500;
  --text-weight-m: 700;
  /* FONT */
  --text-size: clamp(1.3rem, 1.1269230769rem + 0.4615384615vw, 1.6rem);
  --font: "Noto Sans JP", sans-serif;
  --font-en: "Oswald", sans-serif;
  --font-icon: "Font Awesome 6 Free";
  /* COLOR PALLET */
  --color-white: #fff;
  --color-richblack: #222;
  --color-black: #1a1a1a;
  --color-asako: #cc0000;
  /* COLOR */
  --primary-color: var(--color-asako);
  --primary-light-color: #f09080;
  --secondary-color: #1fb8cb;
  --secondary-light-color: #E9F6F8;
  --background-color: #f4f3f4;
  --background-dark-color: #231815;
  --background-light-color: #f8f8f8;
  --text-color: var(--color-black);
  --text-gray: #555555;
  --text-light-color: #888888;
  --text-footer: #A5A5A5;
  --button-bg-color: #595757;
  --border-color: #cccccc;
  --border-dark-color: #6C6C6C;
  --border-footer-color: #4b4b4b;
  --bg-light-color: #e1e1e1;
  --catgory-color: #1fa5b5;
  --slick-bullet-color: #D9D9D9;
  --column-color: var(--secondary-color);
  --casestudy-color: var(--primary-light-color);
  --solution-color: var(--color-richblack);
  --works-color: var(--primary-color);
  --donwload-color: var(--color-richblack);
  /* SIZE */
  --content-width-size: 1280px;
  --content-width-half-size: 1080px;
  --content-width: min(100%, var(--content-width-size));
  --content-wrap-width: min(100%, var(--content-width-half-size));
  --content-width-article-size: 980px;
  --content-width-article: min(96%, var(--content-width-article-size));
  --content-padding: clamp(2rem, 0.8461538462rem + 3.0769230769vw, 4rem);
  --header-height: clamp(6.9rem, 5.6884615385rem + 3.2307692308vw, 9rem);
  --radius-button: 50vw;
  --radius: 1.2rem;
  --radius-large: 2.4rem;
  /* MARGIN */
  --section-margin: clamp(4.8rem, 2.9538461538rem + 4.9230769231vw, 8rem);
  --block-margin: clamp(8rem, 5.6923076923rem + 6.1538461538vw, 12rem);
  --container-margin: clamp(3rem, -11.9416342412rem + 19.4552529183vw, 8rem);
  --block-margin: clamp(8rem, -3.953307393rem + 15.5642023346vw, 12rem);
  --section-margin: clamp(5rem, 2.0116731518rem + 3.8910505837vw, 6rem);
  --content-margin: clamp(4rem, 1.0116731518rem + 3.8910505837vw, 5rem);
  --item-margin: clamp(4rem, 4rem + 0vw, 4rem);
  --lead-margin: clamp(4rem, -13.9299610895rem + 23.3463035019vw, 10rem);
  --title-margin: clamp(6rem, 4.8461538462rem + 3.0769230769vw, 8rem);
  --PtoP: clamp(3.5rem, 2.0576923077rem + 3.8461538462vw, 6rem);
  /* EFFECT */
  --trd-duration: 0.3s;
  --trd-timing: cubic-bezier(0.33, 1, 0.68, 1);
  --trd-hover-timing: linear;
  --trd-e-linear: linear;
  /* Z INDEX */
  --modal-index: 1000;
  --pagetop-index: 900;
  --nav-index: 850;
  --header-index: 800;
  --footer-index: 750;
  --content-index: 600;
  --side-index: 500;
  --main-index: 400;
  --section-index: 50;
}
@media (max-width: 767.98px) {
  :root {
    --content-width-article: min(100%, var(--content-width-article-size));
  }
}

@media (min-width: 1025px) {
  .sp-only {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  .pc-only {
    display: none !important;
  }
}
.is-hidden {
  display: none !important;
}

@media (max-width: 767.98px) {
  .is-sp-hidden {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  a[href^=tel] {
    pointer-events: none;
    cursor: default;
  }
}
.container {
  width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--content-padding);
  position: relative;
  z-index: var(--section-index);
}
.container__wrap {
  width: var(--content-wrap-width);
  margin-inline: auto;
  padding-inline: var(--content-padding);
}
@media (max-width: 767.98px) {
  .container__wrap {
    padding-inline: 0;
  }
}
.container--article {
  width: var(--content-width-article);
}
@media (max-width: 767.98px) {
  .container--article {
    padding-inline: 0;
  }
}

section {
  position: relative;
  z-index: var(--section-index);
  margin-block: var(--section-margin);
}

.footer {
  position: relative;
  z-index: var(--footer-index);
}

/* page common */
.main {
  padding-bottom: clamp(16rem, 14.8461538462rem + 3.0769230769vw, 18rem);
  position: relative;
  z-index: var(--content-index);
}

:is(.section-block, .content-block, .division-block, .element-block, .block) {
  scroll-margin-top: calc(var(--header-height) + var(--block-margin));
  margin-block: var(--block-margin);
}
:is(.section-block, .content-block, .division-block, .element-block, .block):first-child {
  margin-top: 0;
}
:is(.section-block, .content-block, .division-block, .element-block, .block):last-child {
  margin-bottom: 0;
}

.swiper {
  --thumb-aspect-ratio: 137 / 77;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  margin-top: 0;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--primary-color);
  width: 3.5rem;
  height: 3.5rem;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: solid 1px var(--primary-color);
  border-radius: var(--radius-button);
  background: var(--color-white);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.swiper .swiper-button-next::after,
.swiper .swiper-button-prev::after {
  font-size: clamp(1.3rem, 1.1269230769rem + 0.4615384615vw, 1.6rem);
}
.can-hover .swiper .swiper-button-next:hover,
.can-hover .swiper .swiper-button-prev:hover {
  color: var(--color-white);
  background-color: var(--primary-color);
}
.touch-primary .swiper .swiper-button-next:active, .touch-primary .swiper .swiper-button-next.is-tapped,
.touch-primary .swiper .swiper-button-prev:active,
.touch-primary .swiper .swiper-button-prev.is-tapped {
  color: var(--color-white);
  background-color: var(--primary-color);
}
.swiper .swiper-button-next {
  right: 1%;
}
@media (max-width: 767.98px) {
  .swiper .swiper-button-next {
    right: 3.2vw;
  }
}
.swiper .swiper-button-prev {
  left: 1%;
}
@media (max-width: 767.98px) {
  .swiper .swiper-button-prev {
    left: 3.2vw;
  }
}
.swiper .swiper-pagination-bullet {
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.swiper .swiper-toggle {
  width: 3.5rem;
  height: 3.5rem;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: solid 1px var(--primary-color);
  border-radius: var(--radius-button);
  background: var(--color-white);
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 767.98px) {
  .swiper .swiper-toggle {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.swiper .swiper-toggle::after {
  font-size: clamp(1.3rem, 1.1269230769rem + 0.4615384615vw, 1.6rem);
}
.swiper .swiper-toggle__icon.is-pause::before, .swiper .swiper-toggle__icon.is-pause::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.2rem;
  height: 1.2rem;
  background: var(--primary-color);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767.98px) {
  .swiper .swiper-toggle__icon.is-pause::before, .swiper .swiper-toggle__icon.is-pause::after {
    height: 1rem;
  }
}
.swiper .swiper-toggle__icon.is-pause::before {
  left: 1.9rem;
}
@media (max-width: 767.98px) {
  .swiper .swiper-toggle__icon.is-pause::before {
    left: 1rem;
  }
}
.swiper .swiper-toggle__icon.is-pause::after {
  right: 1.9rem;
}
@media (max-width: 767.98px) {
  .swiper .swiper-toggle__icon.is-pause::after {
    right: 1rem;
  }
}
.swiper .swiper-toggle__icon.is-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 0.7rem 0 0.7rem 1.2rem;
  border-color: transparent transparent transparent var(--primary-color);
}
.can-hover .swiper .swiper-toggle:hover {
  background-color: var(--primary-color);
}
.can-hover .swiper .swiper-toggle:hover .swiper-toggle__icon.is-pause::before, .can-hover .swiper .swiper-toggle:hover .swiper-toggle__icon.is-pause::after {
  background-color: var(--color-white);
}
.can-hover .swiper .swiper-toggle:hover .swiper-toggle__icon.is-play::before {
  border-color: transparent transparent transparent var(--color-white);
}
.touch-primary .swiper .swiper-toggle:active, .touch-primary .swiper .swiper-toggle.is-tapped {
  background-color: var(--primary-color);
}
.touch-primary .swiper .swiper-toggle:active .swiper-toggle__icon.is-pause::before, .touch-primary .swiper .swiper-toggle:active .swiper-toggle__icon.is-pause::after, .touch-primary .swiper .swiper-toggle.is-tapped .swiper-toggle__icon.is-pause::before, .touch-primary .swiper .swiper-toggle.is-tapped .swiper-toggle__icon.is-pause::after {
  background-color: var(--color-white);
}
.touch-primary .swiper .swiper-toggle:active .swiper-toggle__icon.is-play::before, .touch-primary .swiper .swiper-toggle.is-tapped .swiper-toggle__icon.is-play::before {
  border-color: transparent transparent transparent var(--color-white);
}

/* スクロールフェードインアニメーション */
.fade-in {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

.fade-in.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* 遅延バリエーション */
.fade-in--delay-1 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.fade-in--delay-2 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.fade-in--delay-3 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.fade-in--delay-4 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
@media (max-width: 767.98px) {
  .fade-in--delay-4 {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
}

a[href*=".pdf"]:not(.is-noIcon)::after {
  content: "\f1c1";
  font-family: var(--font-icon);
  line-height: 1;
  font-weight: 900;
}

.button {
  --text-color: var(--color-black);
  border: 1px solid var(--border-dark-color);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.5rem, 0.2115384615rem + 0.7692307692vw, 1rem);
  padding: clamp(0.6rem, 0.4269230769rem + 0.4615384615vw, 0.9rem);
  border-radius: var(--radius-button);
  min-width: min(100%, 17.6rem);
  text-align: center;
  font-size: clamp(1.2rem, 1.0846153846rem + 0.3076923077vw, 1.4rem);
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-transition: var(--trd-duration);
  transition: var(--trd-duration);
  background-color: var(--color-white);
}
@media (max-width: 767.98px) {
  .button {
    gap: 0;
    min-width: min(100%, 66.6666666667vw);
    -webkit-transition: none;
    transition: none;
  }
}
.button__text {
  display: inline-block;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  font-weight: var(--text-weight-m);
  color: var(--text-color);
  padding-right: clamp(2.8rem, 2.6846153846rem + 0.3076923077vw, 3rem);
  line-height: 1;
}
.button__text_normal {
  line-height: 1.1;
}
.button__arrow {
  position: absolute;
  right: clamp(0.6rem, 0.4269230769rem + 0.4615384615vw, 0.9rem);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  block-size: clamp(2.8rem, 2.6846153846rem + 0.3076923077vw, 3rem);
  direction: rtl;
  display: -ms-grid;
  display: grid;
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: 1/2;
  -ms-grid-columns: (clamp(2.8rem, 2.6846153846rem + 0.3076923077vw, 3rem))[2];
  grid-template-columns: repeat(2, clamp(2.8rem, 2.6846153846rem + 0.3076923077vw, 3rem));
  place-items: center;
  width: clamp(2.8rem, 2.6846153846rem + 0.3076923077vw, 3rem);
  overflow: hidden;
  z-index: 1;
  -webkit-transition: background-color var(--trd-duration) cubic-bezier(0, 0.55, 0.45, 1);
  transition: background-color var(--trd-duration) cubic-bezier(0, 0.55, 0.45, 1);
}
.button__arrow::after, .button__arrow::before {
  content: "\f054";
  font-family: var(--font-icon);
  line-height: 1;
  font-weight: 900;
  color: var(--color-white);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(1.2rem, 0.9692307692rem + 0.6153846154vw, 1.6rem);
  -webkit-transition: -webkit-transform var(--trd-duration) cubic-bezier(0, 0.55, 0.45, 1);
  transition: -webkit-transform var(--trd-duration) cubic-bezier(0, 0.55, 0.45, 1);
  transition: transform var(--trd-duration) cubic-bezier(0, 0.55, 0.45, 1);
  transition: transform var(--trd-duration) cubic-bezier(0, 0.55, 0.45, 1), -webkit-transform var(--trd-duration) cubic-bezier(0, 0.55, 0.45, 1);
}
.button__circle {
  position: absolute;
  right: clamp(0.6rem, 0.4269230769rem + 0.4615384615vw, 0.9rem);
  top: 50%;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  border-radius: var(--radius-button);
  background-color: var(--text-color);
  width: clamp(2.8rem, 2.6846153846rem + 0.3076923077vw, 3rem);
  aspect-ratio: 1/1;
  -webkit-transition: all var(--trd-duration) cubic-bezier(0, 0.55, 0.45, 1);
  transition: all var(--trd-duration) cubic-bezier(0, 0.55, 0.45, 1);
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media (max-width: 767.98px) {
  .button__circle {
    -webkit-transition: none;
    transition: none;
  }
}
.can-hover .button:hover:not(.button--more) {
  background-color: var(--text-color);
}
.can-hover .button:hover:not(.button--more) .button__text {
  color: var(--color-white);
}
.can-hover .button:hover:not(.button--more) .button__arrow::after, .can-hover .button:hover:not(.button--more) .button__arrow::before {
  color: var(--text-color);
  -webkit-transform: translateX(clamp(2.8rem, 2.6846153846rem + 0.3076923077vw, 3rem));
          transform: translateX(clamp(2.8rem, 2.6846153846rem + 0.3076923077vw, 3rem));
}
.can-hover .button:hover:not(.button--more) .button__circle {
  background-color: var(--color-white);
  -webkit-transform: translateY(-50%) scale(1.25);
          transform: translateY(-50%) scale(1.25);
}
.touch-primary .button:active:not(.button--more), .touch-primary .button.is-tapped:not(.button--more) {
  background-color: var(--text-color);
}
.touch-primary .button:active:not(.button--more) .button__text, .touch-primary .button.is-tapped:not(.button--more) .button__text {
  color: var(--color-white);
}
.touch-primary .button:active:not(.button--more) .button__arrow::after, .touch-primary .button:active:not(.button--more) .button__arrow::before, .touch-primary .button.is-tapped:not(.button--more) .button__arrow::after, .touch-primary .button.is-tapped:not(.button--more) .button__arrow::before {
  color: var(--text-color);
  -webkit-transform: translateX(clamp(2.8rem, 2.6846153846rem + 0.3076923077vw, 3rem));
          transform: translateX(clamp(2.8rem, 2.6846153846rem + 0.3076923077vw, 3rem));
}
.touch-primary .button:active:not(.button--more) .button__circle, .touch-primary .button.is-tapped:not(.button--more) .button__circle {
  background-color: var(--color-white);
  -webkit-transform: translateY(-50%) scale(1.25);
          transform: translateY(-50%) scale(1.25);
}
.button--small {
  padding: clamp(0.6rem, 0.5423076923rem + 0.1538461538vw, 0.7rem);
  min-width: min(100%, 17.6rem);
  min-height: clamp(3.8rem, 3.6846153846rem + 0.3076923077vw, 4rem);
  gap: clamp(0.7rem, 0.2961538462rem + 1.0769230769vw, 1.4rem);
  font-size: clamp(1.2rem, 1.0846153846rem + 0.3076923077vw, 1.4rem);
}
.button--small::after {
  font-size: clamp(2rem, 1.7115384615rem + 0.7692307692vw, 2.5rem);
}
.button--small.button--anime .button__text {
  padding-right: clamp(2.8rem, 2.8rem + 0vw, 2.8rem);
}
.button--small.button--anime .button__arrow {
  right: clamp(0.6rem, 0.5423076923rem + 0.1538461538vw, 0.7rem);
  block-size: 2.8rem;
  -ms-grid-columns: (2.8rem)[2];
  grid-template-columns: repeat(2, 2.8rem);
  width: 2.8rem;
  right: 5px;
}
.button--small.button--anime .button__arrow::after, .button--small.button--anime .button__arrow::before {
  font-size: clamp(1.2rem, 1.0846153846rem + 0.3076923077vw, 1.4rem);
}
.button--small.button--anime .button__circle {
  position: absolute;
  right: clamp(0.6rem, 0.6rem + 0vw, 0.6rem);
  width: clamp(2.8rem, 2.8rem + 0vw, 2.8rem);
}
.can-hover .button--small.button--anime:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .can-hover .button--small.button--anime:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before {
  -webkit-transform: translateX(clamp(2.8rem, 2.8rem + 0vw, 2.8rem));
          transform: translateX(clamp(2.8rem, 2.8rem + 0vw, 2.8rem));
}
.can-hover .button--small.button--anime:hover:not(.button--more):not(.button--download):not(.button--consult) .button__circle {
  -webkit-transform: translateY(-50%) scale(1.15);
          transform: translateY(-50%) scale(1.15);
}
.touch-primary .button--small.button--anime:active:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .touch-primary .button--small.button--anime:active:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before, .touch-primary .button--small.button--anime.is-tapped:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .touch-primary .button--small.button--anime.is-tapped:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before {
  -webkit-transform: translateX(clamp(2.8rem, 2.8rem + 0vw, 2.8rem));
          transform: translateX(clamp(2.8rem, 2.8rem + 0vw, 2.8rem));
}
.touch-primary .button--small.button--anime:active:not(.button--more):not(.button--download):not(.button--consult) .button__circle, .touch-primary .button--small.button--anime.is-tapped:not(.button--more):not(.button--download):not(.button--consult) .button__circle {
  -webkit-transform: translateY(-50%) scale(1.15);
          transform: translateY(-50%) scale(1.15);
}
.button--large {
  padding-block: clamp(0.8rem, 0.6846153846rem + 0.3076923077vw, 1rem);
  min-width: min(100%, 35rem);
  min-height: clamp(5rem, 4.4230769231rem + 1.5384615385vw, 6rem);
  font-size: clamp(1.3rem, 1.1269230769rem + 0.4615384615vw, 1.6rem);
}
.button--large .button__text {
  line-height: 1;
  padding-inline: 1em clamp(2.8rem, 2.6846153846rem + 0.3076923077vw, 3rem);
}
@media (max-width: 767.98px) {
  .button--large .button__text {
    padding-left: 0.8em;
  }
}
.button--large .button__text_normal {
  line-height: 1.1;
}
.button--large.button--anime .button__text {
  padding-inline: 1em clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem);
  margin-left: 0;
}
.button--large.button--anime .button__text .sp-br {
  display: none;
}
@media (max-width: 767.98px) {
  .button--large.button--anime .button__text {
    padding-left: 0.8em;
  }
  .button--large.button--anime .button__text .sp-br {
    display: block;
  }
}
.button--large.button--anime .button__arrow {
  right: clamp(0.8rem, 0.6846153846rem + 0.3076923077vw, 1rem);
  block-size: clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem);
  -ms-grid-columns: (clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem))[2];
  grid-template-columns: repeat(2, clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem));
  width: clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem);
}
.button--large.button--anime .button__arrow::after, .button--large.button--anime .button__arrow::before {
  font-size: clamp(1.2rem, 0.9115384615rem + 0.7692307692vw, 1.7rem);
}
.button--large.button--anime .button__circle {
  width: clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem);
  right: clamp(0.8rem, 0.6846153846rem + 0.3076923077vw, 1rem);
}
.can-hover .button--large.button--anime:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .can-hover .button--large.button--anime:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before {
  -webkit-transform: translateX(clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem));
          transform: translateX(clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem));
}
.touch-primary .button--large.button--anime:active:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .touch-primary .button--large.button--anime:active:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before, .touch-primary .button--large.button--anime.is-tapped:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .touch-primary .button--large.button--anime.is-tapped:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before {
  -webkit-transform: translateX(clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem));
          transform: translateX(clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem));
}
.button--consult, .button--download, .button--secondary {
  border: none;
  color: var(--color-white);
  border: 1px solid;
}
@media (min-width: 1025px) {
  .button--consult, .button--download, .button--secondary {
    -webkit-transition: var(--trd-duration);
    transition: var(--trd-duration);
  }
}
.button--consult .button__text, .button--download .button__text, .button--secondary .button__text {
  color: var(--color-white);
  padding-right: 0;
  text-align: center;
}
.can-hover .button--consult:hover, .can-hover .button--download:hover, .can-hover .button--secondary:hover {
  -webkit-transition: var(--trd-duration);
  transition: var(--trd-duration);
}
.can-hover .button--consult:hover.button--anime, .can-hover .button--download:hover.button--anime, .can-hover .button--secondary:hover.button--anime {
  background-color: var(--color-white);
}
.touch-primary .button--consult:active, .touch-primary .button--consult.is-tapped, .touch-primary .button--download:active, .touch-primary .button--download.is-tapped, .touch-primary .button--secondary:active, .touch-primary .button--secondary.is-tapped {
  -webkit-transition: var(--trd-duration);
  transition: var(--trd-duration);
}
.touch-primary .button--consult:active.button--anime, .touch-primary .button--consult.is-tapped.button--anime, .touch-primary .button--download:active.button--anime, .touch-primary .button--download.is-tapped.button--anime, .touch-primary .button--secondary:active.button--anime, .touch-primary .button--secondary.is-tapped.button--anime {
  background-color: var(--color-white);
}
.button--consult {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.can-hover .button--consult:hover.button--anime {
  color: var(--primary-color);
}
.can-hover .button--consult:hover.button--anime .button__text {
  color: var(--primary-color);
}
.touch-primary .button--consult:active.button--anime, .touch-primary .button--consult.is-tapped.button--anime {
  color: var(--primary-color);
}
.touch-primary .button--consult:active.button--anime .button__text, .touch-primary .button--consult.is-tapped.button--anime .button__text {
  color: var(--primary-color);
}
.button--download {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.can-hover .button--download:hover.button--anime {
  color: var(--secondary-color);
}
.can-hover .button--download:hover.button--anime .button__text {
  color: var(--secondary-color);
}
.touch-primary .button--download:active.button--anime, .touch-primary .button--download.is-tapped.button--anime {
  color: var(--secondary-color);
}
.touch-primary .button--download:active.button--anime .button__text, .touch-primary .button--download.is-tapped.button--anime .button__text {
  color: var(--secondary-color);
}
.button--primary {
  background-color: var(--primary-color);
}
.button--secondary {
  background-color: var(--secondary-color);
}
.button--back {
  width: clamp(23rem, 17.8076923077rem + 13.8461538462vw, 32rem);
  height: clamp(5rem, 4.4230769231rem + 1.5384615385vw, 6rem);
  min-width: auto;
  background-color: var(--color-white);
  border-color: var(--border-dark-color);
  font-size: clamp(1.3rem, 1.1269230769rem + 0.4615384615vw, 1.6rem);
  padding: clamp(0.8rem, 0.6846153846rem + 0.3076923077vw, 1rem);
}
.button--back.button--anime .button__text {
  padding-inline: clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem) 1em;
  margin-left: 0;
}
.button--back.button--anime .button__text .sp-br {
  display: none;
}
@media (max-width: 767.98px) {
  .button--back.button--anime .button__text {
    padding-right: 0.8em;
  }
  .button--back.button--anime .button__text .sp-br {
    display: block;
  }
}
.button--back.button--anime .button__arrow {
  left: clamp(0.8rem, 0.6846153846rem + 0.3076923077vw, 1rem);
  right: inherit;
  scale: -1 1;
  block-size: clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem);
  -ms-grid-columns: (clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem))[2];
  grid-template-columns: repeat(2, clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem));
  width: clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem);
}
.button--back.button--anime .button__arrow::after, .button--back.button--anime .button__arrow::before {
  font-size: clamp(1.2rem, 0.9115384615rem + 0.7692307692vw, 1.7rem);
}
.button--back.button--anime .button__circle {
  width: clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem);
  left: clamp(0.8rem, 0.6846153846rem + 0.3076923077vw, 1rem);
  right: inherit;
}
.can-hover .button--back.button--anime:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .can-hover .button--back.button--anime:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before {
  -webkit-transform: translateX(2.4em);
          transform: translateX(2.4em);
}
@media (max-width: 767.98px) {
  .can-hover .button--back.button--anime:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .can-hover .button--back.button--anime:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before {
    -webkit-transform: translateX(370%);
            transform: translateX(370%);
  }
}
.touch-primary .button--back.button--anime:active:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .touch-primary .button--back.button--anime:active:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before, .touch-primary .button--back.button--anime.is-tapped:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .touch-primary .button--back.button--anime.is-tapped:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before {
  -webkit-transform: translateX(2.4em);
          transform: translateX(2.4em);
}
@media (max-width: 767.98px) {
  .touch-primary .button--back.button--anime:active:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .touch-primary .button--back.button--anime:active:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before, .touch-primary .button--back.button--anime.is-tapped:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .touch-primary .button--back.button--anime.is-tapped:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before {
    -webkit-transform: translateX(370%);
            transform: translateX(370%);
  }
}
.button--relation {
  width: clamp(23rem, 17.8076923077rem + 13.8461538462vw, 32rem);
  height: clamp(5rem, 4.4230769231rem + 1.5384615385vw, 6rem);
  min-width: auto;
  background-color: var(--color-white);
  border-color: var(--border-dark-color);
  font-size: clamp(1.3rem, 1.1269230769rem + 0.4615384615vw, 1.6rem);
  padding: clamp(0.8rem, 0.6846153846rem + 0.3076923077vw, 1rem);
}
.button--relation.button--anime .button__text {
  padding-inline: 1em clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem);
}
@media (max-width: 767.98px) {
  .button--relation.button--anime .button__text {
    padding-left: 0.8em;
  }
}
.button--relation.button--anime .button__arrow {
  right: clamp(0.8rem, 0.6846153846rem + 0.3076923077vw, 1rem);
  block-size: clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem);
  -ms-grid-columns: (clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem))[2];
  grid-template-columns: repeat(2, clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem));
  width: clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem);
}
.button--relation.button--anime .button__arrow::after, .button--relation.button--anime .button__arrow::before {
  font-size: clamp(1.2rem, 0.9115384615rem + 0.7692307692vw, 1.7rem);
}
.button--relation.button--anime .button__circle {
  width: clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem);
  right: clamp(0.8rem, 0.6846153846rem + 0.3076923077vw, 1rem);
}
.can-hover .button--relation.button--anime:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .can-hover .button--relation.button--anime:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before {
  -webkit-transform: translateX(clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem));
          transform: translateX(clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem));
}
.touch-primary .button--relation.button--anime:active:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .touch-primary .button--relation.button--anime:active:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before, .touch-primary .button--relation.button--anime.is-tapped:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, .touch-primary .button--relation.button--anime.is-tapped:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before {
  -webkit-transform: translateX(clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem));
          transform: translateX(clamp(3.3rem, 2.8961538462rem + 1.0769230769vw, 4rem));
}
.button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(2rem, 0.8461538462rem + 3.0769230769vw, 4rem);
  margin-block: var(--block-margin);
}
@media (max-width: 767.98px) {
  .button-container {
    -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: 26.6666666667vw;
    margin-bottom: 26.6666666667vw;
  }
}
.button-container--relation {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-block: 0 var(--block-margin);
}

.swiper-button {
  --swiper-theme-color: var(--color-white);
}
.swiper-button-prev::after, .swiper-button-next::after {
  font-family: var(--font-icon);
  line-height: 1;
  font-weight: 900;
}
.swiper-button-prev::after {
  content: "\f053";
}
.swiper-button-next::after {
  content: "\f054";
}

.slide-image :is(picture, img) {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.article-section__title {
  font-size: clamp(1.5rem, 1.3269230769rem + 0.4615384615vw, 1.8rem);
  margin-bottom: clamp(2rem, 1.4230769231rem + 1.5384615385vw, 3rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.article-section__title::before {
  content: "";
  display: inline-block;
  width: clamp(1.6rem, 1.4269230769rem + 0.4615384615vw, 1.9rem);
  height: clamp(0.3rem, 0.2423076923rem + 0.1538461538vw, 0.4rem);
  aspect-ratio: 1/1;
  margin-right: 0.8rem;
  background-color: var(--primary-light-color);
}
.article-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3rem 1fr 3rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(5rem, 3.8461538462rem + 3.0769230769vw, 7rem) 3rem;
}
@media (max-width: 767.98px) {
  .article-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.article-list--col4 {
  -ms-grid-columns: 1fr clamp(2.5rem, 1.6346153846rem + 2.3076923077vw, 4rem) 1fr clamp(2.5rem, 1.6346153846rem + 2.3076923077vw, 4rem) 1fr clamp(2.5rem, 1.6346153846rem + 2.3076923077vw, 4rem) 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2.5rem, 1.6346153846rem + 2.3076923077vw, 4rem);
}
.article-list--relation {
  -ms-grid-columns: 222px 30px 222px 30px 222px;
  grid-template-columns: repeat(3, 222px);
  gap: 30px;
}
@media (max-width: 767.98px) {
  .article-list .article-thum {
    height: clamp(12.5rem, 10.8269230769rem + 4.4615384615vw, 15.4rem);
  }
}
@media (max-width: 767.98px) and (max-width: 767.98px) {
  .article-list .article-thum {
    height: 48vw;
  }
}
@media (max-width: 767.98px) {
  .article-list--sp-col1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .article-list--sp-col2 {
    -ms-grid-columns: 1fr 2.4vw 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 8vw 2.4vw;
  }
  .article-list--sp-col2 .article-thum {
    height: 23.7333333333vw;
  }
  .article-list--sp-col3 {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
.article-list__item .article-link {
  display: block;
  width: 100%;
  height: 100%;
}
.can-hover .article-list__item .article-link:hover .article-thum img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.can-hover .article-list__item .article-link:hover * {
  color: var(--primary-color);
}
.touch-primary .article-list__item .article-link:active .article-thum img, .touch-primary .article-list__item .article-link.is-tapped .article-thum img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.touch-primary .article-list__item .article-link:active *, .touch-primary .article-list__item .article-link.is-tapped * {
  color: var(--primary-color);
}
.article-list__item.is-hidden {
  display: none;
}
.article-list__main, .article-list__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.article-list__thum :is(picture, img) {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform var(--trd-hover-duration) var(--trd-timing);
  transition: -webkit-transform var(--trd-hover-duration) var(--trd-timing);
  transition: transform var(--trd-hover-duration) var(--trd-timing);
  transition: transform var(--trd-hover-duration) var(--trd-timing), -webkit-transform var(--trd-hover-duration) var(--trd-timing);
  -o-object-fit: cover;
     object-fit: cover;
}
.article-thum {
  width: 100%;
  aspect-ratio: 137/77;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: clamp(1.2rem, 0.9692307692rem + 0.6153846154vw, 1.6rem);
}
.article-thum img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -o-object-fit: cover;
     object-fit: cover;
}
.article-title {
  font-size: clamp(1.3rem, 0.4035019455rem + 1.1673151751vw, 1.6rem);
  line-height: 1.5;
  font-weight: var(--text-weight);
  -webkit-transition: color var(--trd-duration);
  transition: color var(--trd-duration);
}
@media (max-width: 767.98px) {
  .article-title {
    line-height: 1.6;
  }
}
.article-subtitle {
  font-size: clamp(1.3rem, 0.4035019455rem + 1.1673151751vw, 1.6rem);
  line-height: 1.5;
  font-weight: var(--text-weight);
  -webkit-transition: color var(--trd-duration);
  transition: color var(--trd-duration);
}
@media (max-width: 767.98px) {
  .article-subtitle {
    line-height: 1.6;
  }
}
.article-subtitle {
  margin-top: 0.5rem;
}
.article-text {
  font-size: clamp(1.3rem, 0.4035019455rem + 1.1673151751vw, 1.6rem);
  line-height: 1.5;
  font-weight: var(--text-weight);
  -webkit-transition: color var(--trd-duration);
  transition: color var(--trd-duration);
}
@media (max-width: 767.98px) {
  .article-text {
    line-height: 1.6;
  }
}
.article-caption {
  font-size: clamp(1.4rem, 0.8023346304rem + 0.7782101167vw, 1.6rem);
  line-height: 1.5;
  font-weight: var(--text-weight-m);
  -webkit-transition: color var(--trd-duration);
  transition: color var(--trd-duration);
}
@media (max-width: 767.98px) {
  .article-caption {
    line-height: 1.6;
  }
}
.article-caption {
  margin-top: clamp(1rem, 0.8846153846rem + 0.3076923077vw, 1.2rem);
}
.article-caption + .article-text {
  margin-top: 0.5rem;
}
.article-date {
  display: block;
  color: var(--text-light-color);
  font-size: 1.2rem;
  line-height: normal;
  letter-spacing: 0.04em;
  margin-block: clamp(0.4rem, 0.3423076923rem + 0.1538461538vw, 0.5rem) clamp(1rem, 0.6538461538rem + 0.9230769231vw, 1.6rem);
}
.article-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(0.4rem, 0.2846153846rem + 0.3076923077vw, 0.6rem);
}
.article-category__item,
.article-category label.article-category__item {
  display: block;
  padding: clamp(0.3rem, 0.1846153846rem + 0.3076923077vw, 0.5rem) clamp(0.6rem, 0.5423076923rem + 0.1538461538vw, 0.7rem);
  border-radius: var(--radius-button);
  border: 1px solid var(--catgory-color);
  font-size: clamp(1rem, 0.9423076923rem + 0.1538461538vw, 1.1rem);
  color: var(--catgory-color);
  line-height: 1;
  letter-spacing: 0.04em;
  background-color: var(--color-white);
  -webkit-transition: var(--trd-duration);
  transition: var(--trd-duration);
}
@media (max-width: 767.98px) {
  .article-category__item,
  .article-category label.article-category__item {
    padding: 2.1333333333vw 3.2vw;
  }
}
.can-hover .article-category__item:hover,
.can-hover .article-category label.article-category__item:hover {
  background-color: var(--catgory-color);
  color: var(--color-white);
}
.touch-primary .article-category__item:active, .touch-primary .article-category__item.is-tapped,
.touch-primary .article-category label.article-category__item:active,
.touch-primary .article-category label.article-category__item.is-tapped {
  background-color: var(--catgory-color);
  color: var(--color-white);
}
.article-category label.article-category__item {
  width: 100%;
  height: 100%;
}
@media (max-width: 767.98px) {
  .article-category label.article-category__item {
    padding: 1.6vw 2.6666666667vw;
  }
}
.article-category label.article-category__item.current {
  background-color: var(--catgory-color);
  color: var(--color-white);
}
.article-category label.article-category__item input[type=checkbox] {
  display: none;
}
.article-category--all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.article-category--all label.article-category__item {
  padding: clamp(0.4rem, 0.3423076923rem + 0.1538461538vw, 0.5rem) clamp(0.5rem, -0.5961538462rem + 2.9230769231vw, 2.4rem);
}
@media (max-width: 767.98px) {
  .article-category--all label.article-category__item {
    padding: 1.6vw 6.4vw;
  }
}
.article-read {
  font-size: clamp(1.4rem, 1.1692307692rem + 0.6153846154vw, 1.8rem);
  margin-block: clamp(3rem, 0.1153846154rem + 7.6923076923vw, 8rem) clamp(5rem, 4.4230769231rem + 1.5384615385vw, 6rem);
  line-height: 1.8;
}
@media (max-width: 767.98px) {
  .article-read {
    margin-block: 8vw 13.3333333333vw;
  }
}
.article-read + .article-convertion {
  margin-block: clamp(5rem, 4.4230769231rem + 1.5384615385vw, 6rem) clamp(5rem, 3.2692307692rem + 4.6153846154vw, 8rem);
}
.article-index {
  margin-block: clamp(5rem, 4.4230769231rem + 1.5384615385vw, 6rem) var(--block-margin);
  padding: clamp(2rem, 1.25rem + 2vw, 3.3rem) clamp(2rem, -0.3076923077rem + 6.1538461538vw, 6rem) clamp(2rem, 1.0769230769rem + 2.4615384615vw, 3.6rem);
  border-radius: var(--radius);
  border: 1px solid var(--bg-light-color);
  background-color: var(--color-white);
}
.article-index__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(1.8rem, 1.5692307692rem + 0.6153846154vw, 2.2rem);
  margin-bottom: clamp(1.8rem, 1.6846153846rem + 0.3076923077vw, 2rem);
  border-bottom: 1px solid var(--bg-light-color);
  padding-bottom: clamp(1.4rem, 1.4rem + 0vw, 1.4rem);
  line-height: 1;
  font-weight: var(--text-weight-xm);
}
.article-index__title::before {
  content: "\f0ca";
  font-family: var(--font-icon);
  line-height: 1;
  font-weight: 900;
  font-size: clamp(1.5rem, 1.1538461538rem + 0.9230769231vw, 2.1rem);
  margin-top: 0.25em;
  margin-right: 0.9rem;
}
.article-index__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: clamp(1rem, 0.8846153846rem + 0.3076923077vw, 1.2rem) clamp(0.6rem, 0.4846153846rem + 0.3076923077vw, 0.8rem) 1fr;
  grid-template-columns: clamp(1rem, 0.8846153846rem + 0.3076923077vw, 1.2rem) 1fr;
  gap: clamp(0.6rem, 0.4846153846rem + 0.3076923077vw, 0.8rem);
  font-size: clamp(1.5rem, 1.3269230769rem + 0.4615384615vw, 1.8rem);
  margin-top: clamp(0.9rem, 0.7269230769rem + 0.4615384615vw, 1.2rem);
}
.article-index__item::before {
  content: "";
  background-color: var(--border-color);
}
.article-index__item--h2 {
  font-weight: var(--text-weight);
  font-size: clamp(1.5rem, 1.3269230769rem + 0.4615384615vw, 1.8rem);
}
.article-index__item--h2::before {
  width: clamp(0.8rem, 0.6846153846rem + 0.3076923077vw, 1rem);
  height: clamp(0.8rem, 0.6846153846rem + 0.3076923077vw, 1rem);
  border-radius: 50vw;
  aspect-ratio: 1/1;
  background-color: var(--border-color);
  margin-top: 0.3em;
}
.article-index__item--h3 {
  padding-left: 1.5em;
  font-weight: var(--text-weight);
  font-size: clamp(1.4rem, 1.2846153846rem + 0.3076923077vw, 1.6rem);
}
.article-index__item--h3::before {
  width: 100%;
  height: 2px;
  background-color: var(--border-color);
  margin-top: 0.5em;
}
.article-index__scroll-wrapper {
  position: relative;
}
.article-index__scrollbar {
  display: none;
}
@media (max-width: 767.98px) {
  .article-index__scrollbar {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    overflow: hidden;
  }
}
.article-index__scrollbar-thumb {
  position: absolute;
  width: 100%;
  background: var(--border-color);
  border-radius: 2px;
  min-height: 30px;
}
.article-index__list {
  padding-left: 0.7em;
}
@media (max-width: 767.98px) {
  .article-index__list {
    padding: 0.2rem calc(0.45em + 8px) 0.2rem 0.45em;
    max-height: 200px;
    overflow-y: auto;
  }
  .article-index__list::-webkit-scrollbar {
    display: none;
    -webkit-appearance: none;
  }
}
.article-index__link {
  line-height: 1.25;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.can-hover .article-index__link:hover {
  color: var(--primary-color);
}
.touch-primary .article-index__link:active, .touch-primary .article-index__link.is-tapped {
  color: var(--primary-color);
}
.article-info-list {
  margin-block: clamp(3rem, 0.6923076923rem + 6.1538461538vw, 7rem);
}
.article-info-list__term {
  font-size: clamp(1.6rem, 1.4846153846rem + 0.3076923077vw, 1.8rem);
  margin-block: clamp(2rem, 1.4230769231rem + 1.5384615385vw, 3rem) clamp(1rem, 0.7115384615rem + 0.7692307692vw, 1.5rem);
  border-bottom: 1px solid var(--border-color);
}
.article-info-list__label {
  position: relative;
  display: inline-block;
  padding-bottom: clamp(0.4rem, 0.3423076923rem + 0.1538461538vw, 0.5rem);
}
.article-info-list__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}
.article-info-list__desc {
  font-size: clamp(1.4rem, 1.2846153846rem + 0.3076923077vw, 1.6rem);
  margin-block: clamp(1rem, 0.7115384615rem + 0.7692307692vw, 1.5rem) clamp(3.2rem, 2.7384615385rem + 1.2307692308vw, 4rem);
  line-height: 1.8;
}
@media (max-width: 767.98px) {
  .article-info-list__desc {
    line-height: 1.56;
  }
}
.article-edit__section {
  margin-top: var(--block-margin);
}
.article-edit__section:last-of-type {
  margin-bottom: var(--block-margin);
}
.article-edit__section ol {
  list-style: decimal;
  padding-left: 1.1em;
}
.article-edit__section ul {
  list-style: disc;
  padding-left: 1.25em;
}
.article-edit__sectionTitle {
  margin-top: var(--block-margin);
  margin-bottom: clamp(3rem, 1.8461538462rem + 3.0769230769vw, 5rem);
  font-size: clamp(1.8rem, 1.2230769231rem + 1.5384615385vw, 2.8rem);
  padding-bottom: clamp(1rem, 0.8846153846rem + 0.3076923077vw, 1.2rem);
  border-bottom: clamp(0.3rem, 0.1846153846rem + 0.3076923077vw, 0.5rem) solid var(--secondary-color);
  line-height: 1.54;
}
.article-edit__contentTitle {
  margin-top: var(--block-margin);
  margin-bottom: clamp(3rem, 2.4230769231rem + 1.5384615385vw, 4rem);
  font-size: clamp(1.6rem, 1.1961538462rem + 1.0769230769vw, 2.3rem);
  line-height: 1.54;
  padding-left: clamp(1rem, 0.6538461538rem + 0.9230769231vw, 1.6rem);
  border-left: clamp(0.2rem, 0.0846153846rem + 0.3076923077vw, 0.4rem) solid var(--secondary-color);
  font-weight: var(--text-weight-xm);
}
.article-edit__contentTitle:not(:first-child) {
  margin-top: var(--title-margin);
}
.article-edit__elementTitle {
  font-size: clamp(1.5rem, 1.3269230769rem + 0.4615384615vw, 1.8rem);
  margin: var(--title-margin) 2rem;
  padding-left: clamp(2rem, 1.7692307692rem + 0.6153846154vw, 2.4rem);
  position: relative;
  font-weight: var(--text-weight-xm);
  --lh: 1.65;
  --size: 0.65em;
}
.article-edit__elementTitle::before {
  content: "";
  position: absolute;
  top: calc((var(--lh) * 1em - var(--size)) / 2);
  left: 0;
  width: var(--size);
  height: var(--size);
  background-color: var(--border-color);
}
.article-edit__text {
  font-size: clamp(1.4rem, 1.1692307692rem + 0.6153846154vw, 1.8rem);
  line-height: 1.8;
  margin-top: var(--title-margin);
}
.article-edit__text p + p {
  margin-top: var(--PtoP);
}
.article-edit-image {
  width: min(100%, 800px);
  margin-block: var(--title-margin);
  margin-inline: auto;
}
.article-edit-image img {
  border-radius: var(--radius);
}
@media (max-width: 767.98px) {
  .article-edit-image img {
    width: 100%;
  }
}
.article-edit-image-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(3rem, 2.4230769231rem + 1.5384615385vw, 4rem) 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(3rem, 2.4230769231rem + 1.5384615385vw, 4rem);
  margin-block: var(--title-margin);
}
@media (max-width: 767.98px) {
  .article-edit-image-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.article-edit-image-list .article-edit-image {
  width: 100%;
  margin-block: 0;
}
.article-edit-image-list .article-edit-image img {
  border-radius: var(--radius);
}
.article-edit-set-column {
  gap: clamp(3rem, 2.4230769231rem + 1.5384615385vw, 4rem);
  margin-block: var(--title-margin) clamp(4rem, 1.6923076923rem + 6.1538461538vw, 8rem);
}
.article-edit-set-column::after {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 767.98px) {
  .article-edit-set-column::after {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .article-edit-set-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.article-edit-set-column__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.article-edit-set-column__image img {
  border-radius: var(--radius);
}
@media (min-width: 1025px) {
  .article-edit-set-column__image {
    float: left;
    width: min(51.5%, 460px);
    padding-right: clamp(1.6rem, 0.7923076923rem + 2.1538461538vw, 3rem);
  }
}
@media (max-width: 767.98px) {
  .article-edit-set-column__image {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .article-edit-set-column__image:not(:has(.article-edit-images__caption)) {
    padding-bottom: 2rem;
  }
}
.article-edit-set-column__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: clamp(1.4rem, 1.1692307692rem + 0.6153846154vw, 1.8rem);
  line-height: 1.8;
}
.article-edit-set-column.is-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 767.98px) {
  .article-edit-set-column.is-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (min-width: 1025px) {
  .article-edit-set-column.is-reverse .article-edit-set-column__image {
    float: right;
    padding-inline: clamp(1.6rem, 0.7923076923rem + 2.1538461538vw, 3rem) 0;
  }
}
.article-edit-figure {
  width: min(100%, 800px);
  margin-block: var(--title-margin);
  margin-inline: auto;
}
.article-edit-figure img {
  width: 100%;
  border-radius: 8px;
}
.article-edit-figure__title {
  font-size: clamp(1.5rem, 1.2115384615rem + 0.7692307692vw, 2rem);
  margin-bottom: clamp(1rem, 0.4230769231rem + 1.5384615385vw, 2rem);
  text-align: center;
  font-weight: var(--text-weight-m);
  color: var(--text-gray);
}
.article-edit-figure__data img {
  border-radius: 8px;
}
@media (max-width: 767.98px) {
  .article-edit-figure {
    margin-block: 0;
  }
  .article-edit-figure img {
    border-radius: 2.1333333333vw;
  }
  .article-edit-figure__title {
    font-size: 4vw;
    margin-bottom: 2.6666666667vw;
  }
  .article-edit-figure__data img {
    border-radius: 2.1333333333vw;
  }
}
.article-edit-convertion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1.9rem, 1.6115384615rem + 0.7692307692vw, 2.4rem);
  margin: clamp(6rem, 4.8461538462rem + 3.0769230769vw, 8rem) 0;
}
@media (max-width: 767.98px) {
  .article-edit-convertion {
    -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;
  }
}
.article-edit-convertion .button {
  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;
  gap: clamp(1.6rem, 1.3692307692rem + 0.6153846154vw, 2rem);
  font-size: clamp(1.6rem, 1.2538461538rem + 0.9230769231vw, 2.2rem);
  line-height: 1.27;
  text-align: center;
  min-height: clamp(5rem, 4.1346153846rem + 2.3076923077vw, 6.5rem);
  width: clamp(23rem, 15.5rem + 20vw, 36rem);
  padding: clamp(0.8rem, 0.6846153846rem + 0.3076923077vw, 1rem);
}
.article-edit-convertion .button::after {
  display: none;
}
.can-hover .article-edit-convertion .button--download:hover {
  background-color: var(--color-white);
  color: var(--secondary-color);
}
.touch-primary .article-edit-convertion .button--download:active, .touch-primary .article-edit-convertion .button--download.is-tapped {
  background-color: var(--color-white);
  color: var(--secondary-color);
}
.can-hover .article-edit-convertion .button--consult:hover {
  background-color: var(--color-white);
  color: var(--primary-color);
}
.touch-primary .article-edit-convertion .button--consult:active, .touch-primary .article-edit-convertion .button--consult.is-tapped {
  background-color: var(--color-white);
  color: var(--primary-color);
}
.article-edit-profile {
  margin-block: var(--block-margin) 0;
}
.article-edit-profile + .article-edit-profile {
  margin-block: clamp(2rem, 1.4230769231rem + 1.5384615385vw, 3rem) 0;
}
.article-edit-profile__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(2.4rem, 1.7076923077rem + 1.8461538462vw, 3.6rem);
  background-color: var(--background-light-color);
  border-radius: var(--radius);
  padding: clamp(2rem, 0.8461538462rem + 3.0769230769vw, 4rem);
}
@media (max-width: 767.98px) {
  .article-edit-profile__item {
    -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;
  }
}
.article-edit-profile__photo {
  width: clamp(26rem, 20.8076923077rem + 13.8461538462vw, 35rem);
  height: clamp(15rem, 9.8076923077rem + 13.8461538462vw, 24rem);
  aspect-ratio: 35/24;
  border-radius: var(--radius);
  overflow: hidden;
}
.article-edit-profile__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article-edit-profile__info {
  width: clamp(40rem, 36.6538461538rem + 8.9230769231vw, 45.8rem);
}
@media (max-width: 767.98px) {
  .article-edit-profile__info {
    width: 100%;
  }
}
.article-edit-profile__name {
  font-size: clamp(1.8rem, 1.6846153846rem + 0.3076923077vw, 2rem);
  margin-bottom: clamp(0.4rem, 0.5153846154rem + -0.3076923077vw, 0.2rem);
  font-weight: var(--text-weight-m);
}
.article-edit-profile__name .kana {
  font-weight: var(--text-weight);
}
.article-edit-profile__description {
  font-size: clamp(1.3rem, 1.1846153846rem + 0.3076923077vw, 1.5rem);
}
.article-edit-profile__affiliation {
  margin-bottom: clamp(1.4rem, 1.1692307692rem + 0.6153846154vw, 1.8rem);
  font-size: clamp(1.4rem, 1.2846153846rem + 0.3076923077vw, 1.6rem);
}
@media (max-width: 767.98px) {
  .article-edit-profile__affiliation {
    line-height: 1.5;
  }
}
.article-edit-profile__profile {
  font-size: clamp(1.3rem, 1.1846153846rem + 0.3076923077vw, 1.5rem);
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  .article-edit-profile__profile {
    line-height: 1.78;
  }
}
.article-edit-note {
  font-size: clamp(1.3rem, 1.1846153846rem + 0.3076923077vw, 1.5rem);
  margin-block: 1.5em;
  line-height: 1.8;
}
@media (max-width: 767.98px) {
  .article-edit-note {
    line-height: 1.56;
  }
}
.article-edit-note p {
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
}
.article-edit-images__caption {
  font-size: clamp(1.2rem, 1.0846153846rem + 0.3076923077vw, 1.4rem);
  color: var(--text-light-color);
  margin-top: 1rem;
  line-height: 1.56;
}
.article-edit__sectionTitle + .article-edit__text,
.article-edit__sectionTitle + .article-edit-set-column,
.article-edit__sectionTitle + .article-edit-figure,
.article-edit__sectionTitle + .article-edit-image,
.article-edit__sectionTitle + .article-edit-image-list {
  margin-top: 0;
}
.article-edit__contentTitle + .article-edit__text,
.article-edit__contentTitle + .article-edit-set-column,
.article-edit__contentTitle + .article-edit-figure,
.article-edit__contentTitle + .article-edit-image,
.article-edit__contentTitle + .article-edit-image-list {
  margin-top: 0;
}
.article-edit__elementTitle + .article-edit__text,
.article-edit__elementTitle + .article-edit-set-column,
.article-edit__elementTitle + .article-edit-figure,
.article-edit__elementTitle + .article-edit-image,
.article-edit__elementTitle + .article-edit-image-list {
  margin-top: 0;
}
.article-convertion {
  background-color: var(--background-light-color);
  border-radius: var(--radius);
  padding: clamp(4rem, 3.4230769231rem + 1.5384615385vw, 5rem) 2rem;
  margin-block: var(--block-margin);
}
.article-convertion__title {
  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;
  gap: 1em;
  text-align: center;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  font-size: clamp(1.4rem, 1.0538461538rem + 0.9230769231vw, 2rem);
  font-weight: var(--text-weight-m);
  margin-bottom: clamp(1.4rem, 1.2846153846rem + 0.3076923077vw, 1.6rem);
}
@media (max-width: 767.98px) {
  .article-convertion__title {
    -ms-grid-column: 1;
    grid-column: 1;
  }
}
.article-convertion__title::before, .article-convertion__title::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.2em;
  background-color: currentColor;
}
.article-convertion__title::before {
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
}
.article-convertion__title::after {
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}
.article-convertion__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.9rem, 0.4961538462rem + 1.0769230769vw, 1.6rem) clamp(2rem, 1.4807692308rem + 1.3846153846vw, 2.9rem);
  position: relative;
  z-index: 3;
}
@media (max-width: 767.98px) {
  .article-convertion__wrap {
    gap: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.article-convertion__wrap .button {
  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;
  gap: clamp(0.8rem, 0.6846153846rem + 0.3076923077vw, 1rem);
  font-size: clamp(1.4rem, 1.1692307692rem + 0.6153846154vw, 1.8rem);
  text-align: center;
  width: clamp(23rem, 15.5rem + 20vw, 36rem);
  min-height: clamp(5rem, 4.0769230769rem + 2.4615384615vw, 6.6rem);
  padding-inline: clamp(2.8rem, 2.6846153846rem + 0.3076923077vw, 3rem);
}
.article-convertion__wrap .button::after {
  content: "";
  display: block;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: clamp(3rem, 2.7692307692rem + 0.6153846154vw, 3.4rem) !important;
}
.article-convertion__wrap .button .button__text {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  line-height: 1.27;
  font-weight: var(--text-weight);
}
.article-convertion__wrap .button--consult::after {
  height: clamp(2rem, 1.7115384615rem + 0.7692307692vw, 2.5rem);
  background: url(../img/common/icon-detail-consult.svg) center/contain no-repeat;
}
.can-hover .article-convertion__wrap .button--consult:hover::after {
  background-image: url(../img/common/icon-detail-consult_over.svg);
}
.touch-primary .article-convertion__wrap .button--consult:active::after, .touch-primary .article-convertion__wrap .button--consult.is-tapped::after {
  background-image: url(../img/common/icon-detail-consult_over.svg);
}
.article-convertion__wrap .button--download::after {
  height: clamp(2.4rem, 2.2269230769rem + 0.4615384615vw, 2.7rem);
  background: url(../img/common/icon-detail-download.svg) center/contain no-repeat;
}
.can-hover .article-convertion__wrap .button--download:hover::after {
  background-image: url(../img/common/icon-detail-download_over.svg);
}
.touch-primary .article-convertion__wrap .button--download:active::after, .touch-primary .article-convertion__wrap .button--download.is-tapped::after {
  background-image: url(../img/common/icon-detail-download_over.svg);
}
.article-relation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-block: var(--block-margin) 0;
  position: relative;
  z-index: 50;
  background-color: var(--background-light-color);
  padding-block: 8rem clamp(7rem, 6.4230769231rem + 1.5384615385vw, 8rem);
  overflow: hidden;
}
.article-relation .article-title,
.article-relation .article-text {
  font-size: 1.3rem;
}
.article-relation .article-caption {
  font-size: 1.4rem;
}
.article-relation .article-relation__wrap {
  position: relative;
}
.article-relation .article-relation__wrap .swiper-button-prev,
.article-relation .article-relation__wrap .swiper-button-next {
  position: absolute;
  z-index: 10;
}
.can-hover .article-relation .article-relation__wrap .swiper-button-prev:hover,
.can-hover .article-relation .article-relation__wrap .swiper-button-next:hover {
  color: var(--color-white);
  background-color: var(--primary-color);
}
.touch-primary .article-relation .article-relation__wrap .swiper-button-prev:active, .touch-primary .article-relation .article-relation__wrap .swiper-button-prev.is-tapped,
.touch-primary .article-relation .article-relation__wrap .swiper-button-next:active,
.touch-primary .article-relation .article-relation__wrap .swiper-button-next.is-tapped {
  color: var(--color-white);
  background-color: var(--primary-color);
}
.article-relation .article-relation__wrap .swiper-button-prev.swiper-button-disabled,
.article-relation .article-relation__wrap .swiper-button-next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.article-relation .article-relation__wrap .swiper-button-prev {
  left: -3.8rem;
}
@media (max-width: 767.98px) {
  .article-relation .article-relation__wrap .swiper-button-prev {
    left: -5.6vw;
  }
}
.article-relation .article-relation__wrap .swiper-button-next {
  right: -3.8rem;
}
@media (max-width: 767.98px) {
  .article-relation .article-relation__wrap .swiper-button-next {
    right: -5.6vw;
  }
}
.article-relation .article-relation__wrap .swiper {
  overflow: visible;
}
@media (max-width: 767.98px) {
  .article-relation .article-relation__wrap .swiper {
    width: 78.6666666667vw;
  }
}
.article-relation .article-relation__wrap .swiper-wrapper {
  overflow: visible;
}
.article-relation--column, .article-relation--solution {
  padding-bottom: 8rem;
  margin-block: 0;
}
@media (max-width: 767.98px) {
  .article-relation--column, .article-relation--solution {
    padding-inline: var(--content-padding);
  }
}
.article-relation__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.6rem, 0.4846153846rem + 0.3076923077vw, 0.8rem);
  font-size: clamp(1.5rem, 1.0384615385rem + 1.2307692308vw, 2.3rem);
  margin-bottom: clamp(2rem, 1.4230769231rem + 1.5384615385vw, 3rem);
}
.article-relation__title::before {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 4px;
  background-color: var(--secondary-color);
}

#page-detail {
  --r-border-color: var(--color-richblack);
  --highlighter-color: #e7e7e7;
}
#page-detail.single-column, #page-detail.single-download {
  --r-border-color: var(--secondary-color);
  --highlighter-color: #def4f7;
}
#page-detail.single-works, #page-detail.single-case_study {
  --r-border-color: var(--primary-light-color);
  --highlighter-color: #fdeeec;
}
#page-detail .rich-edit--border {
  border-bottom: 2px solid var(--r-border-color);
}
#page-detail .rich-edit--highlighter {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, var(--highlighter-color)));
  background: linear-gradient(transparent 60%, var(--highlighter-color) 60%);
}

.project-members {
  margin-block: var(--block-margin);
}
.project-members__title {
  font-size: clamp(1.5rem, 1.3269230769rem + 0.4615384615vw, 1.8rem);
  margin-bottom: 2rem;
}
.project-members__title::before {
  content: "";
  display: inline-block;
  width: 1.4rem;
  aspect-ratio: 1/1;
  border-radius: 50vw;
  margin-right: 0.5em;
  background-color: var(--primary-light-color);
}
.project-members__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1.6rem, 1.1384615385rem + 1.2307692308vw, 2.4rem) clamp(1.6rem, 1.3692307692rem + 0.6153846154vw, 2rem);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: clamp(2rem, 0.8461538462rem + 3.0769230769vw, 4rem) clamp(2rem, 0.8461538462rem + 3.0769230769vw, 4rem) clamp(3rem, 2.4230769231rem + 1.5384615385vw, 4rem);
}
@media (max-width: 767.98px) {
  .project-members__item {
    -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;
  }
}
.project-members__item:nth-of-type(n + 1) {
  margin-bottom: clamp(2rem, 1.4230769231rem + 1.5384615385vw, 3rem);
}
.project-members__photo {
  width: 10rem;
  height: 10rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.project-members__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767.98px) {
  .project-members__photo {
    margin-bottom: 1.0666666667vw;
  }
}
.project-members__info {
  width: clamp(60rem, 55.9615384615rem + 10.7692307692vw, 67rem);
}
@media (max-width: 767.98px) {
  .project-members__info {
    width: 100%;
  }
}
.project-members__name {
  font-size: clamp(1.5rem, 1.2115384615rem + 0.7692307692vw, 2rem);
  margin-bottom: 0.2rem;
  font-weight: var(--text-weight-m);
}
.project-members__name .kana {
  font-weight: var(--text-weight);
}
.project-members__affiliation {
  font-size: clamp(1.3rem, 1.1269230769rem + 0.4615384615vw, 1.6rem);
}
@media (max-width: 767.98px) {
  .project-members__affiliation {
    line-height: 1.5;
  }
}
.project-members__profile {
  font-size: clamp(1.3rem, 1.1269230769rem + 0.4615384615vw, 1.6rem);
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  .project-members__profile {
    line-height: 1.78;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
  }
}

.archive__intro {
  margin-block: var(--container-margin) var(--lead-margin);
}
.archive__desc {
  font-size: clamp(1.4rem, 0.2046692607rem + 1.5564202335vw, 1.8rem);
  line-height: 2;
  font-weight: var(--text-weight-xm);
  margin-block: clamp(-0.525rem, 0.5956225681rem + -1.4591439689vw, -0.9rem);
}
@media (max-width: 767.98px) {
  .archive__desc {
    line-height: 1.75;
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(2rem, 1.3076923077rem + 1.8461538462vw, 3.2rem);
  margin-block: clamp(4rem, 2.2692307692rem + 4.6153846154vw, 7rem);
  font-size: clamp(1.6rem, 1.4846153846rem + 0.3076923077vw, 1.8rem);
}
.pagination .page-numbers {
  line-height: 1;
  border-radius: 50%;
  padding-bottom: 1px;
  padding-left: 1px;
  color: var(--text-gray);
}
.pagination .page-numbers.next, .pagination .page-numbers.prev {
  font-size: 0;
}
.pagination .page-numbers.next::after, .pagination .page-numbers.prev::after {
  content: "\f053";
  font-family: var(--font-icon);
  font-size: clamp(1.6rem, 1.3692307692rem + 0.6153846154vw, 2rem);
  color: var(--text-color);
  line-height: 1;
  font-weight: 900;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: translate var(--trd-duration) var(--trd-timing);
  transition: translate var(--trd-duration) var(--trd-timing);
  color: var(--text-gray);
}
.pagination .page-numbers.next::after {
  content: "\f054";
}
.pagination .current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-white);
  width: clamp(2.5rem, 2.0961538462rem + 1.0769230769vw, 3.2rem);
  height: clamp(2.5rem, 2.0961538462rem + 1.0769230769vw, 3.2rem);
  background-color: var(--text-gray);
}
.pagination .is-hidden {
  display: none;
}

/* ユーティリティクラス（JSで制御） */
.is-open {
  /* JSで付与/除去 */
}

.footer-only {
  display: none;
}

/* -------------------------------------- */
/* 1. ハンバーガーボタンの基本スタイル */
/* -------------------------------------- */
.nav-toggle {
  display: none;
  z-index: 1000;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  width: 22px;
  height: 22px;
  aspect-ratio: 1/1;
  position: relative;
}
.nav-toggle__icon {
  display: block;
  height: 2px;
  background-color: var(--primary-color);
  position: relative;
  -webkit-transition: -webkit-transform var(--trd-duration) ease;
  transition: -webkit-transform var(--trd-duration) ease;
  transition: transform var(--trd-duration) ease;
  transition: transform var(--trd-duration) ease, -webkit-transform var(--trd-duration) ease;
  width: 100%;
  position: absolute;
}
.nav-toggle__icon:nth-child(1) {
  top: calc(20% - 0.5px);
}
.nav-toggle__icon:nth-child(2) {
  top: calc(50% - 0.5px);
}
.nav-toggle__icon:nth-child(3) {
  top: calc(80% - 0.5px);
}
.nav-toggle.is-open .nav-toggle__icon:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.nav-toggle.is-open .nav-toggle__icon:nth-child(2) {
  display: none;
}
.nav-toggle.is-open .nav-toggle__icon:nth-child(3) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

/* -------------------------------------- */
/* 2. ヘッダー全体のスタイル (PCデフォルト) */
/* -------------------------------------- */
.header {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: var(--header-index);
}
.header__bar {
  border-top: 4px solid var(--primary-color);
  height: var(--header-height);
  background-color: var(--color-white);
}
.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
}
.header__logo {
  width: min(20%, 147px);
  padding-block: clamp(1rem, 1rem + 0vw, 1rem);
  margin-right: auto;
}
@media (min-width: 1025px) {
  .header__logo {
    width: 104px;
  }
}
.header__logo a {
  width: 100%;
  display: block;
}
.header__logo img {
  margin: 0;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: static;
  z-index: 10;
}
.header__nav .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.8rem;
  height: 100%;
}
@media (max-width: 767.98px) {
  .header__nav .nav {
    position: relative;
    inset: 0;
  }
}
.header__nav .nav-container:not(.header__others) {
  margin-right: clamp(0.8rem, 0.3384615385rem + 1.2307692308vw, 1.6rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 2rem;
}
.header__nav .nav-container:not(.header__others)::after {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  background: var(--border-color);
  margin-left: clamp(1.5rem, 1.3846153846rem + 0.3076923077vw, 1.7rem);
}
.header__nav .nav__block {
  height: 100%;
}
.header__nav .nav__title {
  height: 100%;
  font-weight: 500;
}
.header__nav .nav__title-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1025px) {
  .header__nav .nav__title-link {
    font-size: 1.3rem;
  }
}
.can-hover .header__nav .nav__title-link:hover {
  color: var(--primary-color);
}
.touch-primary .header__nav .nav__title-link:active, .touch-primary .header__nav .nav__title-link.is-tapped {
  color: var(--primary-color);
}
.header__nav .nav__list {
  height: auto;
}
.header__nav .nav__summarize {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.8rem;
}
@media (max-width: 1210px) {
  .header__nav .nav__summarize {
    display: block;
  }
}
.header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  gap: 0.8rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .header__contact {
    gap: clamp(1rem, 0.7115384615rem + 0.7692307692vw, 1.5rem);
  }
}
.header__contact .button {
  min-width: 16.5rem;
  min-height: 4.4rem;
  padding: 0.3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: clamp(1rem, 0.8269230769rem + 0.4615384615vw, 1.3rem);
}
.header__contact .button::after {
  display: none;
}
.header__contact .button .button__text {
  padding-inline: 0;
}
.header__others {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  gap: 2rem;
}
.header__others .header__other-item {
  font-weight: 500;
}
.header__others .header__other-link {
  height: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1211px) {
  .header__others .nav__list-wrapper {
    display: none;
  }
}
.header__others.nav-container {
  margin-right: 3rem;
  padding-right: 0;
}
.header__others.nav-container::before {
  display: none;
}

.nav-sp-only {
  display: block;
}
@media (min-width: 1211px) {
  .nav-sp-only {
    display: none;
  }
}

/* -------------------------------------- */
/* 3. 文字が入らなくなる (max-width: 1024px) からのスタイル */
/* -------------------------------------- */
@media (max-width: 1210px) {
  .header {
    border-width: 3px;
  }
  .header__logo {
    width: min(20%, 104px);
    padding: 0;
  }
  .header .nav-toggle {
    display: block;
    margin-left: 15px;
    z-index: 1001;
  }
  .header__nav {
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 4rem 2rem;
    position: fixed;
    top: var(--header-height);
    right: 0;
    width: min(100%, 700px);
    height: calc(100vh - var(--header-height));
    overflow-y: auto;
    background-color: var(--background-light-color);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform var(--trd-duration) ease-out;
    transition: -webkit-transform var(--trd-duration) ease-out;
    transition: transform var(--trd-duration) ease-out;
    transition: transform var(--trd-duration) ease-out, -webkit-transform var(--trd-duration) ease-out;
    z-index: 900;
  }
  .header__nav.is-open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .header .nav-container, .header .header__others {
    display: none;
  }
  .header .nav-container:not(.header__others)::after {
    display: none;
  }
  .header .nav-container__title {
    text-align: center;
    margin-bottom: 3rem;
  }
  .header .nav-container__title_main {
    font-family: var(--font-en);
    font-size: 3.6rem;
    font-weight: var(--text-weight-s);
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: normal;
  }
  .header .nav-container__title_sub {
    font-size: 1.2rem;
    font-weight: var(--text-weight-m);
    margin-top: 0.5rem;
  }
  .header__contact {
    display: none;
  }
  .header__nav.is-open .nav-container, .header__nav.is-open .header__others {
    display: block;
  }
  .header__nav.is-open__contact {
    display: none;
  }
  .header__nav.is-open .nav-container {
    margin-right: 0;
    padding-right: 0;
  }
  .header__nav.is-open .nav-container::before {
    display: none;
  }
  .header__nav.is-open .nav {
    display: block;
    background-color: transparent;
  }
  .header__nav.is-open .nav__block {
    height: auto;
  }
  .header__nav.is-open .nav__title {
    height: auto;
    border-top: 1px solid var(--border-color);
  }
  .header__nav.is-open .nav__title-link {
    padding: 2rem 1.6rem 2rem 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
    font-size: clamp(1.2rem, 1.0846153846rem + 0.3076923077vw, 1.4rem);
    font-weight: var(--text-weight-m);
  }
  .header__nav.is-open .nav__title-link::after {
    content: "\f054";
    margin-left: auto;
    font-family: var(--font-icon);
    line-height: 1;
    font-weight: 900;
    color: var(--primary-color);
    font-size: 1.3rem;
    -webkit-transition: -webkit-transform ease var(--trd-duration);
    transition: -webkit-transform ease var(--trd-duration);
    transition: transform ease var(--trd-duration);
    transition: transform ease var(--trd-duration), -webkit-transform ease var(--trd-duration);
  }
  .header__nav.is-open .nav__title.js-accordion-trigger .nav__title-link::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .header__nav.is-open .nav__title.is-accordion-open .nav__title-link::after {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .header__nav.is-open .nav .has-mega-menu .nav__list-wrapper {
    height: 0;
    overflow: hidden;
  }
  .header__nav.is-open .nav .has-mega-menu .nav__title-link {
    pointer-events: none;
  }
  .header__nav.is-open .nav .js-accordion-trigger {
    cursor: pointer;
  }
  .header__nav.is-open .mega-menu__inner {
    display: block;
    padding: 0 2rem 2rem 2.5rem;
    width: 100%;
  }
  .header__nav.is-open .mega-menu__list-area {
    display: block;
  }
  .header__nav.is-open .header__others {
    display: block;
    height: auto;
    margin-right: 0;
  }
  .mega-menu__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.2rem;
    font-weight: normal;
  }
  .mega-menu__item:first-child {
    font-weight: var(--text-weight-m);
  }
  .mega-menu__item:not(:first-child) {
    padding-left: 1.5rem;
  }
  .mega-menu__item:not(:last-child) {
    margin-bottom: 1.4rem;
  }
  .mega-menu__item::before {
    content: "\f054";
    font-family: var(--font-icon);
    line-height: 1;
    font-weight: 900;
    color: var(--primary-color);
    font-size: 1rem;
    margin-right: 1rem;
  }
  .mega-menu__link {
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
  }
  .can-hover .mega-menu__link:hover {
    color: var(--primary-color);
  }
  .touch-primary .mega-menu__link:active, .touch-primary .mega-menu__link.is-tapped {
    color: var(--primary-color);
  }
  .js-accordion-trigger {
    cursor: pointer;
    position: relative;
  }
  .drawer-menu {
    display: none;
  }
}
/* -------------------------------------- */
/* 4. SPのみ (max-width: 767px) のスタイル（個別調整と全画面化） */
/* -------------------------------------- */
@media (max-width: 767px) {
  .header {
    border-top-width: 0.8vw;
  }
  .header__logo {
    width: 17.6vw;
  }
}
/* -------------------------------------- */
/* 5. PC時メガメニューのホバースタイル (min-width: 1025px) */
/* -------------------------------------- */
@media (min-width: 1211px) {
  .nav__title-link {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .has-mega-menu {
    position: static;
  }
  .mega-menu {
    display: none;
  }
  .drawer-menu {
    position: fixed;
    top: var(--header-height);
    left: 50%;
    -webkit-transform: translate(-50%, -150%);
            transform: translate(-50%, -150%);
    width: 100vw;
    pointer-events: none;
    -webkit-transition: var(--trd-duration) ease;
    transition: var(--trd-duration) ease;
    z-index: -1;
    background: rgba(255, 255, 255, 0.95);
  }
  .drawer-menu.is-active {
    pointer-events: auto;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .drawer-menu.is-active .drawer-menu__title, .drawer-menu.is-active .drawer-menu__list-area {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .drawer-menu__inner {
    width: min(90%, 810px);
    margin: clamp(3rem, 2.7115384615rem + 0.7692307692vw, 3.5rem) auto;
  }
  .drawer-menu__title {
    font-size: clamp(1.6rem, 1.4846153846rem + 0.3076923077vw, 1.8rem);
    font-weight: var(--text-weight-m);
    line-height: 1;
    margin-bottom: clamp(2rem, 1.7115384615rem + 0.7692307692vw, 2.5rem);
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
    transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .drawer-menu__title a {
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
  }
  .drawer-menu__title a::before {
    content: "\f054";
    margin-right: 8px;
    font-family: var(--font-icon);
    line-height: 1;
    font-weight: 900;
    color: var(--primary-color);
    font-size: 1.7rem;
  }
  .can-hover .drawer-menu__title a:hover {
    color: var(--primary-color);
  }
  .touch-primary .drawer-menu__title a:active, .touch-primary .drawer-menu__title a.is-tapped {
    color: var(--primary-color);
  }
  .drawer-menu__list-area {
    display: -ms-grid;
    display: grid;
    grid-auto-flow: column;
    -ms-grid-columns: auto 5.5rem auto 5.5rem auto;
    grid-template-columns: repeat(3, auto);
    -ms-grid-rows: auto 1.2rem auto 1.2rem auto;
    grid-template-rows: repeat(3, auto);
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 1.2rem 5.5rem;
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
    transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
    -webkit-transition-delay: 0.35s;
            transition-delay: 0.35s;
  }
  .drawer-menu__list-area > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .drawer-menu__list-area > *:nth-child(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .drawer-menu__list-area > *:nth-child(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .drawer-menu__list-area > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .drawer-menu__list-area > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .drawer-menu__list-area > *:nth-child(6) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
  .drawer-menu__list-area > *:nth-child(7) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .drawer-menu__list-area > *:nth-child(8) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
  }
  .drawer-menu__list-area > *:nth-child(9) {
    -ms-grid-row: 5;
    -ms-grid-column: 5;
  }
  .drawer-menu__link {
    font-weight: var(--text-weight);
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
  }
  .can-hover .drawer-menu__link:hover {
    color: var(--primary-color);
  }
  .touch-primary .drawer-menu__link:active, .touch-primary .drawer-menu__link.is-tapped {
    color: var(--primary-color);
  }
  .drawer-menu__link::before {
    content: "\f054";
    margin-right: 8px;
    font-family: var(--font-icon);
    line-height: 1;
    font-weight: 900;
    color: var(--primary-color);
    font-size: 1.4rem;
  }
}
.footer {
  background-color: var(--background-dark-color);
  color: var(--color-white);
  --text-color: var(--color-white);
  padding: 0;
  overflow: hidden;
}
.footer a {
  color: var(--color-white);
  font-size: 1.3rem;
}
@media (max-width: 1024px) {
  .footer .pc_only {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .footer .pc {
    display: none;
  }
}
@media (min-width: 1025px) {
  .footer .sp_only {
    display: none;
  }
}
.footer-conversion {
  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;
  gap: clamp(2rem, 1.4230769231rem + 1.5384615385vw, 3rem);
  padding-block: clamp(10rem, 9.4230769231rem + 1.5384615385vw, 11rem);
  background: var(--background-light-color);
}
@media (max-width: 767.98px) {
  .footer-conversion {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-conversion .button {
  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;
  gap: 0;
  font-size: clamp(1.4rem, 1.1692307692rem + 0.6153846154vw, 1.8rem);
  line-height: 1.27;
  text-align: center;
  width: clamp(25rem, 16.3461538462rem + 23.0769230769vw, 40rem);
  min-height: clamp(5rem, 3.6153846154rem + 3.6923076923vw, 7.4rem);
  padding-inline: clamp(2.5rem, 2.2115384615rem + 0.7692307692vw, 3rem);
}
@media (max-width: 767.98px) {
  .footer-conversion .button {
    min-width: auto;
  }
}
.footer-conversion .button::after {
  content: "";
  display: block;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: clamp(3rem, 2.7692307692rem + 0.6153846154vw, 3.4rem);
}
.footer-conversion .button .button__text {
  padding-right: 1em;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 767.98px) {
  .footer-conversion .button .button__text {
    padding-right: 0.8em;
  }
}
.footer-conversion .button--consult::after {
  height: clamp(2.2rem, 2.0269230769rem + 0.4615384615vw, 2.5rem);
  background: url(../img/common/icon-detail-consult.svg) center/contain no-repeat;
}
.can-hover .footer-conversion .button--consult:hover::after {
  background-image: url(../img/common/icon-detail-consult_over.svg);
}
.touch-primary .footer-conversion .button--consult:active::after, .touch-primary .footer-conversion .button--consult.is-tapped::after {
  background-image: url(../img/common/icon-detail-consult_over.svg);
}
.footer-conversion .button--download::after {
  height: clamp(2.6rem, 2.5423076923rem + 0.1538461538vw, 2.7rem);
  background: url(../img/common/icon-detail-download.svg) left center/contain no-repeat;
}
@media (max-width: 767.98px) {
  .footer-conversion .button--download::after {
    background-position: left center;
  }
}
.can-hover .footer-conversion .button--download:hover::after {
  background-image: url(../img/common/icon-detail-download_over.svg);
}
.touch-primary .footer-conversion .button--download:active::after, .touch-primary .footer-conversion .button--download.is-tapped::after {
  background-image: url(../img/common/icon-detail-download_over.svg);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footer .container {
    padding-inline: clamp(4rem, 2.8461538462rem + 3.0769230769vw, 6rem);
  }
}
.footer__logo {
  max-width: 13.5rem;
  line-height: 1;
  margin-right: 2rem;
}
.footer__logo h1 {
  width: min(100%, 104px);
}
@media (min-width: 1025px) {
  .footer__logo h1 {
    margin-bottom: 2.4rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footer__logo h1 {
    margin-bottom: 2.4rem;
  }
}
@media (max-width: 767.98px) {
  .footer__logo {
    width: 29.0666666667vw;
    margin-inline: auto;
    margin-bottom: 13.3333333333vw;
  }
  .footer__logo h1 {
    width: 100%;
  }
}
.footer__logo a, .footer__logo img {
  width: 100%;
}
.footer__en {
  width: 10rem;
}
@media (max-width: 767.98px) {
  .footer__en {
    width: auto;
    line-height: 1;
  }
}
.footer__en--link {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #373737;
  border-radius: var(--radius-button);
  padding-block: 1.3rem;
}
@media (hover: hover) {
  .footer__en--link {
    -webkit-transition: var(--trd-duration) ease;
    transition: var(--trd-duration) ease;
  }
}
.can-hover .footer__en--link:hover {
  background-color: var(--primary-color);
}
.touch-primary .footer__en--link:active {
  background-color: transparent;
  color: var(--primary-color);
}
@media (max-width: 767.98px) {
  .footer__en--link {
    width: 29.3333333333vw;
    padding: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    background-color: transparent;
  }
}
.footer__en--link::before {
  content: "";
  width: 1em;
  aspect-ratio: 1/1;
  background: url(../img/common/icon-globe.svg) center/contain no-repeat;
  margin-right: 0.5rem;
}
@media (max-width: 767.98px) {
  .footer__en--link::before {
    margin-right: 8px;
  }
}
.footer__en.sp_only {
  display: none;
}
@media (max-width: 767.98px) {
  .footer__en.sp_only {
    display: block;
  }
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5rem;
  margin-bottom: 1.4rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footer__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 767.98px) {
  .footer__nav {
    display: block;
    margin-bottom: 8vw;
  }
}
.footer__nav_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-left: auto;
  width: calc(100% - min(19.84vw, 254px));
}
@media (max-width: 767.98px) {
  .footer__nav_wrap {
    display: block;
    margin-left: 0;
    width: 100%;
  }
}
.footer__nav_list {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -ms-grid-rows: 1fr 1.3rem 1fr 1.3rem 1fr 1.3rem 1fr;
  grid-template-rows: repeat(4, 1fr);
  -ms-grid-columns: 1fr 1em 1fr 1em 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem 1em;
  width: 50%;
  margin-left: auto;
}
.footer__nav_list > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.footer__nav_list > *:nth-child(2) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.footer__nav_list > *:nth-child(3) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
.footer__nav_list > *:nth-child(4) {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
}
.footer__nav_list > *:nth-child(5) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.footer__nav_list > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.footer__nav_list > *:nth-child(7) {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
}
.footer__nav_list > *:nth-child(8) {
  -ms-grid-row: 7;
  -ms-grid-column: 3;
}
.footer__nav_list > *:nth-child(9) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.footer__nav_list > *:nth-child(10) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
.footer__nav_list > *:nth-child(11) {
  -ms-grid-row: 5;
  -ms-grid-column: 5;
}
.footer__nav_list > *:nth-child(12) {
  -ms-grid-row: 7;
  -ms-grid-column: 5;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footer__nav_list {
    width: 66.5%;
  }
}
@media (max-width: 767.98px) {
  .footer__nav_list {
    grid-auto-flow: row;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-columns: 1fr 0 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 6.6666666667vw 0;
    width: 100%;
  }
  .footer__nav_list > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .footer__nav_list > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}
.footer__nav_item {
  line-height: 1;
}
.footer__nav_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (hover: hover) {
  .footer__nav_link {
    -webkit-transition: var(--trd-duration) ease;
    transition: var(--trd-duration) ease;
  }
}
.can-hover .footer__nav_link:hover {
  color: var(--primary-color);
}
.touch-primary .footer__nav_link:active, .touch-primary .footer__nav_link.is-tapped {
  color: var(--primary-color);
}
.footer__nav_link::before {
  content: "\f054";
  margin-right: 8px;
  font-family: var(--font-icon);
  line-height: 1;
  font-weight: 900;
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 3px;
}
.footer__links {
  border-left: 1px solid var(--border-footer-color);
  padding-inline: clamp(4rem, 3.4230769231rem + 1.5384615385vw, 5rem) clamp(4rem, 2.8461538462rem + 3.0769230769vw, 6rem);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footer__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem 4.5%;
    width: 100%;
    padding-inline: 0;
    border-left: none;
    border-top: 1px solid var(--border-footer-color);
    margin-top: 4rem;
    padding-top: 4rem;
  }
}
@media (max-width: 767.98px) {
  .footer__links {
    padding-inline: 0;
    border-left: none;
    border-top: 1px solid var(--border-footer-color);
    margin-top: 10.6666666667vw;
    padding-top: 8vw;
  }
}
.footer__links a {
  color: var(--text-footer);
  font-size: 1.1rem;
}
@media (hover: hover) {
  .footer__links a {
    -webkit-transition: var(--trd-duration) ease;
    transition: var(--trd-duration) ease;
  }
}
.can-hover .footer__links a:hover {
  color: var(--primary-color);
}
.touch-primary .footer__links a:active, .touch-primary .footer__links a.is-tapped {
  color: var(--primary-color);
}
.footer__link-item {
  font-size: 1.1rem;
  line-height: 1;
  margin-bottom: 0.1rem;
}
.footer__link-item:not(:last-child) {
  margin-bottom: 1.2rem;
}
.footer__copyright {
  display: block;
  width: 100%;
  padding-block: 2.6rem 3rem;
  margin-top: clamp(7rem, 5.2692307692rem + 4.6153846154vw, 10rem);
  border-top: solid 1px var(--border-footer-color);
  color: var(--text-footer);
  font-size: 1rem !important;
  letter-spacing: 0.04em;
  position: relative;
}
.footer-pagetop {
  position: relative;
  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;
  width: 5.6rem;
  height: 5.6rem;
  aspect-ratio: 1/1;
  margin-left: auto;
  border-radius: var(--radius-button);
  border: 2px solid var(--color-white);
  background-color: rgba(35, 24, 21, 0.7);
  opacity: 0;
  z-index: 2;
}
@media (hover: hover) {
  .footer-pagetop {
    -webkit-transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
.footer-pagetop.is-show {
  opacity: 1;
}
@media (min-width: 1025px) {
  .footer-pagetop {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
  }
}
@media (max-width: 767.98px) {
  .footer-pagetop {
    display: none;
    pointer-events: none;
    width: 11.7333333333vw;
    height: 11.7333333333vw;
    border-width: 1px;
  }
}
.footer-pagetop::after {
  content: "\f106";
  font-family: var(--font-icon);
  line-height: 1;
  font-weight: 900;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  -webkit-transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .footer-pagetop:not(:is([class*="--disabled"], [class*=is-disabled], [disabled])):hover {
    border-color: var(--primary-color);
  }
  .footer-pagetop:not(:is([class*="--disabled"], [class*=is-disabled], [disabled])):hover::after {
    color: var(--primary-color);
  }
}

.fixed-conversion {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: var(--footer-index);
  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;
  gap: 1.8666666667vw;
  padding: 3.2vw 2.6666666667vw;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
}
@media (min-width: 1025px) {
  .fixed-conversion {
    display: none !important;
  }
}
.fixed-conversion .button {
  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;
  font-size: 3.2vw;
  line-height: 1.27;
  text-align: center;
  width: 100%;
  min-width: auto;
  padding: 2.6666666667vw 3.7333333333vw;
}
.fixed-conversion .button::after {
  content: "";
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.fixed-conversion .button::before {
  display: none;
}
.fixed-conversion .button--consult::after {
  width: 5.3333333333vw;
  height: 3.4666666667vw;
  background: url(../img/common/icon-detail-consult.svg) center/contain no-repeat;
}
.can-hover .fixed-conversion .button--consult:hover {
  color: var(--primary-color);
  background-color: var(--color-white);
}
.can-hover .fixed-conversion .button--consult:hover::after {
  background-image: url(../img/common/icon-detail-consult_over.svg);
}
.can-hover .fixed-conversion .button--consult:hover .button__text {
  color: var(--primary-color);
}
.touch-primary .fixed-conversion .button--consult:active, .touch-primary .fixed-conversion .button--consult.is-tapped {
  color: var(--primary-color);
  background-color: var(--color-white);
}
.touch-primary .fixed-conversion .button--consult:active::after, .touch-primary .fixed-conversion .button--consult.is-tapped::after {
  background-image: url(../img/common/icon-detail-consult_over.svg);
}
.touch-primary .fixed-conversion .button--consult:active .button__text, .touch-primary .fixed-conversion .button--consult.is-tapped .button__text {
  color: var(--primary-color);
}
.fixed-conversion .button--download {
  letter-spacing: normal;
}
.fixed-conversion .button--download::after {
  width: 3.2vw;
  height: 3.7333333333vw;
  background: url(../img/common/icon-detail-download.svg) center/contain no-repeat;
}
.can-hover .fixed-conversion .button--download:hover {
  color: var(--secondary-color);
  background-color: var(--color-white);
}
.can-hover .fixed-conversion .button--download:hover::after {
  background-image: url(../img/common/icon-detail-download_over.svg);
}
.can-hover .fixed-conversion .button--download:hover .button__text {
  color: var(--secondary-color);
}
.touch-primary .fixed-conversion .button--download:active, .touch-primary .fixed-conversion .button--download.is-tapped {
  color: var(--secondary-color);
  background-color: var(--color-white);
}
.touch-primary .fixed-conversion .button--download:active::after, .touch-primary .fixed-conversion .button--download.is-tapped::after {
  background-image: url(../img/common/icon-detail-download_over.svg);
}
.touch-primary .fixed-conversion .button--download:active .button__text, .touch-primary .fixed-conversion .button--download.is-tapped .button__text {
  color: var(--secondary-color);
}
.fixed-conversion .button__text {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  text-align: center;
}

#page-index #wrapper {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
#page-index.is-loaded #wrapper {
  opacity: 1;
}
#page-index .index__splash {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: var(--primary-color);
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s ease;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
#page-index .index__splash.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#page-index .index__splash__inner {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: 0.6s ease 0.1s;
  transition: 0.6s ease 0.1s;
}
#page-index .index__splash__inner.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
#page-index .index__splash__inner.is-fade-out .splash-logo-video {
  opacity: 0;
  -webkit-transform: scale(2);
          transform: scale(2);
  -webkit-transition: opacity 0.7s ease, -webkit-transform 1.5s ease;
  transition: opacity 0.7s ease, -webkit-transform 1.5s ease;
  transition: opacity 0.7s ease, transform 1.5s ease;
  transition: opacity 0.7s ease, transform 1.5s ease, -webkit-transform 1.5s ease;
}
#page-index .index__splash.is-hide {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
#page-index .index__splash .splash-logo-video {
  width: clamp(20rem, 14.2307692308rem + 15.3846153846vw, 30rem);
  max-width: 95vw;
  aspect-ratio: 650/230;
  position: relative;
}
#page-index section {
  margin-block: 0;
}
@media (max-width: 767.98px) {
  #page-index .pc_only {
    display: none;
  }
}
#page-index .sp_only {
  display: none;
}
@media (max-width: 767.98px) {
  #page-index .sp_only {
    display: block;
  }
}
#page-index .index-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1rem, 0.8846153846rem + 0.3076923077vw, 1.2rem);
  margin-bottom: 3rem;
}
@media (max-width: 767.98px) {
  #page-index .index-title {
    margin-bottom: 10.6666666667vw;
  }
}
#page-index .index-title--text {
  margin-bottom: 0;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
#page-index .index-title__en {
  font-family: var(--font-en);
  font-size: clamp(3.6rem, 2.6769230769rem + 2.4615384615vw, 5.2rem);
  font-weight: var(--text-weight-s);
  color: var(--primary-color);
  line-height: 1;
  letter-spacing: normal;
}
#page-index .index-title__ja {
  font-size: clamp(1.4rem, 1.3423076923rem + 0.1538461538vw, 1.5rem);
  line-height: normal;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  #page-index .index-title__ja {
    font-weight: 500;
  }
}
#page-index .index-title__ja--sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(1rem, 0.8846153846rem + 0.3076923077vw, 1.2rem);
  margin-bottom: 0.3rem;
}
@media (max-width: 767.98px) {
  #page-index .index-title__ja--sub {
    margin-bottom: 0.1rem;
  }
}
#page-index .index-title__ja--sub::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  aspect-ratio: 1/1;
  border-radius: 50vw;
  margin-right: 0.5em;
  background-color: var(--primary-color);
}
#page-index .index-title-button {
  margin-left: auto;
  min-width: min(100%, 17.6rem);
}
@media (max-width: 767.98px) {
  #page-index .index-title-button {
    text-align: center;
    margin-top: 10.6666666667vw;
  }
}
#page-index .index-title-button .button {
  min-width: min(100%, clamp(16.5rem, 15.8653846154rem + 1.6923076923vw, 17.6rem)) !important;
  min-height: clamp(4rem, 3.4230769231rem + 1.5384615385vw, 5rem);
}
#page-index .index-title-button .button:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, #page-index .index-title-button .button:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before {
  -webkit-transform: translateX(1.9em);
          transform: translateX(1.9em);
}
@media (max-width: 767.98px) {
  #page-index .index-title-button .button:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::after, #page-index .index-title-button .button:hover:not(.button--more):not(.button--download):not(.button--consult) .button__arrow::before {
    -webkit-transform: translateX(2.4em);
            transform: translateX(2.4em);
  }
}
#page-index .index-container {
  width: var(--content-wrap-width);
  padding-inline: var(--content-padding);
  margin: 0 auto;
}
@media (max-width: 1024px) {
  #page-index .index-container {
    width: 100%;
    padding-left: clamp(2rem, 0.8461538462rem + 3.0769230769vw, 4rem);
    padding-right: clamp(2rem, 0.8461538462rem + 3.0769230769vw, 4rem);
  }
}
#page-index .section-mainvisual {
  margin-top: 0;
}
#page-index .slide-mainvisual {
  width: 100%;
  position: relative;
}
#page-index .slide-mainvisual .swiper-wrapper {
  -webkit-transition-timing-function: cubic-bezier(0.12 0.95, 0.2, 1);
          transition-timing-function: cubic-bezier(0.12 0.95, 0.2, 1);
}
#page-index .slide-mainvisual .swiper-slide {
  width: 95%;
  max-width: 1200px;
  aspect-ratio: 600/217;
  overflow: hidden;
  position: relative;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #page-index .slide-mainvisual .swiper-slide {
    width: 90%;
  }
}
@media (max-width: 767.98px) {
  #page-index .slide-mainvisual .swiper-slide {
    aspect-ratio: 335/450;
    width: 85%;
  }
}
#page-index .slide-mainvisual .swiper-slide .slide-links {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.85s ease;
  transition: -webkit-transform 0.85s ease;
  transition: transform 0.85s ease;
  transition: transform 0.85s ease, -webkit-transform 0.85s ease;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  border-radius: var(--radius-large);
  pointer-events: none;
  position: relative;
}
#page-index .slide-mainvisual .swiper-slide .slide-links:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.85s ease;
  transition: opacity 0.85s ease;
  background-color: #000;
  opacity: 0.5;
  pointer-events: none;
}
.can-hover #page-index .slide-mainvisual .swiper-slide .slide-links:hover .slide-image img {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.touch-primary #page-index .slide-mainvisual .swiper-slide .slide-links:active .slide-image img, .touch-primary #page-index .slide-mainvisual .swiper-slide .slide-links.is-tapped .slide-image img {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
#page-index .slide-mainvisual .swiper-slide-prev .slide-links {
  -webkit-transform: scale(0.9) translateX(27px);
          transform: scale(0.9) translateX(27px);
}
@media (min-width: 768px) and (max-width: 1024px) {
  #page-index .slide-mainvisual .swiper-slide-prev .slide-links {
    -webkit-transform: scale(0.8) translateX(9.5%);
            transform: scale(0.8) translateX(9.5%);
  }
}
@media (max-width: 767.98px) {
  #page-index .slide-mainvisual .swiper-slide-prev .slide-links {
    -webkit-transform: scale(0.8) translateX(5.5%);
            transform: scale(0.8) translateX(5.5%);
  }
}
#page-index .slide-mainvisual .swiper-slide-next .slide-links {
  -webkit-transform: scale(0.9) translateX(-27px);
          transform: scale(0.9) translateX(-27px);
}
@media (min-width: 768px) and (max-width: 1024px) {
  #page-index .slide-mainvisual .swiper-slide-next .slide-links {
    -webkit-transform: scale(0.8) translateX(-9.5%);
            transform: scale(0.8) translateX(-9.5%);
  }
}
@media (max-width: 767.98px) {
  #page-index .slide-mainvisual .swiper-slide-next .slide-links {
    -webkit-transform: scale(0.8) translateX(-5.5%);
            transform: scale(0.8) translateX(-5.5%);
  }
}
#page-index .slide-mainvisual .swiper-slide.is-center .slide-links {
  -webkit-transform: scale(1);
          transform: scale(1);
  pointer-events: auto;
}
#page-index .slide-mainvisual .swiper-slide.is-center .slide-links:after {
  opacity: 0;
}
#page-index .slide-mainvisual .swiper-slide .slide-image {
  width: 100%;
  height: 100%;
  z-index: 0;
}
#page-index .slide-mainvisual .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 1s var(--trd-timing);
  transition: -webkit-transform 1s var(--trd-timing);
  transition: transform 1s var(--trd-timing);
  transition: transform 1s var(--trd-timing), -webkit-transform 1s var(--trd-timing);
}
#page-index .slide-mainvisual .swiper-button-wrap {
  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;
  max-width: 1200px;
  margin-inline: auto;
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 767.98px) {
  #page-index .slide-mainvisual .swiper-button-wrap {
    margin-top: 4.8vw;
    gap: 0.8rem;
  }
}
#page-index .slide-mainvisual .swiper-button-wrap .swiper-button-next,
#page-index .slide-mainvisual .swiper-button-wrap .swiper-button-prev,
#page-index .slide-mainvisual .swiper-button-wrap .swiper-pagination {
  position: initial;
  -webkit-transform: initial;
          transform: initial;
}
@media (max-width: 767.98px) {
  #page-index .slide-mainvisual .swiper-button-wrap .swiper-button-next,
  #page-index .slide-mainvisual .swiper-button-wrap .swiper-button-prev {
    width: 2.8rem;
    height: 2.8rem;
  }
  #page-index .slide-mainvisual .swiper-button-wrap .swiper-button-next::after,
  #page-index .slide-mainvisual .swiper-button-wrap .swiper-button-prev::after {
    font-size: clamp(1rem, 0.6538461538rem + 0.9230769231vw, 1.6rem) !important;
  }
}
#page-index .slide-mainvisual .swiper-button-wrap .swiper-pagination {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: auto;
  gap: 1.2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: 1rem;
}
@media (max-width: 767.98px) {
  #page-index .slide-mainvisual .swiper-button-wrap .swiper-pagination {
    gap: 1rem;
    margin-inline: 0.8rem;
  }
}
#page-index .slide-mainvisual .swiper-button-wrap .swiper-pagination .swiper-pagination-bullet {
  width: 0.8rem;
  aspect-ratio: 1/1;
  background-color: var(--slick-bullet-color);
  opacity: 1;
  position: relative;
  margin: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 767.98px) {
  #page-index .slide-mainvisual .swiper-button-wrap .swiper-pagination .swiper-pagination-bullet {
    width: 0.65rem;
    height: 0.65rem;
  }
}
#page-index .slide-mainvisual .swiper-button-wrap .swiper-pagination .swiper-pagination-bullet svg {
  position: absolute;
  inset: -0.6rem;
  width: 2rem;
  height: 2rem;
  aspect-ratio: 1/1;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  pointer-events: none;
  max-inline-size: inherit;
  max-width: inherit;
}
@media (max-width: 767.98px) {
  #page-index .slide-mainvisual .swiper-button-wrap .swiper-pagination .swiper-pagination-bullet svg {
    width: 1.6rem;
    height: 1.6rem;
  }
}
#page-index .slide-mainvisual .swiper-button-wrap .swiper-pagination .swiper-pagination-bullet circle {
  fill: none;
  stroke: var(--primary-color);
  stroke-width: 1;
  opacity: 0;
}
#page-index .slide-mainvisual .swiper-button-wrap .swiper-pagination .swiper-pagination-bullet.is-center circle {
  opacity: 1;
}
#page-index .slide-mainvisual .swiper-button-wrap .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}
#page-index .hedline-news .news-item {
  max-width: 850px;
  margin: 3.5rem auto 0;
}
@media (max-width: 767.98px) {
  #page-index .hedline-news .news-item {
    margin-top: 6.4vw;
  }
}
#page-index .hedline-news .news-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  border: 1px solid var(--border-color);
  padding: clamp(0.9rem, 0.8423076923rem + 0.1538461538vw, 1rem) clamp(1.6rem, 1.3692307692rem + 0.6153846154vw, 2rem) clamp(0.9rem, 0.7269230769rem + 0.4615384615vw, 1.2rem) clamp(1.6rem, 0.7923076923rem + 2.1538461538vw, 3rem);
  border-radius: var(--radius-button);
  line-height: 1;
  font-size: clamp(1.3rem, 1.2423076923rem + 0.1538461538vw, 1.4rem);
}
.can-hover #page-index .hedline-news .news-link:hover::before {
  color: var(--primary-color);
}
.can-hover #page-index .hedline-news .news-link:hover .news-title__telop {
  color: var(--primary-color);
}
.touch-primary #page-index .hedline-news .news-link:active::before, .touch-primary #page-index .hedline-news .news-link.is-tapped::before {
  color: var(--primary-color);
}
.touch-primary #page-index .hedline-news .news-link:active .news-title__telop, .touch-primary #page-index .hedline-news .news-link.is-tapped .news-title__telop {
  color: var(--primary-color);
}
#page-index .hedline-news .news-link::before {
  content: "\f054";
  font-family: var(--font-icon);
  line-height: 1;
  font-weight: 900;
  font-size: clamp(1.4rem, 1.3423076923rem + 0.1538461538vw, 1.5rem);
  -webkit-transition: color var(--trd-duration) ease;
  transition: color var(--trd-duration) ease;
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
  margin-left: auto;
  color: var(--text-gray);
}
#page-index .hedline-news .news-link::after {
  display: none;
}
#page-index .hedline-news .news-link[href*=".pdf"]:not(.is-noIcon) .news-title::after {
  content: "\f1c1";
  font-family: var(--font-icon);
  line-height: 1;
  font-weight: 900;
  font-size: clamp(1.6rem, 1.3115384615rem + 0.7692307692vw, 2.1rem);
  margin-left: clamp(1.2rem, 0.7384615385rem + 1.2307692308vw, 2rem);
  margin-top: 0.2em;
  color: var(--button-bg-color);
}
#page-index .hedline-news .news-main-title {
  color: var(--primary-color);
  font-family: var(--font-en);
  font-size: clamp(1.4rem, 0.9384615385rem + 1.2307692308vw, 2.2rem);
  font-weight: var(--text-weight-s);
  letter-spacing: normal;
  line-height: 0.8;
  margin-right: clamp(0.6rem, 0.2538461538rem + 0.9230769231vw, 1.2rem);
}
@media (max-width: 767.98px) {
  #page-index .hedline-news .news-main-title {
    line-height: 1;
    margin-right: 3.2vw;
  }
}
#page-index .hedline-news .news-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: min(75vw, 720px);
}
@media (max-width: 767.98px) {
  #page-index .hedline-news .news-meta {
    width: 64vw;
  }
  #page-index .hedline-news .news-meta.is-telop {
    overflow: hidden;
    position: relative;
  }
  #page-index .hedline-news .news-meta.is-telop .news-meta__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
    -webkit-animation: telop var(--telop-dur, 15s) linear infinite;
            animation: telop var(--telop-dur, 15s) linear infinite;
  }
  #page-index .hedline-news .news-meta__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    white-space: nowrap;
  }
}
#page-index .hedline-news .news-date {
  color: var(--text-gray);
  letter-spacing: normal;
  width: 6em;
  line-height: 1;
}
#page-index .hedline-news .news-title {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  max-width: 645px;
  -webkit-transition: color var(--trd-duration) var(--trd-timing);
  transition: color var(--trd-duration) var(--trd-timing);
}
@media (max-width: 767.98px) {
  #page-index .hedline-news .news-title {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
    font-size: 1.3rem;
  }
}
#page-index .hedline-news .news-title__telop {
  display: inline-block;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.can-hover #page-index .hedline-news .news-title__telop:hover {
  color: var(--primary-color);
}
.touch-primary #page-index .hedline-news .news-title__telop:active, .touch-primary #page-index .hedline-news .news-title__telop.is-tapped {
  color: var(--primary-color);
}
#page-index .hedline-news .news-title.is-telop .news-title__telop {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation: telop var(--telop-dur, 10s) linear infinite;
          animation: telop var(--telop-dur, 10s) linear infinite;
}
@-webkit-keyframes telop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes telop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
#page-index .section-solution {
  width: 100%;
  padding: clamp(6rem, 5.1346153846rem + 2.3076923077vw, 7.5rem) 0 clamp(6rem, 4.5576923077rem + 3.8461538462vw, 8.5rem);
  overflow: hidden;
}
#page-index .section-solution .index-container {
  position: relative;
}
@media (max-width: 767.98px) {
  #page-index .section-solution .index-title-button {
    margin-top: 18.1333333333vw;
  }
}
#page-index .section-solution .arc-slider {
  position: relative;
  width: 100%;
  height: 39rem;
  overflow: visible;
}
@media (max-width: 767.98px) {
  #page-index .section-solution .arc-slider {
    height: 34.3rem;
  }
}
#page-index .section-solution .arc-track {
  position: relative;
  width: 100%;
  height: 35.4rem;
  z-index: 1;
}
@media (max-width: 767.98px) {
  #page-index .section-solution .arc-track {
    height: 32.3rem;
  }
}
#page-index .section-solution .arc-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 22rem;
  aspect-ratio: 220/323;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  --hover-scale: 1;
  --move-scale: 1;
  --hover-y: 0px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: -webkit-transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
@media (max-width: 767.98px) {
  #page-index .section-solution .arc-card {
    width: 220px;
  }
  #page-index .section-solution .arc-card:hover {
    -webkit-transform: none;
            transform: none;
  }
}
#page-index .section-solution .arc-card.is-out-moving {
  opacity: 0;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}
#page-index .section-solution .arc-card .solution-tag__link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition: -webkit-transform 0.45s ease;
  transition: -webkit-transform 0.45s ease;
  transition: transform 0.45s ease;
  transition: transform 0.45s ease, -webkit-transform 0.45s ease;
}
.can-hover #page-index .section-solution .arc-card .solution-tag__link:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.can-hover #page-index .section-solution .arc-card .solution-tag__link:hover .solution-tag__image {
  rotate: 2deg;
  translate: 0% -2%;
}
.can-hover #page-index .section-solution .arc-card .solution-tag__link:hover .solution-tag__image:after {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.touch-primary #page-index .section-solution .arc-card .solution-tag__link:active, .touch-primary #page-index .section-solution .arc-card .solution-tag__link.is-tapped {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.touch-primary #page-index .section-solution .arc-card .solution-tag__link:active .solution-tag__image, .touch-primary #page-index .section-solution .arc-card .solution-tag__link.is-tapped .solution-tag__image {
  rotate: 2deg;
  translate: 0% -2%;
}
.touch-primary #page-index .section-solution .arc-card .solution-tag__link:active .solution-tag__image:after, .touch-primary #page-index .section-solution .arc-card .solution-tag__link.is-tapped .solution-tag__image:after {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
#page-index .section-solution .arc-card .solution-tag__image {
  width: 100%;
  height: 100%;
}
#page-index .section-solution .arc-card .solution-tag__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#page-index .section-solution .arc-card .solution-tag__image {
  -webkit-transition: rotate 0.45s ease, translate 0.45s ease, -webkit-transform 0.45s ease;
  transition: rotate 0.45s ease, translate 0.45s ease, -webkit-transform 0.45s ease;
  transition: transform 0.45s ease, rotate 0.45s ease, translate 0.45s ease;
  transition: transform 0.45s ease, rotate 0.45s ease, translate 0.45s ease, -webkit-transform 0.45s ease;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  border-radius: var(--radius);
  overflow: hidden;
}
#page-index .section-solution .arc-card .solution-tag__image:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(110%);
          transform: translateY(110%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  background-color: var(--color-white);
  opacity: 0.2;
  pointer-events: none;
  mix-blend-mode: overlay;
}
#page-index .section-solution .arc-card .solution-tag__mirror {
  -webkit-transition: opacity 0.45s ease, rotate 0.45s ease, translate 0.45s ease, scale 0.45s ease;
  transition: opacity 0.45s ease, rotate 0.45s ease, translate 0.45s ease, scale 0.45s ease;
  scale: 1 -1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  translate: 0% 102%;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#page-index .section-solution .arc-card .solution-tag__mirror img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
}
#page-index .section-solution .arc-card .solution-tag__mirror::after {
  content: "";
  position: absolute;
  inset: 0 -2px;
  pointer-events: none;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.7)), color-stop(11%, rgba(255, 255, 255, 0.9)), color-stop(23%, rgb(255, 255, 255)));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.9) 11%, rgb(255, 255, 255) 23%);
  z-index: 2;
}
#page-index .section-solution .arc-button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 10;
}
@media (max-width: 767.98px) {
  #page-index .section-solution .arc-button-wrap {
    margin-top: 2rem;
    gap: 1.6rem;
  }
}
#page-index .section-solution .arc-arrow {
  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;
  z-index: 10;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-button);
  border: 1px solid var(--primary-color);
  background: var(--color-white);
  color: var(--primary-color);
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 767.98px) {
  #page-index .section-solution .arc-arrow {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.can-hover #page-index .section-solution .arc-arrow:hover {
  color: var(--color-white);
  background-color: var(--primary-color);
}
.touch-primary #page-index .section-solution .arc-arrow:active, .touch-primary #page-index .section-solution .arc-arrow.is-tapped {
  color: var(--color-white);
  background-color: var(--primary-color);
}
#page-index .section-solution .arc-arrow::after {
  font-family: var(--font-icon);
  line-height: 1;
  font-weight: 900;
  font-size: clamp(1rem, 0.6538461538rem + 0.9230769231vw, 1.6rem);
  line-height: 1;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
}
#page-index .section-solution .arc-arrow--prev::after {
  content: "\f053";
}
#page-index .section-solution .arc-arrow--next::after {
  content: "\f054";
}
#page-index .section-solution .arc-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 767.98px) {
  #page-index .section-solution .arc-pagination {
    gap: 8px;
  }
}
#page-index .section-solution .arc-pagination button {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-button);
  border: none;
  background: var(--slick-bullet-color);
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#page-index .section-solution .arc-pagination button::after {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#page-index .section-solution .arc-pagination button.is-active {
  background: var(--primary-color);
  position: relative;
}
#page-index .section-solution .arc-pagination button.is-active::after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: var(--radius-button);
  border: 1px solid var(--primary-color);
  position: absolute;
  left: -2px;
  top: -2px;
}
#page-index .section-case_study {
  padding-block: clamp(6rem, 4.2692307692rem + 4.6153846154vw, 9rem);
  background: var(--background-color);
}
#page-index .section-case_study .index-container__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 36.5rem 26px 1fr;
  grid-template-columns: 36.5rem 1fr;
  gap: 26px;
}
@media (max-width: 767.98px) {
  #page-index .section-case_study .index-container__body {
    display: block;
  }
}
@media (max-width: 767.98px) {
  #page-index .section-case_study .index-container-case_study {
    padding-inline: 0;
  }
}
@media (max-width: 767.98px) {
  #page-index .section-case_study .case-study-side {
    display: none;
  }
}
#page-index .section-case_study .case-study-nav {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -ms-grid-rows: 1fr 14px 1fr 14px 1fr 14px 1fr;
  grid-template-rows: repeat(4, 1fr);
  -ms-grid-columns: 1fr 14px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
#page-index .section-case_study .case-study-nav > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
#page-index .section-case_study .case-study-nav > *:nth-child(2) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
#page-index .section-case_study .case-study-nav > *:nth-child(3) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
#page-index .section-case_study .case-study-nav > *:nth-child(4) {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
}
#page-index .section-case_study .case-study-nav > *:nth-child(5) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
#page-index .section-case_study .case-study-nav > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
#page-index .section-case_study .case-study-nav > *:nth-child(7) {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
}
#page-index .section-case_study .case-study-nav > *:nth-child(8) {
  -ms-grid-row: 7;
  -ms-grid-column: 3;
}
@media (hover: hover) {
  #page-index .section-case_study .case-study-nav:not(:is([class*="--disabled"], [class*=is-disabled], [disabled])):hover .case-study-nav__item:not(:hover)::before {
    opacity: 0.3;
  }
}
#page-index .section-case_study .case-study-nav__item {
  cursor: pointer;
  aspect-ratio: 176/99;
  border-radius: var(--radius);
  overflow: hidden;
  -webkit-transition: opacity var(--trd-duration), -webkit-box-shadow 0.5s;
  transition: opacity var(--trd-duration), -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s, opacity var(--trd-duration);
  transition: box-shadow 0.5s, opacity var(--trd-duration), -webkit-box-shadow 0.5s;
  position: relative;
}
#page-index .section-case_study .case-study-nav__item::before {
  content: "";
  display: block;
  pointer-events: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity var(--trd-duration);
  transition: opacity var(--trd-duration);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000;
}
@media (hover: hover) {
  #page-index .section-case_study .case-study-nav__item:not(:is([class*="--disabled"], [class*=is-disabled], [disabled])):hover:not(.is-active) img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
#page-index .section-case_study .case-study-nav__item.is-active {
  -webkit-box-shadow: inset 0 0 0 2px var(--primary-color);
          box-shadow: inset 0 0 0 2px var(--primary-color);
}
#page-index .section-case_study .case-study-nav__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  z-index: -1;
}
#page-index .section-case_study .case-study__morelink {
  text-align: center;
}
#page-index .section-case_study .case-study__morelink a {
  font-weight: var(--text-weight-m);
  font-size: clamp(1.2rem, 1.0846153846rem + 0.3076923077vw, 1.4rem);
  margin-top: clamp(0.8rem, 0.6846153846rem + 0.3076923077vw, 1rem);
  letter-spacing: normal;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.can-hover #page-index .section-case_study .case-study__morelink a:hover {
  color: var(--primary-color);
}
.touch-primary #page-index .section-case_study .case-study__morelink a:active, .touch-primary #page-index .section-case_study .case-study__morelink a.is-tapped {
  color: var(--primary-color);
}
#page-index .section-case_study .case-study__morelink a::after {
  content: "\f054";
  font-family: var(--font-icon);
  line-height: 1;
  font-weight: 900;
  color: var(--primary-color);
  font-size: 1rem;
  margin-top: 0.15em;
  margin-left: 0.5em;
}
#page-index .section-case_study .case-study-main {
  width: 80%;
}
#page-index .section-case_study .case-study-main__link {
  display: block;
}
.can-hover #page-index .section-case_study .case-study-main__link:hover {
  color: var(--primary-color);
}
.can-hover #page-index .section-case_study .case-study-main__link:hover .case-study-main__textBox::after {
  color: var(--primary-color);
}
.can-hover #page-index .section-case_study .case-study-main__link:hover .case-study-main__thum img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.touch-primary #page-index .section-case_study .case-study-main__link:active, .touch-primary #page-index .section-case_study .case-study-main__link.is-tapped {
  color: var(--primary-color);
}
.touch-primary #page-index .section-case_study .case-study-main__link:active .case-study-main__textBox::after, .touch-primary #page-index .section-case_study .case-study-main__link.is-tapped .case-study-main__textBox::after {
  color: var(--primary-color);
}
.touch-primary #page-index .section-case_study .case-study-main__link:active .case-study-main__thum img, .touch-primary #page-index .section-case_study .case-study-main__link.is-tapped .case-study-main__thum img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
#page-index .section-case_study .case-study-main__thum {
  width: 100%;
  aspect-ratio: 608/342;
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 767.98px) {
  #page-index .section-case_study .case-study-main__thum {
    aspect-ratio: 137/77;
  }
}
#page-index .section-case_study .case-study-main__thum img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -o-object-fit: cover;
     object-fit: cover;
}
#page-index .section-case_study .case-study-main__textBox {
  position: relative;
  padding-right: 2em;
}
@media (max-width: 767.98px) {
  #page-index .section-case_study .case-study-main__textBox {
    padding-right: 0;
  }
}
#page-index .section-case_study .case-study-main__textBox::after {
  content: "\f054";
  margin-left: auto;
  font-family: var(--font-icon);
  line-height: 1;
  font-weight: 900;
  color: var(--text-gray);
  font-size: 1.3rem;
  -webkit-transition: -webkit-transform ease var(--trd-duration);
  transition: -webkit-transform ease var(--trd-duration);
  transition: transform ease var(--trd-duration);
  transition: transform ease var(--trd-duration), -webkit-transform ease var(--trd-duration);
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767.98px) {
  #page-index .section-case_study .case-study-main__textBox::after {
    display: none;
  }
}
#page-index .section-case_study .case-study-main__title {
  font-size: clamp(1.4rem, 1.0538461538rem + 0.9230769231vw, 2rem);
  margin-top: 1.5rem;
  -webkit-transition: var(--trd-duration) ease;
  transition: var(--trd-duration) ease;
  line-height: 1.45;
}
@media (max-width: 767.98px) {
  #page-index .section-case_study .case-study-main__title {
    line-height: 1.5;
  }
}
#page-index .section-case_study .case-study-main__text {
  font-size: clamp(1.3rem, 1.1269230769rem + 0.4615384615vw, 1.6rem);
  margin-top: 0.4rem;
  -webkit-transition: var(--trd-duration) ease;
  transition: var(--trd-duration) ease;
}
@media (max-width: 767.98px) {
  #page-index .section-case_study .case-study-main__text {
    line-height: 1.6;
  }
}
#page-index .section-case_study .js-case-main {
  width: 100%;
}
#page-index .section-case_study .js-case-main .swiper-button-prev, #page-index .section-case_study .js-case-main .swiper-button-next {
  display: none;
}
@media (max-width: 767.98px) {
  #page-index .section-case_study .js-case-main .swiper-button-prev, #page-index .section-case_study .js-case-main .swiper-button-next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 23vw;
  }
}
#page-index .section-column {
  margin-block: 0;
  padding-block: clamp(6rem, 4.2692307692rem + 4.6153846154vw, 9rem);
  z-index: 0;
}
#page-index .section-column.is-hover::before {
  opacity: 1;
}
#page-index .section-column .article-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
}
.can-hover #page-index .section-column .article-list .article-link:hover .hover_anime {
  background-position: 0 100%;
}
.touch-primary #page-index .section-column .article-list .article-link:active .hover_anime, .touch-primary #page-index .section-column .article-list .article-link.is-tapped .hover_anime {
  background-position: 0 100%;
}
#page-index .section-column .article-list .article-title {
  font-size: 1.3rem;
  font-weight: var(--text-weight);
}
#page-index .section-column .article-list .article-date {
  font-size: 1.2rem;
  margin-block: 2px 10px;
}
#page-index .section-column .article-list .article-thum {
  aspect-ratio: 137/77;
}
@media (max-width: 767.98px) {
  #page-index .section-column .article-list .article-thum {
    height: auto;
  }
}
#page-index .section-column .swiper {
  width: 100%;
  margin: 0 auto;
}
#page-index .section-column .swiper-slide {
  width: 222px;
  overflow: hidden;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  #page-index .section-column .swiper-slide {
    width: 80%;
  }
}
#page-index .section-business {
  margin-block: 0;
  padding: clamp(6rem, 4.2692307692rem + 4.6153846154vw, 9rem) 0;
  background: #313131;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1025px) {
  #page-index .section-business::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.8s cubic-bezier(0.45, 0.03, 0.85, 0.25), background-image 0.25s ease;
    transition: opacity 0.8s cubic-bezier(0.45, 0.03, 0.85, 0.25), background-image 0.25s ease;
    pointer-events: none;
    z-index: 1;
    -webkit-filter: blur(8px);
            filter: blur(8px);
  }
  #page-index .section-business.is-hover {
    background-color: #222;
  }
  #page-index .section-business.is-hover::before {
    opacity: 0.4;
  }
  #page-index .section-business.hover-item-1::before {
    background: url("../img/toppage/our_business_design.jpg") center/cover no-repeat #000;
  }
  #page-index .section-business.hover-item-2::before {
    background: url("../img/toppage/our_business_creative.jpg") center/cover no-repeat #000;
  }
  #page-index .section-business.hover-item-3::before {
    background: url("../img/toppage/our_business_media.jpg") center/cover no-repeat #000;
  }
  #page-index .section-business.hover-item-4::before {
    background: url("../img/toppage/our_business_dx.jpg") center/cover no-repeat #000;
  }
  #page-index .section-business.hover-item-5::before {
    background: url("../img/toppage/our_business_bx.jpg") center/cover no-repeat #000;
  }
}
#page-index .section-business .index-container {
  position: relative;
  z-index: 3;
}
#page-index .section-business .index-title__en, #page-index .section-business .index-title__ja {
  color: var(--color-white);
}
#page-index .section-business .index-title-button .button--anime {
  background-color: var(--color-white);
}
.can-hover #page-index .section-business .index-title-button .button--anime:hover {
  background-color: var(--text-color);
  color: var(--color-white);
}
.touch-primary #page-index .section-business .index-title-button .button--anime:active, .touch-primary #page-index .section-business .index-title-button .button--anime.is-tapped {
  background-color: var(--text-color);
  color: var(--color-white);
}
#page-index .section-business .index-business__wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(2rem, 1.4230769231rem + 1.5384615385vw, 3rem);
  position: relative;
  z-index: 2;
}
@media (min-width: 1025px) {
  #page-index .section-business .index-business__wrap.is-hover .index-business__item:not(.is-active)::before {
    z-index: 2;
    opacity: 0.75;
  }
}
#page-index .section-business .index-business__item {
  width: calc(33.3333333333% - 20px);
  aspect-ratio: 314/229;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: var(--radius);
}
#page-index .section-business .index-business__item::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: var(--radius);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
@media (min-width: 1025px) {
  #page-index .section-business .index-business__item.is-active::before {
    opacity: 0.4;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  #page-index .section-business .index-business__item.is-active .index-business__image {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.35);
            box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.35);
  }
}
@media (max-width: 1024px) {
  .can-hover #page-index .section-business .index-business__item:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .can-hover #page-index .section-business .index-business__item:hover::before {
    opacity: 0.35;
  }
  .touch-primary #page-index .section-business .index-business__item:active, .touch-primary #page-index .section-business .index-business__item.is-tapped {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .touch-primary #page-index .section-business .index-business__item:active::before, .touch-primary #page-index .section-business .index-business__item.is-tapped::before {
    opacity: 0.35;
  }
}
@media (max-width: 767.98px) {
  #page-index .section-business .index-business__item {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    aspect-ratio: 335/150;
  }
}
#page-index .section-business .index-business__item:nth-child(5n+1) .index-business__image {
  background: url("../img/toppage/our_business_design.jpg") center center/cover no-repeat;
}
#page-index .section-business .index-business__item:nth-child(5n+2) .index-business__image {
  background: url("../img/toppage/our_business_creative.jpg") center center/cover no-repeat;
}
#page-index .section-business .index-business__item:nth-child(5n+3) .index-business__image {
  background: url("../img/toppage/our_business_media.jpg") center center/cover no-repeat;
}
#page-index .section-business .index-business__item:nth-child(5n+4) .index-business__image {
  background: url("../img/toppage/our_business_dx.jpg") center center/cover no-repeat;
}
#page-index .section-business .index-business__item:nth-child(5n+5) .index-business__image {
  background: url("../img/toppage/our_business_bx.jpg") center center/cover no-repeat;
}
#page-index .section-business .index-business-title {
  color: #fff;
  text-align: center;
  position: relative;
}
#page-index .section-business .index-business-title__en {
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: var(--text-weight);
  letter-spacing: normal;
}
@media (max-width: 1080px) {
  #page-index .section-business .index-business-title__en {
    font-size: min(2.78vw, 30px);
  }
}
@media (max-width: 767.98px) {
  #page-index .section-business .index-business-title__en {
    font-size: 8vw;
  }
}
#page-index .section-business .index-business-title__ja {
  font-size: 1.2rem;
  font-weight: var(--text-weight-m);
}
@media (max-width: 1080px) {
  #page-index .section-business .index-business-title__ja {
    font-size: min(1.11vw, 12px);
  }
}
@media (max-width: 767.98px) {
  #page-index .section-business .index-business-title__ja {
    font-size: 3.7333333333vw;
    margin-top: 1.3333333333vw;
  }
}
#page-index .section-business .index-business__btn {
  width: 2.9rem;
  aspect-ratio: 1/1;
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  border: solid 1px #fff;
  border-radius: var(--radius-button);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: translate var(--trd-duration) var(--trd-timing);
  transition: translate var(--trd-duration) var(--trd-timing);
}
#page-index .section-business .index-business__btn::after {
  content: "\f054";
  font-family: var(--font-icon);
  line-height: 1;
  font-weight: 900;
  color: #fff;
  font-size: 1.4rem;
}
@media (max-width: 767.98px) {
  #page-index .section-business .index-business__btn {
    width: clamp(3rem, 2.3076923077rem + 1.8461538462vw, 4.2rem);
    right: clamp(1rem, 0.4807692308rem + 1.3846153846vw, 1.9rem);
    bottom: clamp(1rem, 0.4807692308rem + 1.3846153846vw, 1.9rem);
  }
  #page-index .section-business .index-business__btn::after {
    font-size: clamp(1rem, 0.7115384615rem + 0.7692307692vw, 1.5rem);
  }
}
#page-index .section-business .index-business__image {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: var(--radius);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#page-index .section-news {
  padding: clamp(6rem, 4.2692307692rem + 4.6153846154vw, 9rem) 0;
}
#page-index .section-news .index-title {
  position: relative;
  margin-bottom: clamp(2.2rem, 2.0269230769rem + 0.4615384615vw, 2.5rem);
}
@media (max-width: 767.98px) {
  #page-index .section-news .index-title {
    margin-bottom: 10.6666666667vw;
  }
}
#page-index .section-news .index-title--text {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  #page-index .section-news .index-title-button {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  #page-index .section-news .news-item {
    padding-bottom: 3.7333333333vw;
    margin-bottom: 3.7333333333vw;
    border-bottom: 1px solid var(--border-color);
  }
}
#page-index .section-news .news-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-block: clamp(1.7rem, 1.5846153846rem + 0.3076923077vw, 1.9rem);
  padding-right: clamp(3rem, 2.4230769231rem + 1.5384615385vw, 4rem);
  position: relative;
}
@media (hover: hover) {
  #page-index .section-news .news-link:not(:is([class*="--disabled"], [class*=is-disabled], [disabled])):hover::before {
    color: var(--primary-color);
  }
}
@media (max-width: 767.98px) {
  #page-index .section-news .news-link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    border-bottom: none;
    padding-right: 6.6666666667vw;
  }
}
.can-hover #page-index .section-news .news-link:hover {
  color: var(--primary-color);
}
.touch-primary #page-index .section-news .news-link:active, .touch-primary #page-index .section-news .news-link.is-tapped {
  color: var(--primary-color);
}
#page-index .section-news .news-link::before {
  content: "\f054";
  font-family: var(--font-icon);
  line-height: 1;
  font-weight: 900;
  font-size: clamp(1.1rem, 0.8692307692rem + 0.6153846154vw, 1.5rem);
  -webkit-transition: color var(--trd-duration);
  transition: color var(--trd-duration);
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}
#page-index .section-news .news-link::after {
  display: none;
}
#page-index .section-news .news-link[href*=".pdf"]:not(.is-noIcon) .news-title::after {
  content: "\f1c1";
  font-family: var(--font-icon);
  line-height: 1;
  font-weight: 900;
  font-size: clamp(1.4rem, 0.9961538462rem + 1.0769230769vw, 2.1rem);
  margin-left: clamp(1.2rem, 0.7384615385rem + 1.2307692308vw, 2rem);
  margin-top: 0.2em;
  color: var(--border-dark-color);
}
#page-index .section-news .news-date {
  color: var(--primary-color);
  letter-spacing: normal;
  width: 9rem;
  font-size: clamp(1.1rem, 0.8692307692rem + 0.6153846154vw, 1.5rem);
}
@media (max-width: 767.98px) {
  #page-index .section-news .news-date {
    width: auto;
  }
}
#page-index .section-news .news-title {
  font-weight: var(--text-weight);
  width: calc(100% - 90px);
  -webkit-transition: var(--trd-duration) ease;
  transition: var(--trd-duration) ease;
  line-height: 1.5;
  font-size: clamp(1.2rem, 1.0269230769rem + 0.4615384615vw, 1.5rem);
}
@media (max-width: 767.98px) {
  #page-index .section-news .news-title {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
    margin-top: 0.5333333333vw;
    line-height: 1.3;
  }
}
#page-index .banners {
  background: var(--background-light-color);
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: clamp(3rem, -0.4615384615rem + 9.2307692308vw, 9rem);
}
@media (max-width: 767.98px) {
  #page-index .banners .index-title-button {
    margin-top: 9.3333333333vw;
  }
}
#page-index .banners .button {
  min-width: min(100%, 20.4rem);
}
@media (max-width: 767.98px) {
  #page-index .banners .button {
    min-width: 40vw;
  }
  #page-index .banners .button::after {
    font-size: 7.4666666667vw;
  }
}
#page-index .banners .index-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.5rem;
  position: relative;
  padding-block: clamp(4rem, 3.7115384615rem + 0.7692307692vw, 4.5rem);
}
@media (max-width: 767.98px) {
  #page-index .banners .index-container {
    display: block;
    padding-block: 16vw;
  }
}
#page-index .banners .index-container::before {
  content: "";
  width: min(28.9vw, 289px);
  aspect-ratio: 289/281;
  background: url(../img/toppage/bn_recruit_img.png) center/contain no-repeat;
  position: absolute;
  right: -4.4rem;
  bottom: 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #page-index .banners .index-container::before {
    display: none;
  }
}
@media (max-width: 767.98px) {
  #page-index .banners .index-container::before {
    width: 58.9333333333vw;
    right: -24.5333333333vw;
    z-index: 3;
  }
}
#page-index .banners .index-container::after {
  content: "";
  height: 100%;
  aspect-ratio: 996/477;
  background: url(../img/toppage/bn_recruit_bg.png) center/contain no-repeat;
  position: absolute;
  right: -13rem;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 767.98px) {
  #page-index .banners .index-container::after {
    aspect-ratio: 1125/1748;
    right: 0;
    background: url(../img/toppage/bn_recruit_bg_sp.png) center/cover no-repeat;
  }
}
#page-index .banners__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 28rem;
  padding-block: 4.2rem 3.2rem;
}
@media (max-width: 767.98px) {
  #page-index .banners__text {
    width: 100%;
    line-height: 1.65;
    padding-top: 0;
  }
}
#page-index .banners__text .index-title-button.pc_only {
  margin-top: auto;
  margin-left: 0;
}
#page-index .banners__lead {
  margin-top: 3.4rem;
  font-size: 1.3rem;
}
@media (max-width: 767.98px) {
  #page-index .banners__lead {
    margin-block: 2.5rem 3rem;
    font-size: 1.4rem;
  }
}
#page-index .banners .banner {
  max-width: 47.7rem;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
}
@media (max-width: 767.98px) {
  #page-index .banners .banner {
    width: 80vw;
    max-width: inherit;
    margin-inline: auto;
    border-radius: 0;
  }
}
#page-index .banners .banner img {
  width: 100%;
}
/*# sourceMappingURL=front.css.map */