﻿@charset "utf-8";

/* reset
----------------------------------------- */


/* 初期設定
----------------------------------------- */

html {
	font-size: 6.25%;
}

body {
	font-size: 14rem;
	color: #333;
	background-color: #fff;
	line-height: 1.3;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

ol,ul,li {
	list-style: none;
}

img {
	vertical-align: top;
/*	max-width: 100%;*/
}

/* Link */
a {
    -webkit-tap-highlight-color:transparent;
}

a:link {
	color:#333;
	text-decoration:none;
}
a:visited {
	color:#333;
	text-decoration:none;
}
a:hover {
	color:#333;
	text-decoration:none;
}
a:active {
	color:#666;
	text-decoration:none;
}
a:hover img {
	opacity: 0.8;
	transition: opacity 0.2s;
}

/* Clearfix */
.clearfix:after {
	content: '';
	display: block;
	clear: both;
}

/* スマートフォンで見たときは"sp"のclassを表示 */
.pc { display: none !important; }
.sp { display: block !important; }

/* パソコンで見たときは"pc"のclassを表示 */
@media screen and (min-width: 481px) {
	.pc { display: block !important; }
	.sp { display: none !important; }
}/* MQ */


/* 共通
----------------------------------------- */

.f_noScript {
	border: 2px solid #e60000;
	padding: 10px;
	text-align: center;
}

.container {
	width: 100%;
	overflow: hidden;
}

@media screen and (min-width: 481px) {
.inner {
	max-width: 960px;
	margin: 0 auto;
	position: relative;
}
}/* MQ */

main { width: 100%; }

/* h2 */
h2 {
	position: relative;
	text-align: center;
/*	display: table;*/
	white-space: nowrap;
	font-size: 24rem;
	margin: 0 10px 20px;
/*	padding: 0 10px 20px;*/
}
/*h2:after, h2:before {
	content: '';
	display: table-cell;
	width: 50%;
	background: -webkit-linear-gradient(transparent 50%, currentColor 50%, currentColor -webkit-calc(50% + 1px), transparent -webkit-calc(50% + 1px));
	background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, currentColor), color-stop(currentColor calc(50% + 1px)), to(transparent calc(50% + 1px)));
	background: linear-gradient(transparent 50%, currentColor 50%, currentColor calc(50% + 1px), transparent calc(50% + 1px));
	-webkit-background-clip: padding;
	background-clip: padding;
}
h2:after {
	border-left: 0.5em solid transparent;
}*/
h2:before {
	border-top: 1px solid;
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
/*	border-right: 0.5em solid transparent;*/
}
h2 span {
	background-color: #fff;
	display: inline-block;
	padding: 0 10px; /*ラインとテキストの間を調整*/
	position: relative; /*水平ラインが突き抜けないように*/
}


/* パララックスエフェクト */

.stellar {
	background-attachment: fixed;
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: auto;
	height: 450px;
	position: relative;
}
.parallax_bg01 {
	background-image: url(../img/parallax_bg01.jpg);
}
.parallax_bg02 {
	background-image: url(../img/parallax_bg02.jpg);
}
.parallax_bg03 {
	background-image: url(../img/parallax_bg03.jpg);
}
.parallax_bg04 {
	background-image: url(../img/parallax_bg04.jpg);
}

@media screen and (max-width: 959px) {
.stellar {
	background-attachment: scroll;
	background-position: 0 0 !important;
	background-repeat: no-repeat;
	background-size: cover;
	height: 450px;
	position: relative;
}
}/* MQ */

@media screen and (max-width: 480px) {
.stellar {
	height: 250px;
}
}/* MQ */


/* ヘッダー
----------------------------------------- */
header {
	position: fixed;
	width: 100%;
	background-color: rgba(51, 51, 51, .7);
/*	background-color: rgba(238, 238, 238, .7);*/
	z-index: 100;
	top: 0;
	font-size: 16rem;
}
header nav {
	margin: 0 auto;
}
header nav ul {
	margin: 20px 10px;
	text-align: center;
}
header nav ul li {
	display: inline-block;
	margin: 0 10px;
}

@media screen and (min-width: 481px){
header {
	position: fixed;
	width: 100%;
	background-color: rgba(51, 51, 51, .7);
/*	background-color: rgba(238, 238, 238, .7);*/
	z-index: 100;
	top: 0;
	font-size: 16rem;
}
header nav {
	max-width: 960px;
	margin: 0 auto;
}
header nav ul#gnav {
	margin: 20px 10px;
	text-align: right;
}
header nav ul#gnav li {
	display: inline-block;
	width: auto;
	margin: 0 10px;
}
}/* MQ */

nav ul#gnav li a {
	position: relative;
	display: inline-block;
	color:#fff;
}

