@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;700&display=swap');
@font-face {
    font-family: 'arial-black';
    src: url('../fonts/arial-black.eot');
    src: url('../fonts/arial-black.eot?#iefix') format('embedded-opentype'), url('../fonts/arial-black.woff2') format('woff2'), url('../fonts/arial-black.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/*　共通設定
----------------------------------------------- */

html {
    font-size: 62.5%;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.4rem;
    line-height: 1.8;
    color: #000;
}

.body-wrapper {
    position: relative;
    overflow-x: hidden;
}

figure {
    line-height: 0;
}

.inner {
    width: 100%;
    max-width: 1030px;
    margin: 0 auto;
    padding: 0 15px;
}


/*　レイアウト系
----------------------------------------------- */

.d-block {
    display: block;
}

.d-flex {
    display: flex !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-center {
    align-items: center !important;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

strong,
.font-weight-bold {
    font-weight: 700 !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.bg_grey,
.position-relative {
    position: relative !important;
}

.flex-1 {
    flex: 1;
}

.line2 {
    line-height: 2.5;
}

.en {
    font-family: 'arial-black';
    text-transform: uppercase;
}

.f-min {
    font-family: 'Noto Serif JP', serif;
}

.f-16 {
    font-size: 1.6rem !important;
}

.f-18 {
    font-size: 1.8rem !important;
}

.f-20 {
    font-size: 2rem !important;
}

.f-22 {
    font-size: 2.2rem !important;
}

.f-24 {
    font-size: 2.4rem !important;
}

.f-26 {
    font-size: 2.6rem !important;
}

.f-30 {
    font-size: 3rem !important;
}
.f-34 {
    font-size: 3.4rem !important;
}
.f-40 {
    font-size: 4rem !important;
}

.col-white {
    color: #fff !important;
}

.col-grey {
    color: #C0C1C0 !important;
}

.col-blue {
    color: #093A8D !important;
}

.col-red {
    color: #FF0000 !important;
}

.bg-blue {
    background: #002E53 !important;
}

.bg-black {
    background: #000000 !important;
}

.bg-grey {
    background: #F5F5F5 !important;
}


/* SPのみ表示用 */

.sp {
    display: block;
}

.pc,
.sp-hide {
    display: none;
}

@media screen and (min-width: 480px) {
    .sp-show {
        display: none;
    }
    .sp-hide {
        display: block;
    }
}

@media screen and (min-width: 769px) {
    /* PCのみ表示用 */
    .sp {
        display: none !important;
    }
    .pc {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .f-16 {
        font-size: 1.4rem !important;
    }
    .f-18 {
        font-size: 1.5rem !important;
    }
    .f-20 {
        font-size: 1.6rem !important;
    }
    .f-22 {
        font-size: 1.8rem !important;
    }
    .f-24 {
        font-size: 2rem !important;
    }
    .f-26 {
        font-size: 2.2rem !important;
    }
    .f-30 {
        font-size: 2.4rem !important;
    }
    .f-34 {
        font-size: 2.6rem !important;
    }
    .f-40 {
        font-size: 3rem !important;
    }
}

@media screen and (max-width: 480px) {
    .f-22 {
        font-size: 1.6rem !important;
    }
    .f-24 {
        font-size: 1.8rem !important;
    }
    .f-26 {
        font-size: 2rem !important;
    }
    .f-30 {
        font-size: 2.2rem !important;
    }
    .f-34 {
        font-size: 2.3rem !important;
    }
    .f-40 {
        font-size: 2.5rem !important;
    }
}


/***** SP Toggle Menu Btn  *****/

.menu-trigger {
    display: none;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 60px;
    height: 60px;
    z-index: 50;
    background: #003569;
    transform: translateY(-50%);
}

.menu-trigger span {
    position: absolute;
    left: 15px;
    width: 30px;
    height: 2px;
    background-color: #fff;
    border-radius: 3px;
    -webkit-transition: all .4s;
    transition: all .4s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.menu-trigger span:nth-of-type(1) {
    top: 19px;
    -webkit-animation: menu-bar01 .75s forwards;
    animation: menu-bar01 .75s forwards;
}

.menu-trigger span:nth-of-type(2) {
    top: 28px;
    -webkit-transition: all .25s .25s;
    transition: all .25s .25s;
    opacity: 1;
}

.menu-trigger span:nth-of-type(3) {
    top: 38px;
    -webkit-animation: menu-bar02 .75s forwards;
    animation: menu-bar02 .75s forwards;
}

@-webkit-keyframes menu-bar01 {
    0% {
        -webkit-transform: translateY(10px) rotate(45deg);
    }
    50% {
        -webkit-transform: translateY(10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar01 {
    0% {
        -webkit-transform: translateY(10px) rotate(45deg);
        transform: translateY(10px) rotate(45deg);
    }
    50% {
        -webkit-transform: translateY(10px) rotate(0);
        transform: translateY(10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
        transform: translateY(0) rotate(0);
    }
}

@-webkit-keyframes menu-bar02 {
    0% {
        -webkit-transform: translateY(-10px) rotate(-45deg);
    }
    50% {
        -webkit-transform: translateY(-10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar02 {
    0% {
        -webkit-transform: translateY(-10px) rotate(-45deg);
        transform: translateY(-10px) rotate(-45deg);
    }
    50% {
        -webkit-transform: translateY(-10px) rotate(0);
        transform: translateY(-10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
        transform: translateY(0) rotate(0);
    }
}

.menu-trigger.active span:nth-of-type(1) {
    -webkit-animation: active-menu-bar01 .75s forwards;
    animation: active-menu-bar01 .75s forwards;
}

@-webkit-keyframes active-menu-bar01 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(10px) rotate(45deg);
    }
}

@keyframes active-menu-bar01 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
        transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(10px) rotate(0);
        transform: translateY(10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(10px) rotate(45deg);
        transform: translateY(10px) rotate(45deg);
    }
}

.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
    -webkit-animation: active-menu-bar03 .75s forwards;
    animation: active-menu-bar03 .75s forwards;
}

@-webkit-keyframes active-menu-bar03 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(-10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(-10px) rotate(-45deg);
    }
}

@keyframes active-menu-bar03 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
        transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(-10px) rotate(0);
        transform: translateY(-10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(-10px) rotate(-45deg);
        transform: translateY(-10px) rotate(-45deg);
    }
}


/********************************************
***************** header ********************
********************************************/

header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 14px 0;
    color: #fff;
    z-index: 10;
}

.header_wrapper {
    width: 100%;
    max-width: 1296px;
    margin: 0 auto;
    padding: 0 15px;
}

.header_logo {
    margin-right: 20px;
    line-height: 0;
    max-width: 296px;
}

header nav ul {
    max-width: 820px;
    margin-left: auto;
}

header nav ul li a {
    display: block;
}

header nav ul li a:hover {
    color: #086AC2;
}

header nav ul li:last-child a,
footer nav ul li:last-child a {
    padding: 6px 24px;
    border: 2px solid #fff;
}

header nav ul li:last-child a i,
footer nav ul li:last-child a i {
    margin-right: 10px;
    font-size: 135%;
    vertical-align: -2px;
}

header nav ul li:last-child a:hover,
footer nav ul li:last-child a:hover {
    background: #fff;
    color: #000;
}

.fa-phone {
    margin-right: 5px;
    transform: rotateY(180deg);
}

@media screen and (max-width: 1024px) {
    .menu-trigger {
        display: block;
    }
    header nav {
        position: fixed;
        left: 100vw;
        top: 0;
        width: 100vw;
        height: 100vh;
        padding: 15vh 10vw;
        overflow-y: hidden;
        background: #fff;
        color: #093a8d;
        z-index: 10;
        transition: all .4s ease;
        overflow-y: scroll;
    }
    header nav.active {
        left: 0;
    }
    header nav ul li {
        width: 100%;
        margin: 10px 0 !important;
        text-align: center;
    }
    header nav ul li:not(:last-child) a {
        line-height: 30px;
    }
}

@media screen and (max-width: 480px) {
    .header_logo {
        max-width: 210px;
        padding: 6px 0 4px;
    }
}


/********************************************
****************** footer *******************
********************************************/

footer {
    padding: 40px 0;
    color: #fff;
    background: #000;
}

footer nav ul {
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    footer nav ul {
        justify-content: center;
    }
    footer nav ul li {
        width: 33.33%;
        margin: 10px 0;
    }
}

@media screen and (max-width: 480px) {
    footer nav ul li {
        width: 50%;
    }
    footer nav ul li:last-child a {
        padding: 7px 30px;
    }
}


/********************************************
***************** common ********************
********************************************/

.cmn_btn a {
    display: inline-block;
    width: 100%;
    max-width: 390px;
    padding: 20px 0;
    background: linear-gradient(to right, #BC9339, #E2B962, #BC9339);
}

.common_contact {
    background: url(../img/common/contact_bg.jpg) no-repeat center / cover;
}

.common_contact .cmn_contact_btn {
    width: 55%;
}

.contact_btn {
    position: relative;
    display: block;
    width: 100%;
    padding: 20px;
    color: #000;
    background: linear-gradient(to right, #BC9339, #E2B962, #BC9339);
}

.contact_btn i {
    margin-right: 10px;
}

.contact_btn::after {
    content: '\f054';
    position: absolute;
    right: 15px;
    top: 50%;
    font-family: 'Font Awesome 5 Free';
    font-weight: bold;
    transform: translateY(-50%);
}

.tel_btn {
    font-size: 1rem;
}

.tel_btn i {
    font-size: 80%;
}

.tel_btn .f-20 {
    margin-right: 10px;
}

@media screen and (max-width: 600px) {
    .common_contact .cmn_contact_btn {
        width: 100%;
    }
    .common_contact .flex-1 {
        flex: none;
        width: 100%;
        margin-bottom: 20px;
    }
}




header.header nav ul {
    max-width: 700px;
}