@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans+Extra+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap");
@import url("https://use.typekit.net/kkb4laj.css");
@keyframes flip {
  0% {
    transform: rotateY(0deg);
  }
  40% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  90% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes flip2 {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes down {
  0% {
    transform: rotate(0deg) translateY(0px);
  }
  10% {
    transform: rotate(0deg) translateY(0px);
  }
  40% {
    transform: rotate(0deg) translateY(10px);
  }
  60% {
    transform: rotate(0deg) translateY(10px);
  }
  90% {
    transform: rotate(0deg) translateY(0px);
  }
  100% {
    transform: rotate(0deg) translateY(0px);
  }
}
@keyframes line {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  60% {
    transform: translateY(-40px);
    /* 上に20px移動 */
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounceTitle {
  0% {
    color: #8CB808;
    transform: translateY(10px);
  }
  40% {
    color: #8CB808;
    transform: translateY(-20px);
  }
  50% {
    color: #8CB808;
    transform: translateY(-20px);
  }
  60% {
    color: #282828;
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounceTitle2 {
  0% {
    color: #282828;
    transform: translateY(20px);
  }
  40% {
    color: #282828;
    transform: translateY(-20px);
  }
  60% {
    color: #8CB808;
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounceTitle3 {
  0% {
    color: #8CB808;
    transform: translateY(10px);
  }
  40% {
    color: #8CB808;
    transform: translateY(-20px);
  }
  50% {
    color: #8CB808;
    transform: translateY(-20px);
  }
  60% {
    color: #FFF;
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
body {
  overflow: hidden;
}
body.loaded {
  overflow: auto;
}
body .mente {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
body .mente h3 {
  color: #282828;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}

#loader {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0px;
  bottom: 0px;
  z-index: 999999;
  transition: all 1s ease-in 1s;
}
#loader h2 {
  color: #282828;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 12rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  white-space: nowrap;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0 2rem;
  transition: all 0.5s ease-in 0s;
  position: absolute;
  top: calc(50% - 56px);
}
#loader h2 > span {
  opacity: 0;
  transition: all 0.3s ease-in 0s;
}
#loader h2 > span.col {
  color: #8CB808;
}
#loader h2 > span:nth-child(2) {
  transition-delay: 0.2s;
}
#loader h2 > span:nth-child(3) {
  transition-delay: 0.4s;
}
#loader h2 > span > span {
  opacity: 0;
  transition: all 0.3s ease-in 0s;
}
#loader h2 > span > span:nth-child(2) {
  transition-delay: 0.6s;
}
#loader h2 > span > span:nth-child(3) {
  transition-delay: 0.8s;
}
#loader h2 > span > span:nth-child(4) {
  transition-delay: 1s;
}
#loader .bar {
  width: 100%;
  height: 10px;
  background-color: #2e7b03;
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 5;
}
#loader .bar span {
  width: 0%;
  height: 100%;
  background-color: #8CB808;
  display: block;
}
#loader.active h2.move {
  top: 102px;
}
#loader.active h2 > span {
  opacity: 1;
}
#loader.active h2 > span > span {
  opacity: 1;
}
#loader.complete {
  opacity: 0;
}

