@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Aboreto&family=Noto+Sans+JP:wght@100..900&family=Poppins:wght@300;400&display=swap");
/* Custom Property ----------------- */
:root {
  --grid-column-guide: repeat(12, 1fr);
  --grid-gap: 2vw;
  --inner-padding: clamp(20px, 3vw, 60px);
  --background-color: rgba(255, 255, 255, 1);
  --border: 1px solid rgba(0, 0, 0, 0.1);
  --text-color: rgba(34, 34, 34, 1);
}

/* import -------------------------- */
/* reset --------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

/* init --------------------------------------*/
html,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", "Noto Sans JP", "メイリオ", "MS Pゴシック", sans-serif;
  font-optical-sizing: auto;
  font-variation-settings: "slnt" 0;
  color: var(--text-color);
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  background-color: rgb(255, 255, 255);
  font-weight: 400;
  line-height: 2;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body.bg2 {
  background-color: var(--background-color2);
}
body.bg3 {
  background-color: var(--background-color3);
}

a {
  color: var(--text-color);
}
a:hover {
  text-decoration: none;
}

input[type=submit],
button {
  border-radius: 0;
  appearance: none;
}

img {
  margin: 0;
  padding: 0;
  border: 0;
}

::-moz-selection {
  background-color: var(--text-color);
  color: var(--background-color);
}

::selection {
  background-color: var(--text-color);
  color: var(--background-color);
}

/* Default Options */
/* Media Query */
/* Transform Font Size */
.header {
  width: calc(100% - 10px);
  height: 50px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 5px;
  left: 5px;
  z-index: 100;
  mix-blend-mode: difference;
}
.header-logo {
  padding-inline-start: 15px;
}
.header-logo a {
  width: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-logo svg {
  width: 100%;
  height: auto;
  fill: var(--background-color);
}
.header-nav, .header-ui {
  display: none;
}
.header-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 102;
  cursor: pointer;
}
.header-menu:before, .header-menu:after {
  content: "";
  display: block;
  pointer-events: none;
  position: absolute;
}
.header-menu:before {
  width: 66px;
  height: 66px;
  background-image: url(../../assets/images/common/bg_menu.svg);
  top: 0;
  right: 0;
  z-index: 0;
}
.header-menu:after {
  width: 42px;
  height: 42px;
  border-inline-start: 1px solid var(--text-color);
  border-block-end: 1px solid var(--text-color);
  border-radius: 0 0 0 10px;
  bottom: -1px;
  left: -1px;
  z-index: 1;
}
.header-menu .inner {
  position: relative;
}
.header-menu .inner:before, .header-menu .inner:after {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 0 10px 0 0;
  box-sizing: border-box;
  border-block-start: 1px solid var(--text-color);
  border-inline-end: 1px solid var(--text-color);
  position: absolute;
}
.header-menu .inner:before {
  top: 5px;
  left: -10px;
}
.header-menu .inner:after {
  bottom: -10px;
  right: 5px;
}
.header-menu .inner div {
  width: 56px;
  height: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  position: relative;
  z-index: 1;
}
.header-menu .inner div:before, .header-menu .inner div:after {
  content: "";
  display: block;
}
.header-menu .inner div span, .header-menu .inner div:before, .header-menu .inner div:after {
  width: 30px;
  height: 1px;
  display: block;
  background-color: var(--text-color);
  transform-origin: center;
  position: relative;
}
.nav-open .header-menu .inner div {
  gap: 0;
}
.nav-open .header-menu .inner div span {
  display: none;
}
.nav-open .header-menu .inner div:before {
  transform: rotate3d(0, 0, 1, 45deg);
}
.nav-open .header-menu .inner div:after {
  transform: rotate3d(0, 0, -1, 45deg);
  top: -1px;
}

