@charset "UTF-8";
@font-face {
  font-family: "Lao MN";
  src: url("../fonts/lao-mn.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* -----------------------
リセット
----------------------- */
html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  overflow-wrap: break-word;
  word-break: break-all;
}

article, header, footer, aside, figure, figcaption, nav, section {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

button {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
}

/* -----------------------
  unity
----------------------- */
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 10%;
}

body {
  overflow-x: clip;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  body.active {
    overflow: hidden;
  }
}

.whopper {
  overflow: hidden;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
  will-change: transform;
}
.custom-cursor.is-visible {
  opacity: 1;
}
.custom-cursor__inner {
  position: relative;
  width: 3.4375vw;
  height: 3.4375vw;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-cursor__inner::before, .custom-cursor__inner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 6.25vw;
  height: 6.25vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 230, 253, 0.7) 0%, rgba(122, 230, 253, 0) 70%);
  animation: cursorRipple 2s ease-out infinite;
}
.custom-cursor__inner::after {
  animation-delay: 0.8s;
}
.custom-cursor__inner img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .custom-cursor {
    display: none;
  }
}

@keyframes cursorRipple {
  0% {
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
.js-text-reveal span {
  display: block;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}
.js-text-reveal span:nth-child(2) {
  transition-delay: 0.15s;
}
.js-text-reveal span:nth-child(3) {
  transition-delay: 0.3s;
}
.js-text-reveal span:nth-child(4) {
  transition-delay: 0.45s;
}
.js-text-reveal.is-visible span {
  clip-path: inset(0 0% 0 0);
}

.mask-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.1;
  padding-bottom: 0.1em;
}

.mask-char {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.mask-char.is-visible {
  transform: translateY(0);
}

.not-found {
  background: #0a0a0a;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.not-found__inner {
  text-align: center;
  padding: 6.25vw 3.125vw;
}
.not-found__num {
  font-family: "Lao MN", serif;
  font-size: 12.5vw;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  margin-bottom: 1.875vw;
}
.not-found__title {
  font-family: "Lao MN", serif;
  font-size: 2.8125vw;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.875vw;
}
.not-found__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.09375vw;
  line-height: 2;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 3.75vw;
}
.not-found__btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.09375vw;
  padding: 1.40625vw 4.6875vw;
  border-radius: 3.125vw;
  text-decoration: none;
  transition: border-color 0.4s ease;
  z-index: 0;
}
.not-found__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #52ADC0;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: width 0.5s ease, height 0.5s ease, transform 0.5s ease;
  z-index: -1;
}
.not-found__btn:hover {
  border-color: #52ADC0;
}
.not-found__btn:hover::after {
  width: 31.25vw;
  height: 31.25vw;
  transform: translate(-50%, -50%) scale(1);
}
@media screen and (max-width: 767px) {
  .not-found__btn {
    font-size: 3.5897435897vw;
    padding: 4.1025641026vw 10.2564102564vw;
  }
}
@media screen and (max-width: 767px) {
  .not-found__num {
    font-size: 30.7692307692vw;
  }
  .not-found__title {
    font-size: 7.1794871795vw;
  }
  .not-found__text {
    font-size: 3.3333333333vw;
  }
}

