@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
body {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    line-height: 1.43;
    font-weight: 400;
    color: #060500;
    counter-reset: number 0;
    background-color: #fff;
}
a {
    word-break: break-all;
    color: #313131;
}
.sp {
    display: none;
}
.inner {
    max-width: 1200px;
    margin: 0 auto;
}
.min {
    font-family: YakuHanJP, "Noto Serif JP", sans-serif;
    font-size: 1.6rem;
    line-height: 1.43;
    font-weight: 400;
}
img {
    height: auto;
    max-width: 100%;
}
@media screen and (max-width:640px) {
    .inner {
        width: 100vw;
        padding: 0 5%;
        margin: 0 auto;
    }
    .sp {
        display: block;
    }
    .pc {
        display: none;
    }
}

header {
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
}
header .header_inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 24px;
}
header .header_inner .site-logo-wrap {
    display: flex;
    gap: 10px;
    align-items: center;
}
header .header_inner .site-logo {
    display: block;
    width: 210px;
    position: relative;
    z-index: 999;
}
header .header_inner .site-logo img {
    vertical-align: middle;
}
header .header_inner .site-logo-wrap .site-phrase {
    font-size: 1.4rem;
    font-weight: 700;
    color: #050b25;
}
header .header_inner .sub-menu {
    display: flex;
}
header .header_inner .sub-menu .sub-link {
    font-size: 1.5rem;
    padding: 0 15px;
}
header .header_inner .sub-menu a:not(:first-child) {
    border-left: 1px solid #ccc;
}
header .global_menu {
    background-color: #050b25;
}
header .global_menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 20px 0;
}
header .global_menu ul li {
    padding: 0 40px;
}
header .global_menu ul li:not(:first-child) {
    border-left: 1px solid #ccc;
}
header .global_menu ul li a {
    color: #fff;
}
header .global_menu ul li a:hover {
    text-decoration: underline;
}

#MainCont {
    margin-top: 140px;
}

footer {
    width: 100%;
    background-color: #fafafa;
    margin-top: 80px;
    padding-top: 30px;
}
footer .caution {
    text-align: center;
    font-size: 1.3rem;
    color: #3e3e3e;
    margin-bottom: 20px;
}
footer .copyright {
    text-align: center;
    font-size: 1.1rem;
    padding-bottom: 10px;
}

@media screen and (max-width:640px) {
    header .header_inner {
        padding: 5px 5%;
    }
    header .header_inner .site-logo-wrap {
        flex-direction: column;
        gap: 0;
    }
    header .header_inner .site-logo {
        width: 160px;
    }
    header .header_inner .site-logo-wrap .site-phrase {
        font-size: 1rem;
    }
    header .header_inner .sub-menu {
        display: none;
    }
    header .global_menu ul {
        flex-wrap: wrap;
        gap:0;
        padding: 0;
    }
    header .global_menu ul li {
        width: 50%;
        padding: 5px 0;
        text-align: center;
        border-bottom: solid 1px #fff;
        border-left: none;
    }
    header .global_menu ul li:not(:first-child) {
        border-left: none;
    }
    header .global_menu ul li:nth-child(even) {
        border-left: solid 1px #fff;
    }
    header .global_menu ul li a {
        font-size: 1.3rem;
    }

    #MainCont {
        margin-top: 170px;
    }
}