.banner_wrap {
    position: relative;
    background: url(../../img/common/common/back_repeat.gif) repeat center top;
}

.banner_wrap:before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 10px;
    background: url(../../img/common/common/back_shadow.png) repeat 0 0;
    left: 0;
    z-index: 5;
}

.banner_wrap img {
    max-width: 980px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

.main_content {
    padding: 65px 0 160px;
    background-color: white;
}

.main_content * {
    box-sizing: border-box;
}

.main_content p {
    margin: 0;
}

.main_content .mc_inner {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
}

.main_content h2.ttl {
    font-size: 22px;
    text-align: center;
    line-height: 1;
    letter-spacing: 2px;
    text-indent: 2px;
    font-weight: bold;
    color: #5a4644;
}

.main_content .top_exp {
    width: 100%;
    padding: 20px 40px;
    border-radius: 15px;
    border: solid 2px #347d53;
    margin: 25px auto 0;
}

.main_content .top_exp .text_flex {
    display: flex;
    align-items: flex-start;
}

.main_content .top_exp .text_flex + .text_flex {
    margin-top: 10px;
}

.main_content .top_exp .text_flex p {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.main_content .top_exp .text_flex p span {
    font-size: 20px;
    font-weight: bold;
}

.calendar_wrap {
    margin-top: 50px;
}

.calendar_wrap .c_head {
    font-size: 24px;
    text-align: center;
    letter-spacing: 1px;
    text-indent: 1px;
    line-height: 1;
    font-weight: bold;
}

.calendar_block {
    width: 100%;
    margin-top: 15px;
    border: solid 1px #333;
}

.calendar_block .week_head {
    display: flex;
    border-bottom: solid 1px #333;
}

.calendar_block .week_wrap {
    display: flex;
    flex-wrap: wrap;
}

.calendar_block .week_wrap + .week_wrap {
    border-top: solid 1px #333;
}

.calendar_block .week_head .day {
    width: calc(100% / 7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar_block .week_head .day + .day,
.calendar_block .week_wrap .day + .day {
    border-left: solid 1px #333;
}

.calendar_block .week_head .day {
    height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calendar_block .week_head .day.sun {
    background-color: #ef4123;
}

.calendar_block .week_head .day.sat {
    background-color: #236bef;
}

.calendar_block .week_head .day p {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-indent: 0.5px;
}

.calendar_block .week_head .day:is(.sun, .sat) p {
    color: white;
}

.calendar_block .week_wrap .day {
    width: calc(100% / 7);
    min-height: 100px;
    padding: 10px;
}

.calendar_block .week_wrap .day.rsv:hover {
    cursor: pointer;
}

.calendar_block .week_wrap .day:nth-child(n + 8) {
    border-top: solid 1px #333;
}

.calendar_block .week_wrap .day:nth-child(7n + 1) {
    border-left: none;
}

.calendar_block .week_wrap .day.disabled * {
    opacity: 0.6;
}

.calendar_block .week_wrap .day .day_head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5px;
}

.calendar_block .week_wrap .day .day_head .number {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    font-feature-settings: "palt";
    white-space: nowrap;
}

.calendar_block .week_wrap .day.sun .day_head .number {
    color: #ef4123;
}
.calendar_block .week_wrap .day.sat .day_head .number {
    color: #236bef;
}

.calendar_block .week_wrap .day.holiday .day_head .number {
    color: #ef4123;
}

.calendar_block .week_wrap .day .day_head .holi_name {
    font-size: 12px;
    color: #ef4123;
    line-height: 1;
    font-weight: bold;
}

.calendar_block .week_wrap .day .day_content .event {
    pointer-events: none;
    display: block;
    margin-top: 3px;
    font-size: 12px;
}

.calendar_block .week_wrap .day .day_content .mark {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 1;
}
/* .calendar_block .week_wrap .day .day_content .mark.close {
    font-size: 30px;
} */

.guide_wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

.guide_wrap .gw_head {
    font-size: 26px;
    font-weight: bold;
}

.guide_wrap .guide {
    display: flex;
    align-items: center;
}

.guide_wrap .guide .mark {
    font-size: 60px;
    line-height: 1;
}

.guide_wrap .guide .mark_text {
    font-size: 22px;
    line-height: 1;
}

.modal_wrap {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(51, 51, 51, 0.7);
    align-items: center;
    justify-content: center;
    display: none;
}

.modal_wrap.active {
    display: flex;
}

.modal_wrap .day_modal {
    max-width: 600px;
    width: calc(100% - 40px);
    height: 65%;
    background-color: white;
    border-radius: 10px;
    padding: 40px 50px;
    position: relative;
}

.modal_wrap .day_modal .close_btn {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
}
.modal_wrap .day_modal .close_btn:hover {
    cursor: pointer;
}

.modal_wrap .day_modal .close_btn::before,
.modal_wrap .day_modal .close_btn::after {
    content: "";
    width: 25px;
    height: 2px;
    border-radius: 1px;
    background-color: #333;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.modal_wrap .day_modal .close_btn::before {
    transform: rotate(45deg);
}
.modal_wrap .day_modal .close_btn::after {
    transform: rotate(-45deg);
}

.modal_wrap .day_modal .modal_content {
    height: calc(100% - 50px);
}

.modal_wrap .day_modal .date {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
}

.modal_wrap .day_modal .holiday {
    font-size: 18px;
    color: #ef4123;
    margin-top: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
}

.modal_wrap .day_modal .event_wrap {
    margin-top: 30px;
}

.modal_wrap .day_modal .event {
    display: flex;
    justify-content: center;
}

.modal_wrap .day_modal .event + .event {
    margin-top: 15px;
}

.modal_wrap .day_modal .event a {
    font-size: 18px;
    line-height: 23px;
}

.modal_wrap .day_modal .situation {
    /*  display: flex;
    align-items: center;
    gap: 5px; */
    margin-top: 30px;
    text-align: center;
}

.modal_wrap .day_modal .situation .text01 {
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
}

.modal_wrap .day_modal .situation .text02 {
    font-size: 60px;
    line-height: 1;
    margin-top: 5px;
}

.modal_wrap .day_modal .situation .text03 {
    font-size: 18px;
    line-height: 1;
    margin-top: 5px;
}

.modal_wrap .day_modal .rsv_btn {
    width: 100%;
    max-width: 350px;
    height: 40px;
    border-radius: 5px;
    background-color: #5a4644;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin: 10px auto 0;
    transition: all 0.3s;
}
.modal_wrap .day_modal .rsv_btn:hover {
    opacity: 0.6;
    cursor: pointer;
}

.modal_wrap .day_modal .rsv_btn p {
    font-size: 16px;
    color: white;
    text-align: center;
    font-weight: bold;
}

.calendar_slide .slick-arrow[aria-disabled="true"] {
    opacity: 0.25;
}

.calendar_slide .slick-prev,
.calendar_slide .slick-next {
    top: 60px;
    width: 20px;
    height: 25px;
    z-index: 10;
}

.calendar_slide .slick-prev:before,
.calendar_slide .slick-next:before {
    content: "";
    width: 20px;
    height: 25px;
    background-color: #333;
    opacity: 1;
    display: block;
}

.calendar_slide .slick-prev {
    left: 0;
}

.calendar_slide .slick-prev:before {
    clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
}

.calendar_slide .slick-next {
    right: 0;
}

.calendar_slide .slick-next:before {
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}
