header {
    height: 80px
}

header .header_inner {
    background: #fff;
    position: fixed;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px
}

header h1 {
    max-width: 150px;
    margin-left: 30px;
    margin-right: 20px;
	line-height: 80px;
}
header h1>img{
	vertical-align: middle;
}

header a{
	color: #000000;
}

header nav ul {
    display: flex;
    align-items: center
}

header nav ul li {
    display: inline-block;
    font-weight: 700;
    margin-right: 2em
}

header nav ul li:last-child {
    margin-right: 0;
    flex-shrink: 0
}

header a {
    font-size: 14px;
    display: inline-block
}

header a:hover {
    color: #ee1c25;
}

.header_cta a {
    display: inline-block;
    line-height: 80px;
    padding: 0 30px
}

@media screen and (max-width: 1200px) {
    .header_cta a {
        padding: 10px 17px;
        line-height: 1;
        color: #fff;
        border-radius: 8px
    }
}

.header_cta:hover a {
    color: #fff !important;
    opacity: .8
}

.header_tel {
    padding-top: 5px
}

.header_tel:hover path {
    fill: ee1c25;
}

@media screen and (max-width: 1200px) {
    .header_tel {
        text-align: center
    }
}

@media screen and (max-width: 1200px) {
    .pc_gnav {
        display: none
    }
}

.NavMenu {
    position: fixed;
    z-index: 500;
    top: 80px;
    right: -120%;
    height: 100%;
    background-color: rgba(255, 255, 255, .96);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .16);
    transition: all 1s
}

.NavMenu ul {
    flex-flow: column;
    align-items: flex-start;
    text-align: left;
    padding: 40px 30px
}

.NavMenu ul li {
    margin: 0;
    margin-bottom: 20px;
    width: 100%
}

.NavMenu ul li:last-child {
    margin-bottom: 0
}

.NavMenu ul li a {
    color: #000;
    font-weight: bold;
    font-size: 16px;
    width: 100%
}

.Toggle {
    position: fixed;
    right: 22px;
    width: 30px;
    height: 22px;
    top: 32px;
    cursor: pointer;
    z-index: 1200;
    display: none
}

@media screen and (max-width: 1200px) {
    .Toggle {
        display: block
    }
}

.Toggle span {
    display: block;
    position: absolute;
    width: 30px;
    border-bottom: solid 2px #000;
    transition: .35s ease-in-out;
    left: 0px
}

.Toggle span:nth-child(1) {
    top: 0px
}

.Toggle span:nth-child(2) {
    top: 8px
}

.Toggle span:nth-child(3) {
    top: 16px
}

.Toggle.active span:nth-child(1) {
    top: 10px;
    left: 0px;
    transform: rotate(-40deg);
    border-bottom: solid 2px #000
}

.Toggle.active span:nth-child(2) {
    opacity: 0
}

.Toggle.active span:nth-child(3) {
    top: 10px;
    transform: rotate(40deg);
    border-bottom: solid 2px #000
}

.nav-sp-active {
    right: 0
}

.bg-red a{
    background-color: #ee1c25;
    color: #fff !important
}