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

.head_menubtn_wrap{
	position: absolute;
	width: 40px;
	height: 40px;
	top: 50%;
	right: 10px;
    transform: translate(0, -50%);
	z-index: 99;
}
.head_menubtn_wrap_vi{
	position: absolute;
	width: 40px;
	height: 40px;
	top: 50%;
	right: 10px;
    transform: translate(0, -50%);
}
.head_menubtn_menu{
	position: absolute;
	left: 0;
	width: 44px;
	cursor: pointer;
	transition: all 0.3s;
}
.head_menubtn_menu.active{
	opacity: 0;
}
.head_menubtn_menu img{
	display: block;
	position: absolute;
	width: 100%;
	top: 0;
	left: 50%;
    transform: translate(-50%, 0);
}
.menu_trigger{
	position: absolute;
	right: 0;
	width: 40px;
	height: 41px;
	cursor: pointer;
}
.menu_trigger span{
	display: inline-block;
	position: absolute;
	width: 28px;
	height: 4px;
	left: 4px;
	background-color: #fff;
	transition: all 0.3s;
}

@media screen and (min-width: 760px) {
	/* 760px以上に適用されるCSS（タブレット用） */
	.menu_trigger span{
		width: 32px;
	}
}

.menu_trigger span.vi{
	background-color: #666!important;
}
.menu_trigger span:nth-of-type(1){
	top: 5px;
}
.menu_trigger span:nth-of-type(2){
	top: 15px;
}
.menu_trigger span:nth-of-type(3){
	top: 25px;
}

@media screen and (min-width: 760px) {
	/* 760px以上に適用されるCSS（タブレット用） */
	.menu_trigger span:nth-of-type(2){
		top: 17px;
	}
}
@media screen and (min-width: 760px) {
	/* 760px以上に適用されるCSS（タブレット用） */
	.menu_trigger span:nth-of-type(3){
		top: 29px;
	}
}

.menu_trigger.active span:nth-of-type(1){
	transform: translateY(13px) rotate(-45deg);
	height: 2px; width: 42px; top: 7px; left: 0px;
	background-color: #666;
}
.menu_trigger.active span:nth-of-type(2){
	opacity: 0;
}
.menu_trigger.active span:nth-of-type(3){
	transform: translateY(-13px) rotate(45deg);
	height: 2px; width: 42px; top: 33px; left: 0px;
	background-color: #666;
}

/*スライドメニュー*/

.opnenmenu{
	position: absolute;
	right: -60vw;
	width: 60vw;
	background-color: #eee;
	transition: all 0.5s;
	display: none;
}
.opnenmenu.active{
	right: 0;
	display: block;
	width: 50%;
	z-index: 98;
}
.opnenmenu_search_wrap{
	position: relative;
	height: 40px;
	width: 192px;
	border-bottom: solid 1px #999;
	box-sizing: border-box;
}
.opnenmenu_search p{
	position: absolute;
	bottom: 0;
	font-size: 14px;
	margin: 0;
	margin-left: 20px;
	letter-spacing: 15px;
}
.opnenmenu_btn{
	position: relative;
	height: 40px;
	width: 100%;
	border-bottom: solid 1px #999;
	box-sizing: border-box;
	overflow: hidden;
	background-color: #eee;
}
.opnenmenu_btn p{
	position: absolute;
	top: 50%;
	left: 20px;
	margin: 0;
    transform: translate(0, -50%);
	font-size: 16px;
	font-weight: 500;
	color: #666;
}
.opnenmenu div:last-child {
	border-bottom: none;	
}
.opnenmenu_btn .opnenmenu_btn_ov{
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all 0.7s;
}
.opnenmenu_btn a:hover > .opnenmenu_btn_ov{
	left: -50px;
	opacity: 1;
}

.tab_btn{
	position: absolute;
	top: 50px;
	left: 20px;
	overflow-x: auto;
	white-space: nowrap;
	width: 90%;
	height: 40px;
	/*IE(Internet Explorer)・Microsoft Edgeへの対応*/
	-ms-overflow-style: none;
	/*Firefoxへの対応*/
	scrollbar-width: none;
	background-color: #FFFFFF;
}
/*Google Chrome、Safariへの対応*/
.tab_btn::-webkit-scrollbar{
	display: none;
}
@media screen and (min-width: 760px) {
	/* 481px以上に適用されるCSS（タブレット用） */
	.tab_btn{
		text-align: center;
		height: 45px;
		padding-top:4px;
		left: 0;
		width: 100%;
	}
}

.tab_btn a{
	font-family: "KozGoPro-Light", "小塚ゴシック Pro L", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
	display: inline;
	background: #e8e8e8;
	text-decoration: none;
	padding: 3px 5px;
	font-size: 0.9em;
	color: #000000;
	border-radius: 5px;
}

@media screen and (min-width: 760px) {
	/* 481px以上に適用されるCSS（タブレット用） */
	.tab_btn a{
		font-size: 1.3em;
		padding: 3px 8px;
		margin-right: 5px;
	}
}

.tab_btn > .is_active {
	background: #ffce9e;
}