@media screen and (min-width: 992px) {
  .header {
    width: calc(100% - 20px);
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    position: fixed;
    top: 10px;
    left: 10px;
    mix-blend-mode: difference;
  }
  .header-logo {
    position: relative;
    z-index: 5;
  }
  .header-logo a {
    width: clamp(170px, 15vw, 220px);
  }
  .header-nav {
    width: clamp(504px, 50vw, 700px);
    height: 61px;
    padding: 0;
    padding-block-end: 10px;
    list-style: none;
    border-block-end: 1px solid rgb(0, 0, 0);
    background-color: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(5px, 1vw, 20px);
    background-color: var(--background-color);
    position: fixed;
    top: 10px;
    left: 50%;
    z-index: 101;
    box-sizing: border-box;
    transform: translateX(-50%);
  }
  .header-nav a {
    height: 30px;
    display: flex;
    align-items: center;
    padding-inline: 5px;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 15px;
    font-size: clamp(0.75rem, 0.5965909091rem + 0.4261363636vw, 0.9375rem);
    line-height: 1.6;
    text-decoration: none;
    transition: background-color 250ms ease;
  }
  .header-nav a:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
  .header-nav:before, .header-nav:after {
    content: "";
    width: 58px;
    height: 71px;
    display: block;
    position: absolute;
    top: -10px;
  }
  .header-nav:before {
    background-image: url(../../assets/images/common/bg_header_l.png);
    left: -57px;
  }
  .header-nav:after {
    background-image: url(../../assets/images/common/bg_header_r.png);
    right: -57px;
  }
  .header-ui {
    padding-inline-end: 20px;
    display: flex;
    justify-content: end;
    gap: 20px;
    position: relative;
    z-index: 5;
  }
  .header-ui-contact a {
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: 15px;
    border: 1px solid var(--background-color);
    border-radius: 15px;
    box-sizing: border-box;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 250ms ease;
    color: var(--background-color);
  }
  .header-ui-contact a:hover {
    background-color: var(--background-color);
    color: var(--text-color);
  }
  .header-menu {
    display: none;
  }
  .header:before {
    display: none;
  }
}

