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

body {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(12 / 16 * 1rem);
  line-height: 2;
  color: #111;
  background-color: #FFF;
}
@media screen and (min-width: 769px) {
  body {
    font-size: calc(14 / 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 1.2s 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 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

.fadein.scrollin {
  opacity: 1;
}

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

.fadeinL.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

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

.fadeinR.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ==================================================
  Layout
================================================== */
.lp-container {
  width: 100%;
}
/* ==================================================
  Main Visual
================================================== */
.mv {
  position: relative;
  margin-bottom: calc(120 / 16 * 1rem);
  /*opacity: 0; animation: fadeIn 1.3s ease 0.15s forwards;*/
}
@media screen and (min-width: 769px) {
  .mv {
    margin-bottom: calc(240 / 16 * 1rem);
  }
}
.mv__bg {
  position: sticky;
  top: 0;
  opacity: 0;
  animation: fadeIn 1s ease 0.15s forwards;
}
.mv__inner {
  position: relative;
  padding: calc(40 / 16 * 1rem) calc(30 / 390 * 100vw) 0;
  background-color: #FFF;
  z-index: 10;
  opacity: 0;
  animation: fadeIn 1s ease 0.15s forwards;
}
@media screen and (min-width: 769px) {
  .mv__inner {
    width: calc(1313 / 1728 * 100vw);
    padding: calc(60 / 16 * 1rem) calc(35 / 16 * 1rem) 0;
    margin: calc(-839 / 1728 * 100vw) auto 0;
  }
}
.mv__title {
  font-size: calc(22 / 16 * 1rem);
  font-weight: 500;
  line-height: 1;
  margin-bottom: calc(15 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .mv__title {
    font-size: calc(64 / 1728 * 100vw);
    margin-bottom: calc(20 / 16 * 1rem);
  }
}
.mv__title .char {
  display: inline-block;
  opacity: 0;
  transform: translateX(5px);
}
.mv__title.is-visible .char {
  animation: mvTitleTyping 0.4s ease forwards;
  animation-delay: var(--delay);
}
@keyframes mvTitleTyping {
  from {
    opacity: 0;
    transform: translateX(1px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.mv__image {
  width: 100%;
}
/* ==================================================
  Content
================================================== */
:root {
  --space-m: 50px;
}
@media screen and (min-width: 769px) {
  :root {
    --space-m: 160px;
  }
}

.lead {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  letter-spacing: 0.72px;
  margin-bottom: calc(150 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .lead {
    margin-bottom: calc(280 / 16 * 1rem);
  }
}

@media screen and (min-width: 769px) {
  .main-content {
    width: 982px;
    margin-inline: auto;
  }
}

.content {
  display: flex;
  flex-direction: column;
  gap: calc(200 / 16 * 1rem);
  margin-bottom: calc(250 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content {
    gap: calc(240 / 16 * 1rem);
    margin-bottom: calc(200 / 16 * 1rem);
  }
}
.content div {
  position: relative;
}
.content__block {
  position: relative;
}
.content__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 0;
       column-gap: 0;
}
.content__heading {
  width: calc(360 / 390 * 100vw);
  margin: 0 auto calc(15 / 16 * 1rem);
}
.content__heading .char {
  opacity: 0;
  display: inline-block;
}
.content__heading.is-visible .char {
  animation: typing 0.4s ease forwards;
  animation-delay: var(--delay);
}
@media screen and (min-width: 769px) {
  .content__heading {
    width: 100%;
  }
}
.content__heading .ex {
  font-size: calc(20 / 16 * 1rem);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (min-width: 769px) {
  .content__heading .ex {
    font-size: calc(27 / 16 * 1rem);
  }
}
.content__heading .itemWrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.content__heading .item {
  display: flex;
  gap: 12px;
  line-height: 1.2;
  font-size: calc(15 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content__heading .item {
    font-size: calc(20 / 16 * 1rem);
  }
}
.content__heading .item .num {
  font-weight: 500;
  font-style: italic;
}
@keyframes typing {
  from {
    opacity: 0;
    transform: translateX(1px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.content__inner {
  display: flex;
  flex-direction: column;
  gap: calc(80 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content__inner {
    gap: calc(180 / 16 * 1rem);
  }
}
.content .sticky {
  position: sticky;
  top: 0;
}
.content .img7 {
  width: calc(290 / 390 * 100vw);
  margin: calc(-93 / 16 * 1rem) 0 0 auto;
}
@media screen and (min-width: 769px) {
  .content .img7 {
    width: 68%;
  }
}
.content .img10 {
  width: calc(350 / 390 * 100vw);
  position: sticky;
  top: 0;
}
@media screen and (min-width: 769px) {
  .content .img10 {
    width: 68%;
  }
}
.content .img11 {
  width: calc(290 / 390 * 100vw);
  margin: calc(-66 / 16 * 1rem) 0 0 auto;
  z-index: 5;
}
@media screen and (min-width: 769px) {
  .content .img11 {
    width: 68%;
  }
}
.content .img13 {
  width: calc(290 / 390 * 100vw);
  margin: calc(-164 / 16 * 1rem) auto 0;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .content .img13 {
    width: 68%;
  }
}
.content .img15 {
  width: calc(230 / 390 * 100vw);
  margin: 0 0 calc(120 / 16 * 1rem) auto;
}
@media screen and (min-width: 769px) {
  .content .img15 {
    width: 56%;
    margin-bottom: calc(200 / 16 * 1rem);
  }
}
.content .img16 {
  width: calc(230 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .content .img16 {
    width: 56%;
  }
}
.content .img19 {
  width: calc(230 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .content .img19 {
    width: 56%;
  }
}
.content .img22 {
  width: calc(230 / 390 * 100vw);
  margin-left: auto;
}
@media screen and (min-width: 769px) {
  .content .img22 {
    width: 56%;
  }
}
.content .credits {
  position: relative;
  width: calc(360 / 390 * 100vw);
  margin: calc(15 / 16 * 1rem) auto 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (min-width: 769px) {
  .content .credits {
    width: 100%;
    font-size: calc(16 / 16 * 1rem);
  }
}
.content .credits.credit11 {
  margin: calc(-42 / 16 * 1rem) auto 0;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .content .credits {
    margin-top: calc(30 / 16 * 1rem);
  }
}
.content .credits .item-d-none {
  display: none;
}
.content .credits__block {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  word-break: break-word;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.content .credits__buy {
  width: calc(40 / 16 * 1rem);
  transition: all 0.3s ease;
}
.content .credits__buy:hover {
  opacity: 0.6;
}
@media screen and (min-width: 769px) {
  .content .credits__buy {
    width: calc(55 / 16 * 1rem);
  }
}

.information {
  padding: 0 calc(15 / 390 * 100vw) 0 calc(35 / 390 * 100vw);
  box-sizing: border-box;
  margin-bottom: calc(150 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .information {
    padding: 0;
    width: 740px;
    margin: 0 auto calc(200 / 16 * 1rem);
  }
}
.information__heading {
  font-size: calc(17 / 16 * 1rem);
  font-weight: 500;
  line-height: 1;
  margin-left: calc(100 / 390 * 100vw);
  margin-bottom: calc(23 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .information__heading {
    margin-left: calc(200 / 16 * 1rem);
  }
}
.information__list {
  display: flex;
  flex-direction: column;
  gap: calc(20 / 16 * 1rem);
}
.information__list li {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding-left: calc(100 / 390 * 100vw);
  position: relative;
  line-height: 1.5;
  letter-spacing: 0.36px;
}
.information__list li::before {
  content: "";
  position: absolute;
  top: calc(10 / 16 * 1rem);
  left: 0;
  width: calc(85 / 390 * 100vw);
  height: 1px;
  background: #8F8F8F;
  background: #8F8F8F;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
}
.information__list li span {
  display: inline-block;
  opacity: 0;
}
.information__list li.is-visible::before {
  transform: translateY(-50%) scaleX(1);
  transition: transform 0.8s ease;
}
.information__list li.is-visible span {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease 0.8s, transform 0.6s ease 0.8s;
}
@media screen and (min-width: 769px) {
  .information__list li {
    padding-left: calc(200 / 16 * 1rem);
  }
  .information__list li::before {
    width: calc(180 / 16 * 1rem);
  }
}

.footer {
  position: relative;
  text-align: center;
  padding-bottom: calc(10 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .footer {
    font-size: calc(15 / 16 * 1rem);
  }
}
.footer__img {
  position: relative;
  /*margin-bottom: rem(100);*/
  position: sticky;
  top: 0;
}
@media screen and (min-width: 769px) {
  .footer__img {
    height: 100vh;
    overflow: hidden;
  }
  .footer__img img {
    display: block;
  }
}
.footer__img .text {
  width: calc(50 / 390 * 100vw);
  position: absolute;
  top: calc(11 / 390 * 100vw);
  right: calc(2 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .footer__img .text {
    width: 75px;
    top: 26px;
    right: 4px;
  }
}
.footer__inner {
  position: relative;
  z-index: 10;
  padding-top: calc(30 / 16 * 1rem);
  padding-bottom: calc(60 / 16 * 1rem);
  background-color: rgba(255, 255, 255, 0.9);
  height: 100vh;
  /*@include pc{
    height: auto;
  }*/
}
.footer__staff {
  line-height: 1.9;
  margin-bottom: calc(130 / 16 * 1rem);
}
.footer__logo {
  width: calc(80 / 16 * 1rem);
  margin: 0 auto calc(40 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .footer__logo {
    width: calc(180 / 16 * 1rem);
    margin-bottom: calc(80 / 16 * 1rem);
  }
}
.footer__link {
  font-size: calc(13 / 16 * 1rem);
  line-height: 2.1;
  margin-bottom: calc(40 / 16 * 1rem);
}
.footer__link li a {
  text-decoration: underline;
}
.footer__link li a:hover {
  text-decoration: none;
}
.footer__copy {
  font-size: calc(10 / 16 * 1rem);
}/*# sourceMappingURL=style.css.map */