@charset "UTF-8";
/* CSS Document */
.spmask {
  display: block;
}

.sponly {
  display: none;
}

@media (max-width: 767px) {
  .spmask {
    display: none;
  }
  .sponly {
    display: block;
  }
}
/*------------------------------*/
:root {
  --text: #1e1e1e;
  --navy: #000050;
  --orange: #e05020;
  --gray: #d1d1d1;
  --leading-trim: calc((1em - 1lh) / 2);
  --grad-toT: linear-gradient(to top, #002164 0%, #183d8a 100%);
  --external: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20,11a1,1,0,0,0-1,1v6a1,1,0,0,1-1,1H6a1,1,0,0,1-1-1V6A1,1,0,0,1,6,5h6a1,1,0,0,0,0-2H6A3,3,0,0,0,3,6V18a3,3,0,0,0,3,3H18a3,3,0,0,0,3-3V12A1,1,0,0,0,20,11Z"/><path d="M16,5h1.58l-6.29,6.28a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L19,6.42V8a1,1,0,0,0,1,1h0a1,1,0,0,0,1-1V4a1,1,0,0,0-1-1L16,3h0a1,1,0,0,0,0,2Z"/></svg>');
  --arrow: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 54"><path style="fill: none; stroke: %23888; stroke-linecap: round; stroke-linejoin: round; stroke-width: 4px;" d="M2 32 L52 32 L36 16"/></svg>');
}

/*------------------------------*/
body.no-scroll {
  overflow: hidden;
}

/*------------------------------*/
.back-to-top {
  /* 初期状態は非表示＆クリック無効（背景の要素を押せるように） */
  position: fixed;
  bottom: 2rem;
  right: 20px;
  opacity: 0;
  pointer-events: none;
  padding: 1.2rem 1.8rem;
  background-color: var(--navy);
  font-size: 1.4rem;
  color: #fff;
  border: none;
  border-radius: 0.6rem;
  cursor: pointer;
  z-index: 1000;
}
@media (hover: hover) and (pointer: fine) {
  .back-to-top:hover {
    opacity: 0.8 !important;
  }
}

/*------------------------------*/
#backgroundCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/*------------------------------*/
#preloader {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0;
  width: 100vw;
  height: 100%;
  background-color: #fff;
  z-index: 99999;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease, scale 0.6s ease;
}
#preloader::after {
  content: "";
  position: relative;
  z-index: 100000;
  isolation: isolate;
  display: block;
  width: 6rem;
  aspect-ratio: 1;
  background: url("../images/load.gif") no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  #preloader::after {
    width: 3rem;
  }
}
#preloader.view {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/*------------------------------*/
.inner {
  padding-inline: 2rem;
  max-width: calc(1100px + 4rem);
  margin-inline: auto;
}
.inner.narrow {
  max-width: calc(900px + 4rem);
}

.readText {
  font-kerning: normal;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  line-height: 2;
  text-align: justify;
  font-size: max(1.6rem, 14px);
}
@media screen and (max-width: 767px) {
  .readText {
    text-align: left;
  }
}
.readText.s {
  font-size: max(1.4rem, 12px);
}
.readText.trim {
  margin-block: calc((1em - 1lh) / 2);
}
.readText.alignCenter {
  text-align: center;
}

/*------------------------------*/
.hoverText {
  cursor: pointer;
  display: grid;
  place-content: center;
}
@media (hover: hover) and (pointer: fine) {
  .hoverText:hover span.is-hover, .hoverText:hover span.is-main {
    transform: translateY(-100%);
  }
}
.hoverText_Box {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 1.2em;
}
.hoverText_Box .is-main, .hoverText_Box .is-hover {
  transition: 0.3s ease;
  line-height: 1.2;
  font-weight: 500;
}

