
/* recet */
/**
 * Add the correct display in IE.
 */

main {
  display: block;
}

[hidden] {
  display: none !important;
}

.mp {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

li,
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: white;
}


/*
    Josh's Custom CSS Reset
    https://www.joshwcomeau.com/css/custom-css-reset/
  */
*,
*::before,
*::after {
  box-sizing: border-box
}

* {
  margin: 0
}

html,
body {
  overflow-x: clip;
}

body {
  width: 100%;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%
}

input,
button,
textarea,
select {
  font: inherit
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word
}

#root,
#__next {
  isolation: isolate
}

button {
  border: none;
  background: none;
}

hr {
  border: none;
}

/* recet end */
html {
  scroll-behavior: smooth;
}



/* general */
.wrap {
  /* width: 100%; */
  margin: 0 2rem;
}

@media (max-width: 48em) {
  .wrap {
    /* width: 100%; */
    margin: 0 1rem;
  }
}

.PC-only {
  display: block;
}

.Mobile-only {
  display: none;
}

@media (max-width: 48em) {
  .PC-only {
    display: none;
  }

  .Mobile-only {
    display: block;
  }
}

/* media */
@media screen and (min-width:48rem) and (max-width:990px) {}

@media (max-width: 48em) {}

/* header */
.header {
  position: fixed;
  transform: translateY(-100%);
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background 0.3s ease;
  padding: 1.5rem 2rem;
  box-sizing: border-box;
  /* background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(12px); */
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.header--hidden {
  transform: translateY(-100%);
}

.header--scrolled {
  /* background: rgba(0, 0, 0, 0.6); */
  backdrop-filter: blur(10px);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}

.header__logo {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-decoration: none;
  z-index: 102;
  /* sit above the nav menu */
  position: relative;
}

.header__logo img {
  height: 32px;
  width: auto;
}

@media (max-width: 48em) {
  .header__logo img {
    align-self: flex-start;
    height: 24px;
    width: auto;
  }
}

.header__logo p {
  color: white;
  font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  margin: 0;
}

/* Hamburger button */
.hamburger {
  position: relative;
  width: 45px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 102;
  display: none;
  flex-direction: column;
  justify-content: space-between;
}

.header--scrolled .hamburger {
  display: flex;
}

@media (max-width: 48em) {
  .hamburger {
    display: flex;
  }
}

.hamburger__line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: white;
  transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1), opacity 0.4s ease;
  transform-origin: center;
}

.header.is-open .hamburger__line--top {
  transform: translateY(13.5px) rotate(45deg);
}

.header.is-open .hamburger__line--mid {
  opacity: 0;
}

.header.is-open .hamburger__line--bot {
  transform: translateY(-13.5px) rotate(-45deg);
}

/* Nav Menu Overlay */
.header__nav {
  position: static;
  width: auto;
  height: auto;
  background: transparent;
  backdrop-filter: none;
  z-index: 101;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.5s ease;
  display: block;
  padding: 0;
}

.header.is-open .header__nav {
  opacity: 1 !important;
  pointer-events: all !important;
}

.header__nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.9rem;
  list-style: none;
}

.header__nav a {
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  text-decoration: none;
  transition: opacity 0.3s ease, letter-spacing 0.3s ease;
  letter-spacing: 0.1em;
}

.header__nav a:hover {
  opacity: 0.6;
  letter-spacing: 0.15em;
}

.header--scrolled .header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgb(10 15 25 / 70%);
  backdrop-filter: blur(15px);
  z-index: 101;
  opacity: 0;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  padding-top: 16vh;
  padding-right: 3rem;
  box-sizing: border-box;
}

.header--scrolled .header__nav ul {
  flex-direction: column;
  gap: 1.5rem;
  text-align: right;
}

.header--scrolled .header__nav a {
  font-size: 1.1rem;
}

@media (max-width: 48em) {
  .header {
    padding: 1.5rem 1.5rem;
  }

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgb(10 15 25 / 70%);
    backdrop-filter: blur(15px);
    z-index: 101;
    opacity: 0;
    pointer-events: none;
    display: flex;
    justify-content: flex-end;
    padding-top: 16vh;
    padding-right: 2rem;
    box-sizing: border-box;
  }

  .header__nav ul {
    flex-direction: column;
    gap: 1.5rem;
    text-align: right;
  }

  .header__nav a {
    font-size: 1.1rem;
  }
}