@keyframes go-up {
  0% {
    transform: translateY(calc(50vh - 117px));
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes illust-go-up {
  0% {
    transform: translateY(50vh);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
main.up section#hero {
  animation-name: go-up;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
main.up section#hero .illust {
  animation-name: illust-go-up;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}
main.up .rbanner {
  opacity: 1;
  pointer-events: auto;
}
main.up .rbanner.hide {
  opacity: 0;
  pointer-events: none;
}
main .rbanner {
  width: 257px;
  position: fixed;
  right: 40px;
  bottom: 30px;
  z-index: 50;
  transition: all 0.35s ease-in 1s;
  opacity: 0;
  pointer-events: none;
}
main .rbanner a {
  display: block;
}
main .rbanner a:hover img {
  transform: scale(1.05);
}
main .rbanner a img {
  transition: all 0.3s ease-in 0s;
}

section {
  width: 100%;
}
section#hero {
  width: 100%;
  padding-top: 102px;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  transform: translateY(calc(50vh - 117px));
}
section#hero .catch {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
section#hero .catch h2 {
  color: #282828;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 12rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  white-space: nowrap;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0 2rem;
}
section#hero .catch h2.on > span:nth-child(1) > span {
  animation-name: bounceTitle2;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
}
section#hero .catch h2.on > span:nth-child(1) > span:nth-child(2) {
  animation-delay: 0.1s;
}
section#hero .catch h2.on > span:nth-child(1) > span:nth-child(3) {
  animation-delay: 0.2s;
}
section#hero .catch h2.on > span:nth-child(1) > span:nth-child(4) {
  animation-delay: 0.3s;
}
section#hero .catch h2.on > span:nth-child(1) > span:nth-child(5) {
  animation-delay: 0.4s;
}
section#hero .catch h2.on > span:nth-child(1) > span:nth-child(6) {
  animation-delay: 0.5s;
}
section#hero .catch h2.on > span:nth-child(2) > span {
  animation-name: bounceTitle2;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
}
section#hero .catch h2.on > span:nth-child(2) > span:nth-child(1) {
  animation-delay: 0.6s;
}
section#hero .catch h2.on > span:nth-child(2) > span:nth-child(2) {
  animation-delay: 0.7s;
}
section#hero .catch h2.on > span:nth-child(2) > span:nth-child(2) {
  animation-delay: 0.8s;
}
section#hero .catch h2.on > span:nth-child(2) > span:nth-child(3) {
  animation-delay: 0.9s;
}
section#hero .catch h2.on > span:nth-child(2) > span:nth-child(4) {
  animation-delay: 1s;
}
section#hero .catch h2.on > span:nth-child(2) > span:nth-child(5) {
  animation-delay: 1.1s;
}
section#hero .catch h2.on > span:nth-child(3) {
  gap: 0 8px;
}
section#hero .catch h2.on > span:nth-child(3) > span {
  animation-name: bounceTitle2;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
}
section#hero .catch h2.on > span:nth-child(3) > span:nth-child(1) {
  animation-delay: 1.5s;
}
section#hero .catch h2.on > span:nth-child(3) > span:nth-child(2) {
  animation-delay: 1.7s;
}
section#hero .catch h2.on > span:nth-child(3) > span:nth-child(3) {
  animation-delay: 1.9s;
}
section#hero .catch h2.on > span > span {
  opacity: 1;
}
section#hero .catch h2 > span {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
section#hero .catch h2 > span.col {
  color: #8CB808;
}
section#hero .catch h2 > span:nth-child(1) > span:nth-child(2) {
  transition-delay: 0.1s;
}
section#hero .catch h2 > span:nth-child(1) > span:nth-child(3) {
  transition-delay: 0.2s;
}
section#hero .catch h2 > span:nth-child(1) > span:nth-child(4) {
  transition-delay: 0.3s;
}
section#hero .catch h2 > span:nth-child(1) > span:nth-child(5) {
  transition-delay: 0.4s;
}
section#hero .catch h2 > span:nth-child(1) > span:nth-child(6) {
  transition-delay: 0.5s;
}
section#hero .catch h2 > span:nth-child(2) > span:nth-child(1) {
  transition-delay: 0.6s;
}
section#hero .catch h2 > span:nth-child(2) > span:nth-child(2) {
  transition-delay: 0.7s;
}
section#hero .catch h2 > span:nth-child(2) > span:nth-child(2) {
  transition-delay: 0.8s;
}
section#hero .catch h2 > span:nth-child(2) > span:nth-child(3) {
  transition-delay: 0.9s;
}
section#hero .catch h2 > span:nth-child(2) > span:nth-child(4) {
  transition-delay: 1s;
}
section#hero .catch h2 > span:nth-child(2) > span:nth-child(5) {
  transition-delay: 1.1s;
}
section#hero .catch h2 > span:nth-child(3) > span:nth-child(1) {
  transition-delay: 1.5s;
}
section#hero .catch h2 > span:nth-child(3) > span:nth-child(2) {
  transition-delay: 1.7s;
}
section#hero .catch h2 > span:nth-child(3) > span:nth-child(3) {
  transition-delay: 1.9s;
}
section#hero .catch h2 > span > span {
  opacity: 0;
  transition: all 0.3s ease-in 0s;
}
section#hero .catch h3 {
  color: #282828;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  white-space: nowrap;
  margin: 0 0 0 auto;
  opacity: 0;
  transition: opacity 0.5s ease-in 0s;
}
section#hero .catch h3.on {
  opacity: 1;
}
section#hero .illust {
  width: calc(100% - 48px);
  margin: -40px 0 48px 0;
  position: relative;
  transform: translateY(50vh);
}
section#hero .illust figure.i1 {
  width: 100%;
  position: relative;
  z-index: 2;
}
section#hero .illust figure.i1 .parts {
  position: absolute;
}
section#hero .illust figure.i1 .parts.p1 {
  width: 24.3%;
  top: 36%;
  left: 11.7%;
  z-index: -1;
}
section#hero .illust figure.i1 .parts.p2 {
  width: 7.9%;
  top: 10%;
  left: 16.45%;
  z-index: 2;
}
section#hero .illust figure.i1 .parts.p3 {
  width: 27.45%;
  top: 8.47%;
  left: 9%;
  z-index: 2;
}
section#hero .illust figure.i1 .parts.p4 {
  width: 34.14%;
  top: 16.125%;
  left: 9.5%;
  z-index: 2;
}
section#hero .illust figure.i1 .parts.p5 {
  width: 21.345%;
  top: 25.35%;
  left: 32.3%;
  z-index: 2;
}
section#hero .illust figure.i1 .parts.p6 {
  width: 8.625%;
  top: 3.25%;
  left: 61%;
  z-index: 3;
}
section#hero .illust figure.i1 .parts.p7 {
  width: 7.53%;
  top: 11.3%;
  right: 3.9%;
  z-index: 3;
}
section#hero .illust figure.i1 .parts.p8 {
  width: 11.4%;
  top: 18.5%;
  left: 71.5%;
  z-index: 3;
}
section#hero .illust figure.i1 .parts.p9 {
  width: 10.8%;
  top: 27%;
  left: 67%;
  z-index: 3;
}
section#hero .illust figure.i1 .parts.p10 {
  width: 22%;
  bottom: 26%;
  left: 2.5%;
  z-index: 3;
}
section#hero .illust figure.i1 .parts.p11 {
  width: 7%;
  bottom: 18.5%;
  left: 35.5%;
  z-index: 3;
}
section#hero .illust figure.i1 .parts.p12 {
  width: 11.55%;
  bottom: 28.6%;
  left: 61%;
  z-index: 3;
}
section#hero .illust figure.i1 .parts.p13 {
  width: 8.5%;
  bottom: 10.15%;
  left: 9.5%;
  z-index: 3;
}
section#hero .illust figure.i1 .parts.p14 {
  width: 7.45%;
  bottom: 18.2%;
  left: 60.45%;
  z-index: 3;
}
section#hero .illust figure.i1 .parts.p15 {
  width: 14%;
  bottom: 15.65%;
  left: 49.7%;
  z-index: 2;
}
section#hero .illust figure.i1 .parts.p16 {
  width: 4.3%;
  bottom: 10.8%;
  left: 53.3%;
  z-index: 3;
}
section#hero .illust figure.i1 .parts picture,
section#hero .illust figure.i1 .parts img {
  position: relative;
  z-index: 1;
}
section#hero .illust figure.i1-2 {
  display: none;
}
section#hero .illust figure.i2 {
  width: 19%;
  position: absolute;
  top: 8.75%;
  left: 41.5%;
}
section#hero .illust .door {
  width: 14%;
  position: absolute;
  top: 70.5%;
  left: 44%;
  z-index: 1;
}
section#hero .illust .door.open figure:nth-child(1) {
  left: -50%;
}
section#hero .illust .door.open figure:nth-child(2) {
  right: -50%;
}
section#hero .illust .door figure {
  width: 50%;
  position: absolute;
  top: 0px;
  transition: all 0.5s cubic-bezier(0.25, 0.25, 0.75, 0.75) 0s;
}
section#hero .illust .door figure:nth-child(1) {
  left: 0px;
}
section#hero .illust .door figure:nth-child(2) {
  right: 0px;
}
section#hero .about {
  width: calc(100% - 160px);
  position: absolute;
  top: calc(50% + 51px);
  z-index: 1;
}
section#hero .about .awrap {
  width: 100%;
}
section#hero .about .awrap.on .inner .inin .atext dl dt span {
  animation-name: bounceTitle2;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  opacity: 1;
}
section#hero .about .awrap.on .inner .inin .atext dl dt span:nth-child(2) {
  animation-delay: 0.1s;
}
section#hero .about .awrap.on .inner .inin .atext dl dt span:nth-child(3) {
  animation-delay: 0.2s;
}
section#hero .about .awrap.on .inner .inin .atext dl dt span:nth-child(4) {
  animation-delay: 0.3s;
}
section#hero .about .awrap.on .inner .inin .atext dl dt span:nth-child(5) {
  animation-delay: 0.4s;
}
section#hero .about .awrap.on .inner .inin .atext dl dt span:nth-child(6) {
  animation-delay: 0.5s;
}
section#hero .about .awrap.on .inner .inin .atext dl dt span:nth-child(7) {
  animation-delay: 0.6s;
}
section#hero .about .awrap.on .inner .inin .atext dl dd {
  transform: translateY(0px);
  opacity: 1;
}
section#hero .about .awrap.on .inner .inin .atext .text h4, section#hero .about .awrap.on .inner .inin .atext .text p {
  opacity: 1;
}
section#hero .about .awrap .inner {
  width: 100%;
}
section#hero .about .awrap .inner .inin {
  width: 100%;
}
section#hero .about .awrap .inner .inin .atext {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
section#hero .about .awrap .inner .inin .atext dl {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
section#hero .about .awrap .inner .inin .atext dl dt {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
section#hero .about .awrap .inner .inin .atext dl dt span {
  color: #282828;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 12rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  white-space: nowrap;
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0s;
}
section#hero .about .awrap .inner .inin .atext dl dt span:nth-child(2) {
  transition-delay: 0.1s;
}
section#hero .about .awrap .inner .inin .atext dl dt span:nth-child(3) {
  transition-delay: 0.2s;
}
section#hero .about .awrap .inner .inin .atext dl dt span:nth-child(4) {
  transition-delay: 0.3s;
}
section#hero .about .awrap .inner .inin .atext dl dt span:nth-child(5) {
  transition-delay: 0.4s;
}
section#hero .about .awrap .inner .inin .atext dl dt span:nth-child(6) {
  transition-delay: 0.5s;
}
section#hero .about .awrap .inner .inin .atext dl dt span:nth-child(7) {
  transition-delay: 0.6s;
}
section#hero .about .awrap .inner .inin .atext dl dd {
  color: #282828;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  white-space: nowrap;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.25s ease-in 1s;
}
section#hero .about .awrap .inner .inin .atext .text {
  text-align: left;
  width: 28%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
