<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS Document */
.spmask {
  display: block;
}

.sponly {
  display: none;
}

@media (max-width: 767px) {
  .spmask {
    display: none;
  }
  .sponly {
    display: block;
  }
}
/*------------------------------*/
:root {
  --text: #131313;
  --main: #0a3579;
  --shadow: #8c9ea1;
  --gray: #e5e9ee;
  --blue: #eff3f8;
  --leading-trim: calc((1em - 1lh) / 2);
  --external: url('data:image/svg+xml,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"&gt;&lt;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"/&gt;&lt;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"/&gt;&lt;/svg&gt;');
  --arrow: url('data:image/svg+xml,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"&gt;&lt;path style="fill: none; stroke: %23888; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2px;" d="M7 24 L41 24 L35 18 M41 24 L35 30"/&gt;&lt;/svg&gt;');
}

/*------------------------------*/
#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: 7rem;
  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;
}
@media screen and (max-width: 767px) {
  .inner {
    padding-inline: 1.5rem;
  }
}
.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);
  font-family: "Noto Sans jp";
}
@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;
}

/*------------------------------*/
.shadowLink {
  display: grid;
  place-content: center;
  width: 5rem;
  aspect-ratio: 1;
  border-radius: 100vmax;
  background-color: #fff;
  box-shadow: 0 0 8px -3px var(--shadow);
  transition: box-shadow 0.1s ease;
}
.shadowLink .arrow {
  width: 2rem;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.shadowLink .arrow::before, .shadowLink .arrow::after {
  content: "";
  background-color: var(--main);
  -webkit-mask-image: var(--arrow);
          mask-image: var(--arrow);
  background-size: contain;
  display: inline-block;
  width: 100%;
  aspect-ratio: 1;
  transition: translate 0s;
}
.shadowLink .arrow::before {
  position: absolute;
  right: 200%;
}

@media (hover: hover) and (pointer: fine) {
  a:has(.shadowLink):hover .shadowLink {
    transition: box-shadow 0.2s ease;
    box-shadow: 0 0 15px -3px var(--main);
  }
  a:has(.shadowLink):hover .shadowLink .arrow::before, a:has(.shadowLink):hover .shadowLink .arrow::after {
    transition: translate 0.4s ease;
    translate: 200% 0;
  }
}

.borderLink {
  display: grid;
  place-content: center;
  width: 5rem;
  aspect-ratio: 1;
  border-radius: 100vmax;
  border: 1px solid #fff;
  background-color: transparent;
  transition: box-shadow 0.1s ease;
}
.borderLink .arrow {
  width: 2rem;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.borderLink .arrow::before, .borderLink .arrow::after {
  content: "";
  background-color: #fff;
  -webkit-mask-image: var(--arrow);
          mask-image: var(--arrow);
  background-size: contain;
  display: inline-block;
  width: 100%;
  aspect-ratio: 1;
  transition: translate 0s;
}
.borderLink .arrow::before {
  position: absolute;
  right: 200%;
}
.borderLink .external {
  width: 2rem;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.borderLink .external::after {
  content: "";
  background-color: #fff;
  -webkit-mask-image: var(--external);
          mask-image: var(--external);
  background-size: contain;
  display: inline-block;
  width: 100%;
  aspect-ratio: 1;
}

@media (hover: hover) and (pointer: fine) {
  a:has(.borderLink):hover .borderLink {
    box-shadow: 0 0 15px -3px #fff;
    transition: box-shadow 0.2s ease;
  }
  a:has(.borderLink):hover .borderLink .arrow::before, a:has(.borderLink):hover .borderLink .arrow::after {
    transition: translate 0.4s ease;
    translate: 200% 0;
  }
}

a:has(img) div:has(&gt; img) {
  overflow: hidden;
  background-color: #fff;
}
a:has(img) img {
  transform-origin: center;
  pointer-events: none;
  transition: scale 0.3s ease, opacity 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  a:has(img):hover img {
    scale: 1.04;
    opacity: 0.9;
    transition: scale 0.4s ease, opacity 0.2s ease;
  }
}

a:has(.hoverText) .hoverText {
  position: relative;
  transition: opacity 0.1s;
}
a:has(.hoverText) .hoverText::before {
  content: "";
  display: block;
  background-color: currentColor;
  position: absolute;
  bottom: -0.3rem;
  height: 1px;
  width: 100%;
  scale: 0 1;
  transform-origin: right;
  transition: scale 0.05s ease;
}
a:has(.hoverText).comingsoon {
  pointer-events: none;
  opacity: 0.25;
}
a:has(.hoverText).external::after {
  content: "";
  background-color: currentColor;
  -webkit-mask-image: var(--external);
          mask-image: var(--external);
  background-size: contain;
  display: inline-block;
  width: 1em;
  aspect-ratio: 1;
  margin-left: -0.25em;
  margin-top: -0.1em;
}
@media (hover: hover) and (pointer: fine) {
  a:has(.hoverText):hover .hoverText {
    opacity: 0.6;
  }
  a:has(.hoverText):hover .hoverText::before {
    scale: 1 1;
    transform-origin: left;
    transition: scale 0.1s cubic-bezier(0.41, 0.02, 0.09, 0.99);
  }
}

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

[data-inview=roll-in] {
  opacity: 0;
  transform-origin: right bottom;
  translate: 0 4rem;
  rotate: -1.5deg;
}

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

[data-inview=fade-left] {
  opacity: 0;
  translate: 10% 0;
}

[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=add-show-repeat] span {
  display: inline-block;
  opacity: 0;
  text-indent: 0px;
  overflow: visible;
}
[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.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
          animation: poyon 1.2s 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: 2rem;
  left: 4rem;
  right: 4rem;
  z-index: 1001;
  border-radius: 100vmax;
  box-shadow: 0 0 15px -8px var(--shadow);
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .header {
    left: 1.5rem;
    right: 1.5rem;
    top: 1.5rem;
  }
}
.header .header-wrap {
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 4rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .header .header-wrap {
    padding-inline: 2.4rem 0.6rem;
    height: 6rem;
  }
}
.header .header-wrap .logo-wrap {
  display: flex;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .header .header-wrap .logo-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
.header .header-wrap .logo-wrap a h1 {
  width: 7.2rem;
}
@media screen and (max-width: 767px) {
  .header .header-wrap .logo-wrap a h1 {
    width: 6.4rem;
  }
}
.header .header-wrap .logo-wrap a h1 img {
  scale: 1;
}
@media (hover: hover) and (pointer: fine) {
  .header .header-wrap .logo-wrap a {
    transition: opacity 0.1s;
  }
  .header .header-wrap .logo-wrap a:hover {
    opacity: 0.8;
  }
}
.header .header-wrap .logo-wrap p {
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  -moz-column-gap: 0.25em;
       column-gap: 0.25em;
}
@media screen and (max-width: 767px) {
  .header .header-wrap .logo-wrap p {
    font-size: 1rem;
    padding-top: 0.2rem;
    line-height: 1.3;
    white-space: nowrap;
  }
}
.header .header-wrap .logo-wrap p::before, .header .header-wrap .logo-wrap p::after {
  content: "-";
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .header .header-wrap .logo-wrap p::before, .header .header-wrap .logo-wrap p::after {
    display: none;
  }
}
.header .header-wrap .nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header .header-wrap .nav-wrap .req-wrap {
  display: none;
  align-items: center;
}
@media screen and (max-width: 1380px) {
  .header .header-wrap .nav-wrap .req-wrap {
    display: flex;
  }
}
.header .header-wrap .nav-wrap .req-wrap a {
  display: inline-block;
  padding-inline: 1.6rem;
  padding-block: 1em;
  margin-inline: 1.6rem;
}
@media screen and (max-width: 767px) {
  .header .header-wrap .nav-wrap .req-wrap a {
    padding-inline: 1.2rem;
    margin-inline: 0;
    padding-block: 0.7rem 0.5rem;
  }
}
.header .header-wrap .nav-wrap .req-wrap a span.hoverText {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .header .header-wrap .nav-wrap .req-wrap a span.hoverText {
    font-size: 1.1rem;
    line-height: 1.4;
    display: inline-block;
    color: #2d2d2d;
  }
  .header .header-wrap .nav-wrap .req-wrap a span.hoverText::before {
    display: none;
  }
}
.header .header-wrap .nav-wrap .req-wrap .vr {
  height: 2rem;
  width: 1px;
  background-color: var(--text);
}
@media screen and (max-width: 767px) {
  .header .header-wrap .nav-wrap .req-wrap .vr {
    height: 2.7rem;
    background-color: #2d2d2d;
  }
}
.header #menuBtn {
  width: 7rem;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .header #menuBtn {
    width: 6rem;
  }
}
.header #menuBtn .bar {
  width: 42.5%;
  height: 2px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: center center;
  border-radius: 100vmax;
  margin-bottom: -1px;
  background-color: #2d2d2d;
}
.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%, -1px) 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 {
  position: fixed;
  inset: 10.5rem 4rem auto;
  z-index: 1000;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0s 0.2s, visibility 0s 0.2s;
}
@media screen and (max-width: 767px) {
  #menu {
    inset: 8.5rem 1.5rem auto;
  }
}
#menu.open {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
  transition: opacity 0s, visibility 0s;
}
#menu.open .link-container {
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
#menu.open::after {
  scale: 1;
  transition: scale 0s;
}
#menu .link-container {
  position: relative;
  overscroll-behavior: contain;
  overflow-y: auto;
  z-index: 1;
  transform: translateY(2rem);
  opacity: 0;
  max-height: calc(100lvh - 10.5rem - 2rem);
  transition: opacity 0.2s, transform 0s 0.2s;
  padding: 5rem 6rem 6rem;
  background-color: #fff;
  border-radius: 3rem;
  box-shadow: 0 0 15px -8px var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, auto);
  grid-template-rows: repeat(2, auto);
  justify-content: flex-start;
  gap: 8rem min(3.75vw, 80px);
}
@media screen and (max-width: 767px) {
  #menu .link-container {
    padding: 4rem 3rem 10rem;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, auto);
    gap: 4rem 0;
    max-height: calc(100dvh - 8.5rem - 2rem);
    border-radius: 2rem;
  }
}
#menu .link-container li {
  color: var(--main);
}
#menu .link-container li:nth-of-type(4) {
  grid-area: 2/3;
}
@media screen and (max-width: 767px) {
  #menu .link-container li:nth-of-type(4) {
    grid-area: auto;
  }
}
#menu .link-container li:nth-of-type(6) {
  grid-area: 2/4;
}
@media screen and (max-width: 767px) {
  #menu .link-container li:nth-of-type(6) {
    grid-area: auto;
  }
}
#menu .link-container li p.title {
  font-size: min(2.5vw, 36px);
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 0.075em;
  padding-bottom: 0.1em;
  border-bottom: 1px dotted currentColor;
}
@media screen and (max-width: 767px) {
  #menu .link-container li p.title {
    font-size: 2.8rem;
    padding-bottom: 0.3em;
    margin-bottom: 1.5rem;
  }
}
#menu .link-container li a.navLink {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  padding-block: 0.5rem;
}
#menu .link-container li a.navLink + a.navLink {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  #menu .link-container li a.navLink + a.navLink {
    margin-top: 1.5rem;
  }
}
#menu .link-container li a.navLink span {
  font-size: 1.4rem;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  white-space: nowrap;
}
#menu .link-container li a.navLink::before {
  content: "";
  display: inline-block;
  background-color: currentColor;
  width: 0.4rem;
  height: 0.2rem;
}

