@charset "UTF-8";
/* CSS Document */
/* トップページCSS */

/*共通CSS*/
/*WordPress対策・全ページ余白なし*/
* {
	margin: 0;
	padding: 0;
}
	
body {
	margin: 0;
	padding: 0;
	color: #333333;
	background: #fff;
	font-family: "游ゴシック", YuGothic,"游ゴシック体" , "Yu Gothic", sans-serif;
}
	
img {
	vertical-align: bottom; /*下に余白を作らない*/
	max-width: 100%;
}
	
p,h1,h2,h3,h4 {
	font-family: "游ゴシック", YuGothic,"游ゴシック体" , "Yu Gothic", sans-serif;
}
	
a {
	text-decoration: none;
}
	
.wrap {
	overflow: hidden;
}

/*フォント設定*/
.bold {
	font-weight: bold;
}
	
.demi-bold {
	font-weight: 600;	
}

.mon-font {
	font-family: Montserrat;
}
	
/*floatを解除する*/
.clear {
	clear: both;
}
	
.all-page {
	z-index: 1;
	position: relative;
	width: 100%;
	height: auto;
}

/*アニメーション*/
.anim-box {
	opacity: 0;
}

/*フェードイン*/
.anim-box.fadein.is-animated {
  animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
 
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*スライドイン(右から左)*/
.anim-box.slidein.is-animated {
  animation: slideIn 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
 
@keyframes slideIn {
	0% {
		transform: translateX(90px);
		opacity: 0;
	}
	80% {
    opacity: 1;
	}
	100% {
	  transform: translateX(0);
	  opacity: 1;
	}
}

/*スライドイン(左から右)*/
.anim-box.slidein01.is-animated {
  animation: slideIn01 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
 
@keyframes slideIn01 {
  0% {
    transform: translateX(-30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*スライドイン(下から上)*/
.anim-box.slidein02.is-animated {
  animation: slideIn02 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
 
@keyframes slideIn02 {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*スライドイン(ななめから出てくる)*/
.anim-box.slide-skew.is-animated {
  animation: slide-skew 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
 
@keyframes slide-skew {
  0% {
    transform: translate(90px,-20px);
    opacity: 0;
  }
  100% {
    transform: translate(0,0);
  }
  70%,100% {
    opacity: 1;
  }
}

/*スライドイン(左から右　順番)*/
.anim-box.slide-str01.is-animated {
	animation: slideIn03 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
	animation-delay: 0.3s;
}

.anim-box.slide-str02.is-animated {
	animation: slideIn03 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
	animation-delay: 0.6s;
}

.anim-box.slide-str03.is-animated {
	animation: slideIn03 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
	animation-delay: 0.9s;
}
 
@keyframes slideIn03 {
  0% {
    transform: translateX(-30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*スライドイン(上から下　順番)*/
.anim-box.slide-bus01.is-animated {
  animation: slideIn04 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
	animation-delay: 0.3s;
}

.anim-box.slide-bus02.is-animated {
  animation: slideIn04 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
	animation-delay: 0.6s;
}

.anim-box.slide-bus03.is-animated {
  animation: slideIn04 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
	animation-delay: 0.9s;
}

.anim-box.slide-bus04.is-animated {
  animation: slideIn04 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
	animation-delay: 1.2s;
}

.anim-box.slide-bus05.is-animated {
  animation: slideIn04 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
	animation-delay: 1.5s;
}
 
@keyframes slideIn04 {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



/*PC*/
@media only screen and (min-width: 769px) {
	.pc { display: block !important; }
	.sp { display: none !important; }
		
	main {
		padding: 100px 0 0 0;
	}
		
	p {
		font-size: 16px;
		font-weight: 500;
		letter-spacing: normal;
		line-height: 28px;
		color: #333333;
		text-align: left;
	}
	
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
	
	/*コンテンツ幅1000px*/
	.con {
		position: relative;
		width: 1060px;
		height: auto;
		margin: 0 auto;
	}
	
	/*キービジュアル*/
	#top-key {
		position: relative;
		width: 100%;
		height: 800px;
		padding: 100px 0 0 0;
		margin: 0 0 0 0;
		overflow: hidden;
	}
	
	#top-key h2 {
		z-index: 10;
		position: absolute;
		top: 50%;
		left: 50%;
		margin-right: -50%;
		transform: translate(-50%, -50%);
		width: 80%;
		height: auto;
		margin: 0 auto;
		font-size: 44px;
		font-weight: bold;
		letter-spacing: normal;
		line-height: 80px;
		text-align: left;
		color: #fff;
	}
	
	#top-key h2 span {
		font-family: "Montserrat";
  		font-size: 34px;
  		font-weight: 500;
  		font-stretch: normal;
  		font-style: normal;
  		line-height: normal;
  		letter-spacing: 4px;
  		text-align: left;
  		color: #fff;
	}
	
	.slider {
		width: 100%;
		height: 100vh;
	}
	
	/*ワークについて*/
	#top-ab {
		position: relative;
		width: 100%;
		height: auto;
		padding: 130px 0 160px 0;
		margin: 0 0 0 0;
	}
	
	.top-ab-con {
		position: relative;
		width: 100%;
		max-width: 1700px;
		min-width: 1200px;
		height: auto;
	}
	
	.top-ab-text {
		position: relative;
		width: 41%;
		height: auto;
		margin: 0 0 0 auto;
	}
	
	.top-ab-img {
		position: absolute;
		top: -75px;
		right: 640px;
		transform: translate(0, 0);
		width: 50%;
		height: auto;
	}
	
	.top-ab-img01 {
		display: block;
		position: relative;
		width: 300px;
		height: 210px;
		margin: 0 auto 25px 100px;
		object-fit: cover;
		background: rgba(128,128,128,0.5);
		border-radius: 10px;
	}
	
	.top-ab-img02 {
		display: block;
		position: absolute;
		top: 0;
		left: 410px;
		width: 300px;
		height: 210px;
		object-fit: cover;
		background: rgba(128,128,128,0.5);
		border-radius: 10px;
	}
	
	.top-ab-img03 {
		display: block;
		position: relative;
		width: 300px;
		height: 210px;
		margin: 0 auto 25px 0;
		object-fit: cover;
		background: rgba(128,128,128,0.5);
		border-radius: 10px;
	}
	
	.top-ab-img04 {
		display: block;
		position: absolute;
		top: 235px;
		left: 310px;
		width: 300px;
		height: 210px;
		object-fit: cover;
		background: rgba(128,128,128,0.5);
		border-radius: 10px;
	}
	
	.top-ab-img05 {
		display: block;
		position: relative;
		width: 300px;
		height: 210px;
		margin: 0 auto 0 100px;
		object-fit: cover;
		background: rgba(128,128,128,0.5);
		border-radius: 10px;
	}
	
	.top-ab-img06 {
		display: block;
		position: absolute;
		bottom: 0;
		left: 410px;
		width: 300px;
		height: 210px;
		object-fit: cover;
		background: rgba(128,128,128,0.5);
		border-radius: 10px;
	}
	
	/*h2設定*/
	.top-h2 {
		z-index: 1;
		position: relative;
		display: inline-block;
		font-family: 'Montserrat', 'sans-serif';
		font-size: 60px;
		font-weight: 500;
		letter-spacing: 3px;
		line-height: 72px;
		color: #333333;
		text-align: left;
	}
	
	.top-h2:first-letter {
		color: #f18405;
	}
	
	.top-h2 span {
		position: absolute;
		top: 100%;
		left: 50%;
		margin-right: -50%;
    	transform: translate(-50%, 0);
		font-family: "游ゴシック", YuGothic,"游ゴシック体" , "Yu Gothic", sans-serif;
  		font-size: 20px;
  		font-weight: bold;
		letter-spacing: 1.6px;
		line-height: 20px;
		color: #fff!important;
  		padding: 5px 15px;
		border-radius: 10px;
		background-image: linear-gradient(to right, #f18405 23%, #fbc16a 93%); 
	}
	
	/*h3設定*/
	.top-h3 {
  		font-size: 36px;
		font-weight: bold;
		letter-spacing: normal;
		line-height: 58px;
		color: #333;
		text-align: left;
	}
	
	.top-ab-h2 {
		margin: 0 auto 0 0;
	}
	
	.top-ab-h2 span {
  		padding: 5px 15px;
	}
	
	.top-ab-text h3 {
		margin: 80px 0 80px 0;
	}
	
	.top-ab-text p {
		display: block;
		font-size: 16px;
		width: 490px;
		height: auto;
	}
	
	.top-ab-back {
		z-index: -2;
    	position: absolute;
    	bottom: 0;
    	right: 0;
    	width: 100%;
    	height: 250px;
    	background-image: url(/wp-content/uploads/2023/07/historybackground_pc.jpg);
    	background-size: 100% 100%;
    	background-position: center;
    	background-repeat: no-repeat;
		opacity: 0.5;
	}
	
	.top-ab-back-shape {
		z-index: -1;
		display: none;
    	position: absolute;
    	bottom: 0;
    	right: 0;
    	width: 100%;
    	height: 210px;
    	background-image: url(/wp-content/uploads/2022/12/長方形-489.png);
    	background-size: 100% 100%;
    	background-position: center;
    	background-repeat: no-repeat;
	}
	
	/*ワークの強み*/
	#top-str {
		position: relative;
		width: 100%;
		height: auto;
		padding: 100px 0 100px 0;
		margin: 0 0 0 0;
		overflow: hidden;
	}
	
	.top-str-h2 {
		display: block;
		text-align: center;
		margin: 0 0 100px 0;
	}
	
	.top-str-con {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 0 0 0;
	}
	
	.top-str00 {
		z-index: 1;
		position: relative;
		display: flex;
		width: 1350px;
		height: auto;
		margin: 0 auto;
	}
	
	.top-str01 {
		position: relative;
		width: 400px;
		height: auto;
		margin: 0 25px;
	}
	
	.top-str01 .p-img {
		display: block;
		width: 400px;
		height: 300px;
		overflow: hidden;
		border-radius: 10px;
		margin-bottom: 15px;
	}
	
	.top-str01 .p-img::before {
    	content: "STRENGTH１";
    	z-index: 1;
    	position: absolute;
    	top: 0;
    	left: 0;
		font-family: 'Montserrat';
  		font-size: 16px;
  		font-weight: 500;
  		line-height: normal;
  		letter-spacing: 0.32px;
  		text-align: left;
  		color: #f18405;
		padding: 14px 21px 15px;
		background-color: #fff;
		border-radius: 2px;
	}
	
	.top-str02 {
		position: relative;
		width: 400px;
		height: auto;
		margin: 0 25px;
	}
	
	.top-str02 .p-img {
		display: block;
		width: 400px;
		height: 300px;
		overflow: hidden;
		border-radius: 10px;
		margin-bottom: 15px;
	}
	
	.top-str02 .p-img::before {
    	content: "STRENGTH２";
    	z-index: 1;
    	position: absolute;
    	top: 0;
    	left: 0;
		font-family: 'Montserrat';
  		font-size: 16px;
  		font-weight: 500;
  		line-height: normal;
  		letter-spacing: 0.32px;
  		text-align: left;
  		color: #f18405;
		padding: 14px 21px 15px;
		background-color: #fff;
		border-radius: 2px;
	}
	
	.top-str03 {
		position: relative;
		width: 400px;
		height: auto;
		margin: 0 25px;
	}
	
	.top-str03 .p-img {
		display: block;
		width: 400px;
		height: 300px;
		overflow: hidden;
		border-radius: 10px;
		margin-bottom: 15px;
	}
	
	.top-str03 .p-img::before {
    	content: "STRENGTH３";
    	z-index: 1;
    	position: absolute;
    	top: 0;
    	left: 0;
		font-family: 'Montserrat';
  		font-size: 16px;
  		font-weight: 500;
  		line-height: normal;
  		letter-spacing: 0.32px;
  		text-align: left;
  		color: #f18405;
		padding: 14px 21px 15px;
		background-color: #fff;
		border-radius: 2px;
	}
	
	.top-str-text {
		position: relative;
		width: 390px;
	}
	
	.top-str-text h4 {
		display: block;
		width: 100%;
		height: 95px;
		margin: 0 0 8px 0;
  		font-size: 30px;
  		font-weight: bold;
  		line-height: normal;
  		letter-spacing: normal;
  		text-align: left;
  		color: #f18405;
	}
	
	.top-str-text p {
		font-size: 16px;
  		font-weight: 500;
  		line-height: 26px;
  		letter-spacing: normal;
  		text-align: left;
  		color: #333;
	}
	
	/*ボタン共通*/
	.top-btn {
		z-index: 1;
		display: block;
		position: relative;
		padding: 18px 20px;
		font-family: 'Montserrat';
  		font-size: 20px;
  		font-weight: 500;
  		line-height: normal;
  		letter-spacing: 2px;
  		text-align: center;
  		color: #fff;
		background: #333;
		border: solid 2px #333;
		border-radius: 10px;
		transition: 0.4s;
	}
	
	.top-btn:hover {
		color: #333;
		background: #fff;
		border: solid 2px #333;
	}
	
	.top-str-btn {
		width: 300px;
		margin: 40px auto 0 auto;
	}
	
	/*事業内容*/
	#top-bus {
		position: relative;
		width: 100%;
		height: auto;
	}
	
	.top-bus-bg {
		position: relative;
		width: 1250px;
		height: auto;
		margin: 0 auto;
		padding: 40px 0 50px 0;
	}
	
	.top-bus-back {
		z-index: -2;
    	position: absolute;
    	top: -200px;
    	right: 0;
    	width: 240px;
    	height: 450px;
    	background-image: url(/wp-content/uploads/2023/07/top_background1.png);
    	background-size: 100% 100%;
    	background-position: center;
    	background-repeat: no-repeat;
		
	}
	
	.top-bus-h2 {
		margin: 0 auto 70px auto;
	}
	
	.top-bus-con {
		position: relative;
		width: 1250px;
		height: auto;
		margin: 0 auto;
	}
	
	#top-bus .top-h3 {
		position: absolute;
		top: 45px;
		right: 75px;
		font-family: 'YuGothic';
  		font-size: 60px;
  		font-weight: bold;
  		line-height: normal;
  		letter-spacing: normal;
  		text-align: left;
  		color: #333;
	}
	
	.top-bus-img {
		z-index: 1;
		width: 350px;
		height: 250px;
		padding: 0 0 0 0;
		overflow: hidden;
		border-radius: 10px;
	}
	
	.top-bus-img img {
		display: block;
		position: relative;
		width: 350px;
		height: 250px;
		background: rgba(128,128,128,0.5);
		border-radius: 10px;
		-moz-transition: -moz-transform 0.3s linear;
		-webkit-transition: -webkit-transform 0.3s linear;
		-o-transition: -o-transform 0.3s linear;
		-ms-transition: -ms-transform 0.3s linear;
		transition: transform 0.3s linear;
	}
	
	.top-bus-img .p-img {
		display: block;
		position: relative;
		width: 350px;
		height: 250px;
		background: rgba(128,128,128,0.5);
		border-radius: 10px;
		-moz-transition: -moz-transform 0.3s linear;
		-webkit-transition: -webkit-transform 0.3s linear;
		-o-transition: -o-transform 0.3s linear;
		-ms-transition: -ms-transform 0.3s linear;
		transition: transform 0.3s linear;
	}
	
	/*位置・背景設定*/
	.top-bus01 {
		display: block;
		position: relative;
		width: 350px;
		height: 490px;
		float: left;
		margin: 0 100px 30px 0;
	}
	
	.top-bus01:hover .top-bus-img .p-img {
		-webkit-transform: scale(1.2);
		-moz-transform: scale(1.2);
		-o-transform: scale(1.2);
		-ms-transform: scale(1.2);
		transform: scale(1.2);
		transition: 0.3s all;
	}
	
	.top-bus01:hover .top-bus-img img {
		-webkit-transform: scale(1.2);
		-moz-transform: scale(1.2);
		-o-transform: scale(1.2);
		-ms-transform: scale(1.2);
		transform: scale(1.2);
		transition: 0.3s all;
	}
	
	.top-bus02 {
		display: block;
		position: relative;
		width: 350px;
		height: 490px;
		float: left;
		margin: 0 100px 30px 0;
	}
	
	.top-bus02:hover .top-bus-img img {
		-webkit-transform: scale(1.2);
		-moz-transform: scale(1.2);
		-o-transform: scale(1.2);
		-ms-transform: scale(1.2);
		transform: scale(1.2);
		transition: 0.3s all;
	}
	
	.top-bus03 {
		display: block;
		position: relative;
		width: 350px;
		height: 490px;
		float: left;
		margin-bottom: 30px;
	}
	
	.top-bus03:hover .top-bus-img img {
		-webkit-transform: scale(1.2);
		-moz-transform: scale(1.2);
		-o-transform: scale(1.2);
		-ms-transform: scale(1.2);
		transform: scale(1.2);
		transition: 0.3s all;
	}
	
	.top-bus04 {
		display: block;
		position: relative;
		width: 490px;
		height: auto;
		float: left;
		margin: 0 100px 10px 225px;
	}
	
	.top-bus04:hover .top-bus-img img {
		-webkit-transform: scale(1.2);
		-moz-transform: scale(1.2);
		-o-transform: scale(1.2);
		-ms-transform: scale(1.2);
		transform: scale(1.2);
		transition: 0.3s all;
	}

	.top-bus05 {
		display: block;
		position: relative;
		width: 350px;
		height: 490px;
		float: left;
		margin-right: auto;
		margin-bottom: 10px;
	}
	
	.top-bus05:hover .top-bus-img img {
		-webkit-transform: scale(1.2);
		-moz-transform: scale(1.2);
		-o-transform: scale(1.2);
		-ms-transform: scale(1.2);
		transform: scale(1.2);
		transition: 0.3s all;
	}
	
	.top-bus-text {
		position: relative;
		width: 100%;
		height: auto;
	}
	
	.top-bus-con h3 {
		position: relative;
		font-size: 30px;
  		font-weight: bold;
  		line-height: normal;
  		letter-spacing: normal;
  		text-align: left;
  		color: #000;
		margin-top: 10px;
	}
	
	.top-bus-img h3 span {
		position: absolute;
		top: -25px;
		left: -100px;
		font-size: 70px;
		font-weight: bold;
		line-height: 70px;
	}
	
	.top-bus-text h4 {
		display: block;
		position: relative;
		font-size: 26px;
  		line-height: normal;
  		letter-spacing: normal;
  		text-align: left;
  		color: #f18405;
		margin-bottom: 10px;
	}
	
	.top-bus-h4-1 {
		top: -110px;
	}
	
	.top-bus-h4-2 {
		top: -56px;
	}
	
	.top-bus-h4-3 {
		width: 300px;
		top: -56px;
	}
	
	.top-bus-text p {
		position: relative;
		font-size: 16px;
  		font-weight: 500;
  		line-height: normal;
  		letter-spacing: normal;
  		text-align: left;
  		color: #333;
		white-space: nowrap;
	}
	
	.top-bus-btn {
		width: 300px;
		margin: 0 auto;
	}
	
	/*施工実績*/
	#top-works {
		z-index: 2;
		position: relative;
		width: 100%;
		height: auto;
	}
	
	.top-works-bg {
		position: relative;
		width: 1230px;
		height: auto;
		padding: 50px 0;
		margin: 0 auto;
		overflow: hidden;
	}
	
	.top-works-con {
		position: relative;
	}
	
	/*常に流すスライダー設定*/
	.autoplay-slider {
		display: flex!important;
		min-width: 100%;
		width: min-content;
		animation: 60s linear infinite sliderAnimation;
	}
	
	@keyframes sliderAnimation {
		100% {
			transform: translateX(-50%);
		}
	}
	
	.top-works-h2 {
		margin: 0 auto 80px 110px;
	}
	
	.top-works-btn {
		width: 260px;
		margin: 0 0 0 auto;
	}
	
	#top-works .works-loop {
		margin: 0 5px 140px 5px!important;
	}
	
	.works-loop-text {
		position: absolute;
		top: 220px;
		left: 0;
	}
	
	.works-loop-text h2 {
		margin: 0 0 10px 0;
		font-size: 16px;
		font-weight: 600;
		letter-spacing: 1px;
		line-height: 22px;
		color: #333;
		text-align: left;
	}
	
	.works-loop-text h3 {
		font-size: 14px;
		font-weight: normal;
		letter-spacing: 1px;
		line-height: 14px;
		color: #333;
		text-align: left;
	}
	
	.top-works-back {
		z-index: -2;
    	position: absolute;
    	top: -440px;
    	left: 0;
    	width: 385px;
    	height: 450px;
    	background-image: url(/wp-content/uploads/2023/07/top_background2.png);
    	background-size: 100% 100%;
    	background-position: center;
    	background-repeat: no-repeat;
	}
	
	/*スタッフ紹介*/
	#top-stf {
		z-index: 1;
		position: relative;
		width: 100%;
		height: auto;
		padding: 100px 0 120px 0;
		margin: 0 0 0 0;
	}
	
	#top-stf::before {
		content: "";
		z-index: -1;
		position: absolute;
		top: -150px;
		right: 0;
		width: 380px;
		height: 430px;
		background-image: url(/wp-content/uploads/2023/07/top_background3.png);
		background-size: 100% 100%;
		background-position: center;
		background-repeat: no-repeat;
	}
	
	.top-stf-h2 {
		display: block;
    	text-align: center;
    	margin: 0 0 70px 0;
	}
	
	.top-stf-con {
		position: relative;
		width: 1120px;
		height: auto;
		margin: 0 auto;
	}
	
	.top-stf-img {
		z-index: 1;
		width: 500px;
		height: 400px;
		padding: 0 0 0 0;
		border-radius: 10px;
		overflow: hidden;
	}
	
	.top-stf-img img {
		position: relative;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
		-moz-transition: -moz-transform 0.3s linear;
		-webkit-transition: -webkit-transform 0.3s linear;
		-o-transition: -o-transform 0.3s linear;
		-ms-transition: -ms-transform 0.3s linear;
		transition: transform 0.3s linear;
	}
	
	/*位置・背景設定*/
	.top-stf01 {
		display: block;
		position: relative;
		width: 500px;
		height: auto;
		margin-right: 120px;
		float: left;
	}
	
	.top-stf01:hover .top-stf-img img {
		-webkit-transform: scale(1.2);
		-moz-transform: scale(1.2);
		-o-transform: scale(1.2);
		-ms-transform: scale(1.2);
		transform: scale(1.2);
		transition: 0.3s all;
	}
	
	.top-stf01:hover .top-stf-name {
		color: #f18405!important;
	}
	
	.top-stf01:hover .top-stf-text {
		color: #f18405!important;
	}
	
	.top-stf01:hover .top-stf-his {
		color: #f18405!important;
	}
	
	.top-stf02 {
		display: block;
		position: relative;
		width: 500px;
		height: auto;
		float: left;
	}
	
	.top-stf02:hover .top-stf-img img {
		-webkit-transform: scale(1.2);
		-moz-transform: scale(1.2);
		-o-transform: scale(1.2);
		-ms-transform: scale(1.2);
		transform: scale(1.2);
		transition: 0.3s all;
	}
	
	.top-stf02:hover .top-stf-name {
		color: #f18405!important;
	}
	
	.top-stf02:hover .top-stf-text {
		color: #f18405!important;
	}
	
	.top-stf02:hover .top-stf-his {
		color: #f18405!important;
	}
	
	.top-stf03 {
		display: block;
		position: relative;
		width: 350px;
		height: 550px;
		float: left;
	}
	
	.top-stf03:hover .top-stf-img img {
		-webkit-transform: scale(1.2);
		-moz-transform: scale(1.2);
		-o-transform: scale(1.2);
		-ms-transform: scale(1.2);
		transform: scale(1.2);
		transition: 0.3s all;
	}
	
	.top-stf03:hover .top-stf-name {
		color: #f18405!important;
	}
	
	.top-stf03:hover .top-stf-text {
		color: #f18405!important;
	}
	
	.top-stf03:hover .top-stf-his {
		color: #f18405!important;
	}
	
	.top-stf-name {
		position: absolute;
		top: 20px;
		right: 0;
		width: 100%;
		font-size: 40px;
  		font-weight: bold;
  		line-height: 0;
  		letter-spacing: 10px;
  		text-align: left;
  		color: #333;
		writing-mode: vertical-rl;
		transition: 0.4s;
	}
	
	.top-stf-text {
		font-size: 20px;
  		font-weight: bold;
  		line-height: normal;
  		letter-spacing: normal;
  		text-align: left;
  		color: #333;
		margin: 15px 0 5px;
		transition: 0.4s;
	}
	
	.top-stf-text p {
		font-size: 16px;
		font-weight: 600;
		letter-spacing: 1px;
		line-height: 16px;
		text-align: left;
		color: #333;
	}
	
	.top-stf-his {
		transition: 0.4s;
	}
	
	.top-stf-h3-1 {
		top: -170px;
	}
	
	.top-stf-h3-2 {
		top: -110px;
	}
	
	.top-com-btn {
		width: 260px;
		margin: 50px auto 0 0;
		padding: 13px 20px;
	}
	
	.top-stf-btn {
		width: 260px;
		margin: 40px auto 0 auto;
	}
	
	.top-stf-con-backimg {
    	z-index: -1;
    	position: absolute;
    	bottom: -180px;
    	left: 0;
    	width: 245px;
    	height: auto;
    	object-fit: cover;
	}
	
	/*流れる背景色設定*/
	.bg .bg-wrap {
		display: inline-block;
		position: absolute;
		left: -30px;
	}
	
	.bg.is-animated .bg-wrap::before {
		animation: bg 3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
		background: linear-gradient(to right, #000 0%,#000 50%,#000 100%);
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		transform-origin: left center;
	}
	
	.bg .bg-wrap .inn {
		z-index: 1;
		display: inline-block;
		position: relative;
		padding: 10px 15px;
		font-size: 20px;
		font-weight: 600;
		letter-spacing: 1px;
		text-align: left;
		color: #fff;
	}
 
@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
	
	
	
	
	/*採用情報*/
	#top-rec {
		z-index: 1;
		position: relative;
		width: 100%;
		height: auto;
		padding: 0 0 150px 0;
		margin: 0 0 0 0;
	}
	
	.top-rec-con {
		position: relative;
		width: 93%;
		max-width: 1700px;
		height: auto;
		margin: 0 auto 0 0.8%;
	}
	
	.top-rec-text {
		position: relative;
		width: 415px;
		height: auto;
		margin: 0 0 0 auto;
	}
	
	.top-rec-img {
		position: absolute;
		top: 0;
		left: 0;
		transform: translate(0, 0);
		width: 60%;
		height: auto;
	}
	
	.top-rec-img .p-img {
		display: block;
		position: relative;
		width: 100%;
		height: 500px;
		background: rgba(128,128,128,0.5);
		border-radius: 10px;
	}
	
	.top-rec-img01 {
		display: block;
		position: relative;
		width: 100%;
		height: 500px;
		object-fit: cover;
	}
	
	.top-rec-img h4 {
		z-index: 2;
		position: absolute;
		bottom: 30px;
		right: 2%;
		font-size: 34px;
		font-weight: 600;
		font-style: italic;
		letter-spacing: 2px;
		line-height: 34px;
		text-align: center;
		color: #1AA170;
		white-space: nowrap;
		background: -webkit-linear-gradient(90deg, #1AA170, #282D3C);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
	
	.top-rec-img02 {
		z-index: 1;
		position: absolute;
		bottom: 20px;
		right: 0;
		width: 800px;
		height: 60px;
	}
	
	.top-rec-h2 {
		text-align: center;
		margin: 0 auto;
		width: 100%;
	}
	
	.top-rec-text h3 {
		display: block;
		width: 360px;
		height: auto;
		font-size: 36px;
  		font-weight: bold;
  		line-height: normal;
  		letter-spacing: normal;
  		text-align: left;
  		color: #f18405;
		margin: 55px auto 25px;
	}
	
	.top-rec-text p {
		font-size: 14px;
	}
	
	.top-rec-btn {
		width: 260px;
		margin: 55px auto 0 auto;
	}
	
	/*会社情報*/
	#top-com {
		position: relative;
		width: 100%;
		height: auto;
		padding: 0 0 40px 0;
		margin: 0 0 0 0;
	}
	
	.top-com-title-back {
		position: relative;
		width: 100%;
		height: auto;
	}
	
	.top-com-key {
		position: relative;
		width: 100%;
		height: 450px;
		overflow: hidden;
	}
	
	.top-com-key img {
		width: 100%;
		height: 450px;
		object-fit: cover;
		object-position: top;
		-moz-transition: -moz-transform 0.3s linear;
		-webkit-transition: -webkit-transform 0.3s linear;
		-o-transition: -o-transform 0.3s linear;
		-ms-transition: -ms-transform 0.3s linear;
		transition: transform 0.3s linear;
	}
	
	.top-com-title-back:hover .top-com-key img {
		-webkit-transform: scale(1.2);
		-moz-transform: scale(1.2);
		-o-transform: scale(1.2);
		-ms-transform: scale(1.2);
		transform: scale(1.2);
		transition: 0.3s all;
	}
	
	.top-com-title {
		position: absolute;
		top: 50%;
		left: 26%;
		margin-right: -50%;
		transform: translate(-50%, -50%);
		width: 42%;
		height: auto;
	}
	
	.top-com-title-bg {
		z-index: -1;
		position: absolute;
		top: 50%;
		left: 50%;
		margin-right: -50%;
		transform: translate(-50%, -50%) rotate(45deg);
		width: 450px;
		height: 450px;
		border-radius: 10px;
  		background-color: #fff;
	}
	
	.top-com-h2 {
		width: 100%;
		margin: 0 auto 60px 0;
		text-align: center;
	}
	
	.top-com-h2::before {
		border-bottom: solid 1px #E5E5E5!important;
	}
	
	.top-com-title p {
		display: block;
		width: 460px;
		height: auto;
		margin: 0 auto;
  		color: #000;

	}
	
	.top-com-con {
		z-index: 1;
		position: relative;
		width: 1200px;
		height: auto;
		margin: 50px auto 0 auto;
	}
	
	.top-com-img {
		z-index: 1;
		position: relative;
		width: 370px;
		height: 170px;
		padding: 0 0 0 0;
		border-radius: 10px;
		overflow: hidden;
	}
	
	.top-com-img img {
		z-index: 1;
		width: 370px;
		height: 170px;
		object-fit: cover;
		background: rgba(128,128,128,0.5);
	}
	
	.top-com-img img {
		-moz-transition: -moz-transform 0.3s linear;
		-webkit-transition: -webkit-transform 0.3s linear;
		-o-transition: -o-transform 0.3s linear;
		-ms-transition: -ms-transform 0.3s linear;
		transition: transform 0.3s linear;
	}
	
	.top-com01:hover .top-com-img img {
		-webkit-transform: scale(1.2);
		-moz-transform: scale(1.2);
		-o-transform: scale(1.2);
		-ms-transform: scale(1.2);
		transform: scale(1.2);
		transition: 0.3s all;
	}
	
	.top-com02:hover .top-com-img img {
		-webkit-transform: scale(1.2);
		-moz-transform: scale(1.2);
		-o-transform: scale(1.2);
		-ms-transform: scale(1.2);
		transform: scale(1.2);
		transition: 0.3s all;
	}
	
	.top-com03:hover .top-com-img img {
		-webkit-transform: scale(1.2);
		-moz-transform: scale(1.2);
		-o-transform: scale(1.2);
		-ms-transform: scale(1.2);
		transform: scale(1.2);
		transition: 0.3s all;
	}
	
	
	/*位置・背景設定*/
	.top-com01 {
		display: block;
		position: relative;
		width: 370px;
		height: 200px;
		margin: 0 auto 0 0;
	}
	
	.top-com02 {
		display: block;
		position: absolute;
		top: 0;
		left: 415px;
		width: 370px;
		height: 200px;
	}
	
	.top-com02 div.top-com-img::after {
		background-image: url(https://work.face-eachother.com/wp-content/uploads/2021/08/top_company2_pc2.jpg);
	}
	
	.top-com03 {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		width: 370px;
		height: 200px;
	}
	
	.top-com03 div.top-com-img::after {
		background-image: url(https://work.face-eachother.com/wp-content/uploads/2021/08/top_company2_pc3.jpg);
	}
	
	.top-com-img h3 {
		position: absolute;
		top: 50%;
    	left: 50%;
    	margin-right: -50%;
    	transform: translate(-50%, -50%);
		width: 100%;
		height: auto;
		font-size: 26px;
  		font-weight: bold;
  		line-height: normal;
  		letter-spacing: 2.6px;
  		text-align: center;
  		color: #fff;

	}
	
	.top-com-btn {
		width: 260px;
		margin: 40px auto 0 auto;
	}
	
	/*新着情報*/
	#top-news {
		position: relative;
		width: 700px;
		height: auto;
		padding: 40px 0 150px;
		margin: 0 auto;
	}
	
	.top-news-h2 {
		display: block;
    	text-align: center;
    	margin: 0 0 70px 0;
	}
	
	.top-news-con {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto 50px auto;
	}
	
	#top-news .news-title {
		width: 550px!important;
		left: 145px;
	}
	
	.top-news-btn {
		width: 260px;
		margin: 0 auto 0 auto;
	}
	
}
	
/*SP*/
@media only screen and (max-width: 768px) {
	.pc { display: none !important; }
	.sp { display: block !important; }
		
	main {
		padding: 50px 0 0 0;
	}
	
	p {
		font-size: 13px;
  		font-weight: 500;
  		line-height: 22px;
  		letter-spacing: normal;
  		text-align: left;
  		color: #333;
	}
	
	/*コンテンツ幅1000px*/
	.con {
		position: relative;
		width: 300px;
		height: auto;
		margin: 0 auto;
	}
	
	/*キービジュアル*/
	#top-key {
		z-index: 10;
		position: relative;
		width: 100%;
		height: 600px;
		padding: 50px 0 0 0;
		margin: 0 0 0 0;
		overflow: hidden;
	}
	
	#top-key h2 {
		z-index: 10;
		position: absolute;
		top: 50%;
		left: 50%;
		margin-right: -50%;
		transform: translate(-50%, -50%);
		width: 100%;
		height: auto;
		margin: 0 auto;
		font-size: 28px;
  		font-weight: bold;
  		line-height: normal;
  		letter-spacing: normal;
  		text-align: center;
  		color: #fff;
	}
	
	#top-key h2 span {
		font-family: 'Montserrat';
		font-size: 18px;
		letter-spacing: normal;
	}
	
	.slider {
		width: 100%;
		height: 100vh;
	}
	
	/*ワークについて*/
	#top-ab {
		position: relative;
		width: 100%;
		height: auto;
		padding: 50px 0 40px 0;
		margin: 0 0 0 0;
	}
	
	.top-ab-con {
		position: relative;
		width: 92%;
		height: auto;
		margin: 0 auto;
	}
	
	.top-ab-text {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto;
	}
	
	.top-ab-img-1 {
		position: relative;
		width: 100%;
		height: auto;
		margin: 50px auto 0;
	}
	
	.top-ab-img01 {
		display: block;
    	position: relative;
    	width: 47%;
    	height: 123px;
		margin-right: 6%;
    	object-fit: cover;
    	background: rgba(128,128,128,0.5);
    	border-radius: 5px;
		float: left;
	}
	
	.top-ab-img02 {
		display: block;
    	position: relative;
    	width: 47%;
    	height: 123px;
		margin: 0;
    	object-fit: cover;
    	background: rgba(128,128,128,0.5);
    	border-radius: 5px;
		float: left;
	}
	
	.top-ab-img-2 {
		position: relative;
		width: 100%;
		height: auto;
		margin: 30px auto 0;
	}
	
	.top-ab-img03 {
		display: block;
    	position: relative;
    	width: 40%;
    	height: 105px;
		margin: 0 auto 0 0;
    	object-fit: cover;
    	background: rgba(128,128,128,0.5);
    	border-radius: 5px;
	}
	
	.top-ab-img04 {
		display: block;
    	position: absolute;
		top: 0;
		left: 45%;
    	width: 40%;
    	height: 105px;
		margin: 0px;
    	object-fit: cover;
    	background: rgba(128,128,128,0.5);
    	border-radius: 5px;
	}
	
	.top-ab-img05 {
		display: block;
    	position: relative;
    	width: 40%;
    	height: 105px;
		margin: 12px auto 0 15%;
    	object-fit: cover;
    	background: rgba(128,128,128,0.5);
    	border-radius: 5px;
	}
	
	.top-ab-img06 {
		display: block;
    	position: absolute;
		bottom: 0;
		right: 0;
    	width: 40%;
    	height: 105px;
		margin: 0;
    	object-fit: cover;
    	background: rgba(128,128,128,0.5);
    	border-radius: 5px;
	}
	
	.top-ab-back {
    	z-index: -2;
    	position: absolute;
   	 	bottom: 0;
    	right: 0;
    	width: 100%;
    	height: 475px;
    	background-image: url(/wp-content/uploads/2023/07/historybackground_smp.jpg);
   	 	background-size: 100% 100%;
    	background-position: center;
    	background-repeat: no-repeat;
		opacity: 0.5;
	}
	
	/*h2設定*/
	
	.top-h2 {
		z-index: 1;
		position: relative;
		display: block;
		font-family: 'Montserrat', 'sans-serif';
		font-size: 50px;
		font-weight: 500;
		letter-spacing: 5px;
		line-height: normal;
		color: #333333;
		text-align: center;
	}
	
	.top-h2:first-letter {
		color: #f18405;
	}
	
	.top-h2 span {
		position: absolute;
		top: 100%;
		left: 50%;
		margin-right: -50%;
    	transform: translate(-50%, 0);
		font-family: "游ゴシック", YuGothic,"游ゴシック体" , "Yu Gothic", sans-serif;
  		font-size: 15px;
  		font-weight: bold;
		letter-spacing: 2.4px;
		line-height: 15px;
		color: #fff!important;
  		padding: 5px 15px;
		border-radius: 5px;
		background-image: linear-gradient(to right, #f18405 23%, #fbc16a 93%); 
	}
	
	/*h3設定*/
	.top-h3 {
		font-size: 20px;
  		font-weight: bold;
  		line-height: normal;
  		letter-spacing: 2px;
  		text-align: left;
  		color: #333;
	}
	
	.top-ab-text h3 {
		margin: 30px 0 25px 0;
	}
	
	/*ワークの強み*/
	#top-str {
		position: relative;
		width: 100%;
		height: auto;
		padding: 100px 0 40px 0;
		margin: 0 0 0 0;
		overflow: hidden;
	}
	
	.top-str-h2 {
		margin: 0 auto 60px auto;
	}
	
	.top-str-con {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 0 0 0;
	}
	
	.top-str00 {
		z-index: 1;
		position: relative;
		width: 325px;
		height: auto;
		margin: 0 auto;
	}
	
	.top-str01 {
		position: relative;
		width: 325px;
		height: auto;
		margin: 0 auto;
	}
	
	.top-str01 .p-img {
		display: block;
		width: 325px;
		height: 245px;
		overflow: hidden;
		margin-bottom: 15px;
		border-radius: 7px;
	}
	
	.top-str01 .p-img::before {
    	content: "STRENGTH１";
    	z-index: 1;
    	position: absolute;
    	top: 0;
    	left: 0;
    	font-family: 'Montserrat';
    	font-size: 13px;
    	font-weight: 500;
    	line-height: normal;
    	letter-spacing: 0.2px;
    	text-align: left;
    	color: #f18405;
    	padding: 9px 16px 11px 16px;
    	background-color: #fff;
    	border-radius: 2px;
	}
	
	.top-str02 {
		position: relative;
		width: 325px;
		height: auto;
		margin: 30px auto 0;
	}
	
	.top-str02 .p-img {
		display: block;
		width: 325px;
		height: 245px;
		overflow: hidden;
		margin-bottom: 15px;
		border-radius: 7px;
	}
	
	.top-str02 .p-img::before {
    	content: "STRENGTH２";
    	z-index: 1;
    	position: absolute;
    	top: 0;
    	left: 0;
    	font-family: 'Montserrat';
    	font-size: 13px;
    	font-weight: 500;
    	line-height: normal;
    	letter-spacing: 0.2px;
    	text-align: left;
    	color: #f18405;
    	padding: 9px 16px 11px 16px;
    	background-color: #fff;
    	border-radius: 2px;
	}
	
	.top-str03 {
		position: relative;
		width: 325px;
		height: auto;
		margin: 30px auto 0;
	}
	
	.top-str03 .p-img {
		display: block;
		width: 325px;
		height: 245px;
		overflow: hidden;
		margin-bottom: 15px;
		border-radius: 7px;
	}
	
	.top-str03 .p-img::before {
    	content: "STRENGTH３";
    	z-index: 1;
    	position: absolute;
    	top: 0;
    	left: 0;
    	font-family: 'Montserrat';
    	font-size: 13px;
    	font-weight: 500;
    	line-height: normal;
    	letter-spacing: 0.2px;
    	text-align: left;
    	color: #f18405;
    	padding: 9px 16px 11px 16px;
    	background-color: #fff;
    	border-radius: 2px;
	}
	
	.top-str-text {
		z-index: 1;
		position: relative;
		width: 280px;
	}
	
	.top-str-text h4 {
		margin: 0 0 5px 0;
		font-size: 17px;
  		font-weight: bold;
  		line-height: normal;
  		letter-spacing: normal;
  		text-align: left;
  		color: #f18405;
	}
	
	/*参考サイズ*/
	
	.top-str02 .top-str-text h4 {
		margin: 0 0 5px 0;
		font-size: 17px;
  		font-weight: bold;
  		line-height: normal;
  		letter-spacing: normal;
  		text-align: left;
  		color: #f18405;
	}
	
	.top-str02 .top-str-text p {
		font-size: 13px;
  		font-weight: 500;
  		line-height: normal;
  		letter-spacing: normal;
  		text-align: left;
  		color: #333;
	}
	
	.top-str03 .top-str-text h4 {
		margin: 0 0 5px 0;
		font-size: 19px;
  		font-weight: bold;
  		line-height: normal;
  		letter-spacing: normal;
  		text-align: left;
  		color: #f18405;
	}
	
	.top-str03 .top-str-text p {
		font-size: 15px;
  		font-weight: 500;
  		line-height: normal;
  		letter-spacing: normal;
  		text-align: left;
  		color: #333;
	}
	
	/*少し左に*/
	.top-str03-p {
		margin-right: 15px;
	}
	
	/*ボタン共通*/
	.top-btn {
		z-index: 1;
		display: block;
		position: relative;
		padding: 11px 0;
		font-family: 'Montserrat';
  		font-size: 17px;
  		font-weight: 500;
  		line-height: normal;
  		letter-spacing: 1.5px;
  		text-align: center;
  		color: #fff;
		background: #333;
		border: solid 2px #333;
		border-radius: 5px;
		transition: 0.4s;
	}
	
	.top-str-btn {
		width: 250px;
		margin: 30px auto 0 auto;
	}
	
	/*事業内容*/
	#top-bus {
		position: relative;
		width: 100%;
		height: auto;
		padding: 60px 0 40px 0;
	}
	
	.top-bus-back {
		z-index: -2;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 238px;
		background-image: url(/wp-content/uploads/2023/07/top_background_smp1.png);
		background-size: 100% 100%;
		background-position: center;
		background-repeat: no-repeat;
	}
	
	.top-bus-h2 {
		margin: 0 auto 50px auto;
	}
	
	#top-bus .top-h3 {
		font-size: 22px;
  		font-weight: bold;
  		line-height: normal;
  		letter-spacing: 2px;
  		text-align: center;
  		color: #333;
		margin-bottom: 25px;
	} 
	
	.top-bus-con {
		position: relative;
		width: 325px;
		height: auto;
		margin: 0 auto;
	}
	
	.top-bus-con h3 {
		margin: 0 0 7px 0;
	}
	
	.top-bus-img {
		z-index: 1;
		width: 325px;
		height: auto;
		padding: 0 0 0 0;
		margin: 0 0 15px 0;
		border-radius: 8px;
		overflow: hidden;
	}
	
	.top-bus-img::after {
		z-index: -1;
		position: relative;
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		top: 0;
		background-repeat: no-repeat;
		background-size: 100% 100%;
	}
	
	/*位置・背景設定*/
	.top-bus01 {
		display: block;
		position: relative;
		width: 325px;
		height: auto;
		margin: 0 auto 40px 0;
	}
	
	.top-bus01 .p-img {
		display: block;
		width: 325px;
		height: 232px;
		background: rgba(128,128,128,0.5);
		margin-bottom: 15px;
		border-radius: 5px;
	}
	
	.top-bus02 {
		display: block;
		position: relative;
		width: 325px;
		height: auto;
		margin: 0 auto 40px 0;
	}
	
	.top-bus02 .p-img {
		display: block;
		width: 325px;
		height: 232px;
		background: rgba(128,128,128,0.5);
		margin-bottom: 15px;
		border-radius: 5px;
	}
	
	.top-bus03 {
		display: block;
		position: relative;
		width: 325px;
		height: auto;
		margin: 0 auto 40px 0;
	}
	
	.top-bus03 .p-img {
		display: block;
		width: 325px;
		height: 232px;
		background: rgba(128,128,128,0.5);
		margin-bottom: 15px;
		border-radius: 5px;
	}
	
	.top-bus04 {
		display: block;
		position: relative;
		width: 325px;
		height: auto;
		margin: 0 auto 40px 0;
	}
	
	.top-bus04 .p-img {
		display: block;
		width: 325px;
		height: 232px;
		background: rgba(128,128,128,0.5);
		margin-bottom: 15px;
		border-radius: 5px;
	}
	
	.top-bus05 {
		display: block;
		position: relative;
		width: 325px;
		height: auto;
		margin: 0 auto 30px 0;
	}
	
	.top-bus05 .p-img {
		display: block;
		width: 325px;
		height: 232px;
		background: rgba(128,128,128,0.5);
		margin-bottom: 15px;
		border-radius: 5px;
	}
	
	.top-bus-text {
		position: relative;
		width: 325px;
		height: auto;
	}
	
	.top-bus-con h3 {
		position: relative;
		font-size: 20px;
  		font-weight: bold;
  		line-height: normal;
  		letter-spacing: normal;
  		text-align: left;
  		color: #000;
	}
	
	.top-bus-text h4 {
		display: inline-block;
		position: relative;
		font-size: 17px;
  		font-weight: bold;
  		line-height: normal;
  		letter-spacing: normal;
  		text-align: left;
  		color: #f18405;
		margin-bottom: 5px;
	}
	
	.top-bus-text p {
		position: relative;
		width: 100%;
		margin: 0 0 0 0;
		font-size: 13px;
		letter-spacing: 0.5px;
		line-height: 16px;
		text-align: left;
	}
	
	.top-bus-btn {
		width: 180px;
		margin: 0 auto;
	}
	
	/*施工実績*/
	#top-works {
		position: relative;
		width: 100%;
		height: auto;
		padding: 60px 0 40px 0;
		margin: 0 auto;
	}
	
	.top-works-con {
		position: relative;
		width: 100%;
		height: auto;
	}
	
	/*常に流すスライダー設定*/
	.autoplay-slider {
		display: flex!important;
		min-width: 100%;
		width: min-content;
		animation: 60s linear infinite sliderAnimation;
	}
	
	@keyframes sliderAnimation {
		100% {
			transform: translateX(-50%);
		}
	}
	
	.top-works-h2 {
		margin: 0 auto 60px auto;
	}
	
	.top-works-btn {
		width: 180px;
		margin: 25px auto 0 auto;
	}
	
	#top-works .works-loop {
		margin: 0 5px 20px 5px!important;
		padding-bottom: 20px
	}
	
	#top-works .slick-list {
		padding-bottom: 20px;
	}
	
	.works-loop-text {
		position: absolute;
		width: 300px;
		height: 50px;
    	top: 65%;
		left: 50%;
		margin-right: -50%;
    	transform: translate(-50%, 140%);
	}
	
	.works-loop-text h2 {
		margin: 0 0 5px 0;
		font-size: 15px;
		font-weight: 600;
		letter-spacing: 1px;
		line-height: 24px;
		color: #333;
		text-align: left;
	}
	
	.works-loop-text h3 {
		font-size: 10px;
		font-weight: normal;
		letter-spacing: 0.5px;
		line-height: 10px;
		color: #333;
		text-align: left;
	}
	
	#top-works .works-category {
    	display: inline-block;
    	position: absolute;
    	top: 11px;
    	left: 50%;
		margin-right: -50%;
    	transform: translate(-125%, -50%);
    	width: 120px;
    	padding: 4px 0;
    	font-size: 13px;
    	font-weight: normal;
    	letter-spacing: 0.5px;
    	line-height: 13px;
    	text-align: center;
    	color: #fff;
    	background: #F18405;
    	border-radius: 5px;
	}
	
	#top-works .next-arrow {
		position: absolute;
		z-index: 1;
		top: 35%;
		right: 3%;
		width: 15px;
		height: 29px;
		
	}
	
	#top-works .prev-arrow {
		position: absolute;
		z-index: 1;
		top: 35%;
		left: 3%;
		width: 15px;
		height: 29px;
	}
	
	#top-works .works-loop-img {
		margin: 0 auto;
	}
	
	.top-works-back {
    	z-index: -2;
    	position: absolute;
    	top: -51px;
    	left: 0;
    	width: 170px;
    	height: 195px;
    	background-image: url(/wp-content/uploads/2023/07/top_background2.png);
   	 	background-size: 100% 100%;
    	background-position: center;
    	background-repeat: no-repeat;
	}
	
	/*スタッフ紹介*/
	#top-stf {
		z-index: 1;
		position: relative;
		width: 100%;
		height: auto;
		padding: 60px 0 40px 0;
		margin: 0 0 0 0;
	}
	
	#top-stf::before {
		content: "";
		z-index: -1;
		position: absolute;
		top: 35px;
		left: 0;
		width: 100%;
		height: 220px;
		background-image: url(/wp-content/uploads/2023/07/top_background_smp3.png);
		background-size: 100% 100%;
		background-position: center;
		background-repeat: no-repeat;
	}
	
	.top-stf-h2 {
		margin: 0 auto 60px auto;
	}
	
	.top-stf-con {
		position: relative;
		width: 320px;
		height: auto;
		margin: 0 auto;
	}
	
	.top-stf-con .next-arrow {
		position: absolute;
		z-index: 1;
		top: 35%;
		right: 0;
		width: 15px;
		height: 29px;
		
	}
	
	.top-stf-con .prev-arrow {
		position: absolute;
		z-index: 1;
		top: 35%;
		left: 0;
		width: 15px;
		height: 29px;
	}
	
	.top-stf-img {
		z-index: 1;
		width: 250px;
		height: 430px;
		margin: 0 auto;
	}
	
	.top-stf-img img {
		border-radius: 8px;
	}
	
	.top-stf-con-backimg {
    	z-index: -1;
    	position: absolute;
    	bottom: -135px;
    	left: 0;
    	width: 220px;
    	height: auto;
    	object-fit: cover;
	}
		
	/*位置・背景設定*/
	.top-stf01 {
		display: block;
		position: relative;
		width: 250px;
		height: 300px;
		margin: 0 auto;
	}
	
	.top-stf02 {
		display: block;
		position: relative;
		width: 260px;
		height: 320px;
		margin: 0 auto;
	}
	
	.top-stf03 {
		display: block;
		position: relative;
		width: 260px;
		height: 320px;
		margin: 0 auto;
	}
	
	.top-stf-name {
    	position: absolute;
    	top: 20px;
    	right: 35px;
    	width: 100%;
    	font-size: 30px;
    	font-weight: bold;
    	line-height: 0;
    	letter-spacing: 10px;
    	text-align: left;
    	color: #333;
    	writing-mode: vertical-rl;
	}
	
	.top-stf-text {
		position: relative;
		width: 260px;
		height: auto;
	}
	
	.top-stf-text p {
		position: relative;
		font-size: 13px;
  		font-weight: 500;
  		line-height: normal;
  		letter-spacing: normal;
  		text-align: left;
  		color: #333;
	}
	
	.top-stf-img h3 {
		display: inline-block;
		position: relative;
		margin: 10px 0 5px;
		font-size: 15px;
  		font-weight: bold;
  		line-height: normal;
  		letter-spacing: normal;
  		text-align: left;
  		color: #333;
	}
	
	.top-stf-btn {
		width: 250px;
		margin: 0 auto;
	}
	
	/*採用情報*/
	#top-rec {
		z-index: 1;
		position: relative;
		width: 100%;
		height: auto;
		padding: 60px 0 40px 0;
		margin: 0 0 0 0;
	}
	
	.top-rec-con {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 0 0 0;
	}
	
	.top-rec-text {
		position: relative;
		width: 350px;
		height: auto;
		margin: 0 auto;
	}
	
	.top-rec-img {
		position: relative;
		width: 350px;
		height: 195px;
		margin: 0 auto;
	}
	
	.top-rec-img .p-img {
    	display: block;
    	position: relative;
    	width: 350px;
    	height: 195px;
    	background: rgba(128,128,128,0.5);
	}
	
	.top-rec-img01 {
		display: block;
		position: relative;
		width: 90%;
		height: 180px;
		margin: 0 0 0 auto;
		object-fit: cover;
	}
	
	.top-rec-img h4 {
		z-index: 2;
		position: absolute;
		bottom: 20px;
		left: 5%;
		font-size: 16px;
		font-weight: 600;
		font-style: italic;
		letter-spacing: 1px;
		line-height: 16px;
		text-align: left;
		color: #1AA170;
		white-space: nowrap;
		background: -webkit-linear-gradient(90deg, #1AA170, #282D3C);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
	
	.top-rec-img02 {
		z-index: 1;
		position: absolute;
		bottom: 13px;
		right: 0;
		width: 100%;
		height: 30px;
	}
	
	.top-rec-h2 {
		margin-bottom: 60px;
	}
	
	.top-rec-text h3 {
		font-size: 18px;
  		font-weight: bold;
  		line-height: 30px;
  		letter-spacing: 1.8px;
  		text-align: left;
  		color: #f18405;
		margin: 20px 0 10px;
	}
	
	.top-rec-btn {
		width: 250px;
		margin: 30px auto 0 auto;
	}
	
	/*会社情報*/
	#top-com {
		position: relative;
		width: 100%;
		height: auto;
		padding: 60px 0 70px 0;
		margin: 0 0 0 0;
	}
	
	.top-com-title-back {
		position: relative;
		width: 100%;
		height: auto;
	}
	
	.top-com-title .p-img {
		display: block;
    	position: relative;
    	width: 100%;
    	height: 225px;
		object-fit: cover;
    	background: rgba(128,128,128,0.5);
	}
	
	.top-com-title {
		position: relative;
		width: 100%;
		height: auto;
	}
	
	.top-com-h2 {
		margin: 0 auto 60px 0;
	}
	
	.top-com-h2::before {
		border-bottom: solid 1px #E5E5E5!important;
	}
	
	.top-com-title p {
		display: block;
		width: 290px;
		height: auto;
		margin: 20px auto 5px;
		font-size: 13px;
  		font-weight: 500;
  		line-height: normal;
  		letter-spacing: normal;
  		text-align: left;
  		color: #000;
	}
	
	.top-com-con {
		position: relative;
		width: 300px;
		height: auto;
		margin: 30px auto 0 auto;
	}
	
	.top-com-img {
		z-index: 1;
		width: 300px;
		height: 100px;
		padding: 0 0 0 0;
		border-radius: 5px;
		overflow: hidden;
	}
	
	.top-com-img img {
		z-index: 1;
		width: 300px;
		height: 100px;
		object-fit: cover;
		overflow: hidden;
	}
	
	.top-com-img::after {
		z-index: -1;
		position: relative;
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		top: 0;
		background-repeat: no-repeat;
		background-size: 100% 100%;
	}
	
	/*位置・背景設定*/
	.top-com01 {
		display: block;
		position: relative;
		width: 300px;
		height: 100px;
		margin: 0 auto 30px;
		
	}
	
	.top-com02 {
		display: block;
		position: relative;
		width: 300px;
		height: 100px;
		margin: 0 auto 30px;
	}
	
	.top-com03 {
		display: block;
		position: relative;
		width: 300px;
		height: 100px;
		margin: 0 auto 30px;
	}
	
	.top-com-img .p-img {
    	z-index: 1;
    	width: 300px;
    	height: 100px;
    	background: rgba(128,128,128,0.5);
		border-radius: 5px;
	}
	
	.top-com-img h3 {
		position: absolute;
    	top: 50%;
    	left: 50%;
    	margin-right: -50%;
    	transform: translate(-50%, -50%);
    	width: 100%;
    	height: auto;
    	font-size: 15px;
    	font-weight: bold;
    	line-height: normal;
    	letter-spacing: 1.5px;
    	text-align: center;
    	color: #fff;
	}
	
	.top-com-btn {
		width: 250px;
		padding: 9px 0;
		margin: 20px auto 0 auto;
	}
	
	/*新着情報*/
	#top-news {
		position: relative;
		width: 300px;
		height: auto;
		padding: 0 0 50px 0;
		margin: 0 auto;
	}
	
	.top-news-h2 {
		margin: 0 auto 30px auto;
	}
	
	.top-news-con {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto 30px auto;
	}
	
	#top-news .news-title {
		display: block;
		width: 300px!important;
	}
	
	#top-news .news-loop {
		margin-bottom: 15px!important;
	}
	
	.top-news-btn {
		width: 250px;
		margin: 0 auto 0 auto;
	}
	
}