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

@media screen and (min-width: 897px) {
/*画面幅が897px以上（PC）*/
.sp_only {
	/*スマホでは非表示*/
	display: none !important;
}
}

@media screen and (max-width: 896px) {
/*画面幅が896px以下（スマホ専用スタイル）*/
.pc_only {
	/*PC以外は非表示*/
	display: none !important;
}
.sp_only {
	display: block;
}
}


/*PCメニュー*/
.menu_bg{
	display: none;
}
.pc_menu {
	display: block;
	box-sizing: border-box;
	background-color: rgba(0,0,0,0.9);
	position: fixed;
	top: 0;
	right: 0;
	width: 460px;
	height: 100vh;
	padding: 160px 0 0;
	z-index: 9998;
	overflow-y: auto;
	box-shadow: 0 0 4px rgba(0,0,0,0.2);
	color: #333;

	-webkit-transform: translateX(550px);
	transform: translateX(550px);/*中身を表示*/
	transition: .5s ease-in-out;/*滑らかに表示*/
	opacity: 0;
}
.pc_menu.active {
	/*display: block;*/
	-webkit-transform: translateX(0px);
	transform: translateX(0px);/*中身を表示*/
	opacity: 1;
}

.pc_menu ul.menu{
	text-align: center;
	box-sizing: border-box;
	width: 100%;
	padding: 0 30px 0 38px;
	margin: 0 auto;
	letter-spacing: 0.3em;
}
.pc_menu ul.menu li{
	position: relative;
	box-sizing: border-box;
	list-style-type: none;
	margin-bottom: 20px;
	color: #fff;
}

.pc_menu ul.menu li a{
	position: relative;
	display: block;
	padding: 14px 20px 10px;
	font-size: 20px;
	letter-spacing: 0.1em;
	text-decoration: none;
	font-family: serif;
	color: #fff;
}
.pc_menu ul.menu li a:hover{
	background-color: rgba(255,255,255,0.05);
	border-radius: 10px;
}
.pc_menu ul.menu li a span{
	display: block;
	margin-top: 10px;
	font-size: 14px;
	letter-spacing: 0.1em;
	font-weight: bold;
	font-family: serif;
	color: #d6c28f;
}

/*PC ハンバーガーアイコン*/
#spMenu_btn {
	display: inline-block;
	position: fixed;
	top: 30px;
	right: 60px;
	height: 60px;
	margin: 0;
	z-index: 9999;
}
#home #spMenu_btn{
	top: 60px;
}
#spMenu_btn a {
	display: block;
	box-sizing: border-box;
	background-color: #000;
	border-radius: 50%;
	height: 60px;
	width: 60px;
	text-decoration: none;
	transition: all 0.3s ease 0s;
}

/*ハンバーガーアイコンをばつ印にする用*/
#spMenu_btn a.close{
	background-color: #000;
	transform: rotateZ(90deg);
}
#spMenu_btn a.close #headMenuIcon{
	top: 28px;
	left: 15px;
}
#headMenuIcon {
	background-color: #fff;
	display: block;
	top: 29px;
	left: 14px;
	height: 2px;
	margin: 0;
	position: absolute;
	transition: all 0.2s ease 0s;
	width: 32px;
}
#headMenuIcon::before,
#headMenuIcon::after {
	background-color: #fff;
	content: "";
	display: block;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 0;
	width: 32px;
	transition: all 0.3s ease 0s;
}
#headMenuIcon::before {
	margin-top: -10px;
}
#headMenuIcon::after {
	margin-top: 8px;
}
#spMenu_btn .close #headMenuIcon {
	background: transparent none repeat scroll 0 0;
}
#spMenu_btn .close #headMenuIcon::before,
#spMenu_btn .close #headMenuIcon::after {
	margin-top: -1px;
}
#spMenu_btn .close #headMenuIcon::before {
	left: -2px;
	width: 32px;
	transform: rotate(-45deg);
}
#spMenu_btn .close #headMenuIcon::after {
	left: -2px;
	width: 32px;
	transform: rotate(-135deg);
}

@media screen and (max-width: 896px) {
/*画面幅が896px以下（スマホ専用スタイル）*/

}