/* web font
font-family: "Poppins", sans-serif;
*/

:root {
    --main-theme-color: #00537A;
    --accent-color: #E60013;

}

* {
    box-sizing: border-box;
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    list-style: none;
    margin: 0;
    padding: 0;
}
body.open {
    overflow: hidden;
}
a {
    text-decoration: none;
    transition-duration: .3s;
}
img {
    height: auto;
    max-width: 100%;
}
a:hover,
a:hover img {
    opacity: .8;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.pc2 {
    display: block;
}
.sp2 {
    display: none;
}
@media screen and (max-width: 968px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}
@media screen and (max-width: 768px) {
    .pc2 {
        display: none;
    }
    .sp2 {
        display: block;
    }
}
.container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    min-height: 100vh;
    overflow-x: clip;
    width: 100%;
}
/* header */
.header {
    background: #fff;
    margin: 0 auto;
    padding: 8px 0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 92%;
}
.header-nav__list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header-nav__list li:not(:last-child) {
    margin-right: 25px;
}
.header-nav__list li a {
    font-size: 18px;
    font-weight: 500;
}
.header-nav__list .header-contact a {
    background: var(--accent-color);
    border-radius: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 66px;
    text-align: center;
    width: 181px;
}
@media screen and (max-width: 1268px) {
    .header-nav__list li a {
        font-size: 16px;
    }
}
@media screen and (max-width: 1168px) {
    .header-left {
        width: 200px;
    }
    .header-nav__list li a {
        font-size: 14px;
    }
    .header-nav__list .header-contact a {
        height: 50px;
        width: 150px;
    }
}
@media screen and (max-width: 968px) {
    .header-left {
        position: relative;
        z-index: 999;
    }
    .header-nav {
        background: #fff;
        height: 100%;
        padding: 120px 0 80px;
        position: fixed;
        right: -100%;
        top: 0;
        transition-duration: .3s;
        width: 100%;
    }
    .header-nav.open {
        right: 0;
    }
    .header-nav__list {
        display: block;
        margin: 0 auto;
        text-align: center;
        width: 100%;
        max-width: 298px;
    }
    .header-nav__list li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 25px;
    }
    .header-nav__list li a {
        display: block;
        position: relative;
        text-align: left;
        width: 100%;
    }
    .header-nav__list .header-contact a {
        height: 66px;
        margin: 0 auto;
        width: 100%;
    }
    .header-nav__list li a::after {
        background: url(../images/icon-arrow-b.svg) no-repeat;
        background-position: center;
        background-size: contain;
        content: "";
        display: block;
        height: 12.26px;
        margin: auto;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 20px;
        width: 13.3px;
    }
    .header-nav__list .header-contact a::after {
        display: none;
    }
    /* hamberger */
    .header-menu {
        background: var(--main-theme-color);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 54px;
        position: relative;
        text-align: center;
        width: 54px;
        z-index: 999999;
    }
    .header-menu span {
        display: block;
    }
    .header-menu___trigger {
        position: relative;
        width: 45%;
        height: 25%;
        cursor: pointer;
        z-index: 3;
    }
    .header-menu___trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #fff;
        border-radius: 4px;
    }
    .header-menu___trigger, .header-menu___trigger span {
        display: inline-block;
        transition: all .5s;
        box-sizing: border-box;
    }
    .header-menu___trigger span:nth-of-type(1) {
        top: 0;
    }
    .header-menu___trigger span:nth-of-type(2) {
        bottom: 0;
    }
    .header-menu___trigger.active span:nth-of-type(1) {
        top: 7px;
    }
    .header-menu___trigger.active span:nth-of-type(2) {
        bottom: 6px;
    }
    .header-menu___trigger span:nth-of-type(1) {
        animation: header-menu__bar01 .75s forwards;
    }
    @keyframes header-menu__bar01 {
        0% {
            transform: translateY(0) rotate(45deg);
        }
        50% {
            transform: translateY(0) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    .header-menu___trigger span:nth-of-type(2) {
        animation: header-menu__bar02 .75s forwards;
    }
    @keyframes header-menu__bar02 {
        0% {
            transform: translateY(0) rotate(-45deg);
        }
        50% {
            transform: translateY(0) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    .header-menu___trigger.active span:nth-of-type(1) {
        animation: active-header-menu__bar01 .75s forwards;
    }
    @keyframes active-header-menu__bar01 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(0) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(45deg);
        }
    }
    .header-menu___trigger.active span:nth-of-type(2) {
        animation: active-header-menu__bar02 .75s forwards;
    }
    @keyframes active-header-menu__bar02 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(0) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(-45deg);
        }
    }
}

/* footer */
.footer {}
.footer-inner {
    margin: 0 auto;
    padding: 65px 0;
    width: 92%;
    max-width: 1200px;
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.footer-left {
    width: calc(100% - 725px);
}
.footer-info {
    margin: 25px 0 0;
}
.footer-info p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}
.footer-right {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 700px;
}
.footer-right__column.left {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: calc(100% - 250px);
}
.footer-right__column.right {
    width: 250px;
}
.footer-linklist {
    width: max-content;
}
.footer-linklist ul li:not(:last-child) {
    margin: 0 0 10px;
}
.footer-linklist ul li a {
    font-size: 16px;
    font-weight: 400;
}
.footer-contact a {
    background: var(--accent-color);
    border-radius: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    height: 66px;
    margin: 0 0 0 auto;
    width: 219px;
}
.copyright {
    background: #EAF1F4;
    padding: 10px 0;
    text-align: center;
}
.copyright p {
    font-size: 15px;
}
@media screen and (max-width: 968px) {
    .footer-inner {
        padding: 35px 0;
    }
    .footer-left {
        width: 100%;
    }
    .footer-right {
        display: none;
    }
    .copyright p {
        font-size: 13px;
    }
}

/* フェードインアップ */
.js-fadeUp {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s, transform .8s;
}
.js-fadeUp.is-inview {
    opacity: 1;
    transform: translateY(0);
}

.js-fadeRight {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity .8s, transform .8s;
}
.js-fadeRight.is-inview {
    opacity: 1;
    transform: translateY(0);
}

.js-fadeLeft {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity .8s, transform .8s;
}
.js-fadeLeft.is-inview {
    opacity: 1;
    transform: translateY(0);
}