@charset "utf-8";



.p-about {
  background: var(--color-black);
  color: var(--color-text-on-dark);
}

.p-about__inner {
  width: calc(100% - 48px);
  max-width: 660px;
  margin-inline: auto;
}


.p-about__hero {
  position: relative;
  overflow: hidden;
  display: grid;

  padding-bottom: 64px;
  background: #030413;
}


.p-about__heroImage {
  grid-area: 1 / 1;
  align-self: start;
  display: block;
  width: 100%;
  height: auto;
  margin-top: -75px;
}

.p-about__heroBody {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  padding: 40px 24px 0;
}


.p-about__heroTitle {
  margin: 0;
  font-family: var(--font-family-en);
  font-weight: 400;
  font-size: 4.625rem;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.p-about__heroLead,
.p-about__heroText,
.p-about__cityText,
.p-about__spotText,
.p-about__projectText {
  margin: 0;
  font-size: var(--fs-m);
  font-weight: 500;
  line-height: 1.6;
}

.p-about__heroLead {
  margin-top: 32px;
  font-size: var(--fs-ml);
  line-height: 1.5;
}


.p-about__heroText {
  margin-top: auto;
}


.p-about__movie {
  padding-bottom: 40px;

  background: #030413;
}

.p-about__movieLink {
  position: relative;
  display: block;
}


.p-about__movieImage {
  display: block;
  width: 100%;
  height: auto;
}


.p-about__movieLink::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9.6%;
  aspect-ratio: 1;
  translate: -50% -50%;
  background: url("./img/play-icon.svg") center / contain no-repeat;
}

.p-about__movieAction,
.p-about__projectAction {
  display: flex;
  justify-content: center;
}

.p-about__movieAction {
  margin-top: 40px;
}


.p-about__city {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.p-about__city::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 591px;

  background: url("./img/bg_city.webp") center top / 100% auto no-repeat;

  -webkit-mask-image: linear-gradient(#000 83.65%, transparent);
  mask-image: linear-gradient(#000 83.65%, transparent);
  pointer-events: none;
}

.p-about__cityIntro,
.p-about__spotList,
.p-about__projectCard {
  position: relative;
  z-index: 1;
}

.p-about__cityText {
  margin-top: 24px;
}

.p-about__cityLead {
  margin: 24px 0 0;
  font-size: var(--fs-l);
  font-weight: 500;
  line-height: 1;
}

.p-about__spotList {
  display: grid;
  gap: 24px;

  padding-top: 24px;
}


.p-about__spotItem::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 24px;
  background: var(--color-black-light);
}

.p-about__spotItem:last-child::after {
  display: none;
}

.p-about__spotVisual {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
}


.p-about__spotVisual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(102, 102, 102, 0) 71%, rgba(0, 0, 0, 0.5) 96%);
}


.p-about__spotImage {
  display: block;
  width: 100%;
  height: auto;
}


.p-about__spotNo {
  position: absolute;
  right: 24px;
  bottom: 18px;
  z-index: 1;
  display: flex;
  align-items: center;

  height: 49px;
  gap: 8px;
  font-family: var(--font-family-en);
  color: var(--color-gray);
  opacity: 0.5;
}

.p-about__spotNo::before {
  content: "";
  display: block;
  width: 1px;
  height: 49px;
  background: currentColor;
}

.p-about__spotNoLabel {
  order: -1;
  height: 49px;
  font-size: var(--fs-2xs);
  line-height: 1;
  letter-spacing: -0.04em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.p-about__spotNoValue {
  font-size: var(--fs-6xl);
  line-height: 1;
}

.p-about__spotTitle {
  margin: 16px 0 0;
  color: var(--color-cyan);
  font-size: var(--fs-l);
  font-weight: 500;
  line-height: 1;
}

.p-about__spotText {
  margin-top: 8px;
  color: var(--color-gray);
  line-height: 1.3;
}


.p-about__project {
  padding: 60px 0;
  background: var(--color-gray);
  color: var(--color-black);
}

.p-about__projectCard {
  overflow: hidden;
  margin-top: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
}

.p-about__projectHeader {
  padding: 24px;
}

.p-about__projectName {
  margin: 0;
  font-size: var(--fs-xl);
  font-weight: 700;
  line-height: 1.3;
}

.p-about__projectText {
  margin-top: 16px;
  line-height: 1.3;
}


.p-about__projectImage {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}


.p-about__thumbs {
  padding: 24px;
}

.p-about__thumbList {
  display: flex;
  gap: 24px;
}

.p-about__thumbBtn {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
}

.p-about__thumbImage {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.p-about__thumbBtn.is-current::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--color-cyan-mid);
  background: rgba(30, 251, 236, 0.1);
}


.p-about__projectAction {
  padding: 0 24px 24px;
}

.p-about__related {
  padding: 24px;
  background: var(--color-black);
  color: var(--color-text-on-dark);
}

.p-about__relatedHeading {
  margin: 0;
  font-size: var(--fs-m);
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.p-about__relatedList {
  display: grid;
  gap: 16px;

  padding-top: 24px;
}


.p-about__relatedLink {
  display: flex;
  align-items: center;

  overflow: hidden;
  gap: 8px;
  padding-right: 16px;
  border-radius: 16px;
  background: rgba(80, 80, 80, 0.4);
  box-shadow: inset 0 1px 0 rgba(148, 200, 255, 0.24);
  color: inherit;
  text-decoration: none;
  transition: background-color var(--duration-hover);
}

@media (hover: hover) {
  .p-about__relatedLink:hover {
    background: rgba(119, 119, 119, 0.4);
  }
}
.p-about__relatedLink:active {
  background: rgba(119, 119, 119, 0.4);
}

.p-about__relatedIcon {
  display: block;
  flex: none;
  width: 56px;
  height: 56px;
  object-fit: cover;
}

.p-about__relatedName {
  min-width: 0;
  font-size: var(--fs-m);
  font-weight: 500;
  line-height: 1.3;
  word-break: break-word;
}