/* footer */
.footer {
  background: #000;
  width: 100%;
  padding: 0 2rem;
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
}

.footerSide {
  writing-mode: vertical-rl;
  opacity: 0.6;

  color: white;
  text-align: center;
  font-family: "Aoboshi One";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
}

.footerWrap {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  padding: 5rem 1rem 5rem 2rem;
}

@media (max-width: 1200px) {

  .footerWrap {
    flex-direction: column;
    margin-left: 0;
    gap: 2rem;
  }
}

@media (max-width: 48em) {
  .footer {
    padding: 0 1rem 5rem 1rem;

  }

  .footerSide {
    margin-top: 12rem;
    opacity: 0.4;
  }

  .footerWrap {
    flex-direction: column;
    margin-left: 0;
    padding: 0;

  }
}

.footerCont {
  margin-top: 5rem;
  width: 100%;
  padding: 0 var(--side-padding);
  display: flex;
  align-items: center;
}

.footerInfo {
  max-width: 50rem;
}

.footerLogo img {
  margin-bottom: 1rem;
}

@media (max-width: 1200px) {
  .footerInfo {
    max-width: 100%;
  }

  .footerLogo img {
    margin-bottom: 0;
  }
}

@media (max-width: 48em) {
  .footerInfo {
    max-width: 100%;
  }

  .footerLogo img {
    margin-bottom: 0;
  }

}

.footerSubslogan {
  color: white;
  font-family: "M PLUS 1p";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.05625rem;
}

.footerAddress {
  margin-top: 1.5rem;
  color: white;
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.05rem;
}

.footerNav {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

@media (max-width: 1200px) {
  .footerAddress {
    margin-top: 1rem;
  }
}

@media (max-width: 48em) {
  .footerSubslogan {
    font-size: 0.9rem;
    letter-spacing: 0.045rem;

  }

  .footerNav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 5rem;
  }
}

.footerNav a {
  text-decoration: none;
  padding: 0 2rem;
  position: relative;

  white-space: nowrap;
  transition: opacity 0.3s ease, letter-spacing 0.3s ease;
  letter-spacing: 0.1em;


  color: white;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem;
}

.footerNav a:hover {
  opacity: 0.6;
  letter-spacing: 0.15em;
}

.footerNav a::before {
  content: '|';
  position: absolute;
  left: -0.2rem;
  color: white;
  font-weight: 300;
}

.footerNav a:last-child::after {
  content: '|';
  position: absolute;
  right: -0.2rem;
  color: white;
  font-weight: 300;
}



@media (max-width: 48em) {
  .footerNav a {
    padding: 0 1rem;
  }

  .footerNav a:last-child::after {
    display: none;
  }

}

/* main page */
.mainPageWrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: end;
  min-height: 100svh;
  padding-top: 14rem;
}

.mainPageWrap h1 {
  margin-top: 3rem;
  color: white;
  font-family: "Aoboshi One";
  font-size: 5.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.2rem;
}

.mainPageWrap h1 span {
  color: white;
  font-family: "Aoboshi One";
  font-size: 5.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.2rem;
}


.mainPageWrap h4 {
  margin-top: 0;
  color: white;
  font-family: "Noto Sans JP";
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 900;
  line-height: 3rem;
  letter-spacing: 0.18rem;
}

.mainPageWrap h4 span {
  margin-top: 0;
  color: white;
  font-family: "Noto Sans JP";
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3rem;
  letter-spacing: 0.18rem;
}

@media (max-width: 48em) {
  .mainPageWrap {
    padding-top: 4rem;
  }

  .mainPageWrap h1 {
    font-size: 2.5rem;
    letter-spacing: -0.05rem;
  }

  .mainPageWrap h1 span:not(.word-group) {
    font-size: 1.5rem;
  }

  .mainPageWrap h1 span {
    margin-top: 0;
    font-size: 3rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0rem;
  }

  .mainPageWrap h4 {
    margin-top: 0;
    font-size: 1.375rem;
    line-height: 2rem;
  }

  .mainPageWrap h4 span {
    margin-top: 0;
    font-size: 1rem;
  }
}

.word-group {
  white-space: nowrap;
  display: inline-flex;
}