.borderLink {
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.25em;
       column-gap: 0.25em;
  flex-shrink: 0;
  border: 1px solid currentColor;
}
.borderLink::after {
  content: "";
  -webkit-mask-image: var(--arrow);
          mask-image: var(--arrow);
  display: inline-block;
  width: 1.6rem;
  aspect-ratio: 1;
  background-color: currentColor;
}
@media screen and (max-width: 767px) {
  .borderLink::after {
    width: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .borderLink {
    font-size: 1.6rem;
    padding-inline: 1rem;
  }
}

.underLink {
  font-size: 1.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 1em;
       column-gap: 1em;
  flex-shrink: 0;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.8rem;
}
.underLink::after {
  content: "";
  -webkit-mask-image: var(--arrow);
          mask-image: var(--arrow);
  display: inline-block;
  width: 1.6rem;
  aspect-ratio: 1;
  background-color: currentColor;
}
@media screen and (max-width: 767px) {
  .underLink::after {
    width: 1.4rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  section a:has(.hoverText):hover .hoverText span.is-hover, section a:has(.hoverText):hover .hoverText span.is-main {
    transform: translateY(-100%);
  }
}
section a:has(img) *:has(> img) {
  overflow: hidden;
  background-color: #fff;
}
section a:has(img) img {
  transition: scale 0.4s ease, opacity 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  section a:has(img):hover img {
    opacity: 0.7;
    scale: 1.03;
  }
}

/*------------------------------*/
span[data-inview] {
  display: inline-block;
}

[data-inview=slide-up] {
  translate: 0 100%;
}

[data-inview=fade-up] {
  opacity: 0;
  translate: 0 1rem;
}

[data-inview=clip-in] {
  --clip:100%;
  -webkit-clip-path: inset(0 var(--clip) 0 0);
          clip-path: inset(0 var(--clip) 0 0);
}
[data-inview=clip-in].toTop {
  -webkit-clip-path: inset(var(--clip) 0 0 0);
          clip-path: inset(var(--clip) 0 0 0);
}

[data-inview=image-clip-in] {
  --clip:100%;
  -webkit-clip-path: inset(0 var(--clip) 0 0);
          clip-path: inset(0 var(--clip) 0 0);
}
[data-inview=image-clip-in].toTop {
  -webkit-clip-path: inset(var(--clip) 0 0 0);
          clip-path: inset(var(--clip) 0 0 0);
}

[data-inview=image-in] {
  overflow: hidden;
}
[data-inview=image-in] img {
  opacity: 0;
  transform-origin: center;
  scale: 1.1;
}

[data-inview=pop-in] {
  opacity: 0;
  scale: 0.7;
}

[data-inview=elastic-in] {
  opacity: 0;
  scale: 0.3;
}

[data-inview=add-show-repeat] span {
  display: inline-block;
  opacity: 0;
}
[data-inview=add-show-repeat] span:nth-child(1) {
  -webkit-animation-delay: 0s !important;
          animation-delay: 0s !important;
}
[data-inview=add-show-repeat] span:nth-child(2) {
  -webkit-animation-delay: 0.065s !important;
          animation-delay: 0.065s !important;
}
[data-inview=add-show-repeat] span:nth-child(3) {
  -webkit-animation-delay: 0.126s !important;
          animation-delay: 0.126s !important;
}
[data-inview=add-show-repeat] span:nth-child(4) {
  -webkit-animation-delay: 0.184s !important;
          animation-delay: 0.184s !important;
}
[data-inview=add-show-repeat] span:nth-child(5) {
  -webkit-animation-delay: 0.24s !important;
          animation-delay: 0.24s !important;
}
[data-inview=add-show-repeat] span:nth-child(6) {
  -webkit-animation-delay: 0.292s !important;
          animation-delay: 0.292s !important;
}
[data-inview=add-show-repeat] span:nth-child(7) {
  -webkit-animation-delay: 0.342s !important;
          animation-delay: 0.342s !important;
}
[data-inview=add-show-repeat] span:nth-child(8) {
  -webkit-animation-delay: 0.39s !important;
          animation-delay: 0.39s !important;
}
[data-inview=add-show-repeat] span:nth-child(9) {
  -webkit-animation-delay: 0.434s !important;
          animation-delay: 0.434s !important;
}
[data-inview=add-show-repeat] span:nth-child(10) {
  -webkit-animation-delay: 0.477s !important;
          animation-delay: 0.477s !important;
}
[data-inview=add-show-repeat] span:nth-child(11) {
  -webkit-animation-delay: 0.518s !important;
          animation-delay: 0.518s !important;
}
[data-inview=add-show-repeat] span:nth-child(12) {
  -webkit-animation-delay: 0.557s !important;
          animation-delay: 0.557s !important;
}
[data-inview=add-show-repeat] span:nth-child(13) {
  -webkit-animation-delay: 0.594s !important;
          animation-delay: 0.594s !important;
}
[data-inview=add-show-repeat] span:nth-child(14) {
  -webkit-animation-delay: 0.629s !important;
          animation-delay: 0.629s !important;
}
[data-inview=add-show-repeat] span:nth-child(15) {
  -webkit-animation-delay: 0.662s !important;
          animation-delay: 0.662s !important;
}
[data-inview=add-show-repeat] span:nth-child(16) {
  -webkit-animation-delay: 0.694s !important;
          animation-delay: 0.694s !important;
}
[data-inview=add-show-repeat] span:nth-child(17) {
  -webkit-animation-delay: 0.723s !important;
          animation-delay: 0.723s !important;
}
[data-inview=add-show-repeat] span:nth-child(18) {
  -webkit-animation-delay: 0.751s !important;
          animation-delay: 0.751s !important;
}
[data-inview=add-show-repeat] span:nth-child(19) {
  -webkit-animation-delay: 0.778s !important;
          animation-delay: 0.778s !important;
}
[data-inview=add-show-repeat] span:nth-child(20) {
  -webkit-animation-delay: 0.804s !important;
          animation-delay: 0.804s !important;
}
[data-inview=add-show-repeat] span:nth-child(21) {
  -webkit-animation-delay: 0.829s !important;
          animation-delay: 0.829s !important;
}
[data-inview=add-show-repeat] span:nth-child(22) {
  -webkit-animation-delay: 0.852s !important;
          animation-delay: 0.852s !important;
}
[data-inview=add-show-repeat] span:nth-child(23) {
  -webkit-animation-delay: 0.874s !important;
          animation-delay: 0.874s !important;
}
[data-inview=add-show-repeat] span:nth-child(24) {
  -webkit-animation-delay: 0.895s !important;
          animation-delay: 0.895s !important;
}
[data-inview=add-show-repeat] span:nth-child(25) {
  -webkit-animation-delay: 0.915s !important;
          animation-delay: 0.915s !important;
}
[data-inview=add-show-repeat] span:nth-child(26) {
  -webkit-animation-delay: 0.933s !important;
          animation-delay: 0.933s !important;
}
[data-inview=add-show-repeat] span:nth-child(27) {
  -webkit-animation-delay: 0.951s !important;
          animation-delay: 0.951s !important;
}
[data-inview=add-show-repeat] span:nth-child(28) {
  -webkit-animation-delay: 0.968s !important;
          animation-delay: 0.968s !important;
}
[data-inview=add-show-repeat] span:nth-child(29) {
  -webkit-animation-delay: 0.985s !important;
          animation-delay: 0.985s !important;
}
[data-inview=add-show-repeat] span:nth-child(30) {
  -webkit-animation-delay: 1s !important;
          animation-delay: 1s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(1) {
  -webkit-animation-delay: 0s !important;
          animation-delay: 0s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(2) {
  -webkit-animation-delay: 0.001s !important;
          animation-delay: 0.001s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(3) {
  -webkit-animation-delay: 0.003s !important;
          animation-delay: 0.003s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(4) {
  -webkit-animation-delay: 0.006s !important;
          animation-delay: 0.006s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(5) {
  -webkit-animation-delay: 0.011s !important;
          animation-delay: 0.011s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(6) {
  -webkit-animation-delay: 0.018s !important;
          animation-delay: 0.018s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(7) {
  -webkit-animation-delay: 0.026s !important;
          animation-delay: 0.026s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(8) {
  -webkit-animation-delay: 0.035s !important;
          animation-delay: 0.035s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(9) {
  -webkit-animation-delay: 0.046s !important;
          animation-delay: 0.046s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(10) {
  -webkit-animation-delay: 0.058s !important;
          animation-delay: 0.058s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(11) {
  -webkit-animation-delay: 0.071s !important;
          animation-delay: 0.071s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(12) {
  -webkit-animation-delay: 0.086s !important;
          animation-delay: 0.086s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(13) {
  -webkit-animation-delay: 0.103s !important;
          animation-delay: 0.103s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(14) {
  -webkit-animation-delay: 0.121s !important;
          animation-delay: 0.121s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(15) {
  -webkit-animation-delay: 0.14s !important;
          animation-delay: 0.14s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(16) {
  -webkit-animation-delay: 0.161s !important;
          animation-delay: 0.161s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(17) {
  -webkit-animation-delay: 0.183s !important;
          animation-delay: 0.183s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(18) {
  -webkit-animation-delay: 0.206s !important;
          animation-delay: 0.206s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(19) {
  -webkit-animation-delay: 0.231s !important;
          animation-delay: 0.231s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(20) {
  -webkit-animation-delay: 0.258s !important;
          animation-delay: 0.258s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(21) {
  -webkit-animation-delay: 0.285s !important;
          animation-delay: 0.285s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(22) {
  -webkit-animation-delay: 0.315s !important;
          animation-delay: 0.315s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(23) {
  -webkit-animation-delay: 0.345s !important;
          animation-delay: 0.345s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(24) {
  -webkit-animation-delay: 0.377s !important;
          animation-delay: 0.377s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(25) {
  -webkit-animation-delay: 0.411s !important;
          animation-delay: 0.411s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(26) {
  -webkit-animation-delay: 0.446s !important;
          animation-delay: 0.446s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(27) {
  -webkit-animation-delay: 0.482s !important;
          animation-delay: 0.482s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(28) {
  -webkit-animation-delay: 0.52s !important;
          animation-delay: 0.52s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(29) {
  -webkit-animation-delay: 0.559s !important;
          animation-delay: 0.559s !important;
}
[data-inview=add-show-repeat].fast span:nth-child(30) {
  -webkit-animation-delay: 0.6s !important;
          animation-delay: 0.6s !important;
}
[data-inview=add-show-repeat].pop-text.show span {
  -webkit-animation: poyon 1.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
          animation: poyon 1.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transform-origin: center center;
  will-change: transform, opacity;
}
[data-inview=add-show-repeat].slide-up.show span {
  -webkit-animation: fuwari 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
          animation: fuwari 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transform-origin: center center;
  will-change: transform, opacity;
}

@-webkit-keyframes poyon {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  20% {
    transform: scale(1.4);
    opacity: 0.9;
  }
  40% {
    transform: scale(1.1, 0.9);
    opacity: 1;
  }
  60% {
    transform: scale(0.95, 1.05);
  }
  80%, 100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes poyon {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  20% {
    transform: scale(1.4);
    opacity: 0.9;
  }
  40% {
    transform: scale(1.1, 0.9);
    opacity: 1;
  }
  60% {
    transform: scale(0.95, 1.05);
  }
  80%, 100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fuwari {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fuwari {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/*------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  pointer-events: none;
}
.header a, .header button {
  pointer-events: auto;
}
.header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 8rem;
  padding-inline: 2rem;
  background-color: #fff;
  border-bottom: 1px solid var(--gray);
}
@media screen and (max-width: 767px) {
  .header .header-inner {
    height: 7rem;
    padding-inline: 2rem 0;
  }
}
.header .header-inner a.header-logo {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  flex-shrink: 0;
}
.header .header-inner a.header-logo h1 {
  width: 14rem;
}
@media screen and (max-width: 767px) {
  .header .header-inner a.header-logo h1 {
    width: 10rem;
  }
}
.header .header-inner a.header-logo p {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}
@media screen and (max-width: 767px) {
  .header .header-inner a.header-logo p {
    font-size: 1.2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header .header-inner a.header-logo {
    transition: opacity 0.1s;
  }
  .header .header-inner a.header-logo:hover {
    opacity: 0.6;
  }
}
.header .header-inner .header-wrap {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 1.6rem;
  font-weight: 500;
}
.header .header-inner .header-wrap .link-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 1.8125vw;
}
@media screen and (max-width: 767px) {
  .header .header-inner .header-wrap .link-container {
    display: none;
  }
}
.header .header-inner .header-wrap .link-container li {
  border-right: 1px solid currentColor;
}
.header .header-inner .header-wrap .link-container li:last-of-type {
  border-right: none;
}
.header .header-inner .header-wrap .link-container li a.navLink {
  padding-inline: min(1.8125vw, 3rem);
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
}
.header .header-inner .header-wrap .link-container li a.navLink:has(+ .option-list) {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.25em;
       column-gap: 0.25em;
}
.header .header-inner .header-wrap .link-container li a.navLink:has(+ .option-list)::after {
  content: "▼";
  font-size: 0.6em;
  display: inline-block;
  transition: rotate 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header .header-inner .header-wrap .link-container li a.navLink:has(+ .option-list):hover + .option-list, .header .header-inner .header-wrap .link-container li a.navLink:has(+ .option-list):hover + .option-list:hover {
    pointer-events: auto;
    translate: 0 0;
    transition: translate 0.8s ease -0.1s;
  }
  .header .header-inner .header-wrap .link-container li a.navLink:has(+ .option-list):hover::after {
    rotate: 180deg;
    transition: rotate 0.16s ease;
  }
}
.header .header-inner .header-wrap .link-container li a.navLink:has(+ .option-list:hover) span.is-main, .header .header-inner .header-wrap .link-container li a.navLink:has(+ .option-list:hover) span.is-hover {
  transform: translateY(-100%);
}
.header .header-inner .header-wrap .link-container li a.navLink:has(+ .option-list:hover)::after {
  rotate: 180deg;
}
.header .header-inner .header-wrap .link-container li a.navLink + .option-list {
  position: absolute;
  z-index: -1;
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  padding: 11rem 0 3rem;
  border-bottom: 1px solid var(--gray);
  background-color: rgba(255, 255, 255, 0.9333333333);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  translate: 0 -100%;
  pointer-events: auto;
  transition: translate 0.6s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header .header-inner .header-wrap .link-container li a.navLink + .option-list:hover {
    translate: 0 0;
  }
}
.header .header-inner .header-wrap .link-container li a.navLink + .option-list a.option {
  display: block;
}
.header .header-inner .header-wrap .link-container li a.navLink + .option-list a.option .image {
  overflow: hidden;
  width: 24rem;
}
.header .header-inner .header-wrap .link-container li a.navLink + .option-list a.option .image img {
  transition: scale 0.6s ease, opacity 0.2s;
}
.header .header-inner .header-wrap .link-container li a.navLink + .option-list a.option p {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 0.35em;
  line-height: 1.35;
}
.header .header-inner .header-wrap .link-container li a.navLink + .option-list a.option p::first-letter {
  font-size: 1.5em;
  color: var(--orange);
}
@media (hover: hover) and (pointer: fine) {
  .header .header-inner .header-wrap .link-container li a.navLink + .option-list a.option:hover img {
    scale: 1.05;
    opacity: 0.8;
  }
}
.header .header-inner .header-wrap .header-requirements {
  color: #fff;
  width: 18rem;
  height: 5.4rem;
  font-size: 1.6rem;
  background-color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.25em;
       column-gap: 0.25em;
  flex-shrink: 0;
}
.header .header-inner .header-wrap .header-requirements span.spnone {
  display: inline;
}
@media screen and (max-width: 767px) {
  .header .header-inner .header-wrap .header-requirements span.spnone {
    display: none;
  }
}
.header .header-inner .header-wrap .header-requirements::after {
  content: "";
  -webkit-mask-image: var(--arrow);
          mask-image: var(--arrow);
  display: inline-block;
  width: 1.6rem;
  aspect-ratio: 1;
  background-color: currentColor;
}
@media screen and (max-width: 767px) {
  .header .header-inner .header-wrap .header-requirements::after {
    width: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .header .header-inner .header-wrap .header-requirements {
    font-size: 1.6rem;
    height: 4.8rem;
    width: auto;
    padding-inline: 1rem;
  }
}
.header #menuBtn {
  display: none;
  width: 7rem;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .header #menuBtn {
    display: block;
  }
}
.header #menuBtn .bar {
  width: 42.5%;
  height: 1px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: center center;
  border-radius: 1px;
  margin-bottom: -1px;
  background-color: var(--text);
}
.header #menuBtn .bar.top {
  top: 34%;
  transition: all 0.3s;
}
.header #menuBtn .bar.mid {
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s;
}
.header #menuBtn .bar.bottom {
  bottom: 34%;
  transition: all 0.3s;
}
.header #menuBtn.active .bar.top {
  transform: translate(-50%, -0.5px) rotate(45deg);
  transition: all 0.3s;
  top: 50%;
}
.header #menuBtn.active .bar.mid {
  opacity: 0;
  transition: all 0.2s;
}
.header #menuBtn.active .bar.bottom {
  transform: translate(-50%, 0) rotate(-45deg);
  transition: all 0.3s;
  bottom: 50%;
}

/*------------------------------*/
#menu {
  display: none;
  position: fixed;
  inset: 0;
  height: 100lvh;
  z-index: 1000;
  overflow: hidden;
  overscroll-behavior: contain;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0s 0.5s, visibility 0s 0.5s;
}
@media screen and (max-width: 767px) {
  #menu {
    display: block;
  }
}
#menu.open {
  visibility: visible;
  pointer-events: all;
  overflow-y: auto;
  opacity: 1;
  transition: opacity 0.6s ease;
}
#menu.open .menu-wrap {
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
#menu.open::after {
  scale: 1;
  transition: scale 0s;
}
#menu::after {
  content: "";
  display: block;
  position: fixed;
  z-index: 0;
  inset: 0;
  background-color: #fff;
  transform-origin: top;
  scale: 1 0;
  transition: scale 0.3s ease 0.2s;
}
#menu .menu-wrap {
  padding-inline: 2rem;
  padding-block: 8rem 10rem;
  position: relative;
  z-index: 1;
  transform: translateY(1rem);
  opacity: 0;
  transition: opacity 0.2s, transform 0s 0.2s;
}
#menu .menu-wrap li {
  border-bottom: 1px solid var(--gray);
  padding-block: 3rem 3.5rem;
}
#menu .menu-wrap li:nth-of-type(4), #menu .menu-wrap li:last-of-type {
  border-bottom: none;
}
#menu .menu-wrap li .category p.en {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--orange);
}
#menu .menu-wrap li a.navLink {
  display: flex;
  align-items: center;
}
#menu .menu-wrap li a.navLink::before {
  content: "-";
  display: inline-block;
  margin-right: 0.5em;
}
#menu .menu-wrap li a.navLink + a.navLink {
  margin-top: 2.5rem;
}
#menu .menu-wrap li a.navLink.privacy {
  color: #6f6f6f;
}
#menu .menu-wrap .menu-group {
  display: grid;
  padding-top: 5rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
#menu .menu-wrap .menu-group a {
  display: inline-block;
  box-shadow: 0 0 10px -3px var(--gray);
}

/*------------------------------*/
.footer {
  border-top: 1px solid var(--gray);
  padding-top: 6rem;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 0;
  }
}
.footer .footer-top {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer .footer-top {
    display: none;
  }
}
.footer .footer-top a.footer-logo {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.footer .footer-top a.footer-logo div {
  width: 14rem;
}
.footer .footer-top a.footer-logo p {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}
@media (hover: hover) and (pointer: fine) {
  .footer .footer-top a.footer-logo {
    transition: opacity 0.1s;
  }
  .footer .footer-top a.footer-logo:hover {
    opacity: 0.6;
  }
}
.footer .footer-top .footer-requirements {
  color: #fff;
  width: 18rem;
  height: 5rem;
  font-size: 1.6rem;
  background-color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.25em;
       column-gap: 0.25em;
}
.footer .footer-top .footer-requirements::after {
  content: "";
  -webkit-mask-image: var(--arrow);
          mask-image: var(--arrow);
  display: inline-block;
  width: 1.6rem;
  aspect-ratio: 1;
  background-color: currentColor;
}
.footer .footer-link {
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
  margin-inline: auto 0;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .footer .footer-link {
    display: none;
  }
}
.footer .footer-link li {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.footer .footer-link li p.en {
  color: var(--orange);
  font-size: 1.4rem;
}
.footer .footer-link li p.ja {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0.25em;
  margin-bottom: 4rem;
}
.footer .footer-link li a.navLink {
  display: inline-block;
  padding-bottom: 0.35em;
  border-bottom: 1px solid var(--gray);
  font-size: 1.4rem;
}
.footer .footer-link li a.navLink + a.navLink {
  margin-top: 2rem;
}
.footer .footer-group {
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 1.6rem;
       column-gap: 1.6rem;
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .footer .footer-group {
    display: none;
  }
}
.footer .footer-group a {
  display: inline-block;
  box-shadow: 0 0 10px -3px var(--gray);
  transition: box-shadow 0.1s ease;
  width: 16%;
}
.footer .footer-group a img {
  transition: opacity 0.1s;
}
@media (hover: hover) and (pointer: fine) {
  .footer .footer-group a:hover {
    box-shadow: 0 0 15px -3px var(--navy);
  }
  .footer .footer-group a:hover img {
    opacity: 0.7;
  }
}
.footer .copyright-wrap {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .footer .copyright-wrap {
    margin-top: 0;
  }
}
.footer .copyright-wrap p {
  font-size: 1.2rem;
  text-align: right;
  padding-block: 1.4rem;
}
@media screen and (max-width: 767px) {
  .footer .copyright-wrap p {
    text-align: center;
  }
}

/*------------------------------*/
.notFound {
  padding-top: 8rem;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .notFound {
    padding-top: 7rem;
    height: 100svh;
  }
}
.notFound .inner {
  height: 100%;
  padding-block: 3rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .notFound .inner {
    padding-block: 0 6rem;
  }
}
.notFound .notFound-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 500px;
}
.notFound .notFound-wrap p.en {
  font-size: 4.8rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .notFound .notFound-wrap p.en {
    zoom: 0.75;
  }
}
.notFound .notFound-wrap p.num {
  font-size: 21rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .notFound .notFound-wrap p.num {
    zoom: 0.75;
  }
}
.notFound .notFound-wrap p.text {
  font-size: 2.1rem;
  font-weight: 600;
  text-align: center;
  line-height: 2.1;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .notFound .notFound-wrap p.text {
    zoom: 0.75;
    margin-top: 1rem;
  }
}
.notFound .notFound-wrap a {
  border: 1px solid var(--gray);
  width: 34rem;
  height: 6rem;
  margin-top: 6rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .notFound .notFound-wrap a {
    width: 100%;
    margin-top: 4rem;
  }
}
/*# sourceMappingURL=common.css.map */