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

.sponly {
  display: none;
}

@media (max-width: 767px) {
  .spmask {
    display: none;
  }
  .sponly {
    display: block;
  }
}
/*------------------------------*/
:root {
  --text: #252525;
  --gray: #e8e8e8;
  --main: #0a3579;
  --shadow: #8c9ea1;
  --line: #bcbcbc;
  --blue: #eff3f8;
  --leading-trim: calc((1em - 1lh) / 2);
  --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 48 48"><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"/></svg>');
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

header, main, footer {
  margin-block: 0;
}

main > :first-child {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}

main > :last-child {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

.inner {
  padding-inline: 2rem;
  max-width: calc(1100px + 4rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    padding-inline: 2rem;
  }
}
.inner.narrow {
  max-width: calc(900px + 4rem);
}

.readText {
  font-kerning: normal;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  line-height: 1.6;
  text-align: justify;
  font-size: max(1.4rem, 14px);
  font-family: "Noto Sans jp";
}
@media screen and (max-width: 767px) {
  .readText {
    text-align: left;
  }
}
.readText.alignCenter {
  text-align: center;
}

/*----------Loading----------*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10001;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-animation: fadeOut 1s 2s forwards;
          animation: fadeOut 1s 2s forwards;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.loading_logo {
  opacity: 0;
  -webkit-animation: logo_fade 1.5s 0.5s forwards;
          animation: logo_fade 1.5s 0.5s forwards;
  width: 12rem;
}

@-webkit-keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  60% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
  }
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  60% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
  }
}
/*------------------------------*/
.sub_loading {
  background-color: #fff;
  content: "";
  position: fixed;
  z-index: 10001;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -webkit-animation-name: PageAnime-fade;
          animation-name: PageAnime-fade;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  pointer-events: none;
}

@-webkit-keyframes PageAnime-fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

@keyframes PageAnime-fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
/*------------------------------*/
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);
  }
  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);
  }
  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;
  }
}
/*------------------------------
　　　マウスオーバー
------------------------------*/
#mouse-stalker {
  -webkit-transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.2s;
  -webkit-transition-timing-function: ease-out;
  z-index: 9999;
  position: fixed;
  top: -10px;
  left: -10px;
  width: 20px;
  height: 20px;
  transform: translate(0, 0);
  border-radius: 50%;
  background: rgba(37, 37, 37, 0.3);
  pointer-events: none;
  transition: transform 0.2s;
  transition-timing-function: ease-out;
}

@media (max-width: 767px) {
  #mouse-stalker {
    display: none;
  }
}
#mouse-stalker.is_active {
  -webkit-transition: 0.2s;
  top: -40px;
  left: -40px;
  width: 80px;
  height: 80px;
  background: rgba(37, 37, 37, 0.6);
  transition: 0.2s;
}

#mouse-stalker.is_active::before {
  -webkit-transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color: #fff;
  font-family: "Oswald" sans-serif;
  font-size: 14px;
  line-height: 1.1;
  text-align: center;
  content: "View More";
}

