/* About Style
------------------------------------------------------------- */
.p-about {
  color: var(--color-black);
  font-family: var(--font-min);
  font-size: 16px;
  font-feature-settings: "palt";
  line-height: 1.6;
  letter-spacing: 0.02em;
  word-break: break-all;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/**
 * #Animation
 */
@keyframes scrollhintmove {
  0% {
    bottom: 30px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes scrollhinthide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/**
 * #mainVisual
 */
.c-aboutMvVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 2.6s ease-out;
  will-change: transform;
}
.c-aboutMvVideo__poster,
.c-aboutMvVideo__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-aboutMvVideo__poster {
  width: 100%;
  height: 100%;
}
.c-aboutMvVideo__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.c-aboutMvVideo.is-playing .c-aboutMvVideo__video {
  opacity: 1;
}
.c-aboutMvVideoOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0,0,0,.3);
}
.c-aboutMvTitle {
  display: block;
  padding-left: 0;
  font-size: clamp(22px, calc(22px + (32 - 22) * ((100vw - 375px) / (1600 - 375))), 32px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.52em;
  color: var(--color-white);
  opacity: 0;
  filter: blur(10px) brightness(1.5);
  translate: 0 5%;
  transition-timing-function: opacity cubic-bezier(0.33, 1, 0.68, 0.8), translate cubic-bezier(0.22, 1, 0.36, 0.8), filter cubic-bezier(0.33, 1, 0.68, 0.8);
  transition-duration: 2.4s;
}
.p-about-mv:has(.is-active) .c-aboutMvTitle {
  letter-spacing: 0.5em;
  opacity: 1;
  filter: none;
  translate: 0;
}
.c-aboutMvLead {
  display: flex;
  flex-direction: column;
  gap: 65px;
  margin-top: 246px;
}
.c-aboutMvLead__title {
  font-size: clamp(17px, calc(17px + (23 - 17) * ((100vw - 375px) / (1600 - 375))), 23px);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.54em;
  color: var(--color-white);
  opacity: 0;
  filter: blur(20px) brightness(1.5);
  translate: 0 5%;
  transition-timing-function: opacity cubic-bezier(0.33, 1, 0.68, 0.8), translate cubic-bezier(0.22, 1, 0.36, 0.8), filter cubic-bezier(0.33, 1, 0.68, 0.8);
  transition-duration: 1.4s;
}
.c-aboutMvLead__title.is-active {
  opacity: 1;
  filter: none;
  translate: 0;
}
.c-aboutMvLead__body {
  display: flex;
  flex-direction: column;
  gap: 38px;
  width: 100%;
  max-width: 646px;
  font-size: clamp(15px, calc(15px + (17 - 15) * ((100vw - 375px) / (1600 - 375))), 17px);
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.1em;
  word-break: auto-phrase;
}
.c-aboutMvLead__sentence {
  opacity: 0;
  filter: blur(20px) brightness(1.5);
  translate: 0 5%;
  transition-timing-function: opacity cubic-bezier(0.33, 1, 0.68, 0.8), translate cubic-bezier(0.22, 1, 0.36, 0.8), filter cubic-bezier(0.33, 1, 0.68, 0.8);
  transition-duration: 1.4s;
}
.c-aboutMvLead__sentence.is-active {
  opacity: 1;
  filter: none;
  translate: 0;
}
.c-aboutScrollhint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.c-aboutScrollhint__bar {
  position: relative;
  width: 1px;
  height: 40px;
  background-color: rgba(255,255,255,.3);
}
.c-aboutScrollhint__bar::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 10px;
  background-color: var(--color-white);
  animation: scrollhintmove 1.8s ease-in-out infinite, scrollhinthide 1.8s ease-out infinite;
}
.c-aboutScrollhint__text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
  color: var(--color-white);
}
.p-about-mv {
  position: relative;
  display: block;
  width: 100%;
}
.p-about-mv__inner {
  position: relative;
  width: 100%;
  height: 65vh;
}
.p-about-mv__video {
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100%;
  height: 100vh;
  line-height: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  will-change: opacity;
}
.p-about-mv__video.is-active {
  opacity: 1;
}
.p-about-mv__video.is-active .c-aboutMvVideo {
  transform: scale(1);
}
.p-about-mv__lead {
  width: 100%;
  padding: 0 var(--layout-gutter) 335px 50.3%;
  color: var(--color-white);
}
.p-about-mv__scrollhint {
  position: absolute;
  top: 77.3dvh;
  left: 50%;
  transform: translateX(-50%);
}
body:has(.s-headerNotice) .p-about-mv__scrollhint {
  top: 68.8dvh;
}
/**
 * #About Content
 */
