@charset "utf-8";

/* fadein
---------------------------------------------------- */
.fadein {
	opacity : 0;
	transform : translate(0, 50px);
	transition : all 500ms;
}
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}
.fadein.delay1 {
	transition-delay: 0.5s;
}
.fadein.delay2 {
	transition-delay: 0.8s;
}


/* index_mv
---------------------------------------------------- */
.index_mv {
	margin-top: 80px;
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}
.index_mv::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url(../images/index/mv_bg.png);
	background-position: left center;
	background-size: contain;
	background-repeat: no-repeat;
	transform: translateX(-100px);
	opacity: 0;
	animation: mvBgSlide 1s ease forwards;
}
@keyframes mvBgSlide {
	to {
		transform: translateX(0);
		opacity: 1;
	}
}
.index_mv h1 {
	text-align: center;
	font-family: 'KozGo-B';
	font-size: 100px;
	line-height: 1.3;
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}
.index_mv p {
	text-align: center;
	font-family: 'KozGo-B';
	font-size: 20px;
	color: #FFF;
	padding: 15px 0;
	background-color: #ef8200;
	position: relative;
	z-index: 1;
}


/* index_services
---------------------------------------------------- */
.index_services {
	padding: 100px 0;
	background-image: url(../images/index/services_bg.png);
	background-position: center center;
	background-size: cover;
}
.index_services .ttl_h2 {
	color: #FFF;
}
.index_services .services_bn {
	display: table;
	margin: 0 auto;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}


