.space_module_small {
    height: 10px;
}
.space_module_midium {
    height: 20px;
}
.space_module_large {
    height: 40px;
}
a {
    text-decoration: none;
    color: #333;
}
body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}
/* ヘッダー */
header {
    width: 100%;
    position: fixed;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.5);
    height: 10vh;
}
.sp {
    display: none;
}
.pc {
    display: block;
}
header img {
    height: 10vh;
}
.header_wrap {
    display: flex;
}
.header_menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.header_nav {
    height: 5vh;
}
.header_nav ul{
    display: flex;
    border-bottom: 1px solid rgb(197, 197, 197);
    height: 5vh;
}
.header_nav li {
    padding: 0 30px;
    font-weight: bold;
    line-height: 5vh;
}
.header_nav li.is_current  {
    position: relative;
    background-color: #27336E;
}
.header_nav li.is_current a{
    color: #fff;
}

.header_nav li.is_current:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -10px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #27336E transparent transparent transparent;
    border-width: 10px 10px 0 10px;
}
.nav_down ul{
    height: 5vh;
    display: flex;
}
.nav_down li {
    line-height: 5vh;
    padding: 0px 30px;
    font-size: 16px;
}
.nav_down1 {
    display: none;
}
.nav_down1 ul{
    display: flex;
}
.nav_down2 {
    display: none;
}
.nav_down3 {
    display: none;
}
.nav_down4 {
    display: none;
}
.nav_down5 {
    display: none;
}
.nav_down6 {
    display: none;
}
.nav_down7 {
    display: none;
}
.nav_down8 {
    display: none;
}
.nav_down.is_show {
    display: block;
}
.header__hamburger {
    display: none;
}
.sp_header_nav {
    display: none;
}
/* フッター */
footer {
    background-color: #27336E;
    color: #fff;
}
.footer_wraper {
    display: flex;
    justify-content: space-between;
    padding: 30px 100px;
}
.footer_info img {
    width: 70%;
}
.google_map {
    width: 65%;
    border:  2px solid #fff;
    border-radius: 2px;
    padding: 3px 5px;
}
.google_map a {
    color: #fff;
}
.footer_bottom {
    display: flex;
    justify-content: flex-end;
}
.footer_bottom p {
    padding: 0 20px;
}
.nav_menu {
    display: flex;
    flex-wrap: wrap;
}
.nav_menu_item h4 a{
    color: #fff;
}
.nav_menu_item {
    margin: 0 20px;
}
.nav_menu_item li a{
    color: #fff;
}

/* パソコン */
@media screen and (max-width: 1180px) {
    .header_nav li {
        padding: 0 20px;
    }
}
@media screen and (max-width: 1020px) {
    .header_nav li {
        padding: 0 15px;
    }
    .nav_down li {
        padding: 0 15px;
    }
}
@media screen and (max-width: 960px) {
    .header_nav li {
        font-size: 12px;
        padding: 0 10px;
    }
    .nav_down li {
        font-size: 10px;
        padding: 0 10px;
    }
    .footer_wraper {
        padding: 30px 30px;
    }
}

/* 携帯 */
@media screen and (max-width: 540px) {
    main {
        overflow: hidden;
    }
    .sp {
        display: block;
    }
    .pc {
        display: none;
    }
    header {
        width: 100%;
        box-shadow: none;
        height: 10vh;
    }
    .header_wrap {
        justify-content: space-between;
        align-items: center;
    }
    .header_menu {
        display: none;
    }
    .header__hamburger {
        width: 35px;
        height: 100%;
        margin: 10px;
        display: block;
    } 
    .hamburger {
        background-color: transparent;
        border-color: transparent;
        z-index: 9999;
    }
    .hamburger span {
        width: 100%;
        height: 1px;
        background-color: #27336E;
        position: relative;
        transition: ease .5s;
        display: block;
    }
    .hamburger span:nth-child(1) {
        top: 0;
    }
    .hamburger span:nth-child(2) {
        margin: 8px 0;
    } 
    .hamburger span:nth-child(3) {
        top: 0;
    }
    .header__nav.active {
        transform: translateX(0);
    }
    .hamburger.active span:nth-child(1) {
        top: 5px;
        transform: rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;  
    }
    .hamburger.active span:nth-child(3) {
        top: -13px;
        transform: rotate(-45deg);
    } 
    .sp_header_nav {
        position: absolute;
        display: grid;
        background-color: rgba(255,255,255,0.9);
        width: 100%;
        height: 90vh;
        text-align: center;
        padding-top: 50px;
        opacity: 0;
        pointer-events: none;
        transition: all .5s linear;
    }
    .sp_header_nav.active {
        opacity: 1;
        pointer-events: auto;
    }
    .sp_header_nav li {
        font-size: 18px;
        margin-top: 1.5rem;
    }
    .sp_header_nav li.is_current_sp {
        font-size: 28px;
        background-color: #27336E;
    }
    .sp_header_nav li.is_current_sp a{
        color: #fff;
    }
    .sp_header_nav li a {
        font-weight: bold;
        color: #333;
    }
    footer {
        font-size: 14px;
    }
    .footer_wraper {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }
    .nav_menu {
        margin-top: 40px;
    }
    .nav_menu_item.full {
        width: 100%;
    }
}
