/* ============================================================
オフけん健康管理アプリ用css
URL：/offken/kenkoukanri_app/
============================================================ */


/* ============================================================
メインビジュアル
============================================================ */
.main_visual{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #f3fff2;
    margin-bottom: 100px;
    background-image: url(/offken/images/kenkoukanri_app/main_bg_sp.svg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 12px 20px 64px;
    .main_visual__inner{
        display: flex;
        flex-direction: column-reverse;
        gap: 8px;
    }
    .main_visual__desc{
        display: flex;
        flex-direction: column;
        align-items: center;
        .main_heading_attachment{
            font-size: 16px;
            font-weight: bold;
            line-height: 1.5;
            text-align: center;
            position: relative;
            color: #6FBA2C;
            width: fit-content;
            &:before,&:after{
                position: absolute;
                content: "";
                width: 3px;
                height: 22px;
                background-color: #6FBA2C;
                bottom: 0;
            }
            &:before{
                left:-15px;
                transform: rotate(-25deg);
            }
            &:after{
                right: -15px;
                transform: rotate(25deg);
            }

        }
        .main_heading{
            width: 100%;
            margin-top: 16px;
            img{
                width: 100%;
            }
        }
        .main_heading_sub{
            color: #123987;
            font-weight: bold;
            text-align: center;
            line-height: 1.5;
            margin-top: 16px;
        }
        .main_text{
            margin-top: 16px;
            font-size: 14px;
            line-height: 1.6;
        }
        .main_point_list{
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 24px;
            .point_item{
                flex: 1;
            }
        }
    }
    .main_visual__img{
        padding: 0 16px;
    }
}
/* PC */
@media screen and (min-width: 768px){
    .main_visual{
        height: 730px;
        margin-bottom: 110px;
        background-image: url(/offken/images/kenkoukanri_app/main_bg.svg);
        padding: 0 24px;
        .main_visual__inner{
            flex-direction: row;
            align-items: center;
            gap: clamp(24px, 4.2vw, 100px);
        }
        .main_visual__desc{
            width: clamp(340px, 42vw, 483px);
            .main_heading_attachment{
                font-size: clamp(18px, 2vw, 24px);
                &:before,&:after{
                    height: clamp(32px, 3.2vw, 50px);
                    
                }
                

            }
            .main_heading{
                width: clamp(340px, 45vw, 451px);
                max-width: 451px;
            }
            .main_heading_sub{
                margin-top: 20px;
                text-align: left;
                width: 100%;
                font-size: clamp(17px, 1.8vw, 21px);
            }
            .main_point_list{
                gap: 14px;
                margin-top: 30px;
                
            }
        }
        .main_visual__img{
            padding: 0 ;
            max-width: 663px;
        }
    }
}

/* ============================================================
problem_section
============================================================ */
.problem_section{
    .problem_content{
        display: flex;
        flex-direction: column;
        gap: 40px;
        .problem_content__item{
            width: 100%;
            .check_text{
                --check-icon-margin-top: 2px;
                &:not(:last-child){
                    margin-bottom: 8px;
                }
            }
        }
    }
    
}
/* PC */
@media screen and (min-width: 768px){
    .problem_section{
        .problem_content{
            flex-direction: row;
            .problem_content__item{
                width: calc(50% - 20px);
                .check_text{
                    --check-icon-margin-top: 3px;
                    font-size: 18px;
                }
            }
        }
        
    }
}


/* ============================================================
feature_section
============================================================ */
.feature_section{
    &.--bg{
        background-color: #E3FBDF;
    }
}

/* ============================================================
support_section
============================================================ */
.support_section{
    .support_content{
        display: flex;
        flex-direction: column;
        gap: 24px;
        .support_content__img{
            width: 100%;
        }
        .support_content__desc{

            h3{
                color: #44AE35;
                font-weight: bold;
                line-height: 1.5;
                font-size: 18px;
            }
            p{
                font-size: 14px;
                line-height: 1.7;
                margin-top: 16px;
            }
        }
    }
    .support_quotation{
        width: 100%;
        background-color: rgba(18, 57, 135, 0.1);
        border-radius: 8px;
        padding: 32px 16px;
        margin-top: 40px;
        .heading_lv3{
            &:before{
                background-color: #123987;
            }
        }
        p{
            font-size: 14px;
            line-height: 1.5;
        }
        .link_wrapper{
            display: flex;
            justify-content: flex-end;
            margin-top: 16px;
            .text_link{
                font-weight: bold;
                color: #00A867;
                i:before{
                    color: #00A867;
                }
            }
        }
    }
}
/* PC */
@media screen and (min-width: 768px){
    .support_section{
        .support_content{
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            
            .support_content__img{
                max-width: 400px;
            }
            .support_content__desc{
                max-width: 520px;
                width: 100%;
                h3{
                    font-size: 24px;
                    line-height: 1.2;
                }
                p{
                    font-size: 16px;
                    margin-top: 32px;
                }
            }
        }
        .support_quotation{
            max-width: 800px;
            margin: 64px auto 0;
            display: flex;
            justify-content: center;
            .support_quotation__inner{
                max-width: 640px;
            }
            
            p{
                font-size: 16px;
                line-height: 1.7;
            }
            .link_wrapper{
                .text_link{
                    font-size: 16px;
                }
            }
        }
    }
}

/* ============================================================
choice_section
============================================================ */
.choice_section{
    .choice_content{
        display: flex;
        flex-direction: column;
        gap: 24px;
        .choice_content__item{
            background-color: #EBF7EB;
            border-radius: 8px;
            padding: 48px;
            .choice_content__item__img{
                border-radius: 50%;
                overflow: hidden;
                width: 80px;
                height: 80px;
                background-color: #fff;
                margin: 0 auto 24px;
                display: grid;
                place-content: center;
                img{
                    width: 56px;
                }
            }
            .choice_content__item__heading{
                text-align: center;
                margin-bottom: 16px;
                font-size: 18px;
                font-weight: bold;
            }
            .choice_content__list{
                width: fit-content;
                max-width: 100%;
                margin: 0 auto;
            }
            .check_text{
                font-size: 14px;
                --check-icon-margin-top: -1px;
                &:not(:last-child){
                    margin-bottom: 8px;
                }
            }
        }
    }
}
/* PC */
@media screen and (min-width: 768px){
    .choice_section{
        .choice_content{
            flex-direction: row;
            gap: 10px;
            .choice_content__item{
                padding: 48px 24px;
                flex: 1;
                .choice_content__item__img{
                    width: 100px;
                    height: 100px;
                    img{
                        width: 64px;
                    }
                }
                .choice_content__item__heading{
                    margin-bottom: 24px;
                    font-size: 20px;
                }
                
                .check_text{
                    --check-icon-margin-top: 2px;
                    font-size: 16px;
                }
            }
        }
    }
}

/* ============================================================
plan_section
============================================================ */
.plan_section{
    .plan_content__desc{
        font-size: 16px;
        line-height: 1.5;
        font-weight: bold;

    }
    .plan_content_price__wrapeer{
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin: 40px auto 0;
    }
    .plan_content_price{
        &.--green{
            --heading-bg-color:#45B035;
            --text-bg-color:rgba(69, 176, 53, 0.1);
            --text-color:#44AE35;
        }
        &.--blue{
            --heading-bg-color:#123987;
            --text-bg-color:rgba(18, 57, 135, 0.1);
            --text-color:#123987;
        }
        .plan_content_price__heading{
            background-color: var(--heading-bg-color);
            font-size: 18px;
            font-weight: bold;
            text-align: center;
            padding: 10px 0;
            color: #fff;
        }
        .plan_content_price__desc{
            background-color: var(--text-bg-color);
            font-size: 14px;
            font-weight: bold;
            text-align: center;
            padding: 16px 0;
            p{
                text-align: center;
            }
            span{
                font-size: 28px;
                color: var(--text-color);
                padding: 0 4px;
            }
        }
        
    }
}
/* PC */
@media screen and (min-width: 768px){
    .plan_section{
        .plan_content__desc{
            text-align: center;
        }
        .plan_content_price__wrapeer{
            gap: 16px;
            max-width: 800px;
            width: 100%;
        }
        .plan_content_price{
            height: 77px;
            display: flex;
            .plan_content_price__heading{
                font-size: 24px;
                padding: 0;
                max-width: 320px;
                width: 40%;
                display: grid;
                place-items: center;
            }
            .plan_content_price__desc{
                font-size: 16px;
                padding: 0;
                max-width: 480px;
                width: 60%;
                display: grid;
                place-items: center;
               
                span{
                    font-size: 32px;
                }
            }
            
        }
    }
}

/* ============================================================
flow_section
============================================================ */
.flow_section{
    .heading_lv1{
        margin-bottom: 64px;
    }
    .introduction_flow__item{
        padding: 56px 8px 48x;
        p{
            font-weight: bold;
            font-size: 18px;
            text-align: center;
        }
        .introduction_img{
            margin-bottom: 16px;
        }
    }
}
/* PC */
@media screen and (min-width: 768px){
    .flow_section{
        .heading_lv1{
            margin-bottom: 100px;
        }
        .introduction_flow__item{
            padding: 56px 8px 40px;
            p{
                font-size: 16px;
                
            }
        }
    }
}

/* ============================================================
voice_section
============================================================ */
.voice_section{
    .voice_content{
        display: flex;
        flex-direction: column;
        gap: 24px;
        .voice_content__item{
            width: 100%;
            background-color: #EBF7EB;
            border-radius: 8px;
            padding: 40px 32px;

            .voice_content__item__img{
                width: 140px;
                margin: 0 auto 24px;
                border-radius: 4px;
                overflow: hidden;
            }
            .voice_content__item__desc{
                h3{
                    font-size: 18px;
                    font-weight: bold;
                    text-align: center;
                    line-height: 1.4;
                    color: #123987;
                }
                p{
                    font-size: 14px;
                    line-height: 1.5;
                    margin-top: 16px;
                }
            }
        }
        
    }
    .cases_archive{
        margin-top: 48px;
    }
}
/* PC */
@media screen and (min-width: 768px){
    .voice_section{
        .voice_content{
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            .voice_content__item{
                padding: 40px;
                display: flex;
                gap: 24px;

                .voice_content__item__img{
                    width: 120px;
                    margin: 0;
                    flex-shrink: 0;
                }
                .voice_content__item__desc{
                    h3{
                        font-size: 20px;
                        text-align: left;
                    }
                    p{
                        font-size: 16px;
                    }
                }
            }
        }
        .cases_archive{
            margin-top: 56px;
        }
    }
}


/* ============================================================
faq_section
============================================================ */


/* ============================================================
staff_section
============================================================ */



/* ============================================================
sticky_btn
============================================================ */

.sticky_btn{
    position: fixed;
    right: 0;
    bottom: 80px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .65s;
    &.isActive {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    img{
        width: 120px;
        height: 60px;
        margin-left: auto;
    }
}
/* PC */
@media screen and (min-width: 768px){
    .sticky_btn{
        right: 0;
        bottom: auto;
        bottom: 100px;
        img{
            width: 240px;
            height: 120px;
        }
    }
}