/* -----------------------
  header
----------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
  padding: 1.5625vw 3.125vw;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 4.1025641026vw 2.5641025641vw 4.1025641026vw 5.1282051282vw;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.header__logo img {
  width: 29.140625vw;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .header__logo img {
    width: 58.9743589744vw;
    height: auto;
    display: block;
    margin-left: -2.5641025641vw;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 3.125vw;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav-item {
  text-decoration: none;
  font-size: 1.09375vw;
  letter-spacing: 0.1em;
  font-family: "Lao MN", serif;
  transition: none;
}
.header__nav-item.is-hovered {
  background: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 11.2820512821vw;
    height: 11.2820512821vw;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 300;
    position: relative;
  }
  .header__hamburger span {
    display: block;
    position: absolute;
    width: 6.1538461538vw;
    height: 1px;
    background-color: #fff;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease;
  }
  .header__hamburger span:nth-child(1) {
    transform: translateY(-1.2820512821vw);
  }
  .header__hamburger span:nth-child(2) {
    transform: translateY(0);
    width: 4.1025641026vw;
    margin-left: -2.0512820513vw;
    align-self: flex-start;
  }
  .header__hamburger span:nth-child(3) {
    transform: translateY(1.2820512821vw);
  }
}
.header__hamburger.is-open span {
  background-color: #fff;
}
.header__hamburger.is-open span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: translateX(2.5641025641vw);
}
.header__hamburger.is-open span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}
.header__drawer {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__drawer {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #0d1b2a 100%);
    z-index: 0;
    clip-path: circle(0% at calc(100% - 9.7435897436vw) 9.7435897436vw);
    transition: clip-path 0.7s cubic-bezier(0.77, 0, 0.175, 1);
    pointer-events: none;
  }
  .header__drawer.is-open {
    clip-path: circle(150% at calc(100% - 9.7435897436vw) 9.7435897436vw);
    pointer-events: auto;
  }
}
.header__drawer-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding: 0 10.2564102564vw;
  gap: 2.0512820513vw;
}
.header__drawer-item {
  color: #fff;
  text-decoration: none;
  font-size: 9.2307692308vw;
  letter-spacing: 0.08em;
  font-family: "Lao MN", serif;
  opacity: 0;
  transform: translateY(5.1282051282vw);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.header__drawer-item.is-hovered {
  background: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.is-open .header__drawer-item {
  opacity: 1;
  transform: translateY(0);
}
.is-open .header__drawer-item:nth-child(1) {
  transition-delay: 0.3s;
}
.is-open .header__drawer-item:nth-child(2) {
  transition-delay: 0.4s;
}
.is-open .header__drawer-item:nth-child(3) {
  transition-delay: 0.5s;
}
.is-open .header__drawer-item:nth-child(4) {
  transition-delay: 0.6s;
}
.is-open .header__drawer-item:nth-child(5) {
  transition-delay: 0.7s;
}
.header__drawer-num {
  display: block;
  font-size: 2.5641025641vw;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.0256410256vw;
  font-family: "Lao MN", serif;
}
.header--dark .header__logo,
.header--dark .header__nav-item {
  color: #ffffff;
}
.header--dark .header__hamburger span {
  background-color: #ffffff;
}
.header--light .header__logo,
.header--light .header__nav-item {
  color: #000000;
}
.header--light .header__hamburger span {
  background-color: #000000;
}
.header--light .header__hamburger.is-open span {
  background-color: #ffffff !important;
}
.header--light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 9.375vw;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.2) 75%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 0;
}

.header__mega {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to bottom, rgb(255, 255, 255) calc(100% - 8.984375vw), transparent 100%);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  padding-top: 5.46875vw;
  pointer-events: none;
}
.header__mega.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .header__mega {
    display: none;
  }
}

.header__mega:not(.is-active) .header__mega-contact,
.header__mega:not(.is-active) .header__mega-panel,
.header__mega:not(.is-active) .header__mega-left,
.header__mega:not(.is-active) .header__mega-right,
.header__mega:not(.is-active) .header__mega-contact-marquee,
.header__mega:not(.is-active) .header__mega-contact-track {
  pointer-events: none !important;
  visibility: hidden;
}

.header__mega-panel {
  min-height: 17.96875vw;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 2.34375vw 4.6875vw;
  pointer-events: auto;
  z-index: 100;
}
.header__mega-panel.is-active {
  display: flex;
}

.header__mega-left {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}

.header__mega-en {
  font-family: "Lao MN", serif;
  font-size: 3.75vw;
  color: #333;
  letter-spacing: 0.05em;
  line-height: 1;
}

.header__mega-ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.9375vw;
  color: rgba(98, 98, 98, 0.8);
  letter-spacing: 0.15em;
  margin-top: 0.625vw;
}

.header__mega-right {
  position: absolute;
  top: 18%;
  transform: translateY(-50%);
  width: 15.625vw;
  height: 15.625vw;
  overflow: hidden;
  border-radius: 4px;
}
.header__mega-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header__mega-right--company {
  left: 58.59375vw;
}

.header__mega-right--business {
  left: 67.96875vw;
}

.header__mega-right--careers {
  left: 77.34375vw;
}

.header__mega-contact-left {
  display: flex;
  align-items: center;
  gap: 0.78125vw;
  padding: 0 2.5vw;
  flex-shrink: 0;
  height: 100%;
}

.header__mega-contact-en {
  font-family: "Lao MN", serif;
  font-size: 1.875vw;
  color: #fff;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.header__mega-contact-ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.78125vw;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
}

.header__mega-contact-marquee {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 2.5vw;
  padding-right: 1.875vw;
  pointer-events: none;
}

.header__mega-contact-track {
  display: flex;
  align-items: center;
  gap: 3.75vw;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.header__mega-contact-track span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.9375vw;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}
.header__mega-contact {
  display: flex;
  align-items: center;
  height: 8.984375vw;
  background-image: url("../img/global/obi.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: transparent;
  border-top: none;
  overflow: hidden;
  padding: 0 3.90625vw 0 2.34375vw;
  position: relative;
  transition: height 0.3s ease;
}
.header__mega-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(122, 230, 253, 0.15) 50%, transparent 100%);
  transition: left 0s;
  pointer-events: none;
  z-index: 0;
}
.header__mega-contact:hover::before {
  left: 150%;
  transition: left 0.8s ease;
}
.header__mega-contact:hover .header__mega-contact-en {
  color: #7ae6fd;
  text-shadow: 0 0 12px rgba(122, 230, 253, 0.6);
}
.header__mega-contact:hover .header__mega-contact-btn {
  animation: btnPulse 1.4s ease-in-out infinite;
  background: rgba(122, 230, 253, 0.25);
  border-color: rgba(122, 230, 253, 0.7);
  filter: drop-shadow(0 0 8px rgba(122, 230, 253, 0.7));
}
.header__mega-contact:hover .header__mega-contact-btn .icon-mail {
  opacity: 0;
}
.header__mega-contact:hover .header__mega-contact-btn .icon-plane {
  opacity: 1;
}
.header__mega-contact .header__mega-contact-en {
  transition: color 0.4s ease, text-shadow 0.4s ease;
}
.header__mega-contact .header__mega-contact-btn {
  pointer-events: auto;
  transition: background 0.3s ease, border-color 0.3s ease, filter 0.3s ease;
}

.header__mega-contact-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.375vw;
  height: 4.375vw;
  margin: 0 1.25vw;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  position: relative;
  cursor: pointer;
}
.header__mega-contact-btn .icon-mail {
  position: absolute;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.header__mega-contact-btn .icon-plane {
  position: absolute;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.header__mega-contact-btn svg {
  width: 1.40625vw;
  height: 1.40625vw;
}

@keyframes btnPulse {
  0%, 100% {
    filter: drop-shadow(0 0 4px rgba(122, 230, 253, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(122, 230, 253, 0.8));
  }
}
.char {
  display: inline-block;
  transition: none;
}
.char.is-hovered {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
}
.header__overlay.is-active {
  opacity: 1;
  visibility: visible;
}

#js-mega.is-contact .header__mega-contact {
  pointer-events: none;
}
#js-mega.is-contact .header__mega-contact::before {
  display: none;
}
#js-mega.is-contact .header__mega-contact:hover {
  background-image: url("../img/global/obi-contact.svg");
}
#js-mega.is-contact .header__mega-contact:hover .header__mega-contact-en {
  color: #fff;
  text-shadow: none;
}
#js-mega.is-contact .header__mega-contact:hover .header__mega-contact-btn {
  animation: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  filter: none;
}
#js-mega.is-contact .header__mega-contact:hover .header__mega-contact-btn .icon-mail {
  opacity: 1;
}
#js-mega.is-contact .header__mega-contact:hover .header__mega-contact-btn .icon-plane {
  opacity: 0;
}

/* -----------------------
  footer
----------------------- */
/* -----------------------
  CONTACT バナー
----------------------- */
.contact-ban {
  background: #fff;
  overflow: hidden;
  position: relative;
}
.contact-ban__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 6.25vw 4.6875vw;
  position: relative;
  min-height: 31.25vw;
  overflow: hidden;
}
.contact-ban__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 103%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  filter: grayscale(0%);
  transition: clip-path 0.7s cubic-bezier(0.2, 0, 0.2, 1), width 0.7s cubic-bezier(0.2, 0, 0.2, 1), height 0.7s cubic-bezier(0.2, 0, 0.2, 1), filter 0.8s ease;
  z-index: 0;
}
.contact-ban__inner:has(.contact-ban__body:hover) .contact-ban__video {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  width: 15.625vw;
  height: 17.1875vw;
  filter: grayscale(100%);
}
.contact-ban__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25vw;
  mix-blend-mode: normal;
  transition: mix-blend-mode 0s;
}
.contact-ban__inner:has(.contact-ban__body:hover) .contact-ban__body {
  mix-blend-mode: difference;
}
.contact-ban__title {
  font-family: "Lao MN", serif;
  font-size: 7.5vw;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
}
.contact-ban__title span {
  color: rgba(255, 255, 255, 0.5);
}
.contact-ban__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.015625vw;
  color: #fff;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .contact-ban__inner {
    padding: 15.3846153846vw 6.1538461538vw;
    min-height: 71.7948717949vw;
  }
  .contact-ban__title {
    font-size: 12.3076923077vw;
  }
  .contact-ban__text {
    font-size: 3.0769230769vw;
  }
  .contact-ban__video {
    width: 100%;
    height: 103%;
  }
  .contact-ban__inner:hover .contact-ban__video {
    width: 30.7692307692vw;
    height: 34.358974359vw;
  }
}

/* -----------------------
  footer
----------------------- */
.footer {
  background: #1a1a1a;
  padding: 2.5vw 4.6875vw;
  position: relative;
  z-index: 2;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
.footer__logo {
  display: block;
}
.footer__logo img {
  width: 7.03125vw;
  height: auto;
  margin-left: -1.171875vw;
}
@media screen and (max-width: 767px) {
  .footer__logo img {
    width: 23.0769230769vw;
    margin-left: -3.8461538462vw;
  }
}
.footer__copy {
  font-family: "Lao MN", serif;
  font-size: 0.78125vw;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
}
.footer__nav {
  display: flex;
  align-items: center;
  gap: 3.125vw;
}
.footer__nav-item {
  font-family: "Lao MN", serif;
  font-size: 0.9375vw;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}
.footer__nav-item:hover {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 8.2051282051vw 6.1538461538vw;
  }
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6.1538461538vw;
  }
  .footer__nav {
    gap: 6.6666666667vw;
    flex-wrap: wrap;
  }
  .footer__nav-item {
    font-size: 3.0769230769vw;
  }
  .footer__copy {
    font-size: 3.0769230769vw;
  }
}

