@charset "UTF-8";


#app {
    position: relative;
}




.pc-only {
    display: none;
}

.sp-only {
    display: block;
}




.inner {
    padding: 0 3%;
}

.section-title {
    font-size: clamp(30px, 5vw, 48px);
    /*font-weight: bold;*/
    margin-bottom: 30px;
    text-align: center;
}

.section-title-icon {
    width: 10%;
    margin: 0 auto 5px;
    display: block;
}

.section-title .small {
    display: block;
    /*font-weight: bold;*/
    font-size: clamp(16px, 3vw, 24px);
}




@media screen and (min-width: 768px) {
    .pc-only {
        display: block;
    }

    .sp-only {
        display: none;
    }


    .inner {
        width: 1080px;
        margin: auto;
        padding: 0;
    }

    .section-title {
        margin-bottom: 45px;
    }

    .section-title-icon {
        width: 5%;
        margin: 0 auto 15px;
        line-height: 0;
    }

}

/*------------------------

MV

-------------------------*/



.mv-area {
    position: relative;
    background: url(/feature/app/images/mv-sp.jpg) no-repeat top center / cover;
    aspect-ratio: 25/34;
    width: 100%;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: end;
}




.mv-main-block {
    /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; */
    width: 90%;
    margin: 0 auto;
}

.mv-area-title {
    font-weight: bold;
    position: relative;
    display: flex;
    align-items: end;
    line-height: 1.25;
    font-size: clamp(40px, calc(28.732px + 3.005vw), 72px);
}



.mv-area-sub-title {
    display: flex;
    /*font-weight: bold;*/
    font-size: clamp(12px, calc(12.757px + 0.065vw), 14px);
}



.mv-area-lead-icon {
    width: 10%;
    margin-right: 5px;
}


.mv-area-icon-list {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto 3%;
}

.mv-area-icon-item {
    width: 45%;
}


.mv-area-lead {
    font-size: clamp(12px, calc(11.515px + 0.129vw), 14px);
    margin: 0 0 clamp(10px, 7vw, 30px);
    line-height: 1.75;
}



@media screen and (min-width: 768px) {
    .mv-area {
        position: relative;
        background: url(/feature/app/images/mv-pc.jpg) no-repeat top center / cover;
        aspect-ratio: 96/25;
        display: flex;
        align-items: center;
    }

    .mv-area-lead-icon {
        width: 40px;
    }

    .mv-area-icon-item {
        width: 180px;
    }

    .mv-area-icon-item.pc-only {
        width: 55px;
    }

    .mv-main-block {
        padding: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: stretch;
        margin: 0 auto 0 clamp(20px, 17.1875vw, 330px);
    }



    .mv-area-icon-list {
        justify-content: flex-start;
        margin: 0;
    }

    .mv-area-icon-item {
        margin-right: 10px;
    }
}



/*----------------------------

クーポン

----------------------------*/
.coupon-area {
    padding: 60px 0;
    background-color: #fff;
}

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

    .coupon-area .inner {
        width: 800px;
    }
}



/*----------------------------

特徴

----------------------------*/
/* .feature-area-wrap {
    background-size: auto auto;
    background-color: rgba(255, 255, 255, 1);
    background-image: repeating-linear-gradient(167deg,
            rgba(245, 234, 215, 1),
            rgba(245, 234, 215, 1) 30vh,
            transparent 30svh,
            transparent 60vh);
} */


.feature-area-wrap {
    background-size: auto auto;
    background-color: rgba(255, 255, 255, 1);
    background-image: repeating-linear-gradient(167deg,
            rgba(245, 234, 215, 1),
            rgba(245, 234, 215, 1) 300px,
            transparent 300px,
            transparent 650px);
}


.feature-area {
    padding: 60px 0 0;
}

.feature-block {
    padding: 0 20px 90px;
}

.feature-block-title .small {
    display: flex;
}

.feature-block-img {
    width: 40%;
    margin: 0 auto 20px;
}

.feature-title-box {
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 0 auto 20px;
    justify-content: center;
}

.feature-icon {
    width: 10%;
    margin-right: 5px;
}


.feature-block-title {
    font-size: 20px;
    /*font-weight: bold;*/
    text-align: left;
}

.feature-block-title .small {
    font-size: 12px;
    /*font-weight: bold;*/
    display: block;
}

.feature-block-txt {
    font-size: 16px;
    line-height: 1.66;
}

@media screen and (min-width: 768px) {
    .feature-area-wrap {
        background-image: repeating-linear-gradient(167deg,
                rgba(245, 234, 215, 1),
                rgba(245, 234, 215, 1) 600px,
                transparent 600px,
                transparent 1500px);
    }



    .feature-block {
        display: flex;
        align-items: center;
        margin: 0 0 60px;
    }

    .feature-area .feature-block:nth-of-type(2) .feature-block-pic-part {
        order: 2;
    }

    .feature-area .feature-block:nth-of-type(2) .feature-block-detail-part {
        order: 1;
    }


    .feature-title-box {
        width: fit-content;
        margin: 0 0 20px 0;
    }


    .feature-icon {
        width: 80px;
        margin-right: 10px;
    }


    .feature-block-title {
        font-size: 36px;
    }

    .feature-block-title .small {
        font-size: 20px;
        /*font-weight: bold;*/
        display: block;
    }

    .feature-block-pic-part {
        width: 45%;
    }

    .feature-block-detail-part {
        width: 55%;
    }

    .feature-block-img {
        width: 50%;
        margin: auto;
    }


}


/*----------------------------

その他の特徴

----------------------------*/
.other-feature-area {
    padding: 0 0 60px;
}