/*------------------------------*/
.aside-link {
  position: fixed;
  z-index: 1002;
  right: 0;
  top: calc(10rem + (100vh - 12rem) / 2 - 9rem);
}
@media screen and (max-width: 1380px) {
  .aside-link {
    display: none;
  }
}
.aside-link .link-wrap a {
  display: grid;
  place-content: center;
  height: 9rem;
  width: 12rem;
  position: relative;
  background-color: #fff;
}
.aside-link .link-wrap a span {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  position: relative;
  z-index: 1;
  transition: 0.1s;
}
.aside-link .link-wrap a::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  transform-origin: left;
  transition: 0.25s ease;
}
.aside-link .link-wrap a.newgra {
  border: 1px solid var(--main);
}
.aside-link .link-wrap a.newgra::after {
  background-color: var(--main);
}
.aside-link .link-wrap a.career {
  border: 1px solid #2d2d2d;
}
.aside-link .link-wrap a.career::after {
  background-color: #2d2d2d;
}
@media (hover: hover) and (pointer: fine) {
  .aside-link .link-wrap a:hover.newgra span {
    color: var(--main);
  }
  .aside-link .link-wrap a:hover.career span {
    color: #2d2d2d;
  }
  .aside-link .link-wrap a:hover::after {
    scale: 0 1;
    opacity: 0.9;
  }
}