/* -----------------------
  fonts
----------------------- */
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Lao MN", serif;
}

/* -----------------------
  C_
----------------------- */
/* -----------------------
  forth
----------------------- */
/* -----------------------
  C_example
----------------------- */
/* -----------------------
  FV
----------------------- */
.top__wrapper {
  overflow-x: clip;
}

.fv {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #000;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.fv__inner {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 15.625vw 12.5vw 12.5vw 12.5vw;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .fv__inner {
    padding: 0 6.1538461538vw 15.3846153846vw;
  }
}
.fv__text {
  color: #ffffff;
  font-family: "Lao MN", serif;
  pointer-events: none;
}
.fv__title {
  font-size: 10vw;
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: 0.02em;
  margin-bottom: 7.8125vw;
}
@media screen and (max-width: 767px) {
  .fv__title {
    font-size: 14.358974359vw;
    margin-bottom: 4.1025641026vw;
  }
}
.fv__sub {
  font-size: 1.875vw;
  line-height: 1.8;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
  .fv__sub {
    font-size: 3.5897435897vw;
    margin-top: 7.6923076923vw;
  }
}
.fv__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* -----------------------
  COMPANY
----------------------- */
.company-sec {
  padding: 12.5vw 12.5vw 17.96875vw 12.5vw;
  position: relative;
  overflow-x: clip;
}
.company-sec__bgbg {
  position: absolute;
  z-index: -1;
  top: -17.1875vw;
  left: -27.34375vw;
}
.company-sec__bgbg img {
  width: 76.5625vw;
  height: 54.6875vw;
}
.company-sec__inner {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 4.6875vw;
}
.company-sec__left {
  flex: 1;
}
.company-sec__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9375vw;
  margin-bottom: 5.46875vw;
}
.company-sec__en {
  font-family: "Lao MN", serif;
  font-family: "Lao MN", serif;
  font-size: 1.5625vw;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .company-sec__en {
    font-size: 5.1282051282vw;
  }
}
.company-sec__ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.859375vw;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  .company-sec__ja {
    font-size: 2.5641025641vw;
  }
}
.company-sec__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.5vw;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
  margin-bottom: 4.6875vw;
}
.company-sec__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.015625vw;
  line-height: 2;
  color: rgb(0, 0, 0);
  margin-bottom: 4.6875vw;
}
.company-sec__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75vw;
  height: 3.75vw;
  background: #000;
  color: #fff;
  text-decoration: none;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: opacity 0.3s ease;
}
.company-sec__btn:hover {
  opacity: 0.7;
}
.company-sec__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
}
.company-sec__img {
  width: fit-content;
  overflow: hidden;
}
.company-sec__img img {
  width: 28.125vw;
  height: 35.078125vw;
  object-fit: cover;
  display: block;
}
.company-sec__catch {
  white-space: nowrap;
  font-family: "Lao MN", serif;
  font-size: 5.9375vw;
  font-weight: 500;
  color: #000;
  line-height: 1;
  text-align: right;
  margin-top: 1.25vw;
  letter-spacing: 0.02em;
  position: absolute;
  bottom: -10.15625vw;
  right: 0px;
}
@media screen and (max-width: 767px) {
  .company-sec {
    padding: 15.3846153846vw 0vw 15.3846153846vw 0vw;
  }
  .company-sec__inner {
    flex-direction: column;
    gap: 8.2051282051vw;
  }
  .company-sec__right {
    flex: none;
    width: 100%;
    align-items: flex-end;
    position: relative;
  }
  .company-sec__img {
    width: 87.6923076923vw;
    margin: auto;
  }
  .company-sec__img img {
    width: 87.6923076923vw;
    height: 109.2307692308vw;
  }
  .company-sec__title {
    font-size: 8.2051282051vw;
  }
  .company-sec__text {
    font-size: 3.3333333333vw;
  }
  .company-sec__label {
    margin-top: 15.3846153846vw;
    margin-bottom: 15.3846153846vw;
  }
  .company-sec__catch {
    font-size: 13.3333333333vw;
    position: static;
    text-align: right;
    margin-top: -6.4102564103vw;
    padding-right: 6.1538461538vw;
  }
  .company-sec__left {
    flex: none;
    width: 100%;
    padding: 0 6.1538461538vw;
  }
  .company-sec__title {
    font-size: 6.6666666667vw;
  }
}

/* -----------------------
  BUSINESS
----------------------- */
.business-sec {
  background: #fff;
  padding: 12.5vw 12.5vw 12.5vw 12.5vw;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.business-sec__inner {
  display: flex;
  align-items: flex-start;
  gap: 10.15625vw;
}
.business-sec__left {
  flex: 1;
  position: sticky;
  top: 7.8125vw;
}
.business-sec__video-wrap {
  width: 36.484375vw;
  height: 45.46875vw;
  position: relative;
  overflow: hidden;
  border-radius: 0.46875vw;
}
.business-sec__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.business-sec__video.is-active {
  opacity: 1;
}
.business-sec__right {
  flex: 1;
}
.business-sec__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9375vw;
  margin-bottom: 5.46875vw;
}
.business-sec__en {
  font-family: "Lao MN", serif;
  font-family: "Lao MN", serif;
  font-size: 1.5625vw;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .business-sec__en {
    font-size: 5.1282051282vw;
  }
}
.business-sec__ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.859375vw;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  .business-sec__ja {
    font-size: 2.5641025641vw;
  }
}
.business-sec__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.business-sec__item {
  display: flex;
  align-items: flex-start;
  gap: 1.5625vw;
  padding: 1.875vw 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
  will-change: transform;
}
.business-sec__item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.business-sec__item.is-active .business-sec__num {
  color: #000;
}
.business-sec__item.is-active .business-sec__item-title {
  color: #000;
}
.business-sec__item:hover {
  transform: translateX(1.25vw);
}
.business-sec__item-link {
  display: flex;
  gap: inherit;
  text-decoration: none;
  color: inherit;
  width: 100%;
}
.business-sec__num {
  font-family: "Lao MN", serif;
  font-size: 1.875vw;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0em;
  padding-top: 0.15625vw;
  flex-shrink: 0;
  transition: color 0.3s ease;
}
.business-sec__item-title {
  font-family: "Lao MN", serif;
  font-size: 1.171875vw;
  color: rgb(0, 0, 0);
  letter-spacing: 0.05em;
  margin-bottom: 0.46875vw;
  transition: color 0.3s ease;
}
.business-sec__item-desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.9375vw;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .business-sec {
    padding: 15.3846153846vw 6.1538461538vw;
  }
  .business-sec__inner {
    flex-direction: column;
    gap: 8.2051282051vw;
  }
  .business-sec__left {
    position: static;
    width: 100%;
    flex: none;
  }
  .business-sec__video-wrap {
    width: 87.6923076923vw;
    height: 109.2307692308vw;
    border-radius: 1.5384615385vw;
  }
  .business-sec__right {
    width: 100%;
    flex: none;
  }
  .business-sec__label {
    margin-bottom: 6.1538461538vw;
  }
  .business-sec__item {
    padding: 4.1025641026vw 0;
    gap: 3.0769230769vw;
  }
  .business-sec__item:hover {
    transform: none;
  }
  .business-sec__num {
    font-size: 4.1025641026vw;
  }
  .business-sec__item-title {
    font-size: 3.3333333333vw;
  }
  .business-sec__item-desc {
    font-size: 2.8205128205vw;
  }
}

