@charset "utf-8";

* {
    box-sizing: border-box;
}

button,
label {
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
}

/* レスポンシブ
----------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
    .pc-only {
        display: none !important;
        /* PCのみ表示 */
    }
}

@media screen and (min-width: 769px) {
    .sp-only {
        display: none !important;
        /* SPのみ表示 */
    }
}


/* 分類：レイアウト
----------------------------------------------------------------------------- */
/* インナーレイアウト */
.inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width:768px) {
    .inner {
        width: 100%;
        padding: 0 20px;
    }
}

/* セクション */
section {}

@media screen and (max-width:768px) {
    section {}
}

/* カラムレイアウト */
.col {
    width: 100%;
    display: flex;
}

/* ２カラム */
.col-2 {
    width: 50%;
}

/* ３カラム */
.col-3 {
    width: calc(100% / 3);
}

@media screen and (max-width:768px) {

    /* カラムレイアウト */
    .col {
        width: 100%;
        display: block;
    }

    /* ２カラム */
    .col-2 {
        display: block;
        width: 100% !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
        margin-bottom: 15px;
    }

    /* ３カラム */
    .col-3 {
        display: block;
        width: 100% !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
        margin-bottom: 15px;
    }

    .col .col-2:last-child,
    .col .col-3:last-child {
        margin-bottom: 0;
    }
}

/* 分類：文字・背景
----------------------------------------------------------------------------- */

