@charset "utf-8";

/* =========================================
* ページ全体の共通パーツ
* ======================================== */
html {
	scroll-padding-top: var(--header-height);
	/* 追従メニューの高さに応じて適切な値を設定 */
	scroll-behavior: smooth;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: var(--txt16-14);
	text-align: justify;
	line-height: 175%;
	letter-spacing: .64px;
}

main {
	margin-top: var(--header-height);
	overflow: clip;
}

section {
	padding: var(--m40-24) 0px;
	display: flex;
	justify-content: center;
	align-items: center;
}

section:nth-of-type(1) {
	padding: var(--m80-40) 0 var(--m40-24) 0;
}

section:last-child {
	padding-bottom: var(--m120-80);
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--hov-move);

	&::after,
	&::before {
		transition: var(--hov-move);
	}
}


img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

.container {
	width: 1080px;
	max-width: 92%;
	display: block;
	margin: auto;
}

@media(max-width:768px) {

	.sp_none {
		display: none !important;
	}
}

@media(min-width:769px) {
	.pc_none {
		display: none !important;
	}
}

.txtC {
	text-align: center;
}

.txtR {
	text-align: right;
}

.txtL {
	text-align: left;
}

.txtJ {
	text-align: justify;
}


/* フレックス関連
* ---------------------------------- */
.flex {
	display: flex;
}

.sp-flex {
	display: flex;
}

.flexR {
	flex-direction: row-reverse;
}

.justC {
	justify-content: center;
}

.justS {
	justify-content: flex-start;
}

.justE {
	justify-content: flex-end;
}

.justB {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.justA {
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.flexW {
	flex-wrap: wrap;
}

.alignS {
	align-items: start;
}

.alignC {
	align-items: center;
}

.alignB {
	align-items: flex-end;
}


@media (max-width: 768px) {
	.flex {
		flex-direction: column;
	}

	.sp-flex {
		display: flex;
	}
}



/* =========================================
* 共通パーツ
* ======================================== */

/* 変数
* ---------------------------------- */
:root {
	--main-color: #00729F;
	--sub-color: #6DBDDC;
	--bg-gray: #F9F9F9;
	--bg-blue: #E0EBF1;
	--txt-gray: #373B40;
	--txt-gray02: #767676;
	--blue-gray: #BAC2C9;
	--gray: #E6E6E6;
	--en-txt: "Roboto", "sans-serif";
	--header-height: 96px;
	--kunoji: rotate(45deg) translateY(-50%);
	--hov-move: all .4s;
	--txt54-36: 54px;
	--txt40-28: 40px;
	--txt36-24: 36px;
	--txt32-24: 32px;
	--txt28-20: 28px;
	--txt24-20: 24px;
	--txt20-18: 20px;
	--txt18-16: 18px;
	--txt16-14: 16px;
	--txt14-13: 14px;
	--m120-80: 80px;
	--m104-56: 104px;
	--m80-40: 80px;
	--m56-32: 56px;
	--m40-24: 40px;
	--m32-16: 32px;
	--m24-16: 24px;
	--m16-8: 16px;
}


/* パンくず
* ---------------------------------- */

.bread-list {
	margin: var(--m24-16) 0;
	display: flex;
	justify-content: flex-end;
	font-size: 12px;
	font-weight: 400;
	flex-wrap: wrap;
}

.bread-list li {
	position: relative;
	margin-right: 32px;
	font-weight: 500;
	line-height: normal;
}

.bread-list li a {
	border-bottom: #000 1px solid;
}

.bread-list li::after {
	position: absolute;
	content: "";
	width: 6px;
	height: 6px;
	border-top: solid 1px #000;
	border-right: solid 1px #000;
	top: 50%;
	right: -16px;
	transform: var(--kunoji);
}

.bread-list li:last-child {
	margin-right: 0;
}

.bread-list li:last-child::after {
	display: none;
}

/* テキストまわり
* ---------------------------------- */

/* --- 普通のリスト --- */
ul.normal-list {
	padding-left: 1.5em;
	text-indent: -1.5em;
}

.normal-list li {
	list-style-type: disc;
	list-style-position: inside;
}

ol.number-list {
	padding-left: 1.2em;
	text-indent: -1.2em;
}

.number-list li {
	list-style-type: decimal;
	list-style-position: inside;
}


/* --- 注釈 --- */
ul.note {
	padding-left: 1em;
	text-indent: -1em;
	text-align: justify;
	line-height: 150%;
}

a.inline-link {
	color: var(--main-color);
	text-decoration: underline;
	font-weight: 500;
}

/* --- 太字 --- */
.bold-txt {
	font-weight: 700;
}

/* --- 色つき --- */
.main-color-txt {
	color: var(--main-color);
}

/* --- リード文 --- */
.lead-copy {
	font-size: var(--txt20-18);
	font-weight: 700;
}

/* --- 見出し --- */
h2.en-midashi,
h3.en-midashi {
	position: relative;
	font-size: var(--txt28-20);
	margin-bottom: var(--m56-32);

	&::before {
		content: attr(data-en);
		display: block;
		font-weight: 500;
		font-size: .65em;
		position: absolute;
		left: 0;
		bottom: -1.8em;
		letter-spacing: 1.8px;
		font-family: var(--en-txt);
	}
}

h2.line-midashi {
	border-bottom: solid 3px var(--blue-gray);
	position: relative;
	font-size: var(--txt24-20);
	color: var(--main-color);
	padding-bottom: var(--m24-16);
	margin-bottom: var(--m32-16);
	text-align: left;

	&::after {
		position: absolute;
		content: "";
		display: block;
		border-bottom: solid 3px var(--main-color);
		bottom: -3px;
		width: var(--m56-32);
	}
}

h3.sideline-midashi {
	text-align: left;
	font-size: var(--txt20-18);
	margin-bottom: var(--m24-16);
	border-left: 3px solid var(--main-color);
	padding-left: .6em;

	&.border-midashi {
		position: relative;
		margin-bottom: var(--m32-16);

		&::after {
			height: 1px;
			width: 100%;
			background-color: var(--txt-gray02);
			content: "";
			position: absolute;
			bottom: -.7em;
			left: 0;
		}
	}
}

/* --- くの字 --- */
.kunoji,
.right-kunoji,
.right-kunoji {
	display: inline-block;
	width: .6em;
	height: .6em;
	transform: rotate(45deg);
	margin-left: 0.2em;
	transition: var(--hov-move);
}

.kunoji {
	border-right: 2px solid var(--main-color);
	border-bottom: 2px solid var(--main-color);
}

.right-kunoji {
	border-right: 2px solid var(--main-color);
	border-top: 2px solid var(--main-color);
}


/* 三角形
* ---------------------------------- */
.triangle {
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 35px solid transparent;
	border-left: 35px solid transparent;
	border-top: 20px solid var(--main-color);
	border-bottom: 0;
	margin: auto;
}

/* テーブル
* ---------------------------------- */
.default-table {
	width: 100%;
	background: #fff;

	tr {
		border-top: var(--txt-gray02) 1px solid;

		&:last-child {
			border-bottom: var(--txt-gray02) 1px solid;
		}
	}

	th {
		color: var(--main-color);
		padding: var(--m24-16) var(--m32-16);
		width: 150px;

		&:nth-child(2) {
			width: 105px;
			text-align: right;
		}
	}

	td {
		padding: var(--m24-16);
		vertical-align: middle;
	}
}

/* ボタン達
* ---------------------------------- */
.top-contact-btn {
	border: solid 1px var(--main-color);
	color: var(--main-color);
	font-weight: 700;
	display: flex;
	padding: .4em 2.5em .4em 1.5em;
	position: relative;
	border-radius: 50px;
	white-space: nowrap;
	font-size: min(1.3vw, 16px);

	&::after {
		content: "";
		position: absolute;
		border-top: 2px solid var(--main-color);
		border-right: 2px solid var(--main-color);
		width: .5em;
		height: .5em;
		transform: var(--kunoji);
		right: 1.5em;
		top: 50%;
		display: inline-block;
	}

	&:hover {
		background-color: var(--main-color);
		color: #fff;

		&::after {
			border-top: 2px solid #fff;
			border-right: 2px solid #fff;
		}
	}
}

.normal-btn {
	color: var(--main-color);
	border: 2px solid var(--main-color);
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	padding: .3em 1.5em;
	font-weight: 700;
	gap: 4px;
	width: 180px;
	white-space: nowrap;
	text-decoration: none !important;

	&:hover {
		background-color: var(--main-color);
		color: #fff;

	}

	&.right-btn {
		margin-left: auto;
	}
}

a {
	.btn-icon {
		width: 24px;
		height: 24px;
		background-size: contain;
		background-repeat: no-repeat;
		transition: var(--hov-move);
		display: inline-block;

		&.map-icon {
			background-image: url(/assets/imgs/icon_map.svg);
		}

		&.arrow-icon {
			background-image: url(/assets/imgs/icon_arrow.svg);
		}

		&.dl-icon {
			width: 19px;
			height: 19px;
			background-image: url(/assets/imgs/icon_dl.svg);
		}

		&.right-kunoji-icon {
			position: relative;

			&:before {
				content: "";
				position: absolute;
				transform: var(--kunoji);
				border-bottom: var(--main-color) 2px solid;
				border-left: var(--main-color) 2px solid;
				top: 50%;
				left: 0;
				width: 8px;
				height: 8px;
			}
		}

		&.kunoji-icon {
			position: relative;

			&:before {
				content: "";
				position: absolute;
				transform: var(--kunoji);
				border-top: var(--main-color) 2px solid;
				border-right: var(--main-color) 2px solid;
				top: 50%;
				right: 0;
				width: 8px;
				height: 8px;
			}
		}
	}

	&:hover {
		.map-icon {
			background-image: url(/assets/imgs/icon_map_hov.svg);

		}

		.arrow-icon {
			background-image: url(/assets/imgs/icon_arrow_hov.svg);
		}

		.dl-icon {
			background-image: url(/assets/imgs/icon_dl_hov.svg);
		}

		.right-kunoji-icon {
			&:before {
				border-bottom: #fff 2px solid;
				border-left: #fff 2px solid;
			}
		}

		.kunoji-icon {
			&:before {
				border-top: #fff 2px solid;
				border-right: #fff 2px solid;
			}
		}
	}
}


.contact-btn {
	display: flex;
	color: var(--text, #000);
	font-size: var(--txt16-14);
	font-weight: 700;
	background-color: #fff;
	max-width: 260px;
	justify-content: center;
	padding: .5em 1em;
	border-radius: 50px;
	position: relative;
	transition: var(--hov-move);

	&::after {
		content: "";
		display: inline-block;
		border-top: #000 solid 2px;
		border-right: #000 solid 2px;
		width: .5em;
		height: .5em;
		transform: var(--kunoji);
		top: 50%;
		right: 1.5em;
		position: absolute;
	}

	&:hover {
		background-color: var(--main-color);
		color: #fff;

		&::after {
			border-top: #fff solid 2px;
			border-right: #fff solid 2px;
		}

	}
}

/* メインビジュアル
* ---------------------------------- */
.tier02,
.tier03,
.tier04 {
	background-image: url(../imgs/geometry_bg.webp);
	background-repeat: no-repeat;
	background-position: right -24px top -80px;
	background-size: clamp(300px, 50vw, 680px) auto;
	background-color: var(--bg-gray);
	padding-top: var(--m104-56);

	.mv-area {
		hgroup {
			p {
				font-weight: 700;
				margin-bottom: 8px;
			}

			h1.tier03-midashi {
				margin-bottom: var(--m32-16);
				font-size: var(--txt36-24);
				color: var(--main-color);
				line-height: 140%;

			}
		}
	}
}


h1.tier02-midashi {
	position: relative;
	color: var(--main-color);
	font-size: var(--txt40-28);
	line-height: initial;
	margin-bottom: var(--m104-56);

	&::before {
		content: attr(data-en);
		display: block;
		font-size: .5em;
		position: absolute;
		bottom: -32px;
		left: 0;
	}
}

h1.tier03-midashi {
	margin-bottom: var(--m32-16);
	font-size: var(--txt36-24);
	color: var(--main-color);
}

/* ページ構成
* ---------------------------------- */
/* --- 2階層目（2カラム） --- */
.double-column {
	padding: var(--m120-80) 0;

	.container {
		display: flex;
		gap: var(--m56-32);

		.midashi-col {
			width: 204px;

			h2.en-midashi {
				font-size: var(--txt24-20);
				margin-bottom: 0px;
				color: var(--main-color);
				margin-top: 1em;

				&::before {
					left: 0;
					top: -1.8em;
					bottom: auto;
					letter-spacing: 1.6px;
					color: #000;
					white-space: nowrap;
				}
			}

		}

		.double-column-detail {
			width: 76%;

			.double-column-col {
				padding: var(--m80-40) 0;
				display: flex;
				flex-direction: column;
				gap: var(--m24-16);
				border-bottom: 1px solid var(--blue-gray);

				h3 {
					font-size: var(--txt24-20);
					color: var(--main-color);

					span.midashi-number {
						display: block;
						font-size: var(--txt36-24);
						font-family: var(--en-txt);
						font-weight: 400;
						margin-bottom: 8px;
					}
				}

				h4 {
					font-size: var(--txt20-18);
					margin-bottom: 0;
				}


				.flex {
					gap: var(--m40-24);
					flex-direction: row;

					.tier03-txt {
						width: 50%;
						display: flex;
						flex-direction: column;
						gap: var(--m24-16);
					}

					.tier03-img {
						width: 50%;
						max-width: 400px;
					}

				}

				&:first-child {
					border-top: 1px solid var(--blue-gray);
				}

				dl {
					display: flex;
					gap: 8px;
				}
			}

		}
	}
}

/* =========================================
* ヘッダー
* ======================================== */
header {
	background-color: #fff;
	height: var(--header-height);
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	display: grid;
	place-items: center;
	z-index: 10000;

	.top-logo {
		max-width: 240px;
		width: 17vw;
	}
}

.header-contents {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 94%;
	height: 100%;

	nav {
		display: flex;
		align-items: center;
		gap: min(2vw, 32px);
		height: 100%;

		&>ul {
			display: flex;
			height: 100%;

			.nav-link {
				&>a {
					height: 100%;
					padding: 0 1.2em;
					display: flex;
					align-items: center;
					gap: .5em;
					border-bottom: 3px solid #fff;
					font-size: min(1.3vw, 16px);
				}

				&.has-child>a {
					pointer-events: none;
				}

				&:hover>a,
				&.active>a {
					border-bottom: 3px solid var(--main-color);
					color: var(--main-color);

					.kunoji {
						transform: rotate(-135deg);
						margin-top: .5em;
					}
				}

			}
		}
	}
}


.child-box {
	opacity: 0;
	visibility: hidden;
	position: fixed;
	top: var(--header-height);
	left: 0;
	width: 100%;
	padding: 40px 0;
	background-color: #fff;
	transition: var(--hov-move);

	.child-img {
		max-width: 240px;
	}

	a {
		position: relative;
		display: inline-block;
		padding-right: 1.2em;

		&:after {
			position: absolute;
			content: "";
			display: inline-block;
			border-top: 2px solid var(--main-color);
			border-right: 2px solid var(--main-color);
			transform: var(--kunoji);
			top: 50%;
			right: .2em;
			width: 7px;
			height: 7px;
		}

		&:hover {
			color: var(--main-color);
		}
	}

	ul li {
		line-height: 130%;
		margin-bottom: 10px;
	}

	.child-wrap {
		display: grid;
		gap: min(3vw, 40px);
		grid-template-columns: repeat(4, 1fr);
	}

	.header-tier02 {
		font-weight: 700;
		line-height: 150%;
		display: inline-block;
		margin: 8px 0;
	}

	.header-tier03 {
		font-size: var(--txt14-13);
	}

	.child-flex {
		display: flex;
		gap: min(2vw, 24px);

		.child-img {
			width: min(19vw, 240px);
		}

		ul {
			column-count: 2;
			column-width: auto;
		}
	}
}

.has-child.active {

	.child-box {
		opacity: 1;
		visibility: visible;
	}
}

/* =========================================
* トップページ
* ======================================== */
#top {
	background-color: var(--bg-gray);

	h2.en-midashi {
		font-size: var(--txt32-24);
		margin-bottom: var(--m80-40);

		&::before {
			font-size: .5em;
			bottom: -2.3em;
		}
	}

	h3.en-midashi {
		font-size: var(--txt20-18);
		margin-bottom: var(--m24-16);

		&::before {
			line-height: 150%;
			top: 100%;
		}
	}
}

.top-mv-area {
	video {
		aspect-ratio: 1280 / 711;
		width: 100%;
		vertical-align: bottom;
	}
}

#top .top-lead-copy {
	padding: var(--m80-40) 0;
	text-align: center;
	font-size: var(--txt20-18);
	font-weight: 700;
	color: var(--txt-gray);
	background-image: url(../imgs/geometry_bg.webp);
	background-repeat: no-repeat;
	background-position: right -24px top -80px;
	background-size: clamp(300px, 50vw, 680px) auto;
	background-position: right center;
}

#top .top-strengths-area {
	background-image: url(../imgs/top_strengths_bg.webp);
	background-size: cover;
	background-position: center;
	padding: var(--m56-32) 0;

	.top-strengths-img {
		margin: auto;
		display: block;
		text-align: center;
		padding: 0 var(--m40-24);
	}

	.top-strengths-btn {
		display: flex;
		color: #fff;
		font-weight: 700;
		margin: var(--m24-16) auto 0 auto;
		border: 1px solid #fff;
		padding: 1.5em;
		border-radius: 50px;
		justify-content: center;
		max-width: 527px;
		position: relative;

		&::before {
			content: "";
			display: inline-block;
			width: 12px;
			height: 12px;
			border-top: 2px solid #fff;
			border-right: 2px solid #fff;
			transform: var(--kunoji);
			top: 50%;
			right: 2em;
			position: absolute;
		}

		&:hover {
			background-color: var(--main-color);
			border: 1px solid var(--main-color);
		}
	}
}

