<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
.container {
	overflow: hidden;
	padding: 98px 0 0;
	position: relative;
}
.main {
	position: relative;
}
/* 画面外にいる状態 */
.fadein {
	opacity : 0;
	transform : translate(0, 50px);
	transition : all 500ms;
	}
/* 画面内に入った状態 */
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
	}
section {
	padding: 100px 0;
	position: relative;
	text-align: center;
}

/*-----------------------------------------
	slider
-----------------------------------------*/
.slick-dotted.slick-slider {
	margin: 0 !important;
}
/* 矢印 */
.slick-prev:before,
.slick-next:before {
	font-size: 80px !important;
	font-family: FontAwesome !important;
	content: "\f104" !important;
}
.slick-next:before { content: "\f105" !important; }
.slick-prev {
	left: 20px !important;
	z-index: 3;
}
.slick-next {
	right: 20px !important;
	z-index: 3;
}
/*スライド数のドットの色を変える*/
.slick-dots li.slick-active button:before,
.slick-dots li button:before {
	color: #fff;
}
.slick-dots {
	bottom: 38px !important;
	z-index: 10;
}
button{
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
/*-----------------------------------------
	news
-----------------------------------------*/
.news {
	color: #FFF;
	width: 100%;
	max-width: 1200px;
	height: 50px;
	background: #333;
	display: flex;
	line-height: 50px;
	position: absolute;
	bottom: -25px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 1;
}
.news h2 {
	font-weight: bold;
	width: 200px;
	text-align: center;
	background: #222;
}
.news ul {
	padding: 0 0 0 30px;
}
.news ul li {
	font-size: 0.9375rem;
}
.news ul li .date {
	font-weight: normal;
	padding: 0 20px 0 0;
	opacity: .5;
}
@media screen and (max-width: 720px) {
/* 矢印 */
.slick-prev:before,
.slick-next:before {
	font-size: 40px !important;
}
	.slick-dots {
	bottom: 10px !important;
	z-index: 2;
}
	.news {
	position: static;
	transform: none;
}
	.main .news h2 {
		width: 18%;
		font-size: 0.85rem;
	}
	.main .news ul {
		font-size: 0.625rem;
		padding: 0 0 0 15px;
	}
	.main .news ul li .date {
		display: none;
	}
}
/*-----------------------------------------
	concept
-----------------------------------------*/
.concept {
	background: url(../img/common/bg_concept.png) no-repeat top left;
	background-color: #F4F5F8;
	padding: 60px 0;
	text-align: left;
}
.concept .inner {
	width: auto;
	max-width: 1080px;
}
.concept .img {
	width: 151px;
}
.concept .txt {
	width: calc(100% - 200px);
}
.concept .txt h2 {
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0 0 20px;
}


/*-----------------------------------------
	product
-----------------------------------------*/
.product {
	background: linear-gradient(90deg, #FFF 0%, #FFF 50%, #202e34 50%, #202e34 100%);
	padding: 0;
	position: relative;
}
.product .sec-ttl-box {
	text-align: left;
}
.product-list {
	color: #FFF;
	width: 65%;
	background: #202e34;
	box-sizing: border-box;
	padding: 0 0 0 4.1%;
	position: relative;
}
.product-list ul {
	margin: -40px 0 20px;
}
.product-list ul li {
	width: 30%;
}
.product-list::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 45px 237px 45px;
	border-color: transparent transparent #202e34 transparent;
	position: absolute;
	top: 0;
	left: -45px;
}
.product-list ul li figure {
	margin: 0 0 10px;
}

/*-----------------------------------------
	service
-----------------------------------------*/
.service {
	background: url(../img/common/service-bg.jpg) no-repeat;
	background-color: #F4F5F8;
	background-size: 100% 474px;
}
.service .sec-ttl-box {
	text-align: right;
}
.service-list {
	width: auto;
	max-width: 1200px;
	margin: 0 auto;
}
.service-list li {
	width: 48%;
	background: #FFF;
	-moz-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
	-ms-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
	margin: 0 0 30px;
	position: relative;
}
.service-list li::after {
	content: "\f105";
	color: #FFF;
	font-family: FontAwesome;
	font-size: 2rem;
	width: 68px;
	height: 68px;
	line-height: 68px;
	text-align: center;
	background: #333;
	position: absolute;
	right: 0;
	bottom: 0;
}
.service-list dl {
	width: 90%;
	position: relative;
	margin: 0 auto;
	padding: 20px 0;
}
.service-list dt {
	color: #FFF;
	font-size: 0.875rem;
	background: #c00;
	display: inline-block;
	transform: skew(-20deg);
	padding: 3px 10px;
	position: absolute;
	top: -15px;
	left: 0;
}
.service-list dd {
	font-size: 1.25rem;
	font-weight: bold;
	text-align: left;
}
.service-list li img {
	vertical-align: bottom;
}
.service-list p {
	background: #FFF;
	padding: 15px 20px;
}


/*-----------------------------------------
	recruit
-----------------------------------------*/
.recruit {
	background: #FFF;
	padding: 100px 0 150px;
}
.recruit .recruit-section:before {
	content: '';
	position: absolute;
	top: 150px;
	left: 0;
	width: calc(100% - 160px);
	height: 500px;
	z-index: 0;
	background: #f0d54b;
}
.recruit-bg-in:before {
	-webkit-transform: scaleX(1) !important;
	transform: scaleX(1) !important;
}
.recruit-bg-out:before{
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transition: -webkit-transform .6s ease-in-out 0s;
	transition: -webkit-transform .6s ease-in-out 0s;
	transition: transform .6s ease-in-out 0s;
	transition: transform .6s ease-in-out 0s,
	-webkit-transform .6s ease-in-out 0s;
}
.recruit .recruit-block {
	height: 500px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	position: relative;
	z-index: 0;
}
.recruit .img-block {
	width: calc(100% - 500px);
	background: url(../img/common/recruit-img.png) no-repeat 100% 50%;
	background-size: contain;
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 2;
	text-align: right;
	padding: 0.5% 0 0;
	z-index: 1;
}
.recruit .img-block img {
	display: none;
}
.recruit .text-block {
	width: 500px;
	box-sizing: border-box;
	text-align: left;
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 1;
	padding: 150px 150px 0 80px;
	z-index: 2;
}
@media screen and (max-width: 1280px) {
	.recruit .recruit-section:before {
		width: calc(100% - 80px);
		height: 560px;
	}
	.recruit .img-block {
		width: calc(100% - 400px);
		height: 560px;
	}
	.recruit .text-block {
		width: 400px;
		padding: 160px 80px 0 80px;
	}
}
@media screen and (max-width: 1024px) {
	.recruit {
		margin: 0;
		padding: 0 0 40px;
	}
	.recruit .recruit-section:before {
		content: none;
	}
	.recruit .recruit-block {
		height: auto !important;
	}
	.recruit .img-block {
		width: 100%;
		height: auto !important;
		background: none !important;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	.recruit .img-block img {
		display: block !important;
	}
	.recruit .text-block {
	width: calc(100% - 40px) !important;
	background: #f0d54b;
	text-align: center !important;
	margin: -40px auto 0 !important;
	padding: 40px 20px !important;
	}
}


/*-----------------------------------------
	company
-----------------------------------------*/
.company {
	color: #FFF;
	background: url(../img/common/company-bg.jpg) no-repeat;
	background-size: cover;
	text-align: center;
}
.company .txt {
	width: 37%;
	align-items: flex-start !important;
}
.company .txt h3 {
	font-size: 135%;
	margin: 0 0 20px;
}
.company .txt h3 span {
	font-size: 75%;
	display: block;
}
.company .txt p {
	text-align: left;
}

.company .txt ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 30px 0 0;
}
.company .txt li {
	width: 48%;
	border: solid 2px #FFF;
	box-sizing: border-box;
	margin: 0 0 10px;
	padding: 10px 0;
	position: relative;
}
.company .txt li::after {
	font-family: FontAwesome;
	content: "\f105";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 10px;
}
.company .txt li:hover {
	background: #FFF;
	color: #000;
}
.company .img {
	width: 58%;
}
.company .gallery {
	margin: 20px 0 0;
}
.company .gallery li {
	width: 33%;
}
@media screen and (max-width: 1024px) {
.company .img {
	width: 100%;
	box-sizing: border-box;
	padding: 0 20px;
}
.company .txt {
	width: 100%;
	box-sizing: border-box;
	padding: 0 20px;
}
.company .txt h3 {
	margin: 30px 0 20px;
}
}

/*-----------------------------------------
	movie
-----------------------------------------*/
.movie {
	text-align: center;
}
.block-video {
	max-width: 854px;
	margin: 20px auto 0;
}
.video {
	width: 100%;
	padding: 56.25% 0 0;
	position: relative;
}
.video iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}
@media only screen and (max-width: 720px) {
	.block-video {
		width: 100%;
		box-sizing: border-box;
		padding: 0 20px;
	}
}