/* index_aboutus
---------------------------------------------------- */
.index_aboutus {
	padding: 100px 0;
}
.index_aboutus ul {
	display: grid;
	gap: 40px;
	grid-template-columns: 1fr 1fr 1fr;
}
.index_aboutus ul li {
	height: 0;
	padding-bottom: 75%;
	position: relative;
	overflow: hidden;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
.index_aboutus ul li a {
	color: #333333;
}
.index_aboutus ul li .inner {
	background-color: rgba(255,255,255,0.9);
	width: 90%;
	max-width: 260px;
	z-index: 1;
	position: absolute;
	padding: 20px 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.index_aboutus ul li .inner h3 {
	text-align: center;
	font-size: 40px;
	font-family: 'KozGo-M';
}
.index_aboutus ul li .inner p {
	text-align: center;
	font-family: 'KozGo-M';
}
.index_aboutus ul li .inner p span {
	padding-right: 80px;
	background-image: url(../images/common/arr.png);
	background-position: right 10px center;
	background-repeat: no-repeat;
	transition-duration: 0.5s;
}
.index_aboutus ul li a:hover .inner p span {
	background-position: right 0 center;
}
.index_aboutus ul li img {
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition-duration: 0.5s;
}
.index_aboutus ul li a:hover img {
	transform: scale(1.15,1.15);
}


/* index_recruiting
---------------------------------------------------- */
.index_recruiting {
	padding: 60px 0 100px;
	background-image: url(../images/index/recruiting_bg.png);
	background-position: center top;
	background-size: cover;
}
.index_recruiting a {
	background-color: rgba(255,255,255,0.9);
	width: 90%;
	max-width: 360px;
	z-index: 1;
	padding: 50px 0 20px;
	color: #333333;
	display: table;
	margin: 0 auto;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
.index_recruiting a h3 {
	text-align: center;
	font-size: 40px;
	font-family: 'KozGo-M';
}
.index_recruiting a p {
	text-align: center;
	font-family: 'KozGo-M';
}
.index_recruiting a p span {
	padding-right: 80px;
	background-image: url(../images/common/arr.png);
	background-position: right 10px center;
	background-repeat: no-repeat;
	transition-duration: 0.5s;
}
.index_recruiting a:hover p span {
	background-position: right 0 center;
}


/* btn
---------------------------------------------------- */
a.btn {
	display: block;
	background-color: #FFF;
	margin: 50px auto 0;
	padding: 12px 25px;
	font-size: 18px;
	width: 250px;
	border-radius: 20px;
	text-align: left;
	color: #333333;
	box-sizing: border-box;
	font-family: 'KozGo-B';
	background-image: url(../images/common/arr.png);
	background-position: right 20px center;
	background-repeat: no-repeat;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
a.btn:hover {
	background-position: right 10px center;
}


/* mv
---------------------------------------------------- */
.mv {
	margin-top: 80px;
	position: relative;
	overflow: hidden;
	height: 300px;
}
.mv::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background: linear-gradient(
		to right,
		rgba(0,0,0,0.8) 0%,
		rgba(0,0,0,0.4) 60%,
		rgba(0,0,0,0) 100%
	);
	z-index: 1;
	pointer-events: none;
}
.mv h1 {
	font-family: 'KozGo-B';
	font-size: 90px;
	z-index: 1;
	color: #FFF;
	position: absolute;
	line-height: 1.1;
	top: 50%;
	transform: translate(0,-50%)!important;
}
.mv img {
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	width: 100%;
	height: 100%;
}


/* breadcrumb
---------------------------------------------------- */
.breadcrumb {
	padding: 10px 0;
}
.breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
}
.breadcrumb ol li:not(:last-of-type)::after {
	content: ">";
	margin: 0 .6em;
}


/* blc
---------------------------------------------------- */
.blc h2 {
	font-family: 'KozGo-B';
	font-size: 18px;
	margin-bottom: 8px;
}
.blc h2.dot {
	padding-left: 1em;
	text-indent: -1em;
}
.blc h2.dot::before {
	content: "● ";
	color: #ef8200;
}
.blc h2.ttl_h2 {
	background-color: #ebecec;
	font-size: 130%;
	padding: 10px 20px;
	font-family: 'KozGo-B';
	border-left: 3px solid #ef8200;
}
.blc h3 {
	font-family: 'KozGo-B';
	font-size: 18px;
	margin-bottom: 8px;
	padding-left: 1.2em;
	text-indent: -1.2em;
}
.blc h3::before {
	content: "■ ";
}
.blc .contents {
	max-width: 1050px;
}


/* message
---------------------------------------------------- */
.sign {
	text-align: right;
	padding-bottom: 30px;
}
.sign + img {
	display: block;
	margin-left: auto;
	width: 30%;
}


/* profile
---------------------------------------------------- */
.profile {
	margin-bottom: 0;
	padding-bottom: 600px;
	background-image: url(../images/profile/bg.png);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
.profile table th {
	text-align: left;
	vertical-align: top;
	width: 180px;
}


/* history
---------------------------------------------------- */
.history .contents {
	display: grid;
	gap: 50px;
	grid-template-columns: 1.8fr 1fr;
}
.history table {
	padding-bottom: 30px;
}
.history table th {
	text-align: left;
	vertical-align: top;
	width: 80px;
}


/* gmap
---------------------------------------------------- */
.gmap {
	position: relative;
	padding: 0;
	height: 0;
	width: 80%;
	padding-bottom: 50%;
	overflow: hidden;
	margin: 0 auto;
}
.gmap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* recruit
---------------------------------------------------- */
.recruit_link {
	display: grid;
	gap: 25px;
	grid-template-columns: 1fr;
}
.recruit_link a {
	display: block;
	font-size: 110%;
	background-color: #ebecec;
	padding: 10px 30px;
	font-family: 'KozGo-B';
	border-left: 3px solid #ef8200;
	position: relative;
}
.recruit_link a::before,
.recruit_link a::after{
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.recruit_link a::before{
	width: 25px;
	height: 25px;
	right: 20px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #ef8200;
}
.recruit_link a::after{
	width: 6px;
	height: 6px;
	right: 29px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


/* table
---------------------------------------------------- */
table.tbl {
	width: 100%;
	border-collapse: collapse;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
table.tbl tr {
	border-bottom: 1px solid #333;
}
table.tbl th {
	padding: 20px 0;
	text-align: left;
	width: 260px;
	vertical-align: top;
	font-weight: normal;
	box-sizing: border-box;
}
table.tbl td {
	padding: 20px 0;
	text-align: left;
}


/* construction
---------------------------------------------------- */
.construction {
	text-align: center;
	font-size: 200%;
}


/* message
---------------------------------------------------- */
.message h2 {
	font-size: 180%;
}
.message h3 {
	margin-top: 30px;
}
.message h3.dot::before {
	content: "● ";
	color: #ef8200;
}
.message .member {
	font-size: 90%;
	padding: 0 20px;
	border-left: 5px solid #ef8200;
}
.message .member span {
	font-size: 120%;
	display: block;
	font-family: 'KozGo-M';
}
.message ul {
	margin: 50px auto 20px;
	width: 80%;
	display: grid;
	gap: 80px;
	grid-template-columns: 1fr 1fr;
}


/* contact
---------------------------------------------------- */
table.contact_tbl {
	border-collapse: collapse;
	width: 80%;
	margin: 0 auto;
}
table.contact_tbl th {
	text-align: left;
	vertical-align: middle;
	width: 230px;
	font-weight: normal;
	padding-right: 30px;
}
table td input[type=text], table td input[type=email], table td input[type=tel] {
	width: 100%;
	max-width: 100%;
	height: 40px;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	padding: 0 10px 0 10px;
	border: #ececec solid 1px;
	box-sizing: border-box;
	margin-top: 0px;
	font-size: 16px;
	background-color: #FFF;
	display: inline-block;
	font-family: 'KozGo-R';
}
table td textarea {
	width: 100%;
	max-width: 100%;
	height: 300px;
	display: block;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	padding: 15px 10px 15px 10px;
	border: #ececec solid 1px;
	font-size: 16px;
	background-color: #FFF;
	box-sizing: border-box;
	font-family: 'KozGo-R';
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
}
table td label {
	margin-right: 0;
}
.formBt {
	margin: 50px auto 0;
	text-align: center;
}
.formBt input {
	display: block;
	font-family: 'KozGo-M';
	width: 200px;
	max-width: 100%;
	font-size: 18px;
	background-color: #ef8200;
	color: #FFF;
	border: none;
	text-align: center;
	margin: 50px auto 0;
	line-height: 54px;
	box-sizing: border-box;
	transition: 0.4s;
	max-width: 100%;
	border-radius: 50px;
}
.formBt input:hover {
	opacity: 0.7;
}
table th span.req {
	color: #ED3B3B;
}
input[type="submit"],
input[type="button"] {
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}
.wpcf7-turnstile {
	display: table;
	margin: 30px auto 0;
}
.wpcf7-list-item {
	display: inline-block;
	margin: 0 1em 0 0;
}
::-webkit-input-placeholder {
	color: #ccc;
}


/* error
---------------------------------------------------- */
.error {
	padding-top: 110px;
	text-align: center;
}


@media only screen and (max-width: 767px) {

/* index_mv
---------------------------------------------------- */
.index_mv {
	margin-top: 50px;
	padding: 50px 0;
}
.index_mv::before {
	background-position: right center;
	background-size: cover;
}
.index_mv h1 {
	font-size: 44px;
}
.index_mv p {
	font-size: 12px;
}


/* index_services
---------------------------------------------------- */
.index_services {
	padding: 50px 0;
}


/* index_aboutus
---------------------------------------------------- */
.index_aboutus {
	padding: 50px 0;
}
.index_aboutus ul {
	grid-template-columns: 1fr;
}


/* index_recruiting
---------------------------------------------------- */
.index_recruiting {
	padding: 30px 0 50px;
	background-position: left -170px center;
}
.index_recruiting a {
	width: 80%;
}
.index_recruiting a h3 {
	font-size: 30px;
}


/* btn
---------------------------------------------------- */
a.btn {
	font-size: 16px;
	margin-top: 30px;
}


/* mv
---------------------------------------------------- */
.mv {
	margin-top: 50px;
	height: 150px;
}
.mv h1 {
	font-size: 40px;
}


/* h2
---------------------------------------------------- */
.blc h2 {
	font-size: 16px;
	margin-bottom: 5px;
}
.blc .contents {
	max-width: 90%;
}


/* message
---------------------------------------------------- */
.sign + img {
	width: 50%;
}


/* profile
---------------------------------------------------- */
.profile {
	padding-bottom: 200px;
	background-position: center bottom;
	background-size: 100% auto;
}
.profile table th {
	width: 100px;
}


/* history
---------------------------------------------------- */
.history .contents {
	gap: 50px;
	grid-template-columns: 1fr;
}


/* gmap
---------------------------------------------------- */
.gmap {
	width: 100%;
	padding-bottom: 60%;
}


/* table
---------------------------------------------------- */
table.tbl {
	width: 100%;
	border-collapse: collapse;
}
table.tbl th {
	padding: 10px 0 0;
	display: block;
	text-align: left;
	width: 100%;
	box-sizing: border-box;
}
table.tbl td {
	padding: 0 0 10px;
	display: block;
	width: 100%;
	box-sizing: border-box;
}


/* message
---------------------------------------------------- */
.message h2 {
	font-size: 150%;
}
.message ul {
	margin: 30px auto 60px;
	gap: 30px;
	grid-template-columns: 1fr;
}


/* contact
---------------------------------------------------- */
table.contact_tbl {
	width: 100%;
	border-collapse: collapse;
}
table.contact_tbl th {
	padding: 10px 0 0;
	display: block;
	text-align: left;
	width: 100%;
	box-sizing: border-box;
}
table.contact_tbl td {
	padding: 0 0 10px;
	display: block;
	width: 100%;
	box-sizing: border-box;
}


/* error
---------------------------------------------------- */
.error {
	padding-top: 60px;
}


}