@charset "UTF-8";
@import url("https://use.typekit.net/hpc2uvb.css");
@keyframes bar-anime {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 50px;
  }
  100% {
    height: 40px;
    top: 50px;
  }
}
@keyframes bar-anime-sp {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 40px;
  }
  100% {
    height: 40px;
    top: 40px;
  }
}
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #FFF;
  background: #000;
  font-family: "ivypresto-headline", serif;
  font-weight: 100;
  font-size: 1.6rem;
}
body.is-loaded .lp {
  opacity: 1;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

.lp {
  opacity: 0;
  transition: opacity 1s ease;
}
.lp-header {
  width: 100%;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-header__logo {
  width: 92px;
  display: block;
}
.lp-header__logo img {
  height: 34px;
  -o-object-fit: contain;
     object-fit: contain;
}
.lp-header__nav {
  display: flex;
  gap: 24px;
  font-family: "ivypresto-headline", serif;
  font-size: 1.6rem;
  font-weight: 100;
  letter-spacing: 0.1em;
}
.lp-header__nav a {
  transition: opacity 0.25s ease;
}
.lp-header__nav a:hover {
  opacity: 0.6;
}
.lp-main, .lp-footer {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.lp-main {
  display: flex;
  flex-direction: column;
  gap: 160px;
}
.lp-footer {
  padding: 40px 0;
  font-size: 1.2rem;
  font-weight: 100;
  letter-spacing: 0.1em;
  text-align: left;
}

.chapter {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.chapter__sequence {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.chapter__sequence > :nth-child(even):not(:last-child) {
  margin-bottom: 80px;
}
.chapter__title, .chapter__photo, .chapter__staff, .chapter__movie {
  width: 100%;
  height: 800px;
  padding: 16px;
  color: #000;
  background: #FFF;
  overflow: hidden;
}
.chapter__title {
  display: grid;
  place-items: center;
}
.chapter__title h1,
.chapter__title h2 {
  margin: 0;
  font-family: "ivypresto-headline", serif;
  font-size: 2.4rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  letter-spacing: 0.1em;
}
.chapter__photo {
  --photo-frame: 16px;
  padding: var(--photo-frame);
  margin: 0;
  position: relative;
}
.chapter__photo::before {
  content: "";
  position: absolute;
  inset: var(--photo-frame);
  z-index: 0;
  background: #c4c4c4;
}
.chapter__photo > img {
  width: calc(100% - var(--photo-frame) * 2);
  height: calc(100% - var(--photo-frame) * 2);
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset: var(--photo-frame);
  z-index: 1;
}
.chapter__photo--credit-right .credit-button {
  left: 46px;
  right: auto;
}
.chapter__staff {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 32px;
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
.chapter__staff-group {
  width: 100%;
}
.chapter__staff-group p {
  margin: 0;
}
.chapter__movie {
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 100;
  letter-spacing: 0.1em;
}
.chapter__movie-player {
  width: 100%;
  height: 100%;
}
.chapter__movie iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.chapter--movie {
  gap: 0;
}

.credit-button {
  padding: 0;
  border: 0;
  color: #FFF;
  background: transparent;
  font: italic 300 1.6rem/1 "ivypresto-headline", serif;
  letter-spacing: 0.1em;
  cursor: pointer;
  position: absolute;
  left: 46px;
  bottom: 46px;
  z-index: 3;
}
.credit-button span {
  width: 10px;
  height: 10px;
  margin: 0 0 1px 3px;
  display: inline-block;
  position: relative;
}
.credit-button span::before, .credit-button span::after {
  content: "";
  position: absolute;
}
.credit-button span::before {
  width: 10px;
  border-top: 1px solid currentColor;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.credit-button span::after {
  height: 10px;
  border-left: 1px solid currentColor;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.credit-panel {
  padding: 0 30px 80px;
  display: flex;
  align-items: flex-end;
  color: #FFF;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  inset: 16px;
  z-index: 2;
  transition: opacity 0.35s ease;
}
.credit-panel__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.6rem;
  font-weight: 100;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: left;
}
.credit-panel__list p,
.credit-panel__list .credit-panel__item {
  margin: 0;
}
.credit-panel__list .credit-panel__item {
  display: block;
}
.credit-panel__list .credit-panel__item > div {
  display: inline;
}
.credit-panel__list .item-品番 {
  display: inline;
}
.credit-panel__list a {
  border-bottom: 1px solid transparent;
}
.credit-panel__list a:hover {
  border-color: currentColor;
}
.credit-panel__list .item-d-none a {
  display: none;
}
.credit-panel__groups {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.js-credit.is-open .credit-panel {
  opacity: 1;
  pointer-events: auto;
}
.js-credit.is-open .credit-button span {
  width: 10px;
}
.js-credit.is-open .credit-button span::after {
  display: none;
}

.js-typewriter span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.25em);
}
body.is-loaded .js-typewriter.is-typed span {
  animation: type-in 0.2s ease forwards;
  animation-delay: calc(var(--char-index) * 0.08s);
}

@keyframes type-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 768px) {
  .lp-header {
    padding: 20px 5%;
  }
  .lp-header__logo {
    width: 70px;
  }
  .lp-header__logo img {
    height: auto;
  }
  .lp-header__nav {
    gap: 18px;
    font-size: 1.1rem;
  }
  .lp-main, .lp-footer {
    width: 90%;
  }
  .lp-main {
    gap: 56px;
  }
  .lp-footer {
    padding: 28px 0;
    font-size: 1rem;
  }
  .chapter {
    gap: 36px;
  }
  .chapter__sequence > :nth-child(even):not(:last-child) {
    margin-bottom: 32px;
  }
  .chapter__title, .chapter__photo, .chapter__staff, .chapter__movie {
    height: auto;
    min-height: 58vw;
    padding: 5px;
  }
  .chapter__title h1, .chapter__title h2 {
    font-size: 1.4rem;
  }
  .chapter__photo {
    --photo-frame: 5px;
    aspect-ratio: 3/2;
    margin-bottom: 0;
  }
  .chapter__photo::before {
    inset: var(--photo-frame);
  }
  .chapter--credit-right .credit-button {
    left: 46px;
    right: auto;
  }
  .chapter__movie-player {
    height: auto;
    aspect-ratio: 16/9;
  }
  .chapter__movie {
    min-height: 0;
  }
  .chapter__staff {
    padding: 14px;
    font-size: 1rem;
    gap: 10px;
  }
  .credit-button {
    left: 16px;
    bottom: 16px;
    font-size: 1.3rem;
  }
  .credit-panel {
    padding: 0 14px 52px;
    inset: 5px;
  }
  .credit-panel__list {
    gap: 10px;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
  .credit-panel__groups {
    gap: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lp {
    transition: none;
  }
}/*# sourceMappingURL=style.css.map */