html {
  --color-black-100: #000000;
  --color-black-200: #191A1A;
  --color-black-300: #323333;
  --color-white-100: #ffffff;
  --color-gray-100: #F0F1F5;
  --color-gray-200: #E1E2E5;
  --color-gray-300: #F7F8FC;
  --color-blue-100: #11269E;
  --color-blue-100: #11269E;
  --color-blue-200: #F2F4FF;
  --select-fill-color: var(--color-black-100);
  --select-text-color: var(--color-white-100);
}

@keyframes underline-swap {
  0% {
    background-position: right bottom;
    background-size: 100% 1px;
  }
  50% {
    background-position: right bottom;
    background-size: 0 1px;
  }
  51% {
    background-position: left bottom;
    background-size: 0 1px;
  }
  100% {
    background-position: left bottom;
    background-size: 100% 1px;
  }
}
footer.base-footer {
  width: 100%;
  height: auto;
  position: relative;
  padding-inline: var(--margin-1);
  color: var(--color-white-100);
  background: var(--color-black-200);
  padding-block: 64px 40px;
  padding-inline: var(--margin-2);
}
footer.base-footer .base-footer__inner {
  padding-top: 40px;
  border-top: 1px solid var(--color-black-300);
  display: grid;
  grid-template-columns: minmax(200px, 740px) 1fr;
  grid-template-rows: auto 1fr;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__inner {
    display: block;
  }
}
footer.base-footer .base-footer__group {
  width: fit-content;
}
footer.base-footer .base-footer__group:first-of-type {
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__group:first-of-type {
    max-width: initial;
  }
}
footer.base-footer .base-footer__group:nth-of-type(2) {
  margin-inline: auto 0;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__group:nth-of-type(2) {
    margin-inline: 0;
  }
}
footer.base-footer .base-footer__logo {
  width: 180px;
  height: auto;
}
footer.base-footer .base-footer__text {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  margin-top: 12px;
}
footer.base-footer .base-footer__movie {
  background: var(--color-black-300);
  border-radius: 8px;
  overflow: hidden;
  padding-block: 4px;
  padding-inline: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
}
footer.base-footer .base-footer__movie__title {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  color: var(--color-white-100);
}
footer.base-footer .base-footer__movie__title svg {
  width: 20px;
  position: relative;
  top: 2px;
}
footer.base-footer .base-footer__movie__title svg path {
  fill: var(--color-white-100);
}
footer.base-footer .base-footer__movie__button {
  width: 192px;
  height: 137px;
  position: relative;
  cursor: pointer;
}
footer.base-footer .base-footer__movie__button svg {
  width: 33px;
  position: absolute;
  inset: 0;
  margin: auto;
}
footer.base-footer .base-footer__movie__button svg path {
  fill: var(--color-gray-200);
}
footer.base-footer .base-footer__nav {
  width: 500px;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__nav {
    width: 100%;
    margin-top: 40px;
  }
}
footer.base-footer .base-footer__list {
  height: 340px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__list {
    height: auto;
    font-size: 13px;
  }
}
footer.base-footer .base-footer__item:not(:first-of-type) {
  margin-top: 8px;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__item:not(:first-of-type) {
    margin-top: 16px;
  }
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__item:nth-of-type(6) {
    margin-top: 40px;
  }
}
footer.base-footer .base-footer__link {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
footer.base-footer .base-footer__link svg {
  width: 12px;
}
footer.base-footer .base-footer__link svg path {
  fill: var(--color-white-100);
}
footer.base-footer .base-footer__list__child {
  margin-top: 4px;
}
footer.base-footer .base-footer__item__child:not(:first-of-type) {
  margin-top: 2px;
}
footer.base-footer .base-footer__item__child::before {
  content: "-";
}
footer.base-footer .base-footer__link__child {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
footer.base-footer .base-footer__bottom {
  grid-column: 1/3;
  grid-row: 2/3;
  padding-top: 8px;
  border-top: 1px solid var(--color-black-300);
  margin-top: 24px;
}
footer.base-footer .base-footer__copyright {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-align: right;
}
footer.base-footer .base-footer__back {
  width: 120px;
  height: 120px;
  position: absolute;
  inset: -60px var(--margin-1) auto auto;
  background: var(--color-black-100);
  border: 2px solid var(--color-white-100);
  border-radius: 50%;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__back {
    width: 64px;
    height: 64px;
    inset: -32px var(--margin-1) auto auto;
  }
}
footer.base-footer .base-footer__back svg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 14px;
}
footer.base-footer .base-footer__back svg path {
  stroke: var(--color-white-100);
}
footer.base-footer .base-footer__movie__button svg path {
  transition: fill 300ms ease;
}
footer.base-footer .base-footer__link {
  transition: opacity 300ms ease;
}
footer.base-footer .base-footer__link__child {
  transition: opacity 300ms ease;
}
footer.base-footer .base-footer__back svg {
  transition: transform 300ms ease;
}
@media (min-width: 993px) {
  footer.base-footer .base-footer__movie__button:hover:hover svg path {
    fill: var(--color-black-300);
  }
}
@media (max-width: 992px) {
  footer.base-footer .base-footer__movie__button:hover[hover-el] svg path {
    fill: var(--color-black-300);
  }
}
@media (min-width: 993px) {
  footer.base-footer .base-footer__link:hover:hover {
    opacity: 0.6;
  }
}
@media (max-width: 992px) {
  footer.base-footer .base-footer__link:hover[hover-el] {
    opacity: 0.6;
  }
}
@media (min-width: 993px) {
  footer.base-footer .base-footer__link__child:hover:hover {
    opacity: 0.6;
  }
}
@media (max-width: 992px) {
  footer.base-footer .base-footer__link__child:hover[hover-el] {
    opacity: 0.6;
  }
}
@media (min-width: 993px) {
  footer.base-footer .base-footer__back:hover:hover svg {
    transform: translateY(-4px);
  }
}
@media (max-width: 992px) {
  footer.base-footer .base-footer__back:hover[hover-el] svg {
    transform: translateY(-4px);
  }
}

header.base-header {
  width: 100%;
  height: 68px;
  padding-inline: var(--margin-1) 0;
  position: fixed;
  inset: 0 0 auto 0;
  margin: auto;
  z-index: 9998;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1300px) {
  header.base-header {
    padding-inline: var(--margin-1);
  }
}
@media (max-width: 750px) {
  header.base-header {
    height: 56px;
    padding-inline: var(--margin-2);
  }
}
header.base-header .base-header__logo {
  width: 187px;
  height: fit-content;
}
@media (max-width: 750px) {
  header.base-header .base-header__logo {
    width: 180px;
  }
}
header.base-header .base-header__nav {
  height: 100%;
}
@media (max-width: 1300px) {
  header.base-header .base-header__nav {
    display: none;
  }
}
header.base-header .base-header__list {
  height: 100%;
  display: flex;
  align-items: flex-start;
}
header.base-header .base-header__item {
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
header.base-header .base-header__item:not(:last-of-type, :nth-of-type(6)) {
  margin-right: 24px;
}
header.base-header .base-header__link {
  height: 100%;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  display: flex;
  align-items: center;
}
header.base-header .base-header__link::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  inset: auto 0 0 0;
  background: var(--color-blue-100);
}
header.base-header .base-header__link__wrap {
  display: flex;
  position: fixed;
  inset: auto 0 0 0;
  margin: auto;
}
header.base-header .base-header__link--download {
  height: 100%;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  display: flex;
  align-items: center;
  margin-right: 0;
  padding-inline: 28px;
  color: var(--color-blue-100);
  background: var(--color-gray-100);
}
@media (max-width: 750px) {
  header.base-header .base-header__link--download {
    width: 50%;
    height: 60px;
    padding-inline: 0;
    justify-content: center;
  }
}
header.base-header .base-header__link--download svg {
  width: 13px;
  margin-inline: 6px;
}
header.base-header .base-header__link--download svg path {
  fill: var(--color-blue-100);
}
header.base-header .base-header__link--inquiry {
  height: 100%;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  display: flex;
  align-items: center;
  padding-inline: 28px;
  color: var(--color-white-100);
  background: var(--color-blue-100);
}
@media (max-width: 750px) {
  header.base-header .base-header__link--inquiry {
    width: 50%;
    height: 60px;
    padding-inline: 0;
    justify-content: center;
  }
}
header.base-header .base-header__link--inquiry svg {
  width: 15px;
  position: relative;
  top: 1px;
  margin-inline: 6px;
}
header.base-header .base-header__link--inquiry svg path {
  fill: var(--color-white-100);
}
header.base-header .base-header__button {
  width: 18px;
  height: 14px;
  position: relative;
  display: none;
}
@media (max-width: 1300px) {
  header.base-header .base-header__button {
    display: block;
  }
}
header.base-header .base-header__button span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-black-100);
  position: absolute;
  inset: 0;
  margin: auto;
}
header.base-header .base-header__button span:first-of-type {
  top: -12px;
}
header.base-header .base-header__button span:nth-of-type(3) {
  bottom: -12px;
}
header.base-header .base-header__link__wrap {
  transition: opacity 300ms ease;
  opacity: 0;
  pointer-events: none;
}
header.base-header .base-header__link--download, header.base-header .base-header__link--inquiry {
  transition: color 300ms ease;
}
header.base-header .base-header__link {
  transition: color 300ms ease, background 300ms ease, -webkit-text-stroke-color 300ms ease, text-stroke-color 300ms ease;
  text-stroke: 0.5px transparent;
  -webkit-text-stroke: 0.5px transparent;
}
header.base-header .base-header__link::after {
  transition: opacity 300ms ease;
  opacity: 0;
}
header.base-header .base-header__button {
  transition: transform 300ms ease;
}
header.base-header .base-header__button span {
  transition: transform 300ms ease, top 300ms ease, bottom 300ms;
}
header.base-header[open] .base-header__button {
  transform: rotate(180deg);
}
header.base-header[open] .base-header__button span:first-of-type {
  transform: rotate(45deg);
  top: 0;
}
header.base-header[open] .base-header__button span:nth-of-type(2) {
  transform: scale(0);
}
header.base-header[open] .base-header__button span:last-of-type {
  transform: rotate(-45deg);
  bottom: 0;
}
header.base-header .base-header__item[active] .base-header__link {
  color: var(--color-blue-100);
  text-stroke: 0.5px var(--color-blue-100);
  -webkit-text-stroke: 0.5px var(--color-blue-100);
}
header.base-header .base-header__item[active] .base-header__link::after {
  opacity: 1;
}
header.base-header .base-header__link__wrap[show] {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 993px) {
  header.base-header .base-header__link--download:hover:hover {
    color: rgba(17, 38, 158, 0.4);
  }
}
@media (max-width: 992px) {
  header.base-header .base-header__link--download:hover[hover-el] {
    color: rgba(17, 38, 158, 0.4);
  }
}
@media (min-width: 993px) {
  header.base-header .base-header__link--inquiry:hover:hover {
    color: rgba(255, 255, 255, 0.7);
  }
}
@media (max-width: 992px) {
  header.base-header .base-header__link--inquiry:hover[hover-el] {
    color: rgba(255, 255, 255, 0.7);
  }
}
@media (min-width: 993px) {
  header.base-header .base-header__link:hover:hover {
    color: var(--color-blue-100);
    text-stroke: 0.5px var(--color-blue-100);
    -webkit-text-stroke: 0.5px var(--color-blue-100);
  }
  header.base-header .base-header__link:hover:hover::after {
    opacity: 1;
  }
}
@media (max-width: 992px) {
  header.base-header .base-header__link:hover[hover-el] {
    color: var(--color-blue-100);
    text-stroke: 0.5px var(--color-blue-100);
    -webkit-text-stroke: 0.5px var(--color-blue-100);
  }
  header.base-header .base-header__link:hover[hover-el]::after {
    opacity: 1;
  }
}
@media (min-width: 993px) {
  header.base-header .base-header__item:nth-of-type(6) .base-header__link:hover:hover, header.base-header .base-header__item:nth-of-type(7) .base-header__link:hover:hover {
    background: var(--color-white-100);
    color: var(--color-blue-100);
  }
}
@media (max-width: 992px) {
  header.base-header .base-header__item:nth-of-type(6) .base-header__link:hover[hover-el], header.base-header .base-header__item:nth-of-type(7) .base-header__link:hover[hover-el] {
    background: var(--color-white-100);
    color: var(--color-blue-100);
  }
}

