@charset "UTF-8";
/*---------------------------------------------
メディアクエリー
---------------------------------------------*/
/*---------------------------------------------
共通
---------------------------------------------*/
html {
  color: #000;
}

/*リセット
--------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  width: 100%;
  display: block;
}

@media screen and (min-width: 769px) {
  .sp_none {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc_none {
    display: block;
  }
}

.jp {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.eg {
  font-family: "superclarendon", serif;
  font-weight: 300;
  font-style: normal;
}

body.modal-open {
  overflow: hidden;
}

/*---------------------------------------------
FV
---------------------------------------------*/
.fv {
  position: relative;
}
@media screen and (min-width: 769px) {
  .fv .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1200px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.fv .inner .left {
  width: 40%;
  margin-left: 100px;
}
.fv .main_img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 769px) {
  .fv .main_img {
    width: auto;
    height: 700px;
  }
}
.fv .season {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  z-index: 10;
  width: 4%;
  left: 5px;
}
@media screen and (min-width: 769px) {
  .fv .season {
    width: 14px;
    position: fixed;
    left: 14px;
  }
}
.fv .logo {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 56%;
}
@media screen and (min-width: 769px) {
  .fv .logo {
    position: static;
  }
}

.lead {
  font-size: 14px;
  line-height: 2;
  width: 85%;
  margin: 40px auto 70px;
}
@media screen and (min-width: 769px) {
  .lead {
    margin: 50px 0;
  }
}

.img_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.8vw;
}
@media screen and (min-width: 769px) {
  .img_wrap {
    max-width: 1000px;
    margin: 200px auto 0;
    gap: 7px;
  }
}
.img_wrap .each {
  position: relative;
  width: 49%;
}
@media screen and (min-width: 769px) {
  .img_wrap .each {
    width: 24%;
  }
}
.img_wrap .each img {
  width: 100%;
  height: auto;
}
.img_wrap .each .cross_bk, .img_wrap .each .cross_wh {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background-image: url("../images/front/cross_bk.svg");
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  z-index: 5;
}
.img_wrap .each .cross_wh {
  background-image: url("../images/front/cross_wh.svg");
}

/*---------------------------------------------
Modal
---------------------------------------------*/
.modal_overlay {
  display: none; /* 初期状態は非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 100;
  overflow-y: auto; /* 縦方向にスクロールを許可 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.modal_overlay.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* is-openクラスが付いたら表示 */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* 上寄せで配置 */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 水平中央に配置 */
}

.modal_window {
  position: relative;
  width: 100%;
  max-width: 800px;
  background-color: #E4E8DE;
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .modal_window {
    max-width: none;
  }
}
.modal_window .modal_season {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  z-index: 10;
  width: 12px;
  left: 14px;
}
@media screen and (min-width: 769px) {
  .modal_window .modal_season {
    width: 14px;
  }
}

.modal_close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-image: url("../images/modal/close_btn.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 101;
}
@media screen and (min-width: 769px) {
  .modal_close {
    width: 72px;
    top: 30px;
    right: 40px;
  }
}

.credit {
  width: 100%;
  margin: 50px auto 0;
  position: relative;
  font-size: 14px;
}
.credit li {
  margin-bottom: 20px;
}
.credit li .buy {
  font-weight: bold;
  font-size: 12px;
}
.credit li a {
  color: #000;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.5;
}
.credit li a span {
  display: block;
}
.credit li a .price {
  text-decoration: underline;
  text-indent: 0.5em;
}
.credit li .strong {
  font-weight: bold;
  display: contents;
}

.modal_sections {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .modal_sections {
    max-width: 1000px;
    margin: auto;
  }
}

.modal_section {
  padding: 40px 0;
  border-top: 1px solid #e0e0e0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 769px) {
  .modal_section {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 60px;
    padding: 100px 0;
  }
}
.modal_section:first-child {
  border-top: none;
  padding-top: 20px;
}

.modal_info {
  display: contents;
}
@media screen and (min-width: 769px) {
  .modal_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 30%;
  }
}

.modal_section_num {
  width: 40%;
  margin-bottom: 18px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (min-width: 769px) {
  .modal_section_num {
    width: 200px;
    margin-bottom: 20px;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.modal_slider {
  margin-bottom: 20px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (min-width: 769px) {
  .modal_slider {
    width: 465px;
    -ms-flex-negative: 0;
        flex-shrink: 0; /* 幅が縮まないようにする */
    margin-bottom: 0;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.modal_credits {
  margin-top: 20px;
  padding-bottom: 0;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (min-width: 769px) {
  .modal_credits {
    margin-top: 0; /* autoを解除して、上の要素との間隔を詰める */
    font-size: 16px;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

/*---------------------------------------------
gif_wrap
---------------------------------------------*/
@media screen and (min-width: 769px) {
  .gif_wrap {
    max-width: 840px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 150px auto;
  }
}
.gif_wrap .gif_img {
  width: 100%;
}
.gif_wrap .gif_img img {
  width: 67%;
  height: auto;
  display: block;
  margin: 110px auto 50px;
}
@media screen and (min-width: 769px) {
  .gif_wrap .gif_img img {
    width: 432px;
    margin: 0 auto 50px;
  }
}
.gif_wrap .scene {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gif_wrap .scene img {
  width: 22%;
  height: auto;
  display: block;
  margin: 5px;
}
@media screen and (min-width: 769px) {
  .gif_wrap .scene img {
    width: 30%;
    margin: 10px;
  }
}
.gif_wrap .scene2 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gif_wrap2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.all_btn {
  font-size: 14px;
  color: #fff;
  background-color: #697064;
  text-align: center;
  padding: 14px;
  width: 60%;
  display: block;
  margin: 80px auto;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  .all_btn {
    width: 25%;
    padding: 20px;
    margin-top: -100px;
    margin-bottom: 100px;
  }
}

.all_btn2 {
  margin-top: 0;
}

.footer {
  padding-top: 40px;
  padding-bottom: 40px;
  background-image: url(../images/front/sp_footer_img.webp);
  background-size: cover;
}
@media screen and (min-width: 769px) {
  .footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 150px 120px 40px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background-image: url(../images/front/pc_footer_img.webp);
  }
}
.footer .sns {
  padding-bottom: 10px;
}
@media screen and (min-width: 769px) {
  .footer .sns {
    padding-bottom: 0;
  }
}
.footer .sns a img {
  display: block;
  height: 14px;
  width: auto;
  margin: 30px auto;
}
@media screen and (min-width: 769px) {
  .footer .sns a img {
    display: inline-block;
    height: 18px;
    margin: 0;
  }
}
@media screen and (min-width: 769px) {
  .footer .sns a .youtube {
    margin-left: 50px;
  }
}
.footer .typy_logo {
  display: block;
  width: 32%;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .footer .typy_logo {
    width: 180px;
    height: auto;
    margin: 0;
  }
}

[data-aos=fade-up] {
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
}

[data-aos=fade-right] {
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
}

[data-aos=fade-left] {
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
}

.flexslider {
  border: none;
  margin: 0;
  aspect-ratio: 287/442;
}
.flexslider:not(:last-child) {
  margin-bottom: 20px;
}

.flex-control-nav li {
  width: 12px;
}

.flex-control-paging li a {
  width: 6px;
  height: 6px;
}

.flex-control-nav {
  bottom: -34px;
}/*# sourceMappingURL=style.css.map */