* {
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 1170px;
}

.container img {
    width: 100%;
    vertical-align: middle;
}

.fb-page,
.fb-page span,
.fb-page span iframe[style] {
    height: 95% !important;
    margin: auto 0;
}

.news-container {
    background-image: url("img/news_timeline.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    height: 54.94vw;
    padding-top: 16%;
    margin-top: 20px;
    margin-left: 5%;
    margin-right: 5%;
    height: 40vw;
    overflow: hidden;
}




.news-header {
    grid-row: 1;
    grid-column: 1 /4;
}

.news-left {
    grid-row: 1/4;
    grid-column: 1;
}

.news-right {
    grid-row: 1/4;
    grid-column: 3;
}

.news-top {
    grid-row: 1;
    grid-column: 2;
}


.news-body {
    grid-row: 2;
    grid-column: 2;
}


.news-footer {
    grid-row: 3;
    grid-column: 1 / 4;
}


.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    /*background-color: #3584bb;*/
}

.menu-btn span {
    content: '';
    background-image: url("img/menu_open_button.png");
    background-size: contain;
    background-repeat: no-repeat;
    border: 0;
    resize: both;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0);

    position: absolute;
}

.menu-btn span:before {
    bottom: 8px;
}

.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked~.menu-btn span {
    background-image: url("img/menu_close_button.png");
    background-size: contain;
    border: 0;
    resize: both;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0);
}

#menu-btn-check:checked~.menu-btn span::before {
    bottom: 0;
    border: 0;
    transform: rotate(45deg);
    background-color: rgba(255, 255, 255, 0);
}

#menu-btn-check:checked~.menu-content {
    left: 0;
    /*メニューを画面内へ*/
}

#menu-btn-check:checked~.menu-btn span::after {
    top: 0;
    border: 0;
    transform: rotate(-45deg);
    background-color: rgba(255, 255, 255, 0);
}

#menu-btn-check {
    display: none;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    /*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #03202B;
    transition: all 0.3s;
    /*アニメーション設定*/
    text-align: left;
}

.menu-content img {
    width: 200px;
}


.menu-content ul {
    padding: 20px 10px 0;
}

.menu-content ul li {
    list-style: none;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    margin-top: 0.75em;
    margin-bottom: 0.75em;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W6", "ヒラギノ明朝 ProN W6", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    ;
    font-weight: bold;
}

.menu-content ul li a {
    width: 100%;
    box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;
    position: relative;
}

#contact-form {
    margin: 0 auto;
    text-align: left;
    width: 80%;
    max-width: 880px;
}

#contact-form .form {
    background-color: #E4EDF1;
    border: none;
    outline: solid 1.5px #3B6369;
    border-radius: 7px;
    line-height: 2;
    width: 100%;
    margin-top: 0.25em;
    margin-bottom: 1.25em
}

#contact-form em {
    font-size: 70%;
    font-weight: bold;
    color: #C60033;
}

#contact-form .send {
    max-width: 60%;
    width: unset;
}