section#hero .about .awrap .inner .inin .atext .text h4 {
  color: #282828;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.75;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  opacity: 0;
  transition: all 0.25s ease-in 0.5s;
}
section#hero .about .awrap .inner .inin .atext .text p {
  color: #282828;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  opacity: 0;
  transition: all 0.25s ease-in 0.75s;
}
section#hero .about .awrap .inner .inin .sp-ev {
  display: none;
}
section#culture {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0 5.2%;
  margin-bottom: 64px;
}
section#culture.on .illust figure {
  opacity: 1;
}
section#culture.on .illust figure:nth-child(1) {
  animation: bounce 0.5s ease-in-out 1 0s;
}
section#culture.on .illust figure:nth-child(2) {
  animation: bounce 0.5s ease-in-out 1 0.2s;
  transition-delay: 0.1s;
}
section#culture.on .illust figure:nth-child(3) {
  animation: bounce 0.5s ease-in-out 1 0.4s;
  transition-delay: 0.2s;
}
section#culture.on .illust figure:nth-child(4) {
  animation: bounce 0.5s ease-in-out 1 0.6s;
  transition-delay: 0.3s;
}
section#culture.on .illust figure:nth-child(5) {
  animation: bounce 0.5s ease-in-out 1 0.8s;
  transition-delay: 0.4s;
}
section#culture.on .illust figure:nth-child(6) {
  animation: bounce 0.5s ease-in-out 1 1s;
  transition-delay: 0.5s;
}
section#culture.on .illust figure:nth-child(7) {
  animation: bounce 0.5s ease-in-out 1 1.2s;
  transition-delay: 0.6s;
}
section#culture.on .illust figure:nth-child(8) {
  animation: bounce 0.5s ease-in-out 1 1.4s;
  transition-delay: 0.7s;
}
section#culture.on .illust figure:nth-child(9) {
  animation: bounce 0.5s ease-in-out 1 1.6s;
  transition-delay: 0.8s;
}
section#culture.on .illust figure:nth-child(10) {
  animation: bounce 0.5s ease-in-out 1 1.8s;
  transition-delay: 0.9s;
}
section#culture.on .text h4,
section#culture.on .text h5,
section#culture.on .text p {
  opacity: 1;
}
section#culture .illust {
  width: 33.68%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px 11.5%;
}
section#culture .illust figure {
  width: 10.8%;
  opacity: 0;
  transition: opacity 0.2s ease-in 0s;
  position: relative;
}
section#culture .text {
  text-align: left;
  width: 38.888%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
