@charset "utf-8";

/* シンプルなお知らせ共通 */
#main-title h1 {
    transform: scale(0.9, 1);
    width: 90%;
    font-size: 40px;
    font-weight: bold;
    color: black;
    position: relative;
    padding-left: 2rem;
}

#wrapper {
    width: 90%;
    background-color: #eaedf7;
    padding: 1.5rem 2rem 2rem;
    margin-left: 2rem;
    box-sizing: border-box;
}

#wrapper p {
    margin: 0 0 1rem;
    font-size: 18px;
    line-height: 1.8;
}

#wrapper a {
    font-size: 18px;
    font-weight: bold;
}

#wrapper a:hover { color: #ea5506; }
.related-link { margin-top: 1.5rem !important; }
.notice-red {
    color: #dc143c;
    font-weight: bold;
}

/* スマホ表示 */
@media screen and (max-width: 767px) {
    #main-title {
        width: 90%;
        margin: 0 auto;
    }

    #main-title h1 {
        transform: none;
        width: auto;
        max-width: none;
        font-size: 22px;
        padding-left: 0;
        border-bottom: solid 5px #cce4ff;
    }

    #main-title h1::after {
        position: absolute;
        content: "";
        display: block;
        width: 30%;
        border-bottom: solid 5px #5472cd;
    }

    #wrapper {
        width: 95%;
        margin: 1rem auto;
        padding: 1rem;
    }

    #wrapper p {
        font-size: 16px;
        line-height: 1.7;
    }

    #wrapper a { font-size: 16px; }
}