@charset "UTF-8";
.m-kv img {
  width: 100%;
}

.js-tgl + * {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  body {
    margin-top: 76px;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  background-size: 100% auto;
}
@media (min-width: 768px) {
  body.is-fixed {
    margin-top: 80px;
  }
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-style: normal;
  border: none;
  appearance: none;
  line-height: 1.6;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

p {
  font-weight: 500;
  line-height: 1.9;
}

main {
  display: block;
}

img {
  max-height: 100%;
  max-width: 100%;
  vertical-align: bottom;
}

.is-disabled {
  opacity: 0.4;
}

/* 初期状態：透明にして、少し下に下げる */
.js-fade {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px); /* 30px下に配置。数値はお好みで調整してください */
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease; /* アニメーションの速度と動き方 */
}

/* 画面に入って js-active クラスが付与された時の状態 */
.js-fade.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0); /* 元の位置に戻す */
}

@media (min-width: 768px) {
  body {
    z-index: 0;
  }
  [data-device=sp] {
    display: none !important;
  }
  a, button, .js-tgl {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
  }
  a:hover, button:hover, .js-tgl:hover {
    opacity: 0.65;
  }
}
@media (min-width: 1301px) {
  [data-device=tab] {
    display: none !important;
  }
}
@media (max-width: 1300px) {
  [data-device=pc_wide] {
    display: none !important;
  }
}
@media (max-width: 767px) {
  [data-device=pc] {
    display: none !important;
  }
  body {
    padding-top: 18.2051282051vw;
  }
}
.g-header {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
  background: #fff;
  width: 100%;
  top: 0;
}
.g-header__logo {
  display: block;
}
.g-header__login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #1E1E1E;
  color: #fff;
  margin-left: auto;
}
.g-header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.g-header__btn span {
  background: #1E1E1E;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g-header__list {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: fixed;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  background: #fff;
  right: 0;
}
.g-header__items {
  border-top: 2px solid #DEDEDE;
}
.g-header__items:last-child {
  border-bottom: 2px solid #DEDEDE;
}
.g-header__link {
  font-weight: 900;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.g-header__link:before {
  content: "";
  background-image: url("../img/arw_y.png");
  background-size: cover;
  display: block;
}
.g-header__fc {
  position: fixed;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.g-header.is-open .g-header__list {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.g-header.is-open .g-header__btn span:nth-child(2) {
  opacity: 0;
}
@media (min-width: 768px) {
  .g-header {
    padding: 12px 48px;
  }
  .g-header__login {
    border-radius: 6px;
    font-size: 14px;
    height: 36px;
    padding: 0 13px;
    margin-right: 20px;
  }
  .g-header__logo {
    width: 147px;
  }
  .g-header__btn {
    width: 52px;
    height: 52px;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
  }
  .g-header__btn span {
    width: 24px;
    height: 2px;
  }
  .g-header__btn span + span {
    margin-top: 6px;
  }
  .g-header__list {
    width: 330px;
    top: 71px;
    height: calc(100% - 71px);
    padding: 65px 30px 0;
  }
  .g-header__link {
    padding: 20px 0;
  }
  .g-header__link:before {
    width: 14px;
    height: 14px;
    margin-right: 18px;
  }
  .g-header__fc {
    border: none;
    width: 172px;
    right: 24px;
    left: auto;
    bottom: 24px;
  }
  .g-header.is-open .g-header__btn span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(7px, 6px);
            transform: rotate(45deg) translate(7px, 6px);
  }
  .g-header.is-open .g-header__btn span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(5px, -5px);
            transform: rotate(-45deg) translate(5px, -5px);
  }
}
@media (max-width: 767px) {
  .g-header {
    padding: 3.8461538462vw 4.358974359vw;
  }
  .g-header__login {
    border-radius: 1.5384615385vw;
    font-size: 2.8205128205vw;
    height: 7.6923076923vw;
    padding: 0 3.3333333333vw;
    margin-right: 5.1282051282vw;
  }
  .g-header__logo {
    width: 26.4102564103vw;
  }
  .g-header__btn {
    width: 10.2564102564vw;
    height: 10.2564102564vw;
    -webkit-box-shadow: 0 0 1.5384615385vw rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 1.5384615385vw rgba(0, 0, 0, 0.2);
    border-radius: 1.5384615385vw;
  }
  .g-header__btn span {
    width: 5.8974358974vw;
    height: 0.5128205128vw;
  }
  .g-header__btn span + span {
    margin-top: 1.5384615385vw;
  }
  .g-header__list {
    width: 84.6153846154vw;
    top: 18.2051282051vw;
    height: calc(100% - 18.2051282051vw);
    padding: 16.6666666667vw 7.6923076923vw 0;
  }
  .g-header__link {
    padding: 5.1282051282vw 0;
  }
  .g-header__link:before {
    width: 3.5897435897vw;
    height: 3.5897435897vw;
    margin-right: 4.6153846154vw;
  }
  .g-header__fc {
    bottom: 2.5641025641vw;
    width: 79.4871794872vw;
    height: 15.8974358974vw;
    font-size: 4.1025641026vw;
    border: 0.5128205128vw solid #1E1E1E;
  }
  .g-header.is-open .g-header__btn span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(1.7948717949vw, 1.5384615385vw);
            transform: rotate(45deg) translate(1.7948717949vw, 1.5384615385vw);
  }
  .g-header.is-open .g-header__btn span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(1.2820512821vw, -1.2820512821vw);
            transform: rotate(-45deg) translate(1.2820512821vw, -1.2820512821vw);
  }
}

