/* ============================================================
いい売店　シフトページ用css
URL:/business/ebaiten/
============================================================ */

/* ============================================================
main_visual
============================================================ */
.main_visual{
    background-color: #F3FAF3;
    padding: 32px 16px;
    .main_visual__inner{
        display: flex;
        flex-direction: column-reverse;
        gap: 16px;
        .main_visual__desc{
            display: flex;
            flex-direction: column;
            align-items: center;
            .main_visual__heading__sub{
                font-size: clamp(24px, 5vw, 28px);
                font-weight: bold;
                text-align: center;
                line-height: 1.2;
            }
            .main_visual__heading{
                width: 160px;
                margin: 16px auto 24px;
                img{
                    width: 100%;
                }
            }
            .main_visual__price{
                display: flex;
                align-items: flex-end;
                gap:8px;
                flex-wrap: wrap;
                justify-content: center;
                .circle_text{
                    font-size: 14px;
                    font-weight: bold;
                    text-align: center;
                    background-color: #fff;
                    border-radius: 30px;
                    padding: 6px 16px 8px;
                    line-height: 1;
                    border: 1px solid #44AE35;
                }
                .price_text{
                    font-weight: bold;
                    font-size: 14px;
                    .large_text{
                        font-size: 28px;
                        line-height: 1;
                        padding-left: 2px;
                    }
                    .green_text{
                        color: #45B035;
                    }
                }
            }
            .main_visual__notes{
                margin-top: 16px;
                width: fit-content;
                display: block;
                font-size: 11px;
            }
        }
        .main_visual__img{
            img{
                width: 100%;
            }
        }
    }
    
   
    + .btn_wrapper{
        margin-top: 40px;
    }
}

/* PC */
@media screen and (min-width: 768px){
    .main_visual{
        height: 650px;
        padding: 0 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        .main_visual__inner{
            flex-direction: row;
            align-items: center;
            gap: clamp(30px, 3vw, 56px);
            .main_visual__desc{
                align-items: flex-start;
                flex-shrink: 0;
                .main_visual__heading__sub{
                    font-size: 40px;
                    text-align: left;
                    line-height: 1.3;
                }
                .main_visual__heading{
                    width: 243px;
                    margin: 24px  0;
                }
                .main_visual__price{
                    gap:12px;
                    .circle_text{
                        font-size: 16px;
                    }
                    .price_text{
                        font-size: 16px;
                        .large_text{
                            font-size: 36px;
                            padding-left: 4px;
                        }
                    }
                }
                .main_visual__notes{
                    font-size: 11px;
                }
            }
            .main_visual__img{
                max-width: 687px;
            }
        }
        + .btn_wrapper{
            margin-top: 80px;
        }
    }
   
}


/* ============================================================
problem_section
============================================================ */
.problem_section{
    margin-top: 80px;
    .problem_content{
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }
}
/* PC */
@media screen and (min-width: 768px){
    .problem_section{
        margin-top: 160px;
        .problem_content{
            grid-template-columns: repeat(2, 1fr);
            gap: 12px 42px;
        }
    }
}

/* ============================================================
possible_section
============================================================ */
.possible_section{
    .possible_content{
        .introduction_flow{
            .introduction_flow__item__wrapper{
                &:after{
                    content: none;
                }
            }
            .introduction_flow__item{
                padding: 32px 24px;
                .introduction_flow__item__heading{
                    margin-bottom: 8px;
                }
                .introduction_img{
                    margin-bottom: 8px;
                }
            }
        }
    }
}
/* PC */
@media screen and (min-width: 768px){
    
}

/* ============================================================
flow_section
============================================================ */
.flow_section{
    .flow_content__img{
        width: 100%;
        display: block;
        margin: auto;
    }
}
/* PC */
@media screen and (min-width: 768px){
    .flow_section{
        .flow_content__img{
            max-width: 800px;
        }
    }
}
/* ============================================================
strength_section
============================================================ */
.strength_section{
    &.--bg{
        --bg--color:#ECF7EB;
    }
}

/* ============================================================
support_section
============================================================ */
.support_section{
    .support_content{
        
    }
}
/* PC */
@media screen and (min-width: 768px){
    .support_section{
        
    }
}
/* ============================================================
price_section
============================================================ */
.price_section{
    .price_content{ 
        background-color: #ECF7EB;
        padding: 24px 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 8px;
        .price_heading__sub{
            background-color: #fff;
            border-radius: 8px;
            font-size: 16px;
            font-weight: bold;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 220px;
            width: 65%;
            height: 37px;
            border-radius: 30px;
            margin-bottom: 12px;
        }
        .price_heading{
            font-size: 14px;
            font-weight: bold;

            .large_text{
                font-size: 28px;
                line-height: 1;
                padding-left: 2px;
            }
            .green_text{
                color: #44AE35;
            }
        }
        .price_desc{
            text-align: center;
            font-size: 16px;
            line-height: 1.6;
            margin-top: 12px;
            span{
                color: #FF0000;
                font-weight: bold;
                font-size: 20px;
            }
        }
    }
    .btn_wrapper{
        margin-top: 40px;
    }
}
/* PC */
@media screen and (min-width: 768px){
    .price_section{
        .price_content{ 
            padding: 32px 24px;
            max-width: 800px;
            margin: auto;
            .price_heading__sub{
                margin-bottom: 20px;
            }
            .price_heading{
                font-size: 16px;

                .large_text{
                    font-size: 36px;
                }
            }
            .price_desc{
                margin-top: 20px;
            }
        }
        .btn_wrapper{
            margin-top: 100px;
        }
    }
}

/* ============================================================
series_section
============================================================ */
.series_section{
    .series_heading_under_desc{
        font-size: 16px;
        margin-bottom: 32px;
    }
    .series_content{
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        .series_content__item{
            width: 100%;
            box-shadow: 0px 0px 6px -3px rgba(0, 0, 0, .5);
            border-radius: 8px;
            overflow: hidden;
            .series_content__item__img{
                width: 100%;
                img{
                    width: 100%;
                }
            }
            .series_content__item__desc{
                padding: 24px 24px 32px;
                border-top: 1px solid #ededed;
            }
            .series_content__item__heading{
                margin: auto;
                display: flex;
                justify-content: center;
                img{
                    /* width: 125px; */
                    height: 81px;
                }
            }
            .series_content__item__text{
                margin-top: 24px;
                font-size: 14px;
                line-height: 1.7;
                display: block;
            }
            .series_content__item__price{
                margin-top: 16px;
                font-weight: bold;
                font-size: 14px;
                text-align: right;
            }
        }
    }
    .btn_wrapper{
        margin-top: 40px;
    }
}
/* PC */
@media screen and (min-width: 768px){
    .series_section{
        .series_heading_under_desc{
            max-width: 800px;
            margin: 0 auto 42px;
        }
        .series_content{
            grid-template-columns: repeat(3, 1fr);
        }
        .btn_wrapper{
            margin-top: 100px;
        }
    }
}