@charset "utf-8";

/* ---------------- 
    料金表ページ　TOP
------------------- */

/* tab */
.tab {
    display: flex;
    flex-wrap: wrap;
    gap: 0 12px;
    justify-content: center;
    margin-top: -70px;
}

.tab > label {
    flex: 1 1;
    order: -1;
    max-width: 360px;
    padding: 24px 0;
    border-radius: 8px 8px 0 0;
    background-color: #F5F5F5;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
}

.tab > label:hover {
    opacity: .8;
}

.tab input {
    display: none;
}

.tab > div {
    display: none;
    width: 100%;
    padding-top: 100px;
    background-color: #fff;
}

.tab label:has(:checked) {
    background-color: #BAE4F7;
    opacity: 1;
}

.tab label:has(:checked) + div {
    display: block;
}


.price_list ul{
    display: flex;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 40px;
    max-width: 1100px;
    width:100%;
    margin: 0 auto 40px;
}

 .price_list ul li{
    width:340px; height: 182px;
    list-style: none;
}
.price_list a.click{
    position: relative;
    display: block; 
    width:340px; height: 182px;
    padding: 42px 25px 42px 25px;
    background: linear-gradient(90deg, rgba(241, 251, 255, 1), rgba(249, 252, 255, 1));
    border:1px solid #C9DFEC;
    border-radius: 8px;
    font-size:13px;
    line-height: 1.6;
}
.price_list a.click::after{
    content: url(../images/pricelist/arrow.png);
    position: absolute;
    bottom:17px; right:17px;
} 

.price_list a.click:hover{
    opacity: .5;
}

.price_list .parts{
    display: flex;
    margin-bottom:16px;
    align-items: center;
    column-gap: 8px;
}
.price_list .parts h3{
    font-size:20px;
    font-weight: 500;
}

.small{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;   
    font-size: 13px;
}

/* ---------------- 
    料金表 Index　
------------------- */
.price_index{
    width:100%;
    max-width: 1100px;
    margin:0 auto;
}

.price_index h3{
    font-size: 30px;
    font-family: "Marcellus";
    font-weight: 400;
    text-align: center;
}

.price_index h4{
    margin:56px 0 24px;
    padding:12px 0;
    background-color: #F8FCFD;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}
.price_index ul{
    display: flex;
    flex-wrap: wrap;
    column-gap: 72px;
    row-gap: 40px;
    margin:0 20px;
    list-style-type: none;
}
.price_index li{
    position: relative;
    width:210px;
    padding: 13px 26px 13px 0;
    border-bottom: solid 1px #C9DFEC;
    font-size: 15px;
}
.price_index li:before{
    position: absolute;
    content:" ";
    display: block;
    border-bottom:solid 1px #0088C2;
    bottom: -1px;
    width:50px;
}
.price_index li:after{
    content: url(../images/pricelist/arrow.png);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transform: scale(0.6);
}

/* ---------------- 
    料金表 配下ページ　
------------------- */

.contents_area h3 {
    position: relative;
    margin-bottom:56px;
    text-align: center;
}

.contents_area h3:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-top: 2px solid #C9DFEC;
}

.contents_area h3 > span {
    position: relative;
    display: inline-block;
    padding: 0 22px;
    background-color: #fff;
    font-size:32px;
    font-weight: 500;
}

.contents_area h4 {
    margin-bottom:18px;
    font-size:20px;
    font-weight: 500;
}

.contents_area h4::before {
    content: '●';
    color:#9DCFE5;
    margin-right:8px;
}

.contents_area table{
    margin-bottom:32px;
}

.contents_area table th{
    width:48%;
}

.contents_area table td{
    white-space: nowrap;
}

.contents_area table tr td:last-child{
    width:25%;
    color:#1A79B8;
    font-weight: 600;
    text-align: right;
}


@media screen and (max-width: 1100px) {

    .price_list ul{
        max-width: 720px;
    }


    /* ---------------- 
    料金表 Index　
    ------------------- */
    .price_index ul{
        justify-content: center;
    }

}

@media screen and (max-width: 720px) {
    
    .tab {
        margin:-36px 16px 0 16px;
    }
    .tab > label {
        padding: 10px 0;
        font-size:14px;     
    }

    .price_list ul{
        row-gap:10px;
    }
    .price_list ul li {
        width: 100%; height: 100px;
    }
    .price_list a.click {
        width: 100%; height: 100px;
        padding:14px;
        font-size: 11px;
    }    
    .price_list a.click::after {
        bottom: 12px;
        right: 10px;
    }   
    .tab > div {
        padding-top: 40px;
    }
    .price_list .parts {
        margin-bottom: 8px;
    }
    .price_list .parts img{
        width:30px;
    }
    .price_list .parts h3 {
        font-size: 16px;
    }

    .small{
        font-size: 11px;
    }

    /* ---------------- 
        料金表配下ページ　
    ------------------- */
    .contents_area h3 {
        margin-bottom:30px;
    }

    .contents_area h3 > span {
        padding: 0 12px;
        font-size:24px;
    }

    .contents_area h4 {
        margin-bottom:15px;
        font-size:15px;
    }

    .contents_area h4::before {
        margin-right:5px;
    }

    .contents_area table{
        margin-bottom:20px;
        font-size:13px;
    }

    .contents_area table th{
        width:56%;
    }
    .contents_area table tr td:last-child{
        font-size:16px;
    }

    /* ---------------- 
        料金表 Index　
    ------------------- */
    .price_index {
        margin-top:50px;
        padding:0 12px;
    }

    .price_index h3 {
        font-size: 20px;
    }
    .price_index h4 {
        margin: 30px 0 16px;
        font-size:16px;
    }

    .price_index ul {
        column-gap: 36px;
        row-gap: 20px;
        margin: 0 12px;
    }
    .price_index li {
        width:44%;
        padding:8px 15px 8px 0;
        font-size: 14px;
    }
    .price_index li:after{
        right: -5px;
        transform: scale(0.4);
    }
}