section#culture .text h4 {
  color: #282828;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.75;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  margin-bottom: 12px;
  opacity: 0;
  transition: all 0.25s ease-in 0s;
}
section#culture .text h5 {
  color: #282828;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.75;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  opacity: 0;
  transition: all 0.25s ease-in 0.25s;
}
section#culture .text p {
  color: #282828;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  opacity: 0;
  transition: all 0.25s ease-in 0.5s;
}
section#service {
  width: calc(100% - 160px);
  margin: 0 auto;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
section#service:not(:last-child) {
  margin-bottom: 80px;
}
section#service::before {
  content: "";
  width: calc(100% - 160px);
  height: 100%;
  background-color: #282828;
  border-radius: 24px;
  position: absolute;
  top: 0px;
  left: 80px;
  z-index: -1;
}
section#service.on .tt dl dt span {
  animation-name: bounceTitle3;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  opacity: 1;
}
section#service.on .tt dl dt span:nth-child(2) {
  animation-delay: 0.1s;
}
section#service.on .tt dl dt span:nth-child(3) {
  animation-delay: 0.2s;
}
section#service.on .tt dl dt span:nth-child(4) {
  animation-delay: 0.3s;
}
section#service.on .tt dl dt span:nth-child(5) {
  animation-delay: 0.4s;
}
section#service.on .tt dl dt span:nth-child(6) {
  animation-delay: 0.5s;
}
section#service.on .tt dl dt span:nth-child(7) {
  animation-delay: 0.6s;
}
section#service.on .tt dl dd {
  opacity: 1;
}
section#service.on .tt p {
  opacity: 1;
}
section#service .tt {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
}
section#service .tt dl {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
}
section#service .tt dl dt {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
section#service .tt dl dt span {
  color: #FFF;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 12rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  white-space: nowrap;
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0s;
}
section#service .tt dl dt span:nth-child(2) {
  transition-delay: 0.1s;
}
section#service .tt dl dt span:nth-child(3) {
  transition-delay: 0.2s;
}
section#service .tt dl dt span:nth-child(4) {
  transition-delay: 0.3s;
}
section#service .tt dl dt span:nth-child(5) {
  transition-delay: 0.4s;
}
section#service .tt dl dt span:nth-child(6) {
  transition-delay: 0.5s;
}
section#service .tt dl dt span:nth-child(7) {
  transition-delay: 0.6s;
}
section#service .tt dl dd {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0.5s;
}
section#service .tt p {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.75;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0.75s;
}
section#service .each {
  width: 100%;
  margin-bottom: 40px;
}
section#service .each.on + .btn {
  opacity: 1;
}
section#service .each.on .swiper-wrapper .service {
  opacity: 1;
}
section#service .each.on .swiper-wrapper .service:nth-child(1) {
  animation: bounce 0.5s ease-in-out 1 1s;
}
section#service .each.on .swiper-wrapper .service:nth-child(2) {
  animation: bounce 0.5s ease-in-out 1 1.2s;
}
section#service .each.on .swiper-wrapper .service:nth-child(3) {
  animation: bounce 0.5s ease-in-out 1 1.4s;
}
section#service .each .swiper-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}
section#service .each .swiper-wrapper .service {
  width: calc((100% - 80px) / 3);
  background-color: #f9f6f2;
  padding: 20px;
  border: solid 3px #282828;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  opacity: 0;
  transition: opacity 0.5s ease-in;
}
section#service .each .swiper-wrapper .service:nth-child(1) {
  transition-delay: 1s;
}
section#service .each .swiper-wrapper .service:nth-child(1) figure {
  transition-delay: 1s;
}
section#service .each .swiper-wrapper .service:nth-child(2) {
  transition-delay: 1.2s;
}
section#service .each .swiper-wrapper .service:nth-child(2) figure {
  transition-delay: 1.2s;
}
section#service .each .swiper-wrapper .service:nth-child(3) {
  transition-delay: 1.4s;
}
section#service .each .swiper-wrapper .service:nth-child(3) figure {
  transition-delay: 1.4s;
}
section#service .each .swiper-wrapper .service figure {
  width: 48.6%;
}
section#service .each .swiper-wrapper .service dl.num {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
}
section#service .each .swiper-wrapper .service dl.num dt {
  color: #282828;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#service .each .swiper-wrapper .service dl.num dd {
  color: #8CB808;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 4.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#service .each .swiper-wrapper .service dl.name {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 24px;
}
section#service .each .swiper-wrapper .service dl.name dt {
  color: #282828;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.75;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#service .each .swiper-wrapper .service dl.name dd {
  color: #282828;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.75;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#service .each .swiper-wrapper .service p {
  width: 100%;
  background-color: #FFF;
  padding: 20px;
  border-radius: 16px;
}
section#service .each .swiper-wrapper .service p span {
  color: #282828;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#service .each .mybtn {
  display: none;
}
section#service .btn {
  width: 200px;
  margin: 0 auto;
  opacity: 0;
  transition: all 0.5s ease-in 1.5s;
}
section#service .btn a {
  width: 100%;
  height: 56px;
  background-color: #2e7b03;
  padding: 16px;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: centr;
  align-items: center;
  position: relative;
  transition: all 0.3s ease-in 0s;
}
section#service .btn a:hover {
  background-color: #225a02;
}
section#service .btn a:hover::after {
  animation: moveArrow 0.35s ease-in-out 1 0s;
}
@keyframes moveArrow {
  0% {
    transform: translateX(0px);
  }
  40% {
    transform: translateX(8px);
  }
  100% {
    transform: translateX(0px);
  }
}
section#service .btn a::after {
  content: "";
  width: 40px;
  height: 40px;
  background-color: #FFF;
  background-image: url(../../common/images/arrow_link.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 8px;
  border-radius: 4px;
  position: absolute;
  top: calc(50% - 20px);
  right: 8px;
}
section#service .btn a span {
  color: #FFF;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section#recruit {
  width: 100%;
}
section#recruit::before {
  content: "";
  width: 100%;
  height: 34px;
  background-image: url(../images/loop_wave.png);
  background-repeat: repeat-x;
  background-position: center top;
  background-size: contain;
  display: block;
}
section#recruit::after {
  content: "";
  width: 100%;
  height: 34px;
  background-image: url(../images/loop_wave.png);
  background-repeat: repeat-x;
  background-position: center top;
  background-size: contain;
  display: block;
  position: relative;
  transform: rotate(180deg);
}
section#recruit.on .wrap .inner > dl > dt span {
  transform: translateY(0px);
  opacity: 1;
}
section#recruit.on .wrap .inner > dl dd {
  opacity: 1;
}
section#recruit.on .wrap .inner .banner {
  opacity: 1;
}
section#recruit .wrap {
  width: 100%;
  padding: 80px 0;
  background-color: #8CB808;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
