@charset "UTF-8";
/* ==================================================
  import
================================================== */
@import url("https://use.typekit.net/yix8odv.css"); /*Benton Modern Display*/
@import url("https://use.typekit.net/ajl7elo.css"); /*Baskerville URW_Regular*/
/* ==================================================
  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: #F1EDED;
}
@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;
  transform: translateY(15px);
  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;
  }
}
@keyframes fadeIn2 {
  0% {
    opacity: 0;
    transform: translate(0, 20px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
/* ==================================================
  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(50 / 390 * 100vw);
  display: flex;
  flex-direction: column;
  gap: calc(50 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .mv {
    gap: calc(100 / 16 * 1rem);
    margin-bottom: calc(100 / 16 * 1rem);
  }
}
.mv div {
  position: relative;
}
.mv__image {
  position: relative;
  width: 100%;
  opacity: 0;
  animation: fadeIn 1.5s ease 0.15s forwards;
}
.mv__title {
  font-family: benton-modern-display, serif;
  font-weight: 600;
  font-style: normal;
  position: absolute;
  z-index: 10;
  color: #FFF;
  top: 50%;
  transform: translateY(-50%);
  left: calc(12 / 390 * 100vw);
  text-align: right;
  opacity: 0;
  animation: fadeIn2 1.5s ease 1s forwards;
  line-height: 1;
  font-size: calc(21 / 390 * 100vw);
}
.mv__title span {
  display: block;
  font-size: calc(13 / 390 * 100vw);
  margin-top: calc(6 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .mv__title {
    font-size: calc(52 / 1200 * 100vw);
    left: calc(146 / 1200 * 100vw);
  }
  .mv__title span {
    font-size: calc(32 / 1200 * 100vw);
    margin-top: calc(14 / 1200 * 100vw);
  }
}
.mv__lead {
  text-align: center;
  font-size: calc(11 / 16 * 1rem);
  font-family: source-han-serif-japanese, serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  .mv__lead {
    width: 100%;
    font-size: calc(16 / 16 * 1rem);
  }
}

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

.content {
  width: calc(100% - 20px);
  margin-inline: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: calc(120 / 390 * 100vw);
  margin-bottom: calc(80 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .content {
    width: 1080px;
    margin-inline: auto;
    gap: 160px;
    margin-bottom: 100px;
  }
}
.content .content-block {
  display: flex;
  flex-direction: column;
  gap: calc(30 / 390 * 100vw);
}
.content div {
  position: relative;
}
.content .w280 {
  width: calc(280 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .content .w280 {
    width: 620px;
  }
}
.content .w250 {
  width: calc(250 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .content .w250 {
    width: 554px;
  }
}
.content .w240 {
  width: calc(240 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .content .w240 {
    width: 532px;
  }
}
.content .w210 {
  width: calc(210 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .content .w210 {
    width: 460px;
  }
}
.content .w200 {
  width: calc(200 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .content .w200 {
    width: 460px;
  }
}
.content .w180 {
  width: calc(180 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .content .w180 {
    width: 460px;
  }
}
.content .img-l {
  width: 100%;
  margin-inline: auto;
}
.content .img-l.is-padding {
  padding: calc(30 / 390 * 100vw) 0;
}
@media screen and (min-width: 769px) {
  .content .img-l.is-padding {
    padding: calc(40 / 16 * 1rem) 0;
  }
}
@media screen and (min-width: 769px) {
  .content .img-l {
    width: 980px;
  }
}
.content .img8 {
  display: flex;
  flex-direction: column;
  gap: calc(10 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .content .img8 {
    flex-direction: row;
    grid-area: calc(30 / 16 * 1rem);
  }
}
.content .img8 li {
  width: calc(200 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .content .img8 li {
    width: calc(340 / 16 * 1rem);
  }
}
.content .img8 li:nth-child(2) {
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  .content .img8 li:nth-child(2) {
    margin-inline: 0;
  }
}
.content .img8 li:nth-child(3) {
  margin-left: auto;
}
@media screen and (min-width: 769px) {
  .content .img8 li:nth-child(3) {
    margin-left: 0;
  }
}
.content .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media screen and (min-width: 769px) {
  .content .grid {
    -moz-column-gap: calc(30 / 16 * 1rem);
         column-gap: calc(30 / 16 * 1rem);
  }
}
.content .flex {
  display: flex;
  gap: calc(30 / 390 * 100vw);
  flex-direction: column;
  margin-inline: auto;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .content .flex {
    flex-direction: row;
    align-items: flex-start;
    gap: calc(50 / 16 * 1rem);
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) {
  .content .flex .mt {
    margin-top: 340px;
  }
}
@media screen and (min-width: 769px) {
  .content .flex.center {
    align-items: center;
  }
}
@media screen and (min-width: 769px) {
  .content .flex.top {
    align-items: flex-start;
    align-items: stretch;
  }
}
.content .is-column {
  display: flex;
  flex-direction: column;
  gap: calc(30 / 390 * 100vw);
}
.content .is-center {
  margin-inline: auto;
}
.content .is-right {
  margin-left: auto;
}
@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: 0;
}
.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: baskerville-urw, serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: calc(11 / 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(10 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content .credits__block p span {
    font-size: calc(13 / 16 * 1rem);
  }
}
.content .credits__buy {
  position: relative;
  text-decoration: underline;
  line-height: 1;
  font-size: calc(11 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content .credits__buy {
    font-size: calc(12 / 16 * 1rem);
  }
}
.content .credits__buy:hover {
  text-decoration: none;
}

.staff {
  font-size: calc(13 / 16 * 1rem);
  text-align: center;
  font-family: baskerville-urw, serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
}
@media screen and (min-width: 769px) {
  .staff {
    font-size: calc(16 / 16 * 1rem);
  }
}

.footer {
  position: relative;
  padding-bottom: calc(50 / 16 * 1rem);
  font-family: baskerville-urw, serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .footer {
    font-size: calc(15 / 16 * 1rem);
  }
}
.footer__logo {
  width: calc(110 / 390 * 100vw);
  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: calc(100% - 20px);
  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 {
  font-size: calc(14 / 16 * 1rem);
}
.footer__link li a {
  text-decoration: underline;
}
.footer__link li a:hover {
  text-decoration: none;
}
.footer__copyright {
  font-size: calc(12 / 16 * 1rem);
  margin-top: calc(60 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .footer__copyright {
    font-size: calc(13 / 16 * 1rem);
    margin-top: calc(100 / 16 * 1rem);
  }
}/*# sourceMappingURL=style.css.map */