@charset "UTF-8";

/* TOP料金プラン */
ul li.plan-container_item {
	grid-row: span 6;
}


/* TOP_キャンペーンの文字の囲い追加 */
#top_campaign_text + section .inner_item_txt:nth-of-type(1):nth-last-of-type(1){
    position: relative;
    z-index: 2;
    background-color: #FA354A;
    border-radius: 8px;
    padding: 1.5em 3em !important;
    width: max-content;
}
#top_campaign_text + section .inner_item_txt:nth-of-type(1):nth-last-of-type(1)::before{
    content: "";
    position: absolute;
    inset: 3px 3px 6px 3px;
    background-color: #fff;
    z-index: -1;
    border-radius: 8px;
}
@media screen and (max-width: 900px){
    #top_campaign_text + section .inner_item_txt:nth-of-type(1):nth-last-of-type(1){
        padding: 1.5em 1em !important;
        width: 100%;
    }
}