@charset "UTF-8";
/*------------------------------*/
:root {
  --text: #333;
  --black: #000;
  --blue: #4474C9;
  --green: #1F8552;
  --bg-blue: #F6FAFF;
  --bg-green: #F4FAF6;
  --line: #BCBCBC;
  --gray: #D2D0C2;
  --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 {
    max-width: calc(1100px + 2rem);
    padding-inline: 2rem;
  }
}

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

.text {
  font-size: max(1.4rem, 14px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  line-height: 2;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .text {
    font-size: max(1.4rem, 14px);
    line-height: 1.6;
  }
}

img {
  pointer-events: 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=image-blur-in] {
  filter: blur(8px);
  transform: scale(1.02);
  transition: filter 0.4s ease-in, transform 0.4s ease-in;
  will-change: transform, filter;
  opacity: 0;
}
[data-inview=image-blur-in].toTop {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
}

[data-inview=footer-from-top] {
  transform: translateY(-20px);
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}
[data-inview=footer-from-top].toTop {
  opacity: 1;
  transform: translateY(0);
}

[data-inview=footer-from-bottom] {
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}
[data-inview=footer-from-bottom].toTop {
  opacity: 1;
  transform: translateY(0);
}

[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;
  }
}
/*----------loading------------*/
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#page-loader.is-leave {
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
  transform: translateY(-100%);
}

.loader__logo {
  width: clamp(18rem, 22vw, 24rem);
  opacity: 0;
  transform: translateY(1.6rem);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .loader__logo {
    width: clamp(18rem, 22vw, 24rem);
  }
}
.loader__logo.is-show {
  opacity: 1;
  transform: translateY(0);
}
.loader__count-wrap {
  margin-top: 3.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.loader__count-wrap.is-show {
  opacity: 1;
}
.loader__number {
  font-size: clamp(2.8rem, 5vw, 3rem);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1;
  min-width: 8rem;
  text-align: center;
}
.loader__percent {
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #fff;
  margin-left: 0.2rem;
  opacity: 0.7;
}
.loader__bar-track {
  width: clamp(16rem, 25vw, 22rem);
  height: 0.2rem;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
}
.loader__bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: rgba(255, 255, 255, 0.9);
}

