@charset "utf-8";

.plan_banner{
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffe8ec;
    border-radius: 15px;
    box-shadow: 9px 9px 6px -6px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}
.plan_banner_left{
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 16px auto;
}
.plan_banner_left_copy{
    color: #cd3367;
    font-size: 16px;
    font-weight: bold;
    background-color: #fff;
    border-radius: 30px;
    padding: 4px 24px;
    box-shadow: 9px 9px 6px -6px rgba(255, 180, 193, 0.3);
    display: block;
    margin-bottom: 8px!important;
}
.plan_banner_left_title{
    font-size: 32px;
    font-weight: bold;
}
.plan_banner_left_title span{
    font-size: 0.8em;
    margin: 0 2px;
}
.plan_banner_left_price{
    line-height: 1.2;
}
.plan_banner_left_price_box{
    display: flex;
    align-items: center;
    gap: 2px;
    color: #cd3367;
    font-weight: bold;
}
.plan_banner_left_price_text{
    font-size: 32px;
}
.plan_banner_left_price_text_other{
    line-height: 1;
}
.plan_banner_left_price_text_other p:first-of-type{
    font-size: 10px;
}
.plan_banner_left_price_text_other p:nth-of-type(2){
    font-size: 18px;
}
.plan_banner_left_price_small{
    text-align: center;
}
.plan_banner_left_price_small_tax{
    font-size: 0.8em;
}
.plan_banner_right{
    flex: 1;
    align-self: stretch;
}
.plan_banner_right img{
    display: block;
    height: 100%;
    width: 100%;
}

/* スマホ版 */
@media screen and (max-width: 767px) {
    .plan_banner{
        width: 97%;
        flex-direction: column-reverse;
    }
    .plan_banner_right{
        position: relative;
    }
    .plan_banner_left{
        padding: 16px 0;
        margin: 0;
    }
    .plan_banner_left_copy{
        width: fit-content;
        white-space: nowrap;
        font-size: 15px;
        margin-bottom: 6px!important;
        padding: 2px 24px;
    }
    .plan_banner_left_title{
        font-size: 26px;
    }
    .plan_banner_left_price{
        display: flex;
        justify-content: center;
        align-items: flex-end;
        gap: 8px;
    }
    .plan_banner_left_price_small{
        padding-bottom: 2px;
    }
}