/* 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;
}

.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;
}

.teaser {
  width: 375px;
  min-height: 100vh;
  padding: 90px 27px 250px;
  margin: 0 auto;
  pointer-events: none;
  background: url("/doc/cp/chronoir/assets/images/teaser-bg.png") repeat-y top;
  background-size: 375px 795px;
  box-shadow: var(--teaser-box-shadow);
}
@media screen and (max-width: 375px) {
  .teaser {
    padding: 74px 27px 250px;
  }
}
.teaser__content {
  display: flex;
  flex-direction: column;
}
.teaser__header {
  display: flex;
  justify-content: start;
}
.teaser__logos {
  display: flex;
  gap: 19px;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
}
.teaser__chronoir-logo {
  width: 130px;
  height: 49px;
}
.teaser__scissors {
  width: 23px;
  height: 32px;
}
.teaser__beauty-logo {
  width: 99px;
  height: 74px;
}
.teaser__main {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  text-align: center;
}
.teaser__date {
  font-family: var(--font-noto-serif-jp), sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-body);
}
@media screen and (max-width: 375px) {
  .teaser__date {
    font-size: 30px;
  }
  .teaser__date br {
    display: none;
  }
}
.teaser__message {
  font-family: var(--font-noto-serif-jp), sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-body);
}
@media screen and (max-width: 375px) {
  .teaser__message {
    font-size: 16px;
  }
  .teaser__message br {
    display: none;
  }
}
.teaser__image {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.teaser__shape {
  width: 153px;
  height: 153px;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  box-shadow: var(--teaser-box-shadow);
  transform: translateX(-50%);
}