<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";





/* #### width 359px以下の場合の設定 (for SP Only) #### */
@media (max-width: 359px) {


}

/* #### width 360px～500pxの場合の設定 (for SP Wide Only) #### */
@media (min-width: 360px) and (max-width: 500px) {


}

/* ## width 501px～767pxの場合の設定 (for Tub Only) ## */
@media (min-width: 501px) and (max-width: 767px) {
}

/* #### width 767px 以下の場合の設定 (for All Mobile Dvices) #### */
@media (max-width: 767px) {

.menu-btn {
	position: fixed;
	top: 4px;
	left: 5px;
	width: 42px;
	height:42px;
	font-size: 12px;
	text-align: center;
	cursor: pointer;
	z-index: 10001;
	overflow: hidden;
}
.menu-btn span {
    display: block;
    background: #242424;
	 opacity: 0.94;
    width: 24px;
    height: 2px;
    position: absolute;
    left: 9px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
}
.menu-btn span:first-child {
	width: 18px;
	top: 12px;
}
.menu-btn span:nth-child(2) {
    margin-top: -1px;
    top: 50%;
}
.menu-btn span:last-child {
   bottom: 12px;
}

.open .menu-btn {
	position: fixed;
	top: 4px;
	left: 5px;
	width: 42px;
	height:42px;
	font-size: 12px;
	text-align: center;
	cursor: pointer;
	z-index: 10001;
	overflow: hidden;
}
.open .menu-btn span {
	background: #ffffff;
}
.open .menu-btn span:first-child {
	width: 24px;
	-webkit-transform: translateY(8px) rotate(45deg);
	-moz-transform: translateY(8px) rotate(45deg);
	-ms-transform: translateY(8px) rotate(45deg);
	transform: translateY(8px) rotate(45deg);
}
.open .menu-btn span:nth-child(2) {
	opacity: 0;
}
.open .menu-btn span:last-child {
	-webkit-transform: translateY(-8px) rotate(-45deg);
	-moz-transform: translateY(-8px) rotate(-45deg);
	-ms-transform: translateY(-8px) rotate(-45deg);
	transform: translateY(-8px) rotate(-45deg);
}


/* 開閉用ボタンがクリックされた時のスタイル 
.open .menu-btn span:after {
	content: attr(data-txt-close);
}*/

.menu {
	position: fixed;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	background: rgba(0,0,0,.9);
	-webkit-transition: all .5s;
	transition: all .5s;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow-y: scroll;
	z-index: 9999;
	visibility: hidden;
	opacity: 0;
	padding: 50px 0 24px 0;
}
/*
.menu ul {
	display: table-cell;
	vertical-align: middle;
}

.menu li {
	width: 300px;
	height: 80px;
	line-height: 80px;
	margin: 0 auto;
	text-align: center;
}

.menu li a {
	display: block;
	font-size: 18px;
	color: #fff;
}

.menu li a:hover {
	color: #999;
}*/

/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu {
	cursor: url(../../commons/common/js/images/cross.svg) ,auto;
	-webkit-transition: all .5s;
	transition: all .5s;
	visibility: visible;
	opacity: 1;
}

}


/* #### width 768px 以上の場合の設定 (for PC) #### */
@media (min-width: 768px) {

.menu-btn {
	display: none;
}
.menu {
	visibility: visible;
	opacity: 1;
}

}


/* #### width 1248px 以上の場合の設定 #### */
@media (min-width: 1248px) {


}</pre></body></html>