/*----------header------------*/
.header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 8rem;
  z-index: 999;
  transition: 0.3s ease;
  /*-----------menu--------------*/
}
@media screen and (max-width: 767px) {
  .header {
    height: 6rem;
  }
}
.header .logo {
  position: relative;
  width: 24rem;
  opacity: 1;
  transition: opacity 0.5s ease;
  margin-top: 2rem;
  margin-left: 2rem;
  margin-right: -4rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .header .logo {
    width: 12rem;
    margin-left: 2rem;
    margin-top: 0.5rem;
    margin-right: 0;
  }
}
.header .logo .link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
}
.header .logo .link img {
  transition: opacity 0.3s ease;
  width: 100%;
}
.header .main-nav {
  position: relative;
  display: flex;
  justify-content: flex-start;
  padding-block: 3rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header .main-nav {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .header .main-nav {
    display: none;
  }
}
.header .main-nav .navBox {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header .main-nav .navBox ul.list {
  display: flex;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  margin-top: 0.5rem;
}
@media (max-width: 1191px) {
  .header .main-nav .navBox ul.list {
    margin-right: 1rem;
  }
}
.header .main-nav .navBox ul.list li {
  padding-left: 4rem;
  position: relative;
}
.header .main-nav .navBox ul.list li a {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
  line-height: 1.4;
  overflow: hidden;
  color: transparent;
  cursor: pointer;
  text-shadow: 0 -1.5em 0 #fff, 0 0 0 #fff;
  transition: text-shadow 0.3s;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header .main-nav .navBox ul.list li a {
    font-size: 1.4rem;
  }
}
.header .main-nav .navBox ul.list li a.noLink {
  pointer-events: none;
  color: #bcbcbc;
}
@media (hover: hover) and (pointer: fine) {
  .header .main-nav .navBox ul.list li a:hover {
    text-shadow: 0 0 0 #fff, 0 1.5em 0 #fff;
  }
}
.header .btnBox {
  position: relative;
  display: flex;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  margin-right: 2rem;
}
@media screen and (max-width: 767px) {
  .header .btnBox {
    display: none;
  }
}
.header .btnBox a.link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16rem;
  padding-block: 1.4rem;
  color: #fff;
}
.header .btnBox a.link::after {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  margin-left: 2rem;
  transform: translateX(0) rotate(45deg);
  transition: transform 0.3s ease;
}
.header .btnBox a.link:hover::after {
  transform: translateX(0.4rem) rotate(45deg);
}
.header .btnBox_recruit a.link {
  background-color: #333333;
}
.header .btnBox_recruit a.link:hover {
  text-decoration: none;
}
.header .btnBox_contact a.link {
  background-color: var(--green);
}
.header .btnBox_contact a.link:hover {
  text-decoration: none;
}
.header .btnBox_contact a.link.line {
  border: solid 1px #fff;
}
.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: #fff;
}
.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 {
  background-color: #fff;
}
.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: var(--green);
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
.header .sp_nav_inner {
  position: relative;
  width: 100%;
  height: 100%;
  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: 5rem 2rem;
  padding-left: 0;
}
.header .sp_nav_menu:last-of-type {
  border-bottom: none;
}
.header .sp_nav_link {
  display: block;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-decoration: none;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.1;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
}
.header .sp_nav_link .jp {
  font-size: 1.2rem;
  font-weight: 400;
}
.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;
}
.header .sp_nav .sp_btnBox_recruit, .header .sp_nav .sp_btnBox_contact {
  position: relative;
  width: 72vw;
  margin: 2rem auto 0;
}
.header .sp_nav .sp_btnBox_recruit {
  background-color: #333;
}
.header .sp_nav .sp_btnBox_contact {
  background-color: var(--green);
  border: solid 1px #dcdcdc;
}
.header .sp_nav .sp_btnBox a {
  display: block;
  width: 100%;
  text-align: center;
  padding-block: 1.2rem;
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
}
.header .sp_nav .sp_btnBox a::after {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  position: absolute;
  top: 2rem;
  right: 2rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateX(0) rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.header.is-white {
  background-color: rgba(255, 255, 255, 0.9);
  transition: background-color 0.3s ease;
}
.header.is-white .logo {
  width: 15rem;
  margin-top: 0.5rem;
  margin-right: 5rem;
}
@media screen and (max-width: 767px) {
  .header.is-white .logo {
    width: 10rem;
    margin-right: 0;
  }
}
.header.is-white .main-nav .navBox ul.list li a {
  text-shadow: 0 -1.5em 0 #333, 0 0 0 #333;
}
@media (hover: hover) and (pointer: fine) {
  .header.is-white .main-nav .navBox ul.list li a:hover {
    text-shadow: 0 0 0 #333, 0 1.5em 0 #333;
  }
}
.header.is-white #menuBtn .bar {
  background-color: #333;
  transition: background-color 0.3s ease;
}
.header.is-white #menuBtn.active .bar {
  background-color: #fff;
}

@-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 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;
}

/*-----------全ページ共通---------*/
.anc {
  padding-top: 10rem;
  margin-top: -10rem;
}
@media screen and (max-width: 767px) {
  .anc {
    padding-top: 10rem;
    margin-top: -10rem;
  }
}

