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

* {
	margin: 0;
	padding: 0;
}

body {
	min-width:100%;
	background: #FFF;
	color: #1F1813;
	font-family:YuGothic,'Yu Gothic',sans-serif;
	line-height: 22px;
}

a {
	color: #000;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	line-height: 1;
}

ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* clearfix */
.clearfix:before, .clearfix:after {
	content: "";
	display: table;
}

.clearfix:after {
	clear: both;
}


@media screen and (max-width: 767px) {
	html, body {
		width: 100%;
		min-width: 100%;
		overflow-x: hidden;
	}

	a {
		-webkit-tap-highlight-color: rgba(0, 0, 0, .3);
	}

	img {
		max-width: 100%;
		height: auto;
	}
}


/* header */
.header {
	position: fixed;
	width: 100%;
	height: auto;
	top: 0;
	left: 0;
	padding: 15px 0 15px 0 !important;
	z-index: 10000;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	background:#fff;
	filter:alpha(opacity=80);
    -moz-opacity: 0.8;
    opacity: 0.8;
}

@media screen and (max-width: 767px) {
.header {
	position: fixed;
	width: 100%;
	height: auto;
	top: 0;
	left: 0;
	padding: 15px 0 5px 0 !important;
	z-index: 10000;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	background:#fff;
	filter:alpha(opacity=80);
    -moz-opacity: 0.8;
    opacity: 0.8;
}
}


.header:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 0;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, .9);
	z-index: 100;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.header.header--stuck:before {
	height: 60px;
}

.header_inner {
	position: relative;
	width: 100%;
	max-width: 1250px;
	margin: 0 auto;
	z-index: 200;
	padding:0 10px;
	box-sizing: border-box;
	background:#fff;
}

.header_logo {
	display: block;
	position: relative;
	float: left;
	width:150px;
	-webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

@media screen and (max-width: 420px) {
.header_logo {

	width:100px;

}

}


.header_logo &gt; img {
	display: block;
	opacity: 1;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.header_logo:hover {
	opacity: 0.75;
}

.header_logo:after {
	content: url(../img/header_logo_color.png);
	display: block;
	position: absolute;
	top: -8px;
	left: 0;
	opacity: 0;
}

.header.header--stuck .header_logo:after {
	opacity: 1;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.header.header--stuck .header_logo &gt; img {
	width: 166px;
	height: 38px;
	opacity: 0;
}

.headerNav {
	float: right;
	margin: 10px 0 0;
	color: #FFF;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.header.header--stuck .headerNav {
	margin: 0;
	color: #333;
}

.headerNav_ul {
	font-size: 14px;
	line-height: 1.2;
	text-align: right;
}

.headerNav_ul &gt; li {
	display: inline-block;
	vertical-align: middle;
}

.headerNav_ul &gt; li + li {
	margin-left: 32px;
}

.headerNav_ul &gt; li &gt; a {
	-webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.headerNav_ul &gt; li &gt; a:hover {
	opacity: 0.75;
}

@media screen and (max-width: 767px) {
	.header {
		position: absolute;
		width: 100%;
		height: auto;
		top: 0;
		left: 0;
		padding: 15px 15px 0;
		box-sizing: border-box;
	}

	.header:before {
		content: none;
	}

	.header.header--stuck:before {
		height: 0;
	}

	.header_inner {
		position: static;
		width: 100%;
		max-width: 100%;
		margin: 0;
	}

	.header_logo {
		display: block;
		position: relative;
		width: 150px;
		float: left;
	}

	.header_logo &gt; img {
		display: block;
		opacity: 1;
	}

	.header_logo:after {
		content: none;
	}

	.header.header--stuck .header_logo:after {
		opacity: 0;
	}

	.header.header--stuck .header_logo &gt; img {
		width: auto;
		height: auto;
		opacity: 1;
	}
/*
	.headerNav {
		display: none;
		float: none;
	}
*/
}


.footer {
	padding: 30px 0;
	background: #F3F3F3;
	text-align: center;
}


@media screen and (max-width: 767px) {
	.footer {
		display: block;
		padding: 30px 15px 40px;
		background: #F3F3F3;
	}

}




.pageHeader {
	height: 180px;
	padding: 254px 0 0;
	color: #FFF;
	text-align: center;
}

.pageHeader-recruit {
	background: url(../img/recruit/header_bg.jpg) 50% 0 no-repeat fixed;
	background-size: 100% auto;
}

.pageHeader-contact {
	background: url(../img/contact/header_bg.jpg) 50% 0 no-repeat fixed;
	background-size: 100% auto;
}

.pageHeader_en {
	padding: 0 0 0 3px;
	font-size: 36px;
	line-height: 1.2;
	letter-spacing: 3px;
}

.pageHeader_ja {
	margin: 5px 0 0;
	padding: 0 0 0 3px;
	font-size: 15px;
	font-weight: bold;
	line-height: 1.6;
	letter-spacing: 3px;
}

@media screen and (max-width: 767px) {
	.lower {
		opacity: 1;
	}
	.lower.fadeInUp {
		-webkit-animation-name: none;
		animation-name: none;
	}
	
	.pageHeader {
		height: auto;
		padding: 55px 0 25px;
	}

	.pageHeader-recruit {
		background: url(../img/recruit/header_bg.jpg) no-repeat center center;
		background-size: cover;
	}

	.pageHeader-contact {
		background: url(../img/contact/header_bg.jpg) no-repeat center center;
		background-size: cover;
	}

	.pageHeader_en {
		padding: 0 0 0 2px;
		font-size: 28px;
		letter-spacing: 2px;
	}

	.pageHeader_ja {
		margin: 5px 0 0;
		padding: 0 0 0 2px;
		font-size: 13px;
		letter-spacing: 2px;
	}
}</pre></body></html>