/*html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scrollbar-gutter: stable;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:where(body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd) {
  margin: 0;
}

:where(ul, ol) {
  padding: 0;
  list-style: "";
}

:where(em) {
  font-style: normal;
}

:where(address) {
  font-style: normal;
}

:where(summary) {
  display: block;
  list-style: none;
}

:where(summary)::-webkit-details-marker {
  display: none;
}

:where(img) {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

:where(a) {
  text-decoration: none;
  color: inherit;
  transition: opacity var(--duration);
  cursor: pointer;
}

:where(button) {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background: none;
  touch-action: manipulation;
}

:where([type=text], [type=email], [type=tel], select, textarea) {
  appearance: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  width: 100%;
  background-color: var(--c-base);
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  padding: 0;
}

:where(textarea) {
  resize: none;
  field-sizing: content;
}

:where(:any-link,
button,
[type=button],
[type=reset],
[type=submit],
label[for],
select,
summary,
[role=tab],
[role=button]) {
  cursor: pointer;
}

@media (hover: hover) {
  :where(a):hover {
    opacity: 0.7;
  }
}
:focus:not(:focus-visible) {
  outline: none;
}

:root:has(:modal) {
  overflow: hidden;
}

html {
  --_body-opacity: 0;
  --_logo-opacity: 0;
  --_logo-blur: 10px;
}

html[data-loaded=true] {
  --_body-opacity: 1;
  --_logo-opacity: 1;
  --_logo-blur: 0;
}*/

.index-page {
  opacity: var(--_body-opacity);
  transition: opacity 2s cubic-bezier(0.36, 0.1, 0.16, 1);
}

.first-view__front {
  height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: #fff;
}

.first-view__front > * {
  grid-column: 1/-1;
  grid-row: 1/-1;
}

.first-view__logo {
  margin: auto;
  width: 320px;
  z-index: 1;
  opacity: var(--_logo-opacity);
  filter: blur(var(--_logo-blur));
  transition-property: opacity, filter;
  transition-duration: 2s;
  transition-timing-function: cubic-bezier(0.36, 0.1, 0.16, 1);
  transition-delay: 0.5s;
}
@media screen and (max-width: 767px) {
  .first-view__logo {
    width: 189px;
  }
}

.first-view__front-carousel,
.first-view__front-carousel-track,
.first-view__front-carousel-list {
  height: 100%;
}

.first-view__front-carousel-slide {
  width: 100%;
  height: 100%;
}

.first-view__front-carousel-slide img {
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease-out;
}

.first-view__front-carousel-slide.is-active img {
  transform: scale(1.075);
  transition-delay: 0s;
}

.first-view__back {
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  position: sticky;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .first-view__back {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }
}

@media screen and (max-width: 767px) {
  .first-view__back[data-device=pc] {
    display: none;
  }
}

.first-view__back[data-device=sp] {
  display: none;
}
@media screen and (max-width: 767px) {
  .first-view__back[data-device=sp] {
    display: grid;
  }
}

.first-view__back::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #90a2a3;
  mix-blend-mode: multiply;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.first-view__back-texts {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  text-align: center;
  display: grid;
  row-gap: 20px;
  font-family: "Noto Serif JP", "Cormorant Garamond", serif;
  padding: 46px;
}
@media screen and (max-width: 767px) {
  .first-view__back-texts {
    text-align: left;
  }
}

.first-view__back-copy {
  font-size: 32px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .first-view__back-copy {
    font-size: 24px;
    font-feature-settings: "halt";
    line-height: 1.92;
  }
}

.first-view__back-copy br {
  display: none;
}
@media screen and (max-width: 767px) {
  .first-view__back-copy br {
    display: block;
  }
}

.first-view__back-eyebrow {
  margin-top: 15px;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .first-view__back-eyebrow {
    margin-top: 20px;
    font-size: 16px;
  }
}

.first-view__back-eyebrow br {
  display: none;
}
@media screen and (max-width: 767px) {
  .first-view__back-eyebrow br {
    display: block;
  }
}

.first-view__back-eyebrow span {
  display: inline-block;
  padding: 0 1.5em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .first-view__back-eyebrow span {
    padding: 1em 0;
  }
}

.first-view__back-eyebrow span::before,
.first-view__back-eyebrow span:last-child::after {
  content: "";
  width: 1px;
  height: 65%;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .first-view__back-eyebrow span::before,
  .first-view__back-eyebrow span:last-child::after {
    width: 16px;
    height: 1px;
    transform: initial;
  }
}

.first-view__back-eyebrow span::before {
  left: 0;
}
@media screen and (max-width: 767px) {
  .first-view__back-eyebrow span::before {
    top: 0;
  }
}

.first-view__back-eyebrow span:last-child::after {
  right: 0;
}
@media screen and (max-width: 767px) {
  .first-view__back-eyebrow span:last-child::after {
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
  }
}

.first-view__back-img img {
  height: 100%;
  object-fit: cover;
}

.first-view__back-carousel,
.first-view__back-carousel-track,
.first-view__back-carousel-list {
  height: 100%;
}

.first-view__back-carousel-slide {
  width: 100%;
  height: 100%;
}

.first-view__spacer {
  height: 100vh;
}