@charset "UTF-8";

.s-header[data-state] {
  position: fixed;
  top: 0;
}

.s-header,
.s-header__inner,
.fv__content {
  opacity: 0;
  transition: opacity 1.5s, background-color var(--transition-default), height var(--transition-default), color var(--transition-default);
}

.loaded .s-header {
  opacity: 1;
}

.loaded .s-header__inner,
.loaded .fv__content {
  opacity: 1;
}

.loaded:has(.fv[data-state]) .s-header__inner {
  transition-delay: 0s;
}

/* .loaded .s-header:not(.showed), */
.loaded .fv__content {
  transition-delay: 2s;
}

.loaded .sticky-logo :where(svg) {
  opacity: 1;
}

.s-top-content {
  position: relative;
  width: 100%;
}

.sticky-logo {
  --footer-logo-width: 12rem;

  width: 62.5dvw;
  opacity: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  translate: -50% 0;
  z-index: 0;
  transition: translate 1s ease, opacity 1s ease, width 1s ease, left 1s ease, top 1s ease, visibility 1s;
  pointer-events: none;
}

.sticky-logo :where(svg) {
  opacity: 0;
  transition: opacity 0.5s;
  transition-delay: 2s;
}

.sticky-logo :where(svg g) {
  transition: opacity var(--transition-default);
}

.sticky-logo :where(svg path) {
  transition: fill var(--transition-default);
}

.sticky-logo[data-state="firstview"] {
  margin: auto;
  width: 12rem;
  transition: translate 1s ease, opacity 1s ease, width 1s ease, left 1s ease, top 1s ease;
}

.sticky-logo[data-state] {
  opacity: 1;
}

.sticky-logo[data-state="firstview"] :where(svg path) {
  fill: var(--color-white);
}

.sticky-logo[data-state="firstview"] :where(svg g) {
  opacity: 1;
}

.sticky-logo.hide {
  opacity: 0;
  visibility: hidden;
}

.sticky-logo[data-state="on-footer"] {
  width: var(--footer-logo-width);
  top: 0;
  left: 1.5rem;
  translate: 0 0;
}

.sticky-logo[data-state="on-footer"] :where(svg g) {
  opacity: 1;
}

.sticky-logo[data-state="on-footer"] :where(svg path) {
  fill: var(--color-main);
}

@media (min-width: 768px) {
  .sticky-logo {
    --footer-logo-width: 14rem;

    width: 42.8571dvw;
  }

  .sticky-logo[data-state="on-footer"] {
    left: 8rem;
  }
}

.splash-screen {
  width: 100%;
  height: 100dvh;
  display: grid;
  place-content: center;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  visibility: visible;
  background-color: var(--color-white);
  z-index: calc(var(--zindex-header) + 20);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.splash-screen.hide {
  opacity: 0;
  visibility: hidden;
}

.splash-screen__logo {
  width: 18rem;
}

.fv {
  margin-bottom: 2rem;
  padding: 6rem 1.5rem 1.5rem;
  width: 100%;
  height: 100dvh;
  background-color: var(--color-white);
  transition: padding 0.5s ease;
  position: sticky;
  top: 0;
  z-index: -2;
}

.fv[data-state="fill"] {
  padding: 0 0 0;
}

.fv__container {
  height: calc(100dvh * 1.3);
}

.fv__wrapper {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  aspect-ratio: 360/720;
  object-fit: cover;
  overflow: hidden;
  position: relative;
}

.fv__movie {
  background-color: var(--color-black);
}

.fv__movie,
.fv__movie :where(video) {
  width: auto;
  height: 100%;
  position: relative;
}

.fv__movie::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgb(0 0 0 /0.3);
}

.fv__content {
  width: 100%;
  display: grid;
  gap: 2rem;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
}

.fv__logo--placeholder {
  margin: auto;
  width: 12rem;
  aspect-ratio: 120/36;
}

.fv__lead {
  font-size: 2rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  color: var(--color-white);
}

.fv__scroll-anim {
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 3.5rem;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
}

.fv__scroll-anim--effect {
  width: 1px;
  height: 100%;
  background-color: rgb(255 255 255 / 0.3);
  position: relative;
  overflow: hidden;
}

@keyframes scroll-animation {
  0% {
    height: 1rem;
    top: 0;
  }

  50% {
    height: 3rem;
    top: 50%;
  }

  100% {
    height: 1rem;
    top: 100%;
  }
}

