@charset "utf-8";

body{
    font-family: "Noto Sans JP", din-2014-narrow, serif;
    font-optical-sizing: auto;
    font-style: normal;
    letter-spacing: 0.05em;
    color: #333;
}

#wrap {
	overflow: hidden;
}

.com_inner{
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
}

img{
	width: 100%;
	height: auto;
}

.pos_re{
    position: relative;
}
.fade {
    opacity: 0;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
}
.fade.is-show {
    opacity: 1;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
}

.sec_link{
    padding-top: 70px;
    margin-top: -70px;
}

.db550{
    display: none;
}
@media screen and (max-width: 1100px) {
}


@media screen and (max-width: 800px) {
    .sec_link{
        padding-top: 50px;
        margin-top: -50px;
    }
}

@media screen and (max-width: 550px) {
    .db550{
        display: block;
    }
}



/* header */
.header_h{
    height: 70px;
    width: 100%;
    background: #009ec1;
    content: "";
    display: block;
}
header{
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 70px; 
    z-index: 1000;
    background: #009ec1;
}
.header_inner{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    width: 100%;
}
nav ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
nav ul li{
    text-align: center;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}
nav ul li:hover{
    opacity: 0.6;
}
nav ul li.soon{
    pointer-events: none;
    opacity: 0.5;
}
nav ul li .en{
    font-family: din-2014-narrow;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 0;
}
nav ul li .ja{
    font-size: 10px;
    line-height: 1;
}
.nav_logo{
    height: 50px;
}
.nav_logo img{
    height: 100%;
    width: auto;
}
.header_contact{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 200px;
    height: 40px;
    background: #333;
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
    border-radius: 200px;
    transition: 0.3s;
}
.header_contact:hover{
    opacity: 0.6;
}
.header_contact a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer{
    padding: 15px;
}
.privacypolicy{
    text-align: center;
    font-size: 12px;
    color: #009ec1;
}
.copyright{
    font-family: din-2014-narrow;
    font-size: 14px;
    text-align: center;
    margin-top: 0.6em;
    font-weight: 500;
    color: #009ec1;
}
.hum_btn{
    display: none;
}
.sp_logo{
    display: none;
}
@media screen and (max-width: 1200px) {
    .nav_logo {
        height: 35px;
    }
    nav ul li .en {
        font-size: 18px;
    }
    nav ul {
        gap: 25px;
    }
    .header_contact {
        width: 150px;
        height: 35px;
        font-size: 12px;
    }
}


@media screen and (max-width: 1000px) {
    nav ul li {
        order: 2;
    }
    nav ul li.nav_logo{
        order: 1;
    }
    .header_inner{
        justify-content: flex-start;
    }
}


@media screen and (max-width: 800px) {
    body.active{
        overflow: hidden;
    }
    .hum_btn {
        display: block;
        z-index: 9999;
        cursor: pointer;
        width: 30px;
        height: 20px;
        position: relative;
    }
    .hum_btn span {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background: #fff;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }
    .hum_btn span:nth-child(1) {
        top: 0;
    }
    .hum_btn span:nth-child(2) {
        top: 50%;
    }
    .hum_btn span:nth-child(3) {
        top: 100%;
    }
    .hum_btn.active span:nth-child(1) {
        top: 50%;
        background: #fff;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .hum_btn.active span:nth-child(2){
        opacity: 0;
    }
    .hum_btn.active span:nth-child(3) {
        top: 50%;
        background: #fff;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .nav {
        position: fixed;
        top: 50px;
        right: -100%;
        width: 100%;
        padding: 30px 20px 30px;
        height: calc(100svh - 100px);
        background: rgba(0, 159, 193, 0.95);
        transition: 0.5s all;
        overflow-y: scroll;
    }
    .nav.active {
        right: 0;
    }
    .header_inner {
        justify-content: space-between;
    }
    .header_contact{
        position: fixed;
        bottom: 0;
        width: 100%;
        height: 50px;
        border-radius: unset;
        left: 0;
        transform: unset;
        top: unset;
    }
    .sp_logo {
        display: block;
        width: 120px;
    }
    header{
        height: 50px;
    }
    .nav_logo{
        display: none;
    }
    nav ul {
        display: block;
    }
    nav ul li:not(:last-child){
        margin-bottom: 35px;
    }
    .header_h {
        height: 50px;
    }
    nav ul li .en {
        font-size: 22px;
    }
    footer{
        margin-bottom: 50px;
    }
}