@media screen and (max-width: 959px){
nav ul#gnav li a:hover {
	border-bottom: 2px solid #c00;
}
}/* MQ */

@media screen and (min-width: 960px){
nav ul#gnav li a::after {
	position: absolute;
	bottom: -2px;
	left: 0;
	content: '';
	width: 0;
	height: 2px;
	background-color: #c00;
	transition: .2s;
}
nav ul#gnav li a:hover::after {
	width: 100%;
}
}/* MQ */

.current {
	border-bottom: 2px solid #c00 !important;
}


/* ファーストビュー
----------------------------------------- */
.kv {
	overflow: hidden;
	position: relative;
}
.kv .kvin {
	position: relative;
	top: 50%;
/*	transform: translateY(-50%);
	-webkit- transform: translateY(-50%);*/
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
	text-align: center;
}

.kv .kvin .catch {
	text-align: center;
	font-size: 24rem;
	margin: 20px 10px;
}

.kv .kvin h1 img {
	width: 90%;
}

@media screen and (min-width: 481px){
.firstView .inner .catch {
	position: absolute;
	top: 0;
	left: 0;
	margin: 20px 10px;
	font-size: 16rem;
	color:#fff;
	z-index: 101;
}
}/* MQ */

.firstView .inner .scrollBt {
	font-size: 16rem;
	text-align: center;
}
.firstView .inner .scrollBt a:hover {
	opacity: .5;
}
.firstView .inner .scrollBt a {
	position: absolute;
	bottom: 10px;
	left: 50%;
	width: 50%;
	margin-left: -25%;
/*	z-index: 101;*/
	display: inline-block;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	color: #333;
	letter-spacing: .1em;
	text-decoration: none;
	transition: opacity .3s;
/*  padding-top: 70px;*/
}
.firstView .inner .scrollBt a span {
	position: absolute;
	bottom: 50px;
	left: 50%;
	width: 16px;
	height: 16px;
	margin-left: -8px;
	border-left: 1px solid #333;
	border-bottom: 1px solid #333;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-animation: scroll_bt01 1.5s infinite;
	animation: scroll_bt01 1.5s infinite;
 	box-sizing: border-box;
}
@-webkit-keyframes scroll_bt01 {
	0% {
		-webkit-transform: rotate(-45deg) translate(0, 0);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		-webkit-transform: rotate(-45deg) translate(-15px, 15px);
		opacity: 0;
	}
}
@keyframes scroll_bt01 {
	0% {
		transform: rotate(-45deg) translate(0, 0);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: rotate(-45deg) translate(-15px, 15px);
		opacity: 0;
	}
}


/* お問合せ
----------------------------------------- */
#contact {
	background: #900;
/*	background: linear-gradient(-135deg, #cc0000, #660000) fixed;*/
/*	height: 800px;*/
	padding: 20px 0 20px; /* 20201127 100px→20px */
	text-align: center;
}

#contact h2 {
	color: #fff;
}
#contact h2 span {
	background-color: #900;
}
#contact h3 {
	font-size: 50rem;
	color: #fff;
	text-align: center;
	margin: 40px 0 30px;
}
#contact p {
	color: #fff;
	font-size: 16rem;
	margin-bottom: 5px;
}
#contact p a {
	color: #fff;
}
#contact p.name {
	font-size: 30rem;
	font-weight: bold;
	margin-bottom: 30px;
}
#contact p.tel {
	font-size: 30rem;
	font-weight: bold;
}
#contact .fa {
	margin-right: 10px;
}

@media screen and (min-width: 481px) {

#contact h3 {
	font-size: 80rem;
	color: #fff;
	text-align: center;
	margin: 60px 0 50px;
}
#contact p {
	color: #fff;
	font-size: 18rem;
	margin-bottom: 5px;
}
#contact p.name {
	font-size: 40rem;
	font-weight: bold;
	margin-bottom: 30px;
}
#contact p.tel {
	font-size: 40rem;
	font-weight: bold;
}
#contact .fa {
	margin-right: 10px;
}

}/* MQ */



/* 実績
----------------------------------------- */
#works {
/*	background: url(../img/demo/back.jpg) no-repeat fixed;
	background-size: cover;
	background-position: center;*/
/*	height: 100vh;*/
	padding: 100px 0 50px;
	text-align: center;
/*	overflow: hidden;*/
}
@media screen and (min-width: 481px) {
#works {
	padding: 100px 0 150px;
}
}/* MQ */

.item {
	display: inline-block;
	width: 100%;
	height: 100%;

	background-color: #666;
    color: white;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}



/* 会社概要
----------------------------------------- */
#company {
	background: #444;
	padding: 100px 0 50px;
	color: #fff;
}
#company h2 span {
	background-color: #444;
}