.c-aboutContentVideo {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 923 / 900;
  overflow: hidden;
}
.c-aboutContentVideo__poster,
.c-aboutContentVideo__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.c-aboutContentVideo__poster {
  aspect-ratio: 923 / 900;
}
.c-aboutContentVideo__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.c-aboutContentVideo.is-playing .c-aboutContentVideo__video {
  opacity: 1;
}
.c-aboutContentTitle {
  font-size: clamp(13px, calc(13px + (16 - 13) * ((100vw - 375px) / (1600 - 375))), 16px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--color-text_gray);
}
.c-aboutContentSubTitle {
  margin-top: 14%;
  font-size: clamp(18px, calc(18px + (24 - 18) * ((100vw - 375px) / (1600 - 375))), 24px);
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.5em;
}
.c-aboutContentSubLead {
  margin-top: 5.4%;
  font-size: clamp(14px, calc(14px + (15 - 14) * ((100vw - 375px) / (1600 - 375))), 15px);
  font-weight: 500;
  line-height: 1.7;
}
.m-aboutContent {
  display: flex;
  gap: 4.6%;
  color: var(--color-black);
}
.m-aboutContent__image {
  flex-shrink: 0;
  width: 57.6%;
  aspect-ratio: 923 / 900;
  line-height: 0;
}
.m-aboutContent__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 40px 20px 0;
}
.m-aboutContentLink {
  margin-top: 6.5%;
  padding-left: 10px;
}
.m-aboutContentLink > .c-underlineArrowLink {
  margin-inline: 0;
}
.p-about-explanation-wrap {
  padding: 150px 0 284px;
  background-color: var(--color-white);
}
.p-about-explanation {
  display: flex;
  flex-direction: column;
  gap: 110px;
}
/**
 * #About Article
 */