.fv__scroll-anim--effect::before {
  content: '';
  width: 1px;
  height: inherit;
  display: block;
  position: absolute;
  top: inherit;
  background-color: var(--color-white);
  animation: scroll-animation 2.5s ease infinite;
}

.fv__scroll-anim--text {
  position: absolute;
  top: 50%;
  left: 1.6rem;
  translate: 0 -50%;
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--color-white);
}

@media (min-width: 768px) {
  .fv {
    margin-bottom: 8rem;
    padding: 11rem 4rem 4rem;
  }

  .fv__wrapper {
    display: block;
    aspect-ratio: 1400/800;
  }

  .fv__logo {
    margin: auto;
    width: 14rem;
  }

  .fv__logo--placeholder {
    width: 100%;
  }

  .fv__lead {
    font-size: 3rem;
  }
}

.top-section {
  padding: 4.5rem 1.5rem;
}

.top-section__lead {
  margin: 1.5rem 0 1rem;
  font-family: var(--font-ja);
  font-size: 2rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0;
  line-height: 1.5;
}

.top-section__link--treat :where(svg path) {
  transition: stroke var(--transition-default);
}

.is-business-section .top-section__link--treat :where(svg path) {
  stroke: var(--color-white);
}

@media (min-width: 768px) {
  .top-section {
    padding: 6.07vw 8.5vw;
  }

  .top-section__lead {
    margin: 2.5rem 0 3rem;
    font-size: 3rem;
  }

  .top-section:nth-child(2n) {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .top-section:nth-child(2n) .top-section__inner {
    grid-column: 2/3;
  }
}

.top-section[data-section-type="business"] {
  padding-inline: 0;
  background-color: #242221;
  color: var(--color-white);
}

.top-section[data-section-type="business"] .top-section__heading {
  padding-inline: 1.5rem;
}

.top-section[data-section-type="business"] .top-section__content {
  margin-top: 1.5rem;
  padding-bottom: 2rem;
  width: 100%;
  overflow: auto;
}

.top-section[data-section-type="business"] .simplebar-scrollbar::before {
  height: 3px;
  opacity: 1;
  background-color: var(--color-white);
  top: 0;
}

.top-section[data-section-type="business"] .simplebar-track.simplebar-horizontal {
  margin-inline: auto;
  width: calc(100% - 3rem);
  height: 3px;
  background-color: rgb(255 255 255 / 0.1);
  border-radius: 100vh;
}

.top-section[data-section-type="business"] .top-business__list {
  padding-inline: 1.5rem;
  display: flex;
  gap: 1.2rem;
  width: fit-content;
}

.top-section[data-section-type="business"] .top-business__item {
  flex-shrink: 0;
}

.top-section[data-section-type="business"] .top-business__item--button {
  position: relative;
  z-index: 5;
}

.top-section[data-section-type="business"] .top-business__item--heading {
  margin-bottom: 1.5rem;
  text-align: left;
  font-family: var(--font-ja);
  font-size: 2rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0;
  line-height: 1;
}

.top-section[data-section-type="business"] .top-business__card--image {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  background-color: var(--color-main);
}

.top-section[data-section-type="business"] .top-business__card--image::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgb(17 17 17 / 0.4);
}

.top-section[data-section-type="business"] .top-business__card--content {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 5;
}

.top-section[data-section-type="business"] .top-business__card--lead {
  width: 100%;
  font-family: var(--font-ja);
  font-size: 1.8rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0;
  line-height: 1.5;
  color: var(--color-white);
  text-align: center;
}

.top-section[data-section-type="business"] .top-business__card--link {
  margin: 2rem auto 0;
  padding: 1rem 2.4rem;
  width: fit-content;
  display: block;
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.03em;
  line-height: 1;
  border: 1px solid var(--color-white);
  background-color: rgb(17 17 17 / 0.2);
  border-radius: 100vh;
  text-decoration: none;
  color: var(--color-white);
}

.top-section[data-section-type="business"] .top-business__trigger {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 2;
}

.top-section[data-section-type="business"] .top-business__trigger--text {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--color-white);
}

.top-section[data-section-type="business"] .top-business__trigger-icon {
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid var(--color-white);
  border-radius: 50%;
  position: relative;
}

.top-section[data-section-type="business"] .top-business__trigger-icon::before,
.top-section[data-section-type="business"] .top-business__trigger-icon::after {
  content: '';
  display: block;
  width: 0.8rem;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: var(--color-white);
}

