@charset "UTF-8";
/*
import global components
*/
/*
#  scss mixin
1. background-image-retina
*/
/* about */
/*
    必須引数として「拡張子を除く画像パス」と「拡張子」を指定することで、メディアクエリのRetina対応コードを出力。
    */
/* usage */
/*
    // --- scss code
    .section--index.section--01.loaded {
        @include background-image-retina('../img/index/desktop/section--01', 'jpg');
        background-size: 1308px 600px;
    }

    // --- output css
    .section--index.section--01.loaded {
        background-image:url("../img/index/desktop/section--01.jpg");
        background-size:1308px 600px;
    }
    @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi){
        .section--index.section--01.loaded {
            background-image:url("../img/index/desktop/section--01@2x.jpg");
        }
    }
    ---
    */
.billboard {
  width: 100%;
}
@media (max-width: 639px) {
  .billboard {
    height: 65.625%;
    padding: 0 0 60px 0;
  }
}
@media (min-width: 640px) {
  .billboard {
    height: 49.27536232%;
    padding: 0 0 80px 0;
  }
}
.billboard img {
  width: 100%;
  height: auto;
}

.overview {
  padding: 0;
  text-align: center;
}
@media (max-width: 639px) {
  .overview {
    overflow: visible;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 60px;
    text-align: left;
  }
}
@media (min-width: 640px) {
  .overview {
    overflow: visible;
    width: 90%;
    max-width: 1118px;
    margin: 0 auto;
    padding-bottom: 80px;
  }
}
.overview > .title {
  font-family: "Montserrat";
  font-weight: bold;
  color: #000;
}
@media (max-width: 639px) {
  .overview > .title {
    margin-bottom: 40px;
    font-size: 40px;
    line-height: 1;
  }
}
@media (min-width: 640px) {
  .overview > .title {
    margin-bottom: 40px;
    font-size: 66px;
    line-height: 76px;
  }
}
.overview > .tagline {
  margin-bottom: 20px;
  line-height: 1.5;
  color: #000;
}
.overview > .introduction {
  text-align: left;
  font-size: 1.2rem;
}
.overview > .introduction p:not(:last-child) {
  margin-bottom: 20px;
}
.overview > .introduction p > a {
  color: #000;
  text-decoration: underline;
}
.overview > .introduction p > strong {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, #0000), color-stop(0%, #ffb100));
  background: linear-gradient(#0000 70%, #ffb100 0%);
  font-weight: bold;
  color: #000;
}

.information {
  position: relative;
  width: 100%;
  padding: 0;
  background-color: #6e3085;
  background: linear-gradient(165deg, #6e3085 0%, #028a92 59%);
  color: #fff;
}
@media (max-width: 639px) {
  .information > .view-area {
    width: 90%;
    margin: 0 auto;
    padding: 60px 0;
  }
}
@media (min-width: 640px) {
  .information > .view-area {
    overflow: visible;
    width: 90%;
    max-width: 1118px;
    margin: 0 auto;
    padding: 80px 0;
  }
}
.information > .view-area > dl dt {
  font-size: 1.4rem;
  font-weight: bold;
}
.information > .view-area > dl dd:not(:last-child) {
  margin-bottom: 40px;
}
.information > .view-area a {
  color: #fff;
}

.section__ma {
  width: 100%;
  padding: 0;
  background-color: #f2f2f2;
}
.section__ma .section-image {
  width: 100%;
  background: no-repeat center center;
  background-color: #f2f2f2;
}
@media (max-width: 639px) {
  .section__ma .section-image {
    height: 230px;
    margin-bottom: 60px;
    background-size: 640px 230px;
    background-image: url(".jpg");
  }
}
@media (max-width: 639px) and (-webkit-min-device-pixel-ratio: 1.5), (max-width: 639px) and (min-resolution: 144dpi) {
  .section__ma .section-image {
    background-image: url("@2x.jpg");
  }
}
@media (min-width: 640px) {
  .section__ma .section-image {
    height: 430px;
    margin-bottom: 90px;
    background-size: cover;
    background-image: url(".jpg");
  }
}
@media (min-width: 640px) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 640px) and (min-resolution: 144dpi) {
  .section__ma .section-image {
    background-image: url("@2x.jpg");
  }
}
@media (max-width: 639px) {
  .section__ma > .view-area {
    width: 90%;
    margin: 0 auto;
    padding: 0 0 60px 0;
  }
}
@media (min-width: 640px) {
  .section__ma > .view-area {
    overflow: visible;
    width: 90%;
    max-width: 1118px;
    margin: 0 auto;
    padding: 0 0 80px;
  }
}
.section__ma > .view-area > .title {
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}
@media (min-width: 640px) {
  .section__ma > .view-area > .text {
    margin-bottom: 60px;
  }
}
.section__ma > .view-area .products {
  display: -ms-grid;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(160px, calc(50% - 4px)));
}
@media (max-width: 639px) {
  .section__ma > .view-area .products {
    padding-bottom: 60px;
  }
}
@media (min-width: 640px) {
  .section__ma > .view-area .products {
    gap: 25px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}
.section__ma > .view-area .products .product {
  opacity: 1;
  padding: 30px 0;
  background-color: #fff;
  text-align: center;
  text-decoration: none;
}
.section__ma > .view-area .products .product img {
  width: 100%;
  height: auto;
  background: none;
  margin-bottom: 10px;
}
.section__ma > .view-area .products .product > .title {
  font-family: "Montserrat";
  margin: 0;
  padding: 0 5%;
  font-weight: bold;
  color: #000;
  height: calc(12px * 3.2);
  font-size: 12px;
  line-height: 1.5;
}
@media (min-width: 640px) {
  .section__ma > .view-area .products .product > .title {
    height: calc(16px * 3.2);
    font-size: 18px;
    line-height: 1.2;
  }
}
.section__ma > .view-area .products .product .text {
  margin-bottom: 0;
  padding: 0 5%;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
  color: #707070;
  font-size: 12px;
}
@media (min-width: 640px) {
  .section__ma > .view-area .products .product .text {
    font-size: 13px;
  }
}
.section__ma > .view-area .products .product .current_price {
  margin-left: -0.3em;
  color: #000;
}
.section__ma > .view-area .products .product .current_price::before {
  content: "¥";
  font-size: 0.6em;
}
.section__ma > .view-area .button {
  display: block;
  width: 160px;
  height: 40px;
  margin: 0 auto;
  background-color: #0DB5C6;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  line-height: 40px;
  color: #fff;
}
@media (min-width: 640px) {
  .section__ma > .view-area .button {
    margin-top: 80px;
  }
}

@media (max-width: 639px) {
  .contents > .view-area {
    width: 100%;
    padding: 60px 0;
  }
}
@media (min-width: 640px) {
  .contents > .view-area {
    overflow: visible;
    width: 90%;
    max-width: 1118px;
    margin: 0 auto;
    padding: 80px 0;
  }
}
@media (min-width: 640px) {
  .contents > .view-area > .buttons {
    display: -ms-grid;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, 340px);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
.contents > .view-area > .buttons > a {
  display: block;
  width: 340px;
  height: 68px;
  border-radius: 34px;
  font-size: 1.4rem;
  line-height: 68px;
  text-align: center;
  text-decoration: none;
}
@media (max-width: 639px) {
  .contents > .view-area > .buttons > a {
    width: 100%;
    height: 54px;
    margin-bottom: 10px;
    border-radius: 27px;
    font-size: 1.4rem;
    line-height: 54px;
  }
}
@media (min-width: 640px) {
  .contents > .view-area > .buttons > a {
    width: 340px;
    height: 68px;
    border-radius: 34px;
    font-size: 1.4rem;
    line-height: 68px;
  }
}
.contents > .view-area > .buttons > a.link_bundles {
  background-color: #6e3085;
  color: #fff;
}
.contents > .view-area > .buttons > a.link_plugins {
  background-color: #028a92;
  color: #fff;
}