@charset "utf-8";


/* ----------------------------------------------


料金プラン 


----------------------------------------------*/

.price__lead {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 2em;
}

.price-plans {
    display: flex;
    padding: 50px 30px;
    background-color: #fff;
    border-radius: 18px;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.price-plan {
    flex: 1;
    text-align: center;
    padding: 15px 25px 20px;
}

.price-plan+.price-plan {
    border-left: 2px dotted #0E9C8D;
}

.price-plan__users {
    background-color: #0E9C8D;
    color: #fff;
    font-weight: 600;
    border-radius: 2em;
    padding: 4px 0;
    margin-bottom: 30px;
}


.price-plan__label {
    font-size: 16px;
}

.price-plan__value {
    font-size: 1.25em;
    font-family: "Red Hat Display", sans-serif;
    font-weight: 800;
}

.price-plan__price {
    font-size: 42px;
    color: #0E9C8D;
    font-family: "Red Hat Display", sans-serif;
    font-weight: 800;
    font-style: normal;
    letter-spacing: 0;
}


.price-plan__unit {
    color: #2d2d2d;
    font-size: 20px;
}

.price-plan__tax-text {
    font-size: 18px;
    color: #565656;
}

.price__lead br {
    display: none;
}


@media (max-width: 1024px) {
    .price-plans {
        flex-wrap: wrap;
        padding: 20px;
    }

    .price-plan {
        flex: initial;
        width: 50%;
        padding: 20px 30px 20px;
    }

    .price-plan+.price-plan {
        border: none;
    }
}

@media (max-width: 767px) {
    .price-plans {
        gap: 10px;
        margin-bottom: 25px;
    }

    .price-plan {
        width: 100%;
    }

    .price-plan__users {
        margin-bottom: 15px;
    }

    .price-plan__price {
        font-size: 44px;
    }

    .price-plan__tax-text {
        font-size: 16px;
    }

    .price__lead {
        font-size: 15px;
    }

    .price__lead br {
        display: block;
    }

}


/* ----------------------------------------------


オプション


----------------------------------------------*/

.plus {
    position: relative;
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
}

/* 横線 */
.plus::before,
.plus::after {
    content: "";
    position: absolute;
    background-color: #707070;
}

/* 横 */
.plus::before {
    width: 65px;
    height: 5px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* 縦 */
.plus::after {
    width: 5px;
    height: 65px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.option__title {
    color: #0E9C8D;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 1.25em;
    text-align: center;
}

.option__item {
    background-color: #fff;
    border-radius: 18px;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.1);
    padding: 40px 40px;
    position: relative;
}

.option__heading {
    position: absolute;
    background-color: #FDF3E3;
    color: #0E9C8D;
    font-weight: 500;
    font-size: 20px;
    border: 1px solid #0E9C8D;
    top: -0.875em;
    left: 40px;
    padding: 0.25em 2em;
    border-radius: 2em;
}

.option__plan {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.option__plan:not(:last-of-type) {
    border-bottom: 1px dotted #0E9C8D;
}

.option__plan-text {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-left: 1.5em;
}

.option__plan-text:before {
    content: '';
    width: 1em;
    height: 1em;
    background-color: #C3ECDE;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.3em;
}

.option__plan-price {
    display: flex;
    justify-content: end;
    align-items: center;
}

.option__plan-price .price-plan__price {
    font-size: 36px;
}

.option__plan-price .price-plan__tax {
    position: relative;
    top: 4px;
}

.note-list {
    margin-top: 3em;
}

.note-list__item {
    font-size: 14px;
}

@media (max-width: 1024px) {
    .option__plan-price {
        flex-direction: column;
    }

    .plus {
        width: 40px;
        height: 40px;
    }

    .plus::before {
        width: 40px;
    }

    .plus::after {
        height: 40px;
    }
}

@media (max-width: 767px) {

    .option__item {
        padding: 20px 30px;
    }

    .option__title {
        font-size: 22px;
        margin-bottom: 2em;
    }

    .option__heading {
        font-size: 16px;
        left: 50%;
        transform: translateX(-50%);
    }

    .option__plan {
        flex-direction: column;
        padding: 28px 0;
        gap: 20px;
    }

    .option__plan-text {
        font-size: 16px;
    }

    .note-list__item {
        font-size: 13px;
    }
}