@charset "UTF-8";

.page_mv {
    width: 100%;
    margin-top: 110px;
    height: 130px;
}

.page_mv img {
    width: 100%;
}

/* お知らせ */
.news {
    position: relative;
    width: 100%;
}

.news_content {
    margin-top: 300px;
    position: relative;
}

.bg_text_08 {
    position: absolute;
    top: 30px;
    left: -50px;
}

.news_content_inner {
    margin-top: 164px;
}

.news_list {
    display: flex;
    padding: 30px 0;
    border-bottom: solid 1px #5F6F52;
}

.news_listDate {
    margin-right: 80px;
    color: #B99470;
    font-size: 14px;
}

.news_listTitle {
    color: #5F6F52;
    transition: color .3s ease-out;
    text-decoration: none;
    padding-top: 10px;
}

.news_listTitle:hover {
    color: #B99470;
}



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



    /* ハンバーガー */
    .spButton {
        display: block;
        position: relative;
        width: 32px;
        height: 25px;
        z-index: 300;
        padding: 0 30px;
    }

    .spButton span {
        position: absolute;
        background-color: #7D936C;
        width: 32px;
        height: 2px;
        transition: all .3s ease;

    }

    .spButton span:nth-child(1) {
        top: 0;
        left: 0;
    }

    .spButton span:nth-child(2) {
        top: 12px;
        left: 0;
    }

    .spButton span:nth-child(3) {
        top: 24px;
        left: 0;
    }

    /* ハンバーガーボタン❌にする */
    .active .spButton span:nth-child(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 40%
    }

    .active .spButton span:nth-child(2) {
        opacity: 0;
        /*真ん中の線は透過*/
    }

    .active .spButton span:nth-child(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 40%;
    }

    /* ハンバーガーで表示するメニュー */
    .header_inner {
        position: relative;
    }

    .sp_header_menu {
        position: absolute;
        background-color: #7D936C;
        color: #fff;
        font-size: 14px;
        width: 100%;
        height: 700px;
        top: 100%;
        left: 0;
        right: 0;
        padding: 70px;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
        transform: translateY(100%);
    }

    .sp_gnav_list {
        text-align: center;
    }

    .sp_gnav_list li {
        padding-bottom: 20px;
    }

    /* ハンバーガー押した時にメニューを表示 */
    .active .sp_header_menu {
        opacity: 1;
        visibility: visible;
        transition: 0.5s;
        transform: translateY(0);
    }

    /* お知らせ */

    .news_content {
        margin-top: 30px;
        padding: 0 20px;
        margin-bottom: 70px;
    }

    .news_content_inner {
        margin-top: 30px;
    }

    .news_list {
        flex-direction: column;
    }

    .news_listTitle {
        font-size: 14px;
    }
}