.section-title-sub {
    padding-left: 15px;
    color: #e2c908;
    border-left: 4px solid #e2c908;
    font-size: 18px;
    font-weight: bold;

    border-bottom: 1px solid #e2c908;
    padding-bottom: 6px;
    margin: 30px 0 15px;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
}

.tabs label {
    flex: 1 1 0;
    box-sizing: border-box;

    font-size: 15px;
    text-align: center;

    padding: 12px 8px;

    background: #0d1a4a;
    color: #fff;

    cursor: pointer;
    font-weight: bold;

    border-radius: 10px 10px 0 0;
}

.tab-buttons {
    display: flex;
    gap: 2px;
}


.tabs input {
    display: none;
}


.tabs label:hover {
    opacity: .9;
}

.contents {
    width: 100%;
}

.content {
    display: none;
    box-sizing: border-box;
    width: 100%;
    padding: 24px 20px;
    font-size: 14px;
    line-height: 1.7;
    border: 2px solid #e2c908;
    border-top: none;
}

#tab1:checked~.contents .content1,
#tab2:checked~.contents .content2,
#tab3:checked~.contents .content3 {
    display: block;
}

#tab1:checked+label,
#tab2:checked+label,
#tab3:checked+label {
    background: #e2c908;
    color: #0d1a4a;
}

.item_title {
    width: 100%;
    font-size: 18px;
    color: #94243a;
    font-weight: bold;
    padding: 20px 0;
    border-top: 1px solid #a0a0a0;
    border-bottom: 1px solid #a0a0a0;
    margin-bottom: 30px;
}

.item_discription {
    font-size: 14px;
    line-height: 1.5;
    font-weight: normal;
    text-align: center;
    color: #575757;
}

.item_comment {
    text-align: left;
    width: 100%;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.5;
    padding-bottom: 30px;
    border-bottom: 1px solid #a0a0a0;
}

.comment {
    margin-bottom: 30px;
}

.plan_list {
    border-bottom: 1px solid #a0a0a0;
}

.hotaru_area {
    margin-bottom: 70px;
}

.iframe-css {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.iframe-css iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.table_date {
    width: 80%;
}

.table_fee {
    width: 50%
}

.table_th {
    width: 20%;
}

table,
td,
th {
    border: 1px solid #595959;
    border-collapse: collapse;
}

td,
th {
    width: 30px;
    padding: 8px;
    font-size: 14px;
    line-height: 1.6;
    height: 25px;
}

th {
    background: #243894;
    background-color: rgb(13 13 71 / 80%);
}

td {
    background-color: rgba(255, 255, 255, 0.1);
}

.even {
    background: #fbf8f0;
}

.odd {
    background: #fefcf9;
}

.row-eq-height {
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 639px) {


    .table_date {
        width: 100%;
    }

    .table_fee {
        width: 100%;
    }

    table {
        width: 100%;
    }

    .sp_none {
        display: none !important;
    }

    .pc {
        float: left;
    }
}


