@charset "UTF-8";

:root {
  --story-bg: #f4f0ea;
  --story-bg-soft: #ebe5dc;
  --story-dark: #1e211f;
  --story-text: #243238;
  --story-sub: #6c6258;
  --story-brown: #9a7452;
  --story-white: #fff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--story-text);
  background: var(--story-bg);
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", sans-serif;
  line-height: 2.1;
  letter-spacing: 0.05em;
}

.story-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.story-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.story-inner {
  width: min(1080px, 86%);
  margin: 0 auto;
}

/* FV */
.story-fv {
  position: relative;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
}

.story-fv__image,
.story-fv__overlay {
  position: absolute;
  inset: 0;
}

.story-fv__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.story-fv__overlay {
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.66) 0%,
    rgba(0,0,0,.36) 48%,
    rgba(0,0,0,.1) 100%
  );
}

.story-fv__content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  width: min(1080px, 86%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.story-label,
.story-number {
  margin: 0 0 30px;
  color: var(--story-brown);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .34em;
}

.story-fv h1 {
  margin: 0 0 42px;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .08em;
}

.story-fv__lead {
  margin: 0;
  font-size: 15px;
  line-height: 2.3;
}

/* INTRO */
.story-intro {
  padding: 110px 0;
  text-align: center;
}

.story-intro p {
  margin: 0;
  font-size: clamp(17px, 2vw, 25px);
  line-height: 2.25;
}

/* SECTION */
.story-section {
  padding: 150px 0;
  background: var(--story-bg);
}

.story-section--gray {
  background: var(--story-bg-soft);
}

.story-section--dark {
  background: var(--story-dark);
  color: #f7f3ec;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
  align-items: start;
}

.story-grid--reverse .story-text {
  order: 2;
}

.story-grid--reverse .story-photo-stack,
.story-grid--reverse .story-photo-single {
  order: 1;
}

.story-text h2 {
  margin: 0 0 52px;
  font-size: clamp(30px, 3.2vw, 50px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: .08em;
}

.story-text p {
  margin: 0 0 28px;
  font-size: 15px;
}

.story-text blockquote,
.story-final blockquote {
  margin: 48px 0;
  padding: 34px 0;
  border-top: 1px solid rgba(154,116,82,.35);
  border-bottom: 1px solid rgba(154,116,82,.35);
  color: var(--story-brown);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: .08em;
}

.story-section--dark blockquote {
  color: #d4b48b;
  border-color: rgba(212,180,139,.35);
}

/* PHOTOS */
.story-photo-stack {
  display: grid;
  gap: 28px;
  position: sticky;
  top: 80px;
}

.story-photo-stack img,
.story-photo-single img {
  width: 100%;
  object-fit: cover;
}

.story-photo-stack img:nth-child(1) {
  width: 86%;
}

.story-photo-stack img:nth-child(2) {
  width: 76%;
  margin-left: auto;
}

.story-photo-stack img:nth-child(3) {
  width: 88%;
  margin: 0 auto;
}

.story-photo-stack img[src*="story-tennis"] {
  width: 58%;
  margin: 0 auto;
}

.story-photo-single {
  position: sticky;
  top: 80px;
}

/* PHOTO MESSAGE */
.story-photo-message {
  position: relative;
  min-height: 76vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
}

.story-photo-message img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-photo-message::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.42);
}

.story-photo-message__text {
  position: relative;
  z-index: 1;
  width: min(900px, 86%);
  text-align: center;
  color: #fff;
}

.story-photo-message__text p {
  margin: 0;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: .08em;
}

/* FINAL */
.story-final {
  padding: 160px 0 180px;
  background: #171715;
  color: #f7f3ec;
  text-align: center;
}

.story-final h2 {
  margin: 0 0 64px;
  font-size: clamp(32px, 3.4vw, 54px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: .08em;
}

.story-final__text {
  width: min(760px, 100%);
  margin: 0 auto;
}

.story-final p {
  margin: 0 0 28px;
  font-size: 15px;
}

.story-final__photo {
  width: min(900px, 100%);
  margin: 80px auto 0;
}

.story-final__photo img {
  width: 100%;
}

/* FOOTER */
.site-footer {
  padding: 110px 20px;
  background: var(--story-bg);
  text-align: center;
}

.site-footer__text {
  margin: 0 0 42px;
  color: var(--story-sub);
  font-size: 14px;
  line-height: 2;
  letter-spacing: .08em;
}

.site-footer__logo {
  display: inline-block;
}

.site-footer__logo img {
  width: 260px;
  height: auto;
}

/* SP */
@media (max-width: 768px) {
  .story-fv {
    min-height: 92vh;
  }

  .story-fv__content {
    min-height: 92vh;
    width: 84%;
  }

  .story-fv__overlay {
    background: rgba(0,0,0,.48);
  }

  .story-fv h1 {
    font-size: 34px;
    line-height: 1.6;
  }

  .story-fv__lead {
    font-size: 13px;
  }

  .story-intro {
    padding: 82px 0;
  }

  .story-intro p {
    font-size: 16px;
    text-align: left;
  }

  .story-section {
    padding: 96px 0;
  }

  .story-grid,
  .story-grid--reverse {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story-grid--reverse .story-text,
  .story-grid--reverse .story-photo-stack,
  .story-grid--reverse .story-photo-single {
    order: initial;
  }

  .story-text h2 {
    margin-bottom: 38px;
    font-size: 28px;
  }

  .story-text p {
    font-size: 14px;
    line-height: 2.15;
  }

  .story-text blockquote,
  .story-final blockquote {
    margin: 38px 0;
    padding: 28px 0;
    font-size: 20px;
  }

  .story-photo-stack,
  .story-photo-single {
    position: static;
  }

  .story-photo-stack img,
  .story-photo-stack img:nth-child(1),
  .story-photo-stack img:nth-child(2),
  .story-photo-stack img:nth-child(3) {
    width: 100%;
    margin: 0;
  }

   .story-photo-stack img[src*="story-tennis"] {
    width: 72%;
    margin: 0 auto;
  }

  .story-photo-message {
    min-height: 58vh;
  }

  .story-photo-message__text p {
    font-size: 26px;
    line-height: 1.8;
  }

  .story-final {
    padding: 100px 0 120px;
  }

  .story-final h2 {
    font-size: 28px;
    margin-bottom: 44px;
  }

  .story-final p {
    font-size: 14px;
    line-height: 2.15;
  }

  .story-final__photo {
    margin-top: 54px;
  }

  .site-footer {
    padding: 80px 20px;
  }

  .site-footer__logo img {
    width: 220px;
  }
}