@charset "UTF-8";
@media screen and (max-width: 750px) {
  .display--pc {
    display: none;
  }
}
@media screen and (min-width: 751px) {
  .display--sp {
    display: none;
  }
}

html {
  font-size: 62.5%;
  font-family: "Figtree", sans-serif;
  font-weight: 500;
}

.history, .history--border {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  margin: 40px 50px 0;
  font-family: "Figtree", "Sawarabi Gothic", sans-serif;
  font-size: clamp(1.2rem, 0.75vw, 2.4rem);
}
@media screen and (max-width: 750px) {
  .history, .history--border {
    margin: 68px 20px 0;
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 8px 10px;
    display: block;
  }
}
.history:first-of-type, .history--border:first-of-type {
  margin-top: 120px;
}
@media screen and (max-width: 750px) {
  .history:first-of-type, .history--border:first-of-type {
    margin-top: 80px;
  }
}
.history--border {
  position: relative;
  padding: 40px 0;
}
.history--border::before, .history--border::after {
  content: "";
  grid-column: 3/4;
  display: block;
  position: absolute;
  top: 0;
  width: 20px;
  height: 1px;
  background: #000;
}
@media screen and (max-width: 750px) {
  .history--border::before, .history--border::after {
    grid-column: 1/7;
  }
}
.history--border::after {
  top: auto;
  bottom: 0;
}
.history__list {
  grid-column: 3/6;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 12px;
  margin-top: 6px;
  line-height: 1.6;
}
.history__list:first-child {
  margin-top: 0;
}
@media screen and (max-width: 750px) {
  .history__list {
    margin-top: 4px;
    grid-column: 1/7;
    grid-template-columns: repeat(6, 1fr);
  }
}
.history__data {
  grid-column: 2/13;
}
@media screen and (max-width: 750px) {
  .history__data {
    grid-column: 2/7;
  }
}
.history__year {
  text-align: center;
}
@media screen and (max-width: 750px) {
  .history__year {
    text-align: start;
  }
}
.history__year + .history__data {
  grid-column: 3/13;
}
@media screen and (max-width: 750px) {
  .history__year + .history__data {
    grid-column: 3/7;
    margin-left: -16px;
  }
}
.history__text {
  grid-column: 3/6;
  margin-top: 40px;
  line-height: 1.5;
}
.history__text:first-child {
  margin-top: 0;
}
@media screen and (max-width: 750px) {
  .history__text {
    grid-column: 1/7;
  }
}

.parallax {
  position: relative;
  width: 100%;
  margin: 60px 0 0;
  overflow-x: clip;
}
.parallax::before {
  content: "";
  display: block;
  height: clamp(650px, 160vw, 1425px);
}
.parallax__canvas--1 {
  bottom: 0px;
  right: auto;
  left: -8%;
}
.parallax__canvas--2 {
  bottom: 0px;
  right: -3%;
  left: auto;
}
.parallax__canvas--3 {
  bottom: 0px;
  right: auto;
  left: 10%;
}
.parallax__canvas--4 {
  bottom: 0px;
  right: auto;
  left: -6%;
}
.parallax__canvas--5 {
  bottom: 0px;
  right: auto;
  left: 50%;
  transform: translateX(-50%);
}
.parallax__canvas--6 {
  bottom: 0px;
  right: -4%;
  left: auto;
}
.parallax__canvas--7 {
  bottom: 0px;
  right: auto;
  left: 7%;
}

[class*=parallax__canvas--] {
  position: absolute;
  width: clamp(224px, 56vw, 486px);
  height: auto;
}

.pointer-area {
  position: relative;
  padding-bottom: 300px;
}
@media screen and (max-width: 750px) {
  .pointer-area {
    padding-bottom: 0;
  }
}

.custom-cursor {
  position: absolute;
  width: 240px;
  height: 180px;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  /* 初期状態（出る前） */
  opacity: 0;
  transform: scale(0.5);
  /* アニメーション */
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* 出現後 */
.custom-cursor.is-show {
  opacity: 1;
  transform: scale(1);
}