@charset "UTF-8";
/* --------------------------------------------------
* common
*/
a {
  text-decoration: none;
}

/* --------------------------------------------------
* PC・SP switching
*/
.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.tab {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .tab {
    display: block;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hidden-tab {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}

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

/* --------------------------------------------------
* wrap
*/
.wrap {
  padding-inline: clamp(24px, 24px + (40 - 24) * (100vw - 768px) / (1920 - 768), 40px);
  margin-inline: auto;
}

/* --------------------------------------------------
* section
*/
/* --------------------------------------------------
* text
*/
.is-en {
  font-family: var(--font-boldonse);
  text-transform: uppercase;
}

/* --------------------------------------------------
* button
*/
button {
  all: unset;
  display: inline-block;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  line-height: inherit;
  text-align: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.button {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--base-color);
  color: var(--base-color);
}
.button.is-reverse {
  background: var(--base-inverse);
  border: none;
}
@media screen and (min-width: 768px) {
  .button:hover .button-icon::before {
    transform: translate(200%, -50%);
    animation: transformBefore 0.6s ease-in-out forwards;
  }
  .button:hover .button-icon::after {
    left: 12px;
    transform: translate(0, -50%);
    animation: transformAfter 0.6s ease-in-out forwards;
  }
}

.button-icon {
  width: clamp(40px, 40px + (50 - 40) * (100vw - 768px) / (1920 - 768), 50px);
  height: clamp(40px, 40px + (50 - 40) * (100vw - 768px) / (1920 - 768), 50px);
  background-color: var(--base-color);
  position: relative;
  overflow: hidden;
}
.button-icon::before, .button-icon::after {
  position: absolute;
  content: "";
  width: clamp(18.73px, 18.73px + (24.97 - 18.73) * (100vw - 768px) / (1920 - 768), 24.97px);
  height: clamp(15.33px, 15.33px + (20.44 - 15.33) * (100vw - 768px) / (1920 - 768), 20.44px);
  background: url("/assets/img/common/icon_arrow_yellow.svg") no-repeat center;
  background-size: 100% auto;
  top: 50%;
}
.button-icon.is-reverse {
  background: var(--primary-color);
}
.button-icon.is-reverse::before, .button-icon.is-reverse::after {
  background: url("/assets/img/common/icon_arrow_black.svg") no-repeat center;
  background-size: 100% auto;
}
.button-icon::before {
  top: 50%;
  left: 12px;
  transform: translate(0, -50%);
}
.button-icon::after {
  top: 50%;
  transform: translate(-200%, -50%);
}

@keyframes transformBefore {
  0% {
    transform: translate(0, -50%);
  }
  100% {
    transform: translate(200%, -50%);
  }
}
@keyframes transformAfter {
  0% {
    transform: translate(-200%, -50%);
  }
  100% {
    transform: translateX(0, -50%);
  }
}
.button-text {
  padding-inline: 20px;
  transition: opacity 0.3s ease-in-out;
  font-size: clamp(12px, 12px + (16 - 12) * (100vw - 768px) / (1920 - 768), 16px);
  font-weight: var(--font-weight-black);
}
@media screen and (min-width: 768px) {
  .button-text:hover {
    opacity: 0.64;
  }
}

.contact {
  position: relative;
  z-index: 1;
  padding-inline: clamp(24px, 24px + (40 - 24) * (100vw - 768px) / (1920 - 768), 40px);
  background: var(--base-inverse);
  margin-top: -0.8px;
}
.contact.is-black {
  background: var(--bg-color);
}

.contact-inner {
  padding-block: clamp(240px, 240px + (320 - 240) * (100vw - 768px) / (1920 - 768), 320px);
  background: url("/assets/img/common/contact_img.webp") no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-inner {
    background: url("/assets/img/common/contact_img_sp.webp") no-repeat center;
    background-size: cover;
    font-size: clamp(0.875rem, 0.45rem + 1.81vw, 2.625rem);
    padding-block: clamp(7.5rem, -2.674rem + 43.41vw, 25rem);
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .contact-inner {
    font-size: clamp(0.875rem, 0.45rem + 1.81vw, 2.625rem);
    padding-block: clamp(10rem, 5.229rem + 20.36vw, 15rem);
    background: url("/assets/img/common/contact_img_sp.webp") no-repeat center;
    background-size: cover;
    text-align: center;
  }
}

.contact-content {
  max-width: 1420px;
  margin-inline: auto;
  text-align: center;
  display: inline-block;
  padding-left: clamp(20px, 20px + (200 - 20) * (100vw - 768px) / (1920 - 768), 200px);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-content {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .contact-content {
    padding-left: 0;
  }
}

.contact-title {
  color: var(--base-inverse);
  font-size: clamp(2rem, 1.393rem + 2.59vw, 4.5rem);
}

.contact-text {
  color: var(--base-inverse);
  font-size: clamp(16px, 16px + (24 - 16) * (100vw - 768px) / (1920 - 768), 24px);
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .contact-text {
    font-size: clamp(0.875rem, 0.45rem + 1.81vw, 2.625rem);
  }
}

.contact-button {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .contact-button {
    margin-top: 32px;
  }
}

.js-scroll-trigger {
  opacity: 0;
  transition: opacity 0.01s;
}

.js-scroll-trigger.is-animated {
  opacity: 1;
}

.anim-text-reveal .char-wrap span {
  display: inline-block;
  opacity: 0;
  transform: translateY(2px);
}

@keyframes slideUpIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim-text-reveal.is-animated .char-wrap span {
  animation: slideUpIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.anim-bg-fill {
  position: relative;
  background-color: transparent !important;
}
.anim-bg-fill::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.anim-bg-fill.is-kv::before {
  background-color: var(--accent-color-or);
  transform: translateX(-100%);
}
.anim-bg-fill.is-kv.is-animated::before {
  animation: BgRevisedRight 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.anim-bg-fill.is-method::before {
  background-color: var(--accent-color-bl);
  transform: translateX(100%);
}
.anim-bg-fill.is-method.is-animated::before {
  animation: BgRevisedLeft 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.anim-bg-fill.is-community::before {
  background-color: var(--accent-color-or);
  transform: translateX(-100%);
}
.anim-bg-fill.is-community.is-animated::before {
  animation: BgRevisedRight 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.anim-bg-fill .text-content {
  position: relative;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
}

@keyframes BgRevisedRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes BgRevisedLeft {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes fadeInText {
  to {
    opacity: 1;
    visibility: visible;
  }
}
.anim-bg-fill.is-animated::before {
  animation: BgRevisedRight 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.anim-bg-fill.is-animated::before {
  animation: BgRevisedLeft 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.anim-bg-fill.is-animated .text-content {
  animation: fadeInText 0.1s linear 0.4s forwards;
}

.anim-image-sweep {
  position: relative;
  overflow: hidden;
}

.anim-image-sweep img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.anim-image-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--base-color);
  transform: translateX(0);
  z-index: 2;
  overflow: hidden;
}
.anim-image-mask.is-fv {
  background-color: var(--base-inverse);
}

@keyframes maskSweep {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}
@keyframes maskSweepReversed {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes imageSlideIn {
  to {
    opacity: 1;
  }
}
.anim-image-sweep.is-animated .anim-image-mask {
  animation: maskSweep 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.anim-image-sweep.is-animated .anim-image-mask.is-fv {
  animation: maskSweepReversed 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.anim-image-sweep.is-animated img {
  animation: imageSlideIn 0.3s ease-in-out 0.4s forwards;
}

.fv-logo-ja,
.fv-logo-en {
  position: relative;
  overflow: hidden;
}

.fv-logo-ja::before,
.fv-logo-en::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: var(--base-inverse);
  animation-name: slide-mask;
  animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 0.4s;
}

@keyframes slide-mask {
  0% {
    transform: translateX(0);
    width: 100%;
  }
  99% {
    transform: translateX(0);
    width: 0;
  }
  100% {
    transform: translateX(0);
    width: 0;
    visibility: hidden;
  }
}
/* --------------------------------------------------
* header
*/
.site-header {
  position: fixed;
  z-index: 1970;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.32s ease-in-out, background-color 0.24s ease-in-out, box-shadow 0.24s ease-in-out;
  opacity: 1;
}
.site-header.is-hidden {
  transform: translate(-50%, -100%);
  opacity: 0;
}
.site-header.has-bg {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
}
.site-header.has-bg:has(.is-black) {
  background-color: rgba(0, 0, 0, 0.9);
}
.site-header.has-bg .header-icon.is-white .header-line {
  background: var(--base-inverse);
}
.site-header.has-bg .header-text.is-white {
  color: var(--base-inverse);
}

.header-inner {
  height: clamp(80px, 80px + (124 - 80) * (100vw - 768px) / (1920 - 768), 124px);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1920px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: clamp(16px, 16px + (30 - 16) * (100vw - 768px) / (1920 - 768), 30px);
  transition: all 0.8s ease-in-out;
}
.header-logo.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
}

.header-link {
  width: clamp(160px, 160px + (320 - 160) * (100vw - 768px) / (1920 - 768), 320px);
}
.header-link.is-top {
  width: clamp(160px, 160px + (240 - 160) * (100vw - 768px) / (1920 - 768), 240px);
}

.header-title {
  font-weight: var(--font-weight-bold);
  font-size: clamp(12px, 12px + (19 - 12) * (100vw - 768px) / (1920 - 768), 19px);
}
.header-title.is-white {
  color: var(--base-inverse);
}

.header-button {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.header-icon {
  position: relative;
  width: clamp(32px, 32px + (40 - 32) * (100vw - 768px) / (1920 - 768), 40px);
  height: clamp(40px, 40px + (52 - 40) * (100vw - 768px) / (1920 - 768), 52px);
  display: inline-block;
}
.header-icon.is-white .header-line {
  background-color: var(--base-inverse);
}

.header-line {
  position: absolute;
  width: clamp(32px, 32px + (40 - 32) * (100vw - 768px) / (1920 - 768), 40px);
  height: clamp(6px, 6px + (8 - 6) * (100vw - 768px) / (1920 - 768), 8px);
  left: 0;
  top: 50%;
  background: var(--base-color);
  transform-origin: center;
  transform: translateY(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-line:first-child {
  top: clamp(8px, 8px + (0 - 8) * (100vw - 768px) / (1920 - 768), 0px);
  transform: translateY(0);
}

.header-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.header-line:last-child {
  top: auto;
  bottom: clamp(8px, 8px + (0 - 8) * (100vw - 768px) / (1920 - 768), 0px);
  transform: translateY(0);
}

.header-text {
  color: var(--base-color);
  font-size: clamp(8px, 8px + (12 - 8) * (100vw - 768px) / (1920 - 768), 12px);
  letter-spacing: 0.1rem;
  margin-inline: auto;
  display: inline-block;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}
.header-text.is-white {
  color: var(--base-inverse);
}

.drawer-menu {
  position: fixed;
  right: 0;
  z-index: 2000;
  height: 100dvh;
  width: 100%;
  max-width: 580px;
  opacity: 0;
  transform: translateX(100%);
  transform-origin: right;
  pointer-events: none;
  transition: all 0.8s ease-in-out;
  background: var(--base-color);
}
.drawer-menu.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.drawer-nav {
  display: grid;
  place-items: center;
  height: 100%;
}

.drawer-list {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 24px + (48 - 24) * (100vw - 768px) / (1920 - 768), 48px);
}

.drawer-link {
  color: var(--base-inverse);
  display: flex;
  align-items: center;
  gap: clamp(10px, 10px + (16 - 10) * (100vw - 768px) / (1920 - 768), 16px);
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .drawer-link:hover {
    opacity: 0.64;
  }
}

.drawer-link-en {
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 768px) / (1920 - 768), 18px);
  letter-spacing: 0.1em;
}

.drawer-link-ja {
  font-size: clamp(13px, 13px + (16 - 13) * (100vw - 768px) / (1920 - 768), 16px);
}

.drawer-sns-link {
  display: flex;
  gap: clamp(24px, 24px + (32 - 24) * (100vw - 768px) / (1920 - 768), 32px);
  margin-top: clamp(24px, 24px + (48 - 24) * (100vw - 768px) / (1920 - 768), 48px);
}

.drawer-sns-item a {
  width: 32px;
  height: 32px;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .drawer-sns-item a:hover {
    opacity: 0.64;
  }
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(245, 245, 245, 0.01);
  backdrop-filter: blur(1px) brightness(1.02);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease-in-out;
}

.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-button {
  position: fixed;
  top: 4%;
  right: 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.drawer-icon {
  position: relative;
  width: clamp(32px, 32px + (40 - 32) * (100vw - 768px) / (1920 - 768), 40px);
  height: clamp(40px, 40px + (52 - 40) * (100vw - 768px) / (1920 - 768), 52px);
  display: inline-block;
}
.drawer-icon .drawer-line {
  background-color: var(--base-inverse);
}

.drawer-line {
  position: absolute;
  width: clamp(32px, 32px + (40 - 32) * (100vw - 768px) / (1920 - 768), 40px);
  height: clamp(6px, 6px + (8 - 6) * (100vw - 768px) / (1920 - 768), 8px);
  left: 0;
  top: 50%;
  background: var(--base-inverse);
  transform-origin: center;
  transform: translateY(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.drawer-line:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.drawer-line:nth-child(2) {
  opacity: 0;
}

.drawer-line:last-child {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.drawer-text {
  color: var(--base-inverse);
  font-size: clamp(8px, 8px + (12 - 8) * (100vw - 768px) / (1920 - 768), 12px);
  letter-spacing: 0.1rem;
  margin-inline: auto;
  display: inline-block;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}

/* --------------------------------------------------
* footer
*/
.site-footer {
  position: relative;
  text-align: center;
  background: var(--base-inverse);
  color: var(--base-color);
  margin-top: -0.5px;
  padding-block: 24px clamp(56px, 56px + (80 - 56) * (100vw - 768px) / (1920 - 768), 80px);
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.site-footer.is-trc {
  background: var(--base-color);
  color: var(--base-inverse);
}
.site-footer.is-notfound {
  height: 4dvh;
}
.site-footer .copy {
  font-size: clamp(8px, 8px + (14 - 8) * (100vw - 768px) / (1920 - 768), 14px);
}
.site-footer .logo {
  width: 100%;
  max-width: 1760px;
  padding-inline: clamp(24px, 24px + (40 - 24) * (100vw - 768px) / (1920 - 768), 40px);
  margin-inline: auto;
}

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