@charset 'UTF-8';

#header_menu {
	position:relative;
}


#menu_toggle {
	position:absolute;
	top:19px;
	font-size:20px;
	left:10px;
	z-index:9999;
}
#header_wrap {
	position:relative;
	height:60px;}

#menu_wrap {
	display:none;
	position:absolute;
	left:0;
	top:60px;
	width:250px;
	background:#fff;
	border:1px solid #ccc;
	z-index:999;
	/* height:100pc; */
}

#menu_wrap.open {
	display:block;
	left:0;
	transition:all 0.2s linear;
	box-shadow:5px 5px 10px 2px rgba(0,0,0,0.1)
}

.menu_inner {
	width:100%;
	overflow-y:scroll;
}

#header_link {
    border-bottom: 1px solid #ccc;
    height: 23px;
    line-height: 23px;
}

.header_link_list {
    letter-spacing: -.4em;
}

.header_link_list li {
    display: inline-block;
    vertical-align: top;
    letter-spacing: normal;
    margin-left: 1em;
}

.header_link_list li a {
    color: #333;
}
.header_link_list li:first-child {
    margin-left: 0;
}



#header_logo {
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	text-align:center;
}

#header_logo h1,
#header_logo h2 {
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;

	margin:auto;
}

#header_logo h1 img,
#header_logo h2 img {
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;

	margin:auto;
}



#header_search {
	position:absolute;
	right:0;
	top:0;
	bottom:0;
	margin:auto;
}

#header_search .searchform{
	position:absolute;
	top:0;
	bottom:0;
	right:0;
	margin:auto;
	height:26px;
	max-width:270px;
	width:270px;
}

.searchform .left {
	float:left;
	width:100%;
	margin-right:-50px;
	padding-right:50px;
}

.searchform .right {
	float:right;
	width:35px;
}

.searchform input[type="text"],
.searchform input[type="email"],
.searchform input[type="tel"],
.searchform input[type="password"] {
	width:100%;
	padding:4px;
	border-radius:3px;
	border:1px solid #ccc;
	height:26px;
}

.searchform button {
	height:26px;
	padding:4px 5px;
	background:#dfdfdf;
	border:none;
	display:block;
	text-align:center;
	color:#333;
	font-size:12px;
	border-radius:5px;
	cursor:pointer;
}

#searchform_sp_toggle {
	position:absolute;
	right:0;
	top:15px;
	font-size:20px;
	cursor:pointer;
}

#searchform_sp {
	background:#fff;
	position:relative;
	z-index:10;
	padding:15px;
}

#searchform_sp #serchform_wrap,
#searchform_sp #serchform_wrap input[type="text"] {
    position: relative;
    display: block;
    max-width: none;
    width:100%;
    max-height:none;
}

#searchform_sp #serchform_wrap input[type="text"] {
	padding:6px;
	box-sizing:border-box;
}
#searchform_sp #serchform_wrap button {

}

.menu_list {
	padding:0;
	list-style:none;
}

.menu_list > li {
	border-bottom:1px solid #ccc;
}

.menu_list > li:last-child {
	border-bottom:none;
}

.menu_list > li a {
	position:relative;
	display:block;
	padding:10px;
	color:#333;
}

.menu_list > li a:after {
	content:'';
	position:absolute;
	right:12px;
	top:0;
	bottom:0;
	margin:auto;
	width: 7px;
	height: 7px;
	border-top: 1px solid #717071;
	border-right: 1px solid #717071;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.menu_list > li a.open:after {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

.menu_list > li.logo {
	padding:10px;
}

#menu_area {
	background:#EDEDED;
}

#menu_area li a{
	padding:10px 10px 0;
	display:block;
	color:#333;
	font-size:13px;
}

#menu_area li:last-child a{
	padding:10px 10px 10px;
}

#serchform_wrap,
#serchform_wrap input[type="text"],
#serchform_wrap button {
	position:absolute;
	display:block;
	max-width:250px;
	max-height:1.8em;
	top:0;
	bottom:0;
	right:0;
	margin:auto;
}


#serchform_wrap input[type="text"] {
	display:block;
	padding:8px 5px;
	border:1px solid #ccc;
	border-radius:5px;
}
#serchform_wrap button {
	background:none;
	border:none;
	color:#C7C7C7;
	right:5px;
	max-width:1em;
	height:1.5em;
	line-height: 1.5em;
	width:100%;
	height:100%;
}




/*loading*/
#loader-bg {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: rgba(255,255,255,0.5);
	z-index: 99998;
}
#loader {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 200px;
	height: 200px;
	margin-top: -100px;
	margin-left: -100px;
	text-align: center;
	color: #717071;
	z-index: 999999;
}

#load_sppinner {
    -webkit-animation: spin 1.5s linear infinite;
    -moz-animation: spin 1.5s linear infinite;
    -ms-animation: spin 1.5s linear infinite;
    -o-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
	0% {-webkit-transform: rotate(0deg);}
	100% {-webkit-transform: rotate(360deg);}
}
@-moz-keyframes spin {
	0% {-moz-transform: rotate(0deg);}
	100% {-moz-transform: rotate(360deg);}
}
@-ms-keyframes spin {
	0% {-ms-transform: rotate(0deg);}
	100% {-ms-transform: rotate(360deg);}
}
@-o-keyframes spin {
	0% {-o-transform: rotate(0deg);}
	100% {-o-transform: rotate(360deg);}
}
@keyframes spin {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}


#pankuzu {
	border-bottom:1px solid #ddd;
	background:#fff;
}

body {
	background:#F5EFE9;
}



#header {
	position:fixed;
	top:0;
	width:100%;
	z-index:9998;
	background:#fff;
	border-bottom:1px solid #f1f1f1;
}

#content {
	padding-top:83px;
}


@media screen and (max-width:1050px){
#header .container {
	width:100%;
	max-width:none;
}

}

@media screen and (max-width:768px){
#header_logo h1 img,
#header_logo h2 img {
	width:120px;
}



#header_wrap {
    position: relative;
    height: 40px;
}

#searchform_sp_toggle {
	right:10px;
    top: 10px;
}

#menu_toggle {
    top: 10px;
}
#menu_wrap {
    top: 40px;
}
#menu_inner {
	overflow-y:scroll;
	-webkit-overflow-scrolling:touch;
}
#content {
	padding-top:40px;
}

.menu_inner {
	overflow-y:scroll;
	-webkit-overflow-scrolling:touch;
}
}


/*placeholder*/


input:placeholder-shown {
	color: #000;
}


input::-webkit-input-placeholder {
	color: #000;
}


input:-moz-placeholder {
	color: #000;
}


input::-moz-placeholder {
	color: #000;
}


input:-ms-input-placeholder {
	color: #000;
}