/* GSAP Custom Tags that avoid breaking span selectors */
wrap.anim-chunk {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  /* Keep baseline flow with commas */
}

inner.inner {
  display: inline-block;
  transform: translate3d(0, 0, 0);
  /* Force hardware accel like CodePen */
}

.mainPageMoreLineWrap {
  margin-top: 3rem;
  margin-bottom: 2rem;
  overflow: hidden;
  width: fit-content;
}

.mainPageMoreLine {
  width: fit-content;
  border-left: 1px solid white;
  height: 4rem;
  padding-left: 1.5rem;
  display: flex;
  align-items: flex-end;
}

.mainPageMoreLine p {
  color: white;
  font-family: "Aoboshi One";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
}

/* blure animation */
.blureAnimationWrap {
  position: relative;
  width: 100%;
  margin: 25rem auto;
  cursor: none;
}



.blureAnimationWrap .blur-text,
.blureAnimationWrap .focus-text {
  text-align: center;
  color: white;
  font-family: "Aoboshi One";
  font-size: 5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 5rem;
  margin: 0;
  cursor: none;
}

.blureAnimationWrap .blur-text {
  filter: blur(5px);
  position: relative;
  z-index: 1;
}

.blureAnimationWrap .focus-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
  clip-path: inset(0 100% 0 0);
  /* hide by default */
}

@media (max-width: 48em) {
  .blureAnimationWrap {
    margin: 12.5rem auto;
  }

  .blureAnimationWrap .blur-text,
  .blureAnimationWrap .focus-text {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }
}

/* focus cursor */
.focus-cursor {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  pointer-events: none;
  opacity: 0;
  z-index: 3;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.blureAnimationWrap:hover .focus-cursor {
  opacity: 1;
}

.tri-1 {
  position: absolute;
  top: 0;
  left: 0;
}

.bit-top {
  position: absolute;
  left: 0;
  top: 0;
  height: 5px;
  width: 10px;
  background: #fff;
}

.bit-top-left {
  position: absolute;
  left: 0;
  top: 5px;
  height: 5px;
  width: 5px;
  background: #fff;
}

.tri-2 {
  position: absolute;
  top: 0;
  right: 0;
}

.bit-top-right {
  position: absolute;
  right: 0;
  top: 0;
  height: 5px;
  width: 10px;
  background: #fff;
}

.bit-top-right-2 {
  position: absolute;
  right: 0;
  top: 0;
  height: 10px;
  width: 5px;
  background: #fff;
}

.tri-3 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.bit-bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 5px;
  background: #fff;
}

.bit-bottom-left-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 10px;
  background: #fff;
}

.tri-4 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.bit-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 5px;
  width: 10px;
  background: #fff;
}

.bit-bottom-right-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 10px;
  width: 5px;
  background: #fff;
}

/* sticky left text */
.stickyLeftTextWrap {
  margin-right: 5rem;
  margin-bottom: 20rem;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 5rem 1fr;
  align-items: start;
}

@media (max-width: 1000px) {
  .stickyLeftTextWrap {
    margin-right: 0rem;
    margin-bottom: 20rem;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 3rem 1fr;
    align-items: start;
  }
}

@media (max-width: 48em) {
  .stickyLeftTextWrap {
    margin-right: 0rem;
    margin-bottom: 12.5rem;
    grid-template-columns: 2rem 1fr;
  }
}

.stickyLeftText {
  position: -webkit-sticky;
  position: sticky;
  top: 7rem;
  align-self: flex-start;
  height: max-content;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: white;
  font-family: "Aoboshi One";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
}



.cardHover-1,
.cardHover-2,
.cardHover-3,
.cardHover-4,
.cardHover-5,
.cardHover-6 {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-image: url(../images/about-scheme-block-bg.svg);
  background-size: auto;
  transition: 0.5s;
}


.cardHover-1::before,
.cardHover-2::before,
.cardHover-3::before,
.cardHover-4::before,
.cardHover-5::before,
.cardHover-6::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;


  opacity: 0;
  filter: blur(15px);
  transform: scale(1.05);
  transition: opacity 0.7s ease, filter 0.7s ease, transform 0.7s ease;
}


