/* CSS Document */

#header{
    padding:10px 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    z-index: 2;
    position: fixed;
	top:0;
    width: 100%;
	font-family: "Zen Antique Soft", serif;
}

#header.HeightMin{
	position: fixed;
    z-index: 999;
    height: 100px;
    animation: DownAnime 0.5s forwards;
    background: rgba(255,255,255,1);
}

@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-170px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}

#header h1 img{
	aspect-ratio:30/13;
	display: block;
	min-width:180px;
	width:10vw;
}

.pc-navi{
	display: flex;
    align-items: center;
}

.pc-navi #g-navi ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.pc-navi #g-navi ul li {
    margin: 0 15px;
}

.pc-navi #g-navi ul li:last-child {
	margin: 0;
}

.pc-navi #g-navi ul li a {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
	position: relative;
}


.pc-navi #g-navi ul li a::after {
	position: absolute;
	content: '';
	display: block;
	width:5px;
	height: 5px;
	opacity: 1;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: all 300ms ease-in-out;
}

.pc-navi #g-navi ul li:last-child a::after {
	display: none;
}

.pc-navi #g-navi ul li a:hover::after {
	width: 100%;
	height: 100%;
	opacity: 1;
	background:rgba(255,255,255,0.9);
	z-index: -1;
	border-radius: 30px;
	 backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
}

.pc-navi #g-navi ul li a span {
    font-size: 10px;
    text-align: center;
    letter-spacing: 2px;    
	color: #5b3610;
	text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0 -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}

.pc-navi #g-navi ul li:last-child a span  {
	text-shadow:none;
}

.pc-navi #g-navi ul li a p {
    font-size: 16px;
    text-align: center;
    letter-spacing: 2px;
	color: #5b3610;
	position: relative;
	text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0 -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}

.pc-navi #g-navi ul li:last-child a p {
	text-shadow:none;
}

#header.HeightMin .pc-navi #g-navi ul li a::after{
	display: none;
}


#header.HeightMin .pc-navi #g-navi ul li a p::before {
	position: absolute;
	content: '';
	display: block;
	width:5px;
	height: 1px;
	border-bottom: 2px solid #5b3610;
	opacity: 0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: all 300ms ease-in-out;
}


#header.HeightMin .pc-navi #g-navi ul li a:hover p::before {
	width: 100%;
	opacity: 1;
}

#header.HeightMin .pc-navi #g-navi ul li:last-child a p::before {
	display: none;
}


.pc-navi .inquiry-box {
    display: flex!important;
	text-align: center;
	justify-content: center;
	align-items: center;
    border: 1px solid #fff;
    transition: all 300ms ease-in-out;
	background: #e58410;
	color:#fff!important;
	border-radius: 50px;
    padding: 10px 30px !important;
	flex-direction: row!important;
}



.pc-navi #g-navi ul li .inquiry-box:hover{
    border-radius:0;
	-webkit-transform: skew(-5deg);
  transform: skew(-5deg);
	background: linear-gradient(to left, #7f4700 25%, #e18e3f 50%, #7f4700);
}



.pc-navi .inquiry-box i {
	font-size: 16px;
    line-height: 14px;
    padding-right: 5px;
}

.pc-navi .inquiry-box p{
	color: #fff!important;
}


@media(max-width: 1200px){
	#header {
		padding: 10px 10px;
	}
}


@media(max-width: 1000px){
	
	.pc-navi{
		display: none;
	}
	
}


/*　s--navi */

@media(min-width:1001px){
	.sp-navi{
		display:none;
	}
}