span.en {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

a.link {
  position: relative;
  display: inline;
  color: var(--green);
  text-decoration: none;
}
a.link:hover {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  a.link:hover {
    text-decoration: none;
  }
}

a.external {
  position: relative;
}
a.external::after {
  content: "";
  display: inline-block;
  background: url("../images/external_w.svg") no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 0.2rem;
  margin-right: -1.2rem;
  width: 1rem;
  height: 1rem;
}

a.external02 {
  position: relative;
}
a.external02::after {
  content: "";
  display: inline-block;
  background: url("../images/external_green.svg") no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 0.2rem;
  margin-right: -1.2rem;
  width: 1rem;
  height: 1rem;
}

p.external {
  position: relative;
}
p.external::after {
  content: "";
  display: inline-block;
  background: url("../images/external_w.svg") no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: -0.1rem;
  margin-right: -1.2rem;
  width: 1rem;
  height: 1rem;
}

.btnLink {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 0;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.btnLink::after {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  position: absolute;
  top: 50%;
  right: 2rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) translateX(0) rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.btnLink:hover::after {
  transform: translateY(-50%) translateX(0.4rem) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .btnLink:hover::after {
    transform: translateY(-50%) translateX(0) rotate(45deg);
  }
}

/*------中ページのみ使用-------*/
.anchor {
  position: relative;
  padding-block: 3rem 2rem;
  width: 100%;
  border-bottom: solid 1px #dcdcdc;
}
@media screen and (max-width: 767px) {
  .anchor {
    padding-block: 2rem 1rem;
  }
}
.anchor ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
}
@media screen and (max-width: 767px) {
  .anchor ul {
    flex-wrap: wrap;
    gap: 0.5rem 5rem;
  }
}
.anchor ul li a {
  display: block;
  width: 100%;
  border-bottom: solid 1px #fff;
  padding-bottom: 1rem;
  transition: 0.3s;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .anchor ul li a {
    padding-block: 1.2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .anchor ul li a:hover {
    border-bottom: solid 1px var(--green);
  }
}
@media screen and (hover: hover) and (pointer: fine) and (max-width: 767px) {
  .anchor ul li a:hover {
    border-bottom: solid 1px #fff;
  }
}

/*----------------------*/
.contents_heading {
  border-left: solid 0.5rem var(--green);
  padding-block: 0.2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .contents_heading {
    margin-bottom: 2rem;
  }
}
.contents_heading h3 {
  font-size: 2.4rem;
  font-weight: 600;
  padding-left: 1rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .contents_heading h3 {
    font-size: 2.2rem;
  }
}

.list_first_item {
  font-weight: 400;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.8;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .list_first_item {
    margin-bottom: 2rem;
  }
}
.list_first_item.name {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  margin: auto;
  padding-left: 0;
  text-indent: 0;
}
.list_second {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .list_second {
    margin-top: 1rem;
  }
}
.list_second_item {
  font-weight: 400;
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .list_second_item {
    line-height: 1.6;
  }
}
.list_second_item.noindent {
  padding-left: 0;
  text-indent: 0;
}
.list_second_item span.indent {
  padding-left: 4em;
  text-indent: -4em;
}
@media screen and (max-width: 767px) {
  .list_second_item span.indent {
    padding-left: 0;
    text-indent: 0;
  }
}

/*----------------------*/
.bottom_contents {
  position: relative;
  z-index: 2;
  background-color: #fff;
}
.bottom_contents_first {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .bottom_contents_first {
    grid-template-columns: 1fr;
  }
}
.bottom_contents_first .recruit,
.bottom_contents_first .contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40rem;
  overflow: hidden;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .bottom_contents_first .recruit,
.bottom_contents_first .contact {
    height: 28rem;
  }
}
.bottom_contents_first .recruit::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  mix-blend-mode: multiply;
  z-index: 1;
  transition: background-color 0.3s ease;
}
.bottom_contents_first .recruit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/recruit_bg.jpg") no-repeat center center;
  background-size: cover;
  z-index: 0;
  transition: transform 0.6s ease;
}
.bottom_contents_first .recruit:hover::after {
  transform: scale(1.05);
}
@media screen and (max-width: 767px) {
  .bottom_contents_first .recruit:hover::after {
    transform: scale(1);
  }
}
.bottom_contents_first .contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(68, 116, 201, 0.8);
  mix-blend-mode: multiply;
  z-index: 1;
  transition: background-color 0.3s ease;
}
.bottom_contents_first .contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/contact_bg.jpg") no-repeat center center;
  background-size: cover;
  z-index: 0;
  transition: transform 0.6s ease;
}
.bottom_contents_first .contact:hover::after {
  transform: scale(1.05);
}
@media screen and (max-width: 767px) {
  .bottom_contents_first .contact:hover::after {
    transform: scale(1);
  }
}
.bottom_contents_first .textBox {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding-inline: 2rem;
}
.bottom_contents_first .hd {
  font-size: clamp(4rem, 5.6vw, 7rem);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0;
}
.bottom_contents_first .text {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 767px) {
  .bottom_contents_first .text {
    text-align: center;
  }
}
.bottom_contents_first .btnBox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
  padding: 1.2rem 2.4rem;
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.bottom_contents_first .btnBox::after {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: translateX(0) rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .bottom_contents_first a:hover .btnBox::after {
    transform: translateX(0.4rem) rotate(45deg);
  }
}
.bottom_contents_second {
  overflow: hidden;
  height: 30rem;
}
@media screen and (max-width: 767px) {
  .bottom_contents_second {
    height: 20rem;
  }
}
.bottom_contents_second_wrap {
  display: flex;
  height: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}
.bottom_contents_second_wrap img {
  height: 100%;
  width: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}