#top .top-business-area {
	padding: var(--m120-80) 0;
	background-image: url(../imgs/geometry_bg.webp);
	background-repeat: no-repeat;
	background-position: left -306px top -480px;
	background-size: clamp(300px, 60vw, 700px) auto;
}

.engineering-business-col {
	display: flex;
	margin-bottom: var(--m24-16);
	box-shadow: 0 15px 60px 0 rgba(86, 128, 145, 0.10);

	.business-col-img {
		object-fit: cover;
		width: 50%;
		vertical-align: bottom;
	}

	.business-col-txt {
		width: 50%;
		background-color: #fff;
		padding: var(--m24-16);
		display: flex;
		flex-direction: column;
		gap: var(--m16-8);

		.normal-list {
			column-count: 2;
			font-size: var(--txt14-13);
			color: var(--txt-gray02);
		}
	}
}

.business-wrap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--m24-16);

	.business-col {
		box-shadow: 0 15px 60px 0 rgba(86, 128, 145, 0.10);

		.business-col-img {
			aspect-ratio: 17 / 14;
			object-fit: cover;
			vertical-align: bottom;
		}

		.business-col-txt {
			background-color: #fff;
			padding: var(--m24-16);
			display: flex;
			flex-direction: column;
			justify-content: space-between;
			gap: var(--m16-8);
			min-height: 210px;

			ul {
				list-style-type: disc;
				list-style-position: inside;
				display: flex;
				flex-wrap: wrap;
				justify-content: space-between;
				font-size: var(--txt14-13);
				color: var(--txt-gray02);
			}
		}
	}
}

.business-col-txt .normal-btn {
	max-width: 180px;
	width: 100%;
}

.arrow-link {
	position: relative;
	display: inline-block;
	padding: 0 20px;
	margin-bottom: var(--m24-16);

	&::before {
		content: '';
		position: absolute;
		bottom: -8px;
		left: 15%;
		width: 85%;
		height: 1px;
		background: #000;
		/*アニメーションの指定*/
		transition: var(--hov-move);
	}

	&::after {
		content: '';
		position: absolute;
		bottom: -3px;
		right: -4px;
		width: 15px;
		height: 1px;
		background: #000;
		transform: rotate(45deg);
		transition: var(--hov-move);
	}

	&:hover::before {
		left: 20%;
	}

	&:hover::after {
		right: -7%;
	}
}