.cardHover-1:hover::before,
.cardHover-2:hover::before,
.cardHover-3:hover::before,
.cardHover-4:hover::before,
.cardHover-5:hover::before,
.cardHover-6:hover::before {
  opacity: 1;
  filter: blur(0px);
  transform: scale(1);
}


.cardHover-1::before {
  background-image: url(../images/service-card-bg-1.png); background-image: image-set(url(../images/service-card-bg-1.webp) type("image/webp"), url(../images/service-card-bg-1.png) type("image/png"));
}

.cardHover-2::before {
  background-image: url(../images/service-card-bg-2.png); background-image: image-set(url(../images/service-card-bg-2.webp) type("image/webp"), url(../images/service-card-bg-2.png) type("image/png"));
}

.cardHover-3::before {
  background-image: url(../images/service-card-bg-3.png); background-image: image-set(url(../images/service-card-bg-3.webp) type("image/webp"), url(../images/service-card-bg-3.png) type("image/png"));
}

.cardHover-4::before {
  background-image: url(../images/service-card-bg-4.png); background-image: image-set(url(../images/service-card-bg-4.webp) type("image/webp"), url(../images/service-card-bg-4.png) type("image/png"));
}

.cardHover-5::before {
  background-image: url(../images/service-card-bg-5.png); background-image: image-set(url(../images/service-card-bg-5.webp) type("image/webp"), url(../images/service-card-bg-5.png) type("image/png"));
}

.cardHover-6::before {
  background-image: url(../images/service-card-bg-6.png); background-image: image-set(url(../images/service-card-bg-6.webp) type("image/webp"), url(../images/service-card-bg-6.png) type("image/png"));
}

/* hover for small cards */
.smallCardHover-1,
.smallCardHover-2,
.smallCardHover-3,
.smallCardHover-4,
.smallCardHover-5,
.smallCardHover-6 {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-image: url(../images/about-scheme-block-bg.svg);
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.5s;
}

.smallCardHover-1::before,
.smallCardHover-2::before,
.smallCardHover-3::before,
.smallCardHover-4::before,
.smallCardHover-5::before,
.smallCardHover-6::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;


  opacity: 0;
  filter: blur(15px);
  transform: scale(1.05);
  transition: opacity 0.7s ease, filter 0.7s ease, transform 0.7s ease;
}

.smallCardHover-1:hover::before,
.smallCardHover-2:hover::before,
.smallCardHover-3:hover::before,
.smallCardHover-4:hover::before,
.smallCardHover-5:hover::before,
.smallCardHover-6:hover::before {
  opacity: 1;
  filter: blur(0px);
  transform: scale(1);
}

.smallCardHover-1::before {
  background-image: url(../images/service-card-bg-1.png); background-image: image-set(url(../images/service-card-bg-1.webp) type("image/webp"), url(../images/service-card-bg-1.png) type("image/png"));
}

.smallCardHover-2::before {
  background-image: url(../images/service-card-bg-2.png); background-image: image-set(url(../images/service-card-bg-2.webp) type("image/webp"), url(../images/service-card-bg-2.png) type("image/png"));
}

.smallCardHover-3::before {
  background-image: url(../images/service-card-bg-3.png); background-image: image-set(url(../images/service-card-bg-3.webp) type("image/webp"), url(../images/service-card-bg-3.png) type("image/png"));
}

.smallCardHover-4::before {
  background-image: url(../images/service-card-bg-4.png); background-image: image-set(url(../images/service-card-bg-4.webp) type("image/webp"), url(../images/service-card-bg-4.png) type("image/png"));
}

.smallCardHover-5::before {
  background-image: url(../images/service-card-bg-5.png); background-image: image-set(url(../images/service-card-bg-5.webp) type("image/webp"), url(../images/service-card-bg-5.png) type("image/png"));
}

.smallCardHover-6::before {
  background-image: url(../images/service-card-bg-6.png); background-image: image-set(url(../images/service-card-bg-6.webp) type("image/webp"), url(../images/service-card-bg-6.png) type("image/png"));
}

/* about us */
.aboutWrap {
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 12.5rem;
}



