@charset "UTF-8";

/* ================================================
   price.css — 料金プランページ専用スタイル
   ================================================ */

.plan {
    font-family: var(--font_sans);
    font-weight: lighter;
    margin: 5vw;
}

/* プランカード */
.plan_item_set {
    font-size: 1.6rem;
    color: #002030;
    margin-top: var(--contents_gutter);
}

.plan_item {
    position: relative;
    width: 80vw;
    background-color: whitesmoke;
    padding: calc(var(--gutter_base) * 2) calc(var(--gutter_base) * 2) var(--gutter_base);
    margin: 0 auto;
}

.plan_item > div {
    margin: calc(var(--gutter_base) * 2);
}

.plan_item ul {
    text-align: left;
    width: fit-content;
    margin: 0 auto;
    list-style: square;
    line-height: 3rem;
}

.plan_item .price {
    font-size: 2rem;
}

/* 期間限定バッジ */
.limited {
    background-color: rgb(255, 123, 0);
    padding: 5px;
    position: absolute;
    font-size: 2rem;
    color: white;
    top: -20px;
    left: -15px;
    border-radius: 5px;
}

/* モニター条件 */
.test_user {
    background-color: rgb(2, 63, 119);
    border-radius: 10px;
    color: white;
    padding: 1rem;
    font-weight: lighter;
}

.test_user_title {
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: normal;
}

.plan_item_text {
    text-align: left;
    padding-left: 3rem;
}

.plan_item_text li {
    margin-top: 1rem;
    text-indent: 1em;
}

/* 注意事項 */
.plan_caution {
    font-size: 1.4rem;
    color: white;
    margin: 0 auto;
}

.plan_caution h3 {
    margin-bottom: calc(var(--gutter_base) * 2);
}

.plan_caution ul {
    text-align: left;
    width: fit-content;
    margin: 0 auto;
    line-height: 2em;
    font-weight: lighter;
    padding: 0 calc(var(--gutter_base) * 2);
}

/* PC */
@media screen and (min-width: 960px) {
    .plan_item_set {
        display: flex;
        justify-content: space-evenly;
        font-size: 2rem;
    }

    .plan_item {
        width: 42vw;
    }

    .plan_item h3 {
        font-size: 3rem;
        font-weight: normal;
        margin-top: 15px;
    }

    .plan_item ul {
        line-height: 4rem;
        font-size: 2rem;
    }

    .plan_item .price {
        font-size: 3rem;
    }

    .limited {
        padding: 10px;
        font-size: 3rem;
        top: -30px;
        left: -30px;
    }

    .plan_caution {
        font-size: 1.8rem;
    }

    .plan_item_set .plan_item:nth-child(2) {
        padding-bottom: var(--contents_gutter);
    }
}