.other-feature-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5%;
    padding: 0;
    margin: 0;
    row-gap: 20px;
}

.other-feature-item {
    text-align: center;
    width: 30%;
}



.other-feature-item-title {
    /*font-weight: bold;*/
    font-size: 3.5vw;
    text-align: center;
    margin-bottom: 5px;
}

.other-feature-item-title .small {
    display: block;
    /*font-weight: bold;*/
    font-size: 2.25vw;
}

.other-feature-item-pic {
    margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
    .other-feature-list {
        justify-content: space-between;
    }

    .other-feature-item {
        width: 15%;
    }

    .other-feature-item-title .small {
        font-size: 10px;
    }

    .other-feature-item-title {
        font-size: 18px;
    }

}



/*----------------------------

今すぐダウンロード

----------------------------*/
.download-area {
    background: linear-gradient(180deg, #fff 0%, #fff 25%, #f7f7f7 25%, #f7f7f7 100%);
}

.download-area.bottom {
    background: #f7f7f7;
    padding: 60px 0;
}



.download-block {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 0 20px 0;
}

.bottom .download-block {
    padding: 30px 0;
}

.download-block-detail-part-bnr {
    margin: 0 auto 20px;
}

.download-block-pic-part {
    width: 25%;
    padding: 0 0 10px 0;
}



.download-block-detail-part {
    width: 60%;
    padding: 60px 0 0 0;
}

.bottom .download-block-detail-part {
    padding: 0;
}

.download-block-title {
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    margin: 0 auto 15px;
}

.download-block-title .small {
    font-weight: bold;
    font-size: 9px;
    display: block;
}


.download-block-icon-list {
    display: flex;
    justify-content: space-around;
}


@media screen and (min-width: 768px) {
    .download-area {
        padding: 60px 0 0;
    }

    .download-area .inner {
        width: 900px;
    }

    .download-block-icon-list {
        justify-content: space-between;
    }

    .download-block-title {
        font-size: 36px;
    }

    .download-block-title .small {
        font-size: 16px;
    }

    .download-block-icon-list {
        width: 430px;
    }

    .download-block-detail-part {
        width: 60%;
        padding: 60px 0 0 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .download-block-detail-part-bnr {
        width: 400px;
        margin: 0 auto 20px;
    }

    .download-block .mv-area-icon-list {
        justify-content: space-between;
    }
}

/*----------------------------

アプリ会員登録手順

----------------------------*/

.howto-area {
    background-color: #fff;
    padding: 60px 0;
}

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

    .howto-area {
        padding: 90px 0 0;
    }

}


.tab-container {
    width: 100%;
    margin: 50px auto;
}


.tab-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    justify-content: space-between;
}

.tab-menu li {
    /*font-weight: bold;*/
    font-size: 1rem;
    width: 30%;
    padding: 10px;
    border-radius: 25px;
    text-align: center;
    cursor: pointer;
    background: #999999;
    transition: background 0.3s;
    color: #fff;
}

.tab-menu li:hover {
    background: #e0e0e0;
}

.tab-menu li.active {
    background: #BC2B54;
    /*font-weight: bold;*/
}

.tab-content {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease, height 0.5s ease;
    counter-reset: item;
}

.tab-content.active {
    opacity: 1;
    visibility: visible;
    height: auto;
    /* 中身に合わせて高さが広がる */
}

.tab-menu li.active {
    /*font-weight: bold;*/
}


.tab-content-item-img {
    position: relative;
    margin-bottom: 10px;
}

.tab-content-item-img:before {
    counter-increment: item;
    content: counter(item);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 100;
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
    line-height: 0;
    border-radius: 50%;
    background: #b32d50;
    color: #fff;
    font-size: 14px;
    /*font-weight: bold;*/
}

.tab-content-item-arrow {
    width: 32px !important;
    display: flex;
    height: auto;
    align-items: center;
    padding: 5px;
    margin: 30% 0 auto;
}

.tab-content-item-txt {
    /*font-weight: bold;*/
    font-size: 12px;
}

@media screen and (min-width: 768px) {
    .tab-menu {
        margin: 0 auto 45px;
    }



    .tab-content-list {
        display: flex;
        justify-content: center;
    }


    .tab-menu li {
        font-size: 16px;
    }

    .tab-content-item {
        width: 150px;
        min-height: 420px;
    }


    .tab-content-item-arrow {
        padding: 5px;
        margin: 13% 10px auto;
    }


}


/*-----------------------

アニメーション

------------------------*/


.feature-block-detail-part {
    overflow: hidden;
    opacity: 0;
    /* ← 最初は透明 */
    transition: opacity 0.5s ease;
}

.feature-block-detail-part.is-active {
    opacity: 1;
    /* ← is-active が付いたら親も表示 */
}

.feature-block-detail-part .inn {
    opacity: 0;
    transform: translateY(100px);
    /* ← 下にずらして隠す */
    transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-block-detail-part.is-active .inn {
    opacity: 1;
    transform: translateY(0);
    /* ← 元の位置に戻す */
}


.other-feature-list {
    overflow: hidden;
    opacity: 0;
    /* ← 最初は透明 */
    transition: opacity 0.5s ease;
}

.other-feature-list.is-active {
    opacity: 1;
    /* ← is-active が付いたら親も表示 */
}

.other-feature-list .inn {
    opacity: 0;
    transform: translateY(100px);
    /* ← 下にずらして隠す */
    transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.other-feature-list.is-active .inn {
    opacity: 1;
    transform: translateY(0);
    /* ← 元の位置に戻す */
}