.base-menu {
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  margin: auto;
  z-index: 9997;
}
.base-menu .base-menu__contents {
  width: calc(100% - 40px);
  height: auto;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  max-width: 360px;
  margin-top: 80px;
  margin-inline: auto var(--margin-1);
}
@media (max-width: 750px) {
  .base-menu .base-menu__contents {
    margin-top: 64px;
  }
}
.base-menu .base-menu__list {
  padding-block: 8px;
  padding-inline: 20px;
}
.base-menu .base-menu__item {
  padding-block: 20px;
}
.base-menu .base-menu__item:not(:first-of-type) {
  border-top: 1px solid var(--color-gray-200);
}
.base-menu .base-menu__link {
  display: block;
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
.base-menu .base-menu__item__child {
  height: 1em;
}
.base-menu .base-menu__item__child::before {
  content: "-";
}
.base-menu .base-menu__item__child:not(:first-of-type) {
  margin-top: 4px;
}
.base-menu .base-menu__link__child {
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
.base-menu .base-menu__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  margin: auto;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}
.base-menu {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.base-menu[open] {
  opacity: 1;
  pointer-events: auto;
}

.base-modal {
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  margin: auto;
  z-index: 9999;
}
.base-modal .base-modal__contents {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 567px;
  aspect-ratio: 16/9;
  max-width: 1000px;
}
@media (max-width: 1300px) {
  .base-modal .base-modal__contents {
    width: 90%;
    height: auto;
  }
}
.base-modal .base-modal__movie {
  width: 100%;
  height: 100%;
}
.base-modal .base-modal__movie iframe {
  width: 100%;
  height: 100%;
}
.base-modal .base-modal__close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--color-white-100);
  border-radius: 50%;
  cursor: pointer;
}
@media (max-width: 750px) {
  .base-modal .base-modal__close {
    width: 32px;
    height: 32px;
    top: -16px;
    right: -16px;
  }
}
.base-modal .base-modal__close span {
  display: block;
  background: var(--color-black-100);
  width: 20px;
  height: 2px;
  position: absolute;
  inset: 0;
  margin: auto;
}
@media (max-width: 750px) {
  .base-modal .base-modal__close span {
    width: 16px;
    height: 2px;
  }
}
.base-modal .base-modal__close span:first-of-type {
  transform: rotate(45deg);
}
.base-modal .base-modal__close span:last-of-type {
  transform: rotate(-45deg);
}
.base-modal .base-modal__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  margin: auto;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.base-modal {
  transition: opacity 300ms ease;
  opacity: 0;
  pointer-events: none;
}
.base-modal[open] {
  opacity: 1;
  pointer-events: auto;
}