.c-about-articleTitle {
  flex-shrink: 0;
  width: fit-content;
  font-size: clamp(18px, calc(18px + (25 - 18) * ((100vw - 375px) / (1600 - 375))), 25px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.82em;
  opacity: 0;
  filter: blur(10px) brightness(1.5);
  translate: 0 5%;
  transition-timing-function: opacity cubic-bezier(0.33, 1, 0.68, 0.8), translate cubic-bezier(0.22, 1, 0.36, 0.8), filter cubic-bezier(0.33, 1, 0.68, 0.8);
  transition-duration: 1.2s;
}
.c-about-articleTitle.is-active {
  letter-spacing: 0.8em;
  opacity: 1;
  filter: none;
  translate: 0;
}
.c-about-articleDetail {
  flex-grow: 1;
  width: 100%;
  max-width: 526px;
  margin-top: 131px;
  padding-left: 0;
  opacity: 0;
  filter: blur(20px) brightness(1.5);
  translate: 0 5%;
  transition-timing-function: opacity cubic-bezier(0.33, 1, 0.68, 0.8), translate cubic-bezier(0.22, 1, 0.36, 0.8), filter cubic-bezier(0.33, 1, 0.68, 0.8);
  transition-duration: 1.4s;
}
.c-about-articleDetail.is-active {
  opacity: 1;
  filter: none;
  translate: 0;
}
.c-aboutArticleVideo__poster,
.c-aboutArticleVideo__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-aboutArticleVideo__poster {
  aspect-ratio: 16 / 9;
}
.c-aboutArticleVideo__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.p-about-article-wrap {
  padding: 0;
  background: transparent;
}
.p-about-article {
  position: relative;
  width: 100%;
  line-height: 0;
}
.p-about-article.is-active .c-aboutArticleVideo__video {
  opacity: 1;
}
.p-about-article__bg {
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100%;
  height: 100vh;
  aspect-ratio: 16 / 9;
  line-height: 0;
  z-index: -1;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
}
.p-about-article.is-active .p-about-article__bg {
  visibility: visible;
  opacity: 1;
}
.p-about-article__comment {
  display: flex;
  justify-content: space-between;
  gap: 5%;
  width: fit-content;
  padding: 250px var(--layout-gutter) 313px var(--layout-gutter);
  margin-inline: auto;
  font-size: clamp(15px, calc(15px + (17 - 15) * ((100vw - 375px) / (1600 - 375))), 17px);
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.1em;
  color: var(--color-black);
}
@media screen and (max-width: 1199px) {
  .p-aboutExPC {
    display: none;
  }
  /**
  * #mainVisual
  */
  .c-aboutMvVideoOverlay {
    background-color: rgba(0, 0, 0, .4);
  }
  .c-aboutMvTitle {
    padding: 0;
    text-align: center;
    line-height: 1.38;
    letter-spacing: 0.8em;
  }
  .p-about-mv:has(.is-active) .c-aboutMvTitle {
    letter-spacing: 0.5em;
  }
  .c-aboutMvLead {
    margin-top: 63.5dvh;
    gap: 52px;
  }
  .c-aboutMvLead__title {
    padding: 0 0 0 11%;
    letter-spacing: 0.6em;
  }
  .c-aboutMvLead__body {
    gap: 34px;
    max-width: none;
    padding: 0 7% 0 11%;
    letter-spacing: 0.1em;
  }
  .p-about-mv__inner {
    height: 37.5dvh;
  }
  body:has(.s-headerNotice) .p-about-mv__inner {
    height: 29dvh;
  }
  .p-about-mv__lead {
    padding: 0 0 206px;
  }
  /**
  * #About Content
  */
  .c-aboutContentSubTitle {
    margin-top: 28px;
    line-height: 1.5;
    letter-spacing: 0.42em;
    /* letter-spacing: 0.55em; */
  }
  .c-aboutContentSubLead {
    margin-top: 17px;
    line-height: 1.8;
  }
  .m-aboutContent {
    flex-direction: column;
  }
  .m-aboutContent__image {
    width: 100%;
  }
  .m-aboutContent__info {
    width: 100%;
    padding: 46px 12% 0;
  }
  .m-aboutContentLink > .c-underlineArrowLink {
    padding-bottom: 15px;
  }
  .m-aboutContentLink {
    margin-top: 28px;
    padding-left: 0;
  }
  .p-about-explanation-wrap {
    padding: 100px 0 96px;
  }
  .p-about-explanation {
    gap: 100px;
  }
  /**
  * #About Article
  */
  .c-about-articleTitle {
    width: 100%;
    padding: 0 0 0 9%;
  }
  .c-about-articleDetail {
    width: 100%;
    margin-top: 51px;
    padding: 0 8% 0 9%;
  }
  .p-about-article__comment {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    padding: 113px 0 131px 0;
  }
}
@media screen and (max-width: 767px) {
  .c-aboutMvVideo {
    aspect-ratio: 76 / 135;
  }
  .c-aboutArticleVideo__poster,
  .p-about-article__bg {
    aspect-ratio: 76 / 135;
  }
}
@media screen and (min-width: 992px) {
  /**
  * #About Content
  */
  .m-aboutContent:nth-child(2n) {
    flex-direction: row-reverse;
    gap: 4%;
  }
  .m-aboutContent:nth-child(2n) .m-aboutContent__info {
    padding-inline: 6.8% 0;
  }
}
@media screen and (min-width: 1200px) {
  .p-aboutExSP {
    display: none;
  }
  /**
  * #mainVisual
  */
  .p-about-mv__scrollhint {
    display: none;
  }
}
