@charset "UTF-8";

body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	color: #000;
	min-width: 1100px;
	margin: 0 auto;
}

.pc_disp {
	display: block;
}

.sp_disp {
	display: none!important;
}

a {
    transition: all 0.2s ease-in-out 0s;	
}

a:hover {
	opacity: 0.5;
}

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

header {
	z-index: 999;
	padding: 15px 30px 0;
	position: fixed;
	min-width: 1100px;
	justify-content: space-between;
	width: 100%;
	display: flex;
	align-items: center;
}

.header_inner {
    display: flex;
    justify-content: space-between;
    padding: 8px 8px 8px 30px;
    z-index: 9999;
    box-shadow: 3px 3px 20px rgba(0,0,0,0.2);
    width: max-content;
    align-items: center;
    background: rgba(255,255,255,0.8);
    border-radius: 100px;
    backdrop-filter: blur(5px);
}

ul.g_nav {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

ul.g_nav li a {
    color: #000;
    font-weight: 500;
    font-size: 1.4rem;
}

ul.g_nav li {
    margin: 0 10px;
}

.header_logo {
    width: 160px;
    z-index: 99;
}

a.header_contact_btn {
    display: block;
    color: #fff;
    background: linear-gradient(90deg,#B5995F 0%, #D8B78F 100%);
    padding: 15px 30px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.4rem;
    text-shadow: 0 0 6px rgba(0,0,0,0.4);
    box-shadow: -5px 5px 10px rgba(0,0,0,0.1);
}

a.float_contact_btn { 
	display: none;
}

/*---------------------------------------------------------------*\
	$480px
\*---------------------------------------------------------------*/
@media screen and (max-width: 480px) {
body {
    min-width: inherit;
    width: 100%;
}

.pc_disp {
	display: none!important;
}

.sp_disp {
	display: block!important;
}

.header_inner {
    display: none;
}

a.header_contact_btn {
	display: none;
}
	
header {
    padding: 15px 5% 0;
}

.header_logo {
    width: 120px;
    top: 15px;
}

.float_btn {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 9px;
    background: linear-gradient(180deg,rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%)!important;
    z-index: 999;
}

a.float_contact_btn {
    display: block;
    color: #fff;
    text-shadow: 0 0 7px rgba(0,0,0,0.65);
    border-bottom: 1px solid rgba(0,0,0,0.25);
    border-top: 1px solid rgba(255,255,255,0.75);
    background: linear-gradient(0deg,#B5995F 0%, #D8B78F 100%);
    padding: 15px 30px;
    border-radius: 100px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.45);
}
}