section#recruit .wrap .inner {
  text-align: left;
  width: calc(100% - 320px);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
section#recruit .wrap .inner > dl > dt {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
section#recruit .wrap .inner > dl > dt span {
  color: #f9f6f2;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 12rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  white-space: nowrap;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0s;
}
section#recruit .wrap .inner > dl > dt span:nth-child(2) {
  transition-delay: 0.1s;
}
section#recruit .wrap .inner > dl > dt span:nth-child(3) {
  transition-delay: 0.2s;
}
section#recruit .wrap .inner > dl > dt span:nth-child(4) {
  transition-delay: 0.3s;
}
section#recruit .wrap .inner > dl > dt span:nth-child(5) {
  transition-delay: 0.4s;
}
section#recruit .wrap .inner > dl > dt span:nth-child(6) {
  transition-delay: 0.5s;
}
section#recruit .wrap .inner > dl > dt span:nth-child(7) {
  transition-delay: 0.6s;
}
section#recruit .wrap .inner > dl > dd {
  color: #f9f6f2;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  opacity: 0;
  transition: all 0.25s ease-in 0.8s;
}
section#recruit .wrap .inner .banner {
  width: 55%;
  opacity: 0;
  transition: all 0.25s ease-in 1s;
}
section#recruit .wrap .inner .banner a {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  background-color: #f9f6f2;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0 32px;
  position: relative;
}
section#recruit .wrap .inner .banner a:hover::after {
  animation: moveArrow 0.35s ease-in-out 1 0s;
}
@keyframes moveArrow {
  0% {
    transform: translateX(0px);
  }
  40% {
    transform: translateX(8px);
  }
  100% {
    transform: translateX(0px);
  }
}
section#recruit .wrap .inner .banner a:hover figure img {
  transform: scale(1.05);
}
section#recruit .wrap .inner .banner a::after {
  content: "";
  width: 40px;
  height: 40px;
  background-color: #2e7b03;
  background-image: url(../../common/images/arrow_link_w.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 8px;
  border-radius: 4px;
  position: absolute;
  top: calc(100% - 40px - 8px);
  right: 8px;
}
section#recruit .wrap .inner .banner a figure {
  width: 184px;
  height: 184px;
  background-color: #FFF;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
