/* https://piccalil.li/blog/a-modern-css-reset/ */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
:root {
  /* Background Layer (-1~-10) */
  --z-index-background: -1;
  /* Base Layer (0) */
  --z-index-base: 0;
  /* Content Layer (1~10) */
  --z-index-content: 1;
  /* Fixed Layer (100~900) */
  --z-index-fixed-cta: 100;
}

.onlyPc {
  display: block;
}
.onlyPc.--inline {
  display: inline;
}
.onlyPc.--flex {
  display: flex;
}
@media screen and (max-width: 375px) {
  .onlyPc {
    display: none;
  }
  .onlyPc.--inline {
    display: none;
  }
  .onlyPc.--flex {
    display: none;
  }
}

.onlySp {
  display: none;
}
@media screen and (max-width: 375px) {
  .onlySp {
    display: block;
  }
  .onlySp.--inline {
    display: inline;
  }
  .onlySp.--flex {
    display: flex;
  }
}

.pc-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-background);
  width: 100%;
  height: 100vh;
  pointer-events: none;
  background: url("/doc/cp/chronoir/assets/images/pc-bg.png") repeat-y top;
  background-size: 1200px 860px;
}
@media screen and (min-width: 1201px) {
  .pc-header {
    background-size: 100vw auto;
  }
}
.pc-header__left {
  position: fixed;
  top: 50%;
  left: calc((100vw - 375px) / 4);
  display: block;
  width: 19.6666666667vw;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .pc-header__left {
    display: none;
  }
}
.pc-header__left-contents {
  width: 100%;
}
.pc-header__left-contents img {
  width: 100%;
  height: auto;
}
.pc-header__right {
  position: fixed;
  top: 50%;
  right: calc((100vw - 375px) / 4);
  display: block;
  width: 14.8333333333vw;
  pointer-events: none;
  transform: translate(50%, -50%);
}
@media screen and (max-width: 767px) {
  .pc-header__right {
    display: none;
  }
}
.pc-header__right-contents {
  width: 100%;
}
.pc-header__right-contents img {
  width: 100%;
  height: auto;
}

.footer {
  width: 375px;
  padding: 40px 56px;
  margin: 0 auto;
  background: var(--white);
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.footer__logo-wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: end;
}
.footer__logo-wrapper:hover {
  opacity: 0.7;
}
.footer__copyright {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-footer);
}
.footer__link {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-footer);
  text-decoration: none;
  transition: opacity 0.3s;
}
.footer__link:hover {
  opacity: 0.7;
}

.main-contents {
  width: 375px;
  margin: 0 auto;
}
@media screen and (max-width: 375px) {
  .main-contents {
    width: 100%;
  }
}

