@charset "UTF-8";

/*-------------------------------------------*/
/*メインイメージ*/
/*-------------------------------------------*/
body {
    overflow-x: hidden;
}

.mainimg {
    position: relative;
    margin-top: 97px;
}

.bgimg img {
    width: 100%;
    object-fit: cover;
    max-height: 252px;
    min-height: 252px;
}

.text_img {
    position: absolute;
    top: 50px;
    right: 0;
    left: 11px;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.symbol_wrap {
    position: relative;
}

.symbol {
    position: absolute;
    top: -60px;
    right: 0;
    left: 0;
    bottom: 0;
}

.symbol img {
    margin: 0 auto;
    padding-right: 9px;
}




@media screen and (max-width: 768px) {

    .mainimg {
        margin-top: 72px;
    }
}

@media screen and (max-width: 480px) {
    .mainimg {
        margin-top: 58px;
    }

    .bgimg img {
        min-height: 200px;
    }

    .text_img img {
        max-height: 80px;
    }

    .symbol img {
        max-width: 80px;
        padding-right: 0;
    }

    .text_img {
        left: 0;
    }

}

/*-------------------------------------------*/
/*練習スケジュール*/
/*-------------------------------------------*/
.sched .maxWid, .price .maxWid, .selection_bnr .maxWid {
    max-width: 800px;
}

section.sched {
    padding-top: 198px;
    padding-bottom: 70px;
}

.sched .heading {
    margin-bottom: 60px;
}

.heading h3 img {
    margin: 0 auto;
    padding-right: 14px;
}

table, table td, table th {
    border-collapse: collapse;
    /* 1pxにする */
    border: 1px solid #000;
}

table {
    width: 100%;
    border: 1px solid #3e3431;
    border-spacing: 0;
    max-width: 800px;
    margin: 0 auto;
    font-size: 2.0rem;
}


table th {
    background-color: #b84e99;
    color: #fff;
    padding: 20px 20px;
    font-weight: lighter;
}

table td {
    padding: 20px 20px;
    text-align: center;
    vertical-align: middle;
}

.sched table th:nth-child(1) {
    width: 31%;
}

.sched table th:nth-child(2) {
    width: 22%;
}

.sched table th:nth-child(3) {
    width: 47%;
}

.table_caption {
    font-size: 2.3rem;
    margin-top: 10px;
    display: block;
    padding-left: 9px;
}

.comments {
    margin-top: 40px;
    border: 1px solid #000;
    font-size: 2.3rem;
}

.comments h4 {
    background-color: #000;
    color: #fff;
    padding: 7px 19px;
    font-weight: normal;
}

.comments p {
    padding: 9px 6px 14px 18px;
    font-size: 1.8rem;
}


@media screen and (max-width: 768px) {
    table {
        font-size: 2.0rem;
    }

    table td {
        padding: 20px 10px;
    }

    td.money {
        font-size: 2.5rem;
    }

    td.money .small {
        font-size: 1.6rem;
    }

    .price table th {
        padding: 20px 10px;
    }

    .price table td {
        padding: 20px 10px;
    }

    td.padrl {
        width: 29%;
    }

    .heading h3 img {
        padding-right: 0px;
    }


}

@media screen and (max-width: 480px) {
    section.sched {
        padding-top: 80px;
    }

    .sched .heading, .price .heading {
        margin-bottom: 50px;
    }

    .table_pc {
        display: none !important;

    }

    .table_sp {
        display: table !important;
    }

    th, td {
        display: block !important;
        width: 100% !important;
        font-size: 1.6rem;
    }

    table th {
        font-weight: bold;
        padding: 15px 15px;
        border: none;
    }

    table td {
        border: none;
        border-bottom: 1px dotted #c0c0c0;
        padding: 15px 15px;
        font-weight: bold;
        color: #b84e99;
    }

    table td span {
        display: block;
        font-weight: bold;
        margin-bottom: 10px;
        color: #000;
    }

    .table_caption {
        font-size: 1.6rem;
        padding-left: 0px;
    }

    .comments {
        font-size: 1.8rem;
    }

    .comments p {
        padding: 10px 10px;
        font-size: 1.4rem;
    }

    .comments p br {
        display: none;
    }

    table tr td span.small {
        display: inline;
        font-size: 1.3rem;
        font-weight: normal;
        color: #b84e99;
    }

    .price .table_caption {
        font-size: 1.6rem;
    }

    table td:nth-last-child(1) {
        border-bottom: none;
    }
}





/*-------------------------------------------*/
/*料金*/
/*-------------------------------------------*/
section.price {
    padding-bottom: 95px;
    margin-top: 185px;
}

.price .heading {
    margin-bottom: 53px;
}

.price table th:nth-child(1) {
    width: 29%;
}

.price table th:nth-child(2) {
    width: 69%;
}

.price table th {
    padding: 30px 20px 24px 20px;
}

td.padrl {
    width: 28%;
}

.price table td {
    padding: 21px 20px 18px 20px;
}

td.money {
    font-size: 2.0rem;
}


.price .table_caption {
    font-size: 1.6rem;
    display: flex;
    justify-content: end;
}


.table_sp {
    display: none !important;
}

@media screen and (max-width: 768px) {
    table {
        font-size: 2.0rem;
    }

    table td {
        padding: 20px 10px;
    }

    td.money {
        font-size: 2.5rem;
    }

    td.money .small {
        font-size: 1.6rem;
    }

    .price table th {
        padding: 20px 10px;
    }

    .price table td {
        padding: 20px 10px;
    }

    td.padrl {
        width: 29%;
    }

    .heading h3 img {
        padding-right: 0px;
    }


}

@media screen and (max-width: 480px) {
    section.sched {
        padding-top: 80px;
    }

    .sched .heading, .price .heading {
        margin-bottom: 50px;
    }

    .table_pc {
        display: none !important;

    }

    .table_sp {
        display: table !important;
    }

    th, td {
        display: block !important;
        width: 100% !important;
        font-size: 1.6rem;
    }

    table th {
        font-weight: bold;
        padding: 15px 15px;
        border: none;
    }

    table td {
        border: none;
        border-bottom: 1px dotted #c0c0c0;
        padding: 15px 15px;
        font-weight: bold;
        color: #b84e99;
    }

    table td span {
        display: block;
        font-weight: bold;
        margin-bottom: 10px;
        color: #000;
    }

    .table_caption {
        font-size: 1.6rem;
        padding-left: 0px;
    }

    .comments {
        font-size: 1.8rem;
    }

    .comments p {
        padding: 10px 10px;
        font-size: 1.4rem;
    }

    .comments p br {
        display: none;
    }

    table tr td span.small {
        display: inline;
        font-size: 1.3rem;
        font-weight: normal;
        color: #b84e99;
    }

    .price .table_caption {
        font-size: 1.6rem;
    }

    table td:nth-last-child(1) {
        border-bottom: none;
    }

    section.price {
        padding-bottom: 50px;
        margin-top: 100px;
    }
}

/*-------------------------------------------*/
/*バナーエリア*/
/*-------------------------------------------*/
section.selection_bnr {
    margin-bottom: 170px;
}