main {
    background: #FEFAFA;
    padding: 100px 0;
}


/* 目次全体の外枠 */
.list_menu_wrapper {
    margin: 20px auto;
    width: 100%;
    max-width: 650px;
    background-color: #fff;
    /* 任意: 背景色 */
    border: 1px solid #d2d2d2;
    /* 任意: 枠線 */
    border-radius: 4px;
}

/* クリック領域である見出し */
.menu_title {
    display: block;
    margin: 0;
    padding: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
}

/* 右側に開閉状態を示すアイコン(▼)を配置 */
.menu_title::after {
    content: "▼";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    transition: transform 0.3s ease;
    /* アイコンの回転アニメーション */
}

/* 開いている状態のアイコン(▲) */
.menu_title.is-open::after {
    transform: translateY(-50%) rotate(180deg);
}

/* リスト部分の初期表示設定 */
.list_menu {
    display: block;
    padding: 0 15px 15px;
    line-height: 2.5;
    text-align: left;
    max-width: 450px;
    margin: auto;
}

.list_menu li {
    border-bottom: 1px solid;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.list_menu a {
    color: #222;
    transition: .5s all;
}

.list_menu a:hover {
    color: #FF608F;
}

/* 目次 ここまで */

.text_box h2,
.text_box h3 {
    color: #FF608F;
}

.text_box {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 100px;
}

.text_box h2 {
    font-size: 2em;
    margin-bottom: 1em;
}

.text_box h3 {
    font-size: 1.5em;
    margin-bottom: 1.5em;
}

.text_box p {
    text-align: justify;
    line-height: 2.2;
    margin-bottom: 15px;
    font-size: 18px;
}

.image_box {
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-wrap: wrap;
    margin: 30px auto;
}

.image_block {
    margin: 0 10px;
    flex-grow: 1;
}

.image_block p {
    font-size: 18px;
    text-align: center;
    max-width: 300px;
    margin: 15px auto 0;
}

.image_block img {
    width: 100%;
    max-width: 300px;
    height: 225px;
    object-fit: cover;
    border-radius: 25px;
}

.more_learn.flex_box {
    flex-direction: initial;
    flex-wrap: wrap;
}

.more_learn .btn {
    width: 100%;
    max-width: 350px;
    height: 150px;
    border-radius: 25px;
    margin: 15px;
    background: #ff6f9e;
}

.more_learn .btn a {
    font-size: 1.5em;
    font-family: "zen maru Gothic";
}



/* about descriptions */
main.about_contents .service_block {
    margin: 100px auto;
}

.floor_contents .image_box {
    max-width: 1050px;
}

.floor_contents .image_block {
    margin-bottom: calc(2em + 75px);
}

.attention {
    position: relative;
    border: 3px solid #ddd;
    border-radius: 0 25px 25px 25px;
    width: fit-content;
    margin: auto;
    padding: 10px 30px;
}

.attention-text {
    position: absolute;
    color: #fff;
    text-align: justify !important;
    letter-spacing: .1em;
    top: calc(-4em - 10px);
    left: -3px;
    background: #ddd;
    padding: 10px 10px 10px 1em;
    border-radius: 15px 15px 0 0;
}

.third_floor .attention {
    border: 3px solid #3CD400;
}

.third_floor .attention-text {
    background: #3CD400;
}


/* schedule */
.schedule_inner {
    color: #fff;
    width: 95%;
    height: stretch;
    max-width: 650px;
    margin: 50px auto;
    border: 5px solid #3CD400;
    background: #DFF2C2;
    border-radius: 25px;
}

h3.schedule_title {
    color: #222;
    font-size: 1.4em;
    background: #fff;
    width: 80%;
    margin: 15px auto;
    padding: 15px;
    border-radius: 15px;
}

.schedule_table {
    width: 80%;
    margin: 0 auto 30px;
}

.schedule_table_row {
    display: flex;
    margin: 0 0 10px;
}

.st_cell_left,
.st_cell_right {
    font-size: 1.15em;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 2.25;
    padding: 7.5px 20px;
    border-radius: 10px;
    margin-right: 20px;
}

.st_cell_left {
    flex: 1;
    background: #3CD400;
    height: fit-content;
}

.st_cell_right {
    flex: 5;
    text-align: justify;
    background: #6EC94B;
}

.hidden {
    opacity: 0;
}

.topics {
    position: relative;
    color: #FF6596;
    font-size: 1.1em;
    font-weight: 700;
    letter-spacing: .1em;
    text-align: left;
    width: 95%;
    max-width: 650px;
    margin: auto;
    border: 3px solid #FF6596;
    background: #FFECF2;
    padding: 25px 1em;
}

p.topics_title {
    font-size: 20px;
    position: absolute;
    color: #fff;
    text-align: justify !important;
    letter-spacing: .1em;
    top: calc(-3em + 8px);
    left: -3px;
    background: #FF6596;
    padding: 10px 10px 10px 1em;
    border-radius: 15px 15px 0 0;
}

.topics_inner li {
    margin-bottom: 20px;
    margin-left: 1em;
}

.topics_inner li:last-child {
    margin-bottom: 0;
}

.topics_inner p {
    line-height: 2.25;
}


/* 半日デイ */
.schedule_flex {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    height: 100%;
    width: 100%;
    max-width: 1300px;
    margin: auto;
}

.schedule.mooning,
.schedule.evening {
    flex-grow: 1;
}

.mooning .schedule_inner,
.evening .schedule_inner {
    margin-top: 0;
}

.mooning .schedule_inner {
    border-color: #4FD0FF;
    background: #E2F7FF;
}

.mooning .st_cell_left {
    background: #4FD0FF;
}

.mooning .st_cell_right {
    background: #6FD2F6;
}

.evening .schedule_inner {
    border-color: #FF4FF9;
    background: #FFECFE;
}

.evening .st_cell_left {
    background: #FF4FF9;
}

.evening .st_cell_right {
    background: #F491F1;
}


/* mini day */
.mini_floor .text_box {
    margin-top: 75px;
}

.mini_floor .text_box h3 {
    color: #222;
}

.mini_floor .text_box p {
    text-align: center;
}

.mini_floor .schedule_inner {
    border-color: #FF8732;
    background: #FFF1E6;
}

.mini_floor .st_cell_right {
    background: #FFB077;
}

.mini_floor .st_cell_left,
.st_cell_right.td_title {
    background: #FF8732;
}

.st_cell_right.td_title {
    line-height: 1.8;
}

.st_cell_right.td_title h3 {
    font-size: 1em;
}

.st_cell_right.td_title p {
    font-size: .8em;
}

.st_cell_right.td_image {
    background: none;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    padding-left: 0;
}

.st_cell_right.td_image>div {
    margin: 0px 5px 10px 5px;
}

.st_cell_right.td_image img {
    width: 100%;
    max-width: 170px;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 15px;
}

.st_cell_right.td_image img:first-child {
    margin-left: -10px;
}

.st_cell_right.td_text {
    background: none;
    color: #222;
    font-size: .95em;
    line-height: 1.8;
}

/* about_floor */
.floor_contents.about_floor {
    margin-top: 150px;
}

/* about_bath */
.bath_table {
    width: 95%;
    max-width: 650px;
    margin: 75px auto;
}

.bath_table_title {
    display: flex;
    border: 2px solid #FF608F;
    border-bottom: 0;
    width: fit-content;
    font-size: 1.15em;
    font-weight: bold;
    letter-spacing: .1em;
}

.bathroom_floor,
.bathroom_direction,
.bathroom_name {
    padding: 15px 20px;
}

.bathroom_floor {
    background: #FF608F;
    color: #fff;
}

.bathroom_direction {
    color: #FF608F;
    background: #FFECF2;
}

.bathroom_name {
    color: #FF608F;
}

.bath_table_inner {
    display: flex;
    align-items: anchor-center;
    border: 2px solid #FF608F;
    padding: 15px 20px;
}

.bathroom_image img {
    width: 275px;
    height: 180px;
    object-fit: cover;
}

.bathroom_desc {
    margin: 15px;
    text-align: justify;
}

.about_training .text_box h3 {
    color: #222;
}

.about_training .text_box p {
    max-width: 650px;
    margin: auto;
}

.training_desc {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 650px;
    margin: 0 auto 50px;
}

.machine_image img {
    width: 100%;
}

.machine_desc {
    text-align: left;
    margin-left: 2em;
}

.machine_desc h4 {
    font-size: 1.5em;
    margin-bottom: 25px;
}

.machine_desc p {
    font-size: 1.2em;
    font-weight: 500;
    letter-spacing: .1em
}

span.red {
    color: #FF1818;
}


/* news paperここから */
.newspaper {
    margin-bottom: 100px;
}
.newspaper.backnumber {
    width: 100%;
    max-width: 850px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: auto;
}
.newspaper.backnumber a {
    font-size: 1.15em;
    font-weight: 500;
    display: flex;
    justify-content: center;
    flex: 1;
    padding: 5px 15px;
    max-width: 120px;
    margin: 10px;
    color: #fff;
    background: #ff608f;
    border-radius: 7.5px;
    transition: .5s all;
}
.newspaper.backnumber a:hover {
    background: #fff;
    color: #ff608f;
    border: 1px solid;
}

/* event ここから */
.event_schedule h3 {
    font-size: 1.35em;
    color: #ff6596;
    letter-spacing: 0.1em;
    margin-bottom: 1em;
}
.event_schedule_block {
    margin: 50px auto;
}
.event_schedule_nav {
    width: fit-content;
    max-width: 850px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: auto;
}
.event_schedule_nav a {
    font-size: 1.15em;
    font-weight: 500;
    display: flex;
    justify-content: center;
    padding: 5px 15px;
    width: 115;
    margin: 10px;
    color: #fff;
    background: #ff608f;
    border-radius: 7.5px;
    transition: .5s all;
}
.event_schedule_nav a:hover {
    background: #ff7801;
}
.event_schedule_block h4 {
    color: #ef1f57;
    background: none;
    margin-top: 25px;
}

.event_gallery {
    margin: 150px 0;
}
.event_gallery_block {
    width: 95%;
    max-width: 850px;
    margin: 0 auto 100px;
}
.event_gallery_block h3 {
    color: #ff7801;
    font-size: 1.35em;
    letter-spacing: .1em;
    margin-bottom: 25px;
    border-top: 2px solid;
    border-bottom: 2px solid;
    padding: 17.5px 0;
}
.event_gallery_block h4 {
    margin: 10px 0;
    font-size: 1.35em;
    letter-spacing: .1em;
    padding: 7.5px;
    text-align: left;
}
.event_gallery_block p {
    font-size: 1.1em;
    width: fit-content;
    margin: 15px auto 50px;
    text-align: left;
}
.gallery_image {
    display: flex;
    max-width: 850px;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
    margin: auto;
}
.gallery_image img {
    width: 100%;
    max-width: 250px;
}


.event_gallery_monthly {
    margin-bottom: 100px;
    padding-top: 50px;
    border-top: 1px solid #ffa14f;
}
.event_gallery_monthly h3 {
    color: #ffffff;
    border: none;
    background: #ff7801;
    width: 100%;
    max-width: 200px;
    margin: 50px auto;
    padding: 7.5px 0;
    border-radius: 25px;
}
.event_gallery_monthly .text_box {
    margin: 30px 0;
}
.event_gallery_monthly .image_block img {
    width: 100%;
    max-width: 450px;
    object-fit: cover;
    height: auto;
    max-height: none;
    border-radius: 25px;
}
.event_gallery_monthly p {
    margin: 30px 0;
}
.event_gallery_monthly p {
    margin-bottom: 0;
}
.event_gallery_monthly .image_box {
    display: block;
    align-items: initial;
    margin: auto;
}



/* SPここから */
@media screen and (max-width: 900px) {

    main.about_contents, .floor_contents {
        width: 95%;
        margin: auto;
    }

    .floor_stair img {
        width: 100%;
        max-width: 420px;
    }

    .third_floor .attention {
        border-radius: 25px;
    }

    .attention {
        padding: 0 0 10px;
    }

    .third_floor .attention-text {
        position: relative;
        top: 0;
        left: 0;
        margin: 0;
        border-radius: 15px 15px 0 0;
    }

    .image_block img {
        padding: 10px 15px;
    }


    h3.schedule_title {
        width: 95%;
    }

    .schedule_table {
        width: 95%;
    }

    .st_cell_right {
        margin-right: 0;
    }
}

@media screen and (max-width: 700px) {
    .bath_table {
        width: fit-content;
    }

    .bath_table_inner {
        flex-direction: column;
        width: fit-content;
        max-width: 350px;
    }

    .bathroom_image {
        width: fit-content;
        margin: 0 auto 0 0;
    }

    .bathroom_desc {
        margin: 15px auto 15px 0;
    }
}

@media screen and (max-width: 550px) {
    .st_cell_left{
        padding: 7.5px 10px;
    }
    .topics {
        padding: 0;
        border-radius: 25px;
    }

    p.topics_title {
        position: relative;
        top: 0;
        left: 0;
    }

    .topics_inner {
        padding: 20px;
    }
}