/* 強調テキスト */
.fc-strong {
    font-weight: bold;
    background: linear-gradient(transparent 30%, #fef6b2 30%);
    padding: 0 5px;
}

.bold {
    font-weight: bold;
}

@media screen and (max-width:768px) {}

/* 分類：ボタン
----------------------------------------------------------------------------- */

.btn-subscribe01,
.btn-subscribe02 {
    width: 100%;
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.1em;
    background-color: #0584CD;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
}


/* サブスクライブ１（小さめ） */
.btn-subscribe01 {
    width: 300px;
    height: 60px;
    line-height: 60px;
    border-radius: 30px;
    font-size: 18px;
}

.btn-subscribe01::after {
    content: "";
    width: 32px;
    height: 32px;
    display: inline-block;
    background-image: url("../images/btn_icn02.png");
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-top: -5px;
    margin-left: 15px;
}

.btn-subscribe01 span {
    vertical-align: middle;
    display: inline-block;
}

.btn-subscribe01:hover {
    opacity: 0.7;
}

@media screen and (max-width:768px) {
    .btn-subscribe01 {
        width: 200px;
        height: 50px;
        line-height: 50px;
        font-size: 16px;
    }
}

/* サブスクライブ２（大きめ） */
.btn-subscribe02 {
    width: 100%;
    max-width: 220px;
    height: 50px;
    line-height: 46px;
    font-size: 16px;
    font-weight: normal;
    border: 2px solid #0584CD;
    overflow: hidden;
    border-radius: 10px;
}

.btn-subscribe02 span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 5;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-subscribe02:hover span {
    color: #0584CD;
}

.btn-subscribe02::after {
    display: block;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    content: "";
    top: 0;
    left: -100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-subscribe02:hover::after {
    left: 0;
}

@media screen and (max-width:768px) {
    .btn-subscribe02 {
        height: 60px;
        line-height: 60px;
        font-size: 18px;
    }
}

/* サブスクライブ３ */
.btn-subscribe03 {
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 400;
    border-radius: 30px;
    border: none;
    background-image: linear-gradient(120deg, #90bcd1 0%, #419dd0 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: inline-block;
}

.btn-subscribe03 img {
    width: 30px;
    height: auto;
    display: inline-block !important;
    margin-right: 5px;
    vertical-align: middle;
}

.btn-subscribe03>* {
    display: inline-block;
    transition: all ease-in-out .5s;
}

.btn-subscribe03 .btn__visible {
    padding: 15px 30px;
    text-align: center;
}

.btn-subscribe03 .btn__invisible {
    width: 100%;
    position: absolute;
    padding: 15px 30px;
    left: 0;
    top: -100%;
    text-align: center;
}

.btn-subscribe03:hover {
    background-image: linear-gradient(160deg, #90bcd1 0%, #419dd0 100%);
}

.btn-subscribe03:hover .btn__visible {
    transform: translateY(100%);
}

.btn-subscribe03:hover .btn__invisible {
    top: 0;
}

.btn-subscribe03:focus {
    outline: none;
}

/* 通常リンク（黒） */
.btn-link01 {
    display: inline-block;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.1em;
    position: relative;
    padding: 0 20px 0 0;
}

.btn-link01::before,
.btn-link01::after {
    content: "";
    position: absolute;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #111;
    display: block;
}

.btn-link01::before {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
}

.btn-link01::after {
    bottom: 5px;
    right: -3px;
    width: 15px;
    height: 1px;
    transform: rotate(45deg);
}

.btn-link01:hover::before {
    right: -10px;
}

.btn-link01:hover::after {
    right: -13px;
}

@media screen and (max-width:768px) {
    .btn-link01 {
        height: 50px;
        line-height: 50px;
        font-size: 18px;
        padding: 0 20px 0 0;
    }
}

/* 通常リンク（白） */
.btn-link02 {
    display: inline-block;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.1em;
    position: relative;
    padding: 0 20px 0 0;
    color: #fff;
}

.btn-link02::before,
.btn-link02::after {
    content: "";
    position: absolute;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #fff;
    display: block;
}

.btn-link02::before {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
}

.btn-link02::after {
    bottom: 5px;
    right: -3px;
    width: 15px;
    height: 1px;
    transform: rotate(45deg);
}

.btn-link02:hover::before {
    right: -10px;
}

.btn-link02:hover::after {
    right: -13px;
}

@media screen and (max-width:768px) {
    .btn-link02 {
        height: 50px;
        line-height: 50px;
        font-size: 18px;
        padding: 0 20px 0 0;
    }
}

/* ボタン（アニメーション） */
.btn-anime {
    outline: 0;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #40B3A2;
    min-width: 300px;
    border: 0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    box-sizing: border-box;
    padding: 16px 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    position: relative;
}

.btn-anime::after {
    content: "";
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url("../images/btn_icn01.png");
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    right: 30px;
}

.btn-anime:hover {
    opacity: .8;
}

.btn-anime .animation {
    border-radius: 100%;
    animation: ripple 0.6s linear infinite;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
    }
}

/* MV内ボタン */
.btn-mv {
    display: inline-block;
    font-size: 20px;
    min-width: 250px;
    height: 60px;
    line-height: 60px;
    border-radius: 30px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    background: rgb(22, 106, 164);
    background: linear-gradient(297deg, rgba(22, 106, 164, 1) 0%, rgba(74, 189, 207, 1) 100%);
}

.btn-mv img {
    display: inline-block;
    margin-left: 15px;
    height: 40px;
    width: auto;
    vertical-align: middle;
}

/* キラキラエフェクトボタン */
.btn-shine {
    position: relative;
    padding: 12px 35px;
    background: #2c9caf;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #ffffff;
    border: 3px solid #2c9caf;
    border-radius: 8px;
    box-shadow: 0 0 0 #ffffff;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.btn-shine .star-1 {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 25px;
    height: auto;
    filter: drop-shadow(0 0 0 #2c9caf);
    z-index: -5;
    transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.btn-shine .star-2 {
    position: absolute;
    top: 45%;
    left: 45%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0 #2c9caf);
    z-index: -5;
    transition: all 1scubic-bezier(0, 0.4, 0, 1.01);
}

.btn-shine .star-3 {
    position: absolute;
    top: 40%;
    left: 40%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0 #2c9caf);
    z-index: -5;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.btn-shine .star-4 {
    position: absolute;
    top: 20%;
    left: 40%;
    width: 8px;
    height: auto;
    filter: drop-shadow(0 0 0 #2c9caf);
    z-index: -5;
    transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.btn-shine .star-5 {
    position: absolute;
    top: 25%;
    left: 45%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0 #2c9caf);
    z-index: -5;
    transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
}

.btn-shine .star-6 {
    position: absolute;
    top: 5%;
    left: 50%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0 #2c9caf);
    z-index: -5;
    transition: all 0.8s ease;
}

.btn-shine:hover {
    background: transparent;
    color: #2c9caf;
    box-shadow: 0 0 0px #2c9caf;
}

.btn-shine:hover .star-1 {
    position: absolute;
    top: -80%;
    left: -30%;
    width: 25px;
    height: auto;
    filter: drop-shadow(0 0 0px #2c9caf);
    z-index: 2;
}

.btn-shine:hover .star-2 {
    position: absolute;
    top: -0%;
    left: 10%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0px #2c9caf);
    z-index: 2;
}

.btn-shine:hover .star-3 {
    position: absolute;
    top: 55%;
    left: 25%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0px #2c9caf);
    z-index: 2;
}

.btn-shine:hover .star-4 {
    position: absolute;
    top: 30%;
    left: 80%;
    width: 8px;
    height: auto;
    filter: drop-shadow(0 0 0px #2c9caf);
    z-index: 2;
}

.btn-shine:hover .star-5 {
    position: absolute;
    top: 25%;
    left: 115%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0px #2c9caf);
    z-index: 2;
}

.btn-shine:hover .star-6 {
    position: absolute;
    top: 5%;
    left: 60%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0px #2c9caf);
    z-index: 2;
}

.btn-shine .fil0 {
    fill: #2c9caf;
}

/* カートボタン */
.btn-cart {
    padding: 1em 2em;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 5px;
    text-transform: uppercase;
    cursor: pointer;
    color: #006eb8;
    transition: all 1000ms;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    outline: 2px solid #006eb8;
    display: inline-block;
    text-decoration: none;
    background-color: #EFEDEA;
}

.btn-cart:hover {
    color: #ffffff;
    transform: scale(1.1);
    outline: 2px solid #70bdca;
    box-shadow: 4px 5px 17px -4px #006eb8;
}

.btn-cart::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #006eb8;
    transform: skewX(45deg);
    z-index: -1;
    transition: width 1000ms;
}

.btn-cart:hover::before {
    width: 250%;
}

.btn-cart::after {
    content: "";
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url("../images/btn_icn03.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    margin-top: -3px;
    margin-left: 10px;
    vertical-align: middle;
}

.btn-cart:hover::after {
    background-image: url("../images/btn_icn03_hover.png");
}


/* 分類：インプット系
----------------------------------------------------------------------------- */
input[type="text"],
input[type="date"],
input[type="time"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
    font-family: inherit;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 10px;
    font-size: 16px;
}

select {
    cursor: pointer;
    padding-right: 30px !important;
    background-repeat: no-repeat;
    background-size: 10px 5px;
    background-position: right 10px center;
}

input[type="text"],
input[type="email"] {
    width: 100%;
}

textarea {
    width: 100%;
    min-height: 100px;
    resize: vertical;
}


/** レイアウト修正 **/
input[type="text"],
input[type="date"],
input[type="time"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="url"],
textarea {
    font-weight: 500;
    border: none;
    border-bottom: 1px solid;
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    outline: none;
    background-color: #efedea;
}

textarea {
    resize: none;
}

input[type="submit"] {
    text-transform: uppercase;
    font-weight: 300;
    width: 10rem;
    height: 2.25rem;
    border: none;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    background-color: #3B3636;
    color: #FCFDFD;
    text-align: center;
    letter-spacing: 0.1rem;
    display: block;
}

input[type="text"]:hover,
input[type="date"]:hover,
input[type="time"]:hover,
input[type="email"]:hover,
input[type="password"]:hover,
input[type="number"]:hover,
input[type="url"]:hover,
textarea:hover,
input[type="submit"]:hover {
    opacity: 0.5;
}

input[type="submit"]:active {
    opacity: 0.8;
}

@media screen and (max-width: 1100px) {

    input[type="text"],
    input[type="date"],
    input[type="time"],
    input[type="password"],
    input[type="number"],
    select,
    textarea {
        padding: 5px;
    }
}

/**
.wpcf7-form input[type="submit"]{
    display: inline-block;
    width:100%;
    max-width:250px;
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    letter-spacing:0.1em;
    background-color: #0584CD;
    color:#fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    position: relative;
    height: 60px;
    line-height: 60px;
    font-size:20px;
    border:none;
    border-radius: 30px;
}
**/

/* 分類：見出し
----------------------------------------------------------------------------- */
/* 大見出し */
.ttl-L {
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #003152;
    line-height: 1.2;
}

.ttl-L span {
    display: block;
    font-size: 20px;
}

.ttl-sub {
    font-size: 26px;
    font-weight: 400;
    color: #409DCF;
    font-family: "Magnolia";
}

.ttl-L.is-border {
    position: relative;
    text-align: center;
}

.ttl-L.is-border::after {
    content: "";
    width: 160px;
    height: 7px;
    background-color: #B2B2B2;
    display: block;
    margin: 10px auto;
}

@media screen and (max-width:768px) {
    .ttl-L {
        font-size: 25px;
    }

    .ttl-sub {
        font-size: 20px;
    }
}

/* 中見出し */
.ttl-M {
    font-size: 23px;
    font-weight: bold;
    margin-bottom: 20px;
}

@media screen and (max-width:768px) {
    .ttl-M {}
}

/* 小見出し */
.ttl-S {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #BA8F41;
}

@media screen and (max-width:768px) {
    .ttl-S {}
}

.woocommerce h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
}

/* 分類：導入文
----------------------------------------------------------------------------- */
.intro {
    margin-bottom: 50px;
    text-align: center;
}

.intro-catch {
    font-size: 20px;
    font-weight: bold;
}

@media screen and (max-width:768px) {}

/* 分類：ボックス
----------------------------------------------------------------------------- */
/* 画像 */
.box-img {
    border-radius: 20px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 600px;
    overflow: hidden;
}

.box-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
    max-width: 9999px;
}

@media screen and (max-width:768px) {
    .box-img {
        height: 200px;
    }

    .box-img img {
        height: auto;
        width: 100%;
    }
}


/* 白グラデ背景 */
.box-white {
    border-radius: 20px;
    padding: 20px;
    background-image: linear-gradient(142deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
}

@media screen and (max-width:768px) {}

/* 引用ボックス */
.box-quote {
    background-image:
        url("../images/quote_start.png"),
        url("../images/quote_end.png");
    background-position:
        left top,
        right bottom;
    background-repeat: no-repeat, no-repeat;
    padding: 30px 50px 0;
    margin-bottom: 30px;
}

@media screen and (max-width:768px) {
    .box-quote {
        padding: 15px 15px 0;
        margin-bottom: 30px;
    }
}


/* article
----------------------------------------------------------------------------- */
.article {
    padding: 0 0 100px;
}

.article h1,
.article h2,
.article h3,
.article h4,
.article h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

.article h1 {
    font-size: 25px;
}

.article h2 {
    font-size: 20px;
}

.article h3 {
    font-size: 18px;
}

.article b {
    font-weight: 600;
}

.article p {
    margin-bottom: 30px;
    font-weight: lighter !important;
}

.article p strong {
    font-weight: bold !important;
}

@media screen and (max-width:768px) {}


/* 汎用セクション：MV
----------------------------------------------------------------------------- */
.mv-inner-box {
    text-shadow: none;
    color: #fff;
}

.mv-inner-box.mv-inner-box-lb {
    padding: 50px;
    background-color: rgba(95, 95, 95, 0.8);
    display: inline-block;
    width: auto;
    bottom: 0;
}

.mv-ttl-sub {
    font-size: 28px;
}

@media screen and (max-width:768px) {
    .mv-inner-box.mv-inner-box-lb {
        padding: 15px;
        position: absolute;
    }

    .mv-inner-box.mv-inner-box-rb {
        right: 0;
        bottom: 0;
    }

    .top-mv-slider li {
        margin: 0;
    }

    .mv-subscribe-btn {
        padding: 15px;
        text-align: center;
        position: relative;
    }
}

/* 汎用セクション：REVIEW
----------------------------------------------------------------------------- */
.asset-review {
    padding: 100px 0;
    color: #fff;
    background-color: #A7D1DD;
}

.asset-review-ttl {
    text-align: center;
    margin-bottom: 30px;
}

.asset-review-slider-comment {
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 600;
    width: 80%;
    margin: 0 auto;
}

.asset-review-slider-rate {
    text-align: center;
    font-size: 25px;
    color: #CCC181;
    margin-bottom: 20px;
}

.asset-review-slider-name {
    margin-bottom: 30px;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
}

.asset-review-thumbnail ul {
    display: block;
    width: 100%;
    text-align: center;
}

.asset-review-thumbnail ul li {
    margin: 0 10px;
    cursor: pointer;
}

.asset-review-thumbnail ul li img {
    position: absolute;
    top: 0;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slick-img-wrap {
    position: relative;
    padding-top: 100%;
    width: 100%;
}

@media screen and (max-width:768px) {
    .asset-review {
        padding: 50px 0;
    }

    .asset-review-ttl {
        margin-bottom: 20px;
    }

    .asset-review-slider-comment {
        font-size: 18px;
    }

    .asset-review-slider-rate {
        text-align: center;
        font-size: 25px;
        color: #f0d526;
        margin-bottom: 20px;
    }

    .asset-review-slider-name {
        font-size: 24px;
    }

    .asset-review-thumbnail {
        padding: 0;
    }

    .asset-review-thumbnail ul {
        padding: 0;
    }

    .asset-review-thumbnail ul li {
        margin: 0 5px;
        cursor: pointer;
    }
}

/* 汎用セクション： SUBSCRIPTION
----------------------------------------------------------------------------- */
.asset-subscription {
    padding: 100px 0;
    background-color: #F1F1F1;
}


/* img */
.asset-subscription-col-img {}

.asset-subscription-col-img img {
    border-radius: 10px;
}

.asset-subscription-slider-main {
    margin-bottom: 0;
}

.asset-subscription-slider-thumbnail {
    width: 100%;
    max-width: 500px;
}

.asset-subscription-slider-thumbnail li {
    margin: 0 5px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.asset-subscription-slider-thumbnail li img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.asset-subscription-slider-thumbnail .box {
    margin-top: 100%;
    width: 100%;
    height: auto;
}

.asset-subscription-slider-main {
    width: calc(100% - 100px);
    height: 455px;
    margin-bottom: 20px;
}

.asset-subscription-slider-main li {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 455px;
}

.asset-subscription-slider-main li img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
    max-width: 9999px;
}

/* txt */
.asset-subscription-col-txt {
    padding-left: 30px;
}

.asset-subscription-col-txt .ttl-L {
    font-size: 36px;
}

.asset-subscription-col-txt-ttl {
    display: inline-block;
    color: #fff;
    background-color: #0069FF;
    font-size: 20px;
    font-weight: 600;
    border-radius: 25px;
    padding: 10px 20px;
    margin-bottom: 10px;
}

/* course select */
.asset-subscription-col-txt-form-select {
    margin-bottom: 30px;
}

.asset-subscription-col-txt-form-select li {
    margin-bottom: 10px;
}

.asset-subscription-col-txt-form-select li label {
    display: flex;
    width: 100%;
    border-radius: 10px;
    background-color: #DAE6EB;
    align-items: center;
    padding: 5px 20px;
}

.asset-subscription-col-txt-form-select li label.is-selected {
    background-color: #3399FF;
    color: #fff;
}

.asset-subscription-col-txt-form-select li label input[type="radio"] {
    display: none;
}

.asset-subscription-col-txt-form-select li .month {
    font-size: 25px;
    font-weight: bold;
    margin-right: 30px;
    width: 30%;
}

.asset-subscription-col-txt-form-select li .month span {
    font-weight: normal;
    font-size: 15px;
    display: block;
    color: #a38e40;
}

.asset-subscription-col-txt-form-select li .tag {
    width: 25%;
}

.asset-subscription-col-txt-form-select li .tag span {
    display: inline-block;
    padding: 2px 15px;
    border-radius: 20px;
    color: #fff;
    font-size: 13px;
}

.asset-subscription-col-txt-form-select li .value {
    text-align: right;
    font-size: 30px;
    font-weight: bold;
    width: 45%;
}

.asset-subscription-col-txt-form-select li .value span {
    font-weight: normal;
    font-size: 16px;
}

/* submit */
.asset-subscription-col-txt-form-btn {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
    margin-bottom: 30px;
}

.asset-subscription-col-txt-form-btn .col {
    align-items: center;
}

.asset-subscription-col-txt-form-btn .col-2:nth-child(1) {
    width: 60%;
}

.asset-subscription-col-txt-form-btn .col-2:nth-child(2) {
    width: 40%;
}

.asset-subscription-col-txt-form-btn .total-price {}

.asset-subscription-col-txt-form-btn .total-price strong {
    font-size: 40px;
    font-weight: bold;
}

.asset-subscription-col-txt-form-btn .total-price span {
    font-size: 25px;
    text-decoration: line-through;
    display: inline-block;
    margin-left: 10px;
    color: #a38e40;
}

.asset-subscription-col-txt-form-btn .total-price .ttl-S {
    margin-bottom: 0;
}

.asset-subscription-col-txt-form-btn button {
    display: block;
    width: 100%;
    height: 120px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0px 3px 10px 3px rgba(0, 0, 0, 0.1);
    background-color: #FF4F50;
    color: #fff;
    letter-spacing: 0.1em;
    padding: 0 30px;
    border: none;
    border-radius: 10px;
}

.asset-subscription-col-txt-experience .ttl-S {
    color: #3399FF;
}

.asset-subscription-col-txt-experience ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.asset-subscription-col-txt-experience ul li .ttl-S {
    color: #5096A2;
    margin-bottom: 0;
}

.asset-subscription-col-txt-experience .asset-subscription-list-txt strong {
    font-weight: bold;
}

.asset-subscription-list {
    margin-top: 30px;
}

.asset-subscription-list ul {
    display: flex;
    flex-wrap: wrap;
}

.asset-subscription-list ul li {
    width: calc(50% - 15px);
    margin-right: 30px;
    margin-bottom: 20px;
    display: flex;
}

.asset-subscription-list ul li:nth-child(2n) {
    margin-right: 0;
}

.asset-subscription-list-icn {
    width: 50px;
    margin-right: 20px;
}

.asset-subscription-list-txt {
    width: calc(100% - 50px);
}

@media screen and (max-width:768px) {
    .asset-subscription {
        padding: 50px 0;
    }

    .asset-subscription-col-img {
        margin-bottom: 30px;
    }

    /* txt */
    .asset-subscription-col-txt {
        padding-left: 0;
    }

    .asset-subscription-col-txt-ttl {
        font-size: 20px;
        margin-bottom: 10px;
    }

    /* course select */
    .asset-subscription-col-txt-form-select li label {
        padding: 5px 10px;
    }

    .asset-subscription-col-txt-form-select li .month {
        font-size: 17px;
        margin-right: 10px;
        width: 30%;
    }

    .asset-subscription-col-txt-form-select li .month span {
        font-weight: normal;
        font-size: 15px;
        display: block;
        color: #a38e40;
    }

    .asset-subscription-col-txt-form-select li .tag span {
        display: inline-block;
        padding: 2px 10px;
        border-radius: 20px;
        color: #fff;
        font-size: 11px;
    }

    .asset-subscription-col-txt-form-select li .value {
        font-size: 18px;
    }

    .asset-subscription-col-txt-form-select li .value span {
        font-size: 12px;
    }

    /* submit */
    .asset-subscription-col-txt-form-btn .total-price strong {
        font-size: 25px;
    }

    .asset-subscription-col-txt-form-btn .total-price span {
        font-size: 20px;
    }

    .asset-subscription-col-txt-form-btn .total-price .ttl-S {
        margin-bottom: 0;
    }

    .asset-subscription-col-txt-form-btn button {
        height: 60px;
    }

    .asset-subscription-slider-thumbnail {
        width: 100%;
    }

    .asset-subscription-slider-thumbnail li {
        margin: 0 2.5px;
        overflow: hidden;
        position: relative;
        border-radius: 10px;
    }

    .asset-subscription-slider-main {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .asset-subscription-slider-main li {
        aspect-ratio: 1 / 1;
        width: 100%;
        height: auto;
    }

}

/* 汎用セクション： woocommerseページ埋め込み
----------------------------------------------------------------------------- */
/* 動画埋め込み */
.woocommerce .cmplz-video{
	max-width: 100%;
}
/* コンテンツ埋め込み */
.woocommerce .wp-embedded-content{
	max-width: 100%;
}