.g-footer {
  background-image: url("../img/footer_bg.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}
.g-footer__logo {
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  display: block;
}
.g-footer__ttl, .g-footer__sub {
  text-align: center;
  font-weight: 900;
}
.g-footer__sub {
  color: #FCCF2C;
}
.g-footer__num a, .g-footer__address a {
  font-family: "Rubik", sans-serif;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.g-footer__num a:before, .g-footer__address a:before {
  content: "";
  background-size: cover !important;
  display: block;
}
.g-footer__num p {
  text-align: center;
}
.g-footer__address p {
  margin: 0 auto;
  padding-left: 1em;
}
.g-footer__address p:before {
  content: "※";
  margin-left: -1em;
}
.g-footer__copy {
  background-image: url("../img/copy_bg.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #000;
  font-weight: 700;
}
@media (min-width: 768px) {
  .g-footer {
    padding: 95px 0 0;
  }
  .g-footer__col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 100px;
  }
  .g-footer__logo {
    width: 116px;
    top: -55px;
  }
  .g-footer__sub {
    text-align: left;
  }
  .g-footer__num a, .g-footer__address a {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .g-footer__ttl {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .g-footer__sub {
    font-size: 30px;
    margin-bottom: 40px;
  }
  .g-footer__num a, .g-footer__address a {
    line-height: 1;
  }
  .g-footer__num a:before, .g-footer__address a:before {
    width: 32px;
    height: 32px;
    margin-right: 8px;
  }
  .g-footer__num a {
    font-size: 44px;
  }
  .g-footer__num a:before {
    background-image: url("../img/icon_mail.svg");
  }
  .g-footer__num p {
    margin-top: 12px;
    font-size: 16px;
    text-align: left;
  }
  .g-footer__address {
    margin-top: 20px;
  }
  .g-footer__address a {
    font-size: 32px;
  }
  .g-footer__address a:before {
    background-image: url("../img/icon_num.svg");
  }
  .g-footer__address p {
    font-size: 16px;
    margin: 0;
    margin-top: 12px;
  }
  .g-footer__copy {
    text-align: center;
    font-size: 14px;
    padding: 30px 0 95px;
  }
}
@media (max-width: 767px) {
  .g-footer {
    padding: 24.358974359vw 0 0;
  }
  .g-footer__logo {
    width: 30.5128205128vw;
    top: -11.7948717949vw;
  }
  .g-footer__ttl {
    font-size: 7.1794871795vw;
    margin-bottom: 10.2564102564vw;
  }
  .g-footer__sub {
    font-size: 4.6153846154vw;
    margin-bottom: 7.6923076923vw;
  }
  .g-footer__num a:before, .g-footer__address a:before {
    width: 8.2051282051vw;
    height: 8.2051282051vw;
    margin-right: 2.0512820513vw;
  }
  .g-footer__num a {
    font-size: 8.2051282051vw;
  }
  .g-footer__num a:before {
    background-image: url("../img/icon_mail.svg");
  }
  .g-footer__num p {
    margin-top: 3.0769230769vw;
    font-size: 3.5897435897vw;
  }
  .g-footer__address {
    margin-top: 5.1282051282vw;
  }
  .g-footer__address a {
    font-size: 4.1025641026vw;
  }
  .g-footer__address a:before {
    background-image: url("../img/icon_num.svg");
  }
  .g-footer__address p {
    font-size: 3.0769230769vw;
    width: 84.6153846154vw;
    margin-top: 2.0512820513vw;
  }
  .g-footer__copy {
    text-align: center;
    font-size: 2.8205128205vw;
    padding: 7.6923076923vw 0 38.4615384615vw;
    margin-top: 20.5128205128vw;
  }
}

.g-secttl {
  text-align: center;
  line-height: 1.6;
}
.g-secttl * {
  font-weight: 900;
}
@media (min-width: 768px) {
  .g-secttl {
    margin-bottom: 40px;
  }
  .g-secttl span {
    font-size: 36px;
  }
  .g-secttl h2 {
    font-size: 56px;
  }
}
@media (max-width: 767px) {
  .g-secttl {
    margin-bottom: 7.6923076923vw;
  }
  .g-secttl span {
    font-size: 5.641025641vw;
  }
  .g-secttl h2 {
    font-size: 7.1794871795vw;
  }
}

.g-btn {
  border-radius: 9999px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FCCF2C;
  color: #000;
  font-weight: 900;
}
.g-btn:after {
  content: "";
  background-image: url("../img/icon_arw.png");
  background-size: cover;
  position: absolute;
}
@media (min-width: 768px) {
  .g-btn {
    font-size: 15px;
    width: 300px;
    height: 60px;
  }
  .g-btn:after {
    width: 14px;
    height: 14px;
    right: 15px;
  }
}
@media (max-width: 767px) {
  .g-btn {
    font-size: 3.3333333333vw;
    width: 66.1538461538vw;
    height: 13.3333333333vw;
  }
  .g-btn:after {
    width: 2.5641025641vw;
    height: 2.5641025641vw;
    right: 3.8461538462vw;
  }
}

.m-early__bloc {
  margin: 0 auto;
  background-image: url("../img/early_bg.jpg");
  background-size: cover;
  background-position: center;
}
.m-early__txt {
  text-align: center;
}
.m-early__txt > * {
  line-height: 1;
}
.m-early__txt h3 {
  font-weight: 900;
}
.m-early__pct {
  margin: 0 auto;
  overflow: hidden;
}
@media (min-width: 768px) {
  .m-early {
    padding: 90px;
    background: #F7F6EF;
  }
  .m-early__bloc {
    width: 1010px;
    border-radius: 14px;
    padding: 30px 78px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .m-early__txt {
    margin-left: 85px;
    top: -25px;
  }
  .m-early__txt span {
    width: 320px;
    margin-bottom: 30px;
    display: block;
  }
  .m-early__txt h3 {
    font-size: 42px;
    margin-bottom: 25px;
  }
  .m-early__txt p {
    font-size: 20px;
  }
  .m-early__pct {
    width: 384px;
    border-radius: 14px;
  }
}
@media (max-width: 767px) {
  .m-early__bloc {
    width: 93.8461538462vw;
    border-radius: 3.5897435897vw;
    padding: 12.3076923077vw 0 7.6923076923vw;
    margin-top: 15.3846153846vw;
  }
  .m-early__txt {
    margin-bottom: 6.4102564103vw;
  }
  .m-early__txt span {
    position: absolute;
    top: -21.0256410256vw;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 44.8717948718vw;
  }
  .m-early__txt h3 {
    font-size: 7.1794871795vw;
    margin-bottom: 2.5641025641vw;
  }
  .m-early__txt p {
    font-size: 4.1025641026vw;
  }
  .m-early__pct {
    width: 69.2307692308vw;
    border-radius: 3.5897435897vw;
  }
}

.m-lineup__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.m-lineup__items {
  overflow: hidden;
  cursor: pointer;
}
.m-lineup__txt {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFEB9D), to(#D1A700));
  background: linear-gradient(#FFEB9D 0%, #D1A700 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.m-lineup__txt:before {
  content: "";
  background-image: url("../img/icon_modal.png");
  background-size: cover;
  position: absolute;
}
.m-lineup__txt em {
  font-weight: 700;
  line-height: 1.3;
  display: block;
  text-align: center;
}
.m-lineup__txt p {
  display: none;
}
.m-lineup__pct {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.m-lineup__pct img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.m-lineup__pct {
  background: #fff;
}
@media (min-width: 768px) {
  .m-lineup {
    padding-top: 34px;
    padding-bottom: 95px;
    background: #F7F6EF;
    z-index: 0;
  }
  .m-lineup:before, .m-lineup:after {
    content: "";
    background-image: url("../img/lineup_bg.png");
    background-size: cover;
    position: absolute;
    width: 430px;
    height: 368px;
    z-index: -1;
  }
  .m-lineup:before {
    right: 0;
    top: 35px;
  }
  .m-lineup:after {
    left: -73px;
    bottom: 85px;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
  .m-lineup__list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 1010px;
    margin: 40px auto 0;
  }
  .m-lineup__items {
    width: 240px;
    border-radius: 14px;
    border: 2px solid #000;
  }
  .m-lineup__items:nth-child(n+5) {
    margin-top: 36px;
  }
  .m-lineup__pct {
    width: 100%;
    height: 240px;
    border-bottom: 2px solid #000;
  }
  .m-lineup__txt {
    height: 80px;
  }
  .m-lineup__txt em {
    font-size: 22px;
  }
  .m-lineup__txt:before {
    right: 15px;
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 767px) {
  .m-lineup {
    margin-top: 8.7179487179vw;
  }
  .m-lineup__list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 3.0769230769vw;
  }
  .m-lineup__items {
    width: 45.3846153846vw;
    border-radius: 3.5897435897vw;
    border: 0.5128205128vw solid #000;
  }
  .m-lineup__items:nth-child(n+3) {
    margin-top: 4.6153846154vw;
  }
  .m-lineup__pct {
    width: 100%;
    height: 44.358974359vw;
    border-bottom: 0.5128205128vw solid #000;
  }
  .m-lineup__txt {
    height: 17.4358974359vw;
  }
  .m-lineup__txt em {
    font-size: 4.1025641026vw;
  }
  .m-lineup__txt:before {
    right: 3.0769230769vw;
    width: 3.0769230769vw;
    height: 3.0769230769vw;
  }
}

.m-benefits__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  position: sticky;
  z-index: 100;
  background: #fff;
}
.m-benefits__tab li {
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.m-benefits__tab li.is-active {
  background: #1E1E1E;
  color: #fff;
}
.m-benefits__panel {
  margin: 0 auto;
}
.m-benefits__panel > li {
  overflow: hidden;
  margin: 0 auto;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
  z-index: 0;
}
.m-benefits__panel > li.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.m-benefits__panel .--premium {
  background: -webkit-gradient(linear, left top, right top, from(#6c5d3b), color-stop(#bda378), to(#6c5d3b));
  background: linear-gradient(0.25turn, #6c5d3b, #bda378, #6c5d3b);
}
.m-benefits__panel .--premium .m-benefits__head {
  background: #543404;
}
.m-benefits__panel .--premium .m-benefits__plan,
.m-benefits__panel .--premium .m-benefits__price,
.m-benefits__panel .--premium .m-benefits__lead {
  color: #fff;
}
.m-benefits__panel .--premium .m-benefits__planwrap {
  z-index: 0;
}
.m-benefits__panel .--premium:before {
  content: "";
  background-image: url("../img/benefits_bg.png");
  background-size: cover;
  position: absolute;
  z-index: -1;
  mix-blend-mode: multiply;
}
.m-benefits__panel .--plus {
  background: #5a5a5a;
}
.m-benefits__panel .--plus .m-benefits__head {
  background: #1e1e1e;
}
.m-benefits__panel .--plus .m-benefits__plan,
.m-benefits__panel .--plus .m-benefits__price,
.m-benefits__panel .--plus .m-benefits__lead {
  color: #fff;
}
.m-benefits__panel .--standard {
  background: #fbdede;
}
.m-benefits__panel .--standard .m-benefits__head {
  background: #e50606;
}
.m-benefits__panel .--light {
  background: #def6fb;
}
.m-benefits__panel .--light .m-benefits__head {
  background: #3aa7c2;
}
.m-benefits__panel .--junior {
  background: #e9f8d9;
}
.m-benefits__panel .--junior .m-benefits__head {
  background: #7aa848;
}
.m-benefits__plan, .m-benefits__price em, .m-benefits__ttl {
  font-family: "Koulen", sans-serif;
}
.m-benefits__head {
  background: #ccc;
  color: #fff;
}
.m-benefits__head h3 {
  text-align: center;
}
.m-benefits__head em {
  border-radius: 9999px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #904916;
  margin: 0 auto;
}
.m-benefits__head p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.m-benefits__head p span + span {
  border-left: 1px solid #fff;
}
.m-benefits__box {
  background: #fff;
  margin: 0 auto;
}
.m-benefits__ttl {
  text-align: center;
  line-height: 1;
  margin: 0 auto;
}
.m-benefits__ttl.--wt {
  color: #fff;
}
.m-benefits__ttl:before {
  content: "";
  background-image: url("../img/bene_ttl.png");
  background-size: auto 100%;
  background-position: center;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.m-benefits__list {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.m-benefits__list > li {
  font-weight: 700;
}
.m-benefits__list > li:before {
  content: "";
  background-image: url("../img/icon_ball.png");
  background-size: cover;
  position: absolute;
}
.m-benefits__list > li > ul li {
  padding-left: 1em;
  font-weight: 500;
}
.m-benefits__list > li > ul li:before {
  content: "・";
  margin-left: -1em;
}
.m-benefits__plan * {
  display: block;
  text-align: center;
  line-height: 1;
}
.m-benefits__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.m-benefits__price * {
  display: block;
  line-height: 1;
  text-align: center;
}
.m-benefits__pct em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.m-benefits__pct em:before {
  content: "";
  background-image: url("../img/icon_ball.png");
  background-size: cover;
  position: absolute;
}
.m-benefits__pct span {
  font-weight: 700;
  display: block;
  text-align: center;
  line-height: 1;
}
.m-benefits__pct p {
  line-height: 1.3;
  text-align: center;
}
.m-benefits__pct p:before, .m-benefits__pct p:after {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  border-top: 1px solid #543404;
  border-bottom: 1px solid #543404;
}
.m-benefits__pct p:before {
  left: 0;
  border-left: 1px solid #543404;
}
.m-benefits__pct p:after {
  right: 0;
  border-right: 1px solid #543404;
}
.m-benefits__ss {
  background: #1E1E1E;
  color: #fff;
  margin: 0 auto;
  line-height: 1.6;
}
.m-benefits__ss:after {
  content: "";
  background-image: url("../img/icon_plus.png");
  background-size: cover;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.m-benefits__ssttl {
  font-family: "Koulen", sans-serif;
  text-align: center;
}
.m-benefits__ssdate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.m-benefits__ssdate span {
  font-family: "Koulen", sans-serif;
  color: #FCCF2C;
}
.m-benefits__ssdate * {
  line-height: 1;
}
.m-benefits__note {
  padding-left: 1em;
  margin: 0 auto;
}
.m-benefits__note:before {
  content: "※";
  margin-left: -1em;
}
.m-benefits__btn {
  border-top: 2px solid #5D5D5D;
}
.m-benefits__btn span {
  color: #FCCF2C;
}
.m-benefits__btn p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .m-benefits {
    padding-top: 135px;
  }
  .m-benefits__tab {
    padding: 10px 54px;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    width: 697px;
    top: 76px;
    width: 1010px;
  }
  .m-benefits__tab li {
    font-size: 18px;
    padding: 0 15px;
    height: 50px;
    border-radius: 9px;
  }
  .m-benefits__panel {
    width: 1010px;
  }
  .m-benefits__panel > li {
    border-radius: 14px;
    padding-bottom: 28px;
  }
  .m-benefits__panel .--premium:before {
    width: 370px;
    height: 182px;
    left: 92px;
    top: 145px;
  }
  .m-benefits__box {
    border-radius: 14px;
    width: 864px;
    padding: 32px 48px 37px;
  }
  .m-benefits__box + .m-benefits__box {
    margin-top: 24px;
  }
  .m-benefits__box.--event .m-benefits__pct {
    width: 48%;
  }
  .m-benefits__boxwrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .m-benefits__plan span {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .m-benefits__plan em {
    font-size: 88px;
  }
  .m-benefits__price {
    margin-top: 35px;
    margin-left: 90px;
  }
  .m-benefits__price span {
    font-size: 28px;
    bottom: 11px;
  }
  .m-benefits__price span small {
    font-size: 18px;
    margin-top: 6px;
  }
  .m-benefits__price em {
    font-size: 80px;
    margin: 0 9px;
  }
  .m-benefits__lead {
    font-size: 18px;
    padding: 50px 35px;
    text-align: center;
  }
  .m-benefits__head {
    padding: 14px 0 17px;
  }
  .m-benefits__head h3 {
    font-size: 26px;
  }
  .m-benefits__head em {
    font-size: 20px;
    width: 240px;
    height: 40px;
    margin-bottom: 10px;
  }
  .m-benefits__head p span:nth-child(1) {
    font-size: 24px;
  }
  .m-benefits__head p span:nth-child(2) {
    font-size: 18px;
    padding-left: 20px;
    margin-left: 20px;
  }
  .m-benefits__planwrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 50px;
  }
  .m-benefits__ttl {
    font-size: 58px;
    position: absolute;
    top: 32px;
    left: 35px;
    width: 172px;
  }
  .m-benefits__ttl:before {
    height: 10px;
    bottom: -8px;
  }
  .m-benefits__ttl + .m-benefits__pccol {
    margin-top: 90px;
  }
  .m-benefits__list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .m-benefits__list.--col {
    width: 548px;
    margin-left: auto;
    margin-right: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .m-benefits__list.--col > li {
    width: 253px;
  }
  .m-benefits__list.--col > li.--pct {
    width: 100%;
  }
  .m-benefits__list.--col > li.--pct img {
    width: 70%;
    display: block;
    margin: 20px auto;
  }
  .m-benefits__list > li {
    font-size: 22px;
    padding: 4px 0;
  }
  .m-benefits__list > li:before {
    width: 28px;
    height: 28px;
    left: -34px;
    top: 8px;
  }
  .m-benefits__list > li > ul li {
    font-size: 14px;
  }
  .m-benefits__pccol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
  }
  .m-benefits__pccol > div {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .m-benefits__pccol > div:nth-child(1) {
    width: 390px;
    padding-right: 34px;
  }
  .m-benefits__pccol > div:nth-child(2) {
    width: 363px;
    padding-left: 38px;
    border-left: 2px dashed #DEDEDE;
    border-top: 2px dashed #DEDEDE;
  }
  .m-benefits__pccol > div:nth-child(2) .m-benefits__pct {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 18px;
    margin-top: 18px;
    margin-bottom: 25px;
    border-bottom: 2px dashed #DEDEDE;
  }
  .m-benefits__pccol > div:nth-child(2) .m-benefits__pct em {
    font-size: 22px;
  }
  .m-benefits__pccol > div:nth-child(2) .m-benefits__pct img {
    width: 131px;
  }
  .m-benefits__pccol > div:nth-child(2) .m-benefits__list {
    margin: 0;
    padding-left: 34px;
  }
  .m-benefits__pccol > div:nth-child(2) .m-benefits__list:before {
    left: 0;
  }
  .m-benefits__pct.--wide {
    width: 100%;
  }
  .m-benefits__pct.--wide em {
    position: absolute;
    left: 70px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .m-benefits__pct.--wide > div {
    width: auto;
    padding-left: 245px;
  }
  .m-benefits__pct.--wide > div > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 18px;
  }
  .m-benefits__pct.--wide > div > div span {
    width: 234px;
  }
  .m-benefits__pct.--wide > div > div p {
    width: 300px;
  }
  .m-benefits__pct + .m-benefits__pct {
    margin-top: 28px;
  }
  .m-benefits__pct + .m-benefits__list {
    margin-top: 35px;
  }
  .m-benefits__pct em {
    font-size: 22px;
    padding-left: 34px;
    margin: 0;
  }
  .m-benefits__pct em:before {
    width: 28px;
    height: 28px;
    left: 0;
    top: 6px;
  }
  .m-benefits__pct span {
    font-size: 18px;
  }
  .m-benefits__pct p {
    font-size: 16px;
  }
  .m-benefits__pct p:before, .m-benefits__pct p:after {
    width: 8px;
  }
  .m-benefits__ss {
    border-radius: 14px;
    width: 864px;
    margin-top: 80px;
    padding: 20px 24px 40px;
  }
  .m-benefits__ss:after {
    width: 46px;
    height: 46px;
    top: -62px;
  }
  .m-benefits__ssttl {
    font-size: 40px;
    margin-bottom: 15px;
  }
  .m-benefits__ssdate {
    margin-bottom: 15px;
  }
  .m-benefits__ssdate p {
    font-size: 22px;
  }
  .m-benefits__ssdate span {
    font-size: 24px;
  }
  .m-benefits__ssdate em {
    font-size: 32px;
  }
  .m-benefits__note {
    font-size: 16px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 20px;
  }
  .m-benefits__btn {
    padding-top: 20px;
  }
  .m-benefits__btn p {
    font-size: 14px;
    margin-bottom: 25px;
  }
  .m-benefits__sscont {
    padding-left: 220px;
  }
}
@media (max-width: 767px) {
  .m-benefits {
    margin-top: 10.7692307692vw;
  }
  .m-benefits__tab {
    padding: 2.0512820513vw 2.8205128205vw;
    -webkit-box-shadow: 0 0 1.5384615385vw rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 1.5384615385vw rgba(0, 0, 0, 0.2);
    margin-bottom: 5.1282051282vw;
    border-radius: 1.0256410256vw;
    width: 93.8461538462vw;
    top: 18.2051282051vw;
  }
  .m-benefits__tab li {
    font-size: 2.8205128205vw;
    padding: 0 2.3076923077vw;
    height: 7.6923076923vw;
    border-radius: 2.3076923077vw;
  }
  .m-benefits__box {
    border-radius: 3.5897435897vw;
    width: 84.6153846154vw;
    padding: 5.1282051282vw 8.2051282051vw 10.2564102564vw;
  }
  .m-benefits__box + .m-benefits__box {
    margin-top: 4.6153846154vw;
  }
  .m-benefits__plan {
    margin-top: 5.641025641vw;
    margin-bottom: 5.1282051282vw;
  }
  .m-benefits__plan span {
    font-size: 4.1025641026vw;
    margin-bottom: 2.5641025641vw;
  }
  .m-benefits__plan em {
    font-size: 15.8974358974vw;
  }
  .m-benefits__price span {
    font-size: 4.6153846154vw;
    bottom: 2.8205128205vw;
  }
  .m-benefits__price span small {
    font-size: 3.5897435897vw;
    margin-top: 1.5384615385vw;
  }
  .m-benefits__price em {
    font-size: 13.3333333333vw;
    margin: 0 1.5384615385vw;
  }
  .m-benefits__lead {
    font-size: 3.5897435897vw;
    padding: 10.2564102564vw 4.6153846154vw;
  }
  .m-benefits__panel {
    width: 93.8461538462vw;
    margin-top: 5.1282051282vw;
  }
  .m-benefits__panel > li {
    border-radius: 3.5897435897vw;
    padding-bottom: 7.1794871795vw;
  }
  .m-benefits__panel .--premium:before {
    width: 75.8974358974vw;
    height: 37.4358974359vw;
    top: 41.0256410256vw;
    margin: 0 auto;
    left: 0;
    right: 0;
  }
  .m-benefits__head {
    padding: 3.5897435897vw 0 4.358974359vw;
  }
  .m-benefits__head h3 {
    font-size: 4.6153846154vw;
  }
  .m-benefits__head em {
    font-size: 3.0769230769vw;
    width: 34.358974359vw;
    height: 6.1538461538vw;
    margin-bottom: 2.5641025641vw;
  }
  .m-benefits__head p span:nth-child(1) {
    font-size: 3.5897435897vw;
  }
  .m-benefits__head p span:nth-child(2) {
    font-size: 3.0769230769vw;
    padding-left: 2.8205128205vw;
    margin-left: 2.8205128205vw;
  }
  .m-benefits__ttl {
    font-size: 11.7948717949vw;
    margin-bottom: 7.6923076923vw;
    width: 38.4615384615vw;
  }
  .m-benefits__ttl:before {
    width: 100%;
    height: 1.7948717949vw;
    bottom: -2.5641025641vw;
  }
  .m-benefits__list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .m-benefits__list > li {
    font-size: 4.6153846154vw;
    padding-left: 30px;
  }
  .m-benefits__list > li + li {
    margin-top: 2.0512820513vw;
  }
  .m-benefits__list > li:before {
    width: 6.1538461538vw;
    height: 6.1538461538vw;
    left: 0;
    top: 0.5128205128vw;
  }
  .m-benefits__list > li.--pct img {
    max-width: none;
    width: calc(100% + 7.6923076923vw);
    left: -7.6923076923vw;
    display: block;
    margin: 3.8461538462vw 0 5.1282051282vw;
  }
  .m-benefits__list > li > ul li {
    font-size: 3.5897435897vw;
  }
  .m-benefits__pct + .m-benefits__pct {
    margin-top: 7.1794871795vw;
  }
  .m-benefits__pct + .m-benefits__list {
    margin-top: 8.9743589744vw;
  }
  .m-benefits__pct em {
    font-size: 4.6153846154vw;
    margin-bottom: 2.5641025641vw;
  }
  .m-benefits__pct em:before {
    width: 6.1538461538vw;
    height: 6.1538461538vw;
    left: -7.6923076923vw;
    top: 0.5128205128vw;
  }
  .m-benefits__pct span {
    font-size: 3.5897435897vw;
    margin-bottom: 2.0512820513vw;
    margin-top: 4.1025641026vw;
  }
  .m-benefits__pct p {
    font-size: 3.5897435897vw;
    margin-bottom: 7.1794871795vw;
  }
  .m-benefits__pct p:before, .m-benefits__pct p:after {
    width: 2.0512820513vw;
  }
  .m-benefits__ss {
    border-radius: 3.5897435897vw;
    width: 84.6153846154vw;
    margin-top: 20.5128205128vw;
    padding: 5.1282051282vw 6.1538461538vw 10.2564102564vw;
  }
  .m-benefits__ss:after {
    width: 11.7948717949vw;
    height: 11.7948717949vw;
    top: -15.8974358974vw;
  }
  .m-benefits__ssttl {
    font-size: 6.4102564103vw;
    margin-bottom: 3.8461538462vw;
  }
  .m-benefits__ssdate {
    margin-bottom: 3.8461538462vw;
  }
  .m-benefits__ssdate p {
    font-size: 4.6153846154vw;
  }
  .m-benefits__ssdate span {
    font-size: 4.6153846154vw;
  }
  .m-benefits__ssdate em {
    font-size: 6.1538461538vw;
  }
  .m-benefits__note {
    font-size: 3.0769230769vw;
    width: 61.5384615385vw;
    margin-bottom: 5.1282051282vw;
  }
  .m-benefits__btn {
    padding-top: 5.1282051282vw;
  }
  .m-benefits__btn p {
    font-size: 3.5897435897vw;
    margin-bottom: 6.4102564103vw;
  }
  .m-benefits__pccol div:nth-child(1) {
    margin-top: 7.6923076923vw;
  }
  .m-benefits__pccol div:nth-child(2) {
    margin: 8.9743589744vw auto 0;
    width: 44.6153846154vw;
  }
}

.m-list__table {
  overflow: scroll;
}
.m-list__note {
  margin: 0 auto;
}
.m-list__note li {
  padding-left: 1em;
}
.m-list__note li:before {
  content: "※";
  margin-left: -1em;
}
@media (min-width: 768px) {
  .m-list {
    margin-top: 60px;
    background: #F7F6EF;
    padding: 90px 0 210px;
  }
  .m-list__table {
    width: 1010px;
    margin: 0 auto;
  }
  .m-list__table img {
    width: 100%;
  }
  .m-list__note {
    margin-top: 18px;
    width: 1010px;
  }
}
@media (max-width: 767px) {
  .m-list {
    margin-top: 15.3846153846vw;
  }
  .m-list__table {
    padding-left: 7.6923076923vw;
  }
  .m-list__table img {
    width: 196.9230769231vw;
    max-width: none;
  }
  .m-list__note {
    margin-top: 4.6153846154vw;
    width: 87.1794871795vw;
  }
}

.m-schedule {
  background: #F7F6EF;
  z-index: 0;
}
.m-schedule:before, .m-schedule:after {
  content: "";
  z-index: -1;
  background-size: cover !important;
  position: absolute;
  width: 100%;
}
.m-schedule:before {
  background-position: bottom;
  background-image: url("../img/schedule_bg_01.png");
  top: 0;
}
.m-schedule:after {
  background-position: top;
  background-image: url("../img/schedule_bg_02.png");
  bottom: 0;
}
.m-schedule__outer {
  background: #F7F6EF;
  margin: 0 auto;
}
.m-schedule__ttl {
  text-align: center;
}
.m-schedule__cont {
  margin: 0 auto;
}
.m-schedule__bloc {
  background: #fff;
  border: 2px solid #1E1E1E;
}
.m-schedule__bloc .g-btn {
  background: #FFF100;
  border: 2px solid #000;
}
.m-schedule__head {
  background: #FCCF2C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
}
.m-schedule__subhead {
  font-weight: 900;
  color: #E50606;
  text-align: center;
  line-height: 1;
}
.m-schedule__list {
  margin: 0 auto;
}
.m-schedule__list li > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #1E1E1E;
  color: #fff;
}
.m-schedule__list li > span.--step {
  font-family: "Koulen", sans-serif;
}
.m-schedule__txt {
  line-height: 1.4;
  font-weight: 700;
}
.m-schedule__txt.--center {
  text-align: center;
}
.m-schedule__notebox {
  background: #F0F0F0;
  margin: 0 auto;
}
.m-schedule__note {
  padding-left: 1em;
}
.m-schedule__note:before {
  content: "※";
  margin-left: -1em;
}
.m-schedule__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  color: #0E2491;
}
.m-schedule__num span {
  background: #0E2491;
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.m-schedule__box {
  margin: 0 auto;
}
.m-schedule__box + .m-schedule__box {
  border-top: 2px solid #DEDEDE;
}
.m-schedule__col li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.m-schedule__col li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #1E1E1E;
  color: #fff;
  font-weight: 700;
}
.m-schedule__col li p {
  line-height: 1.3;
}
.m-schedule__check, .m-schedule__dot {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.m-schedule__check li {
  font-weight: 700;
}
.m-schedule__check li:before {
  content: "";
  background-image: url("../img/icon_check.png");
  background-size: cover;
  position: absolute;
}
.m-schedule__dot li {
  padding-left: 1em;
}
.m-schedule__dot li:before {
  content: "・";
  margin-left: -1em;
}
.m-schedule__pct {
  display: block;
  margin: 0 auto;
}
.m-schedule__bloc:before {
  content: "";
  background-size: cover !important;
  position: absolute;
  z-index: 1;
}
.m-schedule__bloc.--01:before {
  background-image: url("../img/icon_schedule_01.png");
}
.m-schedule__bloc.--02:before {
  background-image: url("../img/icon_schedule_02.png");
}
.m-schedule__bloc.--03:before {
  background-image: url("../img/icon_schedule_03.png");
}
.m-schedule__bloc.--04:before {
  background-image: url("../img/icon_schedule_04.png");
}
@media (min-width: 768px) {
  .m-schedule {
    padding-top: 105px;
    padding-bottom: 125px;
  }
  .m-schedule:before, .m-schedule:after {
    height: 266px;
  }
  .m-schedule__outer {
    width: 1010px;
    padding: 80px 0;
    border-radius: 14px;
  }
  .m-schedule__ttl {
    font-size: 22px;
    margin-bottom: 18px;
  }
  .m-schedule__cont {
    width: 900px;
  }
  .m-schedule__bloc {
    border-radius: 14px;
  }
  .m-schedule__bloc.--01 {
    padding-bottom: 50px;
  }
  .m-schedule__bloc + .m-schedule__ttl {
    margin-top: 35px;
  }
  .m-schedule__bloc.--col {
    margin: 0 auto;
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .m-schedule__bloc.--col .m-schedule__box {
    width: 33%;
    padding: 0 15px;
    border: none;
  }
  .m-schedule__bloc.--col .m-schedule__box:nth-child(2) {
    border-left: 2px solid #DEDEDE;
    border-right: 2px solid #DEDEDE;
  }
  .m-schedule__bloc:before {
    width: 73px;
    height: 82px;
    top: -27px;
    left: -23px;
  }
  .m-schedule__pccol {
    margin: 35px auto 0;
    width: 900px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .m-schedule__pccol > div {
    width: 48%;
  }
  .m-schedule__head {
    height: 50px;
    font-size: 22px;
    margin-bottom: 25px;
  }
  .m-schedule__head.--top {
    border-radius: 14px 14px 0 0;
  }
  .m-schedule__subhead {
    margin-bottom: 18px;
    font-size: 22px;
  }
  .m-schedule__list {
    width: 864px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .m-schedule__list li {
    width: 25%;
    padding: 0 10px;
  }
  .m-schedule__list li > span {
    margin-bottom: 15px;
    border-radius: 4px;
    font-size: 16px;
    padding: 5px 0;
  }
  .m-schedule__list li > span.--step {
    font-size: 18px;
  }
  .m-schedule__list li > span.--step em {
    font-size: 22px;
    margin-left: 4px;
  }
  .m-schedule__list.--02 li {
    width: 40%;
  }
  .m-schedule__list.--03 li {
    width: 60%;
  }
  .m-schedule__notebox {
    width: 600px;
    margin-top: 25px;
    padding: 15px 18px;
    max-width: 100%;
  }
  .m-schedule__notebox + .m-schedule__head {
    margin-top: 35px;
  }
  .m-schedule__note {
    font-size: 14px;
  }
  .m-schedule__pct {
    margin: 8px auto;
  }
  .m-schedule__pct.--01 {
    width: 204px;
  }
  .m-schedule__pct.--02 {
    width: 204px;
  }
  .m-schedule__num {
    font-size: 16px;
    margin: 12px 0;
  }
  .m-schedule__num span {
    width: 24px;
    height: 24px;
    margin-right: 8px;
  }
  .m-schedule__box {
    width: 282px;
    padding: 26px 0;
  }
  .m-schedule__col li + li {
    margin-top: 15px;
  }
  .m-schedule__col span {
    width: 74px;
    font-size: 14px;
    margin-right: 15px;
    border-radius: 4px;
    padding: 5px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .m-schedule__col p {
    font-size: 20px;
  }
  .m-schedule__col p.--min {
    font-size: 15px;
  }
  .m-schedule__check {
    padding: 40px;
  }
  .m-schedule__check li {
    font-size: 20px;
    padding-left: 24px;
  }
  .m-schedule__check li:before {
    width: 18px;
    height: 18px;
    left: 0;
    top: 7px;
  }
  .m-schedule__check li + li {
    margin-top: 5px;
  }
  .m-schedule__dot {
    padding: 40px;
    width: 80%;
  }
  .m-schedule__dot li {
    font-size: 14px;
  }
  .m-schedule__dot li + li {
    margin-top: 15px;
  }
  .m-schedule__txt {
    letter-spacing: -0.05em;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .m-schedule {
    margin-top: 12.8205128205vw;
    padding-top: 26.9230769231vw;
    padding-bottom: 32.0512820513vw;
  }
  .m-schedule:before, .m-schedule:after {
    height: 61.5384615385vw;
  }
  .m-schedule__ttl {
    font-size: 5.641025641vw;
    margin-bottom: 4.6153846154vw;
  }
  .m-schedule__outer {
    width: 93.8461538462vw;
    padding: 8.2051282051vw 0;
    border-radius: 3.5897435897vw;
  }
  .m-schedule__cont {
    width: 84.6153846154vw;
  }
  .m-schedule__bloc {
    border-radius: 3.5897435897vw;
  }
  .m-schedule__bloc.--01 {
    padding-bottom: 12.3076923077vw;
  }
  .m-schedule__bloc + .m-schedule__ttl {
    margin-top: 8.9743589744vw;
  }
  .m-schedule__bloc:before {
    width: 13.5897435897vw;
    height: 15.3846153846vw;
    top: -2.0512820513vw;
    left: -1.2820512821vw;
  }
  .m-schedule__head {
    height: 7.9487179487vw;
    font-size: 3.5897435897vw;
    margin-bottom: 6.4102564103vw;
  }
  .m-schedule__head.--top {
    border-radius: 3.5897435897vw 3.5897435897vw 0 0;
  }
  .m-schedule__subhead {
    margin-bottom: 4.6153846154vw;
  }
  .m-schedule__list {
    width: 72.3076923077vw;
  }
  .m-schedule__list li > span {
    margin-bottom: 3.8461538462vw;
    border-radius: 1.0256410256vw;
    font-size: 3.5897435897vw;
  }
  .m-schedule__list li > span.--step {
    font-size: 3.8461538462vw;
  }
  .m-schedule__list li > span.--step em {
    font-size: 4.6153846154vw;
    margin-left: 1.0256410256vw;
  }
  .m-schedule__list li + li {
    margin-top: 6.4102564103vw;
  }
  .m-schedule__notebox {
    width: 72.3076923077vw;
    margin-top: 6.4102564103vw;
    padding: 3.8461538462vw 4.6153846154vw;
  }
  .m-schedule__notebox + .m-schedule__head {
    margin-top: 8.9743589744vw;
  }
  .m-schedule__note {
    font-size: 3.0769230769vw;
  }
  .m-schedule__pct {
    margin: 2.0512820513vw auto;
  }
  .m-schedule__pct.--01 {
    width: 52.0512820513vw;
  }
  .m-schedule__pct.--02 {
    width: 41.5384615385vw;
  }
  .m-schedule__num {
    font-size: 4.1025641026vw;
    margin: 3.0769230769vw 0;
  }
  .m-schedule__num span {
    width: 6.1538461538vw;
    height: 6.1538461538vw;
    margin-right: 2.0512820513vw;
  }
  .m-schedule__box {
    width: 72.3076923077vw;
    padding: 6.6666666667vw 0;
  }
  .m-schedule__col li + li {
    margin-top: 3.8461538462vw;
  }
  .m-schedule__col span {
    width: 22.3076923077vw;
    height: 5.3846153846vw;
    font-size: 3.5897435897vw;
    margin-right: 3.8461538462vw;
    border-radius: 1.0256410256vw;
  }
  .m-schedule__col p {
    font-size: 5.1282051282vw;
  }
  .m-schedule__col p.--min {
    font-size: 3.8461538462vw;
  }
  .m-schedule__check {
    padding: 10.2564102564vw;
  }
  .m-schedule__check li {
    font-size: 4.1025641026vw;
    padding-left: 6.1538461538vw;
  }
  .m-schedule__check li:before {
    width: 4.6153846154vw;
    height: 4.6153846154vw;
    left: 0;
    top: 0.7692307692vw;
  }
  .m-schedule__check li + li {
    margin-top: 3.8461538462vw;
  }
  .m-schedule__dot {
    padding: 10.2564102564vw;
  }
  .m-schedule__dot li {
    font-size: 3.5897435897vw;
  }
  .m-schedule__dot li + li {
    margin-top: 3.8461538462vw;
  }
  .m-schedule__pccol > div {
    margin-top: 9.2307692308vw;
  }
}

.m-ss__pct, .m-ss__note {
  margin: 0 auto;
}
.m-ss__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url("../img/ss_ttl.png");
  background-size: cover;
  font-weight: 900;
  color: #fff;
}
.m-ss__note li {
  padding-left: 1em;
}
.m-ss__note li:before {
  content: "※";
  margin-left: -1em;
}
.m-ss__lead {
  margin: 0 auto;
}
.m-ss__lead em {
  background: #fff100;
  font-weight: 600;
}
.m-ss__lead span {
  color: red;
  padding-left: 1em;
  display: block;
}
.m-ss__lead span:before {
  content: "※";
  margin-left: -1em;
}
.m-ss__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #d80c18;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.m-ss__boxwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
}
.m-ss__btnwrap {
  background: #231815;
  margin: 0 auto;
}
.m-ss__btnwrap:before, .m-ss__btnwrap:after {
  content: "";
  background-size: cover !important;
  position: absolute;
}
.m-ss__btnwrap:before {
  background-image: url("../img/ss_icon_01.png");
}
.m-ss__btnwrap:after {
  background-image: url("../img/ss_icon_02.png");
}
.m-ss__btnwrap p {
  color: #fff;
  font-weight: 500;
  text-align: center;
}
.m-ss__btnwrap h3 {
  color: #fff100;
  font-weight: 700;
  text-align: center;
}
.m-ss__btnbox {
  background: #fff;
}
.m-ss__btnbox h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #fff;
  font-weight: 700;
  background: #036eb8;
}
.m-ss__btnbox h4 em {
  color: #fff100;
}
.m-ss__btncol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.m-ss__btncol span {
  color: red;
  display: block;
  font-weight: 500;
}
@media (min-width: 768px) {
  .m-ss {
    padding: 50px 0;
  }
  .m-ss__lead {
    font-size: 16px;
    width: 800px;
    margin: 20px auto 40px;
  }
  .m-ss__col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 1010px;
    margin: 0 auto;
  }
  .m-ss__col li {
    width: 33%;
    padding: 0 15px;
  }
  .m-ss__ttl {
    width: 134px;
    height: 29px;
    font-size: 18px;
  }
  .m-ss__pct {
    margin-top: 16px;
    margin-bottom: 38px;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 395px;
  }
  .m-ss__note {
    font-size: 14px;
    width: 500px;
    margin-bottom: 30px;
  }
  .m-ss__boxwrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 800px;
  }
  .m-ss__boxwrap li {
    width: 33%;
  }
  .m-ss__boxwrap li.--wide {
    width: 100%;
  }
  .m-ss__btnwrap {
    width: 800px;
    padding: 35px 20px;
    margin: 30px auto;
  }
  .m-ss__btnwrap h3 {
    font-size: 20px;
  }
  .m-ss__btnwrap p {
    font-size: 16px;
  }
  .m-ss__btnwrap:before, .m-ss__btnwrap:after {
    top: -10px;
  }
  .m-ss__btnwrap:before {
    width: 86.5px;
    height: 137px;
    left: 30px;
  }
  .m-ss__btnwrap:after {
    width: 91.5px;
    height: 140px;
    right: 30px;
  }
  .m-ss__btnbox {
    margin-top: 20px;
    padding-bottom: 20px;
  }
  .m-ss__btnbox h4 {
    margin-bottom: 20px;
    padding: 5px 0;
    font-size: 16px;
  }
  .m-ss__btnbox h4 em {
    font-size: 20px;
  }
  .m-ss__btnbox span {
    font-size: 12px;
    margin-top: 10px;
  }
  .m-ss__label {
    margin: 30px auto;
    padding: 10px 0;
    width: 800px;
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .m-ss {
    padding: 12.8205128205vw 0;
  }
  .m-ss__lead {
    font-size: 3.5897435897vw;
    width: 90%;
    margin: 5.1282051282vw auto 10.2564102564vw;
  }
  .m-ss__ttl {
    width: 34.358974359vw;
    height: 7.4358974359vw;
    font-size: 4.6153846154vw;
    margin-left: 6.1538461538vw;
  }
  .m-ss__pct {
    width: 87.6923076923vw;
    margin-top: 4.1025641026vw;
    margin-bottom: 9.7435897436vw;
    -webkit-box-shadow: 0 0 1.5384615385vw rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 1.5384615385vw rgba(0, 0, 0, 0.2);
  }
  .m-ss__note {
    font-size: 2.8205128205vw;
    width: 87.6923076923vw;
    margin-bottom: 7.6923076923vw;
  }
  .m-ss__boxwrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 96%;
  }
  .m-ss__boxwrap li {
    width: 49%;
  }
  .m-ss__boxwrap li:nth-child(n+3) {
    margin-top: 5.1282051282vw;
  }
  .m-ss__btnwrap {
    width: 96%;
    padding: 8.9743589744vw 5.1282051282vw;
    margin: 7.6923076923vw auto;
  }
  .m-ss__btnwrap h3 {
    font-size: 5.1282051282vw;
  }
  .m-ss__btnwrap p {
    font-size: 3.5897435897vw;
  }
  .m-ss__btnwrap:before, .m-ss__btnwrap:after {
    top: -5.1282051282vw;
  }
  .m-ss__btnwrap:before {
    width: 12.8205128205vw;
    height: 20.2564102564vw;
    left: 7.6923076923vw;
  }
  .m-ss__btnwrap:after {
    width: 12.8205128205vw;
    height: 19.7435897436vw;
    right: 7.6923076923vw;
  }
  .m-ss__btncol {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .m-ss__btncol li:nth-child(n+2) {
    margin-top: 5.1282051282vw;
  }
  .m-ss__btnbox {
    margin-top: 5.1282051282vw;
    padding-bottom: 5.1282051282vw;
  }
  .m-ss__btnbox h4 {
    margin-bottom: 5.1282051282vw;
    padding: 5px 0;
    font-size: 4.1025641026vw;
  }
  .m-ss__btnbox h4 em {
    font-size: 5.1282051282vw;
  }
  .m-ss__btnbox span {
    font-size: 3.0769230769vw;
    margin-top: 2.5641025641vw;
    text-align: center;
  }
  .m-ss__label {
    margin: 7.6923076923vw auto;
    padding: 1.2820512821vw 0;
    width: 100%;
    font-size: 4.1025641026vw;
  }
}

.m-faq {
  background: #F7F6EF;
}
.m-faq .--cs {
  text-align: center;
  font-family: "Koulen", sans-serif;
}
.m-faq__box {
  overflow: hidden;
  margin: 0 auto;
}
.m-faq__box.is-open .m-faq__q:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.m-faq__q:before, .m-faq__a:before {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
}
.m-faq__q {
  background: #FCCF2C;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.m-faq__q:before {
  content: "Q";
  color: #E50606;
  position: absolute;
}
.m-faq__q:after {
  content: "";
  background-image: url("../img/arw_bk.png");
  background-size: cover;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.m-faq__q + div {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.3s ease-out;
  transition: height 0.3s ease-out; /* 0.3秒で滑らかに開閉 */
}
.m-faq__a {
  color: #1E1E1E;
  background: #FBF4C2;
  font-weight: 500;
}
.m-faq__a:before {
  content: "A";
  position: absolute;
}
@media (min-width: 768px) {
  .m-faq {
    padding: 50px 0 100px;
  }
  .m-faq .--cs {
    font-size: 54px;
  }
  .m-faq__box {
    border-radius: 14px;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    width: 864px;
  }
  .m-faq__box + .m-faq__box {
    margin-top: 13px;
  }
  .m-faq__q:before, .m-faq__a:before {
    top: 18px;
    left: 24px;
    font-size: 22px;
  }
  .m-faq__q {
    padding: 23px 47px 20px 55px;
  }
  .m-faq__q:after {
    width: 16px;
    height: 16px;
    right: 14px;
  }
  .m-faq__a {
    padding: 23px 13px 23px 55px;
  }
}
@media (max-width: 767px) {
  .m-faq {
    padding: 12.8205128205vw 0 25.641025641vw;
  }
  .m-faq .--cs {
    font-size: 8.2051282051vw;
  }
  .m-faq__box {
    border-radius: 3.5897435897vw;
    -webkit-box-shadow: 0 0 1.5384615385vw rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 1.5384615385vw rgba(0, 0, 0, 0.2);
    width: 87.6923076923vw;
  }
  .m-faq__box + .m-faq__box {
    margin-top: 3.3333333333vw;
  }
  .m-faq__q:before, .m-faq__a:before {
    top: 5.8974358974vw;
    left: 3.5897435897vw;
    font-size: 4.358974359vw;
  }
  .m-faq__q {
    padding: 5.8974358974vw 12.0512820513vw 5.1282051282vw 8.9743589744vw;
  }
  .m-faq__q:after {
    width: 4.1025641026vw;
    height: 4.1025641026vw;
    right: 3.5897435897vw;
  }
  .m-faq__a {
    padding: 5.8974358974vw 3.3333333333vw 5.8974358974vw 8.9743589744vw;
  }
}

.m-modal {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 100;
}
.m-modal.is-show {
  opacity: 1;
  visibility: visible;
}
.m-modal__bg {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.m-modal__box {
  background: #fff;
  position: fixed;
  margin: 0 auto;
  right: 0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  overflow-y: scroll;
}
.m-modal__ttl {
  text-align: center;
  font-weight: 700;
}
.m-modal__close {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .m-modal__box {
    width: 460px;
    padding: 18px;
    border-radius: 14px;
    max-height: 80vh;
  }
  .m-modal__box.--large {
    width: 800px;
  }
  .m-modal__pct {
    margin-bottom: 15px;
  }
  .m-modal__pct img {
    width: 100%;
  }
  .m-modal__ttl {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .m-modal__txt {
    font-size: 14px;
    margin-bottom: 45px;
  }
  .m-modal__close {
    width: 30px;
  }
}
@media (max-width: 767px) {
  .m-modal__box {
    width: 93.8461538462vw;
    padding: 4.6153846154vw;
    border-radius: 3.5897435897vw;
    max-height: 70vh;
  }
  .m-modal__box.--large .m-modal__pct {
    overflow: scroll;
  }
  .m-modal__box.--large .m-modal__pct img {
    max-width: none;
    width: 500px;
  }
  .m-modal__pct {
    margin-bottom: 3.8461538462vw;
  }
  .m-modal__ttl {
    font-size: 4.6153846154vw;
  }
  .m-modal__txt {
    font-size: 3.5897435897vw;
    margin-bottom: 11.5384615385vw;
  }
  .m-modal__close {
    width: 6.1538461538vw;
  }
}

.m-kv__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #1E1E1E;
  z-index: 1;
}
.m-kv__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
}
.m-kv__btn a:nth-child(1) {
  background: #fff;
  color: #1E1E1E;
}
.m-kv__btn a:nth-child(2) {
  color: #fff;
  border: 2px solid #fff;
}
.m-kv__btn:before {
  content: "";
  background: #5D5D5D;
  width: 2px;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.m-kv__btn:after {
  content: "";
  width: 0;
  height: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  position: absolute;
}
@media (min-width: 768px) {
  .m-kv__btn {
    height: 100px;
  }
  .m-kv__btn a {
    width: 240px;
    height: 44px;
    font-size: 20px;
    border-radius: 8px;
  }
  .m-kv__btn a + a {
    margin-left: 85px;
  }
  .m-kv__btn:before {
    height: 44px;
  }
  .m-kv__btn:after {
    bottom: -41px;
    border-top: 21px solid #1E1E1E;
    border-bottom: 21px solid transparent;
    border-right: 30px solid transparent;
    border-left: 30px solid transparent;
  }
}
@media (max-width: 767px) {
  .m-kv__btn {
    height: 14.8717948718vw;
  }
  .m-kv__btn a {
    width: 32.5641025641vw;
    height: 8.7179487179vw;
    font-size: 2.8205128205vw;
    border-radius: 1.5384615385vw;
  }
  .m-kv__btn a + a {
    margin-left: 10.2564102564vw;
  }
  .m-kv__btn:before {
    height: 8.7179487179vw;
  }
  .m-kv__btn:after {
    bottom: -5.8974358974vw;
    border-top: 3.0769230769vw solid #1E1E1E;
    border-bottom: 3.0769230769vw solid transparent;
    border-right: 3.8461538462vw solid transparent;
    border-left: 3.8461538462vw solid transparent;
  }
}

.m-movie__box {
  margin: 0 auto;
}
.m-movie__box iframe {
  width: 100%;
  height: 100%;
}
.m-movie__box.--cs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.m-movie__box.--cs:before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  z-index: 1;
}
.m-movie__box.--cs:after {
  content: "COMING SOON";
  color: #fff;
  text-align: center;
  position: absolute;
  right: 0;
  left: 0;
  z-index: 2;
  font-weight: 700;
}
@media (min-width: 768px) {
  .m-movie {
    padding: 50px 0;
  }
  .m-movie__box {
    width: 750px;
    height: 422px;
  }
  .m-movie__box:after {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .m-movie {
    padding: 12.8205128205vw 0;
  }
  .m-movie__box {
    width: 90%;
    height: 50.5128205128vw;
    font-size: 7.1794871795vw;
  }
}/*# sourceMappingURL=style.css.map */