@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%;
}

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

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

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

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

a {
	text-decoration: none;
	color: inherit;
}


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

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

@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: -ms-flexbox;
	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) {
	.sp_flclear {
		display: block;
	}

	.sp_flex {
		display: flex;
	}
}

/*_____余白_____*/

.mb16 {
	margin-bottom: 16px;
}


.mr16 {
	margin-right: 16px;
}



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

/* 変数
* ---------------------------------- */
:root {
	--main-color: #194178;
	--sub-color: #3AAEF7;
	--light-color: #E6F8FE;
	--main-gd: linear-gradient(90deg, var(--sub-color) 33.42%, #0071E9 99.96%);
	--en-txt: "Roboto Condensed", sans-serif;
	--header-height: 80px;
	--kunoji: rotate(45deg) translateY(-50%);
	--hov-move: all .4s;
	--double-columns-container: calc(1080px - 290px);
	--txt54-36: 54px;
	--txt40-32: 40px;
	--txt36-24: 36px;
	--txt32-24: 32px;
	--txt24-20: 24px;
	--txt20-18: 20px;
	--txt18-16: 18px;
	--txt16-14: 16px;
	--txt14-13: 14px;
	--m120-80: 80px;
	--m80-40: 80px;
	--m56-32: 56px;
	--m40-24: 40px;
	--m32-16: 32px;
	--m24-16: 24px;
	--m16-8: 16px;
}


/* 色
* ---------------------------------- */


.corporate-color-bg {
	background-color: var(--main-color);
}

.corporate-color-txt {
	color: var(--main-color);
}

.gd-bg {
	background: var(--main-gd);
}

.gd-bg-txt {
	background: var(--main-gd);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.light-bg {
	background: var(--light-color);
}

/* ボタン
* ---------------------------------- */
.corporate-btn {
	background: var(--main-gd);
	color: #FFF;
	font-weight: 600;
	display: flex;
	max-width: 400px;
	width: 80%;
	justify-content: center;
	align-items: center;
	padding: 1em 2em;
	position: relative;
	transition: var(--hov-move);
	border: solid 1px var(--sub-color);
}

.corporate-btn::after {
	position: absolute;
	content: "";
	width: .6em;
	height: .6em;
	border-top: 2px #fff solid;
	border-right: 2px #fff solid;
	right: 0;
	transform: var(--kunoji);
	top: 50%;
	right: 2em;
	transition: var(--hov-move);
}

.corporate-btn:hover {
	background: #FFF;
	color: var(--main-color);
	transition: var(--hov-move);
}

.corporate-btn:hover::after {
	border-top: 2px var(--main-color) solid;
	border-right: 2px var(--main-color) solid;
	transition: var(--hov-move);
}

.corporate-btn.center-btn {
	margin: var(--m40-24) auto 0 auto;
}

#recruit .corporate-btn.center-btn {
	margin: var(--m40-24) auto;
}

.corporate-btn.right-btn {
	margin: var(--m32-16) 0 0 auto;
	width: 230px;
}


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

.bread-list {
	margin: 16px 0;
	display: flex;
	font-size: 12px;
	font-weight: 700;
	flex-wrap: wrap;
}

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

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

.bread-list li::before {
	position: absolute;
	content: "";
	width: 6px;
	height: 6px;
	border-top: solid 2px var(--main-color);
	border-right: solid 2px var(--main-color);
	top: 50%;
	left: -24px;
	transform: var(--kunoji);
}

.bread-list li:first-child {
	margin-left: 0;
}

.bread-list li:first-child::before {
	display: none;
}

/* メインビジュアルのスタイル
* ---------------------------------- */
.midashi-wrap hgroup {
	color: #FFF;
	text-align: left;
	position: absolute;
	left: 0;
	bottom: var(--m32-16);
}

.midashi-wrap hgroup p {
	font-size: var(--txt20-18);
	font-weight: 500;
	margin-bottom: .5em;
}

.midashi-wrap hgroup h1 {
	font-family: var(--en-txt);
	font-size: var(--txt40-32);
}

.midashi-wrap {
	background-size: cover;
	background-repeat: no-repeat;
	background-position-y: center;
}

.midashi-wrap .container {
	position: relative;
	height: 100%;
}



/* 第二階層共通
* ---------------------------------- */
.tier02 .midashi-wrap {
	aspect-ratio: 32 / 7;
}

#strengths .midashi-wrap {
	background-image: url(../imgs/strengths/mv_bg.png);
}

#products .midashi-wrap {
	background-image: url(../imgs/products/mv_bg.png);
}

#works .midashi-wrap {
	background-image: url(../imgs/works/mv_bg.png);
}

#aboutus .midashi-wrap {
	background-image: url(../imgs/aboutus/mv_bg.png);
}

#news .midashi-wrap {
	background-image: url(../imgs/news/mv_bg.png);
}

#blog .midashi-wrap {
	background-image: url(../imgs/blog/mv_bg.png);
}

#blog .midashi-wrap {
	background-image: url(../imgs/blog/mv_bg.png);
}

#movie .midashi-wrap {
	background-image: url(../imgs/movie/mv_bg.png);
}

#faq .midashi-wrap {
	background-image: url(../imgs/faq/mv_bg.png);
}

#privacy .midashi-wrap {
	background-image: url(../imgs/privacy/mv_bg.png);
}

#recruit .midashi-wrap {
	background-image: url(../imgs/recruit/mv_bg.png);
}

#contact .midashi-wrap {
	background-image: url(../imgs/contact/mv_bg.png);
}

/* 第三・四階層共通
* ---------------------------------- */
.tier03 .midashi-wrap,
.tier04 .midashi-wrap {
	aspect-ratio: 160 / 19;
}

.tier03 .midashi-wrap hgroup,
.tier04 .midashi-wrap hgroup {
	position: static;
}

.tier03 .midashi-wrap .container,
.tier04 .midashi-wrap .container {
	display: flex;
	align-items: center;
}

.tier04 .midashi-wrap {
	background: var(--main-gd);
}


#drawing .midashi-wrap {
	background-image: url(../imgs/download/drawing/mv_bg.png);
}

#catalog .midashi-wrap {
	background-image: url(../imgs/download/catalog/mv_bg.png);
}

#company .midashi-wrap {
	background-image: url(../imgs/aboutus/mv_company_bg.png);
}

#message .midashi-wrap {
	background-image: url(../imgs/aboutus/mv_message_bg.png);
}

#history .midashi-wrap {
	background-image: url(../imgs/aboutus/mv_history_bg.png);
}

#health .midashi-wrap {
	background-image: url(../imgs/aboutus/mv_health_bg.png);
}

#access .midashi-wrap {
	background-image: url(../imgs/aboutus/mv_access_bg.png);
}

#sustainability .midashi-wrap {
	background-image: url(../imgs/aboutus/mv_sustainability_bg.png);
}


#products.tier04 .midashi-wrap {
	background-image: none;
	background: var(--main-gd);
}


/* 見出し
* ---------------------------------- */
h2 {
	font-size: var(--txt32-24);
	color: var(--main-color);
	font-weight: 700;
	position: relative;
	display: inline-block;
	line-height: 120%;
	text-align: center;
	margin: 0 1.5em var(--m40-24) 1.5em;
}

h2::before,
h2::after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 1.5em;
	height: 2.5px;
	background-color: var(--sub-color);
	-webkit-transform: rotate(-60deg);
	transform: rotate(-60deg);
}

h2::before {
	left: -1.7em;
}

h2::after {
	right: -1.7em;
}

h3 {
	font-size: var(--txt24-20);
	color: var(--main-color);
	font-weight: 700;
	margin-bottom: var(--m32-16);
}

h3.line-midashi {
	text-align: left;
	position: relative;
	margin-bottom: var(--m32-16);
}

h3.line-midashi::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 5px;
	background: var(--main-gd);
	bottom: -.5em;
	left: 0;
}

h4 {
	font-size: var(--txt20-18);
	text-align: left;
	color: var(--main-color);
	font-weight: 700;
}

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

ul.normal-list {
	padding-left: 1.5em;
	text-indent: -1.5em;
}

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

.table-note {
	text-align: justify;
}

ul.note,
ul.table-note,
.table-note ul {
	padding-left: 1em;
	text-indent: -1em;
}

.table-note {
	margin-top: 8px;
	font-size: var(--txt14-13);
}

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

.category-txt {
	color: #FFF;
	font-weight: 500;
	background: var(--main-gd);
	font-size: 14px;
	display: inline-block;
	padding: 0 .5em;
	text-align: center;
}

/* --- リッチエディター内リンク対策 --- */
.features-list a,
.purpose-list a,
.table-note a,
.a-box a {
	color: var(--sub-color);
	text-decoration: underline;
	font-weight: 500;
}

/* テーブル
* ---------------------------------- */
/* --- 基本のスタイル --- */
table.default-table {
	width: 100%;
}

table.default-table th,
table.default-table td {
	padding: 16px 24px;
	text-align: justify;
}

table.default-table td {
	border-bottom: 2px solid #D9D9D9;
}

table.default-table th {
	border-bottom: 2px solid var(--sub-color);
	vertical-align: middle;
	color: var(--main-color);
	font-weight: 700;
	width: 19%;
}

/* --- 製品のスペック表のスタイル --- */
.spec-table {
	width: 100%;
	border: 1px solid #000;
	font-size: var(--txt14-13);
	margin-top: 32px;
}


.spec-table tr,
.spec-table th,
.spec-table td {
	border: 1px solid #000;
	vertical-align: middle;
	padding: .2em;
}

.spec-table thead {
	background: #cecece;

}

.spec-table tbody th {
	background-color: #f4f4f4;
}

.table-bg td {
	background-color: var(--light-color);
}

/* サイドメニュー
* ---------------------------------- */

aside.category-menu {
	min-width: 250px;
	text-align: left;
	position: sticky;
	top: var(--header-height);
	color: var(--main-color);
	background-color: #fff;
	z-index: 50;
}

aside.category-menu h3 {
	font-size: var(--txt18-16);
	color: var(--main-color);
	border-bottom: var(--main-color) 2px solid;
	margin-bottom: 8px;
}

aside.category-menu li {
	font-weight: 500;
	position: relative;
	transition: var(--hov-move);
}



aside.category-menu li::after {
	content: "";
	position: absolute;
	right: 1em;
	top: 50%;
	width: 8px;
	height: 8px;
	border-top: 2px solid var(--main-color);
	border-right: 2px solid var(--main-color);
	transform: var(--kunoji);
	transition: var(--hov-move);
}

aside.category-menu li:hover {
	color: var(--sub-color);
	transition: var(--hov-move);
}

aside.category-menu li:hover::after {
	border-top: 2px solid var(--sub-color);
	border-right: 2px solid var(--sub-color);
	transition: var(--hov-move);
}

aside.category-menu a {
	padding: 8px 16px;
	display: block;
}

aside.category-menu h3 span {
	vertical-align: middle;
	margin-right: 8px;
	display: inline-block;
}

