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

body {
  font-family: YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "ＭＳ ゴシック", sans-serif;
  font-style: normal;
  font-size: calc(12 / 16 * 1rem);
  line-height: 1.8;
  color: #222;
  background-color: #FFF;
}
@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;
  transform: translateY(10px);
  transition: all 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

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

.fadeinL {
  opacity: 0;
  transform: translate(-15px, 0);
  transition: all 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.fadeinR {
  opacity: 0;
  transform: translate(15px, 0);
  transition: all 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.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.2s ease 0.1s forwards;
}

/* ==================================================
  Main Visual
================================================== */
.mv {
  position: relative;
  margin-bottom: calc(50 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .mv {
    margin-bottom: calc(90 / 16 * 1rem);
  }
}
.mv__title {
  width: calc(208 / 390 * 100vw);
  position: absolute;
  top: calc(60 / 390 * 100vw);
  left: calc(161 / 390 * 100vw);
  z-index: 5;
  opacity: 0;
  animation: fadeIn 1.1s ease 0.9s forwards;
}
@media screen and (min-width: 769px) {
  .mv__title {
    width: 38.28vw;
    top: 46.3vw;
    left: 58.125vw;
  }
}
.mv__image {
  width: 100%;
  opacity: 0;
  animation: fadeIn 1.1s ease 0.15s forwards;
}

.lead {
  width: calc(100% - 20px);
  margin: 0 auto calc(50 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .lead {
    margin-bottom: calc(90 / 16 * 1rem);
  }
}
.lead__inner {
  font-size: calc(11 / 16 * 1rem);
  display: flex;
  flex-direction: column;
  gap: calc(10 / 16 * 1rem);
  text-align: center;
}
@media screen and (min-width: 769px) {
  .lead__inner {
    font-size: calc(12 / 16 * 1rem);
    gap: calc(10 / 16 * 1rem);
  }
}

/* ==================================================
  Content
================================================== */
.content {
  display: flex;
  flex-direction: column;
  gap: calc(100 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content {
    width: 960px;
    margin-inline: auto;
    gap: calc(240 / 16 * 1rem);
  }
}

.content-block__inner {
  display: flex;
  flex-direction: column;
  gap: calc(20 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block__inner {
    gap: calc(80 / 16 * 1rem);
  }
}
.content-block__item {
  text-align: center;
  font-size: calc(24 / 16 * 1rem);
  margin-inline: auto;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .content-block__item {
    font-size: calc(29 / 16 * 1rem);
  }
}
.content-block__image {
  margin-bottom: calc(40 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .content-block__image {
    margin-bottom: 70px;
  }
}
.content-block__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 0;
       column-gap: 0;
}
.content-block__flex {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .content-block .img1 {
    width: 800px;
    margin-inline: auto;
  }
}
.content-block .img2 {
  width: 60%;
}
.content-block .img4 {
  width: 77%;
  margin-left: auto;
}
.content-block .img5 {
  width: 70%;
  margin-left: calc(10 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block .img5 {
    width: 60%;
  }
}
.content-block .img7 {
  width: 60%;
}
.content-block .img8 {
  width: 74%;
  margin-left: auto;
}
.content-block .img10 {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .content-block .img10 {
    width: 760px;
    margin-inline: auto;
  }
}
.content-block .img12Wrap {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .content-block .img12Wrap {
    width: 840;
    margin-inline: auto;
  }
}
.content-block .img12 {
  width: 65%;
}
@media screen and (min-width: 769px) {
  .content-block .img12 {
    width: 55%;
  }
}
.content-block .img13-2 {
  margin-top: calc(130 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block .img13-2 {
    margin-top: calc(260 / 16 * 1rem);
  }
}
.content-block .img15 {
  width: 60%;
  margin-left: auto;
}
.content-block .img17-1 {
  width: 40%;
}
.content-block .img17-2 {
  width: 60%;
}
.content-block .img18 {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .content-block .img18 {
    width: 720px;
    margin-inline: auto;
  }
}
.content-block .img19 {
  margin-bottom: calc(100 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block .img19 {
    margin-bottom: calc(140 / 16 * 1rem);
  }
}
.content-block .is-center {
  margin-inline: auto;
}
.content-block .is-left {
  margin-left: calc(20 / 390 * 100vw);
}
.content-block .is-right {
  margin-left: auto;
  margin-right: calc(20 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .content-block .is-mt {
    margin-top: 270px;
  }
}
.content-block .staff {
  font-family: "elza-text", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(11 / 16 * 1rem);
  line-height: 1.7;
  text-align: center;
  margin: calc(50 / 16 * 1rem) auto;
}
@media screen and (min-width: 769px) {
  .content-block .staff {
    font-size: calc(13 / 16 * 1rem);
    margin: 100px auto;
  }
}
.content-block__btn {
  font-family: "elza-text", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 500;
  display: block;
  width: 90%;
  font-size: calc(12 / 16 * 1rem);
  text-align: center;
  border: 1px solid #000;
  background-color: #000;
  color: #FFF;
  line-height: 1;
  padding: 13px 0 14px;
  margin: 0 auto calc(30 / 16 * 1rem);
  transition: all 0.3s ease;
}
.content-block__btn:hover {
  text-decoration: none;
  background-color: #FFF;
  color: #000;
}
@media screen and (min-width: 769px) {
  .content-block__btn {
    width: 480px;
    padding: 16px 0;
  }
}
.content-block__bnr {
  display: block;
  width: 90%;
  margin: 0 auto;
  margin: 0 auto calc(50 / 16 * 1rem);
  transition: all 0.3s ease;
}
.content-block__bnr:hover {
  opacity: 0.5;
}
@media screen and (min-width: 769px) {
  .content-block__bnr {
    width: 480px;
    margin: 0 auto calc(100 / 16 * 1rem);
  }
}

.content-block__creditList {
  width: calc(100% - 20px);
  margin-inline: auto;
  margin-top: calc(12 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block__creditList {
    width: 100%;
  }
}
.content-block__credit {
  font-family: "elza-text", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(11 / 16 * 1rem);
  display: flex;
  align-content: center;
  margin-bottom: 1px;
  gap: 6px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (min-width: 769px) {
  .content-block__credit {
    font-size: calc(12 / 16 * 1rem);
    margin-bottom: 3px;
  }
}
.content-block__credit .yen {
  font-size: calc(10 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block__credit .yen {
    font-size: calc(11 / 16 * 1rem);
  }
}
.content-block__credit .item-d-none {
  display: none;
}
.content-block__buy {
  text-decoration: underline;
}
.content-block__buy:hover {
  text-decoration: none;
}

/* ==================================================
  Footer
================================================== */
.footer {
  font-family: "elza-text", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: calc(24 / 16 * 1rem);
  padding: calc(40 / 16 * 1rem) 0;
  border-top: 1px solid #000;
}
@media screen and (min-width: 769px) {
  .footer {
    padding: calc(80 / 16 * 1rem) 0 calc(40 / 16 * 1rem);
  }
}
.footer__logo {
  width: 120px;
  margin-inline: auto;
}
.footer__itemList {
  text-align: center;
}
.footer__item a {
  transition: all 0.2s ease-in;
  text-decoration: underline;
}
.footer__item a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.footer__copyright {
  font-size: calc(10 / 16 * 1rem);
  text-align: center;
}/*# sourceMappingURL=style.css.map */