section#recruit .wrap .inner .banner a figure img {
  width: 90%;
  transition: all 0.3s ease-in 0s;
}
section#recruit .wrap .inner .banner a > dl > dt {
  color: #282828;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  margin-bottom: 10px;
}
section#recruit .wrap .inner .banner a > dl > dd {
  color: #282828;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section .inner {
  width: 100%;
}
section .inner .title {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
section .inner .title:not(:last-child) {
  margin-bottom: 40px;
}
section .inner .title > div h3 {
  color: #f9f6f2;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 9.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  margin-bottom: 8px;
}
section .inner .title > div p {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0 8px;
}
section .inner .title > div p::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #8CB808;
  border-radius: 3px;
  display: block;
}
section .inner .title > div p span {
  color: #f9f6f2;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section .inner .title dl {
  text-align: left;
  width: 526px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px 0;
}
section .inner .title dl dt {
  color: #f9f6f2;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section .inner .title dl dd:nth-child(2) {
  color: #f9f6f2;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section .inner .title dl dd:nth-child(3) {
  margin-left: auto;
}
section .inner .title dl dd:nth-child(3) a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0 16px;
}
section .inner .title dl dd:nth-child(3) a:hover span {
  color: #8CB808;
}
section .inner .title dl dd:nth-child(3) a span {
  color: #f9f6f2;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  transition: all 0.3s ease-in 0s;
}
section .inner .title dl dd:nth-child(3) a::after {
  content: "";
  width: 56px;
  height: 36px;
  background-image: url(../../common/images/btn1.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  transition: all 0.3s ease-in 0s;
}

footer .cp {
  border-top: none;
}

/* --------------------------------------- Media Queries Smartphone --------------------------------------- */
@media screen and (max-width: 768px) {
  @keyframes go-up-sp {
    0% {
      padding-top: 50vh;
      margin-top: 0px;
    }
    80% {
      padding-top: 10px;
      margin-top: -10px;
    }
    100% {
      padding-top: 0px;
      margin-top: 0px;
    }
  }
  @keyframes catch-go-up {
    0% {
      transform: translateY(-300px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  #loader {
    width: 100%;
    height: 100vh;
    padding: 80px 16px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    position: fixed;
    left: 0px;
    bottom: 0px;
    z-index: 999999;
    transition: all 1s ease-in 1s;
  }
  #loader .bar {
    width: 100%;
    height: 10px;
    background-color: #2e7b03;
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 5;
  }
  #loader .bar span {
    width: 0%;
    height: 100%;
    background-color: #8CB808;
    display: block;
  }
  #loader.active h2.move {
    top: 80px;
  }
  #loader.active h2 > span {
    opacity: 1;
  }
  #loader.active h2 > span > span {
    opacity: 1;
  }
  #loader.complete {
    opacity: 0;
  }

  main {
    width: 100%;
    padding-top: 50vh;
    position: relative;
    overflow: hidden;
  }
  main.up {
    animation-name: go-up-sp;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
  }
  main.up section#hero {
    animation: none;
  }
  main.up section#hero .catch {
    animation-name: catch-go-up;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
  }
  main.up section#hero .illust {
    animation: none;
  }
  main .rbanner {
    width: 176px;
    right: 16px;
    bottom: 16px;
  }
  main .rbanner a:hover img {
    transform: scale(1);
  }

  section {
    width: 100%;
  }
  section#hero {
    width: 100%;
    padding-top: 80px;
    margin-bottom: 800px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    transform: none;
  }
  section#hero .catch {
    width: calc(100% - 32px);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    transform: translateY(-300px);
  }
  section#hero .catch h2 {
    color: #282828;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  section#hero .catch h2 > span {
    position: relative;
  }
  section#hero .catch h2 > span:nth-child(1) {
    transform: translateX(40px);
  }
  section#hero .catch h2 > span:nth-child(2) {
    transform: translateX(80px);
  }
  section#hero .catch h2 > span.col {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  section#hero .catch h2 > span.col > span:nth-child(1) {
    padding-left: 50px;
  }
  section#hero .catch h2 > span.col > span:nth-child(3) {
    padding-left: 70px;
  }
  section#hero .catch h3 {
    color: #282828;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.4em;
    font-feature-settings: "palt";
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    white-space: nowrap;
    margin: 0;
  }
  section#hero .illust {
    width: 100%;
    margin-top: 0px;
    margin-bottom: 0px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    transform: none;
  }
  section#hero .illust.mvisual.hide {
    opacity: 0;
  }
  section#hero .illust figure.i1 {
    width: 100%;
    position: relative;
    z-index: 2;
  }
  section#hero .illust figure.i1 .parts {
    position: absolute;
  }
  section#hero .illust figure.i1 .parts.p1 {
    width: 27.5%;
    top: 36.5%;
    left: -5%;
    z-index: -1;
  }
  section#hero .illust figure.i1 .parts.p2 {
    width: 10%;
    top: 11%;
    left: 0%;
    z-index: 2;
  }
  section#hero .illust figure.i1 .parts.p3 {
    width: 27.45%;
    top: 13%;
    left: -2%;
    z-index: 2;
  }
  section#hero .illust figure.i1 .parts.p4 {
    width: 45%;
    top: 16.5%;
    left: -5%;
    z-index: 2;
  }
  section#hero .illust figure.i1 .parts.p5 {
    width: 31%;
    top: 25%;
    left: 24%;
    z-index: 2;
  }
  section#hero .illust figure.i1 .parts.p6 {
    width: 12%;
    top: 2.5%;
    left: 67.5%;
    z-index: 3;
  }
  section#hero .illust figure.i1 .parts.p8 {
    width: 17.5%;
    top: 18.5%;
    left: 80%;
    z-index: 3;
  }
  section#hero .illust figure.i1 .parts.p9 {
    width: 16%;
    top: 27%;
    left: 75.5%;
    z-index: 4;
  }
  section#hero .illust figure.i1 .parts.p7, section#hero .illust figure.i1 .parts.p10, section#hero .illust figure.i1 .parts.p11, section#hero .illust figure.i1 .parts.p12, section#hero .illust figure.i1 .parts.p13, section#hero .illust figure.i1 .parts.p14, section#hero .illust figure.i1 .parts.p15, section#hero .illust figure.i1 .parts.p16 {
    display: none;
  }
  section#hero .illust figure.i1 .parts picture,