.aboutTextWrap {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (max-width: 48em) {
  .aboutTextWrap {
    gap: 2rem;
  }
}

.aboutTextWrap h5 {
  width: fit-content;
  color: #161616;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 900;
  line-height: 120%;
  letter-spacing: 0.35rem;
  margin: 0;
}

.aboutTextWrap .mt-space {
  margin-top: 3.5rem;
}

@media (max-width: 48em) {
  .aboutTextWrap h5 {
    /* width: fit-content; */
    color: #161616;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 900;
    line-height: 120%;
    letter-spacing: 0.35rem;
    margin: 0;
  }

  .aboutTextWrap .mt-space {
    margin-top: 2rem;
  }
}



.anim-line {
  position: relative;
  overflow: hidden;
}

.anim-bg {
  position: relative;
  display: inline-block;
  color: transparent;
}

.anim-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  background: #D5D5D5;
  z-index: -1;
}

.anim-line.is-active .anim-bg {
  animation: revealText 0.01s forwards;
  animation-delay: calc(var(--delay, 0s) + 0.5s);
}

.anim-line.is-active .anim-bg::before {
  animation: sweepBlock 1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes sweepBlock {
  0% {
    width: 0%;
    background: #D5D5D5;
  }

  50% {
    width: 100%;
    background: #D5D5D5;
  }

  51% {
    width: 100%;
    background: #FFF;
  }

  100% {
    width: 100%;
    background: #FFF;
  }
}

@keyframes revealText {
  to {
    color: #161616;
  }
}

.marker {
  padding: 3px 1px;
  background-image: linear-gradient(white, white);
  background-position: left center;
  color: #000;
  display: inline;
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 1.5s;
}

.marker.on {
  background-size: 100% 100%;
}

@media (max-width: 48em) {
  .marker {
    padding: 1px 1px;
  }
}

.schemeWrap {
  background-image: url(../images/about-scheme-block-bg.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  padding: 6.25rem 3rem;

  border-top: 1px solid white;
  border-bottom: 1px solid white;
}

@media screen and (min-width:48rem) and (max-width:990px) {
  .schemeWrap {
    flex-direction: column;
    gap: 2.5rem;
  }
}

@media (max-width: 48em) {
  .schemeWrap {
    padding: 4rem 1rem;
    flex-direction: column;
    gap: 2.5rem;
  }
}

.schemeWrap p {
  max-width: 540px;
  color: white;
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.8rem;
  letter-spacing: 0.16rem;
}

.schemeWrap img {
  width: 50%;
  max-width: 37.6875rem;
  max-height: 29.125rem;
  flex-shrink: 0;
}

@media (max-width: 48em) {
  .schemeWrap p {
    line-height: 2rem;
    letter-spacing: 0.1rem;
  }

  .schemeWrap img {
    width: 50%;
    min-width: 19.4375rem;
    max-width: 37.6875rem;
    max-height: 29.125rem;
    flex-shrink: 0;
  }
}

/* service */

.serviceContWrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 14rem 1fr;
  align-items: start;
  gap: 4rem;
}

@media (max-width: 1000px) {
  .serviceContWrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 11rem 1fr;
    align-items: start;
    gap: 3rem;
  }
}

@media (max-width: 48em) {
  .serviceContWrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.linksBlock {
  position: sticky;
  top: 7rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}



.linksBlock li {
  opacity: 0.5;
  color: white;
  border-bottom: 1px solid white;
  padding-bottom: 0.5rem;
  margin-bottom: 5rem;
  transition: opacity 0.3s ease;
}

.linksBlock a {
  max-width: 16.25rem;

  font-family: "Noto Sans JP";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem;
  letter-spacing: 0.125rem;
}

.linksBlock li:active,
.linksBlock li:hover,
.linksBlock li.is-active {
  opacity: 1;
}

@media (max-width: 48em) {
  .linksBlock {
    position: unset;
  }



  .linksBlock li {
    margin-bottom: 1.5rem;
    width: fit-content;
  }

  .linksBlock a {
    font-size: 1.125rem;
    letter-spacing: 0.1125rem;
  }

  .linksBlock li:active {
    opacity: 1;
  }
}

.bigCardBlockWrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.bigCardBlockText {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.4rem;
}

.bigCardBlockText h4 {
  color: white;
  font-family: "Noto Sans JP";
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 900;
  line-height: 4rem;
  letter-spacing: 0.35rem;
}

.bigCardBlockText p {
  color: white;
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6rem;
  letter-spacing: 0.1rem;
}

@media (max-width: 48em) {
  .bigCardBlockText h4 {
    font-size: 2rem;
    font-style: normal;
    font-weight: 900;
    line-height: 3rem;
    letter-spacing: 0.2rem;
  }

  .bigCardBlockText p {
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2rem;
    letter-spacing: 0.1rem;
  }
}

.bigCardBlock {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: -1px;
}

@media (max-width: 48em) {
  .bigCardBlock {
    gap: 2rem;
  }
}

.bigCardWrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 7.2rem;
  padding: 5rem 3rem 7rem 3rem;

  border-top: 1px solid white;
  border-bottom: 1px solid white;
}