#company h3 {
	font-size: 18rem;
	color: #fff;
	text-align: center;
	margin: 30px 0 20px;
}
#company .fa {
	margin-right: 10px;
}

#company .colL , #company .colR {
	width: 100%;
	padding: 0 10px;
}

#company .colL dl dt {
	border-top: 1px dashed #ccc;
	padding: 10px 0 5px;
}
#company .colL dl dd {
	padding: 0 0 10px;
}
#company .colL dl dd:last-child {
	border-bottom: 1px dashed #ccc;
}
#company .colL dl dd a {
	border: 1px solid #fff;
	border-radius: 5px;
	padding: 5px 10px;
	font-size: 12rem;
	color: #fff;
	margin-left: 10px;
}
#company .colL dl dd a:hover {
	background-color: rgba(153, 153, 153, .7);
	transition: 0.2s;
}

#company .colR .area {
	clear: both;
	line-height: 1.5;
	border-top: 1px dashed #ccc;
	padding: 20px 0;
}
#company .colR .area:last-child {
	border-bottom: 1px dashed #ccc;
}
#company .colR ul.tel_fax li {
	width: 190px;
	float: left;
}
#company .colR ul.tel_fax li a {
	color: #fff;
}
#company .colR ul.info {
	clear: both;
	margin-top: 10px;
}
#company .colR ul.info li a {
	width: 30%;
	float: left;
	border: 1px solid #fff;
	border-radius: 5px;
	padding: 5px 10px 5px 0;
	font-size: 12rem;
	color: #fff;
	margin-right: 18px;
	text-align: center;
}
#company .colR ul.info li:last-child a {
	margin-right: 0;
}
#company .colR ul.info li a:hover {
	background-color: rgba(153, 153, 153, .7);
	transition: 0.2s;
}

@media screen and (min-width: 981px) {
#company .colL , #company .colR {
	width: 478px;
	display: inline-block;
	vertical-align: top;
}
}/* MQ */

@media screen and (min-width: 481px) {

#company .colL dl dt {
	border: none;
	padding: 20px 0;
	width: 80px;
	float: left;
	clear: both;
}
#company .colL dl dd {
	border-top: 1px dashed #ccc;
	padding: 20px 0 20px 110px;
}
#company .colL dl dd:last-child {
	border-bottom: 1px dashed #ccc;
}

#company .colR ul.info li a {
	width: 140px;
}

}/* MQ */



/* 求人情報
----------------------------------------- */
#recruit {
	padding: 100px 0 50px;
	min-height: 700px;
}

#recruit h3 {
	border-left: 5px solid #c00;
	margin: 0 10px;
	padding: 0 10px;
	font-size: 18rem;
}

#recruit .copy {
	padding: 10px 2em 40px;
}



/* フッター
----------------------------------------- */
footer {
	background-color: #eee;
	width: 100%;
	padding: 50px 0;
	text-align: center;
}
footer ul.footNav li {
	display: inline-block;
	vertical-align: middle;
	width: 45%;
}
footer ul.footNav li a {
	display: block;
	margin: 0 10px 20px;
	padding: 10px 10px 10px 0;
	border: 1px solid #333;
	border-radius: 5px;
	text-align: center;
}
footer ul.footNav li:last-child a {
	padding: 10px;
}
footer ul.footNav li a:hover {
	background-color: rgba(153, 153, 153, .7);
	transition: 0.2s;
}
footer .fa {
	margin-right: 10px;
}

footer .footName {
	font-size: 16rem;
	margin: 40px 0 0;
}
footer .copyright {
	font-size: 12rem;
	margin: 5px 0 0;
}

@media screen and (min-width: 481px){
footer ul.footNav li {
	width: auto;
}
footer ul.footNav li a {
	width: 150px;
}
footer ul.footNav li:last-child a {
	margin-right: 0;
	padding: 10px;
}
}/* MQ */


/* Page top リンク */

#arrowT span {
	margin:5px 0 0 20px;
	float:left;
	width:0;
	height:0;
    border-color:transparent transparent #fff transparent;
    border-style:solid;
    border-width:10px;
}
#arrowT span:before{
	content:'';
	float:left;
	position:relative;
	top:-7px;
	left:-10px;
	width:0;
	height:0;
    border-color:transparent transparent #333 transparent;
    border-style:solid;
    border-width:10px;
}
.pagetop {
	position:fixed;
	bottom:-40px;
	right:5px;
}
.pagetop a {
	display:block;
	width:60px;
	height:40px;
	background-color:#333;
	text-align:center;
	color:#fff;
	font-size:14px;
	text-decoration:none;
	line-height:40px;
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}
.pagetop a:hover {
	filter:alpha(opacity=40);
	-moz-opacity: 0.4;
	opacity: 0.4;
}