@media(max-width:1000px){
	
	#header {
        height: 80px;
		align-items: center;
		background: none;
		padding: 0;
		box-shadow: none;
		justify-content: center;
		z-index: 10;
	}
	
	#header h1 img {
    	min-width: inherit;
		width: inherit;
		height: 100%;
	}
	
	#header h1 a{
		display: flex;
		height: 80px;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 5px 10px 0 10px;
	}
	
	/*ハンバーガーメニュー*/
	#sp-navi {
	  display: block;
	  position: fixed;
	  top: 0;
	  right: -100%;
	  bottom: 0;
	  width: 100%;
	  color: #fff;
	  padding: 120px 25px 80px;
	  background-color: #fff;
	  overflow-x: hidden;
	  overflow-y: auto;
	  -webkit-overflow-scrolling: touch;
	  transition: all .5s;
	  z-index: 20;
	  opacity: 0;
	}

	#sp-navi .sp-nav-menu a {
		color: #333;
        display: flex;
        justify-content: flex-end;
        flex-direction: row-reverse;
        align-items: center;
        padding: 20px 0;
        width: 100%;
        border-bottom: 1px dotted #888;
        opacity: 0.9;
	}
	
	#sp-navi .sp-nav-menu a:hover {
		border-top:1px solid #fff;
		border-bottom:1px solid #fff;
		opacity: 1;
	}
	
	
	#sp-navi a p{
		letter-spacing: 2px;
		font-size: 25px;    
		font-family: 'Noto Serif JP', serif;
	}
	
	#sp-navi a span{
		font-size: 10px;
        letter-spacing: 3px;
        padding-left: 3px;
	}

	.open #sp-navi {
	  opacity: 1;
	  right:0px;
		height: 100vh;
	}

	#sp-navi ul {
		padding: 0;
		max-width: 500px;
		margin: 0 auto;
	}
	

	#sp-navi ul.nav-menu {
	  margin-bottom: 60px;
	  border-top: solid 1px #fff;
	}

	#sp-navi ul.nav-menu li {
	  position: relative;
	  margin: 0;
	  padding: 20px 0;
	  border-bottom: solid 1px #fff;
	}

	#sp-navi ul.nav-sns li {
	  padding: 5px 0;
	}

	.toggle_btn {
		display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 50px;
        height: 50px;
        transition: all .5s;
        cursor: pointer;
        z-index: 20;
	    background: linear-gradient(to bottom, #7f4700 25%, #e18e3f 50%, #7f4700);
        border: 1px solid #fff;
        margin-right: 1px;
	}
	
	#header.HeightMin{
		background: none;
	}
	
	#header.HeightMin h1{
		display: none;
	}

	.toggle_btn span {
        display: block;
        position: absolute;
        left: 50%;
        width: 30px;
        height: 1px;
        background-color: #fff;
        border-radius: 4px;
        transition: all .3s;
        transform: translateX(-50%);
	}

	.toggle_btn span:nth-child(1) {
		top: 18px;
	}

	.toggle_btn span:nth-child(2) {
		top: 50%;
		transform: translate(-50%,-50%);
	}

	.toggle_btn span:nth-child(3) {
		bottom: 18px;
	}

	.open .toggle_btn span {
	  background-color: #fff;
	}

	.open .toggle_btn span:nth-child(1) {
		-webkit-transform: translateY(10px) rotate(-315deg);
		height: 1.5px;
		left: 50%;
		transform: translate(-50%, -50%) rotate(45deg);
		top: 50%;
	}

	.open .toggle_btn span:nth-child(2) {
	  opacity: 0;
	}

	.open .toggle_btn span:nth-child(3) {
		-webkit-transform: translateY(-10px) rotate(315deg);
		height: 1.5px;
		left: 50%;
		transform: translate(-50%, -50%) rotate(-45deg);
		top: 50%;
	}

	#mask {
	  display: none;
	  transition: all .5s;
	}

	.open #mask {
	  display: block;
	  position: fixed;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100vh;
	  background: #000;
	  opacity: .6;
	  z-index: 10;
	  cursor: pointer;
	}
	
	
	.sp-menu-info{
		text-align: left;
		margin-top:20px;
		max-width: 500px;
		margin: 0 auto;
	}
	
	.sp-menu-info .sp-menu-btn{
		margin: 10px 0;
	}
	.sp-menu-info .sp-menu-btn a{
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
        padding: 20px 10px 16px 10px;
		transition: all 500ms ease-in-out;
	}
	
	.sp-menu-info a:hover{
		opacity: 0.8;
	}
	
	.sp-menu-btn-tel{
		background: #9b792e;
	}
	
	.sp-menu-btn i{
		padding-right: 10px;
    	font-size: 20px;
	}
	
	.sp-menu-btn-tel{
        background: linear-gradient(to left, #950101 25%, #ff0000 50%, #950101);
	}
	
	.sp-menu-btn-tel p{	
	    position: relative;
    	top: -2px;
		letter-spacing: 4px!important;
	}
	
		
	.sp-menu-btn-tel p span{	
        font-size: 16px !important;
        letter-spacing: 3px !important;
	}
	
	.sp-menu-btn-inquiry{
	    background: linear-gradient(to left, #703820 25%, #e18e3f 50%, #703820);
	}
	
	.sp-menu-btn-inquiry p{	
	    position: relative;
    	top: -2px;
		letter-spacing: 5px!important;
	}

	
	.sp-detail-info p span{
		font-size: 22px;
		line-height: 22px;
	}
	
	.sp-detail-info p{
		font-size: 13px;
        line-height: 18px;
        padding-bottom: 8px;
	}
	
	.sp-detail-info a i{
		font-size:8px;
		position: relative;
		top:-2px;
		left:2px;
	}
	
	.sp-detail-info{
	    margin: 20px 0;
		color: #333;
	}
}

@media(max-width:600px){
	#sp-navi .sp-nav-menu a:hover {
		border-top:1px solid rgba(255,255,255,0);
		border-bottom:1px solid rgba(255,255,255,0);
	}

	#sp-navi{
		width: 100%;
	}
	
	.sp-menu-btn-tel p span {
        font-size: 14px !important;
        letter-spacing: 1px !important;
    }
	
	#sp-navi {
    	padding: 120px 10px 80px;
	}
	
}


@media(max-width:400px){

	.sp-menu-btn-inquiry p{	
	    position: relative;
    	top: -2px;
		letter-spacing: 4px!important;
	}
}

/*　s--navi ↑↑↑↑  /////////////////　*/