@media (max-width: 48em) {
  .bigCardWrap {
    min-width: 19.4375rem;
    padding: 2.5rem 1rem 4rem 1rem;
    gap: 2.5rem;
  }
}

.bigCountCard {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.bigCountCard img {
  width: 3rem;
  height: 4rem;
  aspect-ratio: 3/4;
}

.bigCountCard h5 {
  color: white;
  font-family: "Aoboshi One";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 5.5rem;
  text-transform: uppercase;
}

.bigCardTextWrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bigCardTextTitle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  align-self: stretch;
}

.markerCardWhite {
  padding: 2px 1px;
  background: white;
  color: black;
  display: inline;
}

.markerCardBlack {
  padding: 2px 1px;
  background: black;
  color: white;
  display: inline;
}

.bigCardTextTitle h5 {
  font-family: "Noto Sans JP";
  font-size: 2rem;
  font-style: normal;
  font-weight: 900;
  line-height: 2.4rem;
  letter-spacing: 0.2rem;
}

.bigCardTextTitle h6 {
  font-family: "Noto Sans JP";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2rem;
}

@media (max-width: 48em) {
  .bigCardTextTitle h5 {
    font-size: 1.375rem;
    letter-spacing: 0.1375rem;
  }

  .bigCardTextTitle h6 {
    font-size: 1rem;
  }
}

.bigCardTextCont {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  align-self: stretch;
}