.top-section[data-section-type="business"] .top-business__trigger-icon::after {
  rotate: -90deg;
  transition: rotate var(--transition-default);
}

.top-section[data-section-type="business"] .top-business__trigger.opened .top-business__trigger-icon::after {
  rotate: 0deg;
}

.top-section[data-section-type="business"] .top-business__item--button:not(:has(.top-business__subitem)) {
  width: 32rem;
}

.top-section[data-section-type="business"] .top-business__item--content {
  --card-gap: 1.2rem;
  --card-width: 32rem;

  width: var(--card-width);
  transition: width var(--transition-default);
  position: relative;
}

.top-section[data-section-type="business"] .top-business__item--content:has(.top-business__subitem.show) {
  width: calc(var(--card-width) * 3 + calc(var(--card-gap) * 2));
}

.top-section[data-section-type="business"] .top-business__subitem {
  width: var(--card-width);
  border-radius: 1rem;
  overflow: hidden;
  transition: translate var(--transition-default), scale var(--transition-default), left var(--transition-default);
  transform-origin: right;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--color-main);
}

.top-section[data-section-type="business"] .top-business__subitem:nth-of-type(1) {
  z-index: 4;
}

.top-section[data-section-type="business"] .top-business__subitem:nth-of-type(2) {
  z-index: 3;
}

.top-section[data-section-type="business"] .top-business__subitem:nth-of-type(1).show {
  left: calc(var(--card-width) + var(--card-gap));
}

.top-section[data-section-type="business"] .top-business__subitem:nth-of-type(2).show {
  left: calc(calc(var(--card-width) * 2) + calc(var(--card-gap) * 2));
}

.top-section[data-section-type="business"] .top-business__subitem--link {
  display: block;
  position: relative;
  text-decoration: none;
}

.top-section[data-section-type="business"] .top-business__subitem--image::before {
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(0 0 0 / 0.4);
  z-index: 2;
}

.top-section[data-section-type="business"] .top-business__subitem--logo {
  display: block;
  width: 15rem;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
}

.top-section[data-section-type="business"] .top-business__subitem--viewmore {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: absolute;
  z-index: 2;
  bottom: 1rem;
  right: 1rem;
}

.top-section[data-section-type="business"] .top-business__subitem--viewmore-text {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.03em;
  line-height: 1.6429;
  color: var(--color-white);
}

.top-section[data-section-type="business"] .top-business__subitem--viewmore-icon {
  width: 2rem;
  height: 2rem;
}

@media (min-width: 768px) {
  .top-section[data-section-type="business"] {
    display: block;
  }

  .top-section[data-section-type="business"] .top-section__inner {
    overflow: hidden;
    position: sticky;
    top: 0;
  }

  .top-section[data-section-type="business"] .top-section__heading {
    padding-inline: 8.5vw;
  }

  .top-section[data-section-type="business"] .top-section__content {
    margin-top: 5rem;
    overflow: hidden;
  }

  .top-section[data-section-type="business"] .top-business__list {
    padding-inline: 3.6vw;
    gap: 6rem;
  }

  .top-section[data-section-type="business"] .simplebar-track.simplebar-horizontal {
    display: none !important;
  }

  .top-section[data-section-type="business"] .top-business__item--content {
    --card-gap: 1.5rem;
    --card-width: 80rem;
    width: var(--card-width);
  }

  .top-section[data-section-type="business"] .top-business__item--content:has(.top-business__subitem.show) {
    width: calc(var(--card-width) + calc(32rem * 2) + calc(var(--card-gap) * 2));
  }

  .top-section[data-section-type="business"] .top-business__item--button:not(:has(.top-business__subitem)) {
    width: var(--card-width);
  }

  .top-section[data-section-type="business"] .top-business__subitem {
    --card-width: 32rem;
  }

  .top-section[data-section-type="business"] .top-business__subitem:nth-of-type(1).show {
    left: auto;
    right: calc(var(--card-width) + var(--card-gap));
  }

  .top-section[data-section-type="business"] .top-business__subitem:nth-of-type(2).show {
    left: auto;
    right: 0;
  }

  .top-section[data-section-type="business"] .top-business__item--heading {
    margin-bottom: 2.5rem;
    font-size: 2.7rem;
  }

  .top-section[data-section-type="business"] .top-business__subitem:nth-of-type(1) .top-business__subitem--logo {
    width: 20rem;
  }

  .top-section[data-section-type="business"] .top-business__subitem:nth-of-type(2) .top-business__subitem--logo {
    width: 18rem;
  }

  .top-section[data-section-type="business"] .top-business__card--lead {
    font-size: 2.4rem;
  }

  .top-section[data-section-type="business"] .top-business__card--link {
    margin: 5rem auto 0;
    padding: 1.35rem 6rem;
    font-size: 1.6rem;
    transition: background-color var(--transition-default), color var(--transition-default);
  }
}

