@charset 'UTF-8';

/*  price fee
---------------------------------------- */
.p-price-fee {
    padding-bottom: 0;
}

.c-priceSection.-detail{
    padding-bottom: 0;
}

table.c-priceTable {
    table-layout: auto;
}   

.c-priceTab__buttons {
    width: calc(100% + 10px);
    margin-left: -5px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
}

.c-priceTab__button {
    width: calc(50% - 10px);
    margin: 5px;
    padding: 15px 10px;
    display: block;
    text-align: center;
    line-height: 1.3;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: var(--fntEn);
    color: var(--clrTxt);
    background: var(--clrBkgSec);
    transition: color ease 0.3s, background ease 0.3s;
}

.c-priceTab__button span {
    color: var(--clrTxt);
}

.c-priceTab__button.current span {
    color: #fff;
}

.c-priceTab__button:hover,
.c-priceTab__button.-current {
    color: #fff;
    background: var(--clrTxt);
}

.c-priceTab__button:hover span,
.c-priceTab__button.-current span {
    color: #fff;
}

.c-priceTab__button:hover, .c-priceTab__button.-current.-lite {
    background: var(--clrMain);
}

.c-priceTab__button:hover span, .c-priceTab__button.-current.-lite span {
    color: #fff;
}

.c-priceTab__button:hover, .c-priceTab__button.-current.-standard {
    background: var(--clrStandard);
}

.c-priceTab__button:hover span, .c-priceTab__button.-current.-standard span {
    color: #fff;
}

.c-priceTable-label {
    padding: 24px 10px;
    line-height: 1.3;
    font-size: 2rem;
    font-weight: bold;
    font-family: var(--fntEn);
    color: #fff;
    background: var(--clrTxtSec);
}

.c-priceTable-label.-strong {
    background: var(--clrTxt);
}

.c-priceTable-label.-standard{
    background-color: var(--clrStandard);
}

.c-priceTable-label.-lite{
    background-color: var(--clrMain);
}

.c-priceTable th.c-priceTable-title{
    background-color: var(--clrBdr);
    padding: 10px 20px;
}

.c-priceTable tbody th,
.c-priceTable tbody td {
    padding: 20px 16px 20px;
    font-size: 1.5rem;
    border: 1px solid var(--clrBdr);
}

.c-priceTable tbody th {
    width: 320px;
    text-align: left;
    font-weight: bold;
    background: var(--clrBkgSec);
}

.c-priceTable tbody td {
    text-align: center;
}

.c-priceTable tbody td.-alignLeft {
    text-align: left;
}

.c-priceTable tbody strong {
    font-size: 1.6rem;
}

.c-priceTable tbody small {
    margin-top: 0.4em;
    display: inline-block;
    font-size: 90%;
    color: var(--clrTxtSec);
}

.c-priceTable tbody sup {
    font-size: 0.5em;
}

.c-priceTable tbody ul {
    padding-left: 1em;
    text-align: left;
}

.c-priceCircle {
    width: 24px;
    height: 24px;
    margin: 0 auto 8px;
    display: block;
    border-radius: 12px;
    border: 2px solid var(--clrMain);
}

.c-priceTable__description {
    margin-top: 18px;
    padding-left: 1.4em;
    position: relative;
    font-size: 1.4rem;
    color: var(--clrTxtSec);
}

.c-priceTable__description:before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
} 

@media all and (max-width: 1024px) {
    /* table.c-priceTable{
        table-layout: fixed;
    } */

    .c-priceTable tbody th{
        width: 50%;
    }
    

    .c-priceTable-label:not(.-current),
    .c-priceTable tbody td:not(.-current) {
        display: none;
    }
}

@media all and (min-width: 1441px) {
    .c-priceTable tbody th,
    .c-priceTable tbody td {
        padding: 26px;
    }

    .c-priceTable tbody th {
        width: 360px;
        font-size: 1.6rem;
    }
    
    .c-priceCircle {
        margin-bottom: 10px;
    }

    .c-priceTable__description {
        margin-top: 22px;
    }
    
    .c-priceTable-label {
        font-size: 2.2rem;
    }
}
