@charset "UTF-8";
/*
 * alert.css
 *
 */

/* メインタイトル
---------------------------------------------------------- */
main img {
    width: 100%;
}

.main-title {
    background: #99cfc7;
    text-align: center;
    padding: 40px 0;
    margin: 0 0 20px;
}

.main-title img {
    width: 150px;
}

@media screen and (min-width: 769px) {

    /* PC */
    .main-title {
        padding: 84px 0;
        margin: 0 0 58px;
    }

    .main-title img {
        width: 214px;
    }
}

/* コンテンツ
---------------------------------------------------------- */
.alert-box {
    margin: 0 20px 30px;
}

.alert-box>h2 {
    background: #727498;
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    padding: 8px 0;
}

.alert-box>ol {
    margin: 12px 14px 0;
}

.alert-box>ol li {
    font-size: 1.4rem;
    line-height: 1.8;
    position: relative;
    padding: 0 0 0 1.5em
}

.alert-box>ol li:before {
    content: "1.";
    position: absolute;
    top: 0;
    left: 0;
}

.alert-box>ol li:nth-child(2):before {
    content: "2.";
}

.alert-box>ol li:nth-child(3):before {
    content: "3.";
}

.alert-box .alert-text {
    margin: 12px 14px 0;
    font-size: 1.4rem;
    line-height: 1.8;
}

.alert-sub>section {
    margin: 12px 0 30px;
    border: 1px solid #404272;
}

.alert-sub>section>h3 {
    color: #404272;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    padding: 8px 0;
    background: #f1f1f5;
}

.alert-sub>section>ul {
    padding: 12px;
}

.alert-sub>section>ul li {
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: center;
}

.alert-sub>section>ul li:nth-child(2) {
    text-align: left;
    background: url(../../img/alert/arw_01.png) top 12px center no-repeat;
    background-size: 22px;
    padding: 34px 0 0;
}

.alert-sub>section>ul li span {
    color: #0000b1;
}

@media screen and (min-width: 769px) {

    /* PC */
    .alert-box {
        margin: 0 auto 40px;
        width: 640px;
    }

    .alert-box>h2 {
        font-size: 1.5rem;
        padding: 12px 0;
    }

    .alert-box>ol {
        margin: 16px 20px 0;
    }

    .alert-box>ol li {
        font-size: 1.5rem;
    }

    .alert-box .alert-text {
        margin: 16px 20px 0;
        font-size: 1.5rem;
    }

    .alert-sub {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
        margin: 20px 20px 0;
    }

    .alert-sub>section {
        margin: 0;
        width: 286px;
    }

    .alert-sub>section>h3 {
        font-size: 1.5rem;
        padding: 10px 0;
    }

    .alert-sub>section>ul {
        padding: 12px;
    }

    .alert-sub>section>ul li {
        font-size: 1.5rem;
    }
}