body {
    font-family: "ヒラギノ角ゴ pro";
}
header {
    margin-right: 0;
    padding: 50px 50px 40px 50px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 5;
    background-color: rgb(255, 255, 255);
}
.header_menu {
    display: flex;
    justify-content: space-between;
}
.nav {
    font-size: 18px;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    list-style: none;
}
.nav > li {
    margin: 0 50px 0 0;
}
.nav > li:last-child{
    margin-right: 0;
}
.logo {
    width: 150px;
}
.toggle-menu {
    display: none;
}
.toggle-filter {
    display: none;
}
.language-button {
    margin-top: 20px;
    font-size: 15px;
    display: flex;
}
.japanese {
    color: #D92729;
    display: block;
}
.english {
    display: block;
}
.en-japanese {
    display: block;
}
.en-english {
    color: #D92729;
    display: block;
}
.language-button_deco {
display: block;
}
.button-box {
    margin: 150px 0 150px;
}
.button-box_form {
    margin: 0;
}
.button {
    display: contents;
}
.button a {
    background-color: rgba(255, 255, 255, 0.7);
    width: 15rem;
    color: #333;
    cursor: pointer;
    display: block;
    position: relative;
    transition: 0.3s;
    line-height: 3rem;
    margin: 2.5rem auto 0;
    text-align: center;
    font-size: 15px;
}
.button a svg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.button a svg rect {
    fill: none;
    width: 100%;
    height: 100%;
    stroke: #333;
    stroke-width: 2;
    stroke-dasharray: 422, 0;
    transition: all 0.5s linear;
}

.button a:hover {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
}
.button a:hover rect {
    stroke: #999;
    stroke-dasharray: 0, 310;
    stroke-dashoffset: 48;
    transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
}
.button a:active {
    background-color: #333;
    color: #fafafa;
}

.button-2column-accept {
    display: flex;
    align-items: center;
}
.button-2column-accept > .button a  {
    margin: 0 1rem 0 0;
    width: 10rem;
    line-height: 3rem;
}
.button-box_form > .button a {
    margin: 30px 0 0 0;
    width: 10rem;
    line-height: 3rem;
}
a {
    display: block;
    color: #000;
    text-decoration: none;
}
.nav a:hover {
    color: #D92729;
    text-decoration: none;
}
footer {
    width: 100%;
}
.logo-box {
    display: flex;
    justify-content: space-between;
    margin: 150px 50px 150px;
}
.logo-bottom {
    width: 150px;
}
.facebook {
    width: 18px;
    height: 43.81px;
}
.copy {
    font-size: 12px;
    text-align: center;
    margin-bottom: 20px;
}
.copy_mark {
    margin: 0 10px 0;
    font-size: 25px;
    vertical-align: middle;
}

@media screen and (max-width:1024px) {
    .nav {
        display: none;
    }
    .nav > li {
        margin: 0 40px 0 0;
    }
    .language-button {
        margin-top: 0;
    }
    .eye-catch {
        margin: 100px 0 150px;
    }
    .logo {
        width: 100px;
    }
    .toggle-menu {
        width: 40px;
        height: 40px;
        padding: 5px;
        border: solid 2px #D92729;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .toggle-bar > li{
        width: 30px;
        height: 3px;
        background-color: #D92729;
        list-style: none;
    }
    .toggle-bar > li:nth-child(2) {
        margin: 5px 0;
    }
    .toggle-filter {
        display: none;
        width: 100%;
        height: 100%;
        padding: 150px 0;
        font-size: 20px;
        text-align: center;
        background-color: #D92729;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 10;
    }
    .filter-menu {
        display: block;
        list-style: none;
    }
    .filter-menu > li {
        margin-bottom: 40px;
        letter-spacing: 7px;
    }
    .filter-menu > li:last-child {
        margin-bottom: 0;
    }
    .filter-menu > li a {
        color: #fff;
    }
    .close_btn {
        display: inline-block;
        width: 40px;
        height: 40px;
        position: relative;
    }
    .close_btn span::before,
    .close_btn span::after {
        display: block;
        content: "";
        position: absolute;
        text-align: center;
        top: 250%;
        width: 40px;
        height: 3px;
        background: #fff;
    }
    .close_btn span::before {
        transform: rotate(-45deg);
    }
    .close_btn span::after {
        transform: rotate(45deg);
    }

    .button-box {
        margin: 120px 0 50px;
    }
    .button {
        width: 150px;
        height: 30px;
        border: 1px solid #000;
        font-size: 15px;
        line-height: 30px;
    }
    .entry {
        margin-bottom: 30px;
    }
    .logo-box {
        margin: 80px 50px 50px;
    }
    .logo-bottom {
        width: 100px;
    }
    .copy {
        font-size: 10px;
        margin-bottom: 10px;
    }
    .copy_mark {
        margin: 0 7px 0;
        font-size: 15px;
    }
}

@media screen and (max-width:650px) {
    header {
        padding: 20px 20px;
    }
    .logo {
        width: 80px;
    }
    .nav {
        display: none;
    }
    .toggle-filter {
        padding: 50px 0;
    }
    .language-button {
        margin-top: 0;
    }
    .button-box {
        margin: 80px 0 50px;
    }
    .button {
        width: 150px;
        height: 30px;
        border: 1px solid #000;
        font-size: 15px;
        line-height: 30px;
    }
    .entry {
        margin-bottom: 30px;
    }
    .logo-box {
        margin: 50px 20px 50px;
    }
    .logo-bottom {
        width: 80px;
    }
    .copy {
        font-size: 10px;
        margin-bottom: 10px;
    }
    .copy_mark {
        margin: 0 7px 0;
        font-size: 15px;
    }
}