/*------------------------------*/
.header {
  position: fixed;
  width: 100%;
  height: 8rem;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .header {
    height: 6rem;
  }
}
.header .logo {
  position: relative;
  width: 23rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-block: 3rem;
  padding-left: 3rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .header .logo {
    width: 16rem;
    padding-block: 2rem;
    padding-left: 1rem;
  }
}
.header .logo a {
  width: 100%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .header .logo a {
    width: 100%;
  }
}
.header .main-nav {
  position: relative;
  width: 100%;
  margin: -5rem auto 0;
  padding-block: 0 3rem;
}
@media screen and (max-width: 767px) {
  .header .main-nav {
    display: none;
  }
}
.header .main-nav ul.list {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 4rem;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.header .main-nav li {
  padding-left: 5rem;
}
.header .main-nav li a {
  font-size: 1.6rem;
  font-weight: 400;
  transition: 0.3s;
  font-feature-settings: "palt";
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: #252525;
  cursor: pointer;
}
.header .main-nav li a.noLink {
  pointer-events: none;
  color: #bcbcbc;
}
.header .sns {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  padding-inline: 4.5rem;
}
@media screen and (max-width: 767px) {
  .header .sns {
    padding-inline: 0;
    -moz-column-gap: 1.6rem;
         column-gap: 1.6rem;
    margin-top: -0.3rem;
  }
}
.header .sns a {
  width: 2.8rem;
  display: block;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .header .sns a {
    width: 2.4rem;
  }
}
.header .sns a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .header .scrolldown {
    display: none;
  }
}
.header .scrolldown .scroll {
  opacity: 1;
}
.header .scrolldown .scroll img.circle {
  z-index: 999;
  position: absolute;
  left: calc(100% - 10rem);
  top: calc(100% - 15rem);
  transform: translateY(-50%) translateX(-50%);
  width: 7.5rem;
  -webkit-animation: scrollCircle 10s linear infinite;
          animation: scrollCircle 10s linear infinite;
}
@media screen and (max-width: 767px) {
  .header .scrolldown .scroll img.circle {
    top: 34rem;
    left: 1rem;
    bottom: auto;
    width: 24%;
    height: auto;
  }
}
.header .scrolldown .scroll img.arrow {
  z-index: 1000;
  position: absolute;
  left: calc(100% - 6.2rem);
  top: calc(100% - 11.2rem);
  transform: translateY(-50%) translateX(-50%);
  width: 7.5rem;
}
@media screen and (max-width: 767px) {
  .header .scrolldown .scroll img.arrow {
    top: 38.6rem;
    left: 5.4rem;
    bottom: auto;
    height: auto;
  }
}
.header #menuBtn {
  display: none;
}
@media screen and (max-width: 767px) {
  .header #menuBtn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 6rem;
    height: 6rem;
    z-index: 1001;
  }
}
.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: #252525;
}
.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%;
}
.header .sp_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
.header .sp_nav_inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 4rem 1.5rem 1rem;
  margin: 0 0 0 auto;
  overflow: scroll;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.header .sp_nav_menu {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding-block: 3rem;
  padding-left: 0;
  border-bottom: solid 1px var(--line);
}
.header .sp_nav_menu:first-of-type {
  padding-top: 3rem;
}
.header .sp_nav_menu:last-of-type {
  border-bottom: none;
}
.header .sp_nav_link {
  display: block;
  color: black;
  text-decoration: none;
  text-align: center;
  padding: 1rem;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.6;
}
.header .sp_nav_link.noLink {
  pointer-events: none;
  color: #bcbcbc;
}
.header .sp_nav.open {
  opacity: 1;
  visibility: visible;
  z-index: 998;
}
.header .sp_nav.open .sp_nav_inner {
  opacity: 1;
}

@-webkit-keyframes scrollCircle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scrollCircle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.hoverText {
  transition: 0.16s;
}
@media (hover: hover) and (pointer: fine) {
  .hoverText:hover.borderBtn {
    background-color: var(--red-vivid);
  }
  .hoverText:hover.borderBtn::after {
    background-color: #fff;
  }
  .hoverText:hover span.is-hover, .hoverText:hover span.is-main {
    transform: translateY(-100%);
  }
  .hoverText:hover.borderBtn span.is-hover, .hoverText:hover.borderBtn span.is-main {
    color: #fff;
  }
}
.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;
}

/*------------------------------*/
.anc {
  padding-top: 3rem;
  margin-top: -3rem;
}
@media screen and (max-width: 767px) {
  .anc {
    padding-top: 10rem;
    margin-top: -10rem;
  }
}

/*------------------------------*/
.footer {
  width: 100%;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .footer {
    position: relative;
    padding-block: 0;
  }
}
.footer.scroll {
  position: relative;
  padding-block: 0;
}
.footer .footer-copyright {
  background-color: #252525;
  padding-block: 0.8rem;
}
@media screen and (max-width: 767px) {
  .footer .footer-copyright {
    padding-block: 1.2rem;
  }
}
.footer .footer-copyright p {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer .footer-copyright p {
    font-size: 1.2rem;
  }
}

/*------------------------------*/
/*------------------------------*/
.content_wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-block: 12rem 6rem;
}
@media screen and (max-width: 767px) {
  .content_wrap {
    padding-block: 7rem 4rem;
  }
}
.content_wrap .heading {
  position: relative;
  text-align: center;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .content_wrap .heading {
    margin-bottom: 4rem;
  }
}
.content_wrap .heading-en {
  font-size: 5.6rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .content_wrap .heading-en {
    font-size: 5rem;
  }
}
.content_wrap .heading-jp {
  font-size: 1.4rem;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
}

/*------------------------------*/
.not-found .wrap {
  margin-bottom: 10rem;
}
.not-found .wrap p {
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .not-found .wrap p {
    text-align: left;
    line-height: 1.6;
  }
}
.not-found .btn {
  width: 18rem;
  margin: 0 auto;
  padding-block: 1rem;
  text-align: center;
  border: solid 1px #252525;
  background-color: #252525;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1.4rem;
}
@media (hover: hover) and (pointer: fine) {
  .not-found .btn:hover {
    background-color: #fff;
    color: #252525;
    border: solid 1px var(--line);
  }
}

html {
  scroll-behavior: auto !important;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
/*# sourceMappingURL=common.css.map */