@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&family=Noto+Serif+JP:wght@400;500;600&display=swap');
@font-face {
    font-family: "MVBoli";
    src: url("../fonts/mvboli.eot");
    /* IE9 Compat Modes */
    src: url("../fonts/mvboli.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    url("../fonts/mvboli.otf") format("opentype"), /* Open Type Font */
    url("../fonts/mvboli.svg") format("svg"), /* Legacy iOS */
    url("../fonts/mvboli.ttf") format("truetype"), /* Safari, Android, iOS */
    url("../fonts/mvboli.woff") format("woff"), /* Modern Browsers */
    url("../fonts/mvboli.woff2") format("woff2");
    /* Modern Browsers */
    font-weight: normal;
    font-style: normal;
}

body {
    padding-top: 65px;
    color: #000;
    font-size: 16px;
    line-height: 2.2;
    letter-spacing: .1em;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}

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

figure {
    line-height: 0;
}

.sp,
.tb {
    display: none;
}

@media screen and (max-width: 768px) {
    .tb {
        display: block;
    }
    .pc {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .sp {
        display: block;
    }
    .sp-hide {
        display: none;
    }
}

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

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

.container {
    max-width: 800px;
    margin: 0 auto;
}

.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-center {
    align-items: center !important;
}

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

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

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

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

.flex-1 {
    flex: 1;
}

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

.font-weight-bold {
    font-weight: 500 !important;
}

.letter05 {
    letter-spacing: 0.05em !important;
}

.line2 {
    line-height: 2 !important;
}

.f-15 {
    font-size: .9375rem !important;
}

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

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

.f-25 {
    font-size: 1.5625rem !important;
}

@media screen and (max-width: 600px) {
    .f-25 {
        font-size: 1.25rem !important;
    }
    .f-20 {
        font-size: 1.125rem !important;
    }
    .f-18 {
        font-size: 1rem !important;
    }
    .f-15 {
        font-size: .8rem !important;
    }
    body {
        font-size: .875rem !important;
    }
}


/********************************************************
************************ Header *************************
********************************************************/

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}

.header-logo img {
    width: 115px;
    margin-right: 20px;
}

header nav ul {
    display: flex;
    flex-wrap: wrap;
}

header nav ul li a {
    display: inline-block;
    padding: 0 25px;
    text-align: center;
    line-height: 100px;
}

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

.hamburger {
    display: none;
    position: fixed;
    width: 60px;
    height: 60px;
    right: 15px;
    top: 20px;
    background: #001274;
    z-index: 999;
}

.menu-trigger {
    position: relative;
    width: 50px;
    height: 51px;
    z-index: 50;
    cursor: pointer;
}

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

.menu-trigger span:nth-of-type(1) {
    top: 14px;
}

.menu-trigger span:nth-of-type(2) {
    top: 23px;
    width: 25px;
}

.menu-trigger span:nth-of-type(3) {
    top: 33px;
    width: 20px;
}

.menu-trigger span:nth-of-type(1) {
    -webkit-animation: menu-bar01 .75s forwards;
    animation: menu-bar01 .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% {
        transform: translateY(10px) rotate(45deg);
    }
    50% {
        transform: translateY(10px) rotate(0);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

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

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

@-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% {
        transform: translateY(-10px) rotate(-45deg);
    }
    50% {
        transform: translateY(-10px) rotate(0);
    }
    100% {
        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% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(10px) rotate(0);
    }
    100% {
        transform: translateY(10px) rotate(45deg);
    }
}

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

.menu-trigger.active span:nth-of-type(3) {
    width: 30px;
    -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% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-10px) rotate(0);
    }
    100% {
        transform: translateY(-10px) rotate(-45deg);
    }
}

@media screen and (max-width: 910px) {
    .header-right {
        margin-right: -15px;
    }
    header nav ul li a {
        padding: 0 10px;
    }
    .header-logo img {
        margin-right: 10px;
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 10px 0;
    }
    .hamburger {
        display: flex;
    }
    .header-right {
        position: fixed;
        left: 100vw;
        top: 0;
        width: 100vw;
        height: 100vh;
        padding: 15vh 15px;
        overflow-y: scroll;
        transition: all .5s ease;
        z-index: 99;
        background: rgba(0, 18, 116, .9);
        color: #fff;
    }
    .header-right.active {
        left: 0;
    }
    .header-right nav {
        max-width: 550px;
        margin: 0 auto;
    }
    .header-right nav ul li {
        width: 100%;
        margin: 15px 0;
    }
    .header-right nav ul li a {
        display: block;
        line-height: 2;
    }
    .header-right nav ul li:last-child a {
        background: none;
    }
}

@media screen and (max-width: 480px) {
    .hamburger.active {
        background: none !important;
    }
}


/********************************************************
************************ Footer *************************
********************************************************/

.footer-wrapper {
    background: url(../img/common/footer-bg.jpg) no-repeat center / cover;
}

.footer-wrapper .bg-white {
    padding-left: 15px;
    padding-right: 15px;
    background: rgba(255, 255, 255, .85);
}

footer nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

footer nav ul li {
    margin: 5px 10px;
}

.copyright {
    padding: 20px 15px;
    font-size: .875rem;
    font-weight: 500;
}

@media screen and (min-width: 769px) {
    .sp-btn {
        display: none !important;
    }
}

.cmn-btn a {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 180px;
    line-height: 38px;
    text-align: center;
    border: 1px solid #707070;
}

.cmn-btn a:hover {
    background: #707070;
    color: #fff;
}

.spacer {
clear: both;
height:0px!important;
font-size:0px;
}
