@charset "UTF-8";
/* ==================================================
  import
================================================== */
@import url("https://use.typekit.net/ktw2igz.css"); /*Aktiv Grotesk Condensed*/
/* ==================================================
  Mixins / Functions
================================================== */
/* ---- Media Query ---- */
/* ---- VW (SP基準) ---- */
/* ==================================================
  Variables
================================================== */
/* ---- color ---- */
/* ---- font ---- */
/* ---- layout ---- */
/* ---- font-size ---- */
/* ==================================================
  Base
================================================== */
html {
  font-size: 100%;
}

body {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(18 / 16 * 1rem);
  line-height: 2.2;
  color: #000;
  background-color: #FFF;
  opacity: 0;
  animation: fadeIn 1.5s ease 0.15s forwards;
}
@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;
  }
}
/* ---- CMS:header ---- */
.ftool-wrapper p {
  margin-bottom: 0;
}

/* ==================================================
  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: scale(1.06);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s, transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}

.fadein2.is-visible {
  opacity: 1;
  transform: scale(1);
}

.fadein {
  opacity: 0;
  transition: all 1s ease;
}

.fadein.scrollin {
  opacity: 1;
}

.fadeinL {
  opacity: 0;
  transform: translate(-40px, 0);
  transition: all 1s ease;
}

.fadeinL.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.fadeinR {
  opacity: 0;
  transform: translate(40px, 0);
  transition: all 1s ease;
}

.fadeinR.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ==================================================
  Layout
================================================== */
.lp-container {
  width: 100%;
  overflow: hidden;
  /*opacity: 0; animation: fadeIn 1.5s ease 0.15s forwards;*/
}
/* ==================================================
  Main Visual
================================================== */
.mv {
  position: relative;
  margin-bottom: calc(40 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .mv {
    margin-bottom: calc(120 / 1920 * 100vw);
  }
}
.mv__image {
  position: relative;
  width: calc(260 / 390 * 100vw);
  margin-left: auto;
  padding-right: calc(10 / 390 * 100vw);
  box-sizing: border-box;
  opacity: 0;
  animation: fadeIn 1.5s ease 0.15s forwards;
}
@media screen and (min-width: 769px) {
  .mv__image {
    width: 100%;
    padding-right: 0;
  }
}
.mv__title, .mv__logo, .mv__lead {
  position: absolute;
  z-index: 10;
}
.mv__title {
  width: calc(48 / 390 * 100vw);
  top: calc(12 / 390 * 100vw);
  left: calc(12 / 390 * 100vw);
  opacity: 0;
  animation: fadeIn 1.5s ease 1s forwards;
}
@media screen and (min-width: 769px) {
  .mv__title {
    width: calc(330 / 1920 * 100vw);
    top: calc(48 / 1920 * 100vw);
    left: calc(48 / 1920 * 100vw);
  }
}
.mv__logo {
  width: calc(40 / 390 * 100vw);
  bottom: calc(26 / 390 * 100vw);
  left: calc(44 / 390 * 100vw);
  opacity: 0;
  animation: fadeIn 1.5s ease 1s forwards;
}
@media screen and (min-width: 769px) {
  .mv__logo {
    width: calc(105 / 1920 * 100vw);
    bottom: calc(48 / 1920 * 100vw);
    left: auto;
    right: calc(48 / 1920 * 100vw);
  }
}

/* ==================================================
  Content
================================================== */
:root {
  --space-m: 120px;
}
@media screen and (min-width: 769px) {
  :root {
    --space-m: 200px;
  }
}

.content {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: calc(100 / 390 * 100vw);
  margin-bottom: calc(100 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .content {
    gap: 160px;
    margin-bottom: 160px;
  }
}
.content div {
  position: relative;
}
.content .lead {
  color: #808080;
  margin-inline: auto;
  width: calc(338 / 390 * 100vw);
  font-size: calc(10 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content .lead {
    width: calc(1530 / 1920 * 100vw);
    max-width: 1280px;
    font-size: calc(16 / 16 * 1rem);
  }
}
.content .img-l {
  width: calc(365 / 390 * 100vw);
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  .content .img-l {
    width: calc(1530 / 1920 * 100vw);
  }
}
.content .img-m {
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  .content .img-m {
    width: calc(760 / 1920 * 100vw);
  }
}
.content .img10 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 769px) {
  .content .img10 {
    gap: 50px;
  }
}
.content .img10 div {
  width: calc(310 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .content .img10 div {
    width: calc(1530 / 1920 * 100vw);
  }
}
.content .img10 div:nth-child(1) {
  margin-left: auto;
}
.content .mb {
  margin-bottom: var(--space-m);
}
.content .mb2 {
  margin-bottom: 200px;
}
.content .flex {
  display: flex;
  gap: calc(120 / 390 * 100vw);
  flex-direction: column;
  margin-inline: auto;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .content .flex {
    width: calc(1400 / 1920 * 100vw);
    flex-direction: row;
    align-items: flex-start;
    gap: calc(50 / 1920 * 100vw);
    justify-content: space-between;
  }
}
.content .flex .large {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .content .flex .large {
    width: calc(740 / 1920 * 100vw);
  }
}
.content .flex .small {
  width: calc(365 / 390 * 100vw);
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  .content .flex .small {
    width: calc(610 / 1920 * 100vw);
  }
}
@media screen and (min-width: 769px) {
  .content .flex.center {
    align-items: center;
    gap: 40px;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 769px) {
  .content .flex.top {
    align-items: flex-start;
    align-items: stretch;
  }
}
@media screen and (min-width: 769px) {
  .content .is-order1 {
    order: 1;
  }
}
@media screen and (min-width: 769px) {
  .content .is-order2 {
    order: 2;
  }
}
.content__credit {
  width: 100%;
  margin: calc(10 / 16 * 1rem) auto 0;
}
@media screen and (min-width: 769px) {
  .content__credit {
    width: 400px;
    margin: calc(20 / 16 * 1rem) 0 0 0;
  }
  .content__credit.is-right {
    margin-left: auto;
  }
  .content__credit.is-center {
    margin: calc(20 / 16 * 1rem) auto 0;
  }
}
.content .is-mb {
  margin-bottom: calc(60 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content .is-mb {
    margin-bottom: calc(120 / 16 * 1rem);
  }
}
.content .is-mb2 {
  margin-bottom: calc(24 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content .is-mb2 {
    margin-bottom: calc(120 / 16 * 1rem);
  }
}
.content .is-mb0 {
  margin-bottom: 0;
}
.content .credits {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content .credits.is-pl {
  padding-left: 0;
}
@media screen and (min-width: 769px) {
  .content .credits.is-pl {
    padding-left: 0;
  }
}
.content .credits .item-d-none {
  display: none;
}
.content .credits__block {
  font-family: "aktiv-grotesk-condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: calc(13 / 16 * 1rem);
  letter-spacing: 0.02em;
  word-break: break-word;
}
@media screen and (min-width: 769px) {
  .content .credits__block {
    font-size: calc(14 / 16 * 1rem);
  }
}
.content .credits__block p {
  line-height: 1.2;
}
.content .credits__block p span {
  font-size: calc(12 / 16 * 1rem);
  margin-left: 4px;
}
@media screen and (min-width: 769px) {
  .content .credits__block p span {
    font-size: calc(13 / 16 * 1rem);
  }
}
.content .credits__buy {
  position: relative;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  color: #000;
  box-sizing: border-box;
  padding: 4px 0 3px;
  width: 50px;
  line-height: 1;
  font-size: calc(11 / 16 * 1rem);
  border-radius: 99rem;
  transition: background 0.2s ease-out 0s, color 0.2s ease-out 0s;
}
.content .credits__buy span {
  transform: translateY(0);
}
.content .credits__buy:hover {
  text-decoration: none;
  background-color: #000;
  color: #FFF;
}

.footer {
  position: relative;
  color: #FFF;
}
.footer__text, .footer__logo, .footer__link, .footer__copyright {
  z-index: 10;
}
.footer__text {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  width: calc(182 / 390 * 100vw);
  top: calc(18 / 390 * 100vw);
  left: calc(18 / 390 * 100vw);
  gap: calc(48 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .footer__text {
    gap: calc(100 / 1920 * 100vw);
    top: calc(40 / 1920 * 100vw);
    left: calc(40 / 1920 * 100vw);
    width: calc(400 / 1920 * 100vw);
  }
}
.footer__text div {
  width: 100%;
}
.footer__logo {
  width: calc(38 / 390 * 100vw);
  position: absolute;
  top: calc(18 / 390 * 100vw);
  right: calc(18 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .footer__logo {
    width: calc(105 / 1920 * 100vw);
    top: calc(40 / 1920 * 100vw);
    right: calc(40 / 1920 * 100vw);
  }
}
.footer__link {
  font-size: calc(12 / 16 * 1rem);
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: calc(36 / 390 * 100vw);
  left: calc(18 / 390 * 100vw);
  bottom: calc(40 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .footer__link {
    flex-direction: row;
    align-items: flex-end;
    font-size: calc(13 / 16 * 1rem);
    left: calc(40 / 1920 * 100vw);
    bottom: calc(40 / 1920 * 100vw);
    gap: calc(50 / 1920 * 100vw);
  }
}
.footer__link div {
  width: calc(70 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .footer__link div {
    width: calc(100 / 1920 * 100vw);
  }
}
.footer__link ul {
  display: flex;
  flex-direction: column;
  gap: calc(28 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .footer__link ul {
    flex-direction: row;
  }
}
.footer__link ul li {
  font-family: "aktiv-grotesk-condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #FFF;
  line-height: 1;
}
.footer__link ul li a {
  transition: all 0.3s ease;
}
.footer__link ul li a:hover {
  opacity: 0.5;
}
.footer__img {
  position: relative;
}
.footer__copyright {
  font-family: "aktiv-grotesk-condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: calc(10 / 16 * 1rem);
  position: relative;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .footer__copyright {
    position: absolute;
    font-size: calc(11 / 16 * 1rem);
    bottom: calc(38 / 1920 * 100vw);
    right: calc(40 / 1920 * 100vw);
  }
}/*# sourceMappingURL=style.css.map */