/* 文字の大きさ */
h1,
h2,
h3,
h4 {
    margin: 0;
    padding: 0;
}

#News {
    width: 90%;
    margin: 5% auto 15%;
    z-index: 1;
}

.News-title {
    font-weight: bold;
    font-size: 25px;
    display: flex;
    align-items: center;
    margin-bottom: 2%;
}

.news-divider {
    width: 1px;
    height: 20px;
    margin: 0 1%;
    background-color: #000000;
    display: inline-block;
}

#News p {
    font-size: 18px;

}


.news-btn {
    width: 10%;
    text-align: center;
    padding: 1%;
    font-size: 18px;
    font-weight: bold;
    border-radius: 40px;
    cursor: pointer;
    color: white;
    background-color: #363636;
    margin: 8% auto 0;
    transition-duration: .4s;
    border: 1px solid #363636;
}

.news-btn:hover {
    background: #fff;
    color: #363636;
    border: 1px solid #363636;
}

/* 画像サイズ */
#TopTriangle {
    position: absolute;
    top: -3%;
    left: -2%;
}

/* アニメーション */
.svg-wrapper {
    top: -43%;
    left: 2%;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {

    .Top-title {
        left: 0%;
    }

    #TopText {
        margin-top: 23%;
    }

    #News {
        width: 92%;
        top: 0;
    }

    .news-title {
        width: 100%;
        padding: 3% 7% 0 1%;
    }

    .news-item {
        height: 120px;
        padding: 5px 5%;
    }

    .News-title {
        font-size: 20px;
    }

    .news-divider {
        width: 2px;
        height: 25px;
        margin: 0 3%;
    }

    #News p {
        font-size: 18px;
    }

    .news-btn {
        margin: 0 auto;
        width: 100px;
        font-size: 19px;
        padding: 6px 27px;
    }

    #TopView {
        position: relative;
        height: 300px;
    }

    #TopTriangle {
        position: absolute;
        top: -1%;
        left: -6%;
        width: 30%;
    }

    .back-ground-logo {
        width: 120px !important;
    }

    .svg-wrapper {
        top: -60%;
        left: -15%;
    }
}