/* =========================================
* ヘッダー
* ======================================== */
header {
	background-color: #fff;
	height: var(--header-height);
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	z-index: 10000;
	box-shadow: 0px 5px 5px -5px #777777;

}

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

.top-logo {
	width: 24%;
	padding: 0 var(--m24-16);
}

.header-contents nav,
.header-contents nav ul {
	display: flex;
	font-size: min(1.14vw, 14px);
	align-items: center;
	height: 100%;
	font-weight: 500;
}

.header-contents nav ul {
	gap: .5em;
	margin-right: 1em;
}

.header-contents nav ul li {
	height: 100%;
	padding: 0 .7em;
	transition: var(--hov-move);
	border-bottom: 3px solid #fff;
}

.header-contents nav a {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-contents nav ul li:hover {
	color: var(--sub-color);
	border-bottom: 3px solid var(--sub-color);
	transition: var(--hov-move);
}

.top-btn-wrap {
	display: flex;
	height: 100%;
}

.top-d-dl-btn,
.top-c-dl-btn,
.top-contact-btn {
	color: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--hov-move);
}

.top-d-dl-btn {
	background: var(--main-gd);
	padding: 0 2.5em;
	clip-path: polygon(17.027% 0%, 100% 0%, 82.973% 100%, 0% 100%);
	margin-right: -2.2em;
}

.top-c-dl-btn {
	background: var(--sub-color);
	clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
	padding: 0 2.5em;
	margin-right: -2.2em;
}

.top-contact-btn {
	background: var(--main-color);
	padding: 0 2.5em;
	clip-path: polygon(19.207% 0%, 100% 0%, 100% 100%, 0% 100%);
	margin-right: -1.5em;
}

.top-d-dl-btn:hover,
.top-c-dl-btn:hover,
.top-contact-btn:hover {
	background: var(--light-color);
	color: var(--main-color);
	transition: var(--hov-move);
}

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


/* メインビジュアル
* ---------------------------------- */
.top-mv {
	aspect-ratio: 1283 / 475;
	position: relative;
}

.top-mv video {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.top-midashi {
	position: absolute;
	width: 100%;
	height: 100%;
	aspect-ratio: 1283 / 475;
	top: 0;
	left: 0;
}

.top-midashi .container {
	height: 100%;
	display: flex;
	align-items: center;
}

.top-midashi .container hgroup {
	text-align: left;
}

.top-midashi .container hgroup h1 {
	font-family: "Inter", sans-serif;
	color: #FFF;
	font-weight: 800;
	letter-spacing: 2.88px;
	line-height: 110%;
	margin-bottom: min(3vw, 40px);
	font-size: min(5vw, 54px);
}

.top-midashi .container hgroup h1 span {
	padding-left: 2.5em;
}

.top-midashi .container hgroup p {
	color: #fff;
	letter-spacing: 0.64px;
	font-weight: 700;
	text-shadow: var(--main-color) 1px 0 10px;
}


/* --- トップのスライド部分 --- */
.top-slide .slick-track {
	padding: 16px 0;
}

.top-slide-col {
	aspect-ratio: 134 / 75;
	margin: 0 var(--m16-8);
	opacity: 1;
	transition: opacity 0.3s ease;
	box-shadow: 0px 6px 9px -5px #777777;
	overflow: visible;
}

/* 
.top-slide .slick-center {
	opacity: 1;
} */

.top-slide-col img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.top-slide {
	margin: max(-9vw, -96px) auto 0 auto;
	padding: var(--m40-24) 0;
}

/* ドット全体 */
.top-slide .slick-dots {
	display: flex !important;
	justify-content: center;
	/* ドット間の間隔を狭くする */
	margin-top: var(--m32-16);
	/* 必要に応じて調整 */
	padding: 0;
	align-items: center;
}

/* 各ドットボタン */
.top-slide .slick-dots li {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
}

.top-slide .slick-dots li button {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #ccc;
	/* 通常時の色 */
	border: none;
	padding: 0;
	cursor: pointer;
	transition: all 0.3s ease;
}

/* アクティブ状態のドット */
.top-slide .slick-dots li.slick-active button {
	background-color: var(--main-color);
	/* 青色に変更 */
	width: 10px;
	height: 10px;
}

.top-slide .slick-dots li button:before {
	display: none;
}


/* スライド制御用　2025.09.11追加 */
/* スライダー初期化前の状態を制御 */
.top-slide {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
}

/* Slickが初期化されたら表示 */
.top-slide.slick-initialized {
	opacity: 1;
	visibility: visible;
}

/* 代替案：最初のスライドのみ表示 */
.top-slide:not(.slick-initialized) .slide-item {
	display: none;
}

.top-slide:not(.slick-initialized) .slide-item:first-child {
	display: block;
}

/* ローディング中の最小高さを設定 */
.top-slide:not(.slick-initialized) {
	min-height: 400px;
	/* 適切な高さに調整 */
}


/* トップの見出し
* ---------------------------------- */
#top hgroup {
	color: var(--main-color);
	margin-bottom: var(--m32-16);
	font-weight: 500;
}

#top hgroup h2 {
	font-family: var(--en-txt);
	font-size: var(--txt40-32);
	margin: 0;
	font-weight: 500;
}

#top hgroup h2::before,
#top hgroup h2::after {
	display: none;
}

#top hgroup h2::first-letter {
	color: var(--sub-color);
}

#top .works-area hgroup {
	color: #fff;
}


#top .works-area hgroup h2::first-letter {
	color: #fff;
}


/* インスタグラム
* ---------------------------------- */
#top .light-bg hgroup {
	position: relative;
}

#top .light-bg hgroup .ig-link {
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	right: 1em;
	transition: var(--hov-move);
	font-weight: 700;
	display: block;
}

#top .light-bg hgroup .ig-link span {
	position: relative;
	display: inline-block;
	width: 1em;
	height: 1em;
}

#top .light-bg hgroup .ig-link span:after {
	position: absolute;
	content: "";
	transform: var(--kunoji);
	top: 50%;
	right: 0;
	width: 8px;
	height: 8px;
	border-top: 2px solid var(--main-color);
	border-right: 2px solid var(--main-color);
}

#top .light-bg hgroup .ig-link:hover {
	background: var(--main-gd);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: var(--hov-move);
}

#top .light-bg hgroup .ig-link:hover span:after {
	border-top: 2px solid var(--sub-color);
	border-right: 2px solid var(--sub-color);
	transition: var(--hov-move);
}

.ig-wrap {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: var(--m16-8);
}

.ig-img-col {
	aspect-ratio: 4/5;
	width: 100%;
	height: 100%;
	transition: var(--hov-move);
}

.ig-img-col:hover {
	opacity: .8;
	filter: brightness(110%);
	transition: var(--hov-move);
}

.ig-img-col img {
	object-fit: cover;
}

/* プラグインのスタイルをオーバーライド */
.sb_instagram_header {
	display: none !important;
}

/* 新着情報・ブログ
* ---------------------------------- */
#top .top-news-wrap hgroup,
#top .top-blog-wrap hgroup {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 0;
	white-space: nowrap;
}

#top .top-news-wrap,
#top .top-blog-wrap {
	margin-top: var(--m40-24);
}

.top-news-wrap .category-item {
	width: 80%;
	max-width: 712px;
	gap: min(1vw, 24px);
	margin-left: 1em;
	font-size: min(1.8vw, 16px);
}

.top-news-wrap .corporate-btn,
.top-blog-wrap .corporate-btn {
	background: #fff;
	color: var(--main-color);
}

.top-news-wrap .corporate-btn::after,
.top-blog-wrap .corporate-btn::after {
	border-top: 2px solid var(--main-color);
	border-right: 2px solid var(--main-color);
}

.top-news-wrap .corporate-btn:hover,
.top-blog-wrap .corporate-btn:hover {
	background: var(--main-gd);
	color: #fff;
}

.top-news-wrap .corporate-btn:hover:after,
.top-blog-wrap .corporate-btn:hover:after {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

.news-nf {
	padding: 48px 0 0;
}

/* トップの企業情報
* ---------------------------------- */
#top .aboutus-wrap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16;
}

#top .aboutus-col {
	height: 224px;
}

#top .aboutus-col hgroup,
#top .aboutus-col hgroup h2 {
	color: #fff;
	margin-bottom: 0;
}

#top .aboutus-col hgroup h2 {
	font-size: min(2.8vw, var(--txt32-24));
}

#top .aboutus-col hgroup h2::first-letter {
	color: #fff;
}

#top .aboutus-col .aboutus-txt {
	margin: 16px;
}

