@charset "UTF-8";

:root {
    --black: #333333;
    --white: #ffffff;
    --gray: #707070;
    --border12: #E6E6E6;
    --bg10: #F4F4F6;
    --green: #088578;
    --greenbg: #F1F4F2;
    --red: #DF5961;
    --blue: #397AB4;
    --champagne-gold-25: #F9F8F5;
}
*{
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
    color: var(--black);
}
.en{
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
/* font */
.h30{
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 1.8px;
}
.h24{
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.96px;
}
.h18{
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 170%;
}
.h16{
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}
.base{
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}
.text_l{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 1.28px;
}
.mt1em {
    margin-top:1em;
}
.bold {
    font-weight:bold;
}
.under-button-text {
    margin-top:1em;
    font-weight:bold;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
}
@media only screen and (max-width: 768px) {
    .h30{
        font-size: 22px;
    }
    .h24{
        font-size: 20px;
    }
    .h18{
        font-size: 16px;
    }
    .h16{
        font-size: 14px;
    }
    .text_l{
        font-size: 14px;
    }
    .under-button-text {
        font-size: calc(12 / 375 * 100vw);
    }
}
.video iframe{
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}
/* bg */
.bg_gray{
    background: var(--bg10);
}
.bg_champagnegold{
    background: var(--champagne-gold-25);
}
.bg_green{
    background: var(--green);
}
/* color */
.white{
    color: var(--white) !important;
}
.green{
    color: var(--green);
}

/* contents block */
.container{
    margin: 0 auto;
    padding: 20px 0;
}
.container2{
    margin: 0 auto;
}
.pb80{
    padding-bottom: 80px;
}
.gap42{
    display: flex;
    flex-flow: column;
    gap: 42px;
}
.container_products_inner{
    padding-right: 0 !important;
    padding-left: 0 !important;
}
.wrap{
    padding: 60px 0;
}
.w1024{
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
    .container{
        margin: 0 auto;
        padding: 0 4%;
    }
    .container2{
        margin: 0 auto;
        padding: 0 4%;
    }
    .container_products{
        padding: 0 4%;
    }
}
@media only screen and (max-width: 768px) {
    .wrap{
        padding: 40px 0;
    }
    .w1024{
        width: 100%;
        margin: 0 auto;
    }
    .container_products{
        padding: 0;
    }
    .container_products_inner{
        padding-right:4% !important;
        padding-left:4% !important;
    }
    .gap42{
        gap: 20px;
    }
}
/* button */
.primary_button{
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    padding: 12px 24px;
    align-items: center;
    border-radius: 8px;
    background: var(--green);
    margin: 0 auto;
    display:table;
}
@media only screen and (max-width: 768px) {
    .primary_button{
        margin: 0 auto;
    }
}
/* slide */
.slick-dots li{
    width: 6px !important;
    height: 6px !important;
    border-radius: 5px !important;
    overflow: hidden;
    margin: 0 6px !important;
}
.slick-dots li button:before{
    background-color: #EBE5D4 !important;
    color: #EBE5D4 !important;
    opacity: 1 !important;
    width: 100% !important;
    height: 100% !important;
}
.slick-dots li.slick-active button:before{
    background-color: var(--green) !important;
    color: var(--green) !important;
    opacity: 1 !important;
}
.slick-dots li button{
    width: 100% !important;
    height: 100% !important;
}

/* feature */
.feature_list{
    
}
.feature_list li{
    display: flex;
    align-items: center;
    gap: 42px;
    padding: 48px 0;
    border-top: 1px solid var(--border12);
}
.feature_list li:last-child{
    border-bottom: 1px solid var(--border12);

}
.feature_list_img{
    width: 320px;
}
.feature_list_contents{
    width: calc(100% - 362px);
}
.feature_list_title{
    margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
    .feature_list_img{
        width: 100%;
    }
    .feature_list_contents{
        width: 100%;
    }
    .feature_list li{
        flex-flow: column;
        gap: 20px;
    }
    .feature_list_title{
        margin-bottom: 16px;
    }
}

.products_list_item .price{
    margin-top: 8px;
}