.bigCardTextCont p {
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 48em) {
  .bigCardTextCont p {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}



/* case */
.smallCardBlockWrap {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 0 5rem 25rem 5rem;
}

@media (max-width: 939px) {
  .smallCardBlockWrap {
    padding: 0 0rem 12.5rem 0rem;
  }
}


.smallCardBlockTitleWrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.smallCardBlockTitleWrap h3 {
  color: white;
  font-family: "Noto Sans JP";
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 900;
  line-height: 4rem;
  letter-spacing: 0.35rem;
}

.smallCardBlockTitleWrap p {
  color: white;
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3rem;
  letter-spacing: 0.1rem;
}

@media (max-width: 48em) {
  .smallCardBlockTitleWrap h3 {
    font-size: 2rem;
    font-style: normal;
    font-weight: 900;
    line-height: 3rem;
    letter-spacing: 0.2rem;
  }

  .smallCardBlockTitleWrap p {
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2rem;
    letter-spacing: 0.1rem;
  }
}

.smallCardWrap {
  display: grid;
  justify-items: start;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 2rem;
}

@media screen and (min-width:940px) and (max-width:1340px) {
  .smallCardWrap {
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
  }
}

@media (max-width: 939px) {
  .smallCardWrap {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
}

@media (max-width: 48em) {
  .smallCardWrap {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
}

.smallCard {
  max-width: 100%;
  min-width: 21.4rem;
  height: 32rem;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;

}

@media screen and (min-width:940px) and (max-width:1340px) {
  .smallCard {
    max-width: 24rem;
    min-width: 21.4rem;
    height: 28.6rem;
  }
}

@media (max-width: 939px) {
  .smallCard {
    max-width: 100%;
    min-width: 21.4rem;
    height: 28.6rem;
  }
}

@media (max-width: 48em) {
  .smallCard {
    max-width: 100%;
    min-width: 21.4rem;
    height: 28.6rem;
  }
}

.smallCardWhiteTitle {
  background: white;
  display: inline-flex;
  padding: 0.125rem 0.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: black;
  text-align: center;
  font-family: "Aoboshi One";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

}

.smallCardCont {
  height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3.44rem 2rem 7.75rem 2rem;
}

@media (max-width: 48em) {
  .smallCardCont {
    padding: 3.44rem 1.5rem 4.3rem 1.5rem;
  }
}

.smallCardCont h4 {
  color: white;
  font-family: "Noto Sans JP";
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.5rem;
}

.smallCardCont p span {
  color: white;
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2rem;
}

/* .markerSmallWhite {
  padding: 2px 1px;
  background: white;
  color: black;
  display: inline;
} */

.smallCardCont:hover span {
  padding: 2px 1px;
  background: white;
  color: black;
  display: inline;
}



@media (max-width: 48em) {}



/* contact */
/* Floating CTA Hidden State */
.float-cta.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(20px) scale(0.9) !important;
}

.cta-section {
  background: black;
  padding: 1rem;
  position: relative;
  z-index: 60;
}

.ctaWrap {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: 4px solid #FFF;
  padding: 8rem;
  transition: border-color 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}

@media screen and (min-width:991px) and (max-width:1120px) {
  .ctaWrap {

    padding: 4rem;
  }
}

@media screen and (min-width:48rem) and (max-width:990px) {
  .ctaWrap {
    flex-direction: column;
    padding: 4rem;
  }
}

.ctaWrap:hover {
  border-color: transparent;
}

.ctaWrap-border {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  pointer-events: none;
  overflow: visible;
  z-index: 1;
}

.ctaWrap-rect {
  stroke-width: 4px;
  fill: none;
  stroke: url(#switch-gradient1);
  filter: url(#switch-glow);
  transition: stroke-dasharray 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}

@media (max-width: 48em) {
  .ctaWrap {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 1rem;
  }
}

.ctaTextWrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;

}

.ctaTextWrap h4 {
  font-family: "Aoboshi One";
  color: white;
  font-size: 5.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 5.5rem;
}

.ctaTextWrap h5 {
  margin-top: 3rem;
  color: white;
  font-family: "Noto Sans JP";
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 900;
  line-height: 4rem;
  letter-spacing: 0.5rem;
}

.ctaTextWrap p {
  margin-top: 1.5rem;
  color: white;
  font-family: "Noto Sans JP";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 4rem;
  letter-spacing: 0.125rem;
}

@media screen and (min-width:991px) and (max-width:1300px) {
  .ctaTextWrap h5 {
    margin-top: 2rem;
    color: white;
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-style: normal;
    font-weight: 900;
    line-height: 3rem;
    letter-spacing: 0.2rem;
  }

  .ctaTextWrap p {
    margin-top: 2rem;
    color: white;
    font-family: "Noto Sans JP";
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.5rem;
    letter-spacing: 0.1rem;
  }
}

@media screen and (min-width:48rem) and (max-width:990px) {
  .ctaTextWrap h5 {
    margin-top: 2rem;
    color: white;
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-style: normal;
    font-weight: 900;
    line-height: 3rem;
    letter-spacing: 0.2rem;
  }

  .ctaTextWrap p {
    margin-top: 2rem;
    color: white;
    font-family: "Noto Sans JP";
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2rem;
    letter-spacing: 0.1rem;
  }
}

@media (max-width: 48em) {
  .ctaTextWrap h4 {
    color: white;
    font-family: "Aoboshi One";
    font-size: 2.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 5.5rem;
    text-transform: uppercase;
  }

  .ctaTextWrap h5 {
    margin-top: 0;
    color: white;
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-style: normal;
    font-weight: 900;
    line-height: 3rem;
    letter-spacing: 0.2rem;
  }

  .ctaTextWrap p {
    margin-top: 3rem;
    color: white;
    font-family: "Noto Sans JP";
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2rem;
    letter-spacing: 0.1rem;
  }
}

.ctaCircleWrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.cta-circle {
  position: relative;
  display: flex;
  width: 20.6875rem;
  height: 20.6875rem;
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 50%;
  transition: opacity 0.3s ease;
}

.cta-circle:hover {
  opacity: 0.7;
  cursor: pointer;
}

.cta-circle-svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  animation: rotateCircleContent 15s linear infinite;
}

.cta-circle text {
  font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 4px;
}

.cta-arrow-svg {
  position: absolute;
  z-index: 2;
  width: 50px;
  height: 50px;
}

@keyframes rotateCircleContent {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 48em) {}

/* GRADIENT BACKGROUND ANIMATION */
:root {
  --color-bg1: rgb(8, 10, 15);
  --color-bg2: rgb(0, 17, 32);
  --color1: 18, 113, 255;
  --color2: 107, 74, 255;
  --color3: 100, 100, 255;
  --color4: 50, 160, 220;
  --color5: 80, 47, 122;
  --color-interactive: 140, 100, 255;
  --circle-size: 80%;
  --blending: hard-light;
}

@keyframes moveInCircle {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes moveVertical {
  0% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(50%);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes moveHorizontal {
  0% {
    transform: translateX(-50%) translateY(-10%);
  }

  50% {
    transform: translateX(50%) translateY(10%);
  }

  100% {
    transform: translateX(-50%) translateY(-10%);
  }
}


.gradient-bg {
  width: 150vw;
  height: 150vh;
  position: fixed;
  overflow: hidden;
  background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
  top: 0;
  left: 0;
  z-index: -1;
}

@media (max-width: 48em) {
  .gradient-bg {
    width: 100%;
    height: 150vh;
    position: fixed;
    overflow: hidden;
    background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
    top: 0;
    left: 0;
    z-index: -1;
  }
}

.gradient-bg .svgBlur {
  display: none;
}

.gradient-bg .noiseBg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  mix-blend-mode: soft-light;
  opacity: 0.3;
}

.gradient-bg .gradients-container {
  filter: url(#goo) blur(30px);
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.gradient-bg .g1 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: center center;
  animation: moveVertical 30s ease infinite;
  opacity: 1;
}

.gradient-bg .g2 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 400px);
  animation: moveInCircle 20s reverse infinite;
  opacity: 1;
}

.gradient-bg .g3 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2 + 200px);
  left: calc(50% - var(--circle-size) / 2 - 500px);
  transform-origin: calc(50% + 400px);
  animation: moveInCircle 40s linear infinite;
  opacity: 1;
}