/* =========================================
* 三和式の強み
* ======================================== */
h2.gd-midashi {
	background: var(--main-gd);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

h2.gd-midashi::before,
h2.gd-midashi::after {
	display: none;
}

.strengths-img-wrap {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin: var(--m40-24) auto;
}

.img-clip {
	clip-path: polygon(37% 0, 100% 0, 63% 100%, 0% 100%);
	overflow: hidden;
	width: 40%;
	/* サイズ調整 */
	height: 344px;
	flex-shrink: 0;
}

.img-clip:first-child {
	margin-right: -104px;
}

.img-clip:last-child {
	margin-left: -104px;
}

.img-clip img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.strengths-col {
	margin-bottom: var(--m80-40);
}

.strengths-col:last-child {
	margin-bottom: 0;
}

.strengths-col ul.note {
	margin-top: 1em;
}

.strengths-txt,
.strengths-img {
	width: 48%;
}

.strengths-img {
	aspect-ratio: 295 / 212;
	clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
	height: 420px;

}

.flexR .strengths-img {

	clip-path: polygon(0 0, 70% 0, 100% 100%, 0 100%);

}

.strengths-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.strengths-txt {
	text-align: justify;
}

.strengths-txt hgroup .en-midashi {
	font-size: var(--txt40-32);
	font-family: var(--en-txt);
	background: var(--main-gd);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 150%;
}

.strengths-txt hgroup h3 {
	line-height: 150%;
	margin-bottom: 16px;
}

.correspondence-wrap {
	position: relative;
	background-color: var(--light-color);
}

.flex:has(.assignment-list) {
	gap: min(4vw, 56px);
}

.triangle-mark {
	display: block;
	border-style: solid;
	border-width: 16px 0 16px 24px;
	border-color: transparent transparent transparent var(--sub-color);
}

.assignment-list {
	width: 100%;
}

.assignment-list ul li {
	padding: var(--m16-8) 8px;
	border-bottom: 1px solid var(--main-color);
}

.assignment-list h3 {
	padding: var(--m16-8);
	background-color: #fff;
	margin-bottom: 0;
}

.correspondence-wrap::after {
	content: "";
	position: absolute;
	bottom: -100px;
	box-sizing: border-box;
	border-right: 50vw solid transparent;
	border-left: 50vw solid transparent;
	border-top: 100px solid var(--light-color);
}

section.strengths-works-wrap {
	padding-top: 136px;
}

section.strengths-works-wrap .strengths-col {
	gap: min(6vw, 80px);
}

section.strengths-works-wrap .strengths-col img {
	width: 55%;
}

section.strengths-works-wrap .strengths-col h3 {
	color: #000;
}

section.strengths-works-wrap .corporate-btn span {
	font-size: var(--txt32-24);
	font-family: var(--en-txt);
	vertical-align: middle;
	padding-right: .5em;
}

section.strengths-works-wrap .corporate-btn {
	max-width: 530px;
}

/* =========================================
* 製品情報
* ======================================== */

/* 検索窓
* ---------------------------------- */
.search-box {
	background: #e6f7fc;
	padding: var(--m24-16);
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.search-box p {
	position: relative;
	padding-left: 2em;
	margin-right: 1em;
}

.search-box p::before {
	content: "";
	width: 24px;
	height: 24px;
	background-image: url(../imgs/icon_search.svg);
	background-repeat: no-repeat;
	background-size: contain;
	transform: translateY(-50%);
	top: 50%;
	left: 0;
	position: absolute;
}

.search-icon {
	margin-right: 6px;
	font-size: 16px;
}

.search-form {
	display: flex;
	flex: 1;
	max-width: 690px;
	background-color: #fff;
	padding: 8px;
}

.search-input {
	flex: 1;
	border: none;
}

.search-form input[type="text"]:focus {
	outline: none;
}

.search-button {
	padding: 8px 24px;
	background: var(--main-gd);
	color: #fff;
	border: none;
	cursor: pointer;
	font-size: 14px;
	transition: var(--hov-move);
	font-weight: 500;
}

.search-button:hover {
	background: var(--main-color);
	transition: var(--hov-move);
}

input#s {
	width: 100%;
	border: none;
}

/* タブ切り替え
* ---------------------------------- */

.tab-wrap {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: var(--m24-16) auto;
	justify-content: center;
	gap: 0 40px;
	transition: var(--hov-move);
}

.tab-wrap>label {
	order: -1;
	width: 200px;
	padding: var(--m24-16) 0;
	color: var(--main-color);
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	position: relative;
	transition: var(--hov-move);
}

.tab-wrap>label:hover {
	color: var(--sub-color);
	transition: var(--hov-move);
}

.tab-wrap input {
	display: none;
}

.tab-wrap .tab-container {
	display: none;
	width: 100%;
	padding: var(--m40-24) 0;
}

.tab-wrap label:has(:checked) {
	color: var(--sub-color);
}

.tab-wrap label:has(:checked)::after {
	content: "";
	width: 100%;
	height: 4px;
	background: var(--main-gd);
	position: absolute;
	transform: translateX(-50%);
	left: 50%;
	bottom: 0px;
}

.tab-wrap label:has(:checked)+.tab-container {
	display: block;
	border-top: 1px solid var(--sub-color);
}

/* 製品カテゴリから探す
* ---------------------------------- */
.products-category-wrap {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 32px var(--m24-16);
}

.products-category-col,
.products-category-img {
	transition: var(--hov-move);
}

.products-category-img {
	width: 100%;
	aspect-ratio: 87 / 55;
	object-fit: cover;
}

.products-category-txt {
	text-align: left;
	color: var(--main-color);
	padding-right: 2em;
	position: relative;
}

.products-category-txt::after {
	content: "";
	position: absolute;
	top: 50%;
	right: .8em;
	width: 10px;
	height: 10px;
	border-top: 2px solid var(--main-color);
	border-right: 2px solid var(--main-color);
	transform: var(--kunoji);
	transition: var(--hov-move);
}

.products-description {
	font-size: 14px;
}

.products-category-col:hover .products-category-img {
	opacity: .8;
	filter: brightness(105%);
	transition: var(--hov-move);
}

.products-category-col:hover .products-category-txt h4,
.products-category-col:hover .products-category-txt p {
	color: var(--sub-color);
	transition: var(--hov-move);
}

.products-category-col:hover .products-category-txt::after {
	border-top: 2px solid var(--sub-color);
	border-right: 2px solid var(--sub-color);
	transition: var(--hov-move);
}

/* 施工施設・課題から探す
* ---------------------------------- */
.products-case-wrap {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 16px;
}

.products-case-col {
	background: var(--light-color);
	color: var(--main-color);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--m24-16);
	font-weight: 700;
	position: relative;
	transition: var(--hov-move);
}

.products-case-col::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20%;
	width: 10px;
	height: 10px;
	border-top: 2px solid var(--main-color);
	border-right: 2px solid var(--main-color);
	transform: var(--kunoji);
	transition: var(--hov-move);
}

.products-case-col p {
	width: 215px;
}

.products-case-col .case-col-icon {
	display: inline-block;
	width: 64px;
	min-height: 64px;
	background-size: contain;
	transition: var(--hov-move);
	background-repeat: no-repeat;
}

.products-case-col.col01 .case-col-icon {
	background-image: url(../imgs/products/icon_facility01.svg);
}

.products-case-col.col02 .case-col-icon {
	background-image: url(../imgs/products/icon_facility02.svg);
}

.products-case-col.col03 .case-col-icon {
	background-image: url(../imgs/products/icon_facility03.svg);
}

.products-case-col.col04 .case-col-icon {
	background-image: url(../imgs/products/icon_facility04.svg);
}

.products-case-col.col05 .case-col-icon {
	background-image: url(../imgs/products/icon_facility05.svg);
}

.products-case-col.col06 .case-col-icon {
	background-image: url(../imgs/products/icon_facility06.svg);
}

.products-case-col.col07 .case-col-icon {
	background-image: url(../imgs/products/icon_facility07.svg);
}

.products-case-col.col08 .case-col-icon {
	background-image: url(../imgs/products/icon_facility08.svg);
}

.products-case-col.col09 .case-col-icon {
	background-image: url(../imgs/products/icon_facility09.svg);
}


.products-case-col.col01:hover .case-col-icon {
	background-image: url(../imgs/products/icon_facility01_hov.svg);
}

.products-case-col.col02:hover .case-col-icon {
	background-image: url(../imgs/products/icon_facility02_hov.svg);
}

.products-case-col.col03:hover .case-col-icon {
	background-image: url(../imgs/products/icon_facility03_hov.svg);
}

.products-case-col.col04:hover .case-col-icon {
	background-image: url(../imgs/products/icon_facility04_hov.svg);
}

.products-case-col.col05:hover .case-col-icon {
	background-image: url(../imgs/products/icon_facility05_hov.svg);
}

.products-case-col.col06:hover .case-col-icon {
	background-image: url(../imgs/products/icon_facility06_hov.svg);
}

.products-case-col.col07:hover .case-col-icon {
	background-image: url(../imgs/products/icon_facility07_hov.svg);
}

.products-case-col.col08:hover .case-col-icon {
	background-image: url(../imgs/products/icon_facility08_hov.svg);
}

.products-case-col.col09:hover .case-col-icon {
	background-image: url(../imgs/products/icon_facility09_hov.svg);
}

.products-case-col:hover {
	background: var(--main-gd);
	color: #fff;
	transition: var(--hov-move);
}

.products-case-col:hover:after {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transition: var(--hov-move);
}


/* =========================================
* 製品情報（絞り込み結果）
* ======================================== */
.result-txt {
	text-align: left;
	font-size: var(--txt18-16);
	margin-bottom: 16px;
}

.products-wrap,
.works-wrap {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: var(--m40-24) var(--m24-16);
	margin: var(--m56-32) auto;
}

.products-col {
	text-align: left;
	transition: var(--hov-move);
}

.products-img {
	aspect-ratio: 42 / 25;
	width: 100%;
	object-fit: contain;
}

.products-tag-txt {
	color: var(--main-color);
	padding: 0 .5em;
	border: 1px solid var(--sub-color);
	white-space: nowrap;
}

.products-col h4 {
	position: relative;
	display: inline-block;
}

.products-col h4::after {
	content: "";
	position: absolute;
	top: 48%;
	right: -1.5em;
	width: 10px;
	height: 10px;
	border-top: 2px solid var(--main-color);
	border-right: 2px solid var(--main-color);
	transform: var(--kunoji);
	transition: var(--hov-move);
}

.products-col:hover .products-name {
	color: var(--sub-color);
	transition: var(--hov-move);
}

.products-col:hover h4::after {

	border-top: 2px solid var(--sub-color);
	border-right: 2px solid var(--sub-color);
	transition: var(--hov-move);
}

/* =========================================
* 製品情報（カテゴリ別）
* ======================================== */
.category-top {
	text-align: justify;
}

.category-wrap {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	height: 385px;
	margin-top: -24px;
}

#page_coolingfan .category-wrap {
	min-height: 385px;
	height: auto;
}

.category-top h2 {
	font-size: var(--txt36-24);
	clip-path: polygon(0 0, 100% 0%, 94% 100%, 0% 100%);
	color: #fff;
	background: var(--main-gd);
	text-align: left;
	margin: 0;
	padding: var(--m24-16);
	width: 700px;
	max-width: 100%;
}

.category-top h2::before,
.category-top h2::after {
	display: none;
}

.category-top .category-main-txt {
	width: 31%;
	height: 385px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-top: var(--m40-24);
}

#page_coolingfan .category-top .category-main-txt {
	min-height: 385px;
	height: auto;
}

.category-description {
	margin-bottom: 2rem;

}


.category-img {
	clip-path: polygon(20% 0, 100% 0%, 100% 100%, 0% 100%);
	width: 65%;
	object-fit: cover;
}


p.cat-title-s {
	font-size: 1.5rem;
	margin: 0.5rem 0 0;
}

.catalog-list-sp-case::after {
	content: none !important;
}

ul.catalog-dl-list {
	margin: 2rem 0 0 0;
}

.products-detail-list {
	margin-top: 3rem;
}

.catalog-dl-list a,
.document-list li,
/* .catalog-list li, */
.catalog-list-sp-case li,
.products-detail-list div {
	border-bottom: 1px solid var(--sub-color);
	position: relative;
	transition: var(--hov-move);
	text-align: left;
}


.catalog-dl-list a:hover,
.document-list li:hover,
.products-detail-list div:hover {
	background-color: var(--light-color);
	transition: var(--hov-move);
}

.catalog-dl-list a,
.document-list li a,
.catalog-list-sp-case li a,
.products-detail-list div a {
	padding: 8px var(--m16-8);
	display: block;
	line-height: normal;
}

.catalog-dl-list a {
	padding-right: var(--m24-16);
}

#page_coolingfan .catalog-dl-list a {
	font-size: var(--txt14-13);
}


.document-list li::after,
.products-detail-list div::after {
	position: absolute;
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2px solid var(--main-color);
	border-right: 2px solid var(--main-color);
	transform: var(--kunoji);
	top: 50%;
	right: 1em;
}

.document-list li.pdf-link::after,
.products-detail-list div.pdf-link::after {
	position: absolute;
	content: url(../imgs/icon_pdf.svg);
	border-top: none;
	border-right: none;
	transform: translateY(-50%);
	top: 30%;
	right: 1.2em;
}

.catalog-dl-list a::after {
	position: absolute;
	content: url(../imgs/icon_pdf.svg);
	border-top: none;
	border-right: none;
	transform: translateY(-50%);
	top: 60%;
	right: 0.2em;
}


.catalog-list>.pdf-link {
	border-bottom: 0px;
}


.yt-wrap {
	max-width: 800px;
	aspect-ratio: 16 / 9;
	margin: auto;
}

.yt-wrap iframe {
	width: 100%;
	height: 100%;
}

.works-area {
	background: linear-gradient(180deg, #0071E9 27.47%, #00C7E2 105.06%);

}

.works-area h2 {
	color: #FFF;
}

.works-area h2::before,
.works-area h2::after {
	background-color: #fff;
}

.works-area .works-wrap {
	margin: 0 auto;
}

/* トップのslider */

.works-area .works-wrap-slide {
	margin: 0 auto;
}

.works-area .works-wrap .works-col {
	color: #fff;
	position: relative;
}

/* トップのslider */

.works-area .works-wrap-slide .works-col {
	color: #fff;
	position: relative;
}

.works-area .works-wrap .works-col .works-txt::after {
	border-top: #fff 2px solid;
	border-right: #fff 2px solid;
	transition: var(--hov-move);
}

/* トップのslider */

.works-area .works-wrap-slide .works-col .works-txt::after {
	border-top: #fff 2px solid;
	border-right: #fff 2px solid;
	transition: var(--hov-move);
}

.works-area .works-wrap .works-col .tag-area .tag-txt {
	background-color: #fff;
	border: none;
}

/* トップのslider */

.works-area .works-wrap-slide .works-col .tag-area .tag-txt {
	background-color: #fff;
	border: none;
}

.works-area .works-wrap .works-col:hover .works-txt::after {
	border-top: var(--main-color) 2px solid;
	border-right: var(--main-color) 2px solid;
	transition: var(--hov-move);
}

/* トップのslider */

.works-area .works-wrap-slide .works-col:hover .works-txt::after {
	border-top: var(--main-color) 2px solid;
	border-right: var(--main-color) 2px solid;
	transition: var(--hov-move);
}

.works-area .works-wrap .works-col:hover .works-txt {
	color: var(--main-color);
}

/* トップのslider */

.works-area .works-wrap-slide .works-col:hover .works-txt {
	color: var(--main-color);
}

.works-area .works-col {
	margin: 0 8px;
}

.tag-area .tag-list {
	display: flex;
	gap: 4px 6px;
	flex-wrap: wrap;
}

/* 導入事例スライド
* ---------------------------------- */
.works-area .custom-arrow {
	background-color: var(--main-color) !important;
	border: none;
	width: 24px;
	height: 24px;
	cursor: pointer;
	position: relative;
}

/* 位置調整（必要なら） */
.works-area .slick-prev {
	position: absolute;
	left: -32px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}

.works-area .slick-next {
	position: absolute;
	right: -32px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}

.works-area .slick-prev span {
	position: relative;
	width: 100%;
	height: 100%;
	display: inline-block;
}

.works-area .slick-next span::before {
	position: absolute;
	content: "";
	transform: var(--kunoji);
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	top: 45%;
	left: 10%;
	width: 8px;
	height: 8px;
}

.works-area .slick-prev span::before {
	position: absolute;
	content: "";
	transform: translateY(-50%) rotate(-45deg);
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	top: 45%;
	left: 38%;
	width: 8px;
	height: 8px;
}

.works-area .slick-next:before,
.works-area .slick-prev:before {
	display: none;
}

/* 導入事例のボタン
* ---------------------------------- */
.works-area .corporate-btn {
	border: none;
	background: #fff;
	color: var(--main-color);
}

.works-area .corporate-btn::after {
	border-top: 2px solid var(--main-color);
	border-right: 2px solid var(--main-color);
}

.works-area .corporate-btn:hover {
	background: var(--main-color);
	color: #fff;
}

.works-area .corporate-btn:hover:after {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

/* =========================================
* 各製品詳細
* ======================================== */
hgroup.products-midashi {
	text-align: left;
	margin-bottom: var(--m16-8);
}

hgroup.products-midashi .products-category-name {
	font-size: var(--txt24-20);
	margin-top: 16px;
	font-weight: 700;
	color: var(--main-color);
}

hgroup.products-midashi h2.products-name::before,
hgroup.products-midashi h2.products-name::after {
	display: none;
}

hgroup.products-midashi h2.products-name {
	margin: 0;
	font-size: var(--txt36-24);
}

.products-container {
	display: flex;
	justify-content: space-between;
	gap: 5%;
}

/* 製品画像（スライド）
* ---------------------------------- */
.products-img-wrap {
	width: 44%;
	margin-bottom: var(--m56-32);
}

/* Slick用にulのdisplayをblockに戻す */
.products-slider-main.slick-slider,
.products-slider-thumb.slick-slider {
	display: block;
	/* margin-bottom: var(--m24-16); */
	width: 100%;
}

/* liにも適切にblock要素をあてる */
.products-slider-main li,
.products-slider-thumb li {
	display: block;
	aspect-ratio: 47 / 32;
}

/* 画像表示の基本 */
.products-slider-main img,
.products-slider-thumb img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
}


/* サムネイルのスタイル */
.products-slider-thumb li {
	opacity: 0.5;
	cursor: pointer;
	height: 70px;
	margin: 0 4px;
}

.products-slider-thumb .slick-current {
	opacity: 1;
}


.products-detail {
	text-align: justify;
	width: 51%;
}

.products-detail h3 {
	margin-bottom: var(--m16-8);
	margin-top: var(--m24-16);
}

.products-detail h3:first-child {
	margin-top: 0px;
}


.products-detail .purpose-list ul li,
.products-detail .features-list ul li {
	list-style-type: disc;
	list-style-position: inside;
	padding-left: 1.5em;
	text-indent: -1.5em;
}

.products-detail .document-list {
	margin-top: var(--m40-24);
}

/* キャプション表示エリアのスタイル */
.products-caption-area {
	min-height: 2em;
	font-size: 1em;
}

/* 図面ダウンロード
* ---------------------------------- */
h3.product-header {
	font-size: var(--txt20-18);
	text-align: left;
	border-bottom: 2px solid var(--blue, #3AAEF7);
	padding: .5em 1.5em .5em 0;
	cursor: pointer;
	margin-bottom: 8px;
	position: relative;
}

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

/* .open が付与されたとき（下向きに回転） */
h3.product-header.open::after {
	transform: rotate(135deg);
	transition: var(--hov-move);
	top: 45%;
}


.prpducts-dl-wrap .dl-list {
	grid-template-columns: repeat(auto-fill, minmax(216px, 1fr));
	margin-bottom: var(--m16-8);
	font-weight: 700;
	font-size: var(--txt16-14);
}

.products-dl-wrap .dl-list a {
	text-decoration-line: underline;
}

.products-dl-wrap ul.dl-list li {
	padding-left: 1.2em;
	white-space: nowrap;
	transition: var(--hov-move);
}

/* 仕様表
* ---------------------------------- */
.spec-wrap {
	margin-bottom: var(--m40-24);
}

.spec-wrap h3 {
	text-align: left;
	margin-bottom: var(--m16-8);
}

.spec-img-wrap {
	display: flex;
	gap: 40px;
	justify-content: center;
	margin-bottom: var(--m16-8);
	flex-wrap: wrap;
}

/* 関連資料
* ---------------------------------- */
.document-wrap .document-list {
	display: grid;
	gap: 0 40px;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.document-wrap .document-list a {
	padding: var(--m16-8) 2.5em var(--m16-8) var(--m16-8);
}

.light-bg .document-list li:hover {
	background-color: #fff;
}

.document-wrap .document-list li::after {
	right: 1.5em;
}

.document-list li.pdf-link::after {
	top: 40%;
	right: 1.8em;
}


.products-contact.common-wrap {
	display: block;
}

.products-contact.common-wrap .common-btn {
	height: 72px;
	margin: 16px auto;
	background: var(--main-gd);
	width: 100%;
	max-width: 600px;
	border: 1px solid var(--sub-color);
}

.products-contact.common-wrap .common-btn p {
	display: flex;
	color: #fff;
	align-items: center;
	text-align: left;
	line-height: 140%;
}

.products-contact.common-wrap .common-btn::after {
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	transition: var(--hov-move);
}

.products-contact.common-wrap .common-btn:hover::after {
	border-right: 2px solid var(--main-color);
	border-top: 2px solid var(--main-color);
	transition: var(--hov-move);
}

.products-contact.common-wrap .common-btn:hover {
	background: #fff;
	transition: var(--hov-move);
}

.products-contact.common-wrap .common-btn:hover p {
	color: var(--main-color);
	transition: var(--hov-move);
}

/* =========================================
* 導入事例
* ======================================== */


/* 導入事例タグ検索時の表示 */
.cat-result {
	text-align: left;
	margin: var(--m32-16) 0;
}

h3:has(+ .category-item) {
	text-align: left;
	margin-bottom: var(--m16-8);
}



.works-wrap-slide {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: var(--m40-24) var(--m24-16);
	margin: var(--m56-32) auto;
}

.works-col {
	text-align: left;
}


.works-txt .place-txt {
	font-size: var(--txt14-13);
}

.works-txt {
	position: relative;
	padding-right: 1.5em;
	transition: var(--hov-move);
}

.works-txt::after {
	content: "";
	position: absolute;
	top: 50%;
	right: .8em;
	width: 12px;
	height: 12px;
	border-top: 3px solid var(--main-color);
	border-right: 3px solid var(--main-color);
	transform: var(--kunoji);
	transition: var(--hov-move);
}

.works-title {
	font-weight: 700;
}

.works-col a:hover .works-txt {
	color: var(--sub-color);
	transition: var(--hov-move);
}

.works-col a:hover .works-txt::after {
	border-top: 3px solid var(--sub-color);
	border-right: 3px solid var(--sub-color);
	transition: var(--hov-move);
}

.works-img {
	width: 100%;
	aspect-ratio: 87 / 62;
	object-fit: cover;
}

.tag-area {
	margin-top: 8px;
}

.tag-txt {
	font-size: var(--txt14-13);
	color: #767676;
	border: solid 1px var(--sub-color);
	border-radius: 50px;
	padding: .1em 1em;
	margin: 0 4px 4px 0;
	white-space: nowrap;
}

.tag-txt:last-child {
	margin-right: 0
}

p.case-result {
	position: relative;
	top: -3rem;
}

/* =========================================
* 導入事例（記事）
* ======================================== */
.works-article .works-img {
	width: 56%;
	height: 100%;
	margin-right: 40px;
	aspect-ratio: 4 / 3;
}

.works-article-txt {
	text-align: justify;
	width: 40%;
}

.works-article-txt .place-txt {
	color: var(--main-color);
	padding: 0 .8em;
	border: 1px solid var(--sub-color);
	display: inline-block;
	margin-bottom: var(--m32-16);
}

.works-article-txt .tag-area {
	margin-top: var(--m32-16);
}

.procucts-name {
	font-weight: 700;
	text-align: left;
	margin-bottom: 16px;
}

.procucts-name p {
	font-size: var(--txt18-16);
}

.procucts-name h4 {
	color: #000;
}

.works-use-procucts-img {
	width: 45%;
	margin-left: 40px;
	height: 100%;
	aspect-ratio: 2 / 1;
	object-fit: contain;
}

#works .default-table th {
	min-width: 120px;
}

.works-btn {
	color: var(--main-color);
	font-weight: 600;
	display: flex;
	max-width: 300px;
	width: 80%;
	justify-content: center;
	align-items: center;
	padding: 1em 2em;
	position: relative;
	transition: var(--hov-move);
	border: solid 1px var(--sub-color);
}

.works-btn::after {
	position: absolute;
	content: "";
	width: .6em;
	height: .6em;
	border-top: 2px var(--main-color) solid;
	border-right: 2px var(--main-color) solid;
	right: 0;
	transform: var(--kunoji);
	top: 50%;
	right: 1.5em;
	transition: var(--hov-move);
}

.works-btn:hover {
	background: var(--main-color);
	color: #fff;
	transition: var(--hov-move);
	border: solid 1px var(--main-color);
}

.works-btn:hover::after {
	border-top: 2px #fff solid;
	border-right: 2px #fff solid;
	transition: var(--hov-move);
}

.works-btn-wrap {
	margin: 24px auto 0 auto;
	gap: var(--m24-16);
}

/* =========================================
* 図面ダウンロード
* ======================================== */
.attention-wrap {
	text-align: justify;
	padding: var(--margin-16, 16px);
	border: 2px solid var(--main-color);
	margin-bottom: var(--m80-40);
}

.attention-wrap h3 {
	margin-bottom: var(--m16-8);
}

.download-contents {
	width: var(--double-columns-container);
}

ul.dl-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(0, 185px));
	justify-content: space-between;
}