/* -----------------------
  CAREERS
----------------------- */
.careers-sec {
  background: #000;
  position: relative;
  height: 500vh;
  padding: 12.5vw 0;
  overflow: clip;
  overflow-x: clip;
}
.careers-sec::before {
  content: "";
  position: sticky;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 10vh;
  background: linear-gradient(to bottom, #000 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
  margin-bottom: -10vh;
}
.careers-sec__video {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  margin-bottom: -100vh;
}
.careers-sec__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  margin-top: 49.21875vw;
}
.careers-sec__bg-img {
  position: absolute;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.careers-sec__bg-img.is-visible {
  opacity: 1;
  transform: scale(1);
}
.careers-sec__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.careers-sec__bg-img--01 {
  top: 7.8125vw;
  right: 39.0625vw;
  width: 22.578125vw;
  height: 12.65625vw;
}
.careers-sec__bg-img--02 {
  top: 37.5vw;
  right: 12.5vw;
  width: 31.25vw;
  height: 17.578125vw;
}
.careers-sec__bg-img--03 {
  top: 62.5vw;
  right: 42.1875vw;
  width: 45vw;
  height: 25.3125vw;
}
.careers-sec__bg-img--04 {
  top: 92.1875vw;
  right: 15.625vw;
  width: 21.171875vw;
  height: 11.953125vw;
}
.careers-sec__bg-img--05 {
  top: 123.4375vw;
  right: 23.4375vw;
  width: 33.59375vw;
  height: 19.84375vw;
}
.careers-sec__content {
  position: sticky;
  top: 30%;
  transform: none;
  padding: 0 12.5vw;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 9.375vw;
}
.careers-sec__left {
  flex: 1;
}
.careers-sec__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9375vw;
  margin-bottom: 1.875vw;
}
.careers-sec__en {
  font-family: "Lao MN", serif;
  font-family: "Lao MN", serif;
  font-size: 1.5625vw;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .careers-sec__en {
    font-size: 5.1282051282vw;
  }
}
.careers-sec__ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.859375vw;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 767px) {
  .careers-sec__ja {
    font-size: 2.5641025641vw;
  }
}
.careers-sec__title {
  font-family: "Lao MN", serif;
  font-size: 5.625vw;
  font-weight: 500;
  color: #fff;
  line-height: 0.8;
  letter-spacing: 0.02em;
  margin-bottom: 1.25vw;
  display: flex;
  flex-direction: column;
  gap: 0vw;
}
.careers-sec__title span {
  display: block;
}
.careers-sec__sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.09375vw;
  color: rgb(255, 255, 255);
  margin-bottom: 3.125vw;
}
.careers-sec__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.875vw;
  margin-top: 6.25vw;
}
.careers-sec__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.015625vw;
  line-height: 2;
  color: rgba(255, 255, 255, 0.9);
}
.careers-sec__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75vw;
  height: 3.75vw;
  background: #fff;
  color: #000;
  text-decoration: none;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: opacity 0.3s ease;
}
.careers-sec__btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .careers-sec {
    height: 300vh;
    padding-top: 20.5128205128vw;
  }
  .careers-sec__content {
    padding: 10.2564102564vw 6.1538461538vw;
    flex-direction: column;
    gap: 8.2051282051vw;
    top: 30.7692307692vw;
  }
  .careers-sec__left {
    flex: none;
    width: 100%;
  }
  .careers-sec__title {
    font-size: 15.3846153846vw;
    line-height: 0.85;
    margin-bottom: 3.0769230769vw;
  }
  .careers-sec__sub {
    font-size: 3.0769230769vw;
    margin-bottom: 6.1538461538vw;
  }
  .careers-sec__right {
    flex: none;
    width: 100%;
    margin-top: 0;
    gap: 4.1025641026vw;
  }
  .careers-sec__text {
    font-size: 3.0769230769vw;
    line-height: 1.8;
  }
  .careers-sec__bg {
    margin-top: 82.0512820513vw;
  }
  .careers-sec__bg-img--01 {
    top: 102.5641025641vw;
    right: 41.0256410256vw;
    width: 46.1538461538vw;
    height: 25.8974358974vw;
  }
  .careers-sec__bg-img--02 {
    top: 153.8461538462vw;
    right: 5.1282051282vw;
    width: 56.4102564103vw;
    height: 31.7948717949vw;
  }
  .careers-sec__bg-img--03 {
    top: 217.9487179487vw;
    right: 35.8974358974vw;
    width: 66.6666666667vw;
    height: 37.4358974359vw;
  }
  .careers-sec__bg-img--04 {
    top: 294.8717948718vw;
    right: 5.1282051282vw;
    width: 41.0256410256vw;
    height: 23.0769230769vw;
  }
  .careers-sec__bg-img--05 {
    top: 371.7948717949vw;
    right: 15.3846153846vw;
    width: 51.2820512821vw;
    height: 30.2564102564vw;
  }
}

/* -----------------------
  ページヘッダー（共通）
----------------------- */
.page-header {
  padding: 12.5vw 12.5vw 6.25vw;
}
.page-header__title {
  font-family: "Lao MN", serif;
  font-size: 7.5vw;
  font-weight: 500;
  color: #000;
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 1.25vw;
}
.page-header__ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.015625vw;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .page-header {
    padding: 30.7692307692vw 6.1538461538vw 10.2564102564vw;
  }
  .page-header__ja {
    font-size: 3.3333333333vw;
  }
  .page-header__title {
    font-size: 14.358974359vw;
  }
}

/* -----------------------
  CEO MESSAGE
----------------------- */
.ceo-sec {
  background: #0a0a0a;
  padding: 12.5vw 12.5vw;
  position: relative;
  overflow: hidden;
}
.ceo-sec__inner {
  align-items: flex-start;
  gap: 6.25vw;
  position: relative;
  z-index: 1;
}
.ceo-sec__left {
  flex: 1;
}
.ceo-sec__title {
  font-family: "Lao MN", serif;
  font-size: 4.375vw;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 3.125vw;
}
.ceo-sec__text {
  display: flex;
  flex-direction: column;
  gap: 1.5625vw;
}
.ceo-sec__text p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25vw;
  line-height: 2;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
}
.ceo-sec__name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25vw;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1.5625vw;
}
.ceo-sec__right {
  flex: 1;
}
.ceo-sec__bg {
  position: absolute;
  top: -14%;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: 0;
  will-change: transform;
}
.ceo-sec__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media screen and (max-width: 767px) {
  .ceo-sec {
    padding: 25.641025641vw 7.6923076923vw;
  }
  .ceo-sec__inner {
    flex-direction: column;
    gap: 10.2564102564vw;
  }
  .ceo-sec__title {
    font-size: 12.3076923077vw;
    margin-bottom: 8.2051282051vw;
  }
  .ceo-sec__text {
    gap: 4.1025641026vw;
  }
  .ceo-sec__text p {
    font-size: 3.5897435897vw;
    line-height: 1.9;
    letter-spacing: 1px;
    font-weight: 400;
  }
  .ceo-sec__name {
    font-size: 3.3333333333vw;
    margin-top: 4.1025641026vw;
  }
  .ceo-sec__bg {
    top: -20%;
    height: 110%;
  }
  .ceo-sec__bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
    z-index: 1;
  }
  .ceo-sec__bg img {
    object-position: 60% 30%;
  }
}