.cp-overview {
  padding: 48px 27.5px;
  background: var(--background-cp-overview);
}
.cp-overview__logo-wrapper {
  display: flex;
  flex-direction: row;
  gap: 19px;
  align-items: center;
  justify-content: start;
  margin-left: 4.5px;
}
.cp-overview__logo-chronoir {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0s;
}
.cp-overview__logo-chronoir.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.cp-overview__logo-beauty {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0s;
}
.cp-overview__logo-beauty.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.cp-overview__overview-wrapper {
  padding: 31px 23px;
  margin-top: 29px;
  background-color: var(--background-secondary);
  border: 1px solid var(--border-black);
}
.cp-overview__overview-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: var(--text-body);
  text-align: center;
  white-space: pre-wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0s;
}
.cp-overview__overview-text.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cp-overview__overview-text-caption {
  font-size: 34px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-body);
}
.cp-overview__overview-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 22px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0s;
}
.cp-overview__overview-icon-wrapper.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cp-overview__button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.cp-overview__link {
  position: relative;
  display: block;
  width: 327px;
  height: 60px;
  padding: 20px 29px 20px 60px;
  font-size: 18px;
  font-weight: 500;
  color: var(--button-primary-text-shape);
  text-align: center;
  white-space: nowrap;
  background: var(--button-primary-normal);
  border: 1px solid var(--button-primary-normal);
  border-radius: 30px;
  box-shadow: var(--button-box-shadow);
}
.cp-overview__link:hover {
  opacity: 0.7;
}
.cp-overview__link-children {
  position: relative;
  width: fit-content;
  padding-right: 60px;
  margin-inline: auto;
}
.cp-overview__link-children::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 18px;
  height: 19px;
  content: "";
  background-image: url("/doc/cp/chronoir/assets/images/arrow-down.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}

.video-archive {
  position: relative;
  padding: 64px 24px;
  overflow: hidden;
  color: var(--text-white);
  background: var(--background-video-archive);
}
.video-archive::before {
  position: absolute;
  top: -18px;
  left: 110px;
  z-index: var(--z-index-base);
  font-family: var(--font-montserrat), sans-serif;
  font-size: 128px;
  font-weight: 700;
  color: var(--gray500);
  content: "MOVIE";
  transform: rotate(90deg);
  transform-origin: top left;
}
.video-archive__content-wrapper {
  position: relative;
  z-index: var(--z-index-content);
  max-width: 327px;
  margin: 0 auto;
}
.video-archive__text-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0s;
}
.video-archive__text-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.video-archive__title {
  position: relative;
  width: 284px;
  padding: 13px 25px;
  margin: 0 auto;
  font-family: var(--font-noto-serif-jp), sans-serif;
  font-size: 26px;
  font-weight: 600;
}
.video-archive__title::before, .video-archive__title::after {
  position: absolute;
  top: 0;
  width: 16px;
  height: 56px;
  content: "";
  border-top: var(--border-white) solid 1px;
  border-bottom: var(--border-white) solid 1px;
}
.video-archive__title::before {
  left: 0;
  border-left: var(--border-white) solid 1px;
}
.video-archive__title::after {
  right: 0;
  border-right: var(--border-white) solid 1px;
}
.video-archive__description {
  width: 297px;
  padding-top: 40px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 700;
  border-top: var(--border-white) solid 1px;
}
.video-archive__video {
  max-width: 327px;
  margin: 40px auto 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0s;
}
.video-archive__video.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.video-archive__youtube {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 203px;
  overflow: hidden;
}
.video-archive__youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.new-style {
  position: relative;
  padding-bottom: 64px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--pink200) 100%);
}
.new-style__title-wrapper {
  width: 100%;
  overflow: hidden;
}
.new-style__title {
  display: inline-block;
  font-family: var(--font-montserrat), sans-serif;
  font-size: 108px;
  font-weight: 700;
  white-space: pre;
  background: linear-gradient(90deg, var(--gray200) 0%, var(--pink400) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateX(100%);
}
.new-style__content-wrapper {
  padding-inline: 24px;
  margin: 44px auto;
}
.new-style__subtitle-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.new-style__subtitle-text {
  font-size: 34px;
  font-weight: 500;
  color: var(--pink800);
}
.new-style__subtitle {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  padding-inline: 9px;
  color: var(--text-white);
}
.new-style__subtitle-line1 {
  display: flex;
  align-items: center;
  align-self: flex-start;
  height: 59px;
  padding: 6px 10px;
  font-size: 45px;
  font-weight: 700;
  background: var(--pink600);
}
.new-style__subtitle-line2 {
  display: flex;
  align-items: center;
  align-self: flex-end;
  height: 59px;
  padding: 6px 10px;
  font-size: 45px;
  font-weight: 700;
  background: var(--pink600);
}
.new-style__image-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.new-style__flip-container {
  width: 327px;
  height: 653px;
  filter: var(--new-style-filter);
  perspective: 1000px;
}
.new-style__flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s;
}
.new-style__flip-inner.is-animated {
  animation: flip-animation 2.5s ease forwards;
}
.new-style__flip-front, .new-style__flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.new-style__flip-front {
  transform: rotateY(0deg);
}
.new-style__flip-back {
  transform: rotateY(180deg);
}
.new-style__main-image {
  width: 327px;
  height: 653px;
  border-radius: 16px;
}
@keyframes flip-animation {
  0% {
    transform: rotateY(0deg);
  }
  20% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(1980deg);
  }
}
.new-style__save-text {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-body);
  text-align: center;
}
.new-style__share-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-inline: 24px;
  margin-top: 40px;
}
.new-style__share-title {
  font-family: var(--font-montserrat), sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--text-body);
  text-align: center;
}
.new-style__share-icons {
  display: flex;
  justify-content: space-between;
}
.new-style__share-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  background: var(--background-primary);
  border-radius: 4px;
  transform: translateZ(0);
  transition: opacity 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.new-style__share-link:hover {
  opacity: 0.7;
}
.new-style__beauty-section {
  margin-top: 64px;
  text-align: center;
}
.new-style__beauty-logo {
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0s;
}
.new-style__beauty-logo.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.new-style__beauty-title {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0s;
}
.new-style__beauty-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.new-style__beauty-text {
  font-size: 20px;
  font-weight: 500;
  color: var(--pink700);
}
.new-style__beauty-highlight {
  font-size: 30px;
  font-weight: 700;
  color: var(--pink700);
}
.new-style__beauty-description-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-inline: 24px;
  margin-top: 24px;
  color: var(--text-body);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0s;
}
.new-style__beauty-description-wrapper.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.new-style__beauty-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  white-space: pre-wrap;
}
.new-style__beauty-note {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}
.new-style__cta-button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0s;
}
.new-style__cta-button-wrapper.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.new-style__cta-button {
  position: relative;
  display: block;
  width: 327px;
  height: 60px;
  padding: 19px 29px;
  font-size: 18px;
  font-weight: 500;
  color: var(--button-secondary-text-shape);
  text-align: center;
  white-space: nowrap;
  background: var(--button-secondary-normal);
  border: 1px solid var(--button-secondary-normal);
  border-radius: 30px;
}
.new-style__cta-button:hover {
  opacity: 0.7;
}
.new-style__cta-button-children {
  position: relative;
  width: fit-content;
  padding-right: 30px;
  margin-inline: auto;
}
.new-style__cta-button-children::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 19px;
  height: 19px;
  content: "";
  background-image: url("/doc/cp/chronoir/assets/images/external-link.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}

.introduction {
  position: relative;
  padding: 64px 24px;
  overflow: hidden;
  background: var(--background-introduction);
}
.introduction::before {
  position: absolute;
  top: -18px;
  left: 110px;
  z-index: var(--z-index-base);
  font-family: var(--font-montserrat), sans-serif;
  font-size: 128px;
  font-weight: 700;
  color: var(--gray100);
  content: "PROFILE";
  transform: rotate(90deg);
  transform-origin: top left;
}
.introduction__introduction-block {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0s;
}
.introduction__introduction-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.introduction__content-wrapper {
  position: relative;
  z-index: var(--z-index-content);
}
.introduction__header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.introduction__title {
  position: relative;
  width: 284px;
  padding: 13px 25px;
  margin: 0 auto;
  font-family: var(--font-noto-serif-jp), sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--text-heading);
  text-align: center;
}
.introduction__title::before, .introduction__title::after {
  position: absolute;
  top: 0;
  width: 16px;
  height: 56px;
  content: "";
  border-top: var(--border-black) solid 1px;
  border-bottom: var(--border-black) solid 1px;
}
.introduction__title::before {
  left: 0;
  border-left: var(--border-black) solid 1px;
}
.introduction__title::after {
  right: 0;
  border-right: var(--border-black) solid 1px;
}
.introduction__chronoir {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  margin-top: 32px;
}
.introduction__chronoir-logo {
  display: flex;
  justify-content: center;
  width: 100%;
}
.introduction__chronoir-description {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-body);
  text-align: left;
}
.introduction__chronoir-description-line {
  line-height: 1.4;
}
.introduction__links {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}
.introduction__links-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-body);
  text-align: center;
}
.introduction__links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
}
.introduction__link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: var(--white);
  border-radius: 8px;
  transition: opacity 0.3s;
}
.introduction__link:hover {
  opacity: 0.7;
}
.introduction__link-text {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-body);
  text-align: center;
}
.introduction__members {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}
.introduction__member-card {
  overflow: hidden;
  background: var(--background-member-card);
}
.introduction__member-image {
  width: 100%;
}
.introduction__member-image img {
  display: block;
  width: 100%;
  height: auto;
}
.introduction__member-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 16px 24px 24px;
  color: var(--text-white);
  text-align: center;
}
.introduction__member-header {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
  border-bottom: var(--border-white) solid 1px;
}
.introduction__member-name {
  font-size: 80px;
  font-weight: 300;
}
.introduction__member-title {
  font-size: 22px;
  font-weight: 300;
}
.introduction__member-description {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 15px;
  font-weight: 400;
  text-align: left;
}
.introduction__member-description-line {
  line-height: 1.4;
}
.introduction__member-links {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}
.introduction__member-links::before, .introduction__member-links::after {
  position: absolute;
  top: 0;
  width: 16px;
  height: 67px;
  content: "";
  border-top: var(--gray400) solid 1px;
  border-bottom: var(--gray400) solid 1px;
}
.introduction__member-links::before {
  left: 0;
  border-left: var(--gray400) solid 1px;
}
.introduction__member-links::after {
  right: 0;
  border-right: var(--gray400) solid 1px;
}
.introduction__member-links-divider {
  width: 1px;
  height: 67px;
  background: var(--gray400);
}
.introduction__member-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 67px;
  transition: opacity 0.3s;
}
.introduction__member-link:hover {
  opacity: 0.7;
}

.floating-cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: var(--z-index-fixed-cta);
  visibility: hidden;
  width: 100%;
  max-width: 375px;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}
.floating-cta.is-visible {
  visibility: visible;
  opacity: 1;
}
.floating-cta__link {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 22px 36px;
  text-decoration: none;
  background: var(--black);
  transition: opacity 0.3s;
}
.floating-cta__link:hover {
  background: var(--gray600);
}
.floating-cta__text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(90deg, var(--pink500) 0%, var(--pink100) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.floating-cta__arrow {
  width: 18px;
  height: 21px;
}