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

body {
  font-family: "LFC Sans", sans-serif;
  font-weight: 400;
  font-size: calc(12 / 16 * 1rem);
  line-height: 1.8;
  letter-spacing: 0.02em;
  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.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%;
  overflow: hidden;
  /*opacity: 0; animation: fadeIn 1.5s ease 0.15s forwards;*/
}
/* ==================================================
  Main Visual
================================================== */
.mv {
  width: 100%;
  position: relative;
  margin-bottom: calc(60 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .mv {
    margin-bottom: calc(240 / 16 * 1rem);
    display: flex;
    align-items: center;
  }
}
.mv__image {
  margin-bottom: calc(50 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .mv__image {
    width: 55%;
    order: 2;
    margin-bottom: 0;
  }
}
.mv__title {
  width: calc(338 / 390 * 100vw);
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 5;
  bottom: calc(14 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .mv__title {
    position: relative;
    width: calc(64 / 390 * 100vw);
    bottom: auto;
  }
}
.mv {
  /*
  &__text{
    width: 45%;
    text-align: center; 
  }
  &__text1{
    width: 100%;
    margin: 0 auto rem(2);
    font-size: rem(80);
    text-align: center;
    @include font-en(300);
    line-height: 0.9;
  }
  &__text2{
    @include font-en(400);
    font-size: rem(50);
    line-height: 1;
  }
  &__title{
    width: 50%;
    margin: 0 auto rem(10);
  }
  &__logo{
    width: 50%;
    margin: 0 auto rem(20); 
  }
  */
}

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

.main-content {
  width: calc(100% - 30px);
  margin-inline: auto;
}

.content-block {
  position: relative;
  margin-bottom: calc(80 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block {
    max-width: 1280px;
    margin: 0 auto calc(200 / 16 * 1rem);
  }
}
.content-block div {
  position: relative;
  overflow: hidden;
}
.content-block .img-l {
  width: 90%;
  margin: 0 auto var(--space-m);
}
@media screen and (min-width: 769px) {
  .content-block .img-l {
    width: 740px;
  }
}
.content-block .img-m {
  width: 84%;
  margin: 0 auto var(--space-m);
}
@media screen and (min-width: 769px) {
  .content-block .img-m {
    width: 680px;
  }
}
.content-block .img-half {
  width: 77%;
}
@media screen and (min-width: 769px) {
  .content-block .img-half {
    width: 48%;
  }
}
.content-block .img-half:last-child {
  margin: calc(20 / 16 * 1rem) 0 0 auto;
}
@media screen and (min-width: 769px) {
  .content-block .img-half:last-child {
    margin: 0;
  }
}
.content-block .flex {
  margin-bottom: var(--space-m);
}
@media screen and (min-width: 769px) {
  .content-block .flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}
@media screen and (min-width: 769px) {
  .content-block .flex .img {
    width: 55%;
  }
}
@media screen and (min-width: 769px) {
  .content-block .flex .credits {
    width: 43%;
  }
}
@media screen and (min-width: 769px) {
  .content-block .flex.center {
    align-items: center;
    gap: 40px;
    justify-content: flex-start;
  }
}
.content-block .is-right {
  margin: 0 0 var(--space-m) auto;
}
.content-block .is-left {
  margin: 0 0 var(--space-m) 0;
}
.content-block .is-order1 {
  order: 1;
}
.content-block .is-order2 {
  order: 2;
}
.content-block__credit {
  margin-top: calc(12 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block__credit {
    margin-top: calc(20 / 16 * 1rem);
  }
}
.content-block .is-mb {
  margin-bottom: calc(60 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block .is-mb {
    margin-bottom: calc(120 / 16 * 1rem);
  }
}
.content-block .is-mb2 {
  margin-bottom: calc(24 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block .is-mb2 {
    margin-bottom: calc(120 / 16 * 1rem);
  }
}
.content-block .is-mb0 {
  margin-bottom: 0;
}
.content-block .credits {
  box-sizing: border-box;
}
.content-block .credits.is-pl {
  padding-left: 0;
}
@media screen and (min-width: 769px) {
  .content-block .credits.is-pl {
    padding-left: 0;
  }
}
.content-block .credits .item-d-none {
  display: none;
}
.content-block .credits__block {
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: calc(11 / 16 * 1rem);
  margin-bottom: 5px;
  letter-spacing: 0.02em;
  word-break: break-word;
}
@media screen and (min-width: 769px) {
  .content-block .credits__block {
    font-size: calc(14 / 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(13 / 16 * 1rem);
  }
}
.content-block .credits__buy {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  border: 1px solid #000;
  box-sizing: border-box;
  color: #FFF;
  font-size: 10px;
  line-height: 1;
  /*padding: 1px 1px 0px 3px;*/
  width: 30px;
  height: 16px;
  text-decoration: none;
  text-align: center;
}
.content-block .credits__buy span {
  transform: translateY(1px);
}
.content-block .credits__buy:hover {
  text-decoration: none;
  background-color: #FFF;
  color: #000;
}

.footer {
  position: relative;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  .footer {
    font-size: calc(15 / 16 * 1rem);
  }
}
.footer__staff {
  text-align: center;
  margin-bottom: calc(60 / 16 * 1rem) !important;
}
@media screen and (min-width: 769px) {
  .footer__staff {
    margin-bottom: calc(100 / 16 * 1rem) !important;
  }
}
.footer__logo {
  width: calc(110 / 16 * 1rem);
  margin: 0 auto calc(50 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .footer__logo {
    width: calc(180 / 16 * 1rem);
    margin-bottom: calc(80 / 16 * 1rem);
  }
}
.footer__link {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media screen and (min-width: 769px) {
  .footer__link {
    width: 480px;
    font-size: calc(15 / 16 * 1rem);
  }
}
.footer__link li {
  text-align: center;
}
.footer__link li a {
  text-decoration: underline;
}
.footer__link li a:hover {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */