@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: 1281px) {
	.pc {
		display: block !important;
	}

	.sp {
		display: none !important;
	}

	main {
		padding: 75px 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: 75px 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: #25449A;
	}

	#top-key h2 span {
		display: block;
		font-family: "Montserrat";
		font-size: 26px;
		font-weight: 500;
		line-height: 42px;
		letter-spacing: 4px;
		text-align: left;
		color: #00050F;
		margin-top: 20px;
	}

	.slider {
		width: 100%;
		height: 780px !important;
	}

	/*新着情報*/
	#top-news {
		position: relative;
		width: 1000px;
		height: auto;
		padding: 200px 0 100px;
		margin: 0 auto;
		text-align: center;
	}

	.top-news-h2 {
		position: relative;
		display: block;
		text-align: center;
		margin: 0 0 70px 0;
	}

	.top-news-h2::before {
		content: "";
		position: absolute;
		top: -135px;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		width: 1px;
		height: 120px;
		background: #707070;
	}

	.top-news-con {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto 50px auto;
	}

	#top-news .news-title {
		width: 850px;
	}

	.top-news-btn {
		width: 260px;
		margin: 0 auto 0 auto;
	}

	/*アイエムセップとは*/
	.top-about-con {
		display: grid;
		grid-template-columns: 580px 650px;
		column-gap: 50px;
		justify-content: center;
		margin-bottom: 100px;
	}

	.top-about-text h3 {
		margin-top: 20px;
		margin-bottom: 30px;
		font-size: clamp(20px, 3.6vw, 28px);
		line-height: 1.45;
	}

	.top-about-btn {
		width: 300px;
		margin: 40px auto 0 0;
	}

	.top-about-img01 {
		width: 100%;
		border-radius: 10px;
	}

	.top-about-text ul {
		list-style: none;
		margin-bottom: 30px;
	}

	.top-about-text ul li {
		font-size: 20px;
		font-weight: bold;
		margin-bottom: 20px;
		color: #333333;
		text-align: left;
	}

	/*アイエムセップとは*/
	.top-ab-con {
		display: grid;
		grid-template-columns: 650px 580px;
		column-gap: 50px;
		justify-content: center;
		margin-bottom: 100px;
	}

	.top-ab-text {
		grid-column: 2 / 3;
		grid-row: 1 / 2;
	}

	.top-ab-text h3 {
		margin-top: 20px;
		margin-bottom: 30px;
		font-size: clamp(20px, 3.6vw, 28px);
		line-height: 1.45;
	}

	.top-ab-btn {
		width: 300px;
		margin: 40px auto 0 0;
	}

	.top-ab-img {
		grid-column: 1 / 2;
		grid-row: 1 / 2;
	}

	.top-ab-img01 {
		width: 100%;
		border-radius: 10px;
	}

	.top-ab-text ul {
		list-style: none;
		margin-bottom: 30px;
	}

	.top-ab-text ul li {
		font-size: 20px;
		font-weight: bold;
		margin-bottom: 20px;
		color: #333333;
		text-align: left;
	}

	/*h2設定*/
	.top-h2 {
		z-index: 1;
		position: relative;
		display: block;
		font-family: 'Noto Sans JP', sans-serif;
		font-size: 60px;
		font-weight: 500;
		letter-spacing: 3px;
		line-height: 72px;
		color: #25449A;
	}

	.top-h2 span {
		position: absolute;
		top: 130%;
		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: #25449A;
	}

	/*h3設定*/
	.top-h3 {
		font-size: 36px;
		font-weight: bold;
		letter-spacing: normal;
		line-height: 58px;
		color: #333;
		text-align: left;
	}

	.top-ab-h2 span {
		padding: 5px 15px;
	}

	.top-ab-text h3 {
		position: relative;
		display: block;
		font-family: 'Noto Sans JP', sans-serif;
		font-size: 50px;
		font-weight: 500;
		letter-spacing: 3px;
		line-height: 72px;
		color: #25449A;
		margin-top: 20px;
	}

	.top-ab-text p {
		display: block;
		font-size: 28px;
		font-weight: 600;
		line-height: 42px;
		width: 560px;
		height: auto;
		margin-top: 20px;
	}

	.top-ab-back {
		z-index: -2;
		position: absolute;
		bottom: 30px;
		left: 0;
		width: 600px;
		height: 740px;
		background-image: url(/wp-content/uploads/2023/05/tp_ab_back.gif);
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	}

	.top-ab-back-shape {
		z-index: -1;
		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-consul {
		position: relative;
		margin-bottom: 100px;
		padding: 120px 40px;
		color: #fff;
		text-align: center;
		overflow: hidden;
		z-index: 0;
	}

	/* 青の斜めオーバーレイ */
	#top-consul::after {
		content: "";
		position: absolute;
		inset: 0;
		background: rgba(37, 68, 154, 0.85);
		/* #25449Aを半透明化 */
		clip-path: polygon(0 8%,
				/* 左上の角度 */
				100% 0,
				/* 右上の角度 */
				100% 92%,
				/* 右下の角度 */
				0 100%
				/* 左下の角度 */
			);
		z-index: -1;
	}

	#top-consul h2 {
		width: 100%;
		margin: 0 auto 40px 0;
		text-align: center;
		color: #fff;
	}

	#top-consul p {
		display: block;
		width: 460px;
		height: auto;
		margin: 0 auto;
		color: #fff;
		text-align: center;
	}

	.top-consul-btn {
		width: 260px;
		margin: 40px auto 0 auto;
	}


	/*ワークの強み*/
	#top-str {
		position: relative;
		width: 100%;
		height: auto;
		padding: 0 0 100px 0;
		margin: 0 0 0 0;
		overflow: hidden;
	}

	.top-str-h2 {
		display: block;
		font-size: 72px;
		text-align: left;
		margin: 0 0 25px 25px;
	}

	.top-str-h3 {
		position: relative;
		width: 850px;
		height: auto;
		margin: 0 25px 75px auto;
	}

	.top-str-h3 h3 {
		margin-bottom: 20px;
	}

	.top-str-back {
		z-index: -2;
		position: absolute;
		top: 0;
		left: 0;
		width: 860px;
		height: 1000px;
		background-image: url(/wp-content/uploads/2023/05/tp-_str_back.png);
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	}

	.top-str-con {
		position: relative;
		width: 1260px;
		height: auto;
		margin: 0 auto;
	}

	.top-str00 {
		z-index: 1;
		position: relative;
		display: flex;
		width: 100%;
		height: auto;
	}

	.top-str01 {
		position: relative;
		width: 370px;
		height: auto;
		margin: 0 25px;
	}

	.top-str01 img {
		display: block;
		width: 400px;
		height: 300px;
		border-radius: 10px;
		background: rgba(128, 128, 128, 0.5);
		margin-bottom: 15px;
	}

	.top-str02 {
		position: relative;
		width: 370px;
		height: auto;
		margin: 0 25px;
	}

	.top-str02 img {
		display: block;
		width: 370px;
		height: 300px;
		border-radius: 10px;
		background: rgba(128, 128, 128, 0.5);
		margin-bottom: 15px;
	}

	.top-str03 {
		position: relative;
		width: 370px;
		height: auto;
		margin: 0 25px;
	}

	.top-str03 img {
		display: block;
		width: 370px;
		height: 300px;
		border-radius: 10px;
		background: rgba(128, 128, 128, 0.5);
		margin-bottom: 15px;
	}

	.top-str-text {
		position: relative;
		width: 390px;
	}

	.top-str-text h4 {
		display: block;
		width: 100%;
		height: auto;
		margin: 0 0 8px 0;
		font-size: 24px;
		font-weight: bold;
		line-height: normal;
		letter-spacing: normal;
		text-align: left;
		color: #25449A;
	}

	.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: 80px auto 0 auto;
	}

	/*事業内容*/
	#top-bus {
		position: relative;
		width: 100%;
		height: auto;
		margin-bottom: 100px;
	}

	.top-bus-h2 {
		text-align: right;
		margin: 0 auto 70px auto;
	}

	.top-bus-con {
		display: grid;
		grid-template-columns: repeat(3, calc(1180px / 3));
		column-gap: 50px;
		row-gap: 30px;
		justify-content: center;
		justify-items: center;
		margin-bottom: 50px;
	}

	.top-bus-img {
		z-index: 1;
		width: 100%;
		height: 300px;
		padding: 0 0 0 0;
		overflow: hidden;
		border-radius: 10px;
	}

	.top-bus-img img {
		display: block;
		position: relative;
		width: 100%;
		height: 100%;
		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: 100%;
		height: 100%;
		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-bus02,
	.top-bus03,
	.top-bus04,
	.top-bus05,
	.top-bus06 {
		display: block;
		position: relative;
		width: 100%;
		height: auto;
	}

	.top-bus02:hover .top-bus-img img,
	.top-bus03:hover .top-bus-img img,
	.top-bus04:hover .top-bus-img img,
	.top-bus05:hover .top-bus-img img,
	.top-bus06: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: #25449A;
		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;
	}

	.top-bus-btn {
		width: 300px;
		margin: 0 auto;
	}

	/*施工実績*/
	#top-works {
		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: 335px;
		height: 450px;
		background-image: url(/wp-content/uploads/2022/12/top_background2-1.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-h2 {
		display: block;
		text-align: center;
		margin: 0 0 100px 0;
	}

	.top-stf-con {
		position: relative;
		width: 1300px;
		height: auto;
		margin: 0 auto;
	}

	.top-stf-img {
		z-index: 1;
		width: 350px;
		height: 450px;
		padding: 0 0 0 0;
		border-radius: 10px;
		overflow: hidden;
	}

	.top-stf-img img {
		position: relative;
		width: 350px;
		height: 450px;
		-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: 350px;
		height: 550px;
		margin-right: 125px;
		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: 350px;
		height: 550px;
		margin-right: 125px;
		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: 95px 0 200px;
	}

	.top-rec-con {
		position: relative;
		width: 93%;
		max-width: 1700px;
		height: auto;
		margin: 0 auto;
	}

	.top-rec-text {
		position: relative;
		width: 415px;
		height: auto;
		margin: 0 auto;
	}

	.top-rec-img {
		position: absolute;
		top: 0;
		left: 0;
		transform: translate(0, 0);
		width: 60%;
		height: auto;
	}

	.top-rec-img img {
		display: block;
		position: relative;
		width: 100%;
		height: 500px;
		background: rgba(128, 128, 128, 0.5);
		border-radius: 10px;
		object-fit: cover;
	}

	.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: 32px;
		font-weight: bold;
		line-height: normal;
		letter-spacing: normal;
		text-align: center;
		margin: 25px auto;
	}

	.top-rec-text p {
		font-size: 14px;
		text-align: center;
	}

	.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;
		background: #25449A;
	}

	.top-com-key img {
		width: 100%;
		height: 450px;
		object-fit: cover;
		-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: 50%;
		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 40px 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;
		text-align: center;
	}

	.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;
		background-color: #333;
		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;
		transition: 0.4 ease;
	}

	.top-com01:hover {
		opacity: 0.7;
	}

	.top-com02 {
		display: block;
		position: absolute;
		top: 0;
		left: 415px;
		width: 370px;
		height: 200px;
		transition: 0.4 ease;
	}

	.top-com02:hover {
		opacity: 0.7;
	}


	.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;
		transition: 0.4 ease;
	}

	.top-com03:hover {
		opacity: 0.7;
	}


	.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;
	}

}

/*TAB*/
@media screen and (min-width: 769px) and (max-width: 1280px) {
	.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: 500px;
		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: 24px;
		font-weight: bold;
		line-height: normal;
		letter-spacing: normal;
		text-align: center;
		color: #25449A;
	}

	#top-key h2 span {
		display: block;
		font-family: 'Montserrat';
		font-size: 18px;
		font-weight: 500;
		letter-spacing: normal;
		color: #00050F;
		font-family: "Montserrat";
		margin-top: 10px;
	}

	.slider {
		width: 100%;
		height: 510px !important;
	}

	/*新着情報*/
	#top-news {
		position: relative;
		width: 500px;
		height: auto;
		padding: 120px 0 50px 0;
		margin: 0 auto;
	}

	.top-news-h2 {
		margin: 0 auto 30px auto;
	}

	.top-news-h2::before {
		content: "";
		position: absolute;
		top: -75px;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		width: 1px;
		height: 60px;
		background: #707070;
	}

	.top-news-con {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto 30px auto;
	}

	#top-news .news-title {
		display: block;
		width: 100% !important;
	}

	#top-news .news-loop {
		margin-bottom: 15px !important;
	}

	.top-news-btn {
		width: 250px;
		margin: 0 auto 0 auto;
	}

	/*アイエムセップとは*/
	#top-about {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 0 0 0;
	}

	.top-about-con {
		position: relative;
		width: 500px;
		height: auto;
		margin: 0 auto 50px;
	}

	.top-about-text {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto;
	}

	.top-about-img-1 {
		position: relative;
		width: 100%;
		height: auto;
		margin: 25px auto 0;
	}

	.top-about-img01 {
		width: 95%;
		border-radius: 5px;
	}

	.top-about-btn {
		width: 250px;
		margin: 30px auto 0 auto;
	}

	.top-about-text ul {
		list-style: none;
		margin-bottom: 15px;
	}

	.top-about-text ul li {
		font-size: 16px;
		font-weight: bold;
		margin-bottom: 10px;
		color: #333333;
		text-align: left;
	}

	/*技術コンサル*/
	#top-consul {
		position: relative;
		margin-bottom: 50px;
		padding: 60px 20px;
		color: #fff;
		text-align: center;
		overflow: hidden;
		z-index: 0;
	}

	/* 青の斜めオーバーレイ */
	#top-consul::after {
		content: "";
		position: absolute;
		inset: 0;
		background: rgba(37, 68, 154, 0.85);
		/* #25449Aを半透明化 */
		clip-path: polygon(0 8%,
				/* 左上の角度 */
				100% 0,
				/* 右上の角度 */
				100% 92%,
				/* 右下の角度 */
				0 100%
				/* 左下の角度 */
			);
		z-index: -1;
	}

	#top-consul h2 {
		width: 100%;
		margin: 0 auto 20px 0;
		text-align: center;
		color: #fff;
	}

	#top-consul p {
		display: block;
		width: 320px;
		height: auto;
		margin: 20px auto 5px;
		font-size: 13px;
		font-weight: 500;
		line-height: normal;
		letter-spacing: normal;
		text-align: center;
		color: #fff;
	}

	.top-consul-btn {
		width: 250px;
		padding: 9px 0;
		margin: 20px auto 0 auto;
	}

	/*技術シーズ*/
	#top-ab {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 0 0 0;
	}

	.top-ab-con {
		position: relative;
		width: 500px;
		height: auto;
		margin: 0 auto 50px;
	}

	.top-ab-text {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto;
	}

	.top-ab-img-1 {
		position: relative;
		width: 100%;
		height: auto;
		margin: 25px auto 0;
	}

	.top-ab-img01 {
		width: 95%;
		border-radius: 5px;
	}

	.top-ab-btn {
		width: 250px;
		margin: 30px auto 0 auto;
	}

	.top-ab-text ul {
		list-style: none;
		margin-bottom: 15px;
	}

	.top-ab-text ul li {
		font-size: 16px;
		font-weight: bold;
		margin-bottom: 10px;
		color: #333333;
		text-align: left;
	}

	.top-ab-text h3 {
		margin: 10px 0 20px 0;
		text-align: center;
	}

	/*h2設定*/

	.top-h2 {
		z-index: 1;
		position: relative;
		display: block;
		font-family: 'Noto Sans JP', sans-serif;
		font-size: 28px;
		font-weight: 500;
		letter-spacing: 2px;
		line-height: normal;
		color: #25449A;
		text-align: center;
	}

	/*h3設定*/
	.top-h3 {
		font-size: 20px;
		font-weight: bold;
		line-height: normal;
		letter-spacing: 2px;
		text-align: left;
		color: #333;
	}

	.top-about-text h3 {
		margin: 30px 0 25px 0;
	}

	/*ワークの強み*/
	#top-str {
		position: relative;
		width: 100%;
		height: auto;
		padding: 0 0 40px 0;
		margin: 0 0 0 0;
		overflow: hidden;
	}

	.top-str-h2 {
		margin: 0 auto 30px;
	}

	.top-str-h3 {
		position: relative;
		width: 100%;
		height: auto;
		margin-bottom: 30px;
	}

	.top-str-h3 h3 {
		font-size: 20px;
		text-align: center;
		margin-bottom: 10px;
	}

	.top-str-con {
		position: relative;
		width: 500px;
		height: auto;
		margin: 0 auto;
	}

	.top-str00 {
		z-index: 1;
		position: relative;
		width: 100%;
		height: auto;
	}

	.top-str01 {
		position: relative;
		width: 500px;
		height: auto;
		margin: 0 auto;
	}

	.top-str01 img {
		display: block;
		width: 500px;
		height: 375px;
		background: rgba(128, 128, 128, 0.5);
		margin-bottom: 15px;
		border-radius: 5px;
	}

	.top-str02 {
		position: relative;
		width: 500px;
		height: auto;
		margin: 30px auto 0;
	}

	.top-str02 img {
		display: block;
		width: 500px;
		height: 375px;
		background: rgba(128, 128, 128, 0.5);
		margin-bottom: 15px;
		border-radius: 5px;
	}

	.top-str03 {
		position: relative;
		width: 500px;
		height: auto;
		margin: 30px auto 0;
	}

	.top-str03 img {
		display: block;
		width: 500px;
		height: 375px;
		background: rgba(128, 128, 128, 0.5);
		margin-bottom: 15px;
		border-radius: 5px;
	}

	.top-str-text {
		z-index: 1;
		position: relative;
		width: 100%;
	}

	.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: #25449A;
	}

	/*参考サイズ*/

	.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: #25449A;
	}

	.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: #25449A;
	}

	.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;
		margin-bottom: 50px;
	}

	.top-bus-back {
		z-index: -2;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 243px;
		background-image: url(/wp-content/uploads/2022/12/top_background_smp1.png);
		background-size: 100% 100%;
		background-position: center;
		background-repeat: no-repeat;
	}

	.top-bus-h2 {
		margin: 0 auto 25px 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: 500px;
		height: auto;
		margin: 0 auto 25px;
	}

	.top-bus-con h3 {
		margin: 0 0 7px 0;
	}

	.top-bus-img {
		z-index: 1;
		width: 500px;
		height: 375px;
		padding: 0 0 0 0;
		margin: 0 0 15px 0;
		border-radius: 8px;
		overflow: hidden;
	}

	.top-bus-img img {
		display: block;
		position: relative;
		width: 100%;
		height: 100%;
		background: rgba(128, 128, 128, 0.5);
		border-radius: 5px;
	}

	.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-bus02,
	.top-bus03,
	.top-bus04,
	.top-bus05,
	.top-bus06 {
		display: block;
		position: relative;
		width: 500px;
		height: auto;
		margin: 0 auto 40px 0;
	}

	.top-bus-text {
		position: relative;
		width: 500px;
		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: #25449A;
		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;
		overflow: hidden;
	}

	.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: -95px;
		left: 0;
		width: 180px;
		height: 245px;
		background-image: url(/wp-content/uploads/2022/12/top_background2-1.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: 25px;
		left: 0;
		width: 100%;
		height: 243px;
		background-image: url(/wp-content/uploads/2022/12/top_background_smp2.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: 20px 0 60px;
	}

	.top-rec-con {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 0 0 0;
	}

	.top-rec-text {
		position: relative;
		width: 500px;
		height: auto;
		margin: 0 auto;
	}

	.top-rec-img {
		position: relative;
		width: 500px;
		height: 280px;
		margin: 0 auto;
	}

	.top-rec-img img {
		display: block;
		position: relative;
		width: 500px;
		height: 280px;
		background: rgba(128, 128, 128, 0.5);
		object-fit: cover;
	}

	.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: 40px;
	}

	.top-rec-text h3 {
		font-size: 18px;
		font-weight: bold;
		line-height: 30px;
		letter-spacing: 1.8px;
		text-align: left;
		color: #25449A;
		margin: 20px 0 10px;
	}

	.top-rec-btn {
		width: 250px;
		margin: 30px auto 0 auto;
	}

	/*会社情報*/
	#top-com {
		position: relative;
		width: 100%;
		height: auto;
		padding-top: 40px;
	}

	.top-com-title-back {
		position: relative;
		width: 100%;
		height: auto;
	}

	.top-com-key {
		position: relative;
		width: 100%;
		height: 300px;
		background: #25449A;
	}

	.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: absolute;
		top: 50%;
		left: 50%;
		margin-right: -50%;
		transform: translate(-50%, -50%);
		width: 100%;
		height: auto;
	}

	.top-com-h2 {
		margin: 0 auto 20px 0;
	}

	.top-com-h2::before {
		border-bottom: solid 1px #E5E5E5 !important;
	}

	.top-com-title p {
		display: block;
		width: 320px;
		height: auto;
		margin: 20px auto 5px;
		font-size: 13px;
		font-weight: 500;
		line-height: normal;
		letter-spacing: normal;
		text-align: center;
		color: #000;
	}

	.top-com-con {
		position: relative;
		width: 500px;
		height: auto;
		margin: 30px auto 0 auto;
	}

	.top-com-img {
		z-index: 1;
		width: 500px;
		height: 165px;
		padding: 0 0 0 0;
		border-radius: 5px;
		background-color: #333;
		overflow: hidden;
	}

	.top-com-img img {
		z-index: 1;
		width: 500px;
		height: 165px;
		object-fit: cover;
		overflow: hidden;
		background: rgba(128, 128, 128, 0.5);
	}

	.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-com-title-bg {
		z-index: -1;
		position: absolute;
		top: 50%;
		left: 50%;
		margin-right: -50%;
		transform: translate(-50%, -50%) rotate(45deg);
		width: 300px;
		height: 300px;
		border-radius: 10px;
		background-color: #fff;
	}

	/*位置・背景設定*/
	.top-com01 {
		display: block;
		position: relative;
		width: 500px;
		height: 165px;
		margin: 0 auto 30px;

	}

	.top-com02 {
		display: block;
		position: relative;
		width: 500px;
		height: 165px;
		margin: 0 auto 30px;
	}

	.top-com03 {
		display: block;
		position: relative;
		width: 500px;
		height: 165px;
		margin: 0 auto 30px;
	}

	.top-com-img .p-img {
		z-index: 1;
		width: 500px;
		height: 165px;
		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;
	}

}

/*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: 500px;
		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: 24px;
		font-weight: bold;
		line-height: normal;
		letter-spacing: normal;
		text-align: center;
		color: #25449A;
	}

	#top-key h2 span {
		display: block;
		font-family: 'Montserrat';
		font-size: 18px;
		font-weight: 500;
		letter-spacing: normal;
		color: #00050F;
		font-family: "Montserrat";
		margin-top: 10px;
	}

	.slider {
		width: 100%;
		height: 510px !important;
	}

	/*新着情報*/
	#top-news {
		position: relative;
		width: 300px;
		height: auto;
		padding: 120px 0 50px 0;
		margin: 0 auto;
	}

	.top-news-h2 {
		margin: 0 auto 30px auto;
	}

	.top-news-h2::before {
		content: "";
		position: absolute;
		top: -75px;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		width: 1px;
		height: 60px;
		background: #707070;
	}

	.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;
	}

	/*アイエムセップについて*/
	#top-about {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 0 0 0;
	}

	.top-about-con {
		position: relative;
		width: 325px;
		height: auto;
		margin: 0 auto 50px;
	}

	.top-about-text {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto;
	}

	.top-about-img-1 {
		position: relative;
		width: 100%;
		height: auto;
		margin: 25px auto 0;
	}

	.top-about-img01 {
		width: 95%;
		border-radius: 5px;
	}

	.top-about-btn {
		width: 250px;
		margin: 30px auto 0 auto;
	}

	.top-about-text ul {
		list-style: none;
		margin-bottom: 15px;
	}

	.top-about-text ul li {
		font-size: 16px;
		font-weight: bold;
		margin-bottom: 10px;
		color: #333333;
		text-align: left;
	}

	/*技術コンサル*/
	#top-consul {
		position: relative;
		margin-bottom: 50px;
		padding: 60px 20px;
		color: #fff;
		text-align: center;
		overflow: hidden;
		z-index: 0;
	}

	/* 青の斜めオーバーレイ */
	#top-consul::after {
		content: "";
		position: absolute;
		inset: 0;
		background: rgba(37, 68, 154, 0.85);
		/* #25449Aを半透明化 */
		clip-path: polygon(0 8%,
				/* 左上の角度 */
				100% 0,
				/* 右上の角度 */
				100% 92%,
				/* 右下の角度 */
				0 100%
				/* 左下の角度 */
			);
		z-index: -1;
	}

	#top-consul h2 {
		width: 100%;
		margin: 0 auto 20px 0;
		text-align: center;
		color: #fff;
	}

	#top-consul p {
		display: block;
		width: 320px;
		height: auto;
		margin: 20px auto 5px;
		font-size: 13px;
		font-weight: 500;
		line-height: normal;
		letter-spacing: normal;
		text-align: center;
		color: #fff;
	}

	.top-consul-btn {
		width: 250px;
		padding: 9px 0;
		margin: 20px auto 0 auto;
	}

	/*技術シーズ*/
	#top-ab {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 0 0 0;
	}

	.top-ab-con {
		position: relative;
		width: 325px;
		height: auto;
		margin: 0 auto 50px;
	}

	.top-ab-text {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto;
	}

	.top-ab-img-1 {
		position: relative;
		width: 100%;
		height: auto;
		margin: 25px auto 0;
	}

	.top-ab-img01 {
		width: 95%;
		border-radius: 5px;
	}

	.top-ab-btn {
		width: 250px;
		margin: 30px auto 0 auto;
	}

	.top-ab-text ul {
		list-style: none;
		margin-bottom: 15px;
	}

	.top-ab-text ul li {
		font-size: 16px;
		font-weight: bold;
		margin-bottom: 10px;
		color: #333333;
		text-align: left;
	}

	.top-ab-text h3 {
		margin: 10px 0 20px 0;
		text-align: center;
	}

	/*h2設定*/

	.top-h2 {
		z-index: 1;
		position: relative;
		display: block;
		font-family: 'Noto Sans JP', sans-serif;
		font-size: 28px;
		font-weight: 500;
		letter-spacing: 2px;
		line-height: normal;
		color: #25449A;
		text-align: center;
	}

	/*h3設定*/
	.top-h3 {
		font-size: 20px;
		font-weight: bold;
		line-height: normal;
		letter-spacing: 2px;
		text-align: left;
		color: #333;
	}

	.top-about-text h3 {
		margin: 30px 0 25px 0;
	}

	/*ワークの強み*/
	#top-str {
		position: relative;
		width: 100%;
		height: auto;
		padding: 0 0 40px 0;
		margin: 0 0 0 0;
		overflow: hidden;
	}

	.top-str-h2 {
		margin: 0 auto 30px;
	}

	.top-str-h3 {
		position: relative;
		width: 100%;
		height: auto;
		margin-bottom: 30px;
	}

	.top-str-h3 h3 {
		font-size: 20px;
		text-align: center;
		margin-bottom: 10px;
	}

	.top-str-con {
		position: relative;
		width: 325px;
		height: auto;
		margin: 0 auto;
	}

	.top-str00 {
		z-index: 1;
		position: relative;
		width: 100%;
		height: auto;
	}

	.top-str01 {
		position: relative;
		width: 325px;
		height: auto;
		margin: 0 auto;
	}

	.top-str01 img {
		display: block;
		width: 325px;
		height: 245px;
		background: rgba(128, 128, 128, 0.5);
		margin-bottom: 15px;
		border-radius: 5px;
	}

	.top-str02 {
		position: relative;
		width: 325px;
		height: auto;
		margin: 30px auto 0;
	}

	.top-str02 img {
		display: block;
		width: 325px;
		height: 245px;
		background: rgba(128, 128, 128, 0.5);
		margin-bottom: 15px;
		border-radius: 5px;
	}

	.top-str03 {
		position: relative;
		width: 325px;
		height: auto;
		margin: 30px auto 0;
	}

	.top-str03 img {
		display: block;
		width: 325px;
		height: 245px;
		background: rgba(128, 128, 128, 0.5);
		margin-bottom: 15px;
		border-radius: 5px;
	}

	.top-str-text {
		z-index: 1;
		position: relative;
		width: 100%;
	}

	.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: #25449A;
	}

	/*参考サイズ*/

	.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: #25449A;
	}

	.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: #25449A;
	}

	.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: 0 0 40px 0;
	}

	.top-bus-back {
		z-index: -2;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 243px;
		background-image: url(/wp-content/uploads/2022/12/top_background_smp1.png);
		background-size: 100% 100%;
		background-position: center;
		background-repeat: no-repeat;
	}

	.top-bus-h2 {
		margin: 0 auto 25px 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 50px;
	}

	.top-bus-con h3 {
		margin: 0 0 7px 0;
	}

	.top-bus-img {
		z-index: 1;
		width: 325px;
		height: 200px;
		padding: 0 0 0 0;
		margin: 0 0 15px 0;
		border-radius: 8px;
		overflow: hidden;
	}

	.top-bus-img img {
		display: block;
		position: relative;
		width: 100%;
		height: 100%;
		background: rgba(128, 128, 128, 0.5);
		border-radius: 5px;
	}

	.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-bus02,
	.top-bus03,
	.top-bus04,
	.top-bus05,
	.top-bus06 {
		display: block;
		position: relative;
		width: 325px;
		height: auto;
		margin: 0 auto 40px 0;
	}

	.top-bus01 .p-img,
	.top-bus02 .p-img,
	.top-bus03 .p-img,
	.top-bus04 .p-img,
	.top-bus05 .p-img,
	.top-bus06 .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: #25449A;
		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;
		overflow: hidden;
	}

	.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: -95px;
		left: 0;
		width: 180px;
		height: 245px;
		background-image: url(/wp-content/uploads/2022/12/top_background2-1.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: 25px;
		left: 0;
		width: 100%;
		height: 243px;
		background-image: url(/wp-content/uploads/2022/12/top_background_smp2.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: 20px 0 60px;
	}

	.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 img {
		display: block;
		position: relative;
		width: 350px;
		height: 195px;
		background: rgba(128, 128, 128, 0.5);
		object-fit: cover;
	}

	.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: 40px;
	}

	.top-rec-text h3 {
		font-size: 18px;
		font-weight: bold;
		line-height: 30px;
		letter-spacing: 1.8px;
		text-align: left;
		color: #25449A;
		margin: 20px 0 10px;
	}

	.top-rec-btn {
		width: 250px;
		margin: 30px auto 0 auto;
	}

	/*会社情報*/
	#top-com {
		position: relative;
		width: 100%;
		height: auto;
		padding-top: 40px;
	}

	.top-com-title-back {
		position: relative;
		width: 100%;
		height: auto;
	}

	.top-com-key {
		position: relative;
		width: 100%;
		height: 300px;
		background: #25449A;
	}

	.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: absolute;
		top: 50%;
		left: 50%;
		margin-right: -50%;
		transform: translate(-50%, -50%);
		width: 100%;
		height: auto;
	}

	.top-com-h2 {
		margin: 0 auto 20px 0;
	}

	.top-com-h2::before {
		border-bottom: solid 1px #E5E5E5 !important;
	}

	.top-com-title p {
		display: block;
		width: 320px;
		height: auto;
		margin: 20px auto 5px;
		font-size: 13px;
		font-weight: 500;
		line-height: normal;
		letter-spacing: normal;
		text-align: center;
		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;
		background-color: #333;
		overflow: hidden;
	}

	.top-com-img img {
		z-index: 1;
		width: 300px;
		height: 100px;
		object-fit: cover;
		overflow: hidden;
		background: rgba(128, 128, 128, 0.5);
	}

	.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-com-title-bg {
		z-index: -1;
		position: absolute;
		top: 50%;
		left: 50%;
		margin-right: -50%;
		transform: translate(-50%, -50%) rotate(45deg);
		width: 300px;
		height: 300px;
		border-radius: 10px;
		background-color: #fff;
	}

	/*位置・背景設定*/
	.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;
	}

}