@charset "UTF-8";
/* ==================================================
  import
================================================== */
@import url("https://use.typekit.net/oqw4fij.css"); /*Cardo*/
@import url("https://use.typekit.net/nvi6fjw.css"); /*Athelas*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap"); /*Noto Sans JP 400*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap"); /*Noto Serif JP 400*/
/* ==================================================
  Variables
================================================== */
/* ---- color ---- */
/* ---- font ---- */
/* ---- layout ---- */
/* ---- font-size ---- */
/* ==================================================
  Mixins / Functions
================================================== */
/* ---- Media Query ---- */
/* ---- VW (SP基準) ---- */
/* ==================================================
  Base
================================================== */
html {
  font-size: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(12 / 16 * 1rem);
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #000;
  background-color: #dcdcd9;
}
@media screen and (min-width: 769px) {
  body {
    font-size: calc(13 / 16 * 1rem);
  }
}
body img,
body video,
body svg {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---- Utility ---- */
.pc {
  display: none;
}

.sp {
  display: block;
}

@media screen and (min-width: 769px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
/* ==================================================
  Animation
================================================== */
.fadein {
  opacity: 0;
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}

.fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fadein2 {
  opacity: 0;
  transform: none;
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fadein2.is-visible {
  opacity: 1;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ==================================================
loading
================================================== */
#loader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  z-index: 9999;
  pointer-events: none;
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#loader.is-hide {
  opacity: 0;
  pointer-events: none;
}

/* LP */
#page.is-loaded .lp-container {
  opacity: 1;
}

#page.is-loaded #loader {
  opacity: 0;
  pointer-events: none;
}

.loader__logo, .loader__title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
}
.loader__logo {
  width: 40vw;
}
@media screen and (min-width: 769px) {
  .loader__logo {
    width: 240px;
  }
}
.loader__title {
  width: 23.8vw;
}
@media screen and (min-width: 769px) {
  .loader__title {
    width: 160px;
  }
}