.top-info-area {
	display: block;
	padding-bottom: var(--m104-56);

	.top-info-bg {
		aspect-ratio: 40 / 11;
		object-fit: cover;
	}

	.top-info-wrap {
		box-shadow: 0 15px 60px 0 rgba(96, 135, 151, 0.10);
		background-color: #fff;
		padding: 64px;
		display: grid;
		position: relative;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: var(--m56-32);
		width: 94%;
		margin-left: auto;
		margin-top: -150px;
		z-index: 2;
		position: relative;

		.top-info-col {
			hgroup {
				display: flex;
				gap: 8px;
				align-items: center;

				h2 {
					font-size: var(--txt28-20);
				}
			}
		}

	}
}

.top-pickup-area {
	background-color: var(--bg-blue);
	padding: 56px 0;

	.top-pickup-wrap {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: var(--m24-16);

		.top-pickup-col {
			display: block;

			&:hover {
				filter: brightness(110%);
				opacity: .8;
			}
		}
	}
}

.top-recruit-area {
	display: block;
	padding-bottom: var(--m104-56);
	padding-top: 0;

	h2 {
		white-space: nowrap;
	}

	.top-recruit-bg {
		aspect-ratio: 40 / 11;
		object-fit: cover;
	}

	.top-recruit-wrap {
		box-shadow: 0 15px 60px 0 rgba(96, 135, 151, 0.10);
		background-color: #fff;
		padding: 64px;
		display: flex;
		align-items: center;
		gap: 16px;
		width: 94%;
		margin-left: auto;
		margin-top: -150px;
		z-index: 2;
		position: relative;
		justify-content: space-between;

		.top-recruit-link {
			font-weight: 700;
			display: flex;
			gap: 16px;
			align-items: center;
			white-space: nowrap;

			.circle-kunoji {
				display: inline-block;
				min-width: 80px;
				height: 80px;
				border: solid 1px var(--main-color);
				border-radius: 100%;
				display: inline-block;
				position: relative;
				transition: var(--hov-move);

				&::after {
					content: "";
					display: inline-block;
					position: absolute;
					width: 16px;
					height: 16px;
					border-top: 2px solid var(--main-color);
					border-right: 2px solid var(--main-color);
					transform: var(--kunoji) translateX(-50%);
					top: 55%;
					left: 35%;
					transition: var(--hov-move);
				}
			}

			&:hover {
				color: var(--main-color);

				.circle-kunoji {
					background-color: var(--main-color);

					&::after {
						border-top: 2px solid #fff;
						border-right: 2px solid #fff;
					}
				}
			}
		}
	}
}

/* =========================================
* マクシスエンジニアリングの強み
* ======================================== */
.strengths-midashi {
	padding-left: var(--m24-16);
	border-left: solid 3px var(--sub-color);
	padding: 4px 0 4px var(--m24-16);
	margin-bottom: var(--m40-24);

	p {
		font-size: var(--txt20-18);
		font-weight: 700;
		margin-bottom: 8px;
	}

	h2 {
		font-size: var(--txt36-24);
		line-height: 140%;
	}
}

.strengths-list {
	color: var(--main-color);
	font-size: var(--txt20-18);
	font-weight: 700;
	list-style-type: disc;
	margin-top: var(--m40-24);
	margin-left: 1em;
	column-count: 2;
}

.strengths-block {
	padding: var(--m80-40) 0;
	border-bottom: 1px var(--blue-gray) solid;
	display: flex;
	flex-direction: column;
	gap: var(--m16-8);

	h3 {
		text-align: center;
		font-size: var(--txt24-20);
	}

	.normal-btn {
		margin: auto;
	}

	.triangle {
		border-right: 48px solid transparent;
		border-left: 48px solid transparent;
		border-top: 32px solid var(--bg-blue);
	}

	.merit-list {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		gap: 8px;

		li {
			background-color: #fff;
			color: var(--main-color);
			font-weight: 700;
			display: grid;
			place-items: center;
			padding: var(--m16-8) 8px;
			text-align: center;
			line-height: 150%;
		}
	}

	.strengths-wrap {
		display: flex;
		justify-content: space-between;
		gap: var(--m16-8);

		.put-on {
			font-size: 57px;
			font-weight: 700;
			color: var(--main-color);
			margin: auto;
		}

		.strengths-col {
			width: 46%;
			border-radius: 10px;
			border: solid 1px var(--sub-color);
			overflow: clip;

			.strengths-col-img {
				aspect-ratio: 495 / 208;
				object-fit: cover;
			}

			.strengths-txt {
				text-align: center;
				padding: var(--m24-16) 16px;
				display: flex;
				flex-direction: column;
				gap: var(--m16-8);

				h3 {
					display: flex;
					justify-content: center;
					align-items: center;
					font-size: var(--txt16-14);
					gap: var(--m16-8);
				}

				h4 {
					font-size: var(--txt24-20);
				}

				.normal-list {
					text-align: left;
					margin: auto;
				}
			}
		}
	}
}

.strengths-last-txt {
	font-size: var(--txt24-20);
	font-weight: 700;
	margin: auto;
	text-align: center;
	margin: var(--m80-40) auto 0 auto;
	line-height: 150%;
}

/* =========================================
* エンジニアリングサービス（扉）
* ======================================== */
.engineering-link-wrap {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: var(--m24-16);

	.engineering-link-col {
		aspect-ratio: 131 / 56;
		padding: var(--m24-16);
		display: grid;
		place-items: end;
		background-size: cover;
		background-position: center;
		position: relative;
		box-shadow: 0 20px 40px 0 var(--bg-gray);

		&::before {
			content: "";
			width: 100%;
			height: 100%;
			position: absolute;
			top: 0;
			left: 0;
			background-color: #000;
			opacity: .3;
			transition: var(--hov-move);
		}

		li:first-child & {
			background-image: url(/assets/imgs/business/engineering_link_bg01.webp);
		}

		li:nth-child(2) & {
			background-image: url(/assets/imgs/business/engineering_link_bg02.webp);
		}

		li:nth-child(3) & {
			background-image: url(/assets/imgs/business/engineering_link_bg03.webp);
		}

		li:nth-child(4) & {
			background-image: url(/assets/imgs/business/engineering_link_bg04.webp);
		}

		li:last-child & {
			background-image: url(/assets/imgs/business/engineering_link_bg05.webp);
		}

		.engineering-link-txt {
			display: flex;
			justify-content: space-between;
			font-size: var(--txt20-18);
			color: #fff;
			font-weight: 700;
			width: 100%;
			align-items: end;
			gap: 8px;
			z-index: 1;
			text-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
			text-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
			text-shadow: 0px 0px 10px rgba(0, 0, 0, 1);

			.engineering-link-arrow {
				min-width: 38px;
				height: 38px;
				background-color: #fff;
				display: inline-block;
				position: relative;
				transition: var(--hov-move);

				&::after {
					transition: var(--hov-move);
					position: absolute;
					content: "";
					display: inline-block;
					top: 50%;
					left: 45%;
					border-right: 2px solid #000;
					border-top: 2px solid #000;
					transform: translate(-50%, -50%)rotate(45deg);
					width: 10px;
					height: 10px;
				}
			}
		}

		&:hover {
			&::before {
				opacity: 0;
			}

			.engineering-link-txt {
				.engineering-link-arrow {
					background-color: var(--main-color);

					&::after {
						border-right: 2px solid #fff;
						border-top: 2px solid #fff;
					}
				}
			}
		}

	}
}

/* =========================================
* 自動車部品の設計・金型製作・小ロット生産
* ======================================== */
.tier04-half-wrap {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: var(--m24-16);
	align-items: flex-start;
}

.prototyping-merit-wrap {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 16px auto;

	.prototyping-merit-col {
		padding: var(--m16-8) var(--m24-16);
		background-color: #fff;
		display: flex;
		align-items: center;
		gap: var(--m16-8);

		.merit-number {
			font-family: var(--en-txt);
			font-weight: 700;
			font-size: 57px;
			color: var(--bg-blue);
		}

		.merit-txt {
			h4 {
				font-size: var(--txt20-18);
				margin-bottom: 8px
			}

			p {
				font-size: var(--txt14-13);
			}
		}
	}
}

.active-col {
	background-color: #fff;
	padding: var(--m24-16);
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 8px;

	.triangle {
		border-right: 20px solid transparent;
		border-left: 20px solid transparent;
		border-top: 13px solid var(--sub-color);
	}

	.zero-txt {
		font-size: var(--txt24-20);
		font-weight: 700;
	}

	.unit-txt {
		font-size: var(--txt20-18);
		font-weight: 700;
	}
}

/* =========================================
* デジタル化支援サービス
* ======================================== */
#digital-support h4 {
	font-size: var(--txt20-18);
	margin-bottom: var(--m16-8);
}

.digital-media-wrap {
	display: flex;
	flex-direction: column;
	gap: var(--m40-24);
	align-items: center;
	margin-top: var(--m40-24);

	video {
		width: 540px;
		max-width: 100%;
	}
}

.scan-wrap {
	margin-bottom: var(--m40-24);
}

.digital-support-table {
	table-layout: fixed;
	border-top: 1px solid var(--txt-gray02);
	border-bottom: 1px solid var(--txt-gray02);

	thead th {
		background-color: var(--bg-blue);
		font-weight: 500;
		padding: 8px var(--m24-16);
		border-bottom: 1px solid var(--txt-gray02);
	}

	tbody {
		background-color: #fff;

		th {
			color: var(--main-color);
			padding: 8px var(--m24-16);
			vertical-align: middle;
		}

		td {
			padding: 8px var(--m16-8);
		}
	}

	tr {
		border-bottom: 1px solid var(--txt-gray02);

		&:last-child {
			border-bottom: none;
		}
	}
}

.digital-support-3d {
	display: flex;
	flex-direction: column;
	gap: var(--m16-8);

	.note {
		font-size: 12px;
	}

	.circle-img {
		margin: auto;
		filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.1));

	}
}

.soft-txt {
	margin-bottom: 8px;

	span {
		vertical-align: middle;
		display: inline-block;
	}
}

/* =========================================
* 電子ハードウェア設計開発（回路/FPGA設計）
* ======================================== */

#hardware-development .note {
	font-size: 12px;
}

/* =========================================
* ソフトウェア（組込/制御/アプリケーション）設計
* ======================================== */
#software-development .default-table,
#hardware-development .default-table {

	th {
		padding: 8px var(--m32-16);
		width: 245px;
		vertical-align: middle;
	}

	td {
		padding: 8px var(--m24-16);
	}
}


.software-works-wrap {
	display: flex;
	gap: var(--m32-16);

	.software-works-col {
		width: 50%;

		h3 {
			margin-bottom: 8px;
		}

		dl {
			padding-left: 1.5em;

			dt {
				font-size: var(--txt18-16);
				color: var(--main-color);
				font-weight: 700;
				margin-top: 8px;
				padding-left: .5em;
				text-indent: -.5em;

				span {
					font-size: .6em;
					color: var(--blue-gray);
					display: inline-block;
					vertical-align: bottom;
					padding-right: .5em;
				}
			}

			dd {
				padding-left: .6em;
			}
		}

		.normal-btn {
			margin-top: var(--m24-16);
		}
	}
}

/* =========================================
* ロボットシステムインテグレーション
* ======================================== */
.robot-wrap {
	gap: var(--m24-16);

	.robot-col {
		.robot-list {
			&:first-child {
				column-count: 2;
				column-width: 14px;
				padding-bottom: var(--m16-8);
				border-bottom: var(--blue-gray) 1px solid;
			}

			&:last-child {
				padding-top: var(--m16-8);
			}

			li {
				position: relative;
				padding-left: 1.2em;
				font-size: var(--txt14-13);

				.external-icon {
					width: 1em;
					height: 1em;
					background-image: url(/assets/imgs/icon_external.svg);
					background-repeat: no-repeat;
					background-size: contain;
					display: inline-block;
				}

				a {
					text-decoration: underline;
				}

				&::before {
					display: inline-block;
					content: "●";
					color: var(--sub-color);
					position: absolute;
					top: 0;
					left: 0;
				}

				.flex {
					gap: var(--m16-8);
				}
			}
		}
	}

	.robot-img01 {
		width: 38%;
	}
}

.kendama-wrap {
	gap: var(--m40-24);

	.kendama-col .flex {
		gap: 16px;

	}
}

.robot-others-wrap {
	gap: var(--m32-16);
	margin-top: var(--m40-24);

	img {
		width: 56%;
	}
}

.blue-list {
	font-size: var(--txt18-16);
	color: var(--main-color);
	font-weight: 700;
	margin-left: .6em;

	li {
		text-indent: -.6em;

		&::before {
			content: "●";
			font-size: .5em;
			padding-right: .2em;
			color: var(--blue-gray);
			vertical-align: middle;
		}
	}
}

/* =========================================
* ユニバーサルロボット
* ======================================== */
#robot {
	.lead-copy {
		font-size: var(--txt18-16);
		text-align: center;
	}

	h4 {
		font-size: var(--txt20-18);
	}
}

.universal-wrap {
	gap: var(--m32-16);

	img {
		min-width: 390px;
	}
}

.universal-speck-wrap {
	margin: var(--m40-24) auto;

	.universal-speck-col {
		display: flex;
		align-items: center;
		gap: var(--m24-16);
		padding: 8px 0;
		border-top: solid 1px var(--blue-gray);

		&:last-child {
			border-bottom: solid 1px var(--blue-gray);
		}

		dt {
			display: flex;
			gap: var(--m24-16);

			h4 {
				width: 240px;
			}

			.speck-number {
				width: 160px;
				font-size: 57px;
				color: var(--blue-gray);
				font-weight: 700;
				display: inline-block;
			}
		}
	}
}

.e-series-img {
	margin: 8px auto;
	display: block;
}

.e-series-wrap {
	gap: var(--m40-24);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-bottom: var(--m40-24);
}

.dl-btn {
	width: 250px;
	margin: var(--m40-24)auto;
}

#robot .external-icon {
	width: 1em;
	height: 1em;
	background-image: url(/assets/imgs/icon_external.svg);
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
}

/* =========================================
* ねじ穴検査ロボット
* ======================================== */

.movie-wrap {
	text-align: center;

	h3 {
		font-size: var(--txt24-20);
		margin-bottom: var(--m24-16);
	}

	.youtube-wrap {
		margin: auto;
		max-width: 586px;

		iframe {
			width: 100%;
			aspect-ratio: 16 / 9;
		}
	}
}

.screw-hole-img01 {
	margin: var(--m24-16) auto;
	display: block;
}

.problem-wrap {
	gap: var(--m16-8);

	.triangle {
		width: 0;
		height: 0;
		border-style: solid;
		border-bottom: 24px solid transparent;
		border-left: 24px solid var(--sub-color);
		border-top: 24px solid transparent;
		border-right: none;
		margin: auto;
	}

	.problem-col,
	.solution-col {
		padding: var(--m24-16);
		background-color: #fff;

		h3 {
			font-size: var(--txt18-16);
			margin-bottom: var(--m24-16);
			text-align: center;
		}
	}

	.solution-col {
		border: solid 1px var(--main-color);
		border-radius: var(--m16-8);
	}
}

.screw-hole-wrap {
	gap: var(--m24-16);
}

.screw-hole-table-wrap {
	width: 68%;

	.screw-hole-table {
		width: 100%;
		background-color: #fff;

		tr {
			border-top: solid var(--txt-gray02) 1px;

			&:last-child {
				border-bottom: solid var(--txt-gray02) 1px;
			}

			th,
			td {
				padding: 8px var(--m32-16);
				vertical-align: middle;
			}

			th {
				color: var(--main-color);
				width: 40%;
			}
		}
	}

	.note {
		font-size: 12px;
		padding-left: 2em;
		text-indent: -2em;
		line-height: 150%;
		margin-top: 8px;
	}
}

.screw-hole-table-img {
	width: 307px;
	margin: auto;
}

.screw-hole-works-wrap {

	.screw-hole-works-col {
		width: 60%;

		&:first-child {
			width: 31%;
		}

		h4,
		p {
			min-height: 58px;
			margin-bottom: 8px;
		}

		h4 {
			font-size: var(--txt18-16) !important;
		}

		.flex {
			gap: var(--m24-16);
		}
	}
}

/* =========================================
* 画像処理/自動検査機
* ======================================== */
.image-wrap {
	gap: var(--m32-16);

	img {
		width: 45%;
	}

	.image-wrap-txt {
		width: 52%;

		.image-circle-wrap {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 8px;
			margin-top: var(--m32-16);

			.image-circle {
				background-color: var(--bg-blue);
				border-radius: 100%;
				display: grid;
				place-items: center;
				aspect-ratio: 1 / 1;
				text-align: center;
				font-weight: 700;
				font-size: min(1.5vw, 16px);
				line-height: 150%;
			}
		}
	}
}

.image-list {
	column-count: 2;
	column-width: 14px;

	li {
		position: relative;
		padding-left: 1.2em;

		&::before {
			display: inline-block;
			content: "●";
			color: var(--sub-color);
			position: absolute;
			top: 0;
			left: 0;
		}

	}
}

.image-works-wrap {
	gap: var(--m80-40);

	.image-works-col {
		&:first-child {
			width: 31%;

			p {
				display: inline-block;
				position: relative;

				&::after {
					content: "";
					position: absolute;
					transform: var(--kunoji);
					border-top: var(--main-color) 2px solid;
					border-right: var(--main-color) 2px solid;
					width: 8px;
					height: 8px;
					top: 50%;
					right: -1em;
				}
			}
		}

		.blue-list {
			column-count: 2;
			column-gap: 32px;
		}
	}
}


/* =========================================
* 自動車部品生産関連設備
* ======================================== */
.automotive-works-wrap {
	gap: 8px;

	.blue-list {
		column-count: 2;
	}

	.automotive-works-img {
		width: 33%;
	}
}

/* =========================================
* 半導体・電子部品生産関連設備
* ======================================== */
#semiconductor h4 {
	margin-bottom: var(--m16-8);
}

.semiconductor-works-wrap {
	gap: var(--m80-40);

	.semiconductor-works-col {
		&:first-child {
			width: 31%;

			p {
				display: inline-block;
				position: relative;

				&::after {
					content: "";
					position: absolute;
					transform: var(--kunoji);
					border-top: var(--main-color) 2px solid;
					border-right: var(--main-color) 2px solid;
					width: 8px;
					height: 8px;
					top: 50%;
					right: -1em;
				}
			}
		}
	}
}

/* =========================================
* バンプフラットニング装置
* ======================================== */
h4.model-midashi {
	font-size: var(--txt18-16);
}


table.bump-table {
	margin-top: var(--m32-16);
	width: 100%;
	min-width: 750px;

	tr {
		border-top: var(--txt-gray02) solid 1px;

		&:last-child {
			border-bottom: var(--txt-gray02) solid 1px;
		}
	}

	th,
	td {
		padding: var(--m16-8);
	}

	th {
		color: var(--main-color);
		background-color: var(--bg-blue);
	}

	thead {
		th {
			text-align: center;
		}

		tr:last-child {
			th {
				background-color: var(--gray);
			}
		}
	}

	tbody {
		th {
			width: 26%;
		}

		td {
			width: 37%;
			background-color: #fff;
			border-right: 1px solid var(--txt-gray02);
			text-align: left;

			&:last-child {
				border-right: none;
			}
		}

		td[colspan="2"] {
			text-align: center;
		}
	}
}


/* =========================================
* 金型
* ======================================== */
.mold-list {
	font-size: var(--txt20-18);
	font-weight: 700;
	padding-left: 1em;
	text-indent: -1em;
}

.mold-overview-wrap {
	display: grid;
	gap: var(--m40-24);
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

	.mold-overview-col {
		display: flex;
		flex-direction: column;
		gap: 8px;

		h4 {
			font-size: var(--txt20-18);
		}
	}
}

/* =========================================
* 主要設備
* ======================================== */
.equipment-wrap {
	margin: var(--m40-24) 0;
}

.equipment-table {
	width: 100%;

	tr {
		border-top: 1px solid var(--txt-gray02);

		&:last-child {
			border-bottom: 1px solid var(--txt-gray02);
		}

		th {
			background-color: var(--bg-blue);
			color: var(--main-color);
			padding: .5em var(--m32-16);
		}

		td {
			padding: .5em var(--m32-16);
			background-color: #fff;
			vertical-align: middle;

			&:last-child {
				text-align: right;
			}
		}
	}

}

/* =========================================
* 金型製作実績
* ======================================== */
.mold-pats-wrap {
	margin: var(--m40-24)auto;

	.parts-wrap {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: var(--m24-16);

		.parts-col {
			text-align: center;
			display: flex;
			flex-direction: column;
			gap: var(--m16-8);
		}
	}
}

.automotive-parts-wrap {
	display: flex;
	flex-direction: column;
	gap: var(--m40-24);

	.automotive-parts-img {
		display: block;
		margin: auto;
	}
}

/* =========================================
* 独自技術·研究開発
* ======================================== */
.technology-works-wrap {
	background-image: url(/assets/imgs/business/technology/technology_works_bg.webp);
	display: grid;
	place-items: center;
	padding: var(--m56-32) 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;

	.technology-works {
		text-align: center;

		h4 {
			font-size: var(--txt24-20);
			font-weight: 700;
			color: #fff;
			margin-bottom: var(--m24-16);
		}

		.normal-btn {
			margin: auto;
		}
	}
}

/* =========================================
* 光学技術
* ======================================== */
.optical-wrap {
	gap: var(--m32-16);

	.logo-3ddragons {
		min-width: 422px;
		margin: auto;
	}
}

.works-3column,
.works-4column {
	display: grid;
	gap: var(--m40-24);

	h3 {
		min-height: 60px;
		display: flex;
		align-items: center;
	}

	.works-img {
		margin: auto;
		display: block;
	}

	.normal-btn {
		margin-top: var(--m16-8);
	}
}

.works-3column {
	grid-template-columns: repeat(3, 1fr);
}

.works-4column {
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

/* =========================================
* 過去の開発事例
* ======================================== */
.search-category-wrap {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--m24-16);

	.search-category-col {
		text-align: center;
		border: 1px solid var(--main-color);
		display: grid;
		place-items: center;
		color: var(--main-color);
		font-weight: 700;
		padding: 1.2em 1.5em 1.2em .5em;
		position: relative;
		font-size: min(1.7vw, 16px);
		cursor: pointer;

		&::after {
			content: "";
			position: absolute;
			transform: var(--kunoji);
			top: 50%;
			right: 1em;
			width: .5em;
			height: .5em;
			border-right: 2px solid var(--main-color);
			border-bottom: 2px solid var(--main-color);
			transition: var(--hov-move);
			transform-origin: 50% 60%;
		}

		&:hover {
			background-color: var(--main-color);
			color: #fff;

			&::after {
				border-right: 2px solid #fff;
				border-bottom: 2px solid #fff;
			}
		}

		&.active {
			background-color: var(--main-color);
			color: #fff;

			&::after {
				transform: translateY(-50%) rotate(-135deg);
				border-right: 2px solid #fff;
				border-bottom: 2px solid #fff;
			}
		}
	}

}

.search-category-box {
	background-color: var(--bg-blue);
	padding: var(--m40-24);
	display: none;

	&.active {
		display: block;
	}
}

.search-tag-wrap {
	display: flex;
	gap: var(--m24-16);
	flex-wrap: wrap;

	.search-tag {
		font-size: var(--txt14-13);
		padding: .5em 1.5em;
		border-radius: 50px;
		background-color: #fff;
		color: var(--txt-gray02);
		display: grid;
		place-items: center;
		font-weight: 600;

		&:hover {
			background-color: var(--main-color);
			color: #fff;
		}
	}
}

.search-form {
	display: flex;
	align-items: center;
	gap: var(--m16-8);
	height: 48px;

	label {
		width: 100%;
		height: 100%;
	}

	input {
		width: 100%;
		height: 100%;
		padding: 0 var(--m16-8);
		color: #000;
		outline: none;
		border: none;
	}

	button {
		display: grid;
		place-items: center;
		width: 160px;
		height: 100%;
		border: none;
		background-color: var(--sub-color);
		color: #fff;
		cursor: pointer;
		font-weight: 700;
	}
}


.results-area {
	margin: var(--m56-32) auto;

	.results-midashi {
		font-size: var(--txt24-20);
		font-weight: 700;
		color: var(--main-color);
		margin-bottom: 8px;

		.results-number {
			font-weight: 400;
			color: #000;
			font-size: var(--txt16-14);
		}
	}

	.results-list {
		.results-col {
			display: flex;
			align-items: flex-start;
			gap: var(--m32-16);
			padding: var(--m40-24) 96px var(--m40-24) var(--m40-24);
			position: relative;
			border-top: 1px solid var(--blue-gray);

			&:last-child {
				border-bottom: 1px solid var(--blue-gray);
			}

			.works-img {
				aspect-ratio: 6 / 5;
				object-fit: cover;
				width: 22%;
				min-width: 200px;
			}

			.works-txt img {
				max-width: 280px;
			}

			.works-midashi {
				font-weight: 700;
				color: var(--main-color);
				margin-bottom: var(--m16-8);
				font-size: var(--txt20-18);
			}

			&:not(.result-nolink)::after {
				content: "";
				display: inline-block;
				width: 60px;
				height: 60px;
				aspect-ratio: 1/1;
				border: solid 1px var(--main-color);
				border-radius: 50px;
				top: calc(50% - 30px);
				position: absolute;
				right: 24px;
			}

			&:not(.result-nolink)::before {
				content: "";
				display: inline-block;
				border-top: 1px solid var(--main-color);
				border-right: 1px solid var(--main-color);
				transform: var(--kunoji);
				top: 50%;
				right: 55px;
				width: 18px;
				height: 18px;
				position: absolute;
				z-index: 1;
			}

			.search-tag-wrap {
				gap: 8px var(--m16-8);
				margin-top: var(--m16-8);

				.search-tag {
					padding: .3em 1em;
					border: var(--blue-gray) solid 1px;

					&:hover {
						color: var(--txt-gray02);
						background-color: #fff;
						cursor: auto;
					}
				}
			}

			&:hover {
				background-color: #fff;

				&::after {
					background-color: var(--main-color);
				}

				&::before {
					border-top: 1px solid #fff;
					border-right: 1px solid #fff;
				}
			}
		}
	}
}

/* =========================================
* 過去の開発事例（記事）
* ======================================== */
.works-title {
	display: flex;
	gap: var(--m32-16);
	margin-bottom: var(--m40-24);
	align-items: flex-start;

	&+article {
		max-width: 720px;
		margin: 0 auto;
	}

	.works-img {
		width: 30%;
		max-width: 397px;
	}

	.works-title-txt {
		display: flex;
		flex-direction: column;
		gap: var(--m16-8);


		.search-tag-wrap {
			gap: 8px;

			.search-tag {
				padding: .2em 1em;
				border: 1px solid var(--gray);
			}
		}

		.works-midashi {
			font-size: var(--txt28-20);
			color: var(--main-color);
			text-align: left;
			line-height: 150%;
		}
	}
}

/* =========================================
* 企業ビジョン
* ======================================== */
#vision section p {
	font-weight: 700;
	font-size: var(--txt20-18);
}

.philosophy-list {
	font-weight: 700;
	font-size: var(--txt20-18);
	padding-left: 2em;
	text-indent: -2em;

	li {
		margin-bottom: var(--m24-16);

		span {
			color: var(--sub-color);
		}
	}
}

/* =========================================
* 会社概要
* ======================================== */
.overview-img {
	width: 192px;
}

/* =========================================
* 事業所・拠点・グループ会社
* ======================================== */
.locations-col {
	display: flex;
	gap: var(--m24-16);
	justify-content: space-between;
	padding: var(--m24-16) 0;
	max-width: 100%;
	border-bottom: 1px var(--blue-gray) solid;

	.locations-txt {
		dl {
			padding-left: var(--m16-8);

			.locations-info {
				display: flex;
				gap: 8px;
			}

			dt {
				min-width: 5em;

				span {
					color: var(--blue-gray);
					padding-right: .3em;
				}
			}
		}

		.normal-btn {
			width: 190px;
			margin-top: var(--m16-8);
		}
	}

	.locations-img {
		max-width: 200px;
		display: block;
	}
}

/* =========================================
* 環境・ISO
* ======================================== */
.iso-white-wrap {
	background-color: #fff;
	padding: var(--m56-32);
	padding: var(--m80-40);

	.iso-wrap {
		display: grid;
		grid-template-columns: 1.5fr 1fr;
		gap: var(--m40-24) var(--m24-16);

		.iso-col {
			display: flex;
			gap: var(--m24-16);
			align-items: center;

			.iso-place {
				padding-left: 1em;
			}
		}
	}
}

.environment-wrap {
	gap: var(--m24-16);
	margin: var(--m24-16) 0;

	h4 {
		font-size: var(--txt18-16);
		min-width: 5em;
	}
}

.president-sign {
	display: block;
	margin: var(--m24-16)0 0 auto;
	mix-blend-mode: multiply;
}

/* =========================================
* その他
* ======================================== */
#others {
	.note {
		font-size: 12px;
		margin-top: 8px;
	}

	.default-table {
		th {
			width: 182px;
		}
	}
}

/* =========================================
* イベント出展情報
* ======================================== */
.info-list {
	border-top: 1px solid var(--txt-gray02);

	.info-col {
		padding: 1em 32px 1em 8px;
		display: block;
		position: relative;
		border-bottom: 1px solid var(--txt-gray02);

		.info-title {
			transition: var(--hov-move);
		}

		.btn-icon {
			position: absolute;
			transform: translateY(-50%);
			top: 50%;
			right: 0;
		}

		&:hover {
			border-bottom: 1px solid var(--main-color);

			.info-title {
				color: var(--main-color);
			}
		}
	}
}


.info-date-txt {
	font-weight: 700;
	font-size: var(--txt14-13);
	background-color: var(--gray);
	padding: .2em .6em;
	display: inline-block;
	line-height: normal;
	border-radius: 4px;
	margin-bottom: 8px;
}

.pagination-link {
	display: flex;
	justify-content: center;
	padding: var(--m56-32);
	font-size: var(--txt18-16);
	font-weight: 700;
	color: var(--txt-gray02);
	gap: .5em;

	a {
		padding: 0 .2em;

		&:hover {
			color: var(--main-color);
		}
	}

	a.current_page_number {
		color: var(--main-color);
		border-bottom: 1px solid var(--main-color);
	}
}

/* =========================================
* 記事
* ======================================== */
#article .normal-btn {
	margin: var(--m80-40) auto 0 auto;
}

.article-title {
	border-bottom: 1px solid var(--txt-gray02);
	margin-bottom: var(--m24-16);

	.info-date-txt {
		font-size: var(--txt18-16);
	}

	.article-midashi {
		margin: 8px 0 var(--m16-8) 0;
		font-size: var(--txt24-20);
	}
}

article.main-txt {
	h2 {
		font-size: var(--txt20-18);
		color: var(--main-color);
		border-bottom: 1px solid var(--main-color);
		padding-bottom: .5em;
		margin-bottom: var(--m16-8);
	}

	h3 {
		font-size: var(--txt18-16);
		padding-left: .5em;
		border-left: 4px solid var(--main-color);
		margin-bottom: var(--m16-8);
	}

	p {
		margin-bottom: var(--m16-8);
		text-align: left;
	}

	ul,
	ol {
		padding-left: 1.5em;
		text-indent: -1.5em;
		list-style-position: inside;
		margin-bottom: var(--m16-8);
	}

	ul {
		list-style-type: disc;
	}

	ol {
		list-style-type: decimal;
	}

	a {
		color: var(--main-color);
		text-decoration: underline;
		font-weight: 600;
	}

	img {
		max-width: 100%;
		height: auto;
		display: block;
		margin-bottom: var(--m16-8);
	}

	table {
		width: 100%;
		border-collapse: collapse;
		margin-bottom: var(--m16-8);

		th,
		td {
			border: 1px solid var(--txt-gray02);
			padding: .2em .5em;
		}

		th {
			background-color: var(--bg-blue);
			color: var(--main-color);
			width: 20%;
			min-width: 8em;
		}
	}

	iframe {
		max-width: 100%;
	}

	video {
		max-width: 100%;
	}
}

/* =========================================
* 受託設計・開発
* ======================================== */
.contract-wrap {
	background-color: var(--bg-blue);
	margin-top: var(--m80-40);
	padding: var(--m56-32) var(--m40-24);
	text-align: center;

	h2.en-midashi {
		&::before {
			color: var(--main-color);
			transform: translateX(-50%);
			left: 50%;
		}
	}

	.contract-point-wrap {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: var(--m16-8);
		margin: var(--m40-24) 0;

		.contract-point-col {
			background-color: #fff;
			padding: 0 var(--m24-16) var(--m32-16) var(--m24-16);
			text-align: left;

			.point-midashi {
				font-size: var(--txt20-18);
				color: var(--sub-color);
				font-family: var(--en-txt);
				border-left: 3px var(--sub-color) solid;
				padding: var(--m16-8) 0 0 var(--m16-8);
				margin-bottom: var(--m16-8);


				span {
					font-size: 1.6em;
					padding: 0 .2em;
				}
			}

			h3 {
				font-size: var(--txt20-18);
				color: var(--main-color);
				line-height: 150%;
				padding-bottom: var(--m16-8);
				border-bottom: 1px solid var(--txt-gray02);
				margin-bottom: var(--m16-8);
			}
		}
	}

	.contract-point-txt {
		font-size: var(--txt24-20);
		font-weight: 700;
		text-align: center;
		color: var(--txt-gray);
		margin-top: var(--m24-16);
		line-height: 150%;
	}
}

/* =========================================
* お問い合わせ
* ======================================== */

/* 電話でのお問い合わせ
* ---------------------------------- */
table.contact-table {
	th {
		width: 232px;
	}

	td {
		a {
			font-size: var(--txt24-20);
			font-weight: 700;
		}
	}
}

#contact dl {
	margin-bottom: 80px;
}

.caution-txt {
	color: #f00;
	font-weight: 500;
	font-size: var(--txt16-14);
}

/* メールでのお問い合わせ
* ---------------------------------- */
.form-area {
	margin: var(--m56-32) auto;

	.label-item {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: var(--m16-8);

		.label-col {
			margin-right: 1em;

			label {
				cursor: pointer;

				input[type="radio"] {
					-webkit-appearance: none;
					-moz-appearance: none;
					cursor: pointer;
					appearance: none;
					position: relative;
					width: var(--txt18-16);
					height: var(--txt18-16);
					border: 1px solid #B3B3B3;
					border-radius: 50%;
					vertical-align: -3px;
					padding: 0px;
					cursor: pointer;

					&[type="radio"]:checked {
						border-color: var(--main-color);
						border-width: 2px;

						&:before {
							position: absolute;
							top: 50%;
							left: 50%;
							transform: translate(-50%, -50%);
							width: 9px;
							height: 9px;
							border-radius: 50%;
							background: var(--main-color);
							content: "";
						}
					}
				}
			}
		}


	}

	.form-col {
		display: flex;
		align-items: center;
		margin-bottom: var(--m24-16);
		width: 100%;

		dt {

			margin-right: 16px;
			width: 20%;
			min-width: 216px;
			text-align: left;
			color: var(--main-color);
			font-size: var(--txt18-16);
			font-weight: 700;

			sup {
				color: #f00;
				font-size: var(--txt14-13);
			}
		}

		dd {
			width: 80%;
			text-align: left;
			display: flex;
		}

	}

	input,
	textarea,
	select {
		border-radius: 8px;
		border: 1px solid #B3B3B3;
		background: #fff;
		width: 100%;
		padding: 0.8em 1em;
	}

	.address-wrap {
		display: flex;
		margin-bottom: var(--m24-16);
		width: 100%;

		h4 {
			margin-right: 16px;
			width: 20%;
			min-width: 216px;
			text-align: left;
			color: var(--main-color);
			font-size: var(--txt18-16);
			font-weight: 700;

			sup {
				color: #f00;
				font-size: var(--txt14-13);
			}
		}

		.address-col {
			width: 80%;

			.form-col:first-child input {
				max-width: 150px;
			}
		}
	}
}

.form-confirm .form-col dd {
	border-radius: 8px;
	background-color: #B3B3B3;
	padding: 0.8em 1em;
}




#contact button {
	position: relative;
	transition: var(--hov-move);
	display: block;
	padding: .5em 1em;
	margin: var(--m56-32) auto 0 auto;

	&::after {
		display: inline-block;
		content: "";
		position: absolute;
		transform: var(--kunoji);
		top: 50%;
		right: 1em;
		border-top: 2px solid var(--main-color);
		border-right: 2px solid var(--main-color);
		width: 8px;
		height: 8px;
		transition: var(--hov-move);
	}

	:hover&::after {
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
	}
}

/* =========================================
* お問い合わせ（確認画面）
* ======================================== */

#contact .contact-btn-wrap {
	gap: var(--m40-24);
	margin-top: var(--m56-32);

	button {
		margin: 0;

		&:first-child::after {
			display: none;
		}

		&:first-child {
			padding-left: 2em;

			&::before {
				display: inline-block;
				content: "";
				position: absolute;
				transform: var(--kunoji);
				top: 50%;
				left: 1em;
				border-bottom: 2px solid var(--main-color);
				border-left: 2px solid var(--main-color);
				width: 8px;
				height: 8px;
				transition: var(--hov-move);
			}
		}

		:hover&::before {
			border-bottom: 2px solid #fff;
			border-left: 2px solid #fff;
		}
	}
}

/* =========================================
* プライバシーポリシー
* ======================================== */
#privacy .number-list {
	margin: var(--m24-16) 0;
}

.privacy-contact {
	margin-top: var(--m24-16);
}

/* =========================================
* サイトマップ
* ======================================== */
.tier02-link,
.tier03-link,
.tier04-link {
	position: relative;
	display: inline-block;

	&::after {
		content: "";
		position: absolute;
		width: .4em;
		height: .4em;
		border-top: 2px solid var(--main-color);
		border-right: 2px solid var(--main-color);
		transform: var(--kunoji);
		top: 50%;
		right: -.6em;
	}

	&:hover {
		color: var(--main-color);
	}
}

.external-link {
	position: relative;
	display: inline-block;

	&:after {
		content: "";
		position: absolute;
		width: 1em;
		height: 1em;
		background-image: url(/assets/imgs/icon_external.svg);
		background-size: contain;
		background-repeat: no-repeat;
		transform: translateY(-50%);
		top: 50%;
		right: -1.2em;
	}

	&:hover {
		color: var(--main-color);

		&:after {
			background-image: url(/assets/imgs/icon_external_hov.svg);
		}
	}
}

/* マクシスの強み
* ---------------------------------- */
.strengths-area .tier02-link {
	font-size: var(--txt28-20);
}

/* 事業内容
* ---------------------------------- */
h2.sitemap-midashi {
	font-size: var(--txt28-20);
	padding-bottom: .4em;
	border-bottom: solid 1px #000;
	margin-bottom: var(--m32-16);
}

.sitemap-wrap {
	padding-left: var(--m56-32);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: var(--m40-24);

	.tier02-link {
		font-size: var(--m24-16);
		margin-bottom: var(--m16-8);
	}

	.tier03-link {
		font-size: var(--txt18-16);
		font-weight: 700;
	}

	dl {
		margin-bottom: var(--m16-8);
		padding-left: 1em;

		dd {
			padding-left: 1em;
		}
	}
}

/* 会社案内
* ---------------------------------- */
.company-area {
	.tier02-link {
		font-size: var(--txt20-18);
		font-weight: 700;
		margin-bottom: var(--m16-8);
	}

	.sitemap-flex {
		padding-left: var(--m56-32);
		display: flex;
		gap: min(10vw, 104px);
	}
}

/* その他のリンク
* ---------------------------------- */
.others-area {
	.tier02-link {
		font-size: var(--txt24-20);
		margin-bottom: var(--m32-16);
		font-weight: 700;
	}
}

/* =========================================
* 共通お問い合わせ
* ======================================== */
.contact-area,
.mold-contact-area {
	background-image: url(/assets/imgs/contact_bg.webp);
	background-size: cover;
	background-position: center;
	color: #fff;
	font-weight: 700;
	font-size: var(--txt14-13);

	.contact-txt {
		max-width: 525px;
		width: 70%;
		display: flex;
		gap: var(--m32-16);
		flex-direction: column;
	}
}

.contact-area {

	.contact-txt {
		max-width: 525px;
		width: 70%;
		display: flex;
		gap: var(--m32-16);
		flex-direction: column;
	}
}

.mold-contact-area {
	h2 span {
		font-size: var(--txt24-20);
	}

	.contact-txt {
		max-width: 550px;
		width: 80%;
		display: flex;
		gap: var(--m24-16);
		flex-direction: column;
		text-align: left;

		.tel-number-col {
			.flex {
				gap: var(--m16-8);

				dt {
					border-left: 4px solid var(--sub-color);
					font-size: var(--txt24-20);
					font-weight: 700;
					padding: 8px;

					p:nth-child(2) {
						font-size: var(--txt18-16);
						padding-top: .2em;
					}
				}

				dd {
					line-height: 150%;
					font-size: var(--txt16-14);
				}
			}
		}
	}
}

/* =========================================
* フッター
* ======================================== */
footer {
	background-color: var(--txt-gray);
	color: #fff;
	padding: var(--m80-40) 0 var(--m56-32) 0;
	line-height: 150%;

	.footer-tier02 {
		font-weight: 700;
		margin-bottom: 16px;
		display: block;
	}

	.footer-tier03 {
		font-size: var(--txt14-13);
		font-weight: 400;
	}

	.footer-container {
		display: flex;
		justify-content: space-between;
		gap: min(3vw, 56px);
		margin-bottom: var(--m80-40);


		.footer-address {
			font-size: 12px;
			line-height: 130%;
			margin-top: var(--m24-16);
		}

		.footer-midashi {
			font-weight: 700;
			border-bottom: 1px solid #fff;
			padding-bottom: 1em;
			margin-bottom: 1em;
		}

		ul {
			margin-bottom: 16px;

			.footer-col:nth-child(4) & {
				margin-bottom: 80px
			}
		}

	}

	a:hover {
		color: var(--sub-color);
	}
}

.footer-bottom {
	gap: var(--m56-32);

	.sp-flex {
		gap: var(--m40-24);
	}

	.copyright {
		font-size: 12px;
	}
}


@media (max-width: 768px) {

	/* =========================================
* 共通パーツ
* ======================================== */

	/* 変数
* ---------------------------------- */
	:root {
		--header-height: 64px;
		--txt54-36: 36px;
		--txt40-28: 28px;
		--txt36-24: 24px;
		--txt32-24: 24px;
		--txt28-20: 20px;
		--txt24-20: 20px;
		--txt20-18: 18px;
		--txt18-16: 16px;
		--txt16-14: 14px;
		--txt14-13: 13px;
		--m120-80: 80px;
		--m104-56: 56px;
		--m80-40: 40px;
		--m56-32: 32px;
		--m40-24: 24px;
		--m32-16: 16px;
		--m24-16: 16px;
		--m16-8: 8px;
	}

	/* パンくず
* ---------------------------------- */


	h1.tier02-midashi {
		&::before {
			bottom: -24px;
		}
	}


	/* テーブル
* ---------------------------------- */
	.default-table {
		tr {
			display: block;
		}

		th {
			padding-bottom: 0;
			padding-right: 0;
			display: inline-block;
			width: 80px;

			&:nth-child(2) {
				text-align: left;
				padding-left: 0;
			}
		}

		td {
			padding-top: 8px;
			display: block;
		}
	}

	/* ボタン達
* ---------------------------------- */
	.top-contact-btn {
		font-size: 16px;
		justify-content: center;
		margin-top: 40px;
		padding: .8em;

		&::after {
			content: "";
			position: absolute;
			border-top: 2px solid var(--main-color);
			border-right: 2px solid var(--main-color);
			width: .5em;
			height: .5em;
			transform: var(--kunoji);
			right: 30%;
			top: 50%;
			display: inline-block;
		}

	}


	/* ページ構成
* ---------------------------------- */
	/* --- 2階層目（2カラム） --- */
	.double-column {
		.container {
			display: block;

			.midashi-col {
				width: 100%;
				margin-bottom: 16px;
			}

			.double-column-detail {
				width: 100%;

				.double-column-col {

					.flex {
						flex-direction: column-reverse;

						.tier03-txt {
							width: 100%;
						}

						.tier03-img {
							width: 100%;
							max-width: 100%;
							aspect-ratio: 43 / 25;
							object-fit: cover;

							&.map-img {
								aspect-ratio: auto;
							}
						}
					}

					dl {
						flex-direction: column;
						gap: 0;
					}
				}

			}
		}
	}

	/* =========================================
	* scrollhint
	* ======================================== */
	.js-scrollable {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;

		img {
			min-width: 800px;
		}
	}

	/* =========================================
* ヘッダー
* ======================================== */

	header {
		.top-logo {
			width: 240px;
		}
	}

	.header-contents nav {
		display: block;
		position: fixed;
		background-color: #fff;
		width: 100%;
		top: var(--header-height);
		height: auto;
		font-size: 16px;
		transition: right 0.3s ease-in-out;
		right: -100%;
		padding: 40px 24px;
		height: calc(100vh - 64px);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;

		&>ul {
			display: block;
			height: auto;
			margin: auto;

			.nav-link {
				border-top: 1px solid var(--blue-gray);
				position: relative;

				&::after {
					content: "";
					position: absolute;
					transform: rotate(45deg);
					display: inline-block;
					width: 8px;
					height: 8px;
					border-top: 2px solid var(--main-color);
					border-right: 2px solid var(--main-color);
					top: 1.7em;
					right: 1em;
				}

				&:last-child {
					border-bottom: 1px solid var(--blue-gray);
				}

				&>a {
					height: auto;
					padding: 1.2em 0;
					font-weight: 700;
					justify-content: space-between;
					border-bottom: none;
					font-size: 16px;
				}

				&.has-child>a {
					pointer-events: auto;
				}

				&:hover>a,
				&.active>a {
					border-bottom: none;
				}

			}

			.has-child.nav-link {
				&::after {
					display: none;
				}

				.kunoji {
					width: 0.8em;
					height: 0.8em;
					border: none;
					transform: rotate(0) !important;
					/* くの字線を消す */
					position: relative;
					margin-right: .8em;

					/* プラス記号を擬似要素で作る */
					&::before,
					&::after {
						content: "";
						position: absolute;
						background-color: var(--main-color);
					}

					&::before {
						top: 50%;
						left: 0;
						width: 100%;
						height: 2px;
						transform: translateY(-50%);
					}

					&::after {
						left: 50%;
						top: 0;
						width: 2px;
						height: 100%;
						transform: translateX(-50%);
					}
				}

				&.active {
					.kunoji {

						&::after {
							transform: translateX(-50%) rotate(90deg);
							opacity: 0;
						}
					}
				}

				&:hover {
					.kunoji {
						margin-top: 0;
					}
				}
			}
		}

	}

	.header-contents nav.active {
		right: 0;
	}

	.child-box {
		display: none;
		position: static;
		padding: 0 24px 40px 0;

		.child-img {
			display: none;
		}

		a {

			&:after {
				position: absolute;
				content: "";
				display: inline-block;
				border-top: 2px solid var(--main-color);
				border-right: 2px solid var(--main-color);
				transform: var(--kunoji);
				top: 50%;
				right: .2em;
				width: 7px;
				height: 7px;
			}

			&:hover {
				color: var(--main-color);
			}
		}

		ul {
			padding: 0 1em 1em 1em;

			li {
				margin-bottom: 0;
				padding: .6em 0;
			}
		}

		.child-wrap {
			display: block;
		}

		.header-tier02 {
			margin: 0 0 16px 0;
		}

		.child-flex {
			display: block;

			ul {
				column-count: 1;
			}
		}
	}

	.has-child.active {

		.child-box {
			opacity: 1;
			visibility: visible;
			display: block;
		}
	}


	/* ハンバーガー
	* ---------------------------------- */

	.burger {
		display: none;
	}


	/* ハンバーガー
* ---------------------------------- */

	/* --- 3本線を囲ってる正方形を囲ってる正方形 --- */
	.burger {
		position: absolute;
		cursor: pointer;
		display: flex;
		justify-content: center;
		align-items: center;
		width: var(--header-height);
		height: var(--header-height);
		right: 0;
		top: 0;
		z-index: 100001;
		background-color: var(--main-color);
	}

	/* --- 3本線を囲ってる正方形(widthが3本線の長さになる) --- */

	.burger-wrap {
		width: 25px;
		height: 25px;
		position: relative;
		margin: auto;
	}

	.burger span {
		display: inline-block;
		transition: all 0.4s;
		height: 2px;
		width: 25px;
		background-color: #fff;
		position: absolute;
	}

	.burger span:nth-of-type(1) {
		top: 3px;
	}

	.burger span:nth-of-type(2) {
		top: 11px;
	}

	.burger span:nth-of-type(3) {
		bottom: 3px;
	}

	.burger.active span:nth-of-type(1) {
		-webkit-transform: translateY(20px) rotate(315deg);
		transform: translateY(20px) rotate(315deg);
		top: -9px;
	}

	.burger.active span:nth-of-type(2) {
		opacity: 0;
	}

	.burger.active span:nth-of-type(3) {
		-webkit-transform: translateY(-20px) rotate(-315deg);
		transform: translateY(-20px) rotate(-315deg);
		bottom: -8px;
	}


	/* =========================================
* トップページ
* ======================================== */

	#top .top-lead-copy {
		background-image: none;
	}

	#top .top-business-area {
		background-image: none;
	}

	.engineering-business-col {
		flex-direction: column;

		.business-col-img {
			width: 100%;
			aspect-ratio: 43 / 25;
		}

		.business-col-txt {
			width: 100%;

			.normal-list {
				column-count: 1;
			}
		}
	}

	.business-wrap {
		display: flex;
		flex-direction: column;

		.business-col {

			.business-col-img {
				aspect-ratio: 43 / 25;
			}

			.business-col-txt {
				min-height: auto;

				ul {
					justify-content: flex-start;
					gap: 1em;
				}
			}
		}
	}


	.top-info-area {
		.top-info-bg {
			aspect-ratio: 195 / 76;
		}

		.top-info-wrap {
			padding: 32px 24px;
			margin-top: -40px;
		}
	}

	.top-pickup-area {

		.top-pickup-wrap {
			grid-template-columns: repeat(2, 1fr);
		}
	}

	.top-recruit-area {

		.top-recruit-bg {
			aspect-ratio: 195 / 76;
		}

		.top-recruit-wrap {
			padding: 32px 24px;
			flex-direction: column;
			margin-top: -40px;
			align-items: flex-start;

			.top-recruit-link {
				margin-left: auto;

				.circle-kunoji {
					min-width: 56px;
					height: 56px;

					&::after {
						width: 10px;
						height: 10px;
					}
				}
			}
		}
	}


	/* =========================================
* マクシスエンジニアリングの強み
* ======================================== */

	.strengths-list {
		margin-left: 1.5em;
		column-count: 1;
	}

	.flex:has(.strengths-list) {
		display: block;

		p {
			text-align: right;
		}
	}

	.strengths-block {


		.triangle {
			border-right: 32px solid transparent;
			border-left: 32px solid transparent;
			border-top: 24px solid var(--bg-blue);
		}

		.merit-list {
			grid-template-columns: repeat(1, 1fr);
		}

		.strengths-wrap {
			flex-direction: column;

			.put-on {
				font-size: 36px;
			}

			.strengths-col {
				width: 100%;
			}
		}
	}


	/* =========================================
* 自動車部品の設計・金型製作・小ロット生産
* ======================================== */

	.prototyping-merit-wrap {
		.prototyping-merit-col {
			.merit-number {
				font-size: 36px;
			}
		}
	}


	/* =========================================
* ロボットシステムインテグレーション
* ======================================== */
	.robot-wrap {

		.robot-col {
			width: 100%;

			.robot-list {
				&:first-child {
					column-count: 1;
				}

				li {

					.flex {
						align-items: flex-start;
					}
				}
			}
		}

		.robot-img01 {
			width: 100%;
		}
	}


	.robot-others-wrap {

		img {
			width: 100%;
		}
	}


	/* =========================================
* ユニバーサルロボット
* ======================================== */

	.universal-speck-wrap {

		.universal-speck-col {
			flex-direction: column;
			align-items: flex-start;
			gap: 8px;
			padding: 16px 0;

			dt {
				flex-direction: column;

				.speck-number {
					font-size: 36px;
				}
			}
		}
	}


	.e-series-wrap {
		grid-template-columns: repeat(1, 1fr);
	}


	/* =========================================
* ねじ穴検査ロボット
* ======================================== */

	.problem-wrap {

		.triangle {
			border-right: 35px solid transparent;
			border-left: 35px solid transparent;
			border-top: 20px solid var(--sub-color);
			border-bottom: 0;
		}
	}


	.screw-hole-table-wrap {
		width: 100%;

		.screw-hole-table {

			tr {


				th,
				td {
					display: block;
				}

				th {
					width: 100%;
					padding-bottom: 0;
				}

				td {
					padding-top: 0;
				}
			}
		}

	}

	.screw-hole-works-wrap {
		gap: 24px;

		.screw-hole-works-col {
			width: 100%;

			&:first-child {
				width: 100%;
			}

			h4,
			p {
				min-height: auto;
			}


			.flex {
				gap: var(--m24-16);
			}
		}
	}

	/* =========================================
* 画像処理/自動検査機
* ======================================== */
	.image-wrap {

		img {
			width: 100%;
		}

		.image-wrap-txt {
			width: 100%;

			.image-circle-wrap {

				.image-circle {
					font-size: 13px;
				}
			}
		}
	}


	.image-works-wrap {
		gap: var(--m80-40);

		.image-works-col {
			&:first-child {
				width: 100%;

				p {
					display: inline-block;
					position: relative;

					&::after {
						content: "";
						position: absolute;
						transform: var(--kunoji);
						border-top: var(--main-color) 2px solid;
						border-right: var(--main-color) 2px solid;
						width: 8px;
						height: 8px;
						top: 50%;
						right: -1em;
					}
				}
			}

			.blue-list {
				column-count: 1;
			}
		}
	}

	/* =========================================
* 自動車部品生産関連設備
* ======================================== */
	.automotive-works-wrap {
		flex-direction: column-reverse;

		.blue-list {
			column-count: 1;
		}

		.automotive-works-img {
			width: 100%;
		}
	}

	/* =========================================
* 半導体・電子部品生産関連設備
* ======================================== */
	.semiconductor-works-wrap {

		.semiconductor-works-col {
			&:first-child {
				width: 100%;
			}
		}
	}

	/* =========================================
* バンプフラットニング装置
* ======================================== */
	.table-scroll-wrap {
		overflow-x: scroll;

		.scroll-hint-icon {
			top: 10%;
		}

	}

	/* =========================================
* 主要設備
* ======================================== */
	.equipment-table {
		width: 100%;

		tr {
			display: block;

			th {
				display: block;
				width: 100%;
			}

			td {
				display: table-cell;
				width: 100%;

				&:last-child {
					text-align: right;
					min-width: 80px;
				}
			}
		}

	}

	/* =========================================
* 金型製作実績
* ======================================== */
	.mold-pats-wrap {

		.parts-wrap {
			grid-template-columns: repeat(2, 1fr);
		}
	}

	/* =========================================
* 光学技術
* ======================================== */
	.optical-wrap {
		.logo-3ddragons {
			min-width: auto;
		}
	}

	.works-3column,
	.works-4column {
		grid-template-columns: repeat(1, 1fr);

		h3 {
			min-height: auto;
		}
	}

	/* =========================================
* デジタル化支援サービス
* ======================================== */
	.digital-support-table {
		table-layout: auto;

		tbody {

			th {
				display: block;
			}

			td {
				display: block;
				padding: 0 var(--m24-16) 8px var(--m24-16);
			}
		}
	}

	.digital-support-3d {
		display: flex;
		flex-direction: column;
		gap: var(--m16-8);

		.note {
			font-size: 12px;
		}

		.circle-img {
			margin: auto;
			filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.1));

		}
	}

	.soft-txt {
		margin-bottom: 8px;

		span {
			vertical-align: middle;
			display: inline-block;
		}
	}



	/* =========================================
* ソフトウェア（組込/制御/アプリケーション）設計
* ======================================== */
	#software-development .default-table {

		th {
			width: 100%;
		}

		td {
			padding-top: 0;
		}
	}

	.software-works-wrap {
		flex-direction: column;

		.software-works-col {
			width: 100%;

			h3 {
				margin-bottom: 8px;
			}

			.normal-btn {
				margin: 16px auto 0 auto;
			}
		}
	}



	/* =========================================
* 過去の開発事例
* ======================================== */
	.search-category-wrap {
		grid-template-columns: repeat(2, 1fr);

		.search-category-col {
			font-size: 14px;
			padding: 0;
			height: 48px;
			line-height: normal;
		}

	}

	.search-category-box {
		margin-top: 24px;
	}

	.search-tag-wrap {

		.search-tag {
			padding: .3em 1.2em;
		}
	}

	.search-form {
		height: 36px;


		button {
			width: 80px;
		}
	}


	.results-area {

		.results-list {
			.results-col {
				flex-direction: column;
				padding: var(--m40-24) 0px;

				.works-img {
					width: 100%;
				}


				&:not(.results-nolink)::after {
					width: 48px;
					height: 48px;
					top: auto;
					bottom: 24px;
					right: 0;
				}

				&:not(.results-nolink)::before {
					top: auto;
					bottom: 34px;
					right: 24px;
					width: 16px;
					height: 16px;
				}

				.search-tag-wrap {
					padding-right: 42px;

					.search-tag {
						padding: 0 1em;
					}
				}

				&:hover {
					background-color: #fff;

					&::after {
						background-color: var(--main-color);
					}

					&::before {
						border-top: 1px solid #fff;
						border-right: 1px solid #fff;
					}
				}
			}
		}
	}

	/* =========================================
* 過去の開発事例（記事）
* ======================================== */
	.works-title {
		flex-direction: column-reverse;

		.works-img {
			width: 100%;
			max-width: 100%;
		}

		.works-title-txt {
			display: flex;
			flex-direction: column;
			gap: var(--m16-8);


			.search-tag-wrap {
				gap: 8px;

				.search-tag {
					padding: .2em 1em;
					border: 1px solid var(--gray);
				}
			}

			.works-midashi {
				font-size: var(--txt28-20);
				color: var(--main-color);
				text-align: left;
				line-height: 150%;
			}
		}
	}

	/* =========================================
	* 会社概要
	* ======================================== */
	.overview-img {
		margin-top: 8px;
	}


	/* =========================================
* 事業所・拠点・グループ会社
* ======================================== */
	.locations-col {
		flex-direction: column;

		.locations-txt {
			.normal-btn {
				margin: var(--m16-8) auto;
			}
		}

		.locations-img {
			margin: auto;
		}
	}


	/* =========================================
* 環境・ISO
* ======================================== */
	.iso-white-wrap {

		.iso-wrap {
			grid-template-columns: 1fr;

			.iso-col {
				.iso-img {
					width: 72px;
				}

				&:nth-child(1) {
					order: 1;
				}

				&:nth-child(2) {
					order: 3;
				}

				&:nth-child(3) {
					order: 2;
				}

				&:nth-child(4) {
					order: 4;
				}
			}
		}
	}


	/* =========================================
* その他
* ======================================== */
	#others {
		.default-table {
			th {
				width: 100%;
			}
		}
	}

	/* =========================================
* 受託設計・開発
* ======================================== */
	.contract-wrap {
		.contract-point-wrap {
			grid-template-columns: repeat(1, 1fr);

			.contract-point-col {
				h3 {
					font-size: var(--m24-16);
					color: var(--main-color);
					line-height: 150%;
					padding-bottom: var(--m16-8);
					border-bottom: 1px solid var(--txt-gray02);
					margin-bottom: var(--m16-8);
				}
			}
		}

		.contract-point-txt {
			font-size: var(--txt24-20);
			font-weight: 700;
			text-align: center;
			color: var(--txt-gray);
			margin-top: var(--m24-16);
			line-height: 150%;
		}
	}


	/* =========================================
* お問い合わせ
* ======================================== */

	/* メールでのお問い合わせ
* ---------------------------------- */
	.form-area {

		.form-col {
			display: block;

			dt {
				margin-right: 0;
				width: 100%;
				min-width: 100%;
				margin-bottom: 8px;
			}

			dd {
				width: 100%;
			}

		}

		.address-wrap {
			display: block;

			h4 {
				margin-bottom: 8px;
			}

			.address-col {
				width: 100%;
				padding-left: 1.5em;
			}
		}
	}


	/* =========================================
* サイトマップ
* ======================================== */


	/* 事業内容
* ---------------------------------- */

	.sitemap-wrap {
		padding-left: 24px;
	}

	/* 会社案内
* ---------------------------------- */
	.company-area {

		.sitemap-flex {
			padding-left: 24px;
			flex-direction: column;
			gap: 0;
		}
	}

	/* その他のリンク
* ---------------------------------- */
	.others-area {
		.tier02-link {
			font-size: var(--txt24-20);
			margin-bottom: var(--m32-16);
			font-weight: 700;
		}
	}

	/* =========================================
* 共通お問い合わせ
* ======================================== */
	.contact-area {
		background-image: url(/assets/imgs/contact_bg.webp);
		background-size: cover;
		background-position: center;
		color: #fff;
		gap: var(--m40-24);
		font-weight: 700;
		font-size: var(--txt14-13);

		.contact-txt {
			max-width: 100%;
			width: 100%;
		}
	}

	/* =========================================
* フッター
* ======================================== */
	footer {

		.footer-bottom {
			.copyright {
				font-size: 10px;
			}
		}
	}
}