@charset "utf-8";
body.fixed{
    overflow: hidden;
}
/* header */
.header_bg{
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    /* mix-blend-mode: multiply; */
    opacity: 0.95;
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    height: 100px;
    z-index: 90;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
.header_box{
    position: relative;
    width: 100%;
    height: 100%;
    font-family: "Noto Sans JP";
}
.header_upper{
    height: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}
.header_logo{
    width: 383px;
    margin-left: 20px;
}
.header_upper_r{
    display: flex;
    height: 100%;
}
.gaiyo_annai{
    margin-right: 20px;
    display: flex;
    align-items: center;
    color: #000;
}
.gaiyo_annai p{
    font-size: 12px;
    position: relative;
}
.gaiyo_annai p a{
    display: flex;
}
.gaiyo_annai p:not(:last-child){
    margin-bottom: 0.8em;
}
.gaiyo_annai .arrow {
    width: 10px;
    margin-right: 0.5em;
}
.forms{
    display: flex;
}
.forms_item{
    width: 85px;
    height: 100%;
    transition: 0.3s;
}
.forms_item:hover{
    opacity: 0.8;
}
.forms_item.res{
    background: #d93151;
}
.forms_item.req{
    background: #0077b4;
}
.forms_item.catalog{
    background: #23a387;
}
.forms_item.limited{
    background: #cfe4db;
    /* color: #000; */
}
.forms_item a{
    height: 100%;
    width: 100%;
    display: block;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
    padding-bottom: 0.5em;
    position: relative;
}
.forms_item a p{
    height: 2em;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.1;
}
.forms_item.limited a p{
    color: #23a387;
}

.forms_item_icon{
    position: absolute;
    top: 12%;
}
.forms_item.res .forms_item_icon{
    width: 28%;
}
.forms_item.req .forms_item_icon{
    width: 35%;
}
.forms_item.catalog .forms_item_icon{
    width: 31%;
}
.forms_item.limited .forms_item_icon{
    width: 22%;
}
.header_lower{
    height: 35px;
    max-width: 1000px;
    margin: 0 auto;
    color: #fff;
}
.header_lower_inner{
    height: 100%;
    color: #000;
}
.nav_list{
    display: flex;
    height: 100%;
}
.nav_list li{
    width: calc(100% / 9);
    height: 100%;
    font-size: 12px;
    transition: 0.3s;
}
.nav_list li a{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav_list li:hover{
    transition: 0.3s;
    background: #fff;
    color: #000;
}

.header_h{
    height: 100px;
}

@media screen and (max-width: 1000px) {
    .header_logo {
        width: 320px;
        margin-left: 10px;
    }
    .gaiyo_annai p {
        font-size: 11px;
    }
    .forms_item a p {
        font-size: 10px;
    }
    .forms_item {
        width: 75px;
        height: 100%;
    }
    .nav_list li {
        font-size: 11px;
    }
}
@media screen and (max-width: 750px) {
    header{
        height: 45px;
    }
    .header_bg{
        height: 45px;
        transition: 0.3s;
    }
    .header_bg.active{
        height: 100vh;
        background: #e4ede7;
    }
    .header_upper{
        height: 45px;
    }
    .header_logo{
        margin-left: 10px;
        max-width: 250px;
    }
    .header_upper_r{
        position: fixed;
        bottom: -52px;
        width: 100%;
        height: 52px;
        transition: 0.3s;
    }
    .header_upper_r.n_active{
        bottom: -52px;
    }
    .header_upper_r.active{
        bottom: 0px;
    }
    .forms{
        width: 100%;
    }
    .forms_item{
        width: calc(100% / 3);
        /* width: 100%; */
    }
    .forms_item a{
        padding-bottom: 0.3em;
    }
    .forms_item.res .forms_item_icon{
        width: 22%;
        max-width: 21px;
        top: 13%;
    }
    .forms_item.req .forms_item_icon{
        width: 29%;
        max-width: 27px;
        top: 15%;
    }
    .forms_item.catalog .forms_item_icon{
        width: 25%;
        max-width: 23px;
    }
    .forms_item.limited .forms_item_icon{
        width: 16%;
        max-width: 15px;
    }
    .forms_item_icon{
        top: 8%;
    }
    .header_lower{
        opacity: 0;
        pointer-events: none;
        height: calc(100vh - 97px);
        transition: 0.3s;
    }
    .header_lower.active{
        opacity: 1;
        pointer-events: all;
    }
    .hum_menu{
        margin: 0 20px;
        height: 20px;
        width: 35px;
        position: relative;
        /* overflow-y: scroll; */
    }
    .hum_menu span {
        display: block;
        position: absolute;
        left: 0;
        width: 100%;
        height: 2.5px;
        background: #000;
        transition: 0.3s;
    }
    .hum_menu span:nth-of-type(1){
        top: 0;
    }
    .hum_menu span:nth-of-type(2){
        top: 50%;
        transform: translateY(-50%);
        opacity: 1;
    }
    .hum_menu span:nth-of-type(3){
        bottom: 0;
    }
    .hum_menu.active span:nth-of-type(1) {
        transform: rotate(45deg);
        top: 9px;
    }
    .hum_menu.active span:nth-of-type(2) {
        opacity: 0;
    }
    .hum_menu.active span:nth-of-type(3) {
        transform: rotate(-45deg);
        bottom: 8px;
    }
    .header_lower_inner{
        margin: 0 10px;
        padding: 40px 0;
        overflow-y: scroll;
    }
    .nav_list{
        flex-wrap: wrap;
        justify-content: space-between;
        height: auto;
    }
    .nav_list li{
        width: 48%;
        font-size: 14px;
        height: 3.5em;
        border-bottom: solid 1px #1b8b62;
    }
    .gaiyo_annai{
        margin: 50px auto 0;
        width: 100%;
    }
    .gaiyo_annai p{
        font-size: 14px;
    }
    .gaiyo_annai > div{
        display: flex;
        justify-content: space-evenly;
    }

    .header_h{
        height: 45px;
    }
}







/* footer */
footer{
    background: #23a387;
    padding: 50px 0px 20px;
    /* border-top: 1px solid #231815; */
    font-family: "Noto Sans JP";
}
.foot_inner{
    padding: 0 20px;
}
.foot_logo{
    /* max-width: 185px; */
    max-width: 240px;
    margin: 0 auto 40px;
}
.foot_forms{
    max-width: 675px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    /* justify-content: center; */
    flex-wrap: wrap;
    margin-bottom: 80px;
}
.foot_forms_item{
    height: 60px;
    width: 48%;
    transition: 0.3s;
}
.foot_forms_item:hover{
    opacity: 0.7;
}
.foot_forms_item:nth-child(n + 3){
    margin: 0 auto;
    margin-top: 4%;
}
.foot_forms_item.res{
    background: #d93151;
}
.foot_forms_item.req{
    background: #0077b4;
}
.foot_forms_item.catalog{
    /* background: #23a387; */
    background: #fff;
}
.foot_forms_item.catalog p{
    color: #23a387;
}

.foot_forms_item.limited{
    background: #cfe4db;
}
.foot_forms_item.limited p{
    color: #23a387;
}
.foot_forms_item.limited a{
    /* color: #000 !important; */
}
.foot_forms_item a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    color: #fff;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    font-family: "Noto Sans JP";
}
.foot_forms_item a p{
    flex-grow: 1;
}
.foot_forms_item .foot_forms_item_icon{
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.foot_forms_item.res .foot_forms_item_icon img{
    width: 80%;
}
.foot_forms_item.req .foot_forms_item_icon img{
    width: 80%;
}
.foot_forms_item.catalog .foot_forms_item_icon img{
    width: 80%;
}
.foot_forms_item.limited .foot_forms_item_icon img{
    width: 60%;
}

.foot_nav_list_box{
    border-bottom: solid 1px #fff;
    margin-bottom: 65px;
}
.foot_nav_list{
    display: flex;
    height: 35px;
    max-width: 1000px;
    margin: 0 auto;
}
.foot_nav_list li{
    width: calc(100% / 9);
    height: 100%;
    font-size: 12px;
    transition: 0.3s;
    /* color: #fff; */
}
.foot_nav_list li a{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.foot_nav_list li.active{
    background: #23a387;
    color: #000;
}
.foot_nav_list li:hover{
    transition: 0.3s;
    background: #23a387;
    color: #fff;
}
.foot_tel{
    max-width: 315px;
    margin: 0 auto 40px;
}

.footer_seller{
    max-width: 190px;
    margin: 0 auto 40px;
}

.foot_cap{
    font-size: 10px;
    text-align: center;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 200;
    letter-spacing: 0.05em;
}
.copyright{
    font-size: 10px;
    color: #fff;
    text-align: center;
    font-weight: 200;
}

@media screen and (max-width: 1000px) {
    .foot_nav_list li {
        font-size: 11px;
    }
}
@media screen and (max-width: 750px) {
    footer{
        padding: 35px 0px 70px;
    }
    .foot_forms_item a p{
        font-size: 14px;
    }
    .foot_nav_list_box{
        padding: 0 20px;
        border-bottom: none;
    }
    .foot_nav_list{
        flex-wrap: wrap;
        height: auto;
    }
    .foot_nav_list li{
        width: calc(100% / 3);
        height: 35px;
        border-bottom: solid 0.5px #23a387;
        border-right: solid 0.5px #23a387;
    }
    .foot_nav_list li:nth-child(3n){
        border-right: none;
    }
    .foot_nav_list li:nth-child(-n+3){
        border-top: solid 0.5px #23a387;
    }
    .foot_forms_item .foot_forms_item_icon {
        width: 30px;
    }
    .foot_nav_list li {
        font-size: 12px;
    }
}
@media screen and (max-width: 600px) {
    .foot_forms_item{
        width: 96%;
        max-width: 350px;
        margin: 0 auto;
    }
    .foot_forms_item:nth-child(n + 2){
        margin-top: 4%;
    }
    .foot_logo {
        margin: 0 auto 30px;
    }
    .foot_forms {
        margin-bottom: 40px;
    }
    .foot_nav_list_box {
        margin-bottom: 50px;
    }
}

/* coming soon */
.soon {
    pointer-events: none;
    opacity: 0.6;
}
header .soon, footer .soon {
    opacity: 0.3;
}
.forms_item.soon {
    /* background: #707070; */
    opacity: 1;
    position: relative;
}
.forms_item.soon:after {
    content: "";
    width: 100%;
    height: 100%;
    background: #5b5b5b;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    opacity: 0.6;
}