@media (max-width: 767px) { 
    * {
        margin: 0;
        padding: 0;
    }
    .container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }
    body {
        font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
        background: rgb(248, 250, 251);
    }
    header {
        z-index: 10;
        top: 0;
        left: 0;
        width: 100%;
        height: 70px;
        position:fixed;
    }
    header .inner {
        padding: 0;
        display: flex;
        align-items: center;
        height: 60px;
    }
    /* .logo */
    header .logo {
        width: 180px;
        font-size: 20px;
        margin-top: 0;
    }
    header .logo a {
        text-decoration: none;
    }
    header .logo p {
        font-weight: bold;
        text-decoration: none;
        color: #566f84;
        font-size: 1rem;
    }
    header .logo img {
        width: 120px;
        height: 30px;
    }
    header .logo .logo_img {
        padding-top: 5px;
        height: 20px;
        width: auto;
    }
    /* header-navi-box */
    header .navi {
        display: none;
    }
    .hamburger-menu {
        display: block;
    }
    .menu-btn {
        position: fixed;
        top: 0;
        right: 5px;
        display: flex;
        height: 60px;
        width: 60px;
        justify-content: center;
        align-items: center;
        z-index: 90;
    }
    .menu-btn span,
    .menu-btn span:before,
    .menu-btn span:after {
        content: '';
        display: block;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        background-color: #566f84;
        position: absolute;
    }
    .menu-btn span:before {
        bottom: 8px;
    }
    .menu-btn span:after {
        top: 8px;
    }
    #menu-btn-check:checked ~ .menu-btn span {
        background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
    }
    #menu-btn-check:checked ~ .menu-btn span::before {
        bottom: 0;
        transform: rotate(45deg);
    }
    #menu-btn-check:checked ~ .menu-btn span::after {
        top: 0;
        transform: rotate(-45deg);
    }
    #menu-btn-check {
        display: none;
    }
    /* メニューの中 */
    .menu-content {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 80;
        background-color:rgba(255,255,255,0.8);
    }
    .menu-content ul {
        padding: 70px 10px;
    }
    .menu-content ul li {
        list-style: none;
        margin-bottom: 20px;
    }
    .menu-content ul li a {
        display: block;
        width: 100%;
        font-size: 15px;
        box-sizing: border-box;
        color:#1B152D;
        text-decoration: none;
        padding: 5px 0;
        position: relative;
        text-align: center;
    }
    .menu-content {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 100%;/*leftの値を変更してメニューを画面外へ*/
        z-index: 80;
        background-color:rgba(255,255,255,0.7);
        transition: all 0.5s;/*アニメーション設定*/
    }
    .menu-content .bland-icon {
        margin-top: 40px;
        text-align: center;
        bottom: 10px;
    }
    .menu-content .bland-icon p {
        font-size: 12px;
        margin-bottom: 5px;
    }
    .menu-content .bland-icon a {
        text-decoration: none;
    }
    .menu-content .bland-icon img {
        width: 30px;
        height: 30px;
        margin: 0 5px;
    }
    #menu-btn-check:checked ~ .menu-content {
        left: 0;/*メニューを画面内へ*/
    }

    /* FOOTER */
    footer {
        margin-top: 60px;
        color: #566f84;
        text-align: center;
        padding: 20px; 
    }
    footer h1 a {
        font-size: 40px;
        font-weight: bold;
        color: #566f84;
        text-decoration: none;
    }
    footer .link-list a {
        display: none;
    }
    footer .link-list {
        margin-top: 0;
        padding: 0;
        display: none;
        flex-wrap: nowrap;
        justify-content: center;
    }
    footer .link-list li {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    footer p {
        margin: 0;
        padding-top: 20px;
        font-size: 10px;
    }
}