ul.dl-list li {
	position: relative;
	padding: .3em .3em .3em 1.2em;
	white-space: nowrap;
	transition: var(--hov-move);
	text-align: left;
}

ul.dl-list li:hover {
	color: var(--sub-color);
	transition: var(--hov-move);
}

ul.dl-list li::before {
	content: "";
	position: absolute;
	width: 1em;
	height: 1em;
	background-image: url(../imgs/download/drawing/icon_download_gray.svg);
	background-size: contain;
	transform: translateY(-50%);
	left: 0;
	top: 50%;
	background-repeat: no-repeat;
}

#drawing table.default-table {
	margin-bottom: var(--m80-40);
}

#drawing table.default-table th,
#drawing table.default-table td {
	display: block;
	width: 100%;
}

#drawing table.default-table td {
	border-bottom: none;
}


#drawing table.default-table:last-child {
	margin-bottom: 0;
}


#drawing aside.category-menu li::after {
	transform: translateY(-50%) rotate(135deg);
}

/* =========================================
* カタログダウンロード
* ======================================== */
.catalog-wrap {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(0, 250px));
	gap: var(--m80-40) 80px;
	justify-content: center;
}


.catalog-thumb {
	aspect-ratio: 5 / 7;
	border: 1px solid #B3B3B3;
	object-fit: cover;
	margin-bottom: 8px;
}

.catalog-title {
	color: var(--main-color);
	font-weight: 700;
}

.catalog-info {
	font-size: var(--FontSize-14, 14px);
	margin-bottom: 8px;
}

.catalog-link {
	font-size: 14px;
	position: relative;
	padding-left: 1.6em;
	display: inline-block;
}

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

.catalog-link::after {
	content: "";
	position: absolute;
	right: -24px;
	top: 50%;
	width: 24px;
	height: 24px;
	background-image: url(../imgs/download/catalog/icon_download_blue.svg);
	background-size: contain;
	background-repeat: no-repeat;
	transform: translateY(-50%);
}

.catalog-col {
	text-align: left;
	transition: var(--hov-move);
}

.catalog-col:hover {
	opacity: .8;
	filter: brightness(105%);
	transition: var(--hov-move);
}

/* =========================================
* 企業情報
* ======================================== */
.aboutus-wrap {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px 16px;
	margin-top: 16px;
}

.aboutus-col {
	display: flex;
	align-items: end;
	justify-content: space-between;
	aspect-ratio: 133 / 69;
	position: relative;
	overflow: hidden;
	width: 100%;
}

.aboutus-col.company-link {
	aspect-ratio: 90 / 23;
}

.aboutus-col .aboutus-txt {
	position: relative;
	z-index: 2;
	margin: var(--m32-16);
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: end;
}

.aboutus-col::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transition: all 0.3s ease-out;
}

.aboutus-col:hover:after {
	transform: scale(1.1);
}

.aboutus-col.company-link::after {
	background-image: url(../imgs/aboutus/company_bg.png);
}

.aboutus-col.message-link::after {
	background-image: url(../imgs/aboutus/message_bg.png);
}

.aboutus-col.history-link::after {
	background-image: url(../imgs/aboutus/history_bg.png);
}

.aboutus-col.health-link::after {
	background-image: url(../imgs/aboutus/health_bg.png);
}

.aboutus-col.access-link::after {
	background-image: url(../imgs/aboutus/access_bg.png);
}

.aboutus-col.sustainability-link::after {
	background-image: url(../imgs/aboutus/sustainability_bg.png);
}

.aboutus-col.strengths-link::after {
	background-image: url(../imgs/aboutus/strengths_bg.png);
}

.aboutus-col hgroup {
	text-align: left;
	color: #FFF;
	font-weight: 500;
}

.aboutus-col hgroup h2 {
	color: #FFF;
	font-family: var(--en-txt);
	margin: 0;
	text-align: left;
}

.aboutus-col hgroup h2::before,
.aboutus-col hgroup h2::after {
	display: none;
}

.kunoji-square {
	min-width: var(--m40-24);
	min-height: var(--m40-24);
	background-color: #FFF;
	position: relative;
}

.kunoji-square::after {
	content: "";
	width: 12px;
	height: 12px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	transform: var(--kunoji) translateX(-50%);
	top: 55%;
	right: 40%;
	position: absolute;
}

/* =========================================
* 会社概要
* ======================================== */

/* 「企業情報をもっと知る」共通
* ---------------------------------- */
.tier03 .aboutus-wrap {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px 16px;
}

.tier03 .aboutus-col {
	aspect-ratio: unset;
	display: block;
	text-align: left;
	transition: var(--hov-move);
}

.tier03 .aboutus-col:hover {
	opacity: .8;
	filter: brightness(105%);
	transition: var(--hov-move);
}

.tier03 .aboutus-col p {
	display: inline-block;
	position: relative;
	font-weight: 500;

}

.tier03 .aboutus-col p::after {
	position: absolute;
	content: "";
	width: .5em;
	height: .5em;
	border-right: 2px #000 solid;
	border-top: 2px #000 solid;
	transform: var(--kunoji);
	top: 50%;
	right: -1em;
}

.aboutus-img {
	aspect-ratio: 175 / 72;
	object-fit: cover;
}

/* =========================================
* 代表挨拶
* ======================================== */
.message-wrap {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	align-items: flex-start;
	text-align: justify;
}

.message-img {
	width: 305px;
}

.president-name {
	text-align: right;
	margin-top: var(--m32-16);
}

.president-name span {
	font-size: var(--txt24-20);
	font-weight: 700;
}

/* =========================================
* 沿革
* ======================================== */
#history table.default-table th {
	vertical-align: top;
	min-width: 200px;
}

#history h3.line-midashi {
	margin-bottom: 16px;
}

.era-wrap {
	margin-bottom: 40px;
}

.era-wrap:last-child {
	margin-bottom: 0;
}

.history-wrap {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: flex-start;
}

.history-img {
	max-width: 320px;
	width: 40%;
	object-fit: contain;
	aspect-ratio: 16 / 9;
	display: block;
}

/* =========================================
* 健康経営への取り組み
* ======================================== */
.health-wrap {
	margin-bottom: var(--m56-32);
	text-align: justify;
}

.health-contents {
	display: flex;
	gap: var(--margin-40, 40px);
	justify-content: space-between;
	align-items: flex-start;
	text-align: justify;
}

.health-img {
	max-width: 350px;
	width: 35%;
}

.attempt-table {
	width: 100%;
}

.attempt-table div {
	width: 100%;
	display: flex;
	gap: 40px;
}

.attempt-table dt,
.attempt-table dd {
	padding: 16px;
	border-bottom: 2px solid #B3B3B3;
	display: flex;
	align-items: center;
}

.attempt-table .table-title dt,
.attempt-table .table-title dd {
	color: var(--main-color);
	font-weight: 700;
	border-bottom: 2px solid var(--sub-color);
}

.attempt-table.attempt03 dt,
.attempt-table.attempt03 dd {
	width: 28%;
}

.attempt-table.attempt03 dd {
	width: calc(72% - 40px);
}



/* =========================================
* 事務所・アクセス
* ======================================== */
.access-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	text-align: left;
}

.access-img {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 2%;
	width: 62%;
}

.access-img img {
	aspect-ratio: 5 / 6;
	width: 38%;
}

.access-img .map {
	aspect-ratio: 4 / 3;
	width: 60%;
}

.access-img .map iframe {
	width: 100%;
	height: 100%;
}

.access-wrap {
	margin-bottom: var(--m56-32);
}

.access-wrap:last-child {
	margin-bottom: 0;
}

/* =========================================
* サステナビリティ
* ======================================== */
#sustainability h3 {
	margin-top: var(--m40-24);
}

.sustain-wrap {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 0 var(--m40-24);
}

.sustain-col {
	margin-bottom: var(--m24-16);
}

.sustain-col p {
	padding: 16px;
}

h4.sustain-midahsi {
	color: #fff;
	text-align: center;
	background-color: var(--sub-color);
	padding: 8px;
}

.sustain-list {
	border: 1px solid var(--sub-color);
	display: flex;
	justify-content: center;
	gap: var(--m32-16);
	padding: 16px;
}

.sustain-list .normal-list {
	width: 290px;
	text-align: left;
}

#sustainability .health-contents {
	margin-bottom: var(--m32-16);
}

.health-contents a {
	display: inline-block;
	font-weight: 700;
	text-decoration-line: underline;
	font-size: var(--txt18-16);
	margin-top: var(--m24-16);
	position: relative;
}

.health-contents a::after {
	content: "";
	position: absolute;
	border-top: solid 2px #000;
	border-right: solid 2px #000;
	width: 10px;
	height: 10px;
	transform: var(--kunoji);
	top: 50%;
	right: -1em;
}

.attempt-table.attempt05 dt,
.attempt-table.attempt05 dd {
	width: calc((100% - var(--m40-24)) / 2);
}

.scope-wrap {
	display: block !important;
}