.loader__logo, .loader__title {
  position: absolute;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.loader__title {
  transition-delay: 0.3s;
}

.loader__logo.is-visible, .loader__title.is-visible {
  opacity: 1;
}

.lp-container {
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#loader.is-hide + .lp-container {
  opacity: 1;
}

/* ==================================================
  Layout
================================================== */
.lp-container {
  width: 100%;
  /*opacity: 0; animation: fadeIn 1.5s ease 0.15s forwards;*/
}
@media screen and (min-width: 769px) {
  .lp-container {
    display: flex;
    justify-content: space-between;
  }
}
.lp-container .left-block {
  margin-bottom: calc(15 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .lp-container .left-block {
    width: 42%;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
}
@media screen and (min-width: 769px) {
  .lp-container .right-block {
    width: 58%;
  }
}

/* ==================================================
  Main Visual
================================================== */
.mv {
  position: relative;
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .mv {
    margin-bottom: 0;
  }
}
.mv__video {
  position: relative;
}
@media screen and (min-width: 769px) {
  .mv__video {
    margin-bottom: 0;
  }
}
.mv__logo {
  width: 43%;
  position: absolute;
  top: calc(12 / 16 * 1rem);
  left: 0;
  right: 0;
  margin: auto;
}

/* ==================================================
  Content
================================================== */
.content {
  position: relative;
}

.content-logo {
  width: 62.3%;
  margin: 0 auto calc(100 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-logo {
    padding-top: calc(50 / 16 * 1rem);
    width: 30%;
  }
}

.content-lead {
  font-family: "Noto Serif JP", serif;
  font-size: calc(10 / 16 * 1rem);
  text-align: center;
  line-height: 1.8;
  margin-bottom: calc(230 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-lead {
    font-size: calc(11 / 16 * 1rem);
    margin-bottom: calc(300 / 16 * 1rem);
  }
}
.content-lead p:first-child {
  margin-bottom: calc(12 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-lead p:first-child {
    margin-bottom: calc(15 / 16 * 1rem);
  }
}

.bg-navy {
  background-color: #15162c;
}

.bg-gray {
  background-color: #939390;
}

.content-block {
  position: relative;
}
.content-block.block1, .content-block.block2, .content-block.block3 {
  padding-bottom: calc(120 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block.block1, .content-block.block2, .content-block.block3 {
    padding-bottom: calc(360 / 16 * 1rem);
  }
}
.content-block.block1::before, .content-block.block2::before, .content-block.block3::before {
  content: "";
  width: 100%;
  background-color: #FFF;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.content-block.block1::before {
  height: calc(396 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block.block1::before {
    height: calc(1000 / 16 * 1rem);
  }
}
.content-block.block2::before {
  height: calc(176 / 16 * 1rem);
  background-color: #939390;
  z-index: 0;
}
@media screen and (min-width: 769px) {
  .content-block.block2::before {
    height: calc(550 / 16 * 1rem);
  }
}
.content-block.block3 {
  padding-bottom: calc(80 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block.block3 {
    padding-bottom: calc(160 / 16 * 1rem);
  }
}
.content-block.block3::before {
  height: calc(346 / 16 * 1rem);
  z-index: 0;
}
@media screen and (min-width: 769px) {
  .content-block.block3::before {
    height: calc(696 / 16 * 1rem);
  }
}
.content-block__mv {
  position: relative;
  padding: calc(240 / 16 * 1rem) 0;
  color: #FFF;
}
@media screen and (min-width: 769px) {
  .content-block__mv {
    padding: calc(340 / 16 * 1rem) 0;
  }
}
.content-block__mv.is-bg1 {
  background-color: #442125;
}
.content-block__mv.is-bg2 {
  padding: calc(180 / 16 * 1rem) 0 0;
}
.content-block__mv .icon__e {
  width: 44%;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(-78 / 16 * 1rem);
  margin: auto;
}
@media screen and (min-width: 769px) {
  .content-block__mv .icon__e {
    width: calc(200 / 16 * 1rem);
    top: calc(-90 / 16 * 1rem);
  }
}
.content-block__mv .icon__s {
  width: 35.7%;
  position: absolute;
  right: 5%;
  top: calc(-156 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block__mv .icon__s {
    width: 120px;
  }
}
.content-block__mv-title {
  text-align: center;
  font-size: calc(29 / 16 * 1rem);
  font-family: "athelas", serif;
  margin-bottom: calc(20 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block__mv-title {
    font-size: calc(46 / 16 * 1rem);
    margin-bottom: calc(28 / 16 * 1rem);
  }
}
.content-block__mv-text {
  text-align: center;
}
.content-block__mv-text p {
  margin-bottom: calc(10 / 16 * 1rem);
  font-size: calc(10 / 16 * 1rem);
}
.content-block__mv-text p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .content-block__mv-text p {
    font-size: calc(14 / 16 * 1rem);
  }
}
.content-block__credit {
  margin-top: calc(10 / 16 * 1rem);
}
.content-block__credit.pr {
  padding-right: 10px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .content-block__credit {
    margin-top: calc(20 / 16 * 1rem);
  }
}
.content-block .credits .item-d-none {
  display: none;
}
.content-block .credits__block {
  font-family: "cardo", serif;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: calc(11 / 16 * 1rem);
  margin-bottom: 0;
  text-align: right;
}
@media screen and (min-width: 769px) {
  .content-block .credits__block {
    font-size: calc(13 / 16 * 1rem);
  }
}
.content-block .credits__block p {
  line-height: 1.2;
}
.content-block .credits__block p span {
  font-size: calc(10 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block .credits__block p span {
    font-size: calc(11 / 16 * 1rem);
  }
}
.content-block .credits__buy {
  margin-left: calc(6 / 16 * 1rem);
  text-decoration: underline;
}
.content-block .credits__buy:hover {
  text-decoration: none;
}

.content-block div {
  position: relative;
}
.content-block .is-center {
  margin-inline: auto;
}
.content-block .is-right {
  margin-left: auto;
}
.content-block .mb-s {
  margin-bottom: calc(36 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block .mb-s {
    margin-bottom: calc(108 / 16 * 1rem);
  }
}
.content-block .mb-m {
  margin-bottom: calc(60 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block .mb-m {
    margin-bottom: calc(180 / 16 * 1rem);
  }
}
.content-block .mb-l {
  margin-bottom: calc(120 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block .mb-l {
    margin-bottom: calc(360 / 16 * 1rem);
  }
}
.content-block .bg-white {
  background-color: #FFF;
}
.content-block .img1, .content-block .img12, .content-block .img18 {
  width: 90%;
}
.content-block .img1 {
  margin-top: calc(-180 / 16 * 1rem);
  z-index: 5;
}
.content-block .img2 {
  width: 54%;
  margin: calc(-76 / 16 * 1rem) 0 0 7.7%;
  z-index: 5;
}
.content-block .img3 {
  margin-top: calc(-110 / 16 * 1rem);
}
.content-block .img5, .content-block .img7 {
  width: 85%;
}
.content-block .img8 {
  width: 91%;
}
.content-block .img9 {
  width: 66%;
}
.content-block .img10 {
  width: 59%;
  margin-top: calc(100 / 16 * 1rem);
}
.content-block .img13 {
  width: 79%;
  padding-top: calc(36 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block .img13 {
    padding-top: calc(108 / 16 * 1rem);
  }
}
.content-block .img14, .content-block .mov2 {
  width: 82%;
}
.content-block .img16 {
  width: 72%;
}

/* ==================================================
  Footer
================================================== */
.footer {
  position: relative;
  padding-bottom: calc(80 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .footer {
    padding-bottom: calc(120 / 16 * 1rem);
  }
}
.footer__inner {
  position: relative;
  margin-bottom: calc(50 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .footer__inner {
    margin-bottom: calc(100 / 16 * 1rem);
  }
}
.footer__staff {
  font-family: "cardo", serif;
  position: absolute;
  right: calc(24 / 16 * 1rem);
  top: calc(20 / 16 * 1rem);
  line-height: 1.75;
}
@media screen and (min-width: 769px) {
  .footer__staff {
    right: calc(40 / 16 * 1rem);
    top: calc(32 / 16 * 1rem);
    font-size: calc(14 / 16 * 1rem);
  }
}
.footer__logo {
  width: 32%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
}
.footer__link {
  text-align: center;
  margin-bottom: calc(40 / 16 * 1rem);
}
.footer__link a {
  text-decoration: underline;
}
.footer__link a:hover {
  text-decoration: none;
}
.footer__copyright {
  font-size: calc(10 / 16 * 1rem);
  text-align: center;
}/*# sourceMappingURL=style.css.map */