.gradient-bg .g4 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 200px);
  animation: moveHorizontal 40s ease infinite;
  opacity: 0.7;
}

.gradient-bg .g5 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: calc(var(--circle-size) * 2);
  height: calc(var(--circle-size) * 2);
  top: calc(50% - var(--circle-size));
  left: calc(50% - var(--circle-size));
  transform-origin: calc(50% - 800px) calc(50% + 200px);
  animation: moveInCircle 20s ease infinite;
  opacity: 1;
}

.gradient-bg .interactive {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: 100%;
  height: 100%;
  top: -50%;
  left: -50%;
  opacity: 0.7;
}

/* Floating CTA */
.float-cta {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  width: 14.8125rem;
  height: 14.8125rem;
  padding: 4.625rem 1.0625rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 50%;
  border: 1px solid #FFF;
  color: #FFF;
  font-family: "Aoboshi One", serif;
  font-size: 1.5rem;
  text-decoration: none;
  z-index: 50;
  overflow: hidden;
  transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1),
    height 0.6s cubic-bezier(0.65, 0, 0.35, 1),
    font-size 0.6s cubic-bezier(0.65, 0, 0.35, 1),
    padding 0.6s cubic-bezier(0.65, 0, 0.35, 1),
    color 0.4s ease;
  background: transparent;
  box-sizing: border-box;
}

.float-cta.is-ready {
  transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1),
    height 0.6s cubic-bezier(0.65, 0, 0.35, 1),
    font-size 0.6s cubic-bezier(0.65, 0, 0.35, 1),
    padding 0.6s cubic-bezier(0.65, 0, 0.35, 1),
    color 0.4s ease,
    opacity 0.4s ease,
    transform 0.4s ease;
}

.float-cta__hover {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #FFF;
  transition: width 0.5s ease-out, height 0.5s ease-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.float-cta:hover .float-cta__hover {
  width: 250%;
  height: 250%;
}

.float-cta:hover {
  color: #000;
}

/* Scrolled state */
.float-cta.is-small {
  width: 9.25rem;
  height: 9.25rem;
  padding: 2.5rem 1.0625rem;
  font-size: 1.25rem;
  aspect-ratio: 1/1;
}

@media (max-width: 48em) {

  .float-cta,
  .float-cta.is-small {
    width: 7.25rem;
    height: 7.25rem;
    padding: 1rem;
    font-size: 1rem;
    right: 2rem;
    bottom: 2rem;
    aspect-ratio: 1/1;
    flex-shrink: 0;
  }
}