/*------------------------------------------------------------
	header
------------------------------------------------------------*/

@media (min-width: 768px) {
    .sp-only {
        display: none !important;
    }
}

@media screen and (max-width: 767px) {
    .pc-only {
        display: none !important;
    }
    img {
        max-width: 100%;
        height: auto;
    }
}

.custom-object-fit {
    position: relative;
    background-size: cover;
    background-position: center center;
}

.custom-object-fit img {
    opacity: 0;
}


/*------------------------------------------------------------
header
------------------------------------------------------------*/


/*
------------------------------------------------------------*/

.c-header {
    width: 100%;
    height: 120px;
    background: #fff;
    position: relative;
    z-index: 10;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
    .c-header {
        height: 60px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 20;
    }
}

.c-header.is-mapfull {
    display: none;
}

.c-header a {
    display: block;
    text-decoration: none;
}

.c-header__main {
    background: #fff;
}

.c-header__main.fixed {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
}

.c-header__main.fixed .c-header__inner {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.c-header__inner {
    min-width: 1250px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0 0 0 30px;
}

@media screen and (max-width: 767px) {
    .c-header__inner {
        min-width: auto;
        padding: 15.4px 15px;
    }
}

.c-header__logo {
    width: 175px;
}

@media screen and (max-width: 767px) {
    .c-header__logo {
        width: 105px;
    }
}

@media screen and (max-width: 767px) {
    .c-header__wrap {
        position: fixed;
        overflow: scroll;
        z-index: 21;
        width: 100%;
        height: 100%;
        background: -webkit-linear-gradient(left, rgba(17, 17, 17, 0.6) 80px, #003567 80px, #003567 100%);
        background: linear-gradient(90deg, rgba(17, 17, 17, 0.6) 80px, #003567 80px, #003567 100%);
        top: 0;
        right: -100%;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        padding: 59px 0 0 80px;
    }
}

.c-header__wrap.is-open {
    right: 0;
}

@media screen and (max-width: 767px) {
    .c-header__wrap.is-open .c-close {
        right: calc(100% - 113px);
    }
}

.c-header__info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media screen and (max-width: 767px) {
    .c-header__login {
        width: 100%;
        border-top: 1px solid rgba(212, 212, 212, 0.15);
        border-bottom: 1px solid rgba(212, 212, 212, 0.15);
    }
}

.c-header__login a {
    background: rgba(8, 99, 170, 0.15);
    font-size: 1.2rem;
    line-height: 1;
    color: #111111;
    font-weight: bold;
    position: relative;
    padding: 15px 30px 13px 47px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media screen and (max-width: 767px) {
    .c-header__login a {
        background: transparent;
        font-size: 1.6rem;
        color: #fff;
        padding: 23px 40px 20px 45px;
    }
}

.c-header__login a::before {
    content: '';
    width: 12px;
    height: 13px;
    background: url(../img/common/icon/sign-in-alt.svg) no-repeat center;
    background-size: 100% 100%;
    position: absolute;
    top: 50%;
    left: 30px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media screen and (max-width: 767px) {
    .c-header__login a::before {
        width: 16px;
        height: 16px;
        background: url(../img/common/icon/sign-in-alt-white.svg) no-repeat center;
        background-size: 100% 100%;
        left: 20px;
    }
}

@media screen and (max-width: 767px) {
    .c-header__login a:after {
        content: '';
        width: 8px;
        height: 8px;
        border-top: 2.5px solid #fff;
        border-right: 2.5px solid #fff;
        position: absolute;
        top: 50%;
        right: 30px;
        -webkit-transform: translate(0, -50%) rotate(45deg);
        -ms-transform: translate(0, -50%) rotate(45deg);
        transform: translate(0, -50%) rotate(45deg);
    }
}

@media screen and (min-width: 768px) {
    .c-header__login:hover a {
        background: #35b6e8;
        color: #fff;
        opacity: 1;
    }
    .c-header__login:hover a::before {
        background: url(../img/common/icon/sign-in-alt-white.svg) no-repeat center;
        background-size: 100% 100%;
    }
}

@media screen and (max-width: 767px) {
    .c-header__phone {
        width: 100%;
        margin: 18px 0 0;
    }
}

.c-header__phone a {
    background: #003567;
    font-size: 1.2rem;
    line-height: 1;
    color: #fff;
    font-weight: bold;
    position: relative;
    padding: 15px 14px 13px 47px;
}

@media screen and (max-width: 767px) {
    .c-header__phone a {
        pointer-events: auto;
        font-size: 1.8rem;
        padding: 6px 14px 6px 41px;
        font-family: 'Roboto', sans-serif;
    }
}

.c-header__phone a::before {
    content: '';
    width: 13px;
    height: 14px;
    background: url(../img/common/icon/phone-alt.svg) no-repeat center;
    background-size: 100% 100%;
    position: absolute;
    top: 50%;
    left: 30px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

@media screen and (max-width: 767px) {
    .c-header__phone a::before {
        width: 15px;
        height: 15px;
        left: 19px;
    }
}

@media screen and (max-width: 767px) {
    .c-header__mail {
        width: 100%;
    }
}

.c-header__mail a {
    background: #003567;
    font-size: 1.2rem;
    line-height: 1;
    color: #fff;
    font-weight: bold;
    position: relative;
    padding: 14px 23px;
}

@media screen and (max-width: 767px) {
    .c-header__mail a {
        font-size: 1.4rem;
        font-family: 'Roboto', sans-serif;
        font-weight: 400;
        padding: 7px 40px;
    }
}

.c-header__mail a::before {
    content: '';
    width: 15px;
    height: 12px;
    background: url(../img/common/icon/envelope.svg) no-repeat center;
    background-size: 100% 100%;
    position: absolute;
    top: 50%;
    left: 5px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

@media screen and (max-width: 767px) {
    .c-header__mail a::before {
        width: 16px;
        height: 14px;
        left: 19px;
    }
}

@media screen and (min-width: 768px) {
    .c-header__mail:hover a {
        opacity: 1;
        background: #0863aa;
    }
}

@media screen and (max-width: 767px) {
    .c-header__contact {
        width: 100%;
        margin: 13px 0 0;
        border-top: 1px solid rgba(212, 212, 212, 0.15);
    }
}

.c-header__contact a {
    background: #a40000;
    font-size: 1.2rem;
    line-height: 1;
    color: #fff;
    font-weight: bold;
    padding: 14px 30px;
    position: relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media screen and (max-width: 767px) {
    .c-header__contact a {
        font-size: 1.6rem;
        padding: 22px 40px 22px 20px;
    }
}

@media screen and (max-width: 767px) {
    .c-header__contact a:after {
        content: '';
        width: 8px;
        height: 8px;
        border-top: 2.5px solid #fff;
        border-right: 2.5px solid #fff;
        position: absolute;
        top: 50%;
        right: 30px;
        -webkit-transform: translate(0, -50%) rotate(45deg);
        -ms-transform: translate(0, -50%) rotate(45deg);
        transform: translate(0, -50%) rotate(45deg);
    }
}

@media screen and (min-width: 768px) {
    .c-header__contact:hover a {
        opacity: 1;
        background: #cc0000;
    }
}

.c-header__navi {
    padding: 0 17px;
}

@media screen and (max-width: 767px) {
    .c-header__navi {
        padding: 0;
    }
}

.c-header__menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.c-header__item {
    margin: 0 0 0 2px;
}

@media screen and (max-width: 767px) {
    .c-header__item {
        width: 100%;
        margin: 0;
        border-top: 1px solid rgba(212, 212, 212, 0.15);
    }
}

.c-header__item.search .c-header__txt {
    padding-left: 34px;
}

@media screen and (max-width: 767px) {
    .c-header__item.search .c-header__txt {
        padding-left: 45px;
    }
}

.c-header__item.search .c-header__txt::before {
    content: '';
    width: 16px;
    height: 16px;
    background: url(../img/common/icon/search.svg) no-repeat center;
    background-size: 100% 100%;
    position: absolute;
    top: 50%;
    left: 13px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media screen and (max-width: 767px) {
    .c-header__item.search .c-header__txt::before {
        background: url(../img/common/icon/search-white.svg) no-repeat center;
        background-size: 100% 100%;
        left: 20px;
    }
}

@media screen and (min-width: 768px) {
    .c-header__item:hover.search .c-header__txt::before {
        background: url(../img/common/icon/search-blue.svg) no-repeat center;
        background-size: 100% 100%;
    }
    .c-header__item:hover .c-header__txt {
        color: #0863aa;
        opacity: 1;
    }
    .c-header__item:hover .c-header__txt::after {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.c-header__txt {
    font-size: 1.6rem;
    line-height: 1;
    color: #111111;
    font-weight: bold;
    padding: 32px 14px;
    position: relative;
}

@media screen and (max-width: 767px) {
    .c-header__txt {
        color: #fff;
        padding: 23px 40px 20px 20px;
    }
}

.c-header__txt::after {
    content: '';
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 4px solid #0863aa;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media screen and (max-width: 767px) {
    .c-header__txt::after {
        width: 8px;
        height: 8px;
        border-top: 2.5px solid #fff;
        border-right: 2.5px solid #fff;
        border-bottom: 0;
        position: absolute;
        left: auto;
        bottom: auto;
        top: 50%;
        right: 30px;
        -webkit-transform: translate(0, -50%) rotate(45deg);
        -ms-transform: translate(0, -50%) rotate(45deg);
        transform: translate(0, -50%) rotate(45deg);
    }
}

.c-header__search {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    pointer-events: none;
    opacity: 0;
    -webkit-transition: 300ms ease;
    transition: 300ms ease;
}

@media screen and (max-width: 767px) {
    .c-header__search {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
        pointer-events: initial;
        position: relative;
        top: 0;
        display: none;
    }
}

.c-header__search::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
    .c-header__search::before {
        display: none;
    }
}

.c-header__search .l-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 55px 0 32px;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .c-header__search .l-container {
        display: block;
        padding: 0;
    }
}

.c-header__search__box {
    margin-left: 50px;
    margin-bottom: 2rem;
    -webkit-transform: translateY(-20px) scale(1.03);
    -ms-transform: translateY(-20px) scale(1.03);
    transform: translateY(-20px) scale(1.03);
    opacity: 0;
    -webkit-transition: 300ms ease;
    transition: 300ms ease;
}

@media screen and (max-width: 767px) {
    .c-header__search__box {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        margin-left: 0;
    }
    .c-header__search__box:first-child *:first-child {
        border-top: none;
    }
}

.c-header__search__item {
    font-size: 1.6rem;
    line-height: 23px;
    margin-bottom: 1px;
}

@media screen and (max-width: 767px) {
    .c-header__search__item {
        border-top: 1px solid rgba(212, 212, 212, 0.15);
        padding: 0 45px;
        line-height: 40px;
    }
}

.c-header__search__item a {
    color: #111111;
    font-weight: bold;
    opacity: 1 !important;
    display: inline-block;
    -webkit-transition: 0.35s ease;
    transition: 0.35s ease;
}

@media screen and (max-width: 767px) {
    .c-header__search__item a {
        color: #fff;
    }
}

@media screen and (min-width: 768px) {
    .c-header__search__item a:hover {
        color: #0863AA;
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }
}

.c-header__search__child {
    margin: 3px 15px 0 14px;
}

@media screen and (max-width: 767px) {
    .c-header__search__child {
        margin: 0;
    }
    .c-header__search__child>* {
        padding-left: 70px;
    }
    .c-header__search__child>*:first-child {
        border-top: none;
    }
}

.c-header__search__child a {
    font-weight: normal;
}

@media screen and (max-width: 767px) {
    .c-header__search__child a {
        font-weight: bold;
    }
}

@media screen and (min-width: 768px) {
    .c-header__item.search:hover .c-header__search {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        pointer-events: initial;
    }
    .c-header__item.search:hover .c-header__search__box {
        -webkit-transform: translateY(0) scale(1);
        -ms-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    .c-header__item.search:hover .c-header__search__box:nth-child(1) {
        -webkit-transition-delay: 200ms;
        transition-delay: 200ms;
    }
    .c-header__item.search:hover .c-header__search__box:nth-child(2) {
        -webkit-transition-delay: 300ms;
        transition-delay: 300ms;
    }
    .c-header__item.search:hover .c-header__search__box:nth-child(3) {
        -webkit-transition-delay: 400ms;
        transition-delay: 400ms;
    }
    .c-header__item.search:hover .c-header__search__box:nth-child(4) {
        -webkit-transition-delay: 500ms;
        transition-delay: 500ms;
    }
    .c-header__item.search:hover .c-header__search__box:nth-child(5) {
        -webkit-transition-delay: 600ms;
        transition-delay: 600ms;
    }
    .c-header__item.search:hover .c-header__search__box:nth-child(6) {
        -webkit-transition-delay: 700ms;
        transition-delay: 700ms;
    }
    .c-header__item.search:hover .c-header__search__box:nth-child(7) {
        -webkit-transition-delay: 800ms;
        transition-delay: 800ms;
    }
    .c-header__item.search:hover .c-header__search__box:nth-child(8) {
        -webkit-transition-delay: 900ms;
        transition-delay: 900ms;
    }
    .c-header__item.search:hover .c-header__search__box:nth-child(9) {
        -webkit-transition-delay: 1000ms;
        transition-delay: 1000ms;
    }
    .c-header__item.search:hover .c-header__search__box:nth-child(10) {
        -webkit-transition-delay: 1100ms;
        transition-delay: 1100ms;
    }
}

.c-header__item.search .c-header__txt.active:after {
    -webkit-transform: translate(0, -50%) rotate(135deg);
    -ms-transform: translate(0, -50%) rotate(135deg);
    transform: translate(0, -50%) rotate(135deg);
}


/*
------------------------------------------------------------*/

@media screen and (max-width: 767px) {
    .c-menuSP {
        width: 17.5px;
        position: absolute;
        top: 20px;
        right: 21px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .c-menuSP__1,
    .c-menuSP__2,
    .c-menuSP__3 {
        width: 17.5px;
        height: 3px;
        background-color: #0863aa;
        margin: 3px auto;
        -webkit-transform-origin: 4px 0px;
        -ms-transform-origin: 4px 0px;
        transform-origin: 4px 0px;
        -webkit-transition: opacity 0.55s ease, -webkit-transform 0.3s cubic-bezier(0.77, 0.2, 0.05, 1);
        transition: opacity 0.55s ease, -webkit-transform 0.3s cubic-bezier(0.77, 0.2, 0.05, 1);
        transition: transform 0.3s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
        transition: transform 0.3s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.3s cubic-bezier(0.77, 0.2, 0.05, 1);
    }
}

.c-menuSP__3 {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
}


/*
------------------------------------------------------------*/

.c-close {
    width: 14px;
    height: 14px;
    position: absolute;
    top: 29px;
    right: -100%;
    z-index: 23;
}

@media screen and (max-width: 767px) {
    .c-close__1,
    .c-close__2 {
        width: 17.5px;
        height: 3px;
        background-color: #fff;
        border-radius: 3px;
    }
}

.c-close__1 {
    opacity: 1;
    -webkit-transform: rotate(45deg) translate(1px, -2px);
    -ms-transform: rotate(45deg) translate(1px, -2px);
    transform: rotate(45deg) translate(1px, -2px);
}

.c-close__2 {
    opacity: 1;
    -webkit-transform: rotate(-45deg) translate(4px, -1px);
    -ms-transform: rotate(-45deg) translate(4px, -1px);
    transform: rotate(-45deg) translate(4px, -1px);
}

.phone_form {
    background: #003567;
    font-size: 2.0rem;
    line-height: 1;
    color: #fff;
    font-weight: bold;
    position: relative;
    padding: 13px 14px 13px 47px;
    width: 100%;
    margin-top: 5px;
    border-radius: 4px;
    text-align: center;
    }
    
@media screen and (max-width: 767px) {
    .phone_form {
        width: 100%;
    }
}

.phone_form a {
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 767px) {
    .phone_form a {
        pointer-events: auto;
        font-size: 1.8rem;
        padding: 6px 14px 6px 41px;
        font-family: 'Roboto', sans-serif;
    }
}

.phone_form a::before {
    content: '';
    width: 20px;
    height: 20px;
    background: url(../img/common/icon/phone-alt.svg) no-repeat center;
    background-size: 100% 100%;
    position: absolute;
    top: 50%;
    left: 30px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

@media screen and (max-width: 767px) {
    .phone_form a::before {
        width: 15px;
        height: 15px;
        left: 55px;
    }
}