/**
 * 北欧建築・デザインの巨匠による名言スプラッシュ。
 * 対象ページだけで読み込まれる。
 */
.page-splash {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 30000;
  overflow: hidden;
  place-items: center;
  isolation: isolate;
  background: #171714;
  color: #fff;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  cursor: default;
}

html.heiwa-page-splash .page-splash {
  display: grid;
  animation: page-splash-failsafe 0s linear 5s forwards;
}

.page-splash.is-removed {
  display: none !important;
}

html.heiwa-page-splash-running,
html.heiwa-page-splash-running body {
  overflow: hidden;
  overscroll-behavior: none;
}

.page-splash__image,
.page-splash__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-splash__image {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.035);
  filter: saturate(.78) contrast(.96);
  transition:
    opacity 1.15s cubic-bezier(.22, 1, .36, 1),
    transform 3.8s cubic-bezier(.22, 1, .36, 1);
}

.page-splash__shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(10, 10, 8, .22), rgba(10, 10, 8, .36)),
    radial-gradient(circle at 50% 48%, rgba(0, 0, 0, .02), rgba(0, 0, 0, .2));
}

.page-splash__content {
  width: min(760px, calc(100% - 64px));
  margin: 0 auto;
  text-align: center;
  text-wrap: balance;
}

.page-splash__author {
  margin: 0 0 22px;
  font-family:
    "Snell Roundhand",
    "Segoe Script",
    "Apple Chancery",
    "URW Chancery L",
    cursive;
  font-size: clamp(20px, 2.1vw, 34px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: .025em;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  text-shadow: 0 2px 22px rgba(0, 0, 0, .32);
  transition:
    opacity .85s cubic-bezier(.22, 1, .36, 1) .22s,
    transform .85s cubic-bezier(.22, 1, .36, 1) .22s;
}

.page-splash__author::after {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  margin: 20px auto 0;
  background: rgba(255, 255, 255, .58);
}

.page-splash__quote {
  margin: 0;
  font-family:
    "Hiragino Mincho ProN",
    "Yu Mincho",
    "YuMincho",
    "Noto Serif JP",
    serif;
  font-size: clamp(14px, 1.15vw, 18px);
  font-weight: 400;
  line-height: 2.15;
  letter-spacing: .075em;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  text-shadow: 0 2px 26px rgba(0, 0, 0, .5);
  transition:
    opacity .9s cubic-bezier(.22, 1, .36, 1) .42s,
    transform .9s cubic-bezier(.22, 1, .36, 1) .42s;
}

.page-splash.is-active .page-splash__image {
  opacity: 1;
  transform: scale(1);
}

.page-splash.is-active .page-splash__author,
.page-splash.is-active .page-splash__quote {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.page-splash.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity .9s cubic-bezier(.55, 0, 1, .45),
    visibility 0s linear .9s;
}

@keyframes page-splash-failsafe {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (max-width: 767px) {
  .page-splash__content {
    width: min(86vw, 560px);
  }

  .page-splash__author {
    margin-bottom: 18px;
    font-size: clamp(21px, 7vw, 29px);
  }

  .page-splash__author::after {
    margin-top: 16px;
  }

  .page-splash__quote {
    font-size: clamp(13px, 3.7vw, 16px);
    line-height: 2;
    letter-spacing: .045em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-splash,
  .page-splash__image,
  .page-splash__author,
  .page-splash__quote {
    animation: none !important;
    transition-duration: .2s !important;
    transform: none !important;
  }

  .page-splash__image {
    opacity: 1;
  }
}


.page-splash__quote br{
  display:block;
  content:"";
}
