@charset "UTF-8";

.bg_g {
    background-image: url(../img/cmn/bg-gray.jpg);
    background-size: 640px 440px;
}

.psec {
}

.psec_ttl {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    opacity: 0;
    position: relative;
    padding-bottom: 35px;
    text-align: center;
    transform: scale(0.4);
    transition: all 0.8s;
}

.-play .psec_ttl {
    opacity: 1;
    transform: scale(1);
}

.psec_ttl::after {
    content: "";
    display: block;
    position: absolute;
    right: 50%;
    bottom: 0;
    width: 68px;
    border-top: 3px dotted #333333;
    transform: translateX(50%);
}

.psec_ttl_icon {
    width: 54px;
}

.psec_ttl_txt {
    font-weight: bold;
}

.psec_ttl_txt h2,
.psec_ttl_txt h3 {
    margin-bottom: 24px;
    font-size: 35px;
    line-height: 1.5;
}

.psec_ttl_txt p {
    font-size: 13px;
}

.psec_contact {
    margin-top: 40px;
    font-size: 16px;
    text-align: center;
}

.info,
.cal {
    padding: 115px 0 120px;
}

.info_wrap {
    padding-top: 60px;
}

.info_group {
    margin-bottom: 100px;
}

.info_group_wrap {
    width: 890px;
    margin: 0 auto;
}

.info_group_wrap p {
    display: inline-block;
    position: relative;
    padding-left: 30px;
}

.info_group_wrap p::before {
    content: "";
    display: block;
    position: absolute;
    top: 9px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e8a817;
}

.info_fee {
}

.info_fee_wrap {
    max-width: 890px;
    margin: 0 auto;
    padding-top: 60px;
}

.info_fee_cnt {
}

.info_fee_table {
    width: 890px;
    margin-bottom: 30px;
    border: 2px solid #333333;
    text-align: center;
}

.info_fee_table thead tr {
    border-bottom: 2px solid #333333;
}

.info_fee_table thead tr th {
    padding: 20px 0;
}

.info_fee_table tbody tr {
    border-bottom: 2px solid #333333;
}

.info_fee_table tbody tr th {
    padding: 20px 30px;
    text-align: start;
}

.info_fee_table tbody tr td {
    background: #ffffff;
}

.info_fee_detail p {
    display: inline-block;
    position: relative;
    padding-left: 30px;
}

.info_fee_detail p::before {
    content: "";
    display: block;
    position: absolute;
    top: 9px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e8a817;
}

.info_fee_detail p a {
    color: #3994ff;
    text-decoration: underline;
}

/* calendar
---------------------------------------- */
.cal_wrap {
    margin-top: 64px;
}

.cal_hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1;
}

.cal_hd_btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #129800;
    cursor: pointer;
}

.cal_hd_btn:disabled {
    background: #959595;
}

.cal_hd_btn.-prev {
}

.cal_hd_btn.-next {
}

.cal_hd_ttl {
    font-weight: bold;
    font-size: 22px;
}

.cal_hd_ttl em {
    font-size: 40px;
}

.cal_tbl {
    width: 100%;
    margin-top: 24px;
    border: 1px solid #bcbcbc;
    font-weight: bold;
    text-align: center;
    table-layout: fixed;
}

.cal_tbl thead tr {
}

.cal_tbl thead tr th {
    padding: 5px;
    border-left: 1px solid #bcbcbc;
    background: #fff145;
}

.cal_tbl thead tr th.-sun {
    color: #ff0000;
}

.cal_tbl thead tr th.-sat {
    color: #0094e8;
}

.cal_tbl tbody tr {
}

.cal_tbl tbody tr td {
    border-left: 1px solid #bcbcbc;
    vertical-align: top;
}

.cal_tbl tbody tr td:has(.-holiday) {
    background: #f0eeed;
}

.cal_tbl tbody tr:not(:first-child) td {
    border-top: 1px solid #bcbcbc;
}

.cal_tbl_day {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 130px;
    padding: 5px;
    vertical-align: top;
}

.cal_tbl_day.-holiday {
}

.cal_tbl_num {
}

.cal_tbl_icon {
    display: block;
    width: 32px;
    height: 32px;
    margin: auto;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.cal_tbl_icon.-maru {
    background-image: url(../img/group/icon-maru.svg);
}

.cal_tbl_icon.-sankaku {
    background-image: url(../img/group/icon-sankaku.svg);
}

.cal_tbl_icon.-batsu {
    background-image: url(../img/group/icon-batsu.svg);
}

.cal_tbl_icon.-bar {
    background-image: url(../img/group/icon-bar.svg);
}

.cal_ft {
    margin-top: 24px;
}

.cal_icon {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.cal_icon_item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media screen and (max-width: 768px) {
    .psec_ttl {
        gap: 17px;
    }

    .psec_ttl_txt h2,
    .psec_ttl_txt h3 {
        margin-bottom: 19px;
        font-size: 29px;
    }

    .info,
    .cal {
        padding: 55px 0 70px;
    }

    .info_group_wrap {
        width: 100%;
    }

    .info_fee_cnt {
        overflow: scroll;
    }

    /* calendar sp */
    .cal_wrap {
        margin-top: 40px;
    }

    .cal_hd_btn {
        width: 36px;
        height: 36px;
    }

    .cal_hd_ttl {
        font-size: 18px;
    }

    .cal_hd_ttl em {
        font-size: 30px;
    }

    .cal_tbl_day {
        min-height: 80px;
        padding: 3px;
        font-size: 12px;
    }

    .cal_tbl_icon {
        width: 20px;
        height: 20px;
    }

    .cal_icon {
        flex-wrap: wrap;
        gap: 12px;
        font-size: 12px;
    }
}

@media print {
}