.attempt05 h5 {
	display: inline-block;
	font-weight: 700;
	color: var(--main-color);
	border: 1px solid var(--main-color);
	padding: 0 4px;
}

.sdgs-img {
	margin: var(--m40-24) auto;
}

.sdgs-wrap {
	margin-bottom: var(--m56-32);
}

.sdgs-col {
	gap: 0 80px;
}

.sdgs-txt p,
.sdgs-txt h4,
.sdgs-txt ul {
	margin-bottom: var(--m16-8);
	text-align: justify;
}

.sdgs-txt ul li span {
	background-image: url(/assets/imgs/icon_pdf.svg);
	background-repeat: no-repeat;
	background-size: contain;
	width: 1.5em;
	height: 1.5em;
	vertical-align: -.3em;
	display: inline-block;
}

.sdgs-col img {
	width: 40%;
	max-width: 350px;
}

.icon-wrap {
	display: flex;
	gap: 8px;
	margin-top: 40px;
}

.icon-wrap .icon-img {
	width: min(5.1vw, 55px);
}

.partners-wrap {
	gap: var(--m56-32);
}

.partners-wrap img {
	width: 300px;
	display: block;
}

.partners-wrap a {
	transition: var(--hov-move);
}

.partners-wrap a:hover {
	opacity: .7;
	transition: var(--hov-move);
}

/* =========================================
* 新着情報
* ======================================== */

h3.news-title {
	text-align: left;
	margin-bottom: 16px;
	color: #000;
}

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

.category-btn {
	border: 1px solid var(--sub-color);
	color: var(--main-color);
	padding: .5em 0;
	transition: var(--hov-move);
}


.category-btn:hover,
.category-btn.active {
	background: var(--main-gd);
	color: #fff;
	transition: var(--hov-move);
}

.news-list {
	margin: var(--m40-24) auto;
}

.news-list li {
	padding: 8px 24px;
	border-bottom: 1px solid #E6E6E6;
	min-height: 64px;
	display: flex;
	align-items: center;
	position: relative;
	transition: var(--hov-move);
}

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

.news-list li:first-child {
	border-top: #E6E6E6 1px solid;
}

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

.news-list a {
	display: flex;
	align-items: center;
	gap: 24px;
	text-align: left;
}

.news-list li .category-txt {
	min-width: 135px;
}

.date-txt {
	color: #565656;
	font-size: 14px;
	font-weight: 500;
	transition: var(--hov-move);
}

.news-list li:hover .date-txt,
.news-list li:hover .news-title {
	background: var(--main-gd);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: var(--hov-move);
}

.news-list li:hover {
	border-bottom: 1px solid var(--sub-color);
}

.page-numbers {
	display: flex;
	gap: 24px;
	justify-content: center;
	line-height: normal;
	align-items: center;

}

.page-numbers .current {
	color: var(--main-color);
	text-decoration: underline;
}

.page-numbers .prev,
.page-numbers .next {
	width: 32px;
	height: 32px;
	border: solid 1px var(--sub-color);
	border-radius: 50px;
	position: relative;
	cursor: pointer;
}

.page-numbers .prev {
	margin-right: 8px;
}

.page-numbers .next {
	margin-left: 8px;
}

.page-numbers .prev::after,
.page-numbers .next::after {
	position: absolute;
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2px solid var(--main-color);
	border-right: 2px solid var(--main-color);
}

.page-numbers .prev::after {
	transform: rotate(-135deg) translateY(-50%) translateX(-50%);
	top: 10%;
	left: 38%;
}

.page-numbers .next::after {
	transform: var(--kunoji) translateX(-50%);
	right: 38%;
	top: 55%;
}

/* =========================================
* 新着情報（記事）
* ======================================== */
.tier03 .date-category {
	margin-bottom: 16px;
}

.article-container {
	text-align: justify;
	margin: var(--m56-32) auto;
}

.article-container p,
.article-container img {
	margin-bottom: var(--m32-16);
}

.article-container h4 {
	margin-bottom: var(--m16-8);
	color: #000;
}

.article-container table {
	border: 1px solid var(--main-color);
}

.article-container table td,
.article-container table th {
	border-right: 1px solid var(--main-color);
	padding: 0.5em 1em;
}

.article-container table td:last-child,
.article-container table th:last-child {
	border-right: none;
}

.article-container table tr {
	border-bottom: 1px solid var(--main-color);
}

.article-container table tr:last-child {
	border-bottom: none;
}

.article-container a {
	color: var(--sub-color);
	text-decoration: underline;
	font-weight: 500;
}

.article-container ul {
	list-style-type: disc;
	padding-left: 1.5em;
}


/* =========================================
* ブログ一覧
* ======================================== */
.double-columns {
	display: flex;
	gap: 4%;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
}

.blog-contents {
	width: var(--double-columns-container);
}

.blog-wrap {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 32px 5%;
	width: 100%;
	margin: var(--m56-32) 0;
	text-align: left;
}

.blog-col {
	display: block;
}

.blog-col h3.blog-title {
	font-size: var(--txt18-16);
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-bottom: 8px;
}

.blog-col .date-category {
	margin-bottom: 8px;
}

.blog-col .date-category .category-txt {
	font-size: 12px
}

.blog-col .blog-detail {
	font-size: 14px;
	margin-top: 8px;
	text-align: left;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.blog-thumb {
	width: 100%;
	/* aspect-ratio: 230/294; */
	/* 埋め込み用に調整した */
	aspect-ratio: 1/1.838;
	object-fit: cover;
}

#blog aside.category-menu li:first-child {
	font-weight: 800;
}


/* =========================================
* ブログ記事
* ======================================== */
.tier03 .blog-contents .date-txt {
	color: var(--main-color);
}

.tier03 h3.blog-title {
	text-align: left;
}

/* 動画埋め込み用 */
.blog-contents .article-container iframe {
	width: 280px;
	height: 500px;
}

.movie-frame {
	text-align: center;
}


/* ローディング表示 */
.loading {
	text-align: center;
	padding: 20px;
	color: #666;
}

/* エラー表示 */
.error {
	color: #d63638;
	text-align: center;
	padding: 20px;
}

/* 記事が見つからない場合 */
.news-nf {
	text-align: center;
	color: #666;
	padding: 20px;
}

/* =========================================
* 動画コンテンツ一覧
* ======================================== */
.movie-wrap {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: var(--m40-24) 2%;
}

.movie-col {
	width: 100%;
	transition: var(--hov-move);
}

.movie-col:hover {
	opacity: .8;
	filter: brightness(105%);
	transition: var(--hov-move);
}

.movie-thumb {
	object-fit: cover;
	width: 100%;
	aspect-ratio: 35 / 18;
}

.movie-txt {
	color: var(--main-color);
	font-weight: 700;
	text-align: justify;
	position: relative;
	padding-right: 2.7em;
}

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


/* =========================================
* 動画（詳細）
* ======================================== */
.movie-frame-wrap {
	width: 100%;
	text-align: center;
	margin-bottom: var(--m40-24);
}

.movie-frame-wrap iframe {
	aspect-ratio: 16 / 9;
	width: 100%;
	height: auto;
}

/* =========================================
* プライバシーポリシー
* ======================================== */
#privacy h3 {
	margin-bottom: 16px;
}

#privacy .container {
	text-align: justify;
}

.privacy-col {
	margin-bottom: 40px;
}

/* =========================================
* 募集要項
* ======================================== */


/* =========================================
* よくある質問
* ======================================== */
summary {
	list-style-type: none;
	cursor: pointer;
}

details {
	border-bottom: 1px solid var(--sub-color);
}

.a-box a {
	color: var(--sub-color);
}

.a-link-box a {
	color: var(--sub-color);
}

.faq-col {
	text-align: justify;
	margin-bottom: var(--m56-32);
}

.faq-col:last-child {
	margin-bottom: 0;
}

.q-box,
.a-box {
	display: flex;
	padding: 16px;
	text-align: justify;
}

.q-box {
	font-size: var(--txt18-16);
	font-weight: 700;
	align-items: center;
	position: relative;
	padding-right: 32px;
}

.q-box::after {
	content: "";
	width: 12px;
	height: 12px;
	border-top: 3px solid var(--sub-color);
	border-right: 3px solid var(--sub-color);
	transform: var(--kunoji);
	position: absolute;
	right: 16px;
	top: 50%;
	transition: var(--hov-move);
}

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

.faq-icon {
	font-family: var(--en-txt);
	background: var(--main-gd);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: var(--txt32-24);
	font-weight: 500;
	padding-right: 8px;
}

details[open] .q-box::after {
	transform: translateY(-50%) rotate(135deg);
	transition: var(--hov-move);
}


/* =========================================
* お問い合わせ
* ======================================== */
#contact dl {
	margin-bottom: 80px;
}

.caution-txt {
	color: #f00;
	font-weight: 500;
}

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

.form-col {
	display: flex;
	align-items: center;
	margin-bottom: 24px;
	width: 100%;
}

.form-col dt sup {
	color: #f00;
	font-size: 10px;
}

.form-col dt {
	margin-right: 16px;
	width: 20%;
	min-width: 216px;
	text-align: left;
}

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

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

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

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

.label-item input[type="radio"]:checked {
	border-color: var(--sub-color);
	border-width: 2px;
}

.label-item input[type="radio"]:checked:before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--sub-color);
	content: "";
}

.label-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

.label-item label {
	cursor: pointer;
}

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

.form-area input[type="file"] {
	border-radius: 0%;
	border: none;
	background: none;
	padding: .8em 0;
}

#contact button.corporate-btn p {
	margin: auto;
}

.form-buttons {
	margin-top: 40px;
}

.form-buttons button {
	max-width: min(400px, 42%);
}


/* =========================================
* 共通リンク
* ======================================== */
.common-link {
	padding: var(--m56-32) 0;
}