.container[page-name=index] {
  width: 100%;
}
.container[page-name=index] section .section__contents {
  max-width: var(--max-width);
  margin-inline: auto;
}
.container[page-name=index] section .section__title {
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.container[page-name=index] section .section__title span:first-of-type {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-blue-100);
  margin-inline: 16px auto;
}
.container[page-name=index] section .section__title span:last-of-type {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-gray-200);
  margin-inline: 8px 0;
}
.container[page-name=index] section .section__header {
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(100px, 720px) auto;
  gap: 40px;
}
@media (max-width: 992px) {
  .container[page-name=index] section .section__header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 16px;
  }
}
.container[page-name=index] section .section__header__title {
  font-size: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  color: var(--color-blue-100);
}
@media (max-width: 750px) {
  .container[page-name=index] section .section__header__title {
    font-size: 26px;
  }
}
.container[page-name=index] section .section__header__text {
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 750px) {
  .container[page-name=index] section .section__header__text {
    font-size: 16px;
  }
}
.container[page-name=index] section .section__header__text a {
  color: var(--color-blue-100);
  font-weight: bold;
  background-image: linear-gradient(var(--color-blue-100), var(--color-blue-100));
  background-repeat: no-repeat;
}
.container[page-name=index] section .section__header__text a svg {
  width: 14px;
  height: auto;
  position: relative;
  top: 0;
  left: 0;
  margin-inline: 2px 4px;
}
.container[page-name=index] section .section__header__text a {
  transition: background-size 0.3s ease;
  background-position: bottom right;
  background-size: 100% 1px;
}
@media (min-width: 993px) {
  .container[page-name=index] section .section__header__text a:hover:hover {
    animation: underline-swap 0.6s ease forwards;
  }
}
@media (max-width: 992px) {
  .container[page-name=index] section .section__header__text a:hover[hover-el] {
    animation: underline-swap 0.6s ease forwards;
  }
}
.container[page-name=index] section.first {
  width: 100%;
  height: 100vh;
  height: 100svh;
  position: relative;
  padding-block: 510px 80px;
  padding-inline: var(--margin-2);
  overflow: hidden;
}
@media (max-width: 750px) {
  .container[page-name=index] section.first {
    padding-block: 352px 70px;
  }
}
.container[page-name=index] section.first .first__contents {
  position: absolute;
  inset: auto auto 80px var(--margin-2);
}
@media (max-width: 750px) {
  .container[page-name=index] section.first .first__contents {
    inset: auto var(--margin-2) 70px var(--margin-2);
  }
}
.container[page-name=index] section.first .first__title {
  font-size: 36px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  color: var(--color-white-100);
}
@media (max-width: 750px) {
  .container[page-name=index] section.first .first__title {
    font-size: 30px;
  }
}
.container[page-name=index] section.first .first__text {
  color: var(--color-white-100);
}
@media (max-width: 750px) {
  .container[page-name=index] section.first .first__text {
    font-size: 15px;
  }
}
.container[page-name=index] section.first .first__link__wrap {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.first .first__link__wrap {
    flex-direction: column-reverse;
    gap: 4px;
  }
}
.container[page-name=index] section.first .first__link {
  width: 282px;
  height: 56px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 4px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.first .first__link {
    width: 100%;
  }
}
.container[page-name=index] section.first .first__link:first-of-type {
  color: var(--color-blue-100);
  background: var(--color-white-100);
}
.container[page-name=index] section.first .first__link:first-of-type svg {
  width: 13px;
}
.container[page-name=index] section.first .first__link:first-of-type svg path {
  fill: var(--color-blue-100);
}
.container[page-name=index] section.first .first__link:last-of-type {
  color: var(--color-white-100);
  background: var(--color-blue-100);
}
.container[page-name=index] section.first .first__link:last-of-type svg {
  width: 15px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.first .first__link:last-of-type svg {
    position: relative;
    top: 1px;
  }
}
.container[page-name=index] section.first .first__link:last-of-type svg path {
  fill: var(--color-white-100);
}
.container[page-name=index] section.first .first__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: -1;
}
.container[page-name=index] section.first .first__scroll {
  position: absolute;
  inset: auto var(--margin-2) 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.first .first__scroll {
    inset: auto 0 0 0;
    margin: auto;
    gap: 4px;
  }
}
.container[page-name=index] section.first .first__scroll span {
  width: 1px;
  height: 80px;
  display: inline-block;
  position: relative;
}
@media (max-width: 992px) {
  .container[page-name=index] section.first .first__scroll span {
    height: 40px;
  }
}
@media (max-width: 750px) {
  .container[page-name=index] section.first .first__scroll span {
    height: 24px;
  }
}
.container[page-name=index] section.first .first__scroll span::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color-white-100);
  position: absolute;
  inset: 0;
  margin: auto;
}
.container[page-name=index] section.first .first__scroll::before {
  content: "SCROLL";
  display: inline-block;
  writing-mode: vertical-rl;
  color: var(--color-white-100);
  letter-spacing: 0.5em;
}
@media (max-width: 992px) {
  .container[page-name=index] section.first .first__scroll::before {
    font-size: 14px;
  }
}
@media (max-width: 750px) {
  .container[page-name=index] section.first .first__scroll::before {
    font-size: 12px;
    writing-mode: horizontal-tb;
  }
}
.container[page-name=index] section.first .first__movie {
  position: absolute;
  inset: 156px var(--margin-2) auto auto;
  background: var(--color-gray-100);
  border-radius: 8px;
  overflow: hidden;
  padding-block: 4px;
  padding-inline: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 750px) {
  .container[page-name=index] section.first .first__movie {
    inset: 128px 10px auto auto;
  }
}
.container[page-name=index] section.first .first__movie__title {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  color: var(--color-blue-100);
}
@media (max-width: 750px) {
  .container[page-name=index] section.first .first__movie__title {
    font-size: 13px;
  }
}
.container[page-name=index] section.first .first__movie__title svg {
  width: 20px;
  position: relative;
  top: 2px;
}
.container[page-name=index] section.first .first__movie__title svg path {
  fill: var(--color-blue-100);
}
.container[page-name=index] section.first .first__movie__button {
  width: 192px;
  height: 137px;
  position: relative;
  cursor: pointer;
}
@media (max-width: 750px) {
  .container[page-name=index] section.first .first__movie__button {
    width: 132px;
    height: 64px;
  }
}
.container[page-name=index] section.first .first__movie__button svg {
  width: 33px;
  position: absolute;
  inset: 0;
  margin: auto;
}
.container[page-name=index] section.first .first__movie__button svg path {
  fill: var(--color-gray-100);
}
.container[page-name=index] section.first .first__news {
  width: 100%;
  padding-inline: var(--margin-2);
  position: absolute;
  inset: 76px 0 auto auto;
}
@media (max-width: 750px) {
  .container[page-name=index] section.first .first__news {
    padding-inline: 10px;
    inset: 60px 0 auto auto;
  }
}
.container[page-name=index] section.first .first__news__list-wrap {
  width: 100%;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.container[page-name=index] section.first .first__news__list-wrap::-webkit-scrollbar {
  display: none;
}
.container[page-name=index] section.first .first__news__list {
  padding-block: 8px;
}
.container[page-name=index] section.first .first__news__item:not(:first-of-type) {
  margin-top: 4px;
}
.container[page-name=index] section.first .first__news__contents {
  background: var(--color-white-100);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 120px 1fr;
  padding-inline: 0 40px;
  overflow: hidden;
}
@media (max-width: 750px) {
  .container[page-name=index] section.first .first__news__contents {
    grid-template-columns: 80px 1fr;
    padding-inline: 0 16px;
  }
}
.container[page-name=index] section.first .first__news__date {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: 1.8;
  padding-inline: 24px 0;
}
@media (max-width: 750px) {
  .container[page-name=index] section.first .first__news__date {
    font-size: 12px;
    padding-inline: 16px 0;
  }
}
.container[page-name=index] section.first .first__news__title {
  height: 100%;
  background: var(--color-gray-100);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: 1.8;
  color: var(--color-blue-100);
  border-radius: 4px 0 0 4px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.first .first__news__title {
    font-size: 12px;
  }
}
.container[page-name=index] section.first .first__news__body {
  display: grid;
  grid-template-columns: 137px 1fr;
}
@media (max-width: 750px) {
  .container[page-name=index] section.first .first__news__body {
    grid-template-columns: 110px auto;
  }
}
.container[page-name=index] section.first .first__news__link {
  width: fit-content;
  display: grid;
  grid-template-columns: 137px auto;
  padding-inline: 0 24px;
  position: relative;
}
@media (max-width: 750px) {
  .container[page-name=index] section.first .first__news__link {
    grid-template-columns: 110px auto;
  }
}
.container[page-name=index] section.first .first__news__link svg {
  position: absolute;
  inset: 0 0 0 auto;
  margin: auto;
}
.container[page-name=index] section.first .first__news__text {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  white-space: nowrap;
}
@media (max-width: 750px) {
  .container[page-name=index] section.first .first__news__text {
    font-size: 14px;
  }
}
.container[page-name=index] section.first .first__link {
  transition: color 0.3s ease;
}
.container[page-name=index] section.first .first__link svg path {
  transition: fill 0.3s ease;
}
.container[page-name=index] section.first .first__scroll span:before {
  transform: scaleY(0);
}
.container[page-name=index] section.first .first__movie__button svg path {
  transition: fill 0.3s ease;
}
.container[page-name=index] section.first .first__news__link {
  transition: color 0.3s ease;
}
.container[page-name=index] section.first .first__news__link svg path {
  transition: fill 0.3s ease;
  fill: var(--color-black-100);
}
@media (hover: hover) {
  .container[page-name=index] section.first .first__link:first-of-type:hover {
    color: rgba(17, 38, 158, 0.4);
  }
}
.container[page-name=index] section.first .first__link:first-of-type:hover svg path {
  fill: rgba(17, 38, 158, 0.4);
}
@media (hover: hover) {
  .container[page-name=index] section.first .first__link:last-of-type:hover {
    color: rgba(255, 255, 255, 0.7);
  }
}
.container[page-name=index] section.first .first__link:last-of-type:hover svg path {
  fill: rgba(255, 255, 255, 0.7);
}
.container[page-name=index] section.first .first__scroll span:before {
  animation: scrollDown 1.6s ease-in-out infinite;
}
@keyframes scrollDown {
  0% {
    transform-origin: center top;
    transform: scaleY(0);
  }
  49.999% {
    transform-origin: center top;
    transform: scaleY(1);
  }
  50% {
    transform-origin: center bottom;
    transform: scaleY(1);
  }
  100% {
    transform-origin: center bottom;
    transform: scaleY(0);
  }
}
@media (min-width: 993px) {
  .container[page-name=index] section.first .first__movie__button:hover:hover svg path {
    fill: var(--color-blue-100);
  }
}
@media (max-width: 992px) {
  .container[page-name=index] section.first .first__movie__button:hover[hover-el] svg path {
    fill: var(--color-blue-100);
  }
}
@media (min-width: 993px) {
  .container[page-name=index] section.first .first__news__link:hover:hover {
    color: var(--color-blue-100);
    background: var(--color-white-100);
  }
}
@media (max-width: 992px) {
  .container[page-name=index] section.first .first__news__link:hover[hover-el] {
    color: var(--color-blue-100);
    background: var(--color-white-100);
  }
}
.container[page-name=index] section.first .first__news__link:hover svg path {
  fill: var(--color-blue-100);
}
.container[page-name=index] section.about {
  position: relative;
  margin-top: 100px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.about {
    margin-top: 128px;
  }
}
.container[page-name=index] section.about .about__inner {
  padding-inline: var(--margin-3);
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__inner {
    padding-inline: var(--margin-2);
  }
}
.container[page-name=index] section.about .about__problem {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-bottom: 160px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__problem {
    padding-bottom: 64px;
  }
}
.container[page-name=index] section.about .about__problem__contents {
  margin-top: 100px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__problem__contents {
    margin-top: 40px;
  }
}
.container[page-name=index] section.about .about__problem__contents-title {
  font-size: 26px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  color: var(--color-black-100);
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__problem__contents-title {
    font-size: 23px;
  }
}
.container[page-name=index] section.about .about__problem__content-item {
  border-top: 1px solid var(--color-gray-200);
}
.container[page-name=index] section.about .about__problem__item {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  border-top: 1px solid var(--color-gray-200);
  padding-top: 40px;
  margin-top: 12px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__problem__item {
    grid-template-columns: 1fr;
    margin-top: 12px;
    padding-top: 24px;
  }
}
.container[page-name=index] section.about .about__problem__item:last-of-type {
  margin-top: 40px;
}
.container[page-name=index] section.about .about__problem__image {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin-inline: 0 40px;
}
@media (max-width: 992px) {
  .container[page-name=index] section.about .about__problem__image {
    max-width: initial;
  }
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__problem__image {
    width: 100%;
    min-width: initial;
    margin-inline: 0;
  }
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__problem__desc {
    width: 100%;
  }
}
.container[page-name=index] section.about .about__problem__desc-title {
  font-size: 23px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  position: relative;
  padding-inline: 24px 0;
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__problem__desc-title {
    margin-top: 24px;
    font-size: 20px;
  }
}
.container[page-name=index] section.about .about__problem__desc-title span {
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  color: var(--color-blue-100);
  position: absolute;
  top: 4px;
  left: 0;
}
.container[page-name=index] section.about .about__problem__desc-list {
  margin-top: 24px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__problem__desc-list {
    margin-top: 8px;
  }
}
.container[page-name=index] section.about .about__problem__desc-item {
  list-style-type: disc;
  margin-left: 16px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__problem__desc-item {
    font-size: 16px;
  }
}
.container[page-name=index] section.about .about__problem__desc-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 5px;
  position: relative;
  background-image: linear-gradient(var(--color-black-100), var(--color-black-100));
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: right bottom;
  animation: none;
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__problem__desc-link {
    width: 100%;
    padding-inline: 0 30px;
  }
}
.container[page-name=index] section.about .about__problem__desc-link span {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  margin-inline: 4px 0;
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__problem__desc-link span {
    margin-inline: auto;
    margin-top: 8px;
    font-size: 12px;
  }
}
.container[page-name=index] section.about .about__problem__desc-arrow {
  width: 24px;
  height: 24px;
  position: absolute;
  inset: 0 -32px 0 auto;
  border-radius: 4px;
  background: var(--color-blue-100);
  overflow: hidden;
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__problem__desc-arrow {
    top: 10px;
    right: 0;
  }
}
.container[page-name=index] section.about .about__problem__desc-arrow svg {
  width: 8px;
  height: auto;
  position: absolute;
  inset: 0;
  margin: auto;
}
.container[page-name=index] section.about .about__problem__desc-arrow svg path {
  stroke: var(--color-white-100);
}
.container[page-name=index] section.about .about__problem__desc-logo {
  width: 100%;
  height: auto;
  border: 1px solid var(--color-gray-200);
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
  border-radius: 4px;
  min-width: 610px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__problem__desc-logo {
    gap: 0;
    min-width: initial;
  }
}
.container[page-name=index] section.about .about__problem__desc-logo svg {
  width: 260px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__problem__desc-logo svg {
    width: 180px;
  }
}
.container[page-name=index] section.about .about__contents {
  position: relative;
  padding-block: 100px;
  padding-inline: var(--margin-3);
  overflow: hidden;
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__contents {
    padding-block: 40px;
    padding-inline: var(--margin-2);
  }
}
.container[page-name=index] section.about .about__contents__inner {
  max-width: var(--max-width);
  margin-inline: auto;
}
.container[page-name=index] section.about .about__contents__title {
  font-size: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  color: var(--color-white-100);
  text-align: center;
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__contents__title {
    font-size: 26px;
    line-height: 1.4;
  }
}
.container[page-name=index] section.about .about__contents__text {
  margin-top: 40px;
  color: var(--color-white-100);
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__contents__text {
    font-size: 16px;
  }
}
.container[page-name=index] section.about .about__contents__graph {
  width: 100%;
  max-width: 1120px;
  width: 100%;
  height: auto;
  margin-inline: auto;
  margin-top: 80px;
  position: relative;
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__contents__graph {
    width: 100%;
    margin-top: 40px;
  }
}
.container[page-name=index] section.about .about__contents__graph svg {
  display: block;
  width: 100%;
  height: auto;
}
.container[page-name=index] section.about .about__contents__graph svg a > * {
  pointer-events: auto;
}
.container[page-name=index] section.about .about__contents__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: -1;
}
.container[page-name=index] section.about .about__problem__desc-link {
  transition: color 300ms ease, borderColor 300ms ease;
}
.container[page-name=index] section.about .about__contents__graph a {
  transition: opacity 300ms ease;
}
@media (min-width: 993px) {
  .container[page-name=index] section.about .about__contents__graph a:hover:hover {
    opacity: 0.6;
  }
}
@media (max-width: 992px) {
  .container[page-name=index] section.about .about__contents__graph a:hover[hover-el] {
    opacity: 0.6;
  }
}
@media (min-width: 993px) {
  .container[page-name=index] section.about .about__problem__desc-link:hover:hover {
    animation: underline-swap 0.6s ease forwards;
  }
  .container[page-name=index] section.about .about__problem__desc-link:hover:hover svg {
    animation: moveUpDown 0.6s ease-out;
  }
  @keyframes moveUpDown {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(150%);
    }
    50.1% {
      transform: translateY(-150%);
    }
    100% {
      transform: translateY(0);
    }
  }
}
@media (max-width: 992px) {
  .container[page-name=index] section.about .about__problem__desc-link:hover[hover-el] {
    animation: underline-swap 0.6s ease forwards;
  }
  .container[page-name=index] section.about .about__problem__desc-link:hover[hover-el] svg {
    animation: moveUpDown 0.6s ease-out;
  }
  @keyframes moveUpDown {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(150%);
    }
    50.1% {
      transform: translateY(-150%);
    }
    100% {
      transform: translateY(0);
    }
  }
}
.container[page-name=index] section.feature {
  padding-inline: var(--margin-3);
}
@media (max-width: 750px) {
  .container[page-name=index] section.feature {
    padding-inline: var(--margin-2);
  }
}
.container[page-name=index] section.feature .feature__inner {
  max-width: var(--max-width);
  padding-top: 160px;
  padding-bottom: 160px;
  margin-inline: auto;
}
@media (max-width: 750px) {
  .container[page-name=index] section.feature .feature__inner {
    padding-top: 36px;
    padding-bottom: 80px;
  }
}
.container[page-name=index] section.feature .feature__anchor {
  width: 100%;
  height: 610px;
  margin-top: 64px;
  position: relative;
  display: flex;
}
@media (max-width: 750px) {
  .container[page-name=index] section.feature .feature__anchor {
    padding-inline: 0;
    height: 509px;
  }
}
.container[page-name=index] section.feature .feature__anchor svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  margin: auto;
  pointer-events: none;
}
.container[page-name=index] section.feature .feature__anchor__link {
  display: block;
  width: 50%;
  height: 100%;
  position: relative;
}
.container[page-name=index] section.feature .feature__anchor__link-contents {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  inset: 28px 0 auto 0;
  margin: auto;
  gap: 8px;
  z-index: 1;
}
@media (max-width: 992px) {
  .container[page-name=index] section.feature .feature__anchor__link-contents {
    top: 82px;
  }
}
@media (max-width: 750px) {
  .container[page-name=index] section.feature .feature__anchor__link-contents {
    top: 36px;
    gap: 4px;
  }
}
.container[page-name=index] section.feature .feature__anchor__link-number {
  font-size: 15px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 992px) {
  .container[page-name=index] section.feature .feature__anchor__link-number {
    font-size: 14px;
  }
}
.container[page-name=index] section.feature .feature__anchor__link-text {
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  background-image: linear-gradient(var(--color-black-100), var(--color-black-100));
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: right bottom;
  padding-bottom: 4px;
  text-align: center;
}
@media (max-width: 992px) {
  .container[page-name=index] section.feature .feature__anchor__link-text {
    font-size: 14px;
  }
}
@media (max-width: 750px) {
  .container[page-name=index] section.feature .feature__anchor__link-text {
    line-height: 1.6;
    font-size: 16px;
  }
}
@media (max-width: 750px) {
  .container[page-name=index] section.feature .feature__anchor__graph {
    width: 100vw;
  }
}
.container[page-name=index] section.feature .feature__item {
  margin-top: 64px;
  padding-top: 16px;
  padding-inline: 110px 0;
  position: relative;
}
@media (max-width: 750px) {
  .container[page-name=index] section.feature .feature__item {
    padding-inline: 60px 0;
  }
}
.container[page-name=index] section.feature .feature__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(to right, var(--color-gray-200) 0, var(--color-gray-200) 8px, transparent 8px, transparent 12px);
}
.container[page-name=index] section.feature .feature__item::after {
  content: "";
  width: 1px;
  height: calc(100% - 16px);
  background-image: repeating-linear-gradient(to bottom, var(--color-gray-200) 0, var(--color-gray-200) 8px, transparent 8px, transparent 12px);
  position: absolute;
  top: 16px;
  left: 80px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.feature .feature__item::after {
    left: 40px;
  }
}
.container[page-name=index] section.feature .feature__item__number {
  font-size: 20px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 21px;
  left: 32px;
  color: var(--color-blue-100);
}
@media (max-width: 750px) {
  .container[page-name=index] section.feature .feature__item__number {
    left: 10px;
  }
}
.container[page-name=index] section.feature .feature__item__title {
  font-size: 26px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  color: var(--color-blue-100);
}
@media (max-width: 750px) {
  .container[page-name=index] section.feature .feature__item__title {
    font-size: 23px;
  }
}
.container[page-name=index] section.feature .feature__item__child {
  display: grid;
  grid-template-columns: minmax(200px, 370px) 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 80px;
  margin-top: 40px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.feature .feature__item__child {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
}
@media (max-width: 750px) {
  .container[page-name=index] section.feature .feature__item__child:not(:first-of-type) {
    margin-top: 40px;
  }
}
.container[page-name=index] section.feature .feature__item__child-image {
  grid-column: 1/2;
  grid-row: 1/3;
}
.container[page-name=index] section.feature .feature__item__child-title {
  font-size: 23px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 750px) {
  .container[page-name=index] section.feature .feature__item__child-title {
    margin-top: 8px;
    font-size: 20px;
  }
}
.container[page-name=index] section.feature .feature__item__child-text {
  margin-top: 16px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.feature .feature__item__child-text {
    margin-top: 8px;
    font-size: 16px;
  }
}
.container[page-name=index] section.feature .feature__anchor__link {
  transition: background 300ms ease;
}
@media (min-width: 993px) {
  .container[page-name=index] section.feature .feature__anchor__link:hover:hover {
    background: var(--color-blue-200);
  }
  .container[page-name=index] section.feature .feature__anchor__link:hover:hover .feature__anchor__link-contents {
    color: var(--color-blue-100);
  }
  .container[page-name=index] section.feature .feature__anchor__link:hover:hover .feature__anchor__link-text {
    background-image: linear-gradient(var(--color-blue-100), var(--color-blue-100));
    animation: underline-swap 0.6s ease forwards;
  }
}
@media (max-width: 992px) {
  .container[page-name=index] section.feature .feature__anchor__link:hover[hover-el] {
    background: var(--color-blue-200);
  }
  .container[page-name=index] section.feature .feature__anchor__link:hover[hover-el] .feature__anchor__link-contents {
    color: var(--color-blue-100);
  }
  .container[page-name=index] section.feature .feature__anchor__link:hover[hover-el] .feature__anchor__link-text {
    background-image: linear-gradient(var(--color-blue-100), var(--color-blue-100));
    animation: underline-swap 0.6s ease forwards;
  }
}
.container[page-name=index] section.case {
  padding-inline: var(--margin-3);
  padding-top: 104px;
  padding-bottom: 374px;
  background: var(--color-gray-300);
}
@media (max-width: 750px) {
  .container[page-name=index] section.case {
    padding-inline: var(--margin-2);
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.container[page-name=index] section.case .case__inner {
  max-width: var(--max-width);
  margin-inline: auto;
}
.container[page-name=index] section.case .case__logo {
  background: var(--color-white-100);
  display: flex;
  justify-content: center;
  gap: 80px;
  padding-block: 16px;
  margin-top: 64px;
  border-radius: 4px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.case .case__logo {
    margin-top: 24px;
    gap: 16px;
  }
}
.container[page-name=index] section.case .case__header {
  display: grid;
  grid-template-columns: 120px 1fr;
  margin-top: 104px;
  padding-top: 40px;
  border-top: 1px solid var(--color-gray-200);
}
@media (max-width: 750px) {
  .container[page-name=index] section.case .case__header {
    margin-top: 64px;
    display: block;
  }
}
.container[page-name=index] section.case .case__number {
  grid-row: 1/3;
  width: 80px;
  height: 80px;
  background: var(--color-blue-100);
  border-radius: 50%;
  color: var(--color-white-100);
  font-size: 24px;
  font-size: 24px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: 1.1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  flex-direction: column;
  position: relative;
}
@media (max-width: 750px) {
  .container[page-name=index] section.case .case__number {
    width: 60px;
    height: 60px;
    font-size: 18px;
    margin-inline: auto;
  }
}
.container[page-name=index] section.case .case__number span:first-of-type {
  font-size: 12px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.case .case__number span:first-of-type {
    font-size: 11px;
  }
}
.container[page-name=index] section.case .case__number::before {
  content: "";
  width: 88px;
  height: 88px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--color-blue-100);
  border-radius: 50%;
}
@media (max-width: 750px) {
  .container[page-name=index] section.case .case__number::before {
    width: 68px;
    height: 68px;
  }
}
.container[page-name=index] section.case .case__title {
  font-size: 26px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  margin-top: 16px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.case .case__title {
    margin-top: 12px;
    font-size: 23px;
  }
}
.container[page-name=index] section.case .case__text {
  margin-top: 20px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.case .case__text {
    font-size: 16px;
  }
}
.container[page-name=index] section.case .case__contents {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0 80px;
  margin-top: 64px;
  position: relative;
}
@media (max-width: 750px) {
  .container[page-name=index] section.case .case__contents {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 750px) {
  .container[page-name=index] section.case .case__image {
    width: 100px;
    height: auto;
    position: absolute;
    inset: 0 auto auto 0;
  }
}
.container[page-name=index] section.case .case__name {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 750px) {
  .container[page-name=index] section.case .case__name {
    margin-inline: 116px 0;
    font-size: 12px;
  }
}
.container[page-name=index] section.case .case__desc__title {
  font-size: 23px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  color: var(--color-blue-100);
}
@media (max-width: 750px) {
  .container[page-name=index] section.case .case__desc__title {
    font-size: 20px;
    margin-inline: 116px 0;
  }
}
.container[page-name=index] section.case .case__check {
  margin-top: 24px;
}
.container[page-name=index] section.case .case__check__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.case .case__check__item {
    font-size: 16px;
  }
}
.container[page-name=index] section.case .case__check__item:not(:first-of-type) {
  margin-top: 8px;
}
.container[page-name=index] section.case .case__check__item svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.case .case__check__item svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }
}
.container[page-name=index] section.case .case__preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.case .case__preview {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
}
.container[page-name=index] section.case .case__preview--3col {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 750px) {
  .container[page-name=index] section.case .case__preview--3col {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
}
.container[page-name=index] section.case .case__preview__item picture {
  width: 100%;
  height: auto;
  border-radius: 4px;
  overflow: hidden;
}
.container[page-name=index] section.case .case__preview__text {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  margin-top: 8px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.case .case__preview__text {
    font-size: 12px;
  }
}
.container[page-name=index] section.case .case__point {
  background: var(--color-blue-200);
  margin-top: 62px;
  padding-block: 32px;
  padding-inline: 40px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.case .case__point {
    padding-inline: var(--margin-2);
  }
}
.container[page-name=index] section.case .case__point__title {
  display: flex;
  font-size: 23px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  color: var(--color-blue-100);
  gap: 16px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.case .case__point__title {
    display: block;
    font-size: 20px;
  }
}
.container[page-name=index] section.case .case__point__title span {
  width: 123px;
  height: 44px;
  background: var(--color-white-100);
  font-size: 18px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  border: 2px solid var(--color-blue-100);
  color: var(--color-blue-100);
}
@media (max-width: 750px) {
  .container[page-name=index] section.case .case__point__title span {
    width: 70px;
    height: 27px;
    font-size: 12px;
    gap: 4px;
    letter-spacing: -0.01em;
  }
}
.container[page-name=index] section.case .case__point__title svg {
  width: 24px;
  height: auto;
}
@media (max-width: 750px) {
  .container[page-name=index] section.case .case__point__title svg {
    width: 16px;
  }
}
.container[page-name=index] section.case .case__point__item {
  display: grid;
  grid-template-columns: 370px 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 80px;
  padding-top: 40px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.case .case__point__item {
    grid-template-columns: 1fr;
  }
}
.container[page-name=index] section.case .case__point__item:first-of-type {
  margin-top: 8px;
  border-top: 1px solid var(--color-gray-200);
}
@media (max-width: 750px) {
  .container[page-name=index] section.case .case__point__item:first-of-type {
    margin-top: 0;
  }
}
.container[page-name=index] section.case .case__point__image {
  grid-column: 1/2;
  grid-row: 1/3;
}
.container[page-name=index] section.case .case__point__item-title {
  font-size: 23px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 750px) {
  .container[page-name=index] section.case .case__point__item-title {
    margin-top: 24px;
    font-size: 18px;
  }
}
.container[page-name=index] section.case .case__point__item-text {
  margin-top: 16px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.case .case__point__item-text {
    font-size: 16px;
  }
}
.container[page-name=index] section.contact {
  padding-inline: var(--margin-3);
  position: relative;
}
@media (max-width: 750px) {
  .container[page-name=index] section.contact {
    padding-inline: var(--margin-2);
    margin-top: 0;
  }
}
.container[page-name=index] section.contact .contact__inner {
  color: var(--color-white-100);
  background: var(--color-blue-100);
  padding-inline: var(--margin-2);
  padding-block: 80px;
  margin-inline: auto;
  border-radius: 8px;
  width: 1360px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1300px) {
  .container[page-name=index] section.contact .contact__inner {
    width: 90%;
  }
}
@media (max-width: 750px) {
  .container[page-name=index] section.contact .contact__inner {
    width: 100%;
    padding-block: 24px;
    position: relative;
    transform: none;
    top: 0;
    left: 0;
  }
}
.container[page-name=index] section.contact .contact__title {
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-align: center;
}
.container[page-name=index] section.contact .contact__title--ja {
  font-size: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 750px) {
  .container[page-name=index] section.contact .contact__title--ja {
    font-size: 26px;
  }
}
.container[page-name=index] section.contact .contact__text {
  max-width: 800px;
  margin-top: 24px;
  margin-inline: auto;
  text-align: center;
}
@media (max-width: 750px) {
  .container[page-name=index] section.contact .contact__text {
    font-size: 16px;
  }
}
.container[page-name=index] section.contact .contact__link__wrap {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.contact .contact__link__wrap {
    flex-direction: column;
    gap: 8px;
  }
}
.container[page-name=index] section.contact .contact__link {
  width: 100%;
  height: 96px;
  max-width: 516px;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 4px;
  color: var(--color-blue-100);
  background: var(--color-white-100);
  border: 2px solid var(--color-white-100);
}
@media (max-width: 750px) {
  .container[page-name=index] section.contact .contact__link {
    width: 100%;
    font-size: 18px;
  }
}
.container[page-name=index] section.contact .contact__link svg path {
  fill: var(--color-blue-100);
}
.container[page-name=index] section.contact .contact__link:first-of-type svg {
  width: 16px;
  height: auto;
}
.container[page-name=index] section.contact .contact__link:last-of-type svg {
  width: 18px;
  height: auto;
}
.container[page-name=index] section.contact .contact__link {
  transition: background 300ms ease, color 300ms ease;
}
.container[page-name=index] section.contact .contact__link svg path {
  transition: fill 300ms ease;
}
@media (min-width: 993px) {
  .container[page-name=index] section.contact .contact__link:hover:hover {
    background: var(--color-blue-100);
    color: var(--color-white-100);
  }
  .container[page-name=index] section.contact .contact__link:hover:hover svg path {
    fill: var(--color-white-100);
  }
}
@media (max-width: 992px) {
  .container[page-name=index] section.contact .contact__link:hover[hover-el] {
    background: var(--color-blue-100);
    color: var(--color-white-100);
  }
  .container[page-name=index] section.contact .contact__link:hover[hover-el] svg path {
    fill: var(--color-white-100);
  }
}
.container[page-name=index] section.faq {
  padding-bottom: 16px;
  padding-top: 376px;
  padding-inline: var(--margin-3);
}
@media (max-width: 750px) {
  .container[page-name=index] section.faq {
    padding-top: 104px;
    padding-inline: var(--margin-2);
  }
}
.container[page-name=index] section.faq .faq__inner {
  max-width: var(--max-width);
  margin-inline: auto;
}
.container[page-name=index] section.faq .faq__title {
  font-size: 26px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  margin-top: 64px;
  padding-top: 24px;
  line-height: 1.4;
  position: relative;
}
@media (max-width: 750px) {
  .container[page-name=index] section.faq .faq__title {
    padding-top: 40px;
  }
}
.container[page-name=index] section.faq .faq__title:nth-of-type(1)::before {
  display: none;
}
.container[page-name=index] section.faq .faq__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-gray-200);
}
.container[page-name=index] section.faq .faq__item {
  background: var(--color-gray-300);
  margin-top: 24px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}
