@charset "UTF-8";

/*------ポイント------*/
a#point+div .inner_item {
    background: var(--i_main_color);
    border-radius: 25px 0;
}
a#point+div .inner_item .heading.block_header_4 {
    display: flex;
    flex-direction: column-reverse;
}
a#point+div .inner_item .heading.block_header_4 h3.h {
    color: #fff;
}
a#point+div .inner_item .heading.block_header_4 p {
    background: #fff;
    border-radius: 50px;
    color: var(--i_main_color);
    font-size: 2.0rem;
    margin-bottom: 10px;
}
a#point+div .inner_item .inner_item_txt p {
    color: #fff;
}

/*------スケジュール------*/
a#schedule+section {
    padding: 0 var(--i_padding, 20px);
    margin-bottom: 30px;
}
a#schedule+section .content_wrapper {
    background: #fff;
    padding: 30px;
    border: 5px solid var(--i_main_color);
    border-radius: 30px 0;
}
a#schedule+section .box {
    margin-bottom: 20px;
}
a#schedule+section .wrapper_item h3.day {
    font-size: 2.0rem;
    color: var(--i_sub_color);
}
a#schedule+section .wrapper_item .flex {
    display: flex;
    justify-content: flex-start;
    gap: 100px;
}
a#schedule+section .wrapper_item h4.class {
    font-size: 1.9rem;
}
a#schedule+section .wrapper_item p {
    font-weight: bold;
    margin-bottom: 0;
}
a#schedule+section .wrapper_item p.nb {
    font-weight: 500;
}
a#schedule+section .wrapper_item p.place {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
a#schedule+section .wrapper_item p.place a {
    background: var(--i_main_color);
    padding: 0 40px;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
}
a#schedule+section .wrapper_item p.place {
    align-items: center;
}
@media screen and (max-width: 420px) {
    a#schedule+section .wrapper_item .flex {
        gap: 60px;
    }
    a#schedule+section .wrapper_item p.place a {
        padding: 0 30px;
    }
}