* {
  box-sizing: border-box;
}

html,
body {
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 300;
  font-feature-settings: "palt";
  color: #000;
  background: #fff;
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  overflow-x: hidden;
}

img {
  display: block;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  background: #d9d9d9;
  border: 1px solid #bdbdbd;
  color: #666;
  font-size: clamp(8px, 1.6vw, 12px);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

button {
  font: inherit;
  border: none;
  background: none;
  padding: 0;
  color: inherit;
  cursor: pointer;
}

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

.page {
  width: 1200px;
  margin: 0 auto;
}

.js-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

.js-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero {
  position: relative;
  width: 1200px;
  height: 900px;
}

.hero__inner {
  position: relative;
  width: 1200px;
  height: 900px;
}

.hero__side {
  position: absolute;
  left: 0;
  top: 0;
  width: 130px;
  height: 900px;
  padding: 40px 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  padding-top: 73px;
}

.logo-mark {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 53px;
  height: 53px;
  transform: translateX(-50%);
}

.logo-mark img,
.logo-mark .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-block__title {
  margin: 0;
  line-height: 0;
}

.logo-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 190px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: 1px;
  font-weight: 400;
  color: #494342;
}

.logo-vertical {
  width: 38px;
  height: 124.6px;
}

.logo-block__subtitle {
  margin: 32px 0 0;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 5.6px;
  font-weight: 500;
  color: #494342;
  writing-mode: vertical-rl;
  text-orientation: upright;
  height: 196px;
}

.social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #494342;
  position: absolute;
  left: 50%;
  bottom: 135px;
  transform: translateX(-50%);
}

.social a {
  display: block;
  width: 20px;
  height: 20px;
  line-height: 0;
}

.social svg {
  width: 20px;
  height: 20px;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu__toggle {
  list-style: none;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #494342;
  padding: 0;
  background: transparent;
  position: relative;
  z-index: 30;
}

.mobile-menu__toggle::-webkit-details-marker {
  display: none;
}

.mobile-menu__toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  display: block;
  position: relative;
  transition: background 0.2s ease;
}

.mobile-menu__toggle span::before,
.mobile-menu__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  top: 0;
  transition: transform 0.25s ease;
}

.mobile-menu__toggle span::before {
  transform: translateY(-6px);
}

.mobile-menu__toggle span::after {
  transform: translateY(6px);
}

.mobile-menu[open] .mobile-menu__toggle span {
  background: transparent;
}

.mobile-menu[open] .mobile-menu__toggle span::before {
  transform: rotate(45deg);
}

.mobile-menu[open] .mobile-menu__toggle span::after {
  transform: rotate(-45deg);
}

.mobile-menu__panel {
  position: fixed;
  right: 0;
  top: 0;
  width: min(82vw, 320px);
  height: 100vh;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #ddd;
  border-right: none;
  box-shadow: -12px 0 30px rgba(0, 0, 0, 0.12);
  padding: 72px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 20;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.35s ease;
  will-change: transform, opacity;
  pointer-events: none;
}

.mobile-menu > .mobile-menu__panel {
  display: flex;
}

.mobile-menu[open] .mobile-menu__panel {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-size: 14px;
  letter-spacing: 2px;
}

.mobile-menu__social {
  display: flex;
  gap: 12px;
  border-top: 1px solid #eee;
  margin-top: 32px;
  padding-top: 12px;
}

.mobile-menu__social a {
  display: inline-flex;
  width: 20px;
  height: 20px;
}

.mobile-menu__social svg {
  width: 20px;
  height: 20px;
}

.hero__image {
  position: absolute;
  left: 130px;
  top: 54px;
  width: 1030px;
  height: 735px;
  overflow: hidden;
  isolation: isolate;
}

.hero__image::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: rgba(0, 0, 0, 0.28);
  z-index: 1;
  pointer-events: none;
}

.hero__image-parallax {
  position: absolute;
  inset: 0;
  transform: translateY(-30px);
  z-index: 0;
}

