@charset "UTF-8";
/* CSS Document */

html{
	width:100%;
	height:100%;
	overflow-x: hidden;
    overflow-y: scroll; 
	-webkit-overflow-scrolling: touch
}

/**　共通　**/
body{
	display: block;
	width: 100%;
	height: 100%;
    font-family:'ヒラギノ角ゴシック W2','メイリオ',sans-serif;
	font-size:16px;
	scroll-behavior: smooth;
	background-color: #fef9f7;
	box-sizeing:no-border;
    margin: 0;
    padding: 0;
}



/**   スマホ（ハンバーガーメニュー） css**/
@media screen and (max-width:480px),print{
#ogp{
    display: none;
}
.h_menu,
#h_logo_pc{
	display: none;
}

#overflow{
    overflow-x: hidden;
}

#header_top{
	display: flex;
}
#h_logo_mob{
	margin: 20px 0 10px 20px;	
}
	
#h_logo_mob img{
	width: 50px;
	height: auto;
    max-width: 100%;
}
/*============================================== MENUがCLOSEに
===================================*/

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: fixed;
	cursor: pointer;
    width: 30px;
    height:30px;
	top:10px;
	left: 330px;
	 z-index: 9999;/*ボタンを最前面に*/
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 1px;
    border-radius: 5px;
	background: #000;
  	width: 100%;
  }


.openbtn span:nth-of-type(1) {
	top:13px;	
	
}

.openbtn span:nth-of-type(2) {
	top:22px;
	width: 80%;
}

.openbtn span:nth-of-type(3) {
	top:32px;
	width: 60%;
}

.openbtn span:nth-of-type(3)::after {
	content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top:8px;
	left: 0px;
	color: #000;
	font-size: 0.6rem;
	text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.openbtn.active span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 100%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 100%;
}

.openbtn.active span:nth-of-type(3)::after {
	content:"Close";/*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
	top:9px;
	left:15px;
}
	
/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top:0;
	width: 100%;
    height: 100vh;/*ナビの高さ*/
	background:#fff;
    /*動き*/
	transition: all 0.8s;
	
}
	
.nav-logo{
	margin: 50px 0 0 43%;
    width: 15%;
    height: auto;
	}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 1;
	z-index:999;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:45%;
    left:50%;
    transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
	margin-bottom: 10px;
}

#g-nav li a{
	color: #6f6c5f;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}
	
.hum_insta{
	margin: 10px 0 0 35px;
	transition:0.5S;
}
.hum_insta:hover{
	opacity: 0.5;	
	transition:0.5S;
}



}
/**   480pxまでの   css**/

@media screen and (min-width:481px),print{
#ogp{
    display: none;
}
.openbtn,
.hum_menu{
	display: none;
	}
	
#header_top{
	display: flex;
	justify-content:space-between;
	margin: 0 auto;
	width: 90%;
	height: 120px;
}

#h_logo_pc img{
	margin-top: 25px;
}


	

.menu{
	justify-content:space-between;
	margin-top: 60px;
	display: flex;
	
}	
	

#pc-nav ul li{
	color: #000;
	transition:0.7S;
	margin-right: 30px;
	font-size: 16px;
}

#pc-nav ul li a{
	display:block;
	text-decoration:none;
	margin:0 0 10px 0px;
	padding:5px;
	color: #000;
	transition:0.5S;
}


#pc-nav ul li a:visited{
		color: #000000;
}

#pc-nav ul li a:hover{
	color: #ad3623;
	transition:0.5S;
}


.here{
	color: #ad3623;
}



.h_insta{
	margin-top: -10px;
	transition:0.5S;
}
.h_insta:hover{
	opacity: 0.5;	
	transition:0.5S;
}

}