section#hero .illust figure.i1 .parts img {
    position: relative;
    z-index: 1;
  }
  section#hero .illust figure.i1-2 {
    width: 100%;
    display: block;
    position: relative;
  }
  section#hero .illust figure.i1-2 .base {
    position: relative;
    z-index: 2;
  }
  section#hero .illust figure.i1-2 .parts {
    position: absolute;
  }
  section#hero .illust figure.i1-2 .parts.p10 {
    width: 30%;
    top: 15%;
    bottom: auto;
    left: -20%;
    z-index: 3;
  }
  section#hero .illust figure.i1-2 .parts.p11 {
    width: 10%;
    top: 50%;
    bottom: auto;
    left: 28%;
    z-index: 3;
  }
  section#hero .illust figure.i1-2 .parts.p12 {
    width: 17.5%;
    top: 38%;
    bottom: auto;
    left: 65%;
    z-index: 3;
  }
  section#hero .illust figure.i1-2 .parts.p13 {
    display: none;
  }
  section#hero .illust figure.i1-2 .parts.p14 {
    width: 12.5%;
    top: 44%;
    bottom: auto;
    left: 65%;
    z-index: 3;
  }
  section#hero .illust figure.i1-2 .parts.p15 {
    width: 20%;
    bottom: 32%;
    left: 47%;
    z-index: 2;
  }
  section#hero .illust figure.i1-2 .parts.p16 {
    width: 6.5%;
    bottom: 22%;
    left: 53.5%;
    z-index: 3;
  }
  section#hero .illust figure.i1-2 .parts.p17 {
    width: 27.2%;
    top: -50%;
    left: 36%;
    z-index: -1;
  }
  section#hero .illust figure.i1-2 .parts picture,