.hero__image-inner {
  width: 100%;
  height: 100%;
  transform: scale(1.1);
  transform-origin: center;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__info {
  position: absolute;
  top: 16px;
  right: 16px;
  width: auto;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 4.5px;
  font-weight: 300;
  color: #fff;
  padding-right: 0;
  z-index: 2;
  text-align: right;
}

.hero__scroll {
  position: absolute;
  right: 40.46px;
  bottom: 0;
  width: 78px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  z-index: 2;
}

.hero__scroll p {
  margin: 0 24px 0 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 1.5px;
  font-weight: 300;
  padding-right: 0;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.35);
  position: relative;
  overflow: hidden;
}

.scroll-line span {
  position: absolute;
  left: 0;
  top: -60px;
  width: 1px;
  height: 60px;
  background: #fff;
  animation: scrollLine 2.2s infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(120px);
  }
}

.hero__nav {
  position: absolute;
  top: 19px;
  right: 39.83px;
  width: auto;
  white-space: nowrap;
}

.hero__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__nav li {
  display: block;
  margin-left: 0;
}

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

.hero__nav button {
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
}

.hero__nav-text {
  display: inline-block;
  height: 14px;
  line-height: 14px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: #000;
  white-space: nowrap;
}

.hero__nav-text--active {
  letter-spacing: 2.1px;
}

.hero__nav button.hero__nav-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
}

.hero__nav-text::before {
  content: "●";
}

.section-head {
  width: 1040px;
  margin: 120px auto 40px;
  font-size: 24px;
  letter-spacing: 6px;
  font-weight: 500;
}

.section-head h2,
.section-head h3 {
  margin: 0;
  font-size: inherit;
  letter-spacing: inherit;
  font-weight: inherit;
}

.section-head--vision,
.section-head--mission {
  margin: 120px auto 24px;
}