/* -----------------------
  CORPORATE INFO
----------------------- */
.info-sec {
  background: #fff;
  padding: 12.5vw 12.5vw;
}
.info-sec__inner {
  display: flex;
  align-items: flex-start;
  gap: 6.25vw;
}
.info-sec__left {
  flex: 0 0 23.4375vw;
}
.info-sec__title {
  font-family: "Lao MN", serif;
  font-size: 3.75vw;
  font-weight: 500;
  color: #000;
  line-height: 1;
  letter-spacing: 0.02em;
}
.info-sec__right {
  flex: 1;
}
.info-sec__table {
  width: 100%;
  border-collapse: collapse;
}
.info-sec__table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.info-sec__table tr:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.info-sec__table th {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25vw;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 400;
  text-align: left;
  padding: 1.5625vw 1.875vw 1.5625vw 0;
  width: 9.375vw;
  white-space: nowrap;
}
.info-sec__table td {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25vw;
  color: #000;
  padding: 1.5625vw 0;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .info-sec {
    padding: 25.641025641vw 7.6923076923vw;
  }
  .info-sec__inner {
    flex-direction: column;
    gap: 8.2051282051vw;
  }
  .info-sec__left {
    flex: none;
  }
  .info-sec__title {
    font-size: 9.2307692308vw;
  }
  .info-sec__table th, .info-sec__table td {
    font-size: 3.0769230769vw;
    padding: 3.5897435897vw 2.0512820513vw 3.5897435897vw 0;
  }
  .info-sec__table th {
    width: 20.5128205128vw;
  }
}

/* -----------------------
  全幅画像
----------------------- */
.company__fullimg-wrap {
  padding: 0 6.25vw;
  will-change: padding;
}
.company__fullimg-wrap img {
  width: 100%;
  height: 43.75vw;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .company__fullimg-wrap {
    padding: 0 6.1538461538vw;
  }
  .company__fullimg-wrap img {
    height: 61.5384615385vw;
  }
}

/* -----------------------
  ACCESS
----------------------- */
.access-sec {
  background: #fff;
  padding: 12.5vw 12.5vw;
}
.access-sec__inner {
  display: flex;
  align-items: flex-start;
  gap: 6.25vw;
}
.access-sec__left {
  flex: 0 0 21.875vw;
}
.access-sec__title {
  font-family: "Lao MN", serif;
  font-size: 3.75vw;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.02em;
  margin-bottom: 1.875vw;
}
.access-sec__address {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.015625vw;
  color: rgba(0, 0, 0, 0.7);
  line-height: 2;
}
.access-sec__right {
  flex: 1;
  height: 25vw;
}
.access-sec__right iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .access-sec {
    padding: 25.641025641vw 7.6923076923vw;
  }
  .access-sec__inner {
    flex-direction: column;
    gap: 8.2051282051vw;
  }
  .access-sec__left {
    flex: none;
  }
  .access-sec__title {
    font-size: 9.2307692308vw;
  }
  .access-sec__right {
    width: 100%;
    height: 61.5384615385vw;
  }
  .access-sec__address {
    font-size: 3.3333333333vw;
  }
}

/* -----------------------
  PAGE HEADER
----------------------- */
.business {
  background: #0a0a0a;
  position: relative;
  overflow-x: clip;
}
.business__bgbg {
  position: absolute;
  top: -32.8125vw;
  right: -39.0625vw;
}
.business__bgbg img {
  width: 100vw;
  height: 70.3125vw;
}
.business .page-header {
  background: #0a0a0a;
  padding: 12.5vw 12.5vw 7.8125vw;
}
.business .page-header__title {
  font-family: "Lao MN", serif;
  font-size: 7.5vw;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.business .page-header__sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.015625vw;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1.25vw;
}
@media screen and (max-width: 767px) {
  .business .page-header {
    padding: 30.7692307692vw 6.1538461538vw 15.3846153846vw;
  }
  .business .page-header__sub {
    font-size: 3.3333333333vw;
  }
  .business .page-header__title {
    font-size: 16.4102564103vw;
  }
}
.business .company__fullimg video {
  width: 100%;
  height: 43.75vw;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .business .company__fullimg video {
    height: 61.5384615385vw;
  }
}

/* -----------------------
  全幅画像はcompany__fullimg-wrapを流用
----------------------- */
/* -----------------------
  BIZセクション
----------------------- */
.biz-wrap {
  height: 500vh;
  position: relative;
  margin-top: 7.8125vw;
  padding-bottom: 12.5vw;
}
.biz-wrap__bg-video {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
  margin-bottom: -100vh;
  z-index: 0;
}

.biz-sec {
  z-index: 1;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.biz-sec__inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 12.5vw;
  gap: 1.5625vw;
  justify-content: space-between;
}
.biz-sec__left {
  flex: 1;
  position: relative;
  height: 31.25vw;
}
.biz-sec__right {
  flex: 1;
  position: relative;
  height: 31.25vw;
  justify-content: flex-end;
}
.biz-sec__text-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(3.125vw);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.biz-sec__text-item.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.biz-sec__text-item.is-exit {
  opacity: 0;
  transform: translateY(-3.125vw);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.biz-sec__img-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(3.125vw);
  transition: opacity 0.6s ease, transform 0.6s ease;
  display: flex;
  justify-content: flex-end;
}
.biz-sec__img-item.is-active {
  opacity: 1;
  transform: translateY(0);
}
.biz-sec__img-item.is-exit {
  opacity: 0;
  transform: translateY(-3.125vw);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.biz-sec__img-item img {
  width: 31.875vw;
  height: 39.84375vw;
  object-fit: cover;
  display: block;
  border-radius: 0.78125vw;
  margin-left: auto;
}
.biz-sec .biz-sec__img-item img {
  clip-path: inset(100% 0 0);
  transition: clip-path 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}
.biz-sec .biz-sec__img-item.is-active img {
  clip-path: inset(0% 0 0);
}
.biz-sec .biz-sec__img-item.is-exit img {
  clip-path: inset(0 0 100%);
  transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.biz-sec__num {
  font-family: "Lao MN", serif;
  font-size: 1.015625vw;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1.5625vw;
}
.biz-sec__title {
  font-family: "Lao MN", serif;
  font-size: 3.75vw;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.25vw;
}
.biz-sec__label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25vw;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5vw;
  display: block;
}
.biz-sec__desc {
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
}
.biz-sec__desc p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.015625vw;
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 767px) {
  .biz-wrap {
    height: 500vh;
  }
  .biz-sec {
    position: sticky;
    top: 0;
    height: 100vh;
  }
  .biz-sec__inner {
    flex-direction: column;
    padding: 15.3846153846vw 6.1538461538vw 10.2564102564vw;
    gap: 0;
    height: 100%;
    justify-content: center;
  }
  .biz-sec__left {
    width: 100%;
    height: 61.5384615385vw;
    flex: none;
  }
  .biz-sec__right {
    width: 100%;
    height: 56.4102564103vw;
    flex: none;
    margin-top: 26.6666666667vw;
    justify-content: flex-start;
  }
  .biz-sec__text-item {
    position: absolute;
    top: 7.6923076923vw;
    left: 0;
    width: 100%;
  }
  .biz-sec__img-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .biz-sec__img-item img {
    width: 100%;
    height: 56.4102564103vw;
    border-radius: 2.0512820513vw;
  }
  .biz-sec__title {
    font-size: 7.6923076923vw;
    margin-bottom: 3.0769230769vw;
  }
  .biz-sec__num {
    margin-bottom: 3.0769230769vw;
  }
  .biz-sec__label {
    margin-bottom: 4.1025641026vw;
    font-size: 3.3333333333vw;
  }
  .biz-sec__desc p {
    font-size: 3.0769230769vw;
  }
}
/* =========================
  CAREERS PAGE
========================= */
.careers {
  /* PAGE HEADER */
  /* 全幅画像 */
}
.careers .page-header {
  padding: 12.5vw 12.5vw 6.25vw;
}
.careers .page-header__title {
  font-family: "Lao MN", serif;
  font-size: 7.5vw;
  font-weight: 500;
  color: #000;
  line-height: 1;
  letter-spacing: -0.02em;
}
.careers .page-header__sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.9375vw;
  color: rgba(0, 0, 0, 0.4);
  margin-top: 1.25vw;
}
@media screen and (max-width: 767px) {
  .careers .page-header {
    padding: 30.7692307692vw 6.1538461538vw 15.3846153846vw;
  }
  .careers .page-header__sub {
    font-size: 3.3333333333vw;
  }
  .careers .page-header__title {
    font-size: 16.4102564103vw;
  }
}
.careers .company__fullimg img {
  height: 37.5vw;
}
@media screen and (max-width: 767px) {
  .careers .company__fullimg img {
    height: 56.4102564103vw;
  }
}