.container[page-name=index] section.faq .faq__question {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-inline: 92px 84px;
  list-style: none;
  position: relative;
  cursor: pointer;
  font-weight: bold;
}
@media (max-width: 750px) {
  .container[page-name=index] section.faq .faq__question {
    font-size: 18px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-inline: 50px 38px;
  }
}
.container[page-name=index] section.faq .faq__question::before {
  content: "Q";
  font-size: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  inset: 24px auto auto 48px;
  color: var(--color-blue-100);
}
@media (max-width: 750px) {
  .container[page-name=index] section.faq .faq__question::before {
    font-size: 26px;
    inset: 10px auto auto 16px;
  }
}
.container[page-name=index] section.faq .faq__question svg {
  width: 17px;
  height: auto;
  position: absolute;
  inset: 0 43px 0 auto;
  margin: auto;
}
@media (max-width: 750px) {
  .container[page-name=index] section.faq .faq__question svg {
    width: 14px;
    inset: 0 16px 0 auto;
  }
}
.container[page-name=index] section.faq .faq__answer__inner {
  padding-inline: 92px 84px;
  padding-bottom: 40px;
  position: relative;
}
@media (max-width: 750px) {
  .container[page-name=index] section.faq .faq__answer__inner {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-inline: 50px 38px;
    font-size: 16px;
  }
}
.container[page-name=index] section.faq .faq__answer__inner a {
  color: var(--color-blue-100);
  font-weight: bold;
  background-image: linear-gradient(var(--color-blue-100), var(--color-blue-100));
  background-repeat: no-repeat;
}
.container[page-name=index] section.faq .faq__answer__inner svg {
  width: 14px;
  height: auto;
  position: relative;
  top: 0;
  left: 0;
  margin-inline: 2px 4px;
}
.container[page-name=index] section.faq .faq__answer__inner picture {
  margin-top: 40px;
}
@media (max-width: 750px) {
  .container[page-name=index] section.faq .faq__answer__inner picture {
    margin-top: 8px;
  }
}
.container[page-name=index] section.faq .faq__answer__inner::before {
  content: "A";
  font-size: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  inset: -12px auto auto 48px;
  color: var(--color-blue-100);
}
@media (max-width: 750px) {
  .container[page-name=index] section.faq .faq__answer__inner::before {
    font-size: 26px;
    inset: 11px auto auto 16px;
  }
}
.container[page-name=index] section.faq .faq__note {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  margin-top: 160px;
}
@media (max-width: 1300px) {
  .container[page-name=index] section.faq .faq__note {
    max-width: 550px;
  }
}
@media (max-width: 750px) {
  .container[page-name=index] section.faq .faq__note {
    max-width: min(286px, 85%);
    font-size: 12px;
  }
}
.container[page-name=index] section.faq .faq__question svg {
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}
.container[page-name=index] section.faq .faq__answer a {
  transition: background-size 0.3s ease;
  background-position: bottom right;
  background-size: 100% 1px;
}
.container[page-name=index] section.faq .faq__question svg[open] {
  transform: rotate(0deg);
}
@media (min-width: 993px) {
  .container[page-name=index] section.faq .faq__answer a:hover:hover {
    animation: underline-swap 0.6s ease forwards;
  }
}
@media (max-width: 992px) {
  .container[page-name=index] section.faq .faq__answer a:hover[hover-el] {
    animation: underline-swap 0.6s ease forwards;
  }
}