/*------------------------------*/
.footer {
  background-color: var(--main);
  padding-block: 10rem 0;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-block: 0;
  }
}
.footer .footer-wrap {
  color: #fff;
  position: relative;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .footer .footer-wrap {
    display: none;
  }
}
.footer .footer-wrap .link-container {
  display: grid;
  grid-template-columns: repeat(4, auto);
  grid-template-rows: repeat(2, auto);
  justify-content: flex-end;
  gap: 6rem 8rem;
}
.footer .footer-wrap .link-container li:nth-of-type(4) {
  grid-area: 2/3;
}
.footer .footer-wrap .link-container li:nth-of-type(6) {
  grid-area: 2/4;
}
.footer .footer-wrap .link-container li p.title {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 0.075em;
}
.footer .footer-wrap .link-container li a.navLink {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  padding-block: 0.5rem;
}
.footer .footer-wrap .link-container li a.navLink + a.navLink {
  margin-top: 1rem;
}
.footer .footer-wrap .link-container li a.navLink span {
  font-size: 1.4rem;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}
.footer .footer-wrap .link-container li a.navLink::before {
  content: "";
  display: inline-block;
  background-color: currentColor;
  width: 0.4rem;
  height: 0.2rem;
}
.footer .footer-wrap .logo-wrap {
  position: absolute;
  bottom: 8rem;
  left: 0;
}
.footer .footer-wrap .logo-wrap a {
  display: block;
  width: 8rem;
}
.footer .footer-wrap .logo-wrap a img {
  scale: 1;
}
@media (hover: hover) and (pointer: fine) {
  .footer .footer-wrap .logo-wrap a {
    transition: opacity 0.1s;
  }
  .footer .footer-wrap .logo-wrap a:hover {
    opacity: 0.8;
  }
}
.footer .footer-wrap .logo-wrap p.ja {
  font-weight: 600;
  font-size: 2.4rem;
  margin-top: 2rem;
}
.footer .footer-wrap .logo-wrap p.en {
  font-size: 1.4rem;
  font-weight: 300;
  margin-top: 1rem;
}
.footer .footer-copyright {
  background-color: #fff;
  padding-block: 1.5rem;
}
@media screen and (max-width: 767px) {
  .footer .footer-copyright {
    background-color: var(--main);
    padding-block: 1.2rem;
  }
}
.footer .footer-copyright p {
  font-size: 1.4rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .footer .footer-copyright p {
    font-size: 1.2rem;
    color: #fff;
  }
}