/* -----------------------
  JOB DESCRIPTION
----------------------- */
.job-sec {
  padding: 12.5vw 12.5vw;
  position: relative;
  overflow-x: clip;
  /* 各求人アイテム */
  /* テーブル */
}
.job-sec__bgbg {
  position: absolute;
  z-index: -1;
  top: -78.4375vw;
  right: -78.125vw;
}
.job-sec__bgbg img {
  width: 154.6875vw;
  height: 78.125vw;
  opacity: 0.7;
}
.job-sec__inner {
  display: flex;
  gap: 6.25vw;
  align-items: flex-start;
}
.job-sec__left {
  width: 25vw;
  flex-shrink: 0;
  position: sticky;
  top: 9.375vw;
}
.job-sec__title {
  font-family: "Lao MN", serif;
  font-size: 3.75vw;
  font-weight: 500;
  color: #000;
  line-height: 1.1;
  margin-bottom: 3.125vw;
}
.job-sec__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9375vw;
}
.job-sec__list li a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.015625vw;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.job-sec__list li a:hover {
  color: #000;
}
@media screen and (max-width: 767px) {
  .job-sec__list li a {
    font-size: 3.0769230769vw;
  }
}
.job-sec__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6.25vw;
}
.job-sec__item {
  position: relative;
  padding: 7.8125vw 3.125vw;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.3125vw;
  overflow: hidden;
}
.job-sec__item-bg {
  position: absolute;
  top: 50%;
  left: -4.6875vw;
  transform: translateY(-50%);
  width: 26.5625vw;
  opacity: 0.06;
  pointer-events: none;
}
.job-sec__item-bg img {
  width: 100%;
  display: block;
}
.job-sec__item-content {
  position: relative;
  z-index: 1;
}
.job-sec__item-title {
  font-family: "Lao MN", serif;
  font-size: 2.5vw;
  font-weight: 500;
  color: #000;
  line-height: 1;
  margin-bottom: 0.625vw;
}
.job-sec__item-sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.9375vw;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 2.5vw;
}
.job-sec__table {
  width: 100%;
  border-collapse: collapse;
}
.job-sec__table tr {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.job-sec__table tr:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.job-sec__table th, .job-sec__table td {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.015625vw;
  line-height: 1.8;
  padding: 1.25vw 1.5625vw;
  text-align: left;
  vertical-align: top;
}
.job-sec__table th {
  color: rgba(0, 0, 0, 0.4);
  width: 9.375vw;
  white-space: nowrap;
}
.job-sec__table td {
  color: #000;
}
@media screen and (max-width: 767px) {
  .job-sec {
    padding: 20.5128205128vw 6.1538461538vw;
  }
  .job-sec__inner {
    flex-direction: column;
    gap: 12.3076923077vw;
  }
  .job-sec__left {
    width: 100%;
    position: static;
  }
  .job-sec__title {
    font-size: 10.2564102564vw;
  }
  .job-sec__right {
    gap: 12.3076923077vw;
  }
  .job-sec__item {
    padding: 8.2051282051vw 6.1538461538vw;
  }
  .job-sec__item-title {
    font-size: 6.1538461538vw;
  }
  .job-sec__table th, .job-sec__table td {
    font-size: 3.0769230769vw;
    padding: 3.0769230769vw 2.0512820513vw;
  }
  .job-sec__table th {
    width: 20.5128205128vw;
  }
}

/* =========================
  CONTACT PAGE
========================= */
.contact {
  background: #0a0a0a;
  min-height: 100vh;
  position: relative;
  overflow-x: clip;
  /* PAGE HEADER */
  /* リード文 */
  /* フォームラッパー */
}
.contact__bgbg01 {
  position: absolute;
}
.contact__bgbg01 img {
  width: 154.6875vw;
  height: 78.125vw;
  opacity: 0.7;
}
.contact__bgbg02 {
  position: absolute;
  top: 91.40625vw;
  right: -10.15625vw;
}
.contact__bgbg02 img {
  width: 154.6875vw;
  height: 78.125vw;
  opacity: 0.7;
}
.contact__header {
  background: #0a0a0a;
  padding: 12.5vw 12.5vw 6.25vw;
}
.contact__header .page-header__title {
  font-family: "Lao MN", serif;
  font-size: 7.5vw;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.contact__header .page-header__sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.015625vw;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1.25vw;
}
@media screen and (max-width: 767px) {
  .contact__header {
    padding: 30.7692307692vw 6.1538461538vw 15.3846153846vw;
  }
  .contact__header .page-header__title {
    font-size: 16.4102564103vw;
  }
  .contact__header .page-header__sub {
    font-size: 3.0769230769vw;
  }
}
.contact__lead {
  padding: 4.6875vw 12.5vw 0;
}
.contact__lead p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.09375vw;
  line-height: 2;
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 767px) {
  .contact__lead {
    padding: 7.6923076923vw 6.1538461538vw 0;
  }
  .contact__lead p {
    font-size: 3.3333333333vw;
  }
}
.contact__form {
  padding: 4.6875vw 12.5vw 12.5vw;
}
@media screen and (max-width: 767px) {
  .contact__form {
    padding: 10.2564102564vw 6.1538461538vw 20.5128205128vw;
  }
}

/* -----------------------
  CF7 スタイル
----------------------- */
.wpcf7 {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 1.25vw;
  padding: 7.8125vw 6.25vw;
}
@media screen and (max-width: 767px) {
  .wpcf7 {
    padding: 10.2564102564vw 6.1538461538vw;
    border-radius: 3.0769230769vw;
  }
}

.first {
  margin-bottom: 4.6875vw !important;
}
.first p {
  margin-bottom: 1.796875vw;
}
@media screen and (max-width: 767px) {
  .first p {
    margin-bottom: 6.4102564103vw !important;
  }
}

