#top_notice {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
#top_notice .top_notice_header {
    width: 70%;
    color: #452324;
    background-color: #e6f4e3;
    border: 1px solid #5E9A20;
    align-items: center;
    padding: 20px 30px;
    border-radius: 5px;
    display: flex;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 10px;
}
#top_notice .top_notice_header h2 {
    font-size: 2rem;
    font-weight: bold;
}
#top_notice .top_notice_header i {
    margin-left: auto;
    display: flex;
    align-items: center;
}
#top_notice .pho img {
    height: 4rem;
}
#top_notice .click_text {
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
}
#top_notice .top_notice_content {
    display: none;
    margin: 0 auto 15px auto;
}
#top_notice .top_notice_content p {
    width: 67%;
    margin: 10px auto;
    line-height: 1.5;
    font-weight: bold;
    text-align: left;
}
#top_notice .closing {
    text-align: right !important;
}
#top_notice .top_notice_content_list {
    margin: 0 auto;
    width: 55%;
}
.pc-only {
    display: block;
}
.sp-only {
    display: none;
}
@media (max-width: 768px) {
    #top_notice {
        width: 95%;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    #top_notice .top_notice_header {
        width: 100%;
        margin-bottom: 10px;
        padding: 20px 15px;
        justify-content: center;
        text-align: center;
    }
    #top_notice .top_notice_header h2 {
        font-size: 1.5rem;
    }
    #top_notice .pho img {
        height: 3rem;
    }
    #top_notice .click_text {
        font-size: 1.5rem;
    }
    #top_notice .top_notice_content {
        width: 95%;
    }
    #top_notice .top_notice_content p {
        width: 95%;
        font-size: 12px;
        text-align: left;
        margin: 0 auto 10px auto;
    }
    #top_notice .top_notice_content_list {
        width: 95%;
    }
    #top_notice .closing {
        text-align: right !important;
    }
    .pc-only {
        display: none;
    }
    .sp-only {
        display: block;
    }
}