@charset "utf-8";


/*--------------------------------------------------------------------------
   Header
---------------------------------------------------------------------------*/
#Header{
	position: fixed;
	left: 0;
	top: 0;
	z-index:12000;
	width: 100%;
	background: #FFF;
}
#Header .header-cont{
	display: flex;
	justify-content: flex-start;
    align-items: center;
	max-width: 1200px;
    margin: auto;
}
#Header .logo{
    flex-basis: 30%;
}

/* ---------------------------------------------------------------------------
			#Gnav	
				グローバルナビゲーション
--------------------------------------------------------------------------- */

#Gnav{
    flex-basis: 75%;
    display: flex;
    justify-content: space-between;
    max-width: 700px;
}

.gnav{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.gnav li{
    font-size: 1.8rem;
    font-weight: bold;
    padding-left: 30px;
}
.btn-inq a{
    background: linear-gradient(to left, #f3b01c, #d51c50); 
    font-size: 1.8rem;
    display: block;
    padding: 15px 30px;
    color: #fff;
    font-weight: bold;
}
.btn-inq a::after{
    content: '';
    display: inline-block;
    background-image: url(../../common/image/btnArrow.svg);
    background-position: top right;
    width: 7px; height: 16px;
    margin-left: 10px;
}



/*--------------------------------------------------------------------------
   mobile
---------------------------------------------------------------------------*/
@media screen and (max-width: 1400px) {
    
    
    /*--------------------------------------------------------------------------
   Header
---------------------------------------------------------------------------*/
#Header{
	position: fixed;
	left: 0;
	top: 0;
	z-index:12000;
	width: 100%;
	background: #FFF;
    padding-bottom: 10px;
}
#Header .header-cont{
	display: block;
	justify-content: flex-start;
    align-items: center;
	max-width: 1200px;
    margin: auto;
}
#Header .logo{
   width: 40%;
    margin: auto;
}

/* ---------------------------------------------------------------------------
			#Gnav	
				グローバルナビゲーション
--------------------------------------------------------------------------- */

#Gnav{
    flex-basis: 75%;
    display: block;
    justify-content: space-between;
    max-width: 700px;
}

.gnav{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.gnav li{
    font-size: 1.4rem;
    font-weight: bold;
    padding-left: 0px;
    margin: auto;
}
    .btn-inq{
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 99999;
    }
.btn-inq a{
    background: linear-gradient(to left, #f3b01c, #d51c50); 
    font-size: 1.6rem;
    display: block;
    padding: 10px 30px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}
.btn-inq a::after{
    content: '';
    display: inline-block;
    background-image: url(../../common/image/btnArrow.svg);
    background-position: top right;
    width: 7px; height: 16px;
    margin-left: 10px;
}
}