.common-wrap {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.common-btn {
	display: flex;
	background-color: #fff;
	height: 120px;
	justify-content: center;
	align-items: center;
	position: relative;
	transition: var(--hov-move);
}

.common-btn p {
	color: var(--main-color);
	font-weight: 700;
}

.common-btn p span {
	font-family: var(--en-txt);
	font-size: var(--txt32-24);
	vertical-align: middle;
	margin-right: 16px;
}

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

.common-btn:hover {
	background-color: var(--main-color);
	transition: var(--hov-move);
}

.common-btn:hover p {
	color: #fff;
}

.common-btn:hover::after {

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

/* =========================================
* フッター
* ======================================== */
footer {
	background-color: var(--main-color);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--m56-32) 0;
	font-size: min(1.2vw, 14px);
	color: #fff;
	font-weight: 500;
}

footer a {

	transition: var(--hov-move);
}

footer a:hover {
	opacity: .7;
	transition: var(--hov-move);
}

footer .corporate-btn {
	font-size: min(1.6vw, 16px);
	border: none;
	width: 90%;
}

footer .corporate-btn::after {
	display: none;
}

.logo-col {
	width: 28%;
}

.sns-wrap {
	display: flex;
	gap: 16px;
	margin-top: min(10.1vw, 96px);
	margin-bottom: 8px;
}

.footer-top-link {
	text-align: left;
	display: flex;
	justify-content: space-between;
	margin-bottom: var(--m40-24);
}

.footer-top-link nav {
	display: flex;
	justify-content: space-between;
	width: 66%;
	gap: 0 1em;
}

.footer-top-link nav li {
	padding: .3em 0;
}

.footer-top-link nav li a:hover {
	border-bottom: 1px solid #fff;
	transition: var(--hov-move);
}

.footer-top-link nav li span {
	width: 16px;
	height: 16px;
	background-image: url(../imgs/icon_external.svg);
	background-size: contain;
	background-repeat: no-repeat;
	display: inline-block;
	vertical-align: middle;
	margin-left: .2em;
}

.footer-top-link nav .tier02-link {
	font-size: min(1.7vw, 16px);
	font-weight: 700;
	margin-bottom: 8px;
}

.footer-top-link nav .tier02-link+.tier02-link {
	margin-top: 32px;
}

.partner-wrap {
	gap: 16px;
	font-size: min(1.7vw, 16px);
	margin-bottom: 32px;
}

.partner-wrap a {
	height: min(4vw, 40px);
	display: inline-block;
}

.partner-wrap a img {
	height: 100%;
	width: 100%;
}

.footer-bottom-link {
	display: flex;
	justify-content: space-between;
	align-items: end;
	flex-direction: row-reverse;
}

@media (max-width: 768px) {
	/* =========================================
* 共通パーツ
* ======================================== */

	/* 変数
* ---------------------------------- */
	:root {
		--header-height: 62px;
		--double-columns-container: 100%;
		--txt54-36: 36px;
		--txt40-32: 32px;
		--txt36-24: 24px;
		--txt32-24: 24px;
		--txt24-20: 20px;
		--txt20-18: 18px;
		--txt18-16: 16px;
		--txt16-14: 14px;
		--txt14-13: 13px;
		--m120-80: 80px;
		--m80-40: 40px;
		--m56-32: 32px;
		--m40-24: 24px;
		--m32-16: 16px;
		--m24-16: 16px;
		--m16-8: 8px;
	}


	/* ボタン
* ---------------------------------- */
	.corporate-btn {
		width: 100%;
	}

	.corporate-btn.right-btn {
		width: 180px;
	}

	/* メインビジュアルのスタイル
* ---------------------------------- */


	/* 第二階層共通
* ---------------------------------- */
	.tier02 .midashi-wrap {
		aspect-ratio: auto;
		height: 200px;
	}

	#strengths .midashi-wrap {
		background-image: url(../imgs/strengths/mv_bg_sp.png);
	}

	#products .midashi-wrap {
		background-image: url(../imgs/products/mv_bg_sp.png);
	}

	#works .midashi-wrap {
		background-image: url(../imgs/works/mv_bg_sp.png);
	}

	#aboutus .midashi-wrap {
		background-image: url(../imgs/aboutus/mv_bg_sp.png);
	}

	#news .midashi-wrap {
		background-image: url(../imgs/news/mv_bg_sp.png);
	}

	#blog .midashi-wrap {
		background-image: url(../imgs/blog/mv_bg_sp.png);
	}

	#blog .midashi-wrap {
		background-image: url(../imgs/blog/mv_bg_sp.png);
	}

	#movie .midashi-wrap {
		background-image: url(../imgs/movie/mv_bg_sp.png);
	}

	#faq .midashi-wrap {
		background-image: url(../imgs/faq/mv_bg_sp.png);
	}

	#privacy .midashi-wrap {
		background-image: url(../imgs/privacy/mv_bg_sp.png);
	}

	#recruit .midashi-wrap {
		background-image: url(../imgs/recruit/mv_bg_sp.png);
	}

	#contact .midashi-wrap {
		background-image: url(../imgs/contact/mv_bg_sp.png);
	}

	/* 第三階層共通
* ---------------------------------- */
	.tier03 .midashi-wrap,
	.tier04 .midashi-wrap {
		aspect-ratio: auto;
		height: 120px;
	}


	#drawing .midashi-wrap {
		background-image: url(../imgs/download/drawing/mv_bg_sp.png);
	}

	#catalog .midashi-wrap {
		background-image: url(../imgs/download/catalog/mv_bg_sp.png);
	}

	#company .midashi-wrap {
		background-image: url(../imgs/aboutus/mv_company_bg_sp.png);
	}

	#message .midashi-wrap {
		background-image: url(../imgs/aboutus/mv_message_bg_sp.png);
	}

	#history .midashi-wrap {
		background-image: url(../imgs/aboutus/mv_history_bg_sp.png);
	}

	#health .midashi-wrap {
		background-image: url(../imgs/aboutus/mv_health_bg_sp.png);
	}

	#access .midashi-wrap {
		background-image: url(../imgs/aboutus/mv_access_bg_sp.png);
	}

	#sustainability .midashi-wrap {
		background-image: url(../imgs/aboutus/mv_sustainability_bg_sp.png);
	}


	/* テーブル
* ---------------------------------- */
	/* --- 基本のスタイル --- */
	table.default-table {
		width: 100%;
	}

	table.default-table th,
	table.default-table td {
		display: block;
		padding: 8px;
	}

	table.default-table td {
		border-bottom: none;
	}

	table.default-table th {
		width: 100%;
	}

	/* --- 製品のスペック表のスタイル --- */
	.spec-table-wrap {
		overflow-x: scroll;
	}

	.spec-table {
		width: 100%;
		min-width: 600px;
		border-collapse: collapse;
	}

	/* サイドメニュー
	* ---------------------------------- */

	aside.category-menu {
		position: static;
		margin-top: 40px;
	}


	/* =========================================
* ヘッダー
* ======================================== */
	header {
		height: var(--header-height);
		border-bottom: 1px solid #D4D4D4;
		box-shadow: none;
	}


	.top-logo {
		width: 200px;
	}

	.header-contents nav {
		display: block;
		position: fixed;
		background-color: #fff;
		width: 100%;
		top: 62px;
		height: calc(100vh - 62px);
		font-size: 14px;
		transition: right 0.3s ease-in-out;
		right: -100%;
		overflow-y: auto;
		/* 縦スクロールを有効にする */
		-webkit-overflow-scrolling: touch
	}

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

	.header-contents nav ul {
		display: block;
		font-size: 14px;
		margin-bottom: 16px;
		margin-right: 0;
		height: auto;
	}

	.header-contents nav ul li {
		text-align: left;
		padding: 0;
		border-bottom: solid 1px #D4D4D4;
		font-weight: 700;
		position: relative;
		height: auto;
	}

	.header-contents nav ul li::after {
		content: "";
		width: 6px;
		height: 6px;
		position: absolute;
		top: 50%;
		right: 24px;
		transform: var(--kunoji);
		border-top: 2px solid var(--main-color);
		border-right: 2px solid var(--main-color);
		transition: var(--hov-move);
	}

	.header-contents nav li a {
		display: block;
		padding: 16px 24px;
	}


	.header-contents nav ul li:hover {
		border-bottom: 1px solid var(--sub-color);
	}


	.header-contents nav ul li:hover::after {
		border-top: 2px solid var(--sub-color);
		border-right: 2px solid var(--sub-color);
		transition: var(--hov-move);
	}


	.top-btn-wrap {
		justify-content: center;
		height: auto;
		gap: 16px;
		padding: 0 24px;
	}

	.top-d-dl-btn,
	.top-c-dl-btn {
		height: auto;
		clip-path: none;
		margin-right: 0;
		padding: 1em .5em;
		width: 100%;
		font-size: 14px;
	}

	header .common-wrap {
		padding: 16px 24px;
	}

	header .common-wrap .common-btn {
		background: var(--main-gd);
		margin-bottom: 16px;
	}

	header .common-wrap .common-btn:last-child {
		margin-bottom: 0;
	}

	header .common-wrap .common-btn p {
		color: #fff;
	}

	header .common-wrap .common-btn::after {
		border-top: 2px #fff solid;
		border-right: 2px #fff solid;
	}

	header .common-btn:hover {
		background: var(--light-color);
		transition: var(--hov-move);
	}

	header .common-btn:hover p {
		transition: var(--hov-move);
		color: var(--main-color);
	}

	header .common-wrap .common-btn:hover:after {
		border-top: 2px var(--main-color) solid;
		transition: var(--hov-move);
		border-right: 2px var(--main-color) solid;
	}

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

	.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: var(--main-color);
		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-mv {
		aspect-ratio: 39 / 40;
	}

	.top-midashi {
		aspect-ratio: 39 / 40;
	}

	.top-midashi .container {
		align-items: flex-start;
		padding-top: min(10vw, 56px);
		width: 100%;
	}


	.top-midashi .container hgroup h1 {
		margin-bottom: 24px;
		font-size: max(10vw, 36px);
	}


	/* --- トップのスライド部分 --- */
	.top-slide .slick-track {
		padding: 16px 0;
	}

	.top-slide-col {
		opacity: .7;
	}


	.top-slide .slick-center {
		opacity: 1;
	}


	.top-slide {
		margin: -96px auto 0 auto;
	}


	/* インスタグラム
* ---------------------------------- */


	#top .light-bg hgroup .ig-link {
		position: static;
		margin-top: 24px;
	}

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

	.ig-img-col {
		aspect-ratio: 4/5;
		width: 100%;
		height: 100%;
		transition: var(--hov-move);
	}

	.ig-img-col:nth-child(n+4) {
		display: none;
	}


	/* 新着情報・ブログ
* ---------------------------------- */
	#top .top-news-wrap hgroup,
	#top .top-blog-wrap hgroup {
		margin-bottom: 16px;
	}

	.top-news-wrap .category-item {
		width: 100%;
		max-width: auto;
		gap: 16px;
		margin-left: 0;
		font-size: 14px;
	}

	/* トップの企業情報
* ---------------------------------- */
	#top .aboutus-wrap {
		display: block;
	}

	#top .aboutus-col {
		height: auto;
		width: 100%;
		aspect-ratio: 86 / 35;
	}


	#top .aboutus-col hgroup h2 {
		font-size: 24px;
	}


	/* =========================================
* 三和式の強み
* ======================================== */


	.img-clip {
		width: 42%;
		height: max(35vw, 117px);
	}


	.strengths-txt,
	.strengths-img {
		width: 100%;
	}

	.strengths-img {
		aspect-ratio: 69 / 32;
		height: 160px;
		margin-top: 16px;
	}

	.triangle-mark {
		display: inline-block;
		border-style: solid;
		border-width: 16px 16px 0;
		border-color: var(--sub-color) transparent transparent;
		margin: 16px auto;
	}

	.correspondence-wrap::after {
		bottom: -50px;
		border-top: 50px solid var(--light-color);
	}

	section.strengths-works-wrap {
		padding-top: 80px;
	}


	section.strengths-works-wrap .strengths-col img {
		width: 100%;
		margin-bottom: 16px;
		aspect-ratio: 86 / 45;
		object-fit: cover;
	}


	section.strengths-works-wrap .corporate-btn span {
		font-size: var(--txt32-24);
		font-family: var(--en-txt);
		vertical-align: middle;
		padding-right: .5em;
	}


	/* =========================================
* 製品情報
* ======================================== */

	/* 検索窓
* ---------------------------------- */
	.search-box {
		display: block;
		text-align: left;
	}

	.search-box p {
		margin-bottom: .5em;
	}


	/* タブ切り替え
* ---------------------------------- */

	.tab-wrap {
		gap: 0;
	}

	.tab-wrap>label {
		width: max(20vw, 95px);
		white-space: nowrap;
	}

	/* 製品カテゴリから探す
* ---------------------------------- */


	.products-category-img {
		aspect-ratio: 86 / 45;
	}


	/* 施工施設・課題から探す
* ---------------------------------- */



	.products-case-col::after {
		right: 3em;
	}


	/* =========================================
* 製品情報（カテゴリ別）
* ======================================== */

	.category-wrap {
		display: block;
		height: auto;
		margin-top: -8px;
	}


	.category-top .category-main-txt {
		width: 100%;
		height: auto;
		display: block;
	}

	.category-img {
		clip-path: polygon(30% 0, 100% 0%, 100% 100%, 0% 100%);
		width: 100%;
	}

	.category-list {
		margin-top: 16px;
	}

	.works-area .works-wrap .works-col:hover .works-txt {
		color: var(--main-color);
	}

	/* トップのスライダー */

	.works-area .works-wrap-slide .works-col:hover .works-txt {
		color: var(--main-color);
	}

	.works-area .works-wrap .works-col {
		margin: 0 16px;
	}

	/* トップのスライダー */

	.works-area .works-wrap-slide .works-col {
		margin: 0 16px;
	}

	/* 導入事例スライド
* ---------------------------------- */

	.works-area .slick-prev {
		left: -16px;
	}

	.works-area .slick-next {
		right: -16px;
	}


	/* =========================================
* 各製品詳細
* ======================================== */

	.products-container {
		display: block;
		justify-content: space-between;
		gap: 5%;
	}

	/* 製品画像（スライド）
* ---------------------------------- */
	.products-img-wrap {
		width: 100%;
	}

	.products-detail {
		width: 100%;
	}

	/* 図面ダウンロード
* ---------------------------------- */

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

	.prpducts-dl-wrap .dl-list li a {
		text-decoration-line: underline;
	}

	.prpducts-dl-wrap ul.dl-list li {
		padding-left: 1.2em;
		white-space: nowrap;
		transition: var(--hov-move);
	}




	/* 仕様表
* ---------------------------------- */
	.spec-wrap {
		margin-bottom: var(--m40-24);
	}

	.spec-wrap h3 {
		text-align: left;
		margin-bottom: var(--m16-8);
	}

	.spec-img-wrap {
		display: flex;
		gap: 40px;
		justify-content: center;
		margin-bottom: var(--m16-8);
		flex-wrap: wrap;
	}

	/* 関連資料
* ---------------------------------- */
	.document-wrap .document-list {
		display: grid;
		gap: 0 40px;
		grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	}

	.document-wrap .document-list a {
		padding: var(--m16-8) 2.5em var(--m16-8) var(--m16-8);
	}

	.light-bg .document-list li:hover {
		background-color: #fff;
	}

	.document-wrap .document-list li::after {
		right: 1.5em;
	}

	.document-list li.pdf-link::after {
		top: 40%;
		right: 1.8em;
	}

	/* =========================================
* 導入事例
* ======================================== */

	.works-img {
		aspect-ratio: 2/1;
	}


	/* =========================================
* 導入事例（記事）
* ======================================== */
	.works-article .works-img {
		width: 100%;
		height: auto;
		margin-right: 0;
		aspect-ratio: 4 / 3;
		margin-bottom: 8px;
	}

	.works-article-txt {
		width: 100%;
	}


	.works-use-procucts-img {
		width: 100%;
		margin-left: 0;
	}



	/* =========================================
* 図面ダウンロード
* ======================================== */


	html.sticky-page {
		scroll-padding-top: calc(var(--header-height) + 250px);
	}

	#drawing aside.category-menu {
		margin-top: 0;
		margin-bottom: 32px;
		position: sticky;
		top: var(--header-height);
	}

	#drawing aside.category-menu ul {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	#drawing ul.dl-list {
		grid-template-columns: repeat(auto-fill, minmax(0, 170px));
	}



	#drawing .category-menu h3 {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: space-between;
		cursor: pointer;
	}

	#drawing .toggle-menu-btn {
		width: 24px;
		height: 24px;
		position: relative;
		margin-left: auto;
	}

	/* プラスマーク */
	#drawing .toggle-menu-btn::before,
	#drawing .toggle-menu-btn::after {
		content: "";
		position: absolute;
		background-color: var(--main-color);
		left: 50%;
		top: 50%;
		width: 16px;
		height: 2px;
		transform: translate(-50%, -50%);
		transition: var(--hov-move);
	}

	/* 縦棒（+） */
	#drawing .toggle-menu-btn::after {
		transform: translate(-50%, -50%) rotate(90deg);
	}

	/* nav 初期非表示 */
	#drawing .category-menu nav {
		display: none;
		padding: 8px 0;
		border-bottom: #777777 1px solid;
	}

	/* 表示時 */
	#drawing .category-menu nav.active {
		display: block;
	}

	/* マイナス状態（縦線が消える） */

	#drawing .category-menu h3.active .toggle-menu-btn::after {
		transform: translate(-50%, -50%) rotate(0deg);
		opacity: 0;
		transition: var(--hov-move);
	}





	/* =========================================
* カタログダウンロード
* ======================================== */
	.catalog-wrap {
		grid-template-columns: repeat(auto-fill, minmax(0, 160px));
		gap: var(--m80-40) max(5vw, 16px);
	}


	/* =========================================
* 企業情報
* ======================================== */
	.aboutus-wrap {
		display: block;
	}

	.aboutus-col,
	.aboutus-col.company-link {
		aspect-ratio: 67/23;
		margin-bottom: 16px;
	}

	.kunoji-square::after {
		content: "";
		width: 6px;
		height: 6px;
		border-top: 2px solid #000;
		border-right: 2px solid #000;
		transform: var(--kunoji) translateX(-50%);
		top: 55%;
		right: 35%;
		position: absolute;
	}


	/* =========================================
* 会社概要
* ======================================== */

	/* 「企業情報をもっと知る」共通
* ---------------------------------- */
	.tier03 .aboutus-wrap {
		gap: 16px;
	}

	.tier03 .aboutus-col {
		margin-bottom: 0;
	}


	/* =========================================
* 代表挨拶
* ======================================== */
	.message-wrap {
		display: block;
	}

	.message-img {
		width: 305px;
		margin: 0 auto 24px auto;
		display: block;
	}

	.president-name {
		text-align: right;
		margin-top: var(--m32-16);
	}

	.president-name span {
		font-size: var(--txt24-20);
		font-weight: 700;
	}

	/* =========================================
* 沿革
* ======================================== */


	.era-wrap {
		margin-bottom: 40px;
	}

	.history-wrap {
		display: block;
	}

	.history-img {
		margin: 8px auto;
		width: 100%;
	}

	/* =========================================
* 健康経営への取り組み
* ======================================== */

	.health-contents {
		display: block;
	}

	.health-img {
		display: block;
		margin: 0 auto 16px auto;
		min-width: 200px;
	}


	.attempt-table div {
		gap: 8px;
	}

	.attempt-table dt,
	.attempt-table dd {
		padding: 8px;
		line-height: 150%;
	}

	.attempt-table.attempt03 dd {
		width: calc(72% - 8px);
	}



	/* =========================================
* 事務所・アクセス
* ======================================== */
	.access-wrap {
		display: block;
	}

	.access-img {
		margin-top: 16px;
		width: 100%;
	}

	/* =========================================
* サステナビリティ
* ======================================== */



	.sustain-list {
		display: block;
	}

	.sustain-list .normal-list {
		width: 100%;
	}


	.attempt-table.attempt05 dt,
	.attempt-table.attempt05 dd {
		width: calc((100% - 8px) / 2);
	}




	.sdgs-col img {
		min-width: 350px;
	}

	.icon-wrap {
		margin-top: 16px;
	}

	.icon-wrap .icon-img {
		width: 48px;
		min-width: auto;
	}

	.partner-wrap img {
		margin: 24px auto;
	}


	/* =========================================
* 新着情報
* ======================================== */

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

	.news-list li {
		padding: 16px 24px 16px 16px;
	}


	.news-list a {
		display: block;
	}

	.date-category {
		margin-bottom: 8px;
	}

	.page-numbers {
		display: flex;
		gap: 24px;
		justify-content: center;
		line-height: normal;
		align-items: center;

	}

	.page-numbers .current {
		color: var(--main-color);
		text-decoration: underline;
	}

	.page-numbers .prev,
	.page-numbers .next {
		width: 32px;
		height: 32px;
		border: solid 1px var(--sub-color);
		border-radius: 50px;
		position: relative;
	}

	.page-numbers .prev {
		margin-right: 8px;
	}

	.page-numbers .next {
		margin-left: 8px;
	}

	.page-numbers .prev::after,
	.page-numbers .next::after {
		position: absolute;
		content: "";
		width: 8px;
		height: 8px;
		border-top: 2px solid var(--main-color);
		border-right: 2px solid var(--main-color);
	}

	.page-numbers .prev::after {
		transform: rotate(-135deg) translateY(-50%) translateX(-50%);
		top: 10%;
		left: 38%;
	}

	.page-numbers .next::after {
		transform: var(--kunoji) translateX(-50%);
		right: 38%;
		top: 55%;
	}

	/* =========================================
* 新着情報（記事）
* ======================================== */

	.article-container img {
		margin: 16px auto;
		display: block;
	}

	/* =========================================
* ブログ一覧
* ======================================== */
	.double-columns {
		display: block;
	}


	.blog-col {
		display: block;
	}



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


	.form-col {
		display: block;
	}

	.form-col dt {
		margin-right: 0;
		width: 100%;
		min-width: 100%;
		font-weight: 600;
		color: var(--main-color)
	}

	.form-col dd {
		width: 100%;
	}

	.label-item {
		gap: 4px;
	}


	/* =========================================
* 共通リンク
* ======================================== */

	.common-wrap {
		display: block;
	}

	.common-btn {
		height: auto;
		padding: 16px;
		margin-bottom: 24px;
	}

	.common-btn:last-child {
		margin-bottom: 0px;
	}


	/* =========================================
* フッター
* ======================================== */
	footer {
		font-size: 14px;
	}


	.logo-col {
		width: 100%;
	}

	.sns-wrap {
		margin-top: 24px;
	}

	.footer-bottom-link {
		display: block;
		text-align: left;
	}

	.copyright {
		text-align: center;
		font-size: 11px;
		margin-top: 8px;
	}

}