/*------------------------------*/
/*------------------------------*/
.subpage-mv {
  background-color: var(--gray);
  height: 42rem;
  padding-top: 7rem;
}
@media screen and (max-width: 767px) {
  .subpage-mv {
    height: 26rem;
  }
}
.subpage-mv .title-wrap {
  padding-inline: 2rem;
  color: var(--main);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .subpage-mv .title-wrap {
    padding-inline: 1.5rem;
  }
}
.subpage-mv .title-wrap p.en {
  font-size: 9.6rem;
  font-weight: 700;
  font-style: italic;
  text-indent: 0px;
}
@media screen and (max-width: 767px) {
  .subpage-mv .title-wrap p.en {
    font-size: 5.4rem;
    text-align: center;
  }
}
.subpage-mv .title-wrap h2 {
  font-weight: 500;
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .subpage-mv .title-wrap h2 {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .subpage-mv .title-wrap h2 span {
    padding-right: 0.2em;
    margin-right: -0.2em;
  }
}

/*------------------------------*/
/*------------------------------*/
.not-found {
  padding-block: 6rem 14rem;
}
@media screen and (max-width: 767px) {
  .not-found {
    padding-block: 4rem 8rem;
  }
}
.not-found p.readText {
  line-height: 2.1;
}
@media screen and (max-width: 767px) {
  .not-found p.readText.alignCenter {
    text-align: left;
  }
}
.not-found .wrap {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .not-found .wrap {
    margin-bottom: 2rem;
  }
}
.not-found a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  text-align: center;
  background-color: var(--main);
  border-radius: 2rem;
  display: grid;
  place-content: center;
  width: 68rem;
  padding-block: 4rem;
  margin-inline: auto;
  margin-top: 8rem;
  border: 1px solid var(--main);
  transition: 0.1s;
}
.not-found a span {
  font-size: 0.75em;
}
@media (hover: hover) and (pointer: fine) {
  .not-found a:hover {
    color: var(--main);
    background-color: #fff;
    box-shadow: 0 0 12px -3px var(--main);
  }
}
@media screen and (max-width: 767px) {
  .not-found a {
    width: 100%;
    padding-block: 2.5rem;
    margin-top: 5rem;
  }
}
/*# sourceMappingURL=common.css.map */</pre></body></html>