.footer {
  padding: 5px;
  padding-block-start: 0;
}
.footer .inner {
  padding-block: clamp(60px, 10vw, 120px);
  padding-inline: clamp(20px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background-color: rgb(34, 34, 34);
  border-radius: 0 0 10px 10px;
  color: var(--background-color);
}
.footer-logo {
  width: 220px;
}
.footer-logo svg {
  width: 100%;
  height: auto;
  fill: var(--background-color);
}
.footer-nav .list {
  display: none;
}
.footer small {
  font-size: 0.625rem;
  text-transform: uppercase;
}
@media screen and (min-width: 1280px) {
  .footer .inner {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
    justify-content: space-between;
  }
  .footer-logo {
    grid-area: 1/1/2/2;
    place-self: flex-start;
  }
  .footer-nav {
    grid-area: 1/2/3/3;
    display: flex;
    gap: 5vw;
    align-items: start;
  }
  .footer-nav .list {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footer-nav .list a {
    font-size: 0.9375rem;
    line-height: 1.6;
    text-decoration: none;
    color: var(--background-color);
  }
  .footer-nav .list a:hover {
    text-decoration: underline;
  }
  .footer small {
    width: 100%;
    grid-area: 2/1/3/2;
    place-self: flex-end;
  }
}

.navigation {
  width: 100%;
  height: 100vh;
  padding: max(3vw, 30px);
  padding-block-start: 100px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  background-color: var(--background-color);
  position: fixed;
  top: 0;
  left: 0;
  gap: 30px;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms cubic-bezier(0.65, 0, 0.35, 1);
}
@media (orientation: landscape) {
  .navigation {
    padding-block-start: 80px;
    flex-direction: row;
  }
}
.nav-open .navigation {
  opacity: 1;
  pointer-events: visible;
}

.navigation-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (orientation: landscape) {
  .navigation-main {
    flex-direction: row;
  }
}
.navigation-list, .navigation-sub {
  padding: 0;
  list-style: none;
}
.navigation-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.navigation-list dt {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-color);
  opacity: 0.7;
}
.navigation-list dt:before, .navigation-list dt:after {
  content: "";
  width: 3px;
  height: 12px;
  display: block;
  box-sizing: border-box;
  border: 1px solid var(--text-color);
}
.navigation-list dt:before {
  border-inline-end: 0;
}
.navigation-list dt:after {
  border-inline-start: 0;
}
.navigation-list a {
  font-size: clamp(1.5rem, 0.8863636364rem + 1.7045454545vw, 2.25rem);
  line-height: 1.5;
  text-decoration: none;
}
.navigation-sub {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.navigation-sub a {
  font-size: clamp(0.8125rem, 0.7102272727rem + 0.2840909091vw, 0.9375rem);
  line-height: 1.5;
  text-decoration: none;
}
@media (orientation: landscape) {
  .navigation-sub a {
    font-size: clamp(0.8125rem, 0.7613636364rem + 0.1420454545vw, 0.875rem);
  }
}
@media screen and (min-width: 992px) {
  .navigation {
    display: none;
  }
}

/* --------------------------------- */
#fpjax-main {
  position: relative;
}
#fpjax-main:before {
  content: "";
  width: 100%;
  height: 100dvh;
  display: block;
  border: 5px solid var(--background-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  box-sizing: border-box;
  pointer-events: none;
  transition: height 250ms ease;
}
#fpjax-main:after {
  content: "";
  width: calc(100vw - 10px);
  height: calc(100dvh - 10px);
  display: block;
  border: 1px solid var(--text-color);
  border-radius: 10px;
  box-sizing: border-box;
  position: fixed;
  top: 5px;
  left: 5px;
  z-index: 99;
  pointer-events: none;
  transition: height 250ms ease;
}
@media screen and (min-width: 992px) {
  #fpjax-main:before {
    border: 10px solid var(--background-color);
  }
  #fpjax-main:after {
    width: calc(100vw - 20px);
    height: calc(100dvh - 20px);
    top: 10px;
    left: 10px;
  }
}
#fpjax-main #fpjax-target {
  position: relative;
  z-index: 0;
}

/* --------------------------------- */
.l-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.l-contents {
  width: 100%;
  max-width: 1800px;
  margin-inline: auto;
  padding-block-start: 55px;
  padding-block-end: clamp(80px, 20vw, 160px);
  padding-inline: var(--inner-padding);
  box-sizing: border-box;
}
.l-section {
  margin-block: max(15vw, 160px);
}
.l-tsec {
  margin-block-start: clamp(-100px, -15vw, -240px);
  margin-block-end: clamp(100px, 15vw, 240px);
  padding-block-start: clamp(100px, 15vw, 240px);
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 80px);
}
.l-tsec-group .copy {
  margin-block-start: 20px;
  font-size: clamp(1.25rem, 0.2272727273rem + 2.8409090909vw, 2.5rem);
  line-height: 1.4;
}
.l-tsec-group .text {
  margin-block-start: 40px;
  font-size: clamp(0.9375rem, 0.4772727273rem + 1.2784090909vw, 1.5rem);
  line-height: 1.6;
}
.l-tsec__title {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: repeat(2, auto);
  column-gap: clamp(20px, 4vw, 60px);
  position: relative;
  z-index: 1;
}
.l-tsec__title .number {
  grid-area: 1/1/2/2;
  font-size: clamp(0.625rem, 0.5227272727rem + 0.2840909091vw, 0.75rem);
  font-weight: 400;
}
.l-tsec__title .en {
  grid-area: 1/2/2/3;
  font-size: clamp(1.5rem, 0.2727272727rem + 3.4090909091vw, 3rem);
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1;
}
.l-tsec__title .jp {
  grid-area: 2/2/3/3;
  font-size: clamp(0.8125rem, 0.6590909091rem + 0.4261363636vw, 1rem);
  font-weight: 400;
}
@media screen and (min-width: 992px) {
  .l-contents {
    padding-block-start: 70px;
  }
  .l-tsec-group {
    display: grid;
    grid-template-columns: var(--grid-column-guide);
    grid-template-rows: repeat(2, auto);
    column-gap: var(--grid-gap);
  }
  .l-tsec__title {
    grid-area: 1/1/2/3;
  }
  .l-tsec .copy {
    margin-block-start: 0;
    grid-area: 1/5/2/13;
  }
  .l-tsec .text {
    grid-area: 2/5/3/13;
  }
  .l-tsec__title {
    grid-template-columns: auto auto 1fr;
    grid-template-rows: 1fr;
    column-gap: 0;
  }
  .l-tsec__title .number {
    padding-inline-end: clamp(20px, 4vw, 60px);
    grid-area: 1/1/2/2;
  }
  .l-tsec__title .en {
    padding-inline-end: 20px;
    grid-area: 1/2/2/3;
    font-size: clamp(1.5rem, 0.8863636364rem + 1.7045454545vw, 2.25rem);
  }
  .l-tsec__title .jp {
    grid-area: 1/3/2/4;
    font-size: clamp(0.8125rem, 0.7613636364rem + 0.1420454545vw, 0.875rem);
  }
  .l-tsec__title.turn {
    grid-template-columns: auto 1fr;
    grid-template-rows: repeat(2, auto);
  }
  .l-tsec__title.turn .number {
    grid-area: 1/1/2/2;
  }
  .l-tsec__title.turn .en {
    padding-inline-end: 0;
    grid-area: 1/2/2/3;
  }
  .l-tsec__title.turn .jp {
    grid-area: 2/2/3/3;
  }
}