section#hero .illust figure.i1-2 .parts img {
    position: relative;
    z-index: 1;
  }
  section#hero .illust figure.i2 {
    width: 27.2%;
    position: absolute;
    top: 8.2%;
    left: 38%;
  }
  section#hero .illust.avisual .i2-2 {
    top: -200px;
    z-index: 1;
  }
  section#hero .illust.avisual .door {
    width: 20%;
    top: 43%;
    left: 40%;
    display: block;
    z-index: 0;
  }
  section#hero .illust .door {
    width: 14%;
    position: absolute;
    top: 70%;
    left: 43%;
    z-index: 1;
    display: none;
  }
  section#hero .illust .door.open figure:nth-child(1) {
    left: -50%;
  }
  section#hero .illust .door.open figure:nth-child(2) {
    right: -50%;
  }
  section#hero .illust .door figure {
    width: 50%;
    position: absolute;
    top: 0px;
    transition: all 0.5s cubic-bezier(0.25, 0.25, 0.75, 0.75) 0s;
  }
  section#hero .illust .door figure:nth-child(1) {
    left: 0px;
  }
  section#hero .illust .door figure:nth-child(2) {
    right: 0px;
  }
  section#hero .about {
    width: 100%;
    height: calc(100% - 56px);
    position: relative;
    top: auto;
    left: auto;
    z-index: 10;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000000 40px, #000000 calc(100% - 40px), transparent);
    mask-image: linear-gradient(to bottom, transparent, #000000 40px, #000000 calc(100% - 40px), transparent);
  }
  section#hero .about .awrap {
    width: 100%;
    height: 100%;
    background-color: #FFF;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    clip-path: inset(0 0 0 0%);
  }
  section#hero .about .awrap.on .inner .inin .atext dl {
    opacity: 1;
  }
  section#hero .about .awrap.on .inner .inin .atext .text {
    opacity: 1;
  }
  section#hero .about .awrap::before {
    content: "";
    width: 32px;
    height: 150vh;
    background-image: url(../images/green.png);
    background-repeat: repeat-y;
    background-position: center top;
    background-size: 16px 24px;
    display: block;
  }
  section#hero .about .awrap::after {
    content: "";
    width: 32px;
    height: 150vh;
    background-image: url(../images/green.png);
    background-repeat: repeat-y;
    background-position: center top;
    background-size: 16px 24px;
    position: relative;
    display: block;
    transform: rotate(180deg);
  }
  section#hero .about .awrap .inner {
    width: calc(100% - 64px);
    border-left: solid 3px #282828;
    border-right: solid 3px #282828;
    position: relative;
  }
  section#hero .about .awrap .inner .inin {
    width: calc(100% - 64px);
    padding: 64px 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 64px 0;
    position: fixed;
    top: 0px;
    left: 32px;
  }
  section#hero .about .awrap .inner .inin .atext {
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 64px 0;
    position: absolute;
    top: 100vh;
  }
  section#hero .about .awrap .inner .inin .atext dl {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    transition: all 0.5s ease-in 0.5s;
  }
  section#hero .about .awrap .inner .inin .atext dl dt span {
    color: #282828;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    white-space: nowrap;
  }
  section#hero .about .awrap .inner .inin .atext dl dd {
    color: #282828;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    white-space: nowrap;
  }
  section#hero .about .awrap .inner .inin .atext .text {
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    transition: all 0.5s ease-in 0.75s;
  }
  section#hero .about .awrap .inner .inin .atext .text h4 {
    color: #282828;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.75;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    margin-bottom: 16px;
  }
  section#hero .about .awrap .inner .inin .atext .text p {
    color: #282828;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#hero .about .awrap .inner .inin figure {
    width: calc(100% - 6px);
    padding: 40px 30px 400px 30px;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.75) 10%, #FFF 30%, #FFF 100%);
    position: absolute;
    top: -100px;
  }
  section#hero .about .awrap .inner .inin figure.sp-ev {
    display: block;
  }
  section#culture {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0 0;
    margin-bottom: 64px;
  }
  section#culture::before {
    content: "CORE's Culture";
    color: #282828;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.75;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    text-align: left;
    width: calc(100% - 32px);
    margin-bottom: 40px;
    display: block;
  }
  section#culture .illust {
    width: calc(100% - 115px);
    margin-bottom: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px 11.5%;
  }
  section#culture .illust figure {
    width: 10.8%;
  }
  section#culture .text {
    text-align: left;
    width: calc(100% - 32px);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  section#culture .text h4 {
    color: #282828;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.75;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    margin-bottom: 12px;
  }
  section#culture .text h5 {
    display: none;
  }
  section#culture .text p {
    color: #282828;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#culture .text p br {
    display: none;
  }
  section#service {
    width: calc(100% - 32px);
    background-color: #282828;
    margin: 0 auto;
    padding: 80px 0;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    position: relative;
  }
  section#service:not(:last-child) {
    margin-bottom: 80px;
  }
  section#service::before {
    content: none;
  }
  section#service .tt {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 40px;
  }
  section#service .tt dl {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 40px;
  }
  section#service .tt dl dt span {
    color: #FFF;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#service .tt dl dd {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#service .tt p {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.75;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    text-align: left;
    padding: 0 16px;
  }
  section#service .each {
    width: 100%;
    padding: 0 32px;
    margin-bottom: 40px;
    position: relative;
  }
  section#service .each .swiper-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
  }
  section#service .each .swiper-wrapper .service {
    width: calc((100% - 80px) / 3);
    background-color: #f9f6f2;
    padding: 16px;
    border: solid 3px #282828;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    position: relative;
  }
  section#service .each .swiper-wrapper .service figure {
    width: 52.5%;
  }
  section#service .each .swiper-wrapper .service dl.num {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
  }
  section#service .each .swiper-wrapper .service dl.num dt {
    color: #282828;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#service .each .swiper-wrapper .service dl.num dd {
    color: #8CB808;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#service .each .swiper-wrapper .service dl.name {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 16px;
  }
  section#service .each .swiper-wrapper .service dl.name dt {
    color: #282828;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.75;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#service .each .swiper-wrapper .service dl.name dd {
    color: #282828;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.75;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#service .each .swiper-wrapper .service p {
    width: 100%;
    background-color: #FFF;
    padding: 24px 8px;
    border-radius: 16px;
  }
  section#service .each .swiper-wrapper .service p span {
    color: #282828;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    font-feature-settings: "palt";
  }
  section#service .each .swiper-wrapper .service p span br {
    display: none;
  }
  section#service .each .mybtn {
    width: 32px;
    height: 32px;
    background-color: #282828;
    background-image: url(../../common/images/arrow_link_w.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 13px 8px;
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    border: solid 1px #F9F6F2;
    border-radius: 16px;
    position: absolute;
    top: calc(50% - 16px);
    z-index: 3;
  }
  section#service .each .mybtn.btn-prev {
    left: 16px;
    transform: rotate(180deg);
  }
  section#service .each .mybtn.btn-next {
    right: 16px;
  }
  section#service .each .mybtn.swiper-button-disabled {
    display: none;
  }
  section#recruit {
    width: 100%;
  }
  section#recruit::before {
    height: 32px;
  }
  section#recruit::after {
    height: 32px;
  }
  section#recruit .wrap {
    width: 100%;
    padding: 80px 0;
    background-color: #8CB808;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
  }
  section#recruit .wrap .inner {
    text-align: left;
    width: calc(100% - 32px);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  section#recruit .wrap .inner > dl {
    margin-bottom: 40px;
  }
  section#recruit .wrap .inner > dl > dt span {
    color: #f9f6f2;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#recruit .wrap .inner > dl > dd {
    color: #f9f6f2;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section#recruit .wrap .inner .banner {
    width: 100%;
  }
  section#recruit .wrap .inner .banner a {
    width: 100%;
    padding: 8px 8px 64px 8px;
    border-radius: 8px;
    background-color: #f9f6f2;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 16px 0;
    position: relative;
  }
  section#recruit .wrap .inner .banner a::after {
    content: "";
    width: 40px;
    height: 40px;
    background-color: #2e7b03;
    background-image: url(../../common/images/arrow_link_w.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 13px 8px;
    border-radius: 4px;
    position: absolute;
    top: calc(100% - 40px - 8px);
    right: 8px;
  }
  section#recruit .wrap .inner .banner a figure {
    width: 100%;
    height: 240px;
    margin-bottom: 56px;
    border-radius: 4px;
  }
  section#recruit .wrap .inner .banner a figure img {
    width: 77%;
  }
  section#recruit .wrap .inner .banner a > dl {
    width: calc(100% - 32px);
  }
  section#recruit .wrap .inner .banner a > dl > dt {
    color: #282828;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    margin-bottom: 10px;
  }
  section#recruit .wrap .inner .banner a > dl > dd {
    color: #282828;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section .inner {
    width: 100%;
  }
  section .inner .title {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  section .inner .title:not(:last-child) {
    margin-bottom: 40px;
  }
  section .inner .title > div h3 {
    color: #f9f6f2;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-size: 9.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    margin-bottom: 8px;
  }
  section .inner .title > div p {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0 8px;
  }
  section .inner .title > div p::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #8CB808;
    border-radius: 3px;
    display: block;
  }
  section .inner .title > div p span {
    color: #f9f6f2;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section .inner .title dl {
    text-align: left;
    width: 526px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px 0;
  }
  section .inner .title dl dt {
    color: #f9f6f2;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section .inner .title dl dd:nth-child(2) {
    color: #f9f6f2;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section .inner .title dl dd:nth-child(3) {
    margin-left: auto;
  }
  section .inner .title dl dd:nth-child(3) a {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0 16px;
  }
  section .inner .title dl dd:nth-child(3) a:hover span {
    color: #8CB808;
  }
  section .inner .title dl dd:nth-child(3) a span {
    color: #f9f6f2;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.1em;
    font-feature-settings: "palt";
    transition: all 0.3s ease-in 0s;
  }
  section .inner .title dl dd:nth-child(3) a::after {
    content: "";
    width: 56px;
    height: 36px;
    background-image: url(../../common/images/btn1.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
    transition: all 0.3s ease-in 0s;
  }

  footer .cp {
    border-top: none;
  }
}

/*# sourceMappingURL=style_home.css.map */