.cf7-field {
  margin-bottom: 2.8125vw;
}
.cf7-field label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.09375vw;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  display: block;
}
.cf7-field .req {
  color: #3a6bff;
  margin-left: 0.3125vw;
}
.cf7-field input[type=text],
.cf7-field input[type=email],
.cf7-field input[type=tel],
.cf7-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.961);
  border-radius: 0.3125vw;
  padding: 0.78125vw 1.5625vw;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.09375vw;
  color: #333;
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
}
.cf7-field input[type=text]::placeholder,
.cf7-field input[type=email]::placeholder,
.cf7-field input[type=tel]::placeholder,
.cf7-field textarea::placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.cf7-field input[type=text]:focus,
.cf7-field input[type=email]:focus,
.cf7-field input[type=tel]:focus,
.cf7-field textarea:focus {
  border-color: rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .cf7-field input[type=text],
  .cf7-field input[type=email],
  .cf7-field input[type=tel],
  .cf7-field textarea {
    font-size: 3.5897435897vw;
    padding: 3.5897435897vw 4.1025641026vw;
  }
}
.cf7-field textarea {
  height: 12.5vw;
  resize: vertical;
}

.cf7-radio .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 0.9375vw;
}
@media screen and (max-width: 767px) {
  .cf7-radio .wpcf7-radio {
    gap: 3.3333333333vw;
    margin-bottom: 15.3846153846vw;
  }
}
.cf7-radio .wpcf7-list-item-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.015625vw;
  color: rgba(0, 0, 0, 0.7);
}
.cf7-radio .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 0.78125vw;
  margin: 0 !important;
}
.cf7-radio .wpcf7-list-item input[type=radio] {
  width: 1.25vw;
  height: 1.25vw;
  accent-color: #3a6bff;
  flex-shrink: 0;
  appearance: auto;
  -webkit-appearance: auto;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .cf7-radio .wpcf7-list-item input[type=radio] {
    width: 4.1025641026vw;
    height: 4.1025641026vw;
  }
}
.cf7-radio .wpcf7-list-item .wpcf7-list-item-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.015625vw;
  color: rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 767px) {
  .cf7-radio .wpcf7-list-item .wpcf7-list-item-label {
    font-size: 3.3333333333vw;
  }
}

.cf7-privacy {
  margin-bottom: 3.125vw;
}
.cf7-privacy__accept {
  margin-top: 0.9375vw;
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .cf7-privacy__accept {
    margin-top: 5.1282051282vw;
    margin-left: -3.8461538462vw;
  }
}
.cf7-privacy__accept .wpcf7-acceptance label {
  display: flex;
  align-items: center;
  gap: 0.625vw;
  cursor: pointer;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.9375vw;
  color: rgba(0, 0, 0, 0.5);
}
.cf7-privacy__accept input[type=checkbox] {
  accent-color: #3a6bff;
  width: 1.09375vw;
  height: 1.09375vw;
}
@media screen and (max-width: 767px) {
  .cf7-privacy__accept input[type=checkbox] {
    width: 4.6153846154vw;
    height: 4.6153846154vw;
  }
}
.cf7-privacy__box {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.625vw;
  padding: 1.875vw 2.1875vw;
  height: 9.375vw;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.cf7-privacy__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.015625vw;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0.9375vw;
}
.cf7-privacy__text p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.9375vw;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.5);
}

.cf7-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9375vw;
  margin-top: 3.90625vw;
}
.cf7-submit input[type=submit] {
  background: #1a1a2e;
  border: none;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.09375vw;
  letter-spacing: 0.05em;
  padding: 1.40625vw 4.6875vw;
  border-radius: 3.125vw;
  cursor: pointer;
  transition: background 0.3s, opacity 0.3s;
}
.cf7-submit input[type=submit]:hover {
  opacity: 0.8;
}

.wpcf7-not-valid-tip {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.9375vw;
  color: #e05050;
  margin-top: 0.625vw;
  display: block;
}

.wpcf7-response-output {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.015625vw;
  padding: 1.25vw;
  margin-top: 1.875vw;
  border-radius: 0.3125vw;
  color: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.cf7-form-area .wpcf7-submit,
.cf7-form-area input[type=submit] {
  display: none !important;
}
.cf7-form-area .wpcf7-response-output {
  display: none !important;
}
.cf7-form-area .wpcf7-spinner {
  display: none !important;
}

.cf7-confirm-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2.5vw;
}

.cf7-confirm-btn {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.09375vw;
  padding: 1.40625vw 4.6875vw;
  border-radius: 31.25vw;
  cursor: pointer;
  transition: color 0.4s ease, border-color 0.4s ease;
  transition: opacity 0.5s ease, color 0.4s ease, border-color 0.4s ease;
  z-index: 0;
}
.cf7-confirm-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #52ADC0;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: width 0.5s ease, height 0.5s ease, transform 0.5s ease;
  z-index: -1;
}
.cf7-confirm-btn:hover {
  border-color: #52ADC0;
}
.cf7-confirm-btn:hover::after {
  width: 31.25vw;
  height: 31.25vw;
  transform: translate(-50%, -50%) scale(1);
}
.cf7-confirm-btn.is-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.cf7-confirm-lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.015625vw;
  line-height: 2;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 1.25vw;
}

.cf7-confirm-table {
  width: 100%;
  border-collapse: collapse;
  margin: 3.125vw 0 3.75vw;
}
.cf7-confirm-table tr {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.cf7-confirm-table tr:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.cf7-confirm-table th, .cf7-confirm-table td {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.015625vw;
  line-height: 1.8;
  padding: 1.25vw 1.5625vw;
  text-align: left;
  vertical-align: top;
}
.cf7-confirm-table th {
  width: 12.5vw;
  color: rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}
.cf7-confirm-table td {
  color: rgba(0, 0, 0, 0.7);
}

.cf7-confirm-btns {
  display: flex;
  justify-content: center;
  gap: 1.875vw;
}

.cf7-back-btn {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.3);
  color: rgba(0, 0, 0, 0.6);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.09375vw;
  padding: 1.40625vw 4.6875vw;
  border-radius: 3.125vw;
  cursor: pointer;
  transition: color 0.4s ease, border-color 0.4s ease;
  z-index: 0;
}
.cf7-back-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 31.25vw;
  height: 31.25vw;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: left 0.5s ease, transform 0.5s ease;
  z-index: -1;
}
.cf7-back-btn:hover {
  border-color: rgba(0, 0, 0, 0.4);
  color: rgba(0, 0, 0, 0.8);
}
.cf7-back-btn:hover::after {
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
}

.cf7-send-btn {
  position: relative;
  overflow: hidden;
  background: #1a1a2e;
  border: 1px solid #1a1a2e;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.09375vw;
  padding: 1.40625vw 4.6875vw;
  border-radius: 3.125vw;
  cursor: pointer;
  transition: color 0.4s ease, border-color 0.4s ease;
  z-index: 0;
}
.cf7-send-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  width: 31.25vw;
  height: 31.25vw;
  background: #52ADC0;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: left 0.5s ease, transform 0.5s ease;
  z-index: -1;
}
.cf7-send-btn:hover {
  border-color: #52ADC0;
}
.cf7-send-btn:hover::after {
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
}