/*----------footer------------*/
.footer {
  position: relative;
  background-color: #333;
  color: #fff;
  z-index: 2;
}
.footer_top {
  padding-block: 4rem 6rem;
}
@media screen and (max-width: 767px) {
  .footer_top {
    padding-block: 4rem;
  }
}
.footer_top_inner {
  list-style: none;
  margin: 0;
  padding-inline: 4rem;
  max-width: 148rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 20rem 1fr auto;
  gap: 4rem;
  align-items: start;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer_top_inner {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .footer_top_inner {
    grid-template-columns: 1fr;
    padding-inline: 3rem;
    gap: 3rem;
  }
}
.footer_top_inner .infoBox {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .footer_top_inner .infoBox {
    flex-direction: row;
    gap: 1rem;
  }
}
.footer_top_inner .infoBox .logo {
  width: 18rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .footer_top_inner .infoBox .logo {
    width: 10rem;
    margin-right: 1rem;
  }
}
.footer_top_inner .infoBox .logo img {
  width: 100%;
  height: auto;
  display: block;
}
.footer_top_inner .infoBox .logo:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .footer_top_inner .infoBox .info {
    margin-top: -0.5rem;
  }
}
.footer_top_inner .infoBox .info p {
  font-size: 1.3rem;
  line-height: 2;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .footer_top_inner .infoBox .info p {
    line-height: 1.8;
  }
}
.footer_top_inner .navBox {
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer_top_inner .navBox {
    grid-column: 1/-1;
  }
}
@media screen and (max-width: 767px) {
  .footer_top_inner .navBox {
    gap: 2.2rem 4.2rem;
    justify-content: flex-start;
  }
}
.footer_top_inner .navBox .box {
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 10rem;
}
.footer_top_inner .navBox .box .hd {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.6rem;
  font-size: 1.2rem;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .footer_top_inner .navBox .box .hd {
    margin-bottom: 0.5rem;
  }
}
.footer_top_inner .navBox .box .hd .en {
  display: block;
  font-size: 1.8rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .footer_top_inner .navBox .box .hd .en {
    line-height: 1.6;
  }
}
.footer_top_inner .navBox .box .hd a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: opacity 0.2s ease;
}
.footer_top_inner .navBox .box .hd a .en {
  color: #fff;
}
.footer_top_inner .navBox .box .hd a:hover {
  opacity: 0.6;
}
.footer_top_inner .navBox .box .link {
  margin-bottom: 0.5rem;
}
.footer_top_inner .navBox .box .link:last-of-type {
  margin-bottom: 0;
}
.footer_top_inner .navBox .box .link a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  padding-block: 0.6rem;
  overflow: hidden;
  color: transparent;
  cursor: pointer;
  text-shadow: 0 -1.8em 0 #fff, 0 0 0 #fff;
  transition: text-shadow 0.3s;
}
@media screen and (max-width: 767px) {
  .footer_top_inner .navBox .box .link a {
    padding-block: 0.4rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer_top_inner .navBox .box .link a:hover {
    text-shadow: 0 0 0 #fff, 0 1.5em 0 #fff;
  }
}
.footer_top_inner .btnBox {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 18rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer_top_inner .btnBox {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
  }
}
@media screen and (max-width: 767px) {
  .footer_top_inner .btnBox {
    grid-column: 1;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.footer_top_inner .btnBox a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18rem;
  padding: 1.2rem 0;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .footer_top_inner .btnBox a {
    width: 100%;
  }
}
.footer_top_inner .btnBox a.recruit {
  border: 1px solid #7e7e7e;
  background-color: #333;
}
.footer_top_inner .btnBox a.contact {
  background-color: var(--green);
}
.footer_top_inner .btnBox a::after {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  position: absolute;
  top: 1.6rem;
  right: 2rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateX(0) rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.footer_top_inner .btnBox a:hover::after {
  transform: translateX(0.4rem) rotate(45deg);
}
.footer_copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-block: 2rem;
}
.footer_copyright ul {
  list-style: none;
  margin: 0;
  padding-inline: 4rem;
  max-width: 148rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3.2rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .footer_copyright ul {
    padding-inline: 2rem;
    justify-content: center;
    gap: 1.6rem;
  }
}
.footer_copyright a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer_copyright a:hover {
  color: rgba(255, 255, 255, 0.4);
}
.footer_copyright li:last-child {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Montserrat", sans-serif;
}

/*-----------404ページ---------*/
.not-found {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--green);
  min-height: 80vh;
}
@media screen and (max-width: 767px) {
  .not-found {
    min-height: 100vh;
  }
}
.not-found_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.not-found_num {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(10rem, 18vw, 16rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 2rem;
}
.not-found_title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 2.4rem;
}
.not-found_text {
  font-size: max(1.4rem, 14px);
  line-height: 2;
  color: #fff;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .not-found_text {
    text-align: left;
  }
}
.not-found_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 24rem;
  padding-block: 1rem;
  background-color: var(--green);
  font-size: max(1.4rem, 14px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  border: solid 1px #fff;
  transition: opacity 0.2s ease;
}
.not-found_btn::after {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  position: absolute;
  top: 1.6rem;
  right: 2rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateX(0) rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.not-found_btn:hover::after {
  transform: translateX(0.4rem) rotate(45deg);
}

/*------------------------------*/
html {
  scroll-behavior: auto !important;
}

html.lenis {
  height: auto;
}

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