body{
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans CJK JP',sans-serif;
}
p{
    margin: 0;
}





header{
    width: 100%;
    background: #fff;
    position: fixed;
    top:0;
    z-index: 200;
    transform-style: preserve-3d;
    transform: translate3d(0,0,0);
}
.header{
    width: 1300px;
    margin: 0 auto;
    display: flex;
}
@media screen and (max-width:1300px){
    .header{
        width: 100%;
        background: #fff;
    }
}

.header-logo{
    padding: 15px 30px 15px 0px;
    background: #fff;
    z-index: 300;
}
.header-logo a{
    display: block;
}
.header-logo a img{
    width: 160px;
    vertical-align: top;
}
@media screen and (max-width:1300px){
    .header-logo{
        padding: 15px;
    }
}


.header-link{
    display: flex;
    align-items: center;
    background: #00A0E9;
    width: calc(100% - 410px);
    z-index: 300;
}
.header-link-btn{
    width: 130px;
    height: 100%;
    text-align: center;
    transition: all .5s;
}
.header-link-btn:hover{
    background: #E6F6FD;
}
.header-link-btn:hover a{
    color: #00A0E9;
}
.header-link-btn:first-child{
    margin: 0 0 0 auto;
    width: 200px;
}
.header-link-btn a{
    height: 100%;
    width: 100%;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    display: flex;
    text-align: center;
    align-items: center;
}
.header-link-btn a p{
    padding: 10px 0;
    width: 100%;
    border-left: 1px solid #fff;
}
@media screen and (max-width:820px){
    .header-link{
        display: none;
    }
}

.header-entry{
    width: 140px;
    background: #fff;
    transition: all .5s;
    z-index: 300;
}
.header-entry:hover{
    background: #E6F6FD;
}

.header-entry a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 18px;
    color: #00A0E9;
    text-decoration: none;
}
@media screen and (max-width:820px){
    .header-entry{
        display: none;
    }
}

.header-sp-space{
    display: none;
    width: calc(100% - 270px);
    background: #fff;
    z-index: 300;
}
@media screen and (max-width:820px){
    .header-sp-space{
        display: block;
    }
}

.nav-wrapper{
    position: relative;
    width: 80px;
    background: #00A0E9;
}
@media screen and (max-width:820px){
    .nav-wrapper{
        margin: 0 0 0 auto;
    }
}



/* hamburger(ハンバーガーアイコン)=================================== */

.hamburger {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 300;
    background: #00A0E9;
}

.hamburger p{
    margin: 45px 0 0;
    text-align: center;
    color: #fff;
    font-size: 15px;
}

.hamburger__line {
    position: absolute;
    width: 40px;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.5s;
    margin: 12px 0 0;
}

.hamburger__line--1 {
    top: 0px;
}

.hamburger__line--2 {
    top: 14px;
}
.hamburger__line--3 {
    top: 28px;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
    transform: rotate(-45deg);
    top: 11px;
    left: 25%;
}

.open .hamburger__line--2 {
    opacity: 0;
}

.open .hamburger__line--3 {
    transform: rotate(45deg);
    top: 11px;
    left: 25%;
}
/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    z-index: 200;
}
/*black-bg(ハンバーガーメニュー解除用bg)=================================== */
.black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 100;
}
/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
    opacity: 0.3;
    visibility: visible;
}


/* 開いた時メニュー */
.sp-nav {
    position: fixed;
    transform: translateX(150%);
    opacity: 0;
    /*ハンバーガーがクリックされる前はWindow右側に隠す*/
    top: 0;
    width: 1300px;
    /* 出てくるスライドメニューの幅 */
    height: 100vh;
    background-color: #B0E3F9;
    transition: all 0.5s;
    z-index: -100;
    overflow-y: auto;
    /* メニューが多くなったらスクロールできるように */
}
@media screen and (max-width:1300px) {
    .sp-nav{
        width: 100%;
    }
}
.sp-nav-wrap{
    width: 850px;
    margin: 200px auto 0;
}
.nav-link{
    border-bottom: 2px dashed #fff;
}
.nav-link:first-child{
    border-top: 2px dashed #fff;
}
.nav-link-btntop{
    margin: 20px 0 25px;
}
.nav-link-btntop a{
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    color: #00418C;
    display: block;
}
.nav-link-btn{
    margin: 0 0 20px;
}
.nav-link-btn a{
    text-decoration: none;
    font-size: 16px;
    color: #00418C;
    display: block;
}
.nav-entry-btn{
    width: 100%;
    margin: 45px 0 0;
    border: 2px solid #fff;
    box-sizing: border-box;
}
.nav-entry-btn a{
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 20px 30px;
}
.nav-entry-btn a p{
    font-size: 18px;
    color: #00418C;
    font-weight: bold;
    margin: 0;
}
.nav-entry-btn a img{
    max-width: 115px;
    height: 100%;
    margin: 0 0 0 auto;
    transition: all .5s;
}
.nav-entry-btn:hover a img{
    transform: translateX(10px);
}
@media screen and (max-width:850px) {
    .sp-nav-wrap{
        width: calc(100% - 30px);
        margin: 120px auto 120px;
    }
}





/* ローディング */
.loading {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #E6F6FD;
    z-index: 9999999;
    margin: 0;
    padding: 0;
}

.loading-screen {
    position: relative;
    height: 100%;
    width: 100%;
}

.loading-cont {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 350px;
    height: 100px;
    margin: auto;
}

.loading-cont-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.loading-cont-wrap-door {
    width: 50px;
    height: 100px;
    background: #00A0E9;
    margin: 0 20px;
    position: relative;
    -webkit-perspective: 600px;
            perspective: 600px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.loading-cont-wrap-door::before {
    position: absolute;
    z-index: 99999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border: 2px solid #00A0E9;
    box-sizing: border-box;
    content: '';
    -webkit-animation: loading 1.2s infinite;
            animation: loading 1.2s infinite;
    -webkit-transform-origin: right center;
            transform-origin: right center;
}

.loading-cont-wrap-door:nth-child(2)::before {
    -webkit-animation-delay: -0.8s;
            animation-delay: -0.8s;
}

.loading-cont-wrap-door:nth-child(3)::before {
    -webkit-animation-delay: -0.4s;
            animation-delay: -0.4s;
}

@-webkit-keyframes loading {
    0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    }
    50% {
    -webkit-transform: rotateY(50deg);
            transform: rotateY(50deg);
    }
    100% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    }
}

@keyframes loading {
    0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    }
    50% {
    -webkit-transform: rotateY(50deg);
            transform: rotateY(50deg);
    }
    100% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    }
}

.fadeIn{
    opacity: 0;
}
#fadeIn{
    animation: fadeIn 1s forwards;
    animation-delay: 0.2s;
}
@keyframes fadeIn{
    0%{
        transform: translateY(20px);
        opacity: 0;
    }
    100%{
        transform: translateY(0px);
        opacity: 1;
    }
}