* {
  box-sizing: border-box;
}

::before,
::after {
  box-sizing: inherit;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  border-bottom: none;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  vertical-align: bottom;
}

embed,
object,
iframe {
  border: 0;
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

:root {
  --margin-1: 40px;
  --margin-2: 80px;
  --margin-3: 160px;
}
@media (max-width: 1200px) {
  :root {
    --margin-1: 10px;
    --margin-2: 20px;
    --margin-3: 40px;
  }
}

html {
  min-height: 100%;
  font-feature-settings: "palt" 1;
  --max-width: 1120px;
}

html ::selection, body ::selection {
  background: var(--select-fill-color);
  color: var(--select-text-color);
}
html ::-moz-selection, body ::-moz-selection {
  background: var(--select-fill-color);
  color: var(--select-text-color);
}

body {
  color: var(--color-black-100);
  background: var(--color-white-100);
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

span, div {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  letter-spacing: inherit;
}

img {
  object-fit: cover;
  pointer-events: none;
  touch-callout: none;
  user-select: none;
  user-drag: none;
  border-radius: inherit;
  width: inherit;
  height: inherit;
}

svg {
  width: inherit;
  height: inherit;
}

small {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  letter-spacing: inherit;
}

video {
  max-width: 100vw;
  object-fit: cover;
}

picture {
  display: block;
  width: inherit;
  height: inherit;
}
picture source, picture img {
  width: 100%;
  height: 100%;
}

a {
  cursor: pointer;
  line-height: 1;
}
a > * {
  pointer-events: none;
}

button {
  position: relative;
  width: fit-content;
}
button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: calc(100% + 22px);
  width: calc(100% + 22px);
}

section {
  width: 100vw;
}

.container {
  min-height: 100vh;
  position: relative;
  max-width: 100vw;
  overflow-x: hidden;
}

[hidden] {
  display: none !important;
}

body[no-scroll] {
  overflow: hidden;
  overscroll-behavior: none;
}

@media (max-width: 750px) {
  [pc-only] {
    display: none !important;
  }
}

@media (min-width: 993px) {
  [pc-sm-only] {
    display: none !important;
  }
}

@media (max-width: 1580px) {
  [lg-over-only] {
    display: none !important;
  }
}

@media (min-width: 751px) {
  [sp-only] {
    display: none !important;
  }
}

.gs-dev-tools {
  z-index: 9999;
}
.gs-dev-tools svg {
  pointer-events: auto;
}

html[low-battery] [low-battery-hide] {
  display: none !important;
}

html:not([low-battery]) [low-battery-show] {
  display: none !important;
}

html body .setting-row {
  line-height: normal;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  opacity: 0;
}

.default {
  width: 100%;
}