@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Zen+Old+Mincho&display=swap');
body {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 1.5rem;
    line-height: 1.7;
    font-weight: 400;
    color: #050c2b;
    counter-reset: number 0;
    background-color: #fff;
}
a {
    word-break: break-all;
    color: #050c2b;
}
.sp {
    display: none;
}
.inner {
    max-width: 1200px;
    margin: 0 auto;
}
.in_in {
    max-width: 640px;
    margin: 0 auto;
}
.en {
    font-family: "din-condensed", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #284add;
}
img {
    height: auto;
    max-width: 100%;
}
.shadow {
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width:640px) {
    .inner {
        width: 100vw;
        padding: 0 5%;
        margin: 0 auto;
    }
    .in_in {
        width: 100vw;
        padding: 0 5%;
        margin: 0 auto;
    }
    .sp {
        display: block;
    }
    .pc {
        display: none;
    }
}

header {
    padding-top: 40px;
}
.header_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.header_inner .site-title {
    width: 200px;
}
.global_menu ul {
    display: flex;
}
.global_menu ul li {
    padding: 0 20px;
    border-right: solid 1px #050c2b;
}
.global_menu ul li:last-child {
    border-right: none;
}
.global_menu ul li a {
    font-size: 1.3rem;
    font-weight: 600;
}

footer {
    background-color: #101c51;
    padding: 15px 0;
}
footer .copyright {
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
    line-height: 1;
}

@media screen and (max-width:640px) {
    header {
        padding-top: 20px;
    }
    .header_inner {
        gap: 10px;
    }
    .header_inner .site-title {
        width: 120px;
    }
}