.story-section {
  position: relative;
  width: 1040px;
  margin: 120px auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.story-section__photo {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.story-section__photo img,
.story-section__photo .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-section__illustration {
  position: absolute;
  width: 160px;
  height: 160px;
  right: 40px;
  top: -40px;
  opacity: 0.9;
  transform: rotate(-6deg);
}

.story-section__illustration img,
.story-section__illustration .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-section__text {
  position: relative;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 1.6px;
  font-weight: 400;
  margin: 0;
  z-index: 2;
}

.story-section--intro .story-section__photo {
  grid-column: 1;
}

.story-section--reverse .story-section__photo {
  grid-column: 2;
}

.story-section--reverse .story-section__text {
  grid-column: 1;
  margin-right: -80px;
  align-self: center;
  transform: translateY(-300px);
}

.story-section--intro .story-section__illustration {
  right: 70px;
  top: -30px;
}

.story-section--intro .story-section__text {
  grid-column: 2;
  margin-left: 0;
}

.story-section--mid .story-section__photo {
  grid-column: 2;
}

.story-section--mid .story-section__illustration {
  left: 70px;
  right: auto;
  top: -20px;
  transform: rotate(4deg);
}

.story-section--mid .story-section__text {
  grid-column: 1;
  margin-right: 0;
  transform: translateY(-350px);
}

.story-section--last .story-section__photo {
  grid-column: 1;
}

.story-section--last .story-section__illustration {
  right: 80px;
  top: auto;
  bottom: -20px;
  transform: rotate(-2deg);
}

.story-section--last .story-section__text {
  grid-column: 2;
  margin-left: 0;
}

.story-grid {
  position: relative;
  width: 1120px;
  margin: 140px auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 40px;
  gap: 16px;
}

.story-grid img,
.story-grid .img-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.grid-img--1 {
  grid-column: 5 / 13;
  grid-row: 1 / span 6;
  z-index: 2;
}

.grid-img--2 {
  grid-column: 1 / 4;
  grid-row: 8 / span 4;
}

.grid-img--3 {
  grid-column: 4 / 8;
  grid-row: 7 / span 5;
  margin-top: -20px;
  z-index: 2;
}

.grid-img--4 {
  grid-column: 8 / 13;
  grid-row: 7 / span 5;
  margin-top: 12px;
}

.grid-img--5 {
  grid-column: 2 / 7;
  grid-row: 13 / span 4;
  margin-top: -12px;
}

.grid-img--6 {
  grid-column: 7 / 13;
  grid-row: 13 / span 4;
}

.grid-img--7 {
  grid-column: 3 / 11;
  grid-row: 18 / span 5;
  margin-top: -18px;
  z-index: 2;
}

.grid-illustration {
  grid-column: 1 / 3;
  grid-row: 12 / span 3;
  opacity: 0.85;
}

.story-grid__text {
  position: relative;
  grid-column: 1 / 4;
  grid-row: 1 / span 7;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 1.4px;
  font-weight: 400;
  margin: 0;
  z-index: 1;
  margin-right: -30px;
}

.story-final {
  position: relative;
  width: 1100px;
  margin: 180px auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.story-final__text {
  position: relative;
  width: auto;
  height: auto;
  z-index: 2;
  margin-right: 0;
}

.story-final__text-inner {
  display: block;
  width: auto;
  height: auto;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 1.6px;
  font-weight: 400;
}

.story-final__image {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  z-index: 1;
}

.story-final__image img,
.story-final__image .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media {
  position: relative;
  width: 1024px;
  height: 940px;
  margin: 120px auto;
}

.media__title {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: auto;
  height: auto;
}

.media__title-link {
  font-size: 28px;
  letter-spacing: 6px;
  font-weight: 500;
  color: #000;
}

.media__tagline {
  font-size: 12px;
  letter-spacing: 3px;
  color: #494342;
}

.media__list {
  position: absolute;
  left: 110px;
  top: 110px;
  width: 860px;
  height: 700px;
}

.media-card {
  position: absolute;
}

.media-card img,
.media-card .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 6px solid #fff;
}

.media-card:nth-child(1) {
  left: 0;
  top: 0;
  width: 520px;
  height: 680px;
  transform: rotate(-1.2deg);
}

.media-card:nth-child(1) img,
.media-card:nth-child(1) .img-placeholder {
  height: 580px;
}

.media-card:nth-child(2) {
  left: 520px;
  top: 50px;
  width: 300px;
  height: 340px;
  transform: rotate(1.6deg);
}

.media-card:nth-child(2) img,
.media-card:nth-child(2) .img-placeholder {
  height: 240px;
}

.media-card:nth-child(3) {
  left: 410px;
  top: 420px;
  width: 340px;
  height: 360px;
  transform: rotate(-1.8deg);
}

.media-card:nth-child(3) img,
.media-card:nth-child(3) .img-placeholder {
  height: 240px;
}

.media-card__info {
  padding-left: 13px;
  padding-right: 13.07px;
  padding-top: 13.57px;
}

.media-card__info p {
  margin: 0;
  font-size: 12px;
  line-height: 19.2px;
  letter-spacing: 3px;
  font-weight: 500;
}

.media-card__name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.media-card__name h3 {
  margin: 0;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 5px;
  font-weight: 500;
}

.icon-arrow svg {
  width: 20px;
  height: 25.6px;
  color: #494342;
}

.media__more {
  position: absolute;
  left: 560px;
  top: 860px;
  width: 260px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 41px;
  gap: 0;
  font-size: 16px;
  line-height: 25.6px;
  letter-spacing: 4px;
  font-weight: 500;
  color: #000;
}

.footer {
  padding: 48px 0 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.footer--dark {
  background: #4f4f4f;
  color: #fff;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
}

.footer-logo img,
.footer-logo .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 300;
}

.footer-nav a {
  color: inherit;
}

.footer-copy {
  margin: 0;
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 300;
  color: inherit;
}

@media (max-width: 1200px) {
  body {
    width: 100%;
  }

  .page {
    width: 100%;
  }

  .hero,
  .hero__inner {
    width: 100%;
  }

  .hero__image {
    left: 0;
    width: 100%;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 12px;
  }

  .hero {
    height: auto;
    padding: 16px 16px 0;
  }

  .hero__inner {
    height: auto;
  }

  .hero__side {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .logo-block {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding-top: 0;
  }

  .logo-mark {
    position: static;
    width: 36px;
    height: 36px;
    transform: none;
  }

  .logo-text {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    width: auto;
    height: auto;
    font-size: 28px;
    letter-spacing: 2px;
  }

  .logo-block__subtitle {
    display: none;
  }

  .social {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero__image {
    position: relative;
    top: 0;
    width: calc(100% + 32px);
    height: 78vh;
    min-height: 420px;
    max-height: 680px;
    margin: 16px -16px 0;
  }

  .hero__image-parallax {
    transform: none;
  }

  .hero__image-inner {
    transform: none;
  }

  .hero__info {
    top: 12px;
    right: 12px;
    font-size: 10px;
    line-height: 1.6;
    letter-spacing: 2px;
  }

  .hero__scroll {
    display: none;
  }

  .hero__nav {
    display: none;
  }

  .hero__nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
  }

  .hero__nav-text {
    font-size: 12px;
    letter-spacing: 1.2px;
  }

  .story-section {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 64px auto;
    padding: 0 16px;
  }

  .section-head {
    width: 100%;
    margin: 64px auto 24px;
    padding: 0 16px;
    font-size: 20px;
    letter-spacing: 4px;
  }

  .story-section__photo {
    height: 260px;
  }

  .story-section__illustration {
    position: relative;
    width: 96px;
    height: 96px;
    right: auto;
    left: auto;
    top: auto;
    margin: -24px 0 0 auto;
  }

  .story-section__text,
  .story-section--intro .story-section__text,
  .story-section--mid .story-section__text,
  .story-section--last .story-section__text {
    margin: 0;
    grid-column: 1;
  }

  .story-section--intro .story-section__illustration,
  .story-section--mid .story-section__illustration,
  .story-section--last .story-section__illustration {
    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }

  .story-grid {
    width: 100%;
    margin: 64px auto;
    padding: 0 16px;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
    gap: 12px;
  }

  .story-grid img,
  .story-grid .img-placeholder {
    grid-column: auto;
    grid-row: auto;
    height: 120px;
  }

  .grid-img--1,
  .grid-img--2,
  .grid-img--3,
  .grid-img--4,
  .grid-img--5,
  .grid-img--6,
  .grid-img--7 {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
  }

  .grid-illustration {
    display: none;
  }

  .story-grid__text {
    grid-column: 1 / -1;
    grid-row: auto;
    margin: 0;
  }

  .story-final {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 64px auto 0;
    padding: 0 16px;
  }

  .story-final__text {
    margin: 0;
  }

  .story-final__image {
    height: 260px;
  }

  .media {
    width: 100%;
    height: auto;
    margin: 64px auto;
    padding: 0 16px;
  }

  .media__title {
    position: static;
    width: auto;
    height: auto;
    margin-bottom: 16px;
  }

  .media__tagline {
    position: static;
    width: auto;
    height: auto;
    margin-bottom: 20px;
  }

  .media__title-link {
    font-size: 22px;
    letter-spacing: 4px;
  }

  .media__tagline {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .media__list {
    position: static;
    width: 100%;
    height: auto;
    display: grid;
    gap: 16px;
  }

  .media-card,
  .media-card:nth-child(1),
  .media-card:nth-child(2),
  .media-card:nth-child(3) {
    position: static;
    width: 100%;
    height: auto;
    left: auto;
    top: auto;
    transform: none;
  }

  .media-card img,
  .media-card .img-placeholder,
  .media-card:nth-child(1) img,
  .media-card:nth-child(1) .img-placeholder,
  .media-card:nth-child(2) img,
  .media-card:nth-child(2) .img-placeholder,
  .media-card:nth-child(3) img,
  .media-card:nth-child(3) .img-placeholder {
    height: 220px;
  }

  .media__more {
    position: static;
    width: auto;
    height: auto;
    margin: 20px auto 0;
    padding: 0 12px;
    gap: 12px;
    justify-content: center;
  }
}