@media (hover: hover) {
  .top-section[data-section-type="business"] .top-business__item--content:has(.top-business__item--button:hover) .top-business__subitem:not(.show):nth-of-type(1) {
    translate: 1.5rem 0;
    scale: 0.95;
  }

  .top-section[data-section-type="business"] .top-business__item--content:has(.top-business__item--button:hover) .top-business__subitem:not(.show):nth-of-type(2) {
    translate: 3rem 0;
    scale: 0.9;
  }

  .top-section[data-section-type="business"] .top-business__card--link:hover {
    background-color: var(--color-main);
    color: var(--color-white);
  }
}

.top-section[data-section-type="news"] {
  margin-top: 12rem;
  position: relative;
}

.top-section[data-section-type="news"]::before {
  content: '';
  display: block;
  width: calc(100% - 3rem);
  height: 1px;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  background-color: var(--color-sub01);
}

.top-section[data-section-type="news"] .top-news__category--list {
  margin: 2rem 0;
  padding-bottom: 0.5rem;
  display: flex;
  overflow: auto;
  gap: 0.8rem;
}

.top-section[data-section-type="news"] .top-news__category--item {
  flex-shrink: 0;
}

.top-section[data-section-type="news"] .top-news__category--selector {
  padding: 0.65rem 1.2rem;
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.03em;
  line-height: 1;
  background-color: #EFEFEF;
  border-radius: 100vh;
  color: var(--color-text-default);
}

.top-section[data-section-type="news"] .top-news__category--selector.selected {
  background-color: var(--color-main);
  color: var(--color-white);
}

.top-section[data-section-type="news"] .top-news__item--link {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: auto 1fr;
  text-decoration: none;
  border-bottom: 1px solid var(--color-sub02);
  gap: 1rem;
}

.top-section[data-section-type="news"] .top-news__item--detail {
  grid-column: 1/3;
  display: -webkit-box;
  font-size: 1.4rem;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.top-section[data-section-type="news"] .top-section__link {
  margin-top: 2.5rem;
}

.top-section[data-section-type="news"] .top-news__item--date {
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.03em;
  line-height: 1;
  align-self: center;
}

.top-section[data-section-type="news"] .top-news__item--category-list {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-section[data-section-type="news"] .top-news__item--category-item {
  padding: 0.3rem 1rem;
  display: block;
  font-size: 1.1rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.03em;
  line-height: 1;
  border: 1px solid #D3D3D3;
  border-radius: 100vh;
}

@media (min-width: 768px) {
  .top-section[data-section-type="news"] {
    margin-top: 10rem;
    display: grid;
    grid-template-columns: 32.2580% 1fr;
    gap: 0;
  }

  .top-section[data-section-type="news"]::before {
    width: calc(100% - 24rem);
  }

  .top-section[data-section-type="news"] .top-section__inner {
    grid-column: 1/2;
  }

  .top-section[data-section-type="news"] .top-news__category--list {
    margin: 3.5rem 0 4rem;
    padding-bottom: 0;
    flex-wrap: wrap;
  }

  .top-section[data-section-type="news"] .top-news__category--selector {
    padding: 0.8rem 1.5rem;
    font-size: 1.8rem;
  }

  .top-section[data-section-type="news"] .top-news__list {
    padding-block: 2.5rem;
  }

  .top-section[data-section-type="news"] .top-news__item--date {
    font-size: 1.4rem;
  }

  .top-section[data-section-type="news"] .top-news__item--detail {
    line-height: 1.8571;
    line-clamp: 1;
    -webkit-line-clamp: 1;
  }
}

@media (hover: hover) {
  .top-section[data-section-type="news"] .top-news__category--selector {
    transition: background-color var(--transition-default), color var(--transition-default);
  }

  .top-section[data-section-type="news"] .top-news__category--selector:hover {
    background-color: var(--color-main);
    color: var(--color-white);
  }
}