.thanks {
  background: #0a0a0a;
  min-height: 100vh;
}
.thanks__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6.25vw 12.5vw 12.5vw;
  text-align: center;
}
.thanks .thanks__icon {
  margin-bottom: 4.6875vw;
}
@media screen and (max-width: 767px) {
  .thanks .thanks__icon {
    margin-bottom: 10.2564102564vw;
  }
}
.thanks .thanks__anim {
  position: relative;
  width: 9.375vw;
  height: 9.375vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .thanks .thanks__anim {
    width: 20.5128205128vw;
    height: 20.5128205128vw;
  }
}
.thanks .thanks__ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  border: 1px solid rgba(64, 191, 216, 0.9);
  animation: ripple 2.4s ease-out infinite;
}
.thanks .thanks__ripple--1 {
  width: 9.375vw;
  height: 9.375vw;
  animation-delay: 0s;
}
@media screen and (max-width: 767px) {
  .thanks .thanks__ripple--1 {
    width: 20.5128205128vw;
    height: 20.5128205128vw;
  }
}
.thanks .thanks__ripple--2 {
  width: 12.5vw;
  height: 12.5vw;
  animation-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  .thanks .thanks__ripple--2 {
    width: 28.2051282051vw;
    height: 28.2051282051vw;
  }
}
.thanks .thanks__ripple--3 {
  width: 15.625vw;
  height: 15.625vw;
  animation-delay: 0.8s;
}
@media screen and (max-width: 767px) {
  .thanks .thanks__ripple--3 {
    width: 35.8974358974vw;
    height: 35.8974358974vw;
  }
}
@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}
.thanks .thanks__circle {
  position: relative;
  z-index: 1;
  width: 6.25vw;
  height: 6.25vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: scale(0);
}
.thanks .thanks__circle svg {
  width: 3.125vw;
  height: 2.8125vw;
  animation: flyIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
  opacity: 0;
  transform: translateX(-2.34375vw);
}
@media screen and (max-width: 767px) {
  .thanks .thanks__circle {
    width: 16.4102564103vw;
    height: 16.4102564103vw;
  }
  .thanks .thanks__circle svg {
    width: 7.1794871795vw;
    height: 7.1794871795vw;
  }
}
@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes flyIn {
  0% {
    opacity: 0;
    transform: translateX(-0.625vw);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.thanks__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.40625vw;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5vw;
}
@media screen and (max-width: 767px) {
  .thanks__title {
    font-size: 4.1025641026vw;
  }
}
.thanks__text {
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
}
.thanks__text p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.09375vw;
  line-height: 2;
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 767px) {
  .thanks__text p {
    font-size: 3.3333333333vw;
  }
}

@media screen and (max-width: 767px) {
  .cf7-radio .wpcf7-list-item-label {
    font-size: 3.3333333333vw;
  }
  .cf7-field {
    margin-bottom: 6.1538461538vw;
  }
  .cf7-field label {
    font-size: 3.3333333333vw;
    margin-bottom: 2.0512820513vw;
  }
  .cf7-field input[type=text],
  .cf7-field input[type=email],
  .cf7-field input[type=tel],
  .cf7-field textarea {
    font-size: 3.3333333333vw;
    padding: 3.0769230769vw 4.1025641026vw;
  }
  .cf7-field textarea {
    height: 30.7692307692vw;
  }
  .cf7-privacy {
    margin-bottom: 6.1538461538vw;
  }
  .cf7-privacy__box {
    padding: 4.1025641026vw 5.1282051282vw;
    height: 25.641025641vw;
  }
  .cf7-privacy__title {
    font-size: 3.0769230769vw;
  }
  .cf7-privacy__text p {
    font-size: 2.8205128205vw;
  }
  .cf7-privacy__accept .wpcf7-acceptance label {
    font-size: 3.0769230769vw;
  }
  .cf7-confirm-wrap {
    margin-top: 6.1538461538vw;
  }
  .cf7-confirm-btn {
    font-size: 3.3333333333vw;
    padding: 4.1025641026vw 10.2564102564vw;
  }
  .cf7-confirm-lead {
    font-size: 3.3333333333vw;
  }
  .cf7-confirm-table {
    margin: 6.1538461538vw 0 15.3846153846vw;
  }
  .cf7-confirm-table th, .cf7-confirm-table td {
    font-size: 3.0769230769vw;
    padding: 3.0769230769vw 3.0769230769vw;
  }
  .cf7-confirm-table th {
    width: 23.0769230769vw;
  }
  .cf7-confirm-btns {
    flex-direction: column;
    align-items: center;
    gap: 3.0769230769vw;
  }
  .cf7-back-btn,
  .cf7-send-btn {
    font-size: 3.3333333333vw;
    padding: 4.1025641026vw 10.2564102564vw;
    width: 100%;
    text-align: center;
  }
}
/* -----------------------
  anime
----------------------- */
.hover-opa {
  transition: 0.3s;
}
.hover-opa:hover {
  opacity: 0.6;
}

.hover-scale {
  transition: 0.3s;
}
.hover-scale:hover {
  transform: scale(1.05);
}

.up {
  opacity: 0;
  transform: translateY(100%);
}
.up.show {
  animation: up 0.5s ease forwards;
}
@keyframes up {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.down {
  opacity: 0;
  transform: translateY(-100%);
}
.down.show {
  animation: down 0.5s ease forwards;
}
@keyframes down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.left {
  opacity: 0;
  transform: translateX(100%);
}
.left.show {
  animation: left 0.5s ease forwards;
}
@keyframes left {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.right {
  opacity: 0;
  transform: translateX(-100%);
}
.right.show {
  animation: right 0.5s ease forwards;
}
@keyframes right {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.pop {
  opacity: 0;
  transform: scale(0.5);
}
.pop.show {
  animation: pop ease forwards;
}
@keyframes pop {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.loadUp {
  opacity: 0;
  transform: translateY(100%);
}
.loadUp.show {
  animation: loadUp ease forwards;
}
@keyframes loadUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.loadDown {
  opacity: 0;
  transform: translateY(-100%);
}
.loadDown.show {
  animation: loadDown ease forwards;
}
@keyframes loadDown {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.loadLeft {
  opacity: 0;
  transform: translateX(100%);
}
.loadLeft.show {
  animation: loadLeft ease forwards;
}
@keyframes loadLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.loadRight {
  opacity: 0;
  transform: translateX(-100%);
}
.loadRight.show {
  animation: loadRight ease forwards;
}
@keyframes loadRight {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.loadPop {
  opacity: 0;
  transform: scale(0.5);
}
.loadPop.show {
  animation: loadPop ease forwards;
}
@keyframes loadPop {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.delay-01 {
  animation-delay: 0.1s !important;
}

.delay-02 {
  animation-delay: 0.2s !important;
}

.delay-03 {
  animation-delay: 0.3s !important;
}

.delay-04 {
  animation-delay: 0.4s !important;
}

.delay-05 {
  animation-delay: 0.5s !important;
}

.delay-06 {
  animation-delay: 0.6s !important;
}

.delay-07 {
  animation-delay: 0.7s !important;
}

.delay-08 {
  animation-delay: 0.8s !important;
}

.delay-09 {
  animation-delay: 0.9s !important;
}

.delay-10 {
  animation-delay: 1s !important;
}

.delay-15 {
  animation-delay: 1.5s !important;
}

.duration-01 {
  animation-duration: 0.1s !important;
}

.duration-02 {
  animation-duration: 0.2s !important;
}

.duration-03 {
  animation-duration: 0.3s !important;
}

.duration-04 {
  animation-duration: 0.4s !important;
}

.duration-05 {
  animation-duration: 0.5s !important;
}

.duration-06 {
  animation-duration: 0.6s !important;
}

.duration-07 {
  animation-duration: 0.7s !important;
}

.duration-08 {
  animation-duration: 0.8s !important;
}

.duration-09 {
  animation-duration: 0.9s !important;
}

.duration-10 {
  animation-duration: 1s !important;
}

.duration-15 {
  animation-duration: 1.5s !important;
}

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