.img_max {
    width: 100%;
}
.event_bg01::before {
    content: "";
    background: url("/news/hitotsunoinochi/nerima-event20260126/img/bg01_pc.jpg") no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
@media (max-width: 640px) {
    .event_bg01::before {
        background: url("/news/hitotsunoinochi/nerima-event20260126/img/bg01_sp.jpg") no-repeat;
        background-size: cover;
    }
}

/* section */
.event_section {
  margin: 60px auto 50px;
  position: relative;
}
.event_section .event_inner {
    max-width: 1100px;
    margin: 0 auto;
}
.event_section.event_detail .event_inner {
    padding: 40px 0 50px;
}
.event_section .event_schedule {
    margin: 0 0 30px;
    padding: 0 50px 40px;
}
.event_section.event_detail {
    margin: 60px auto 30px;
}
.event_section.note {
    margin: 0px auto 60px;
  }
@media (max-width: 640px) {
    .event_section {
        margin: 30px auto 20px;
    }
    .event_section .event_inner {
        padding: 0 5%;
    }
    .event_section .event_lead {
        font-size: 3.8vw;
        font-feature-settings: "palt";
    }

    .event_section.event_detail {
        margin: 40px auto 20px;
    }
    .event_section.event_detail .event_inner {
        padding: 30px 5% 30px;
    }
    .event_section .event_schedule {
        margin: 0 0 30px;
        padding: 0 0 20px;
    }
}
/* /section */

/* list */
.event_section .event_list {
    display: block;
    margin-top: 30px;
}
.event_section .event_list li {
    flex: 1;
}
.event_section .event_list li:nth-child(2n),
.event_section .event_list li:last-child {
    margin-top: 40px;
}

.event_section .event_detail_list {
    display: flex;
    gap: 50px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.event_section .event_detail_list li {
    flex: 1;
}

.event_section .event_schedule_list {
    display: flex;
    gap: 50px;
    margin-top: 15px;
    margin-bottom: 10px;
}
.event_section .event_schedule_list li {
    flex: 1;
}

@media (min-width: 641px) {
    .event_section .event_detail_list li {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-end;
    }
}
@media (max-width: 640px) {
    .event_section .event_list li:nth-child(2n),
    .event_section .event_list li:last-child {
        margin-top: 20px;
    }

    .event_section .event_detail_list {
        flex-direction: column;
        gap: 0;
        margin-top: 20px;
    }
    .event_section .event_detail_list li:nth-child(2n),
    .event_section .event_detail_list li:last-child {
        margin-top: 30px;
    }

    .event_section .event_schedule_list {
        flex-direction: column;
        gap: 0;
        margin-bottom: 20px;
    }
    .event_section .event_schedule_list li {
        padding: 0 5%;
    }
    .event_section .event_schedule_list li:nth-child(2n),
    .event_section .event_schedule_list li:last-child {
        margin-top: 20px;
    }
}
/* /list */

/* text */
.event_section .event_lead {
    color: #000;
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: bold;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
}
.event_section .event_main_title {
    color: #008cd6;
    border-top: 4px solid #008cd6;
    border-bottom: 4px solid #008cd6;
    font-size: clamp(30px, 4.2vw, 42px);
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    padding: 8px 0 10px;
}
.event_section .event_title {
    color: #006bb9;
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    position: relative;
    padding: 15px 0 18px;
}
.event_section .event_title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        #006bb9 20%,
        #006bb9 80%,
        transparent
    );
}
.event_section .event_title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        #006bb9 20%,
        #006bb9 80%,
        transparent
    );
}
.event_section .event_name {
    color: #006bb9;
    font-size: clamp(18px, 2.8vw, 28px);
    text-align: center;
    line-height: 1.3;
    margin-top: 12px;
}
.event_section .event_name.large {
    max-height: 80px;
    height: 100%;
}
.event_section .event_text {
    color: #231815;
    font-size: clamp(14px, 2.2vw, 22px);
    line-height: 1.5;
    margin-top: 10px;
}
.event_section .event_note {
    display: block;
    color: #231815;
    font-size: clamp(12px, 1.4vw, 14px);
    line-height: 1.4;
    margin-top: 5px;
}
.event_section .event_sub_title {
    color: #fff;
    background: #97bbcb;
    font-size: clamp(16px, 2.6vw, 26px);
    text-align: center;
    line-height: 1.2;
    padding: 4px 0 6px;
}
.event_section .event_schedule_text {
    color: #231815;
    font-size: clamp(18px, 2.8vw, 28px);
    line-height: 1.4;
}
.event_section .event_schedule_note {
    color: #231815;
    font-size: clamp(12px, 1.4vw, 14px);
    line-height: 1.4;
}
.event_section .note_text {
    color: #231815;
    font-size: clamp(12px, 1.4vw, 14px);
    line-height: 1.4;
}
@media (max-width: 640px) {
    .event_section .event_lead {
        font-size: 3.8vw;
        font-feature-settings: "palt";
        line-height: 1.8;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    .event_section .event_main_title {
        border-top: 2px solid #008cd6;
        border-bottom: 2px solid #008cd6;
        font-size: 6vw;
        line-height: 1.4;
        padding: 5px 0 7px;
    }
    .event_section .event_title {
        font-size: 6vw;
        padding: 10px 0 12px;
    }
    .event_section .event_name {
        font-size: 4.5vw;
        margin-top: 15px;
    }
    .event_section .event_text {
        font-size: 3.5vw;
        margin-top: 5px;
    }
    .event_section .event_sub_title {
        font-size: 4.5vw;
        padding: 4px 0 6px;
    }
    .event_section .event_schedule_text {
        font-size: 4vw;
        line-height: 1.4;
    }
    .event_section .event_schedule_note {
        font-size: 3vw;
    }
    .event_section .note_text {
        font-size: 3vw;
    }
}
/* /text */

/* button */
.event_section .event_btn {
    max-width: 700px;
    margin: 60px auto 0;
}
.event_section .event_btn a {
    border-radius: 50px;
    background: #044784;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}
.event_section .event_btn .btn_text {
    display: block;
    color: #fff;
    font-size: clamp(30px, 4vw, 40px);
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
}
.event_section .event_btn a:hover {
    opacity: .7;
    text-decoration: none;
}
@media (max-width: 640px) {
    .event_section .event_btn {
        max-width: 100%;
        margin: 40px auto 0;
    }
    .event_section .event_btn a {
        height: 100%;
        padding: 10px 0;
    }
    .event_section .event_btn .btn_text {
        font-size: 5vw;
    }
}
/* /button */