@media only screen and (max-width: 720px) {
/*　画面サイズが600pxから960pxまではここを読み込む　*/
	.block-flex {
		display: block;
	}
/*-----------------------------------------
	concept
-----------------------------------------*/
.concept {
	padding: 30px 0 60px;
}
.concept .img {
	margin: 30px auto 40px;
}
.concept .txt {
	width: calc(100% - 20px);
	margin-right: auto;
	margin-left: auto;
}
.concept .txt h2 {
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0 0 20px;
}

/*-----------------------------------------
	product
-----------------------------------------*/
.product {
	background: #FFF;
	padding: 40px 0 0;
}
.product .sec-ttl-box {
	text-align: center;
}
.product-list {
	width: 100%;
	padding: 40px 0;
}
	.product-list li {
		width: 50% !important;
		margin: 0 auto 30px;
}
.product-list ul {
	margin: 0;
}
.product-list::after {
	content: none;
}

/*-----------------------------------------
	service
-----------------------------------------*/
.service {
	background-size: auto 300px;
}
.service .sec-ttl-box {
	text-align: center;
}
.service-list li {
	width: 100%;
}
.service-list li:last-child {
	margin: 0;
}
/*-----------------------------------------
	company
-----------------------------------------*/
.company .txt {
		width: calc(100% - 20px);
		text-align: left;
		margin: 10px auto 30px;
}
.company .txt li {
	text-align: center;
}
.company .gallery {
	display: none;
}


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