/* --------------------------------- */
.p-head {
  width: 100%;
  height: clamp(240px, 30vw, 450px);
  display: flex;
  align-items: center;
}
.p-head__title {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1;
}
.p-head__title .en {
  font-size: clamp(3rem, 0.5454545455rem + 6.8181818182vw, 6rem);
  text-transform: uppercase;
  font-weight: 300;
}
.p-head__title .jp {
  font-size: clamp(0.875rem, 0.5681818182rem + 0.8522727273vw, 1.25rem);
  font-weight: 400;
}
.p-pagination {
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.p-pagination a {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: var(--border);
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 250ms ease;
}
.p-pagination a:hover, .p-pagination a.current {
  border-color: var(--text-color);
}
.p-pagination a svg {
  width: 12px;
  height: 10px;
  fill: var(--text-color);
}
.p-pagination a.next:before, .p-pagination a.prev:before {
  content: "";
  width: 12px;
  height: 9px;
  display: block;
  background-image: url(../../assets/images/common/icon_arrow2.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.p-pagination a.prev:before {
  transform: scale(-1, 1);
}
.p-pagination .current {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--text-color);
  border-radius: 5px;
  box-sizing: border-box;
}

/* --------------------------------- */
.c-button {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  font-size: 0.875rem;
  line-height: 1.6;
  text-decoration: none;
  transition: all 250ms ease;
}
.c-icon:before {
  content: "";
  width: 32px;
  height: 32px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  border: var(--border);
  border-radius: 5px;
  box-sizing: border-box;
  transition: all 250ms ease;
}
.c-icon:hover:before {
  border-color: var(--text-color);
}
.c-icon-arrow:before {
  background-image: url(../../assets/images/common/icon_arrow2.svg);
}
.c-icon-arrow.reverse:before {
  transform: scale(-1, 1);
}
.c-lang {
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.6;
}
.c-lang li:nth-child(1) {
  order: 0;
}
.c-lang li:nth-child(2) {
  order: 1;
}
.c-lang li:nth-child(3) {
  order: 2;
}
.c-lang li a {
  display: flex;
  position: relative;
  text-decoration: none;
  color: var(--background-color);
}
.c-lang li a:after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: var(--background-color);
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
}
.c-lang li a:hover:after, .c-lang li a.current:after {
  opacity: 1;
}
.c-lang:after {
  content: "/";
  color: var(--background-color);
}
.c-lang.bk li a {
  color: var(--text-color);
}
.c-lang.bk li a:after {
  background-color: var(--text-color);
}
.c-lang.bk:after {
  color: var(--text-color);
}
.c-checklist {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.c-checklist li {
  display: grid;
  grid-template-columns: 21px 1fr;
  gap: 10px;
  font-size: clamp(0.9375rem, 0.6818181818rem + 0.7102272727vw, 1.25rem);
  line-height: 1.5;
}
.c-checklist li:before {
  content: "";
  width: 21px;
  height: 22px;
  display: block;
  background-image: url(../../assets/images/common/icon_check.svg);
  background-size: 100% auto;
  position: relative;
}
@media screen and (min-width: 992px) {
  .c-checklist li:before {
    top: 3px;
  }
}
.c-notice {
  padding-inline: var(--inner-padding);
  list-style: none;
}
.c-notice li {
  padding-inline-start: 1em;
  text-indent: -1em;
  font-size: clamp(0.6875rem, 0.5852272727rem + 0.2840909091vw, 0.8125rem);
}
.c-notice li:before {
  content: "※";
}

/* --------------------------------- */
.u-grid-culumn-single {
  height: clamp(160px, 25vw, 320px);
}
@media screen and (min-width: 992px) {
  .u-grid-culumn-single {
    height: clamp(240px, 30vw, 400px);
    grid-template-columns: auto;
    justify-content: start;
  }
}
.u-unit-pd {
  padding-inline: var(--inner-padding);
}
.u-wrap br {
  display: none;
}
@media screen and (min-width: 992px) {
  .u-wrap br {
    display: block;
  }
  .u-wrap span {
    display: inline-block;
  }
}
.u-font-size-xm {
  font-size: clamp(0.75rem, 0.6477272727rem + 0.2840909091vw, 0.875rem);
}
.u-font-size-sm {
  font-size: clamp(0.875rem, 0.7727272727rem + 0.2840909091vw, 1rem);
}
.u-font-size-md {
  font-size: clamp(1rem, 0.7954545455rem + 0.5681818182vw, 1.25rem);
}
.u-font-size-lg {
  font-size: clamp(1.25rem, 1.0454545455rem + 0.5681818182vw, 1.5rem);
}
.u-font-size-xl {
  font-size: clamp(1.5rem, 1.1931818182rem + 0.8522727273vw, 1.875rem);
}

/* --------------------------------- */
.page-animation-cover {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  opacity: 1;
  pointer-events: none;
}
.page-animation-cover:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: var(--background-color);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.onLoadComplete .page-animation-cover {
  pointer-events: none;
}
.onLoadComplete .page-animation-cover:before {
  animation: endLoadingAnimation 1200ms cubic-bezier(0.85, 0, 0.15, 1) 200ms forwards;
}

.indicator {
  width: var(--frame-space);
  height: calc(100svh - var(--frame-space) * 2);
  position: absolute;
  top: var(--frame-space);
  left: 0;
}
.indicator-border {
  width: 100%;
  height: var(--load-progress);
  background-color: rgba(0, 0, 0, 0.05);
  transition: all 200ms ease;
}

html[data-loading=true] {
  cursor: wait;
}

@keyframes startLoadingAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes endLoadingAnimation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* --------------------------------- */
.bg-line {
  width: min(100% - 4vw, 100% - 40px);
  height: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: max(2vw, 20px);
  z-index: 0;
}
.bg-line:before, .bg-line:after,
.bg-line div {
  width: 1px;
  height: 100%;
  display: block;
  background-color: rgba(255, 255, 255, 0.1);
}
@media screen and (min-width: 992px) {
  .bg-line:before, .bg-line:after {
    content: "";
  }
}

.reflect {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}
.reflect-target {
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  transform: translateY(100%) rotate3d(0, 0, 1, 45deg);
  transform-origin: center;
  opacity: 0.1;
  filter: blur(50px);
  position: absolute;
  top: 100%;
}