/*
Theme Name: etec child
Version: 2.0.0
Template: etec
*/

/************************************************************/
/*　リセット
/************************************************************/
:root {
	--main: #44a334;
	--sub:  #4b5935;
	--base: #f6f7f7;
	--act:  #f28c28;
	--gray: #fafafa;
	--text: #111111;
	--line: #04ad4b;
	--grad: linear-gradient(to right, #84ca20 0%, #44a334 100%);
	--grad-full: linear-gradient(to right, #84ca20 0%, #44a334 50%, #84ca20 100%);
	--contactbt: linear-gradient(to bottom, #f28c28 0%, #d25900 100%);
	--linebt: linear-gradient(to bottom, #84ca20 0%, #44a334 100%);
	--shade: drop-shadow(2px 3px 6px rgba(41, 76, 122, 0.15)); /*filter用*/
	--ease-out: cubic-bezier(0.30, 1.00, 0.30, 1.00);
	--ease-in: cubic-bezier(0.75, 0.05, 0.9, 0.05);
	--ease-inout: cubic-bezier(0.85, 0.00, 0.07, 1.00);
	--font-jp: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	--font-en: "LINE Seed JP", sans-serif;
	--font-mincho: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	--font-awe: "Font Awesome 6 Free";
	--ease: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
*:focus {
	outline: none;
}
html{
	box-sizing: border-box;
	line-height:1;
	font-size: 62.5%; /*  50 56.25 62.5 68.75 75*/
	-webkit-font-smoothing: antialiased;
}
::placeholder {
	color: #ccc;
}
body {
	font-family: var(--font-jp);
	font-style: normal;
	font-weight: 500;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt" 1;
	overflow-x: hidden;
	counter-reset: count;
	animation: fadeIn 2.5s ease 0s 1 normal;
	color: var(--text);
	background: #fff;
}


/*フォント*/
body,
p,
.articleBody p {
	font-size: 15px;
	font-weight: 500;
	line-height: 2;
}
a[href^="tel:"] {
	color: inherit;
	text-decoration: none;
}
@media screen and (max-width: 480px){
	body {
		font-size: 14px;
		font-weight: 500;
		line-height: 2;
	}
	p,
	.articleBody p {
		font-size: 14px;
		font-weight: 500;
		line-height: 2;
		padding: 0;
		margin: 0 auto 1em;
	}
	.articleBody p:last-of-type {
		margin-bottom: 0;
	}
}

/*フォーム*/
button,
input,
select,
textarea {
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	font: inherit;
	color: inherit;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	outline: none;
	border-radius: 0;          /* iOSによる角丸を消す */
	box-sizing: border-box;
}
select::-ms-expand {
	display: none;
}


/*PC・タブレット・スマホ 表示*/
.pc { display:block !important; }
.tb { display:none !important; }
.sp { display:none !important; }
@media screen and (max-width: 768px){   
	.pc { display:none !important; }
	.tb { display:block !important; }
	.sp { display:none !important; }
}
@media screen and (max-width: 480px){   
	.pc { display:none !important; }
	.tb { display:none !important; }
	.sp { display:block !important; }
}

.pc_none { display:none !important; }
.tb_none { display:block!important; }
.sp_none { display:block !important; }
@media screen and (max-width: 768px){   
	.pc_none { display:block !important; }
	.tb_none { display:none !important; }
	.sp_none { display:block !important; }
}
@media screen and (max-width: 480px){   
	.pc_none { display:block !important; }
	.tb_none { display:block !important; }
	.sp_none { display:none !important; }
}


/************************************************************/
/*　スクロールアニメーション
/************************************************************/

/* JS有効時だけ初期状態を適用 */
.js .sa {
	opacity: 0;
	transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	will-change: opacity, transform;
	backface-visibility: hidden;
}
/* 表示 */
.js .sa.show {
	opacity: 1;
}
/* アニメーション定義 */
.js .fade-up {
	transform: translateY(30px);
}
.js .fade-up.show {
	transform: translateY(0);
}
.js .fade-down {
	transform: translateY(-30px);
}
.js .fade-down.show {
	transform: translateY(0);
}
.js .slide-left {
	transform: translateX(-30px);
}
.js .slide-left.show {
	transform: translateX(0);
}
.js .slide-right {
	transform: translateX(30px);
}
.js .slide-right.show {
	transform: translateX(0);
}
.js .zoom-in {
	transform: scale(0.9);
}
.js .zoom-in.show {
	transform: scale(1);
}
.js .rotate-in {
	transform: rotate(-5deg) scale(0.95);
}
.js .rotate-in.show {
	transform: rotate(0) scale(1);
}
/* フェードだけ */
.js .fade-in {
	transform: none;
}
/*ディレイ*/
.js .delay-1 { transition-delay: 0.3s; }
.js .delay-2 { transition-delay: 0.6s; }
.js .delay-3 { transition-delay: 0.9s; }
.js .delay-4 { transition-delay: 1.2s; }
.js .delay-5 { transition-delay: 1.5s; }
.js .delay-6 { transition-delay: 1.8s; }
.js .delay-7 { transition-delay: 2.1s; }
.js .delay-8 { transition-delay: 2.4s; }
.js .delay-9 { transition-delay: 2.7s; }
.js .delay-10 { transition-delay: 3.0s; }

/************************************************************/
/*　構成
/************************************************************/
body#main #contents {
	width: 100%;
	padding: 0;
	margin: 0 auto;
}
body#sub {
	padding-top: 0;
}
body#sub #contents {
	width: 100%;
	padding: 0;
	margin: 0 auto;
}

/*ページトップ*/
.pagetop {
	opacity: 1;
	bottom: 60px;
}
.pagetop a {
	background: var(--main);
	color: #fff;
}

/*コンテンツ*/
#archive_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	column-gap: 50px;
}

/*アーカイブ*/
.archiveContent {
	width: 100%;
	padding: 0;
	margin: 0 auto;
}

.full-container,
.full-container .main {
	width: 100%;
	max-width: 100%;
}
body#main .articleBody,
body#sub .articleBody {
	margin: 0 auto;
}

/*固定ページ*/
.pageContent {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
.pageContent.full {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0 auto;
}
.pageContent.works {
	width: 100%;
	max-width: 1200px;
	padding: 0 0 100px;
	margin: 0 auto;
}

/*1カラム*/
.pageContent.one-column {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
body#sub .pageContent.one-column .articleBody {
	width: 100%;
	padding: 100px 0;
	margin: 0;
	position: relative;
}

/*2カラム*/
.pageContent.two-columns {
	width: 100%;
	max-width: 1200px;
	padding: 100px 0;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	column-gap: 50px;
}
body#sub .pageContent.two-columns .articleBody {
	width: calc(100% - 50px - 250px);
	padding: 0;
	margin: 0;
	position: relative;
	order: 1;
}

/*記事詳細ページ*/
body#sub.single .pageContent.two-columns {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 100px;
	display: flex;
	justify-content: center;
	column-gap: 50px;
	order: 1;
}
body#sub.single .pageContent.two-columns .articleBody {
	width: calc(100% - 50px - 250px);
	padding: 0;
	margin: 0;
	position: relative;
	order: 1;
}

/*サイドバー*/
#topColumn .side {
	width: 250px;
	min-width: 250px;
	padding: 0;
	margin: 0;
	position: relative;
}
body#sub.single .side,
body#sub .side {
	width: 250px;
	min-width: 250px;
	padding: 0;
	margin: 0;
	position: relative;
}
.sidebar-right .side,
.sidebar-left .side {
	margin: 0;
}

/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	body#main #contents {
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	body#sub {
		padding-top: 0;
	}
	body#sub #contents {
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}

	/*アーカイブ*/
	#archive_wrap {
		width: 100%;
		max-width: 100%;
		padding: 50px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 30px;
	}
	.archiveContent {
		padding: 0;
	}

	/*固定ページ*/
	.pageContent {
		width: 100%;
		max-width: 100%;
		padding: 50px;
	}
	.pageContent.full {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	.pageContent.works {
		width: 100%;
		max-width: 100%;
		padding: 50px;
		margin: 0 auto;
	}

	/*1カラム*/
	.pageContent.one-column {
		width: 100%;
		max-width: 100%;
		padding: 50px;
	}
	body#sub .pageContent.one-column .articleBody {
		width: 100%;
		padding: 0;
	}

	/*2カラム*/
	.pageContent.two-columns {
		width: 100%;
		max-width: 100%;
		padding: 50px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 50px;
	}
	body#sub .pageContent.two-columns .articleBody {
		width: 100%;
		padding: 0;
	}

	/*記事詳細ページ*/
	body#sub.single .pageContent.two-columns {
		width: 100%;
		max-width: 100%;
		padding: 50px;
		margin: 0 auto;
		justify-content: center;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 40px;
	}
	body#sub.single .pageContent.two-columns .articleBody {
		width: 100%;
		padding: 0;
	}

	/*サイドバー*/
	.side {
		width: 100%;
		min-width: 100%;
		padding: 0;
		margin: 0 auto;
		display: none;
	}
	body#sub.single .side {
		width: 100%;
		min-width: 100%;
	}
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	body#main #contents {
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	body#sub {
		padding-top: 0;
	}
	body#sub #contents {
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	
	/*アーカイブ*/
	#archive_wrap {
		width: 100%;
		max-width: 100%;
		padding: 40px 20px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 30px;
	}
	.archiveContent {
		padding: 0;
	}
	
	/*固定ページ*/
	.pageContent {
		width: 100%;
		max-width: 100%;
		padding: 20px 20px;
	}
	.pageContent.full {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	.pageContent.works {
		width: 100%;
		max-width: 100%;
		padding: 20px 20px;
		margin: 0 auto;
	}

	/*1カラム*/
	.pageContent.one-column {
		width: 100%;
		max-width: 100%;
		padding: 40px 20px;
	}
	body#sub .pageContent.one-column .articleBody {
		width: 100%;
		padding: 0;
	}

	/*2カラム*/
	.pageContent.two-columns {
		width: 100%;
		max-width: 100%;
		padding: 40px 20px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 40px;
	}
	body#sub .pageContent.two-columns .articleBody {
		width: 100%;
		padding: 0;
	}

	/*記事詳細ページ*/
	body#sub.single .pageContent.two-columns {
		width: 100%;
		max-width: 100%;
		padding: 20px 20px;
		margin: 0 auto;
		justify-content: center;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 40px;
	}
	body#sub.single .pageContent.two-columns .articleBody {
		width: 100%;
		padding: 0;
	}
	
	/*サイドバー*/
	.side {
		width: 100%;
		min-width: 100%;
		padding: 0;
		margin: 0 auto;
		display: none;
	}
	body#sub.single .side {
		width: 100%;
		min-width: 100%;
	}
}

/************************************************************/
/*　Gutenberg
/************************************************************/
/*グループ用*/
.mp0 { padding: 0 !important; margin: 0 !important; }

/************************************************************/
/*　共通
/************************************************************/

/*テーブル*/
#contents table,
body#main table {
	width: 100%;
	max-width: 1000px;
	margin-right: auto;
	margin-left: auto;
}

/*ボタン*/
.btnList {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 10px;
	margin-top: 2em;
}
.btnList.center {
	justify-content: center;
}
.btnList > a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	padding: 12px 30px;
	margin: 0;
	background: var(--text);
	font-size: 15px;
	line-height: 1;
	font-weight: 400;
	color: #fff;
	text-align: center;
	text-decoration: none;
	transition: var(--ease);
	position: relative;
	z-index: 0;
}
.btnList > a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	transform: scaleX(0);
	transform-origin: right;
	transition: var(--ease);
	transition-property: transform;
	background: var(--main);
	z-index: -1;
}
.btnList > a:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}
.btnList > a::after {
	content: '';
	display: block;
	width: 20px;
	height: 1px;
	background-image: linear-gradient(to right, #fff 0%, #fff 50%, var(--text) 50%, var(--text) 100%);
	position: absolute;
	top: 50%;
	right: -10px;
	z-index: 1;
	transition: var(--ease);
}
.btnList > a:hover::after {
	background-image: linear-gradient(to right, #c8c8c8 0%, #c8c8c8 50%, #c8c8c8 50%, #c8c8c8 100%);
	transition: var(--ease);
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){

}

/************************************************************/
/*　タイトル
/************************************************************/
.contHead {
	width: 100%;
	padding: 0;
	margin: 0 auto 60px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 0;
	grid-row-gap: 15px;
}
.contHead > em {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	font-family: var(--font-en);
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	color: var(--main);
	font-style: normal;
	white-space: nowrap;
	padding: 0;
	margin: 0 auto;
}
.contHead > em::before,
.contHead > em::after {
	content: '';
	display: block;
	width: 2px;
	height: 20px;
	background: var(--main);
	border-radius: 2px;
	transform-origin: center;
	transform: rotate(15deg);
}
#contents .contHead > h2 {
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: 30px;
	line-height: 1.2em;
	font-weight: 700;
	color: var(--main);
	text-align: center;
	border: none;
	background: none;
	position: relative;
}
#contents .contHead > p {
	padding: 0;
	margin: 0 auto;
	text-align: center;
}
#contents .contHead.white > em,
#contents .contHead.white > h2,
#contents .contHead.white > p {
	color: #fff;
}
/* - 左よせ*/
#contents .contHead.left {
	justify-content: flex-start;
}
#contents .contHead.left > em {
	margin: 0;
	position: relative;
	left: 5px;
}
#contents .contHead.left > h2 {
	text-align: left;
	margin-bottom: 50px;
}
#contents .contHead.left > p {
	width: 100%;
	text-align: left;
}

/*ページ*/
.contHead.page {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	background: none;
	border-bottom: none;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 10px;
}



/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	.contHead {
		width: 100%;
		padding: 0;
		column-gap: 0;
		grid-row-gap: 10px;
		margin: 0 auto 20px;
	}
	.cat-content + .contHead {
		margin: 0 auto 40px;
	}
	.contHead > em {
		font-size: 4vw;
	}
	#contents .contHead > h2 {
		font-size: 6vw;
	}
	#contents .contHead > h2.min {
		font-size: 5vw;
	}
	#contents .contHead > h2 span {
		font-size: 0.8em;
	}
	
	/* - 横*/
	.contHead.left {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 30px;
		flex-direction: column;
		grid-row-gap: 10px;
	}
	.contHead.left > em {
		font-size: 4vw;
	}
	#contents .contHead.left > h2 {
		width: 100%;
		font-size: 6vw;
	}
	#contents .contHead.left > p {
		width: 100%;
		text-align: left;
	}
	#contents .contHead.left > a.readmore {
		column-gap: 10px;
		padding: 7px 12px;
		margin: 0;
		border-radius: 40px;
		border: 1px solid #eee;
		box-shadow: 2px 3px 5px rgba(20,20,20, 0.1);
		font-size: 12px;
		bottom: 0;
		right: 0;
	}
	.contHead.left > a.readmore::after {
		content: '';
		width: 15px;
		min-width: 15px;
		height: 15px;
		background-size: 7px;
	}
	#contents .contHead.left > a.readmore:hover {
		background: var(--sub);
		border: 1px solid var(--sub);
		box-shadow: 2px 3px 5px rgba(20,20,20, 0);
	}
}


/************************************************************/
/*　ページタイトル
/************************************************************/
#pv {
	width: 100%;
	padding: 105px 0 70px;
	margin: 0 auto;
	position: relative;
	background-image: url('https://e-tec.company/wp-content/uploads/topSolution_bg.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 0;
}
#pv::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
	background-image: var(--grad);
	opacity: 0.9;
}
#pv::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url('https://e-tec.company/wp-content/uploads/object_bg_3.svg');
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.1;
}
#pv > header {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#pv > header > em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	font-family: var(--font-en);
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	font-style: normal;
}
#pv > header > h1 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 40px;
	line-height: 1.4em;
	font-weight: 700;
	color: #fff;
	text-align: left;
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 768px){
}

/************************************************************/
/*　見出し　＆　パンくず
/************************************************************/

/*見出し*/
#contents h1 {
	font-size: 2.8rem;
	margin-top: 0;
	margin-bottom: 1.5em;
}
#contents h2 {
	font-size: 1.8rem;
	margin-top: 1.5em;
	margin-bottom: 0.8em;
}



/*パンくず*/
.breadcrumbs {
	width: 100%;
	max-width: 1200px;
	padding: 50px 0;
	margin: 0 auto;
	position: relative;
	z-index: 5;
	color: var(--text);
}
#pv .breadcrumbs > li a,
#pv .breadcrumbs > li::before {
	color: var(--text);
}
#pv .breadcrumbs > li a:hover {
	color: var(--main);
}

/*PV用*/
#pv .bc_wrap {
	width: 100%;
	padding: 5px 0;
	margin: 0 auto;
	background: #407a46;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}
#pv .breadcrumbs {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	color: #fff;
}
#pv .breadcrumbs > li a,
#pv .breadcrumbs > li::before {
	color: #fff;
}
#pv .breadcrumbs > li a:hover {
	color: #fff;
}

/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*パンくず*/
	.breadcrumbs {
		width: 100%;
		max-width: 100%;
		padding: 20px 50px;
		overflow-x: scroll;
		flex-wrap: nowrap;
		column-gap: 0;
		white-space: nowrap;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.breadcrumbs > li {
		position: relative;
		display: table-cell;
		white-space: nowrap;
		min-width: auto;
		padding: 0;
		font-size: 0.8em;
	}
	.breadcrumbs > li a {
		font-size: 0.8em;
	}

	/*PV用*/
	#pv .breadcrumbs {
		width: 100%;
		max-width: 100%;
		padding: 20px 50px;
	}
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	/*パンくず*/
	.breadcrumbs {
		width: 100%;
		max-width: 100%;
		padding: 10px 20px;
		overflow-x: scroll;
		flex-wrap: nowrap;
		column-gap: 0;
		white-space: nowrap;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.breadcrumbs > li {
		position: relative;
		display: table-cell;
		white-space: nowrap;
		min-width: auto;
		padding: 0;
		font-size: 0.8em;
	}
	.breadcrumbs > li a {
		font-size: 0.8em;
	}

	/*PV用*/
	#pv .breadcrumbs {
		width: 100%;
		max-width: 100%;
		padding: 20px;
		display: none;
	}
}

/************************************************************/
/*　ページネーション
/************************************************************/

.pagination {
	margin: 80px 0 0;
	text-align: center;
}
.pagination .page-numbers {
	display: inline-flex;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.pagination .page-numbers li a,
.pagination .page-numbers li span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: auto;
	height: 42px;
	padding: 0;
	margin: 0;
	aspect-ratio: 1/1;
	border-radius: 50%;
	font-family: var(--font-en);
	font-size: 14px;
	line-height: 1;
	color: var(--main);
	background: #fff;
}
.pagination .page-numbers .current {
	background: var(--main);
	color: #fff;
}
.pagination .page-numbers li a:hover {
	background: var(--main);
	color: #fff;
}
.pagination .page-numbers li a.prev,
.pagination .page-numbers li a.next {
	width: 42px;
	height: 42px;
	aspect-ratio: 1/1;
}
.pagination .page-numbers .dots {
	width: auto;
	padding: 0 12px;
	border: none;
	background: transparent;
	color: var(--gray);
	font-weight: 500;
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	.pagination {
		margin: 30px 0 0;
		text-align: center;
	}
	.pagination .page-numbers {
		gap: 6px;
	}
	.pagination .page-numbers li a,
	.pagination .page-numbers li span {
		width: 36px;
		height: 36px;
		font-size: 13px;
	}
	.pagination .page-numbers li a.prev,
	.pagination .page-numbers li a.next {
		width: 36px;
		height: 36px;
		aspect-ratio: 1/1;
	}
}

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

#header {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	background: #fff;
	position: relative;
}
.header_top {
	width: 100%;
	max-width: 1200px;
	padding: 10px 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 20px;
}

/*ヘッダーテキスト*/
.head_txt {
	width: 100%;
	padding: 5px 0;
	margin: 0 auto;
	background: var(--grad);
	position: relative;
}
.head_txt > h1,
.head_txt > div {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 10px;
	line-height: 1;
	font-weight: lighter;
	color: #fff;
	text-align: left;
	border: none;
	background: none;
}

/*ロゴ*/
#logo {
	width: fit-content;
	height: 45px;
	padding: 0;
	margin: 0 20px 0 0;
	position: relative;
}
#logo img {
	display: block;
	width: auto;
	height: 45px;
}

/*テキスト*/
.header_top > h2 {
	width: fit-content;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	text-align: left;
	font-feature-settings: 'palt';
}
.header_top > h2 strong {
	color: var(--main);
	font-weight: 700;
}

/*電話*/
.header_contact {
	width: 400px;
	min-width: 400px;
	padding: 0;
	margin: 0 0 0 auto;
	position: relative;
	display: inline-flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	column-gap: 5px;
	grid-row-gap: 10px;
}
.header_tel {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 10px;
}
.header_tel > a {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	column-gap: 0;
	padding: 0;
	margin: 0;
	position: relative;
	font-family: var(--font-en);
	font-size: 30px;
	line-height: 1;
	font-weight: 900;
	letter-spacing: 0.03em;
	color: var(--text);
	white-space: nowrap;
}
.header_tel > a::before {
	content: '\f095';
	display: inline-block;
	font-family: var(--font-awe);
	font-size: 20px;
	line-height: 1;
	font-weight: 900;
	color: var(--main);
}
.header_tel > span {
	display: inline-block;
	width: fit-content;
	padding: 0;
	margin: 0;
	font-size: 11px;
	line-height: 1.4em;
	font-weight: 500;
	color: var(--text);
	text-align: left;
	font-feature-settings: 'palt';
}
/*ボタン*/
.header_btn {
	display: flex;
	width: auto;
	padding: 0 0 0 80px;
	margin: 0;
	position: relative;
	text-align: right;
}
.header_btn > em {
	display: inline-block;
	padding: 7px 13px;
	margin: 0;
	background: #ff0000;
	border-radius: 50px;
	font-size: 10px;
	line-height: 1.2em;
	font-weight: 700;
	font-style: normal;
	text-align: center;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
	filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
	z-index: 2;
}
.header_btn > em::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background: #ff0000;
	position: absolute;
	top: 50%;
	right: -9px;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	transform: translate(0,-50%);
}
.header_btn > a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 10px 15px 10px 40px;
	margin: 0;
	background: var(--act);
	font-size: 12px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	border-radius: 50px;
	transition: var(--ease);
	white-space: nowrap;
}
.header_btn > a strong {
	font-size: 12px;
	line-height: 1;
	font-weight: 700;
	color: var(--yellow);
	white-space: nowrap;
}
.header_btn > a span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 15px;
	height: 15px;
	padding: 0;
	margin: 0 0 0 5px;
	min-width: 15px;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background: #fff;
}
.header_btn > a span::before {
	content: '';
	display: block;
	width: 6px;
	height: 8px;
	background: var(--act);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	position: relative;
	left: 1px;
}
.header_btn > a:hover {
	filter: brightness(1.1);
	transition: var(--ease);
}
/*LINE*/
.header_line {
	display: block;
}
.header_line a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 5px;
	font-size: 12px;
	height: 35px;
	line-height: 1;
	color: #fff;
	width: auto;
	padding: 10px 10px;
	border-radius: 30px;
	background: var(--line);
	transition: var(--ease);
}
.header_line a:hover {
	opacity: 0.8;
	transition: var(--ease);
}
.header_line img {
	width: 15px;
	height: auto;
}

/*メインメニュー*/
#mainNav {
	width: 100%;
	padding: 0;
	margin: 15px auto;
	position: relative;
}
#menu-header-menu {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	border-left: 1px dashed #aaa;
}
#menu-header-menu > li {
	width: calc(100% / 7);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	border-right: 1px dashed #aaa;
}
#menu-header-menu > li > a {
	width: 100%;
	padding: 0 10px;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	grid-row-gap: 7px;
	font-size: 15px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	text-align: center;
	text-decoration: none;
	transition: var(--ease);
}
#menu-header-menu > li > a::before {
	content: '';
	display: inline-block;
	font-family: var(--font-awe);
	font-size: 22px;
	line-height: 1;
	font-weight: 900;
	color: var(--main);
	transition: var(--ease);
}
#menu-header-menu > li.home > a::before {
	content: '\f015';
}
#menu-header-menu > li.company > a::before {
	content: '\f1ad';
}
#menu-header-menu > li.reason > a::before {
	content: '\f2b5';
}
#menu-header-menu > li.works > a::before {
	content: '\f7d9';
}
#menu-header-menu > li.warranty > a::before {
	content: '\f55d';
}
#menu-header-menu > li.news > a::before {
	content: '\f1ea';
}
#menu-header-menu > li.contact > a::before {
	content: '\f0e0';
}
#menu-header-menu > li > a:hover,
#menu-header-menu > li > a:hover::before {
	color: var(--act);
	transition: var(--ease);
}

/*ヘッダー下*/
.header_btm {
	width: 100%;
	padding: 7px 0;
	margin: 0 auto;
	background: #407a46;
	position: relative;
}
.header_btm > h2 {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 12px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
	text-align: center;
	border: none;
	background: none;
}

/*== タブレット ==*/
@media only screen and (max-width: 768px){
}

/************************************************************/
/*　ヘッダー Fix
/************************************************************/
#header.header-fix {
	background: rgba(255,255,255,1);
	border-right: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}
/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
}


/************************************************************/
/*　スマホ用ハンバーガーメニュー
/************************************************************/

/* ハンバーガー本体（右上固定） */
.hamburger {
	position: fixed;
	top: 50px;
	right: 50px;
	width: 25px;
	height: 20px;
	cursor: pointer;
	z-index: 1001;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.hamburger span {
	display: block;
	height: 2px;
	border-radius: 2px;
	background-color: #111;
	width: 100%;
	transition: var(--ease);
	transform-origin: center;
}
.hamburger.scroll span {
	background-color: #111;
	transition: var(--ease);
}
.hamburger span:nth-child(1) {
	transform-origin: left;
}
.hamburger span:nth-child(3) {
	transform-origin: right;
}
.hamburger.active span:nth-child(1) {
	transform: scaleX(0);
	transform-origin: left;
	background-color: #111;
}
.hamburger.active span:nth-child(2) {
	transform: scaleX(1);
	background-color: #111;
}
.hamburger.active span:nth-child(3) {
	transform: scaleX(0);
	transform-origin: right;
	background-color: #111;
}

/* サブページ */
body#sub .hamburger {
	position: fixed;
	top: 50px;
	right: 50px;
	width: 25px;
	height: 20px;
	cursor: pointer;
	z-index: 1001;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
body#sub .hamburger span {
	background-color: #111;
}
body#sub .hamburger.active span:nth-child(1) {
	background-color: #111;
}
body#sub .hamburger.active span:nth-child(2) {
	background-color: #111;
}
body#sub .hamburger.active span:nth-child(3) {
	background-color: #111;
}

/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.hamburger {
		position: fixed;
		top: 26px;
		right: 20px;
		width: 25px;
		height: 20px;
	}
	.hamburger span {
		background-color: #111;
	}
	.hamburger.scroll span {
		background-color: #111;
		transition: var(--ease);
	}
	.hamburger span:nth-child(1) {
		transform-origin: left;
	}
	.hamburger span:nth-child(3) {
		transform-origin: right;
	}
	.hamburger.active span:nth-child(1) {
		transform: scaleX(0);
		transform-origin: left;
		background-color: #fff;
	}
	.hamburger.active span:nth-child(2) {
		transform: scaleX(1);
		background-color: #fff;
	}
	.hamburger.active span:nth-child(3) {
		transform: scaleX(0);
		transform-origin: right;
		background-color: #fff;
	}

	/* サブページ */
	body#sub .hamburger {
		position: fixed;
		top: 26px;
		right: 20px;
		width: 25px;
		height: 20px;
	}
	body#sub .hamburger span {
		background-color: #111;
	}
	body#sub .hamburger.active span:nth-child(1) {
		background-color: #fff;
	}
	body#sub .hamburger.active span:nth-child(2) {
		background-color: #fff;
	}
	body#sub .hamburger.active span:nth-child(3) {
		background-color: #fff;
	}
}

/* モバイルメニュー */
.mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(255,255,255,0.95);
	z-index: 1000;
	padding: 0;
	opacity: 0;
	visibility: hidden;
	transition: var(--ease);
}
.mobile-menu.active {
	opacity: 1;
	visibility: visible;
	transition: var(--ease);
}

/*デザイン*/
.panel_wrap {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.panel_visual {
	content: '';
	display: block;
	width: calc(100% - 600px);
	height: 100%;
	background-image: url('');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 100px;
	margin: 0;
	overflow: hidden;
	position: relative;
	z-index: 0;
}
.panel_visual::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.panel_visual > h2 {
	width: 100%;
	padding: 0;
	margin: 0;
	font-family: var(--font-min);
	font-size: 20px;
	line-height: 1.3em;
	font-weight: 500;
	color: #fff;
	border: none;
	background: none;
	position: relative;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}
.panel_visual > h2 span {
	display: block;
	width: 100%;
	text-align: center;
}
.panel_visual > h2 img {
	width: 200px;
	height: auto;
}
.panel_content {
	width: 650px;
	min-width: 650px;
	padding: 50px 50px;
	margin: 0;
	background: none;
	position: relative;
	overflow: hidden;
	overflow-y: auto;
	scrollbar-width: none;
	display: flex;
	justify-content: center;
	column-gap: 50px;
}
.panel_content::-webkit-scrollbar {
	display: none;
}
.panel_nav {
	width: 200px;
	min-width: 200px;
	padding: 0;
	margin: 0;
	position: relative;
}
.panel_info {
	width: calc(100% - 200px - 50px);
	padding: 0;
	margin: 0;
	position: relative;
}

/*ボタンメニュー*/
.menu-panelbtn-menu {
	width: 90%;
	padding: 0;
	margin: 40px auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
.menu-panelbtn-menu > li {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
.menu-panelbtn-menu > li > a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px 30px;
	margin: 0;
	background: none;
	border: 1px solid #fff;
	font-size: 15px;
	line-height: 1;
	color: #fff;
	text-decoration: none;
	text-align: center;
	overflow: hidden;
	transition: var(--ease);
	position: relative;
}
.menu-panelbtn-menu > li > a:hover {
	background: #fff;
	color: var(--text);
	transition: var(--ease);
}

/* メニューリスト */
#menu-panel-menu {
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	list-style: none;
}
#menu-panel-menu > li {
	padding: 0;
	margin: 0;
	position: relative;
	line-height: 1;
}
#menu-panel-menu > li a {
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
	font-family: var(--font-en);
	font-size: 15px;
	line-height: 1;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
	position: relative;
}
#menu-panel-menu > li a::after {
	content: '';
	display: block;
	width: 0;
	height: 1px;
	background: var(--text);
	transition: var(--ease);
	position: absolute;
	bottom: -8px;
	left: 0;
}
#menu-panel-menu > li a:hover {
	color: var(--text);
	transition: var(--ease);
	position: relative;
}
#menu-panel-menu > li a:hover::after {
	width: 100%;
	transition: var(--ease);
}
#menu-panel-menu > li a > span {
	font-size: 10px;
	line-height: 1;
}

/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	
	/* モバイルメニュー */
	.mobile-menu {
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100vh;
		background-color: rgba(255,255,255,0.95);
		z-index: 1000;
		padding: 0;
		opacity: 0;
		visibility: hidden;
		transition: var(--ease);
	}

	/*デザイン*/
	.panel_wrap {
		flex-wrap: wrap;
	}
	.panel_content {
		width: 100%;
		min-width: 100%;
		height: 100vh;
		padding: 20px 20px 60px;
		flex-wrap: wrap;
		column-gap: 30px;
		grid-row-gap: 30px;
		background: #365f8d;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
	}
	.panel_nav {
		width: 100%;
		min-width: 100%;
		order: 1;
	}
	.panel_info {
		width: 100%;
	}

	/*ボタンメニュー*/
	.menu-panelbtn-menu {
		width: 100%;
		margin: 30px auto;
		grid-row-gap: 12px;
	}
	.menu-panelbtn-menu > li {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
	}
	.menu-panelbtn-menu > li > a {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 15px 30px;
		margin: 0;
		background: none;
		border: 1px solid var(--text);
		font-size: 15px;
		line-height: 1;
		color: var(--text);
		text-decoration: none;
		text-align: center;
		overflow: hidden;
		transition: var(--ease);
		position: relative;
	}
	.menu-panelbtn-menu > li > a:hover {
		background: var(--text);
		color: var(--text);
		transition: var(--ease);
	}

	/* メニューリスト */
	#menu-panel-menu {
		grid-row-gap: 0;
		margin: 0 auto;
		border-top: 1px solid #fff;
	}
	#menu-panel-menu > li {
		text-align: center;
		border-bottom: 1px solid #fff;
	}
	#menu-panel-menu > li a {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 20px 20px;
		font-size: 16px;
		text-align: center;
		font-weight: 600;
		color: #fff;
	}
	#menu-panel-menu > li a:hover,
	#menu-panel-menu > li a:active {
		color: #fff;
		opacity: 0.8;
	}
	#menu-panel-menu > li a::after {
		display: none !important;
	}
}

/************************************************************/
/*　フッター
/************************************************************/
.footer {
	width: 100%;
	padding: 50px;
	margin: 0 auto;
	background: #407a46;
	position: relative;
}
.footer_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	column-gap: 50px;
}
.footer_left {
	width: 400px;
	min-width: 400px;
	padding: 0;
	margin: 0;
	position: relative;
}
.footer_right {
	width: 50%;
	padding: 0;
	margin: 0;
	position: relative;
}

/*会社情報*/
.company_info {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
.company_info > h2 {
	width: auto;
	height: 40px;
	padding: 0;
	margin: 0 0 10px;
	border: none;
	background: none;
	position: relative;
}
.company_info > h2 img {
	width: auto;
	height: 100%;
}

.company_info > dl {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 0;
	grid-row-gap: 0;
	border-top: 1px solid rgba(255,255,255,0.5);
}
.company_info > dl dt {
	width: 150px;
	min-width: 150px;
	padding: 20px;
	margin: 0;
	position: relative;
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 500;
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	text-align: left;
}
.company_info > dl dd {
	width: calc(100% - 150px);
	padding: 20px;
	margin: 0;
	position: relative;
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 400;
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	text-align: left;
}

/* - 中央よせ */
.company_info.center > h2 {
	text-align: center;
	margin: 0 auto;
}
.company_info.center dl dt {
	text-align: center;
}
.company_info.center dl dd > p {
	text-align: center;
}

/*メニュー*/
#menu-footer-menu {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 50px;
	grid-row-gap: 20px;
}
#menu-footer-menu > li {
	width: calc((100% - 50px) / 2);
	padding: 0;
	margin: 0;
	position: relative;
}
#menu-footer-menu > li a {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 5px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2em;
	text-decoration: none;
	color: #fff;
	transform: var(--ease);
}
#menu-footer-menu > li a::after {
	content: '\f061';
	display: inline;
	font-family: "Font Awesome 6 Free";
	font-size: 15px;
	font-weight: 900;
	color: #fff;
}
#menu-footer-menu > li a:hover {
	opacity: 0.8;
	transform: var(--ease);
}

/*SNS*/
#menu-footer-sns-menu {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 20px;
}
#menu-footer-sns-menu > li {
	width: auto;
	height: 30px;
	min-width: 30px;
	aspect-ratio: 1/1;
	display: flex;
	justify-content: center;
	align-items: center;
}
#menu-footer-sns-menu > li img {
	width: auto;
	height: 30px;
}
#menu-footer-sns-menu > li a span.dashicons {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	aspect-ratio: 1/1;
	font-size: 30px;
	line-height: 1;
	color: #fff;
}


.footer_btm {
	background: none;
	margin: 50px auto 0;
}
.container-copyright .copyright {
	display: block;
	padding: 0;
	margin: 0;
	background: none;
	font-size: 11px;
	line-height: 1;
	color: #fff;
	text-align: center;
}

/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	
}


/************************************************************/
/*　サイドバー
/************************************************************/
.side .widget-area {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 40px;
}
.side .widget-area > .widget,
.side .widget-area > .widget_block {
	padding: 20px;
	margin: 0;
	background-color: #fff;
	border-radius: 0;
	box-shadow: none;
}
body .side .widget h2:not(.widget-title) {
	padding: 1rem 1.5rem;
	background: var(--text);
	border-radius: 0;
	color: #fff;
	font-size: 1em;
}
body .side .widget .wp-block-search__label {
	position: static;
	padding: 1rem 1.5rem;
	background: var(--text);
	border-radius: 0;
	color: #fff;
	font-size: 1em;
}

/*リスト*/
body .side .widget .wp-block-page-list,
body .side .widget .wp-block-categories-list,
body .side .widget .wp-block-archives-list {
	border-bottom: 1px solid #eee;
}
body .side .widget .wp-block-page-list a,
body .side .widget .wp-block-categories-list > .cat-item > a:only-child,
body .side .widget .archive-item a {
	padding: 0.7em 0;
	margin: 0;
	position: relative;
	font-size: 0.9em;
}
body .side .widget .wp-block-page-list a::after,
body .side .widget .wp-block-categories-list > .cat-item > a:only-child::after,
body .side .widget .archive-item a::after {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	border-top: 1px solid var(--text);
	border-right: 1px solid var(--text);
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%) rotate(45deg);
}

/*検索*/
body .side .widget .wp-block-search__input {
	height: 40px;
	padding: 8px 10px;
	background-color: #fff;
	border: 1px solid #ddd;
	border-right: none;
	border-radius: 0;
	font-size: 0.9em;
	outline: none;
}
body .side .widget .wp-block-search.wp-block-search__button-outside .wp-block-search__button.has-icon {
	height: 40px;
	width: auto;
	aspect-ratio: 1/1;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0;
	outline: none;
}

/*タイトル*/
#contents .aside > h2 {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 7px;
	width: 100%;
	padding: 12px;
	margin: 0 auto 1px;
	background: var(--main);
	border-radius: 5px 5px 0 0;
	color: #fff;
	text-align: center;
	font-family: var(--font-en);
	font-size: 16px;
	font-weight: 900;
	line-height: 1.2em;
	position: relative;
	z-index: 0;
}
#contents .aside.map > h2::before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f3c5";
	color: #fff;
}
#contents .aside.content > h2::before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f03a";
	color: #fff;
}

/*カテゴリ*/
.side .iconmenu {
	width: 100%;
	padding: 10px;
	margin: 0 auto;
	border: none;
	background: var(--base);
	border-radius: 0 0 5px 5px;
	box-shadow: none;
	list-style: none;
	position: relative;
}
.side .iconmenu > li {
	width: 100%;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	box-shadow: none;
}
.side .iconmenu > li a {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 10px;
	padding: 10px 20px 10px 10px;
	margin: 0 auto;
	border-bottom: 1px solid rgba(0,0,0,0.05);
	background: #fff;
	position: relative;
	font-size: 12px;
	line-height: 1.4em;
	color: var(--text);
	font-weight: 400;
	text-decoration: none;
	box-shadow: none;
	transition: all 0.3s ease;
}
.side .iconmenu > li:last-child a {
	border-bottom: none;
}
.side .iconmenu > li a::before,
.side .iconmenu > li a::after {
	display: none;
}
.side .iconmenu > li a::after {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	background: none;
	border-top: 1px solid var(--text);
	border-right: 1px solid var(--text);
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(0,-50%) rotate(45deg);
	-webkit-transform: translate(0,-50%) rotate(45deg);
}
.side .iconmenu > li a:hover {
	font-size: 12px;
	line-height: 1.4em;
	color: var(--sub);
	font-weight: 400;
	transition: all 0.3s ease;
}
.side .iconmenu > li a figure {
	width: 40px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.side .iconmenu > li a figure::before {
	content: '';
	display: block;
	padding: 50%;
}
.side .iconmenu > li a figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}


/************************************************************/
/*　メインビジュアル
/************************************************************/
#mainVisual {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	background-image: url('https://e-tec.company/wp-content/uploads/mv_bg.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: 0;
}
#mainVisual::before {
	content: '';
	display: block;
	width: 650px;
	height: auto;
	aspect-ratio: 1057 / 972;
	background-image: url('https://e-tec.company/wp-content/uploads/mv_human.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}
.mv_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 50px 0 50px;
	margin: 0 auto;
	position: relative;
}
.mv_wrap > h3 {
	width: 550px;
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	z-index: 3;
}
.mv_wrap > h3 img {
	width: 100%;
	height: auto;
}
.mv_wrap > h2 {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	z-index: 5;
}
.mv_wrap > h2 img {
	width: 100%;
	height: auto;
}
/*アワード*/
.mv_award {
	width: 650px;
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 5px;
	position: absolute;
	top: 50px;
	right: 0;
	z-index: 1;
}
.mv_award > li {
	width: calc((100% - 15px) / 4);
	padding: 0;
	margin: 0;
	position: relative;
}
.mv_award > li img {
	width: 100%;
	height: auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#mainVisual {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
		overflow: hidden;
		background: none;
		z-index: 0;
	}
	#mainVisual::before {
		display: none;
	}
	#mainVisual img {
		width: 100%;
		height: auto;
	}
}


/************************************************************/
/*　CTA
/************************************************************/
.topCta {
	width: 100%;
	padding: 80px 0;
	margin: 0 auto;
	background: #fff;
	position: relative;
}
.mvCta {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	background: #407a46;
	position: relative;
}
.topCta_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	background: #fff;
	border-radius: 10px;
	z-index: 5;
	filter: var(--shade);
}
.topCta_left {
	width: 50%;
	min-width: 600px;
	padding: 0;
	margin: 0;
	position: relative;
}
.topCta_right {
	width: calc(50%);
	min-width: 500px;
	padding: 30px;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 20px;
}
/*画像*/
.topCta_left > figure {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px 0 0 10px;
}
.topCta_left > figure::before {
	content: '';
	display: block;
	width: 100px;
	height: 100%;
	background: #fff;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	clip-path: polygon(50% 0, 100% 0, 100% 100%, 0% 100%);
}
.topCta_left > figure::after {
	content: '';
	display: block;
	width: 120px;
	height: 100%;
	background-image: url('https://e-tec.company/wp-content/uploads/cta_serif_2.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}
.topCta_left > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.topCta_left > h2 {
	width: 400px;
	padding: 0;
	margin: 0;
	position: absolute;
	top: -30px;
	left: 45%;
	transform: translate(-50%,0);
	z-index: 10;
}
.topCta_left > h2 img {
	width: 100%;
	height: auto;
}
/* - 電話*/
.topCta_right > a.cta_tel {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	grid-row-gap: 3px;
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	transition: var(--ease);
}
.topCta_right > a.cta_tel > em {
	display: inline-block;
	width: 100%;
	padding: 0;
	margin: 0 auto 5px;
	text-align: center;
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	font-style: normal;
	white-space: nowrap;
	color: var(--text);
	letter-spacing: normal;
	z-index: 2;
	transition: var(--ease);
}
.topCta_right > a.cta_tel > p {
	display: inline-flex;
	justify-content: center;
	align-items: baseline;
	flex-wrap: wrap;
	column-gap: 5px;
	grid-row-gap: 7px;
	padding: 0;
	margin: 0;
	font-family: var(--font-en);
	font-size: 50px;
	line-height: 1;
	font-weight: 900;
	color: var(--text);
	letter-spacing: normal;
	position: relative;
	transition: var(--ease);
}
.topCta_right > a.cta_tel:hover > p {
	color: #f77311;
	transition: var(--ease);
}
.topCta_right > a.cta_tel > p::before {
	content: '\f095';
	display: inline-block;
	font-family: var(--font-awe);
	font-size: 35px;
	line-height: 1;
	font-weight: 900;
	color: var(--main);
}
.topCta_right > a.cta_tel > p > span {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 5px;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
}
.topCta_right > a.cta_tel > p > span em {
	display: inline-block;
	padding: 6px 10px;
	margin: 0;
	background: #f77311;
	border-radius: 16px;
	font-size: 15px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	font-style: normal;
}
/*ボタン*/
a.cta_mail,
a.cta_line {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	width: calc(50% - 10px);
	padding: 15px 20px;
	font-size: 18px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	white-space: nowrap;
	text-decoration: none;
	border-radius: 12px;
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: var(--ease);
}
a.cta_mail:hover,
a.cta_line:hover {
	filter: brightness(1.1);
	transform: translateY(3px);
	box-shadow: 0 0 0 rgba(0,0,0,0);
}
/* メール */
a.cta_mail {
	color: #fff;
	background: var(--contactbt);
	border: 2px solid #d25900;
	box-shadow: 0 3px 0 #d25900;
}
a.cta_mail::before {
	content: '\f0e0';
	display: inline-block;
	font-family: var(--font-awe);
	font-size: 20px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
}
/* LINE */
a.cta_line {
	color: #fff;
	background: var(--linebt);
	border: 2px solid #007651;
	box-shadow: 0 3px 0 #007651;
}
a.cta_line::before {
	content: '';
	display: block;
	width: auto;
	height: 20px;
	aspect-ratio: 53 / 50;
	background-image: url('https://e-tec.company/wp-content/uploads/icon_line_w.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}

/*色変え*/
.mvCta .topCta_wrap {
	background: #fff;
	transform: translateY(-30px);
}
.mvCta .topCta_left > figure::before {
	background: #fff;
}
.mvCta .topCta_left > h2 {
	top: -55px;
	left: 40%;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.topCta {
		width: 100%;
		padding: 30px 10px 10px;
	}
	.topCta_wrap {
		width: 100%;
		max-width: 100%;
		flex-wrap: wrap;
		border-radius: 0;
	}
	.topCta_left {
		width: 100%;
		min-width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
	}
	.topCta_right {
		width: 100%;
		min-width: 100%;
		padding: 20px;
		margin: 0;
		position: relative;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		column-gap: 10px;
		grid-row-gap: 10px;
	}
	.topCta .topCta_right {
		padding: 20px 10px;
	}
	/*画像*/
	.topCta_left > figure {
		width: 100%;
		border-radius: 0;
	}
	.topCta_left > figure::before {
		content: '';
		display: block;
		width: auto;
		height: auto;
		background: #fff;
		position: relative;
		top: unset;
		right: unset;
		z-index: -1;
		clip-path: unset;
		padding-top: 50%;
	}
	.topCta_left > figure::after {
		display: none;
	}
	.topCta_left > h2 {
		width: 80%;
		padding: 0;
		margin: 0;
		position: absolute;
		top: -15px;
		left: 50%;
		transform: translate(-50%,0);
		z-index: 10;
	}
	/* - 電話*/
	.topCta_right > a.cta_tel {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		grid-row-gap: 3px;
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
		transition: var(--ease);
	}
	.topCta_right > a.cta_tel > em {
		font-size: 14px;
		margin-bottom: 5px;
		text-align: center;
		text-align-last: center;
	}
	.topCta_right > a.cta_tel > p {
		font-size: 40px;
		justify-content: center;
	}
	.topCta_right > a.cta_tel > p::before {
		height: 25px;
	}
	.topCta_right > a.cta_tel > p > span {
		column-gap: 5px;
		width: 100%;
		font-size: 14px;
	}
	.topCta_right > a.cta_tel > p > span em {
		display: inline-block;
		padding: 6px 10px;
		border-radius: 16px;
		font-size: 12px;
	}
	/*ボタン*/
	a.cta_mail,
	a.cta_line {
		column-gap: 5px;
		width: calc(50% - 5px);
		padding: 17px 10px;
		font-size: 17px;
		letter-spacing: -0.05em;
		white-space: nowrap;
	}
	/* メール */
	a.cta_mail::before {
		height: 17px;
	}
	/* LINE */
	a.cta_line::before {
		height: 17px;
	}

	/*色変え*/
	.mvCta .topCta_wrap {
		background: #ffe980;
		transform: unset;
	}
	.mvCta .topCta_left > figure::before {
		background: #ffe980;
	}
	.mvCta .topCta_left > h2 {
		width: 70%;
		padding: 0;
		margin: 0;
		position: absolute;
		top: -25px;
		left: 15%;
		transform: unset;
		z-index: 10;
	}
}


/************************************************************/
/*　フォーム
/************************************************************/

.wpcf7 {
	background: var(--grad);
	padding: 100px 0 0;
	margin: 0;
	position: relative;
	z-index: 0;
}
.wpcf7::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url('https://e-tec.company/wp-content/uploads/object_bg_1.svg');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.2;
}

/*ボックス*/
#contents .formBox > h3 {
	width: 100%;
	margin: 0 auto 30px;
}
.formBox {
	width: 100%;
	max-width: 1000px;
	padding: 100px 50px;
	margin: 0 auto;
	position: relative;
	background: #fff;
	border-radius: 10px 10px 0 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}
.formBox > dl {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 20px;
	border-bottom: 1px solid #eee;
}
.formBox > dl:first-of-type {
	border-top: 1px solid #eee;
}
.formBox > dl dt {
	width: 200px;
	min-width: 200px;
	padding: 20px 0 20px 20px;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 10px;
	font-size: 14px;
}
.formBox > dl dt .att,
.formBox > dl dt .any {
	display: inline-block;
	padding: 5px 10px;
	margin: 0;
	background: #dd3131;
	border-radius: 0;
	font-size: 12px;
	line-height: 1;
	color: #fff;
	white-space: nowrap;
}
.formBox > dl dt .any {
	background: #4584c9;
}
.formBox > dl dd {
	width: calc(100% - 20px - 200px);
	padding: 20px 20px 20px 0;
	margin: 0;
	position: relative;
}
.formBox > dl dt p,
.formBox > dl dd p {
	padding: 0;
	margin: 0;
	line-height: 1.4em;
}

.formBox input[type="text"],
.formBox input[type="email"],
.formBox input[type="tel"] {
	width: 100%;
	padding: 10px;
	margin: 0;
	border: 1px solid #ccc;
	background: #fafafa;
	border-radius: 5px;
	line-height: 1;
}
.formBox textarea {
	width: 100%;
	padding: 10px;
	margin: 0;
	border: 1px solid #ccc;
	background: #fafafa;
	border-radius: 5px;
	line-height: 1.6;
}
.formBox input.w50 {
	max-width: 50%;
}
.formBox input.w25 {
	max-width: 25%;
}

/*住所*/
.formBox .wpcf7-form-control-wrap[data-name="your-zip"],
.formBox .wpcf7-form-control-wrap[data-name="your-adress"] {
	display: block;
	margin-bottom: 10px;
}
.formBox .wpcf7-form-control-wrap + p {
	margin-top: 5px;
}

/*チェックボックス*/
.formBox .wpcf7-list-item {
	position: relative;
	display: inline-flex;
	align-items: center;
	margin-right: 15px !important;
}
.formBox .wpcf7-list-item input[type="checkbox"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0 !important;
	cursor: pointer;
	z-index: 10;
	margin: 0 !important;
}
.formBox .wpcf7-list-item-label {
	position: relative;
	padding-left: 25px !important;
	display: inline-block;
	z-index: 5;
	cursor: pointer;
}
.formBox .wpcf7-list-item-label::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	border: 1px solid #ccc !important;
	background: #fff !important;
	border-radius: 4px;
	display: block !important;
}
.formBox .wpcf7-list-item input:checked ~ .wpcf7-list-item-label::before {
	background: #333 !important;
	border-color: #333 !important;
}
.formBox .wpcf7-list-item-label::after {
	content: "";
	position: absolute;
	left: 7px;
	top: 50%;
	transform: translateY(-65%) rotate(45deg);
	width: 6px;
	height: 11px;
	border-right: 3px solid #fff !important;
	border-bottom: 3px solid #fff !important;
	opacity: 0 !important;
	display: block !important;
}
.formBox .wpcf7-list-item input:checked ~ .wpcf7-list-item-label::after {
	opacity: 1 !important;
}

/*ラジオボタン*/
.formBox .wpcf7-radio {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 10px;
	width: 100%;
}
.formBox .wpcf7-list-item {
	padding: 0;
	margin: 0;
}
.formBox .wpcf7-radio input[type="radio"] {
	display: none;
}
.formBox .wpcf7-radio label {
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 14px;
	gap: 6px;
}
.formBox .wpcf7-radio label::before {
	content: "";
	width: 14px;
	height: 14px;
	border: 1px solid #ccc;
	background: #fafafa;
	border-radius: 50%;
	box-sizing: border-box;
	transition: var(--ease);
}
.formBox .wpcf7-radio input[type="radio"]:checked + .wpcf7-list-item-label {
	position: relative;
}
.formBox .wpcf7-radio input[type="radio"]:checked + .wpcf7-list-item-label::before {
	content: "";
	position: absolute;
	left: -17px;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--main);
}

#contents .wpcf7-spinner {
	display: none;
}
#contents .wpcf7 .wpcf7-response-output {
	width: 100%;
	max-width: 1000px;
	background: #fff;
	margin: 100px auto;
	text-align: center;
	padding: 20px;
}

/*ファイル添付*/
.formBox .fileStatus {
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}

/*送信ボタン*/
.formBox input[type="submit"] {
	width: fit-content;
	min-width: 300px;
	padding: 10px 24px;
	margin: 30px auto 0;
	background: var(--main);
	border-radius: 5px;
	border: none;
	font-size: 15px;
	color: #fff;
	cursor: pointer;
	transition: var(--ease);
}
.formBox input[type="submit"]:hover {
	background: var(--sub);
	transition: var(--ease);
}

/*== タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.wpcf7 {
		background: var(--grad);
		padding: 50px;
		margin: 0;
	}
	/*ボックス*/
	.formBox {
		width: 100%;
		max-width: 100%;
		padding: 50px;
	}
	.formBox > dl {
		width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 10px;
	}
	.formBox > dl dt {
		width: 100%;
		min-width: 100%;
		padding: 20px 0 0;
		justify-content: flex-start;
		column-gap: 10px;
	}
	.formBox > dl dt .att,
	.formBox > dl dt .any {
		padding: 3px 7px;
		font-size: 10px;
	}
	.formBox > dl dd {
		width: 100%;
		padding: 0 0 20px;
	}
	.formBox input.w50 {
		max-width: 100%;
	}
	.formBox input.w25 {
		max-width: 50%;
	}

	/*ラジオボタン*/
	.formBox .wpcf7-radio {
		column-gap: 30px;
		grid-row-gap: 5px;
		width: 100%;
	}

	#contents .wpcf7-spinner {
		display: none;
	}
	#contents .wpcf7 .wpcf7-response-output {
		width: calc(100% - 40px);
		max-width: 100%;
		margin: 30px auto;
		text-align: center;
		padding: 20px;
	}
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	.wpcf7 {
		background: var(--main);
		padding: 20px 20px 0;
		margin: 0;
	}
	/*ボックス*/
	.formBox {
		width: 100%;
		max-width: 100%;
		padding: 40px 20px 40px;
	}
	.formBox > dl {
		width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 10px;
	}
	.formBox > dl dt {
		width: 100%;
		min-width: 100%;
		padding: 20px 0 0;
		justify-content: flex-start;
		column-gap: 10px;
	}
	.formBox > dl dt .att,
	.formBox > dl dt .any {
		padding: 3px 7px;
		font-size: 10px;
	}
	.formBox > dl dd {
		width: 100%;
		padding: 0 0 20px;
	}
	.formBox input.w50 {
		max-width: 100%;
	}
	.formBox input.w25 {
		max-width: 50%;
	}

	/*ラジオボタン*/
	.formBox .wpcf7-radio {
		column-gap: 30px;
		grid-row-gap: 5px;
		width: 100%;
	}

	#contents .wpcf7-spinner {
		display: none;
	}
	#contents .wpcf7 .wpcf7-response-output {
		width: calc(100% - 40px);
		max-width: 100%;
		margin: 30px auto;
		text-align: center;
		padding: 20px;
	}
}

/************************************************************/
/*　サイトマップ
/************************************************************/
.sitemap-menu {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	border-top: 1px solid #dee5ec;
}
.sitemap-menu > li {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border-bottom: 1px solid #dee5ec;
}
.sitemap-menu > li::after {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	border-top: 1px solid #737e8c;
	border-right: 1px solid #737e8c;
	background: none;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translate(0,-50%) rotate(45deg);
}
.sitemap-menu > li > a {
	display: block;
	padding: 15px 30px 15px 15px;
	margin: 0;
	font-size: 14px;
	line-height: 1.4em;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
}
.sitemap-menu > li > a:hover {
	font-size: 14px;
	line-height: 1.4em;
	color: var(--sub);
	text-decoration: underline;
	transition: var(--ease);
}

/************************************************************/
/*　記事詳細
/************************************************************/

/*タイトル*/
#contents .articleHeader__title {
	margin: 0 auto 1em;
	font-size: 2.2vw;
}

/*ヘッダー*/
.articleHeader {
	padding: 0 0 50px;
	margin: 0 auto 50px;
	position: relative;
	border-bottom: 3px solid #eee;
}

/*公開・更新日時*/
.articleHeader__info {
	margin: 0.8rem auto 1rem;
}

/*カスタムポスト・タクソノミー・カテゴリ・タグ*/
.post-taxonomy {
	width: 100%;
	padding: 0;
	margin: auto auto 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 8px;
}
.post-taxonomy > span {
	display: inline-block;
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
}
.post-taxonomy > span a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 5px 10px;
	background: var(--main);
	font-size: 10px;
	line-height: 1;
	color: #fff;
	white-space: nowrap;
	text-decoration: none;
	overflow: hidden;
	position: relative;
	transition: color 0.3s ease;
	z-index: 0;
}
.post-taxonomy > span a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--act);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
	z-index: -1;
}
.post-taxonomy > span a:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}
.post-taxonomy > span a span,
.post-taxonomy > span a * {
	position: relative;
	z-index: 1;
	transition: color 0.3s ease;
}
.post-taxonomy > span a:hover {
	color: #fff;
}
.post-taxonomy > span a:not(:hover)::before {
	transform-origin: right;
	transform: scaleX(0);
}

/*目次*/
.toc_block .toc > ol > li:not(.previous):has(> a) > a::before {
	content: "\f105";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	color: var(--main);
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
}
.toc_block .toc > ol > li > ol > li:has(> a) > a::before {
	content: "";
	display: block;
	position: absolute;
	top: calc(1em - 2px);
	left: 0;
	width: 6px;
	height: 6px;
	background-color: var(--main);
	border-radius: 50%;
}

/*監修者*/
.articleFooter__author .caption {
	border-radius: 0;
}
.articleFooter__author .uqAuthor {
	border-radius: 0;
}

/*関連記事*/
#contents .articleFooter {
	margin-top: 70px;
}
#contents .ttl {
	width: 100%;
	padding: 10px 15px;
	margin: 0 auto 30px;
	background: var(--main);
	border: none;
	border-radius: 0;
	font-size: 16px;
	line-height: 1;
	color: #fff;
	text-align: left;
}
/* - リスト*/
.relationList {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 50px;
}
.relationList > li {
	width: calc((100% - 60px) / 3);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
.relationList > li.none {
	width: 100%;
	text-align: center;
	justify-content: center;
	align-items: center;
}
.relationList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.relationList > li > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
.relationList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
	transform-origin: center;
	transition: var(--ease);
}
.relationList > li > figure:hover img {
	filter: brightness(1.05);
	transform: translate(-50%,-50%) scale(1.05);
	transform-origin: center;
	transition: var(--ease);
}
#contents .relationList > li > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
	font-size: 13px;
	line-height: 1.5em;
	color: var(--text);
	font-weight: 500;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#contents .relationList > li > h3::before,
#contents .relationList > li > h3::after {
	display: none;
}
#contents .relationList > li > h3 a {
	font-size: 13px;
	line-height: 1.5em;
	color: var(--text);
	font-weight: 500;
	text-decoration: none;
	transition: var(--ease);
}
#contents .relationList > li > h3 a:hover {
	color: var(--main);
	transition: var(--ease);
}
.news-meta {
	width: 100%;
	padding: 0;
	margin: auto auto 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
}
.news-meta > span {
	display: inline-block;
	padding: 3px 7px;
	margin: 0;
	background: var(--main);
	font-size: 10px;
	line-height: 1;
	color: #fff;
	font-weight: 400;
}
.news-meta > time {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-family: var(--font-en);
	font-size: 12px;
	line-height: 1;
	color: var(--text);
}
.relationList > li.no-result {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: block;
	text-align: center;
}

/*前後の記事*/
.articlePager a:hover {
	background: none;
	box-shadow: none;
	color: var(--main);
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 480px){
	/*タイトル*/
	#contents .articleHeader__title {
		margin: 0 auto 1em;
		font-size: 5vw;
	}
	/*ヘッダー*/
	.articleHeader {
		padding: 0 0 30px;
		margin: 0 auto 30px;
	}
	#contents .toc_block {
		margin: 30px auto;
	}

	/*関連記事*/
	#contents .ttl {
		width: 100%;
		padding: 10px 15px;
		margin: 0 auto 1.5em;
		background: var(--main);
		border: none;
		border-radius: 0;
		font-size: 16px;
		line-height: 1;
		color: #fff;
		text-align: left;
	}
	/* - リスト*/
	.relationList {
		column-gap: 20px;
		grid-row-gap: 30px;
	}
	.relationList > li {
		width: calc((100% - 20px) / 2);
		grid-row-gap: 10px;
	}
	#contents .relationList > li > h3 {
		font-size: 12px;
		line-height: 1.5em;
	}
	#contents .relationList > li > h3 a {
		font-size: 12px;
		line-height: 1.5em;
	}
}


/************************************************************/
/*　トップページ コンセプト
/************************************************************/
#topConcept {
	width: 100%;
	padding: 100px 50px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#topConcept::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background-image: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 30%, rgba(255,255,255,0) 100%);
}
#topConcept::after {
	content: '';
	display: block;
	width: 70%;
	height: 100%;
	background-image: url('https://e-tec.company/wp-content/uploads/topConcept_bg.webp');
	background-repeat: no-repeat;
	background-position: center right;
	background-size: cover;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -2;
}
.topConcept_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
#contents .topConcept_wrap > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	border: none;
	background: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#contents .topConcept_wrap > h2 > span {
	display: inline-block;
	width: fit-content;
	padding: 10px 15px;
	margin: 0;
	background: var(--grad);
	font-size: 40px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
}
#contents .topConcept_wrap > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 18px;
	line-height: 2;
	font-weight: 500;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}


/************************************************************/
/*　トップページ　お悩み
/************************************************************/
#topWorry {
	width: 100%;
	padding: 80px 0 20px;
	margin: 0 auto;
	background: var(--grad);
	position: relative;
	z-index: 0;
}
#topWorry::before {
	content: '';
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 2000 / 1333;
	background-image: url('https://e-tec.company/wp-content/uploads/topWarry_bg.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.2;
}
#topWorry > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	text-align: center;
}
#topWorry > header > em {
	display: block;
	width: fit-content;
	padding: 10px 30px 12px;
	margin: 0 auto 20px;
	background: var(--act);
	border: 3px solid #fff;
	font-size: 25px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
	font-style: normal;
	text-align: center;
	border-radius: 40px;
}
#topWorry > header > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
	font-size: 60px;
	line-height: 1.4em;
	text-align: center;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 20px;
}
#topWorry > header > h2::before,
#topWorry > header > h2::after {
	content: '';
	display: block;
	width: auto;
	height: 145px;
	aspect-ratio: 90 / 144;
	background-image: url('https://e-tec.company/wp-content/uploads/serif.svg');
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center;
}
#topWorry > header > h2::after {
	transform: scale(-1,1);
}
#topWorry > header > h2 strong {
	color: var(--yellow);
	position: relative;
	display: inline-block;
}
#topWorry > header > h2 strong::after {
	content: '';
	display: block;
	width: 100%;
	height: 5px;
	background-image: url('https://e-tec.company/wp-content/uploads/wave.svg');
	background-size: auto 100%;
	background-position: left center;
	background-repeat: repeat-x;
}
/*悩みリスト*/
.worryList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 20px;
}
.worryList > li {
	width: calc((100% - 20px) / 2);
	padding: 20px 15px;
	margin: 0;
	background: rgba(64,122,70,0.5);
	border-radius: 10px;
	font-size: 22px;
	line-height: 1.4em;
	font-weight: 900;
	color: #fff;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	column-gap: 10px;
	border: 1px solid rgba(255,255,255,0.5);
}
.worryList > li::before {
	content: '\f058';
	display: inline-block;
	font-family: var(--font-awe);
	font-size: 22px;
	font-weight: 900;
	color: #fff;
}

/*お悩みケース*/
.worryCase {
	width: 100%;
	max-width: 1200px;
	padding: 30px;
	margin: 0 auto 20px;
	background: #fff;
	border-radius: 20px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
.worryCase > li {
	width: calc((100% - 60px) / 3);
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
	z-index: 0;
}
.worryCase > li::before {
	content: '';
	display: block;
	width: 100%;
	height: 80px;
	background-image: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0.9;
	z-index: 1;
}
.worryCase > li > figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.worryCase > li > figure::before {
	content: '';
	display: block;
	padding-top: 75%;
}
.worryCase > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#contents .worryCase > li > h3 {
	width: 100%;
	padding: 15px 10px;
	margin: 0;
	border: none;
	background: none;
	font-size: 25px;
	line-height: 1.2em;
	color: #fff;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
}
#contents .worryCase > li > h3::before,
#contents .worryCase > li > h3::after {
	display: none;
}
#topWorry > p {
	padding: 0;
	margin: 0 auto;
	position: relative;
	color: #fff;
	font-weight: 900;
	text-align: center;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topWorry {
		width: 100%;
		padding: 30px 20px;
	}
	#topWorry::before {
		background-image: url('https://e-tec.company/wp-content/uploads/topWarry_bg_sp.webp');
	}
	#topWorry > header {
		width: 100%;
		margin: 0 auto 15px;
	}
	#topWorry > header > em {
		display: block;
		width: fit-content;
		padding: 7px 15px 10px;
		margin: 0 auto 10px;
		border: 2px solid #fff;
		font-size: 3.5vw;
		border-radius: 40px;
		white-space: nowrap;
	}
	#topWorry > header > h2 {
		width: 100%;
		font-size: 25px;
		column-gap: 10px;
		align-items: flex-end;
		white-space: nowrap;
	}
	#topWorry > header > h2::before,
	#topWorry > header > h2::after {
		height: 50px;
	}
	#topWorry > header > h2 strong::after {
		height: 3px;
	}
	/*悩みリスト*/
	.worryList {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 15px;
		column-gap: 0;
		grid-row-gap: 10px;
	}
	.worryList > li {
		width: 100%;
		padding: 15px 10px;
		font-size: 13px;
	}
	.worryList > li::before {
		width: 15px;
		height: 15px;
		min-width: 15px;
		top: 0.1em;
	}

	/*お悩みケース*/
	.worryCase {
		width: 100%;
		max-width: 100%;
		padding: 15px;
		margin: 0 auto 10px;
		column-gap: 15px;
		grid-row-gap: 15px;
	}
	.worryCase > li {
		width: calc((100% - 15px) / 2);
	}
	.worryCase > li::before {
		width: 100%;
		height: 50px;
	}
	.worryCase > li > h3 {
		width: 100%;
		padding: 10px;
		font-size: 10px;
	}
	#topWorry > p {
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
		font-size: 12px;
		font-weight: 700;
	}
}


/************************************************************/
/*　トップページ　解決
/************************************************************/
#topSolution {
	width: 100%;
	padding: 120px 0 100px;
	margin: 0 auto;
	background-color: var(--base);
	position: relative;
	z-index: 0;
}
#topSolution::before {
	content: '';
	display: block;
	width: 100%;
	height: 70px;
	background: var(--grad);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
}
#topSolution::after {
	content: '';
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 2000 / 923;
	background-image: url('https://e-tec.company/wp-content/uploads/topSolution_bg.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
	opacity: 0.5;
}
#topSolution > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	text-align: center;
}
#topSolution > header > em {
	display: block;
	width: fit-content;
	padding: 10px 30px 12px;
	margin: 0 auto 20px;
	background: var(--act);
	border: 3px solid #fff;
	font-size: 25px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
	font-style: normal;
	text-align: center;
	border-radius: 40px;
}
#topSolution > header > h2 {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
}
#topSolution > header > h2 img {
	width: 100%;
	height: auto;
}
.topSolution_box {
	width: 100%;
	max-width: 1200px;
	padding: 40px;
	margin: 0 auto;
	background: #fff;
	border-radius: 20px;
	filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
	position: relative;
}
.topSolution_box::before {
	content: '';
	display: block;
	width: 220px;
	height: auto;
	aspect-ratio: 503 / 710;
	background-image: url('https://e-tec.company/wp-content/uploads/topSolution_human.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center bottom;
	position: absolute;
	bottom: -12px;
	right: -15px;
	z-index: 2;
}
/*資格*/
.qualiList {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: baseline;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
}
.qualiList > li {
	width: calc((100% - 40px) / 5);
	padding: 0;
	margin: 0;
	position: relative;
}
.qualiList > li img {
	width: 100%;
	height: auto;
}
/*解決*/
.solutionList {
	width: 85%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
}
.solutionList > li {
	width: 100%;
	padding: 15px 0;
	margin: 0 auto;
	position: relative;
	border-bottom: 1px dashed #b7b7b7;
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
}
#contents .solutionList > li h3 {
	width: 100%;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
	column-gap: 10px;
	font-size: 20px;
	line-height: 1.7em;
	font-weight: 700;
	color: var(--text);
	position: relative;
	background: none;
	border: none;
}
#contents .solutionList > li h3::before {
	content: '\f058';
	display: inline-block;
	font-family: var(--font-awe);
	font-size: 20px;
	font-weight: 900;
	color: crimson;
	position: relative;
	top: unset;
	bottom: unset;
	left: unset;
	right: unset;
	border: none;
	background: none;
	width: auto;
	height: auto;
}
#contents .solutionList > li h3::after {
	display: none;
}
.solutionList > li > p {
	width: 100%;
	font-size: 15px;
	line-height: 1.7em;
	font-weight: 500;
	color: var(--text);
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
.solutionList > li > p strong {
	display: inline;
	background-image: linear-gradient(#ffee72, #ffee72);
	background-size: 100% 0.7em;
	background-repeat: no-repeat;
	background-position: 0 100%;
	padding-bottom: 0.05em;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone; /* Safari / iOS 対応 */
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topSolution {
		width: 100%;
		padding: 120px 0 30px;
	}
	#topSolution::before {
		height: 30px;
		top: -0.5px;
	}
	#topSolution::after {
		background-image: url('https://e-tec.company/wp-content/uploads/topSolution_bg_sp.webp');
	}
	#topSolution > header {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		position: relative;
		text-align: center;
	}
	#topSolution > header > em {
		padding: 7px 15px 10px;
		margin: 0 auto 10px;
		border: 2px solid #fff;
		font-size: 14px;
	}
	#topSolution > header > h2 {
		width: calc(100% - 40px);
		max-width: 100%;
	}
	.topSolution_box {
		width: calc(100% - 40px);
		max-width: 100%;
		padding: 20px;
	}
	.topSolution_box::before {
		display: none;
	}
	/*資格*/
	.qualiList {
		margin: 0 auto 10px;
	}
	/*解決*/
	.solutionList {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		list-style: none;
	}
	.solutionList > li {
		width: 100%;
		padding: 15px 0;
		column-gap: 10px;
		font-size: 12px;
	}
	.solutionList > li::before {
		width: 12px;
		height: 12px;
		min-width: 12px;
		top: 0.1em;
	}
	.solutionList > li > p {
		font-size: 15px;
	}
}


/************************************************************/
/*　トップページ　選ばれる理由
/************************************************************/
#topReason {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	background: var(--grad);
	position: relative;
	z-index: 0;
}
#topReason > header {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#topReason > header > span {
	width: fit-content;
	padding: 0;
	margin: 0 auto;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
}
#contents #topReason > header > h2 {
	width: fit-content;
	padding: 13px 20px 15px;
	margin: 0 auto;
	position: relative;
	border: none;
	border-radius: 0;
	background: #fff;
	font-size: 40px;
	line-height: 1;
	font-weight: 700;
	color: var(--main);
}
/*リスト*/
.reasonList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
}
.reasonList > li {
	width: 100%;
	padding: 50px;
	margin: 0 auto;
	position: relative;
	background: var(--base);
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
}
.reasonList_box {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	column-gap: 50px;
}
.reasonList > li:nth-child(even) {
	background: #fff;
}
.reasonList > li:nth-child(even) .reasonList_box {
	flex-direction: row-reverse;
}
.reasonList_box > figure {
	width: 400px;
	min-width: 400px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
}
.reasonList_box > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
.reasonList_box > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.reasonList_info {
	width: calc(100% - 50px - 400px);
	padding: 0;
	margin: 0;
	position: relative;
}
.reasonList_info > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 15px;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
}
.reasonList_info > header > em {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	min-width: 60px;
	border-radius: 50%;
	background: var(--grad);
	position: relative;
	font-family: var(--font-en);
	font-size: 25px;
	line-height: 1;
	font-weight: 700;
	font-style: normal;
	color: #fff;
}
#contents .reasonList_info > header > h3 {
	width: calc(100% - 10px - 60px);
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	text-align: left;
}
#contents .reasonList_info > header > h3::before,
#contents .reasonList_info > header > h3::after {
	display: none;
}
#contents .reasonList_info > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	line-height: 2;
}
/*サブ*/
.reasonList > li > dl {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
.reasonList > li > dl dt {
	width: 100%;
	padding: 15px 20px;
	margin: 0;
	background: var(--act);
	text-align: center;
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
}
.reasonList > li > dl dd {
	padding: 25px 30px;
	margin: 0 auto;
	position: relative;
	border: 2px solid var(--act);
	border-top: none;
	background: #fff;
}
.reasonList > li > dl dd > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*さらに*/
.reasonList > li:last-child {
	padding: 100px 50px;
	z-index: 0;
}
.reasonList > li:last-child::before {
	content: '';
	display: block;
	width: 50px;
	height: 50px;
	background: var(--base);
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
	clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.reasonList > li:last-child::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url('https://e-tec.company/wp-content/uploads/object_bg_1.svg');
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	transform: scale(1,-1);
	z-index: -1;
	opacity: 0.3;
}
.reasonList_ex {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#contents .reasonList_ex > h3 {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	width: fit-content;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	border: none;
	background: none;
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	color: var(--act);
	text-align: center;
}
#contents .reasonList_ex > h3::before,
#contents .reasonList_ex > h3::after {
	content: '';
	display: block;
	width: 2px;
	height: 25px;
	border-radius: 2px;
	background: var(--act);
	transform: rotate(-15deg);
	transform-origin: center;
	position: relative;
	top: unset;
	bottom: unset;
	left: unset;
	right: unset;
}
#contents .reasonList_ex > h3::after {
	transform: rotate(15deg);
	transform-origin: center;
}
#contents .reasonList_ex > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	border: none;
	background: none;
	position: relative;
	text-align: center;
	font-size: 30px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
}
#contents .reasonList_ex > p {
	padding: 0;
	margin: 0;
	text-align: center;
}

/************************************************************/
/*　トップページ　料金表
/************************************************************/
#topPrice {
	width: 100%;
	padding: 100px 0 100px;
	margin: 0 auto;
	background: var(--sub);
	position: relative;
	z-index: 0;
}
#topPrice > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	border: none;
	background: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
#contents #topPrice > header > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 40px;
	line-height: 1.4em;
	font-weight: 700;
	color: #fff;
	text-align: center;
}
#contents #topPrice > header > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	line-height: 2;
	color: #e2cf94;
	text-align: center;
}
/*リスト*/
.pricePlan {
	width: 100%;
	max-width: 1200px;
	min-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 30px;
}
.pricePlan > li {
	width: calc((100% - 60px) / 3);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	grid-row-gap: 15px;
}
.pricePlan > li > figure {
	width: 150px;
	min-width: 150px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	aspect-ratio: 1 / 1;
}
.pricePlan > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.pricePlan > li > figure > span {
	display: inline-block;
	width: fit-content;
	padding: 7px 12px;
	margin: 0;
	background: var(--main);
	font-size: 15px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.pricePlan > li > dl {
	width: calc(100% - 150px);
	padding: 15px;
	margin: 0;
	background: #fefdee;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	grid-row-gap: 10px;
}
.pricePlan > li > dl dt {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 18px;
	line-height: 1.2em;
	font-weight: 700;
	text-align: center;
	color: var(--sub);
}
.pricePlan > li > dl dd {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
}
.pricePlan .year {
	width: fit-content;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	padding: 0 25px;
}
.pricePlan .year::before {
	content: '';
	display: block;
	width: 20px;
	height: auto;
	aspect-ratio: 513 / 974;
	background-image: url('https://e-tec.company/wp-content/uploads/award_grass.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
}
.pricePlan .year::after {
	content: '';
	display: block;
	width: 20px;
	height: auto;
	aspect-ratio: 513 / 974;
	background-image: url('https://e-tec.company/wp-content/uploads/award_grass.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%) scale(-1,1);
}
.pricePlan .year span {
	display: inline-block;
	font-size: 10px;
	line-height: 1.2em;
	font-weight: 400;
	font-family: var(--font-mincho);
	color: var(--text);
	white-space: nowrap;
}
.pricePlan .year em {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-family: var(--font-mincho);
	font-size: 28px;
	line-height: 1;
	font-weight: 500;
	color: var(--text);
	font-style: normal;
	top: 0.1em;
	position: relative;
	white-space: nowrap;
}
.pricePlan .year small {
	display: inline-block;
	font-size: 23px;
	line-height: 1em;
	font-weight: 400;
	font-family: var(--font-mincho);
	color: var(--text);
	white-space: nowrap;
}
.pricePlan .price {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	column-gap: 5px;
	padding: 0;
}
.pricePlan .price > strong {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 45px;
	line-height: 1;
	font-weight: 700;
	color: #d75000;
	position: relative;
	top: 5px;
}
.pricePlan .price > span {
	display: inline-flex;
	flex-direction: column;
	grid-row-gap: 3px;
	justify-content: center;
	align-items: center;
	width: fit-content;
	padding: 0;
	margin: 0;
	font-size: 15px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	white-space: nowrap;
}
.pricePlan .price > span small {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: 11px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	white-space: nowrap;
}
.pricePlan > li > p {
	width: 100%;
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 14px;
	line-height: 1.7em;
	color: #fff;
	font-weight: 400;
}

/************************************************************/
/*　トップページ　製品
/************************************************************/
#topProduct {
	width: 100%;
	padding: 0 0 100px;
	margin: 0 auto;
	background: var(--sub);
	position: relative;
	z-index: 0;
}
.productBox {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
}
.productBox dt {
	width: 100%;
	padding: 15px;
	margin: 0 auto;
	background: var(--act);
	position: relative;
}
#contents .productBox dt > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	position: relative;
	background: none;
	border: none;
	font-size: 30px;
	line-height: 1.4em;
	font-weight: 700;
	color: #fff;
}
.productBox dd {
	width: 100%;
	padding: 50px;
	margin: 0 auto;
	position: relative;
	background: #fff;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	column-gap: 50px;
	grid-row-gap: 30px;
}
.productBox dd > figure {
	width: 400px;
	min-width: 400px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.productBox dd > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
.productBox dd > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.productBox_info {
	width: calc(100% - 50px - 400px);
	padding: 0;
	margin: 0;
	position: relative;
}
.productBox_info > p {
	width: 100%;
	padding: 0;
	margin: 0 auto 1em;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
.productBox_info > p:last-of-type {
	margin-bottom: 0;
}
#contents .productBox dd > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
	font-size: 20px;
	line-height: 1.5em;
	font-weight: 700;
	color: var(--sub);
	text-align: center;
}
#contents .productBox dd > h3::before,
#contents .productBox dd > h3::after {
	display: none;
}
#contents .productBox dd > h4 {
	width: 100%;
	padding: 10px 20px;
	margin: 0 auto;
	border: none;
	background: #e2cf94;
	position: relative;
	font-size: 17px;
	line-height: 1.5em;
	font-weight: 700;
	color: var(--text);
	text-align: left;
}
#contents .productBox dd > h4::before,
#contents .productBox dd > h4::after {
	display: none;
}
/*リスト*/
.checkList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 10px;
}
.checkList > li {
	padding: 0;
	margin: 0;
	width: calc((100% - 40px) / 3);
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 5px;
	font-size: 18px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
}
.checkList > li::before {
	content: '\f14a';
	display: inline-block;
	font-family: var(--font-awe);
	font-size: 22px;
	line-height: 1.4em;
	font-weight: 900;
	color: var(--main);
}

/************************************************************/
/*　トップページ　保証
/************************************************************/
#topWarranty {
	width: 100%;
	padding: 100px 0 100px;
	margin: 0 auto;
	background-image: var(--grad);
	position: relative;
	z-index: 0;
	border-top: 5px solid #fff;
}
#topWarranty::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url('https://e-tec.company/wp-content/uploads/object_bg_3.svg');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.2;
}
#topWarranty > header {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 30px;
}
#topWarranty > header > span {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 5px;
	width: 150px;
	min-width: 150px;
	height: auto;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background: var(--act);
	transform: rotate(-10deg);
	transform-origin: center;
}
#topWarranty > header > span > em {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-align: center;
	font-style: normal;
}
#topWarranty > header > span > strong {
	font-size: 50px;
	font-family: var(--font-en);
	font-size: 60px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
}
#topWarranty > header > span > small {
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-align: center;
	font-style: normal;
}
#contents #topWarranty > header > h2 {
	width: fit-content;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	font-size: 50px;
	line-height: 1.4em;
	font-weight: 700;
	color: #fff;
	text-align: left;
}

.topWarranty_wrap {
	width: 100%;
	padding: 30px 0 0;
	margin: 0 auto;
	position: relative;
}
.topWarranty_wrap > figure {
	width: calc(50%);
	height: auto;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 0 20px 20px 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.topWarranty_wrap > figure::before {
	content: '';
	display: block;
	padding-top: 500px;
}
.topWarranty_wrap > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.topWarranty_box {
	width: 100%;
	max-width: 1200px;
	padding: 50px 70px 50px 670px;
	margin: 0 auto;
	border-radius: 20px;
	background: #fff;
	position: relative;
	filter: var(--shade);
}
#contents .topWarranty_box > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	border: none;
	background: none;
	font-size: 18px;
	line-height: 1.7em;
	font-weight: 700;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#contents .topWarranty_box > h3::before,
#contents .topWarranty_box > h3::after {
	display: none;
}
.topWarranty_box > p {
	width: 100%;
	padding: 0;
	margin: 0 auto 1em;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}


/************************************************************/
/*　トップページ　施工実績
/************************************************************/
#topWorks {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	background-color: #fff;
	position: relative;
	z-index: 0;
}
#topWorks::before {
	content: '';
	display: block;
	width: 100%;
	height: 150px;
	background-image: var(--grad);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
}
#topWorks::after {
	content: '';
	display: block;
	width: 100%;
	height: 130px;
	background: #fff;
	position: absolute;
	top: 20.5px;
	left: 0;
	z-index: -1;
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.topWorks_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	column-gap: 40px;
}
.topWorks_wrap.sub {
	padding: 100px 0;
}
.works-sidebar {
	width: 300px;
	min-width: 300px;
	padding: 25px;
	margin: 0;
	background: var(--main);
	border-radius: 20px;
	position: sticky;
	top: 200px;
	left: 0;
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
}
.topWorks_content {
	width: calc(100% - 40px - 300px);
	padding: 0;
	margin: 0;
	position: relative;
}
/*サイドバー*/
.asideBox {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#contents .asideBox > h2 {
	width: 100%;
	padding: 0 0 10px;
	margin: 0 auto 10px;
	position: relative;
	border: none;
	background: none;
	border-radius: 0;
	border-bottom: 1px solid #fff;
	font-size: 20px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
}
#contents .asideBox > h2::before,
#contents .asideBox > h2::after {
	display: none;
}
/*== スマホ対応 ==*/
@media only screen and (max-width: 768px){
	#topWorks {
		width: 100%;
		padding: 50px 0;
	}
	#topWorks::before {
		height: 50px;
		opacity: 0.8;
		top: -0.4px;
	}
	#topWorks::after {
		width: 100%;
		height: 40px;
		top: 10.5px;
		left: 0;
	}
	.topWorks_wrap {
		width: calc(100% - 40px);
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 30px;
	}
	.topWorks_wrap.sub {
		padding: 40px 0;
	}
	.works-sidebar {
		width: 100%;
		min-width: 100%;
		padding: 20px;
		position: relative;
		top: unset;
		left: unset;
		grid-row-gap: 20px;
		order: 1;
	}
	.topWorks_content {
		width: 100%;
	}
	/*サイドバー*/
	#contents .asideBox > h2 {
		width: 100%;
		padding: 0 0 10px;
		margin: 0 auto 10px;
		font-size: 18px;
	}
}

/* - カテゴリ一覧 */
.works-child-categories {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
.works-child-categories > li {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	line-height: 1;
}
.works-child-categories > li > a {
	font-size: 15px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 5px;
}
.works-child-categories > li > a .cat-count {
	display: inline-block;
	padding: 4px 10px 5px;
	margin: 0;
	font-size: 0.8rem;
	line-height: 1;
	color: var(--main);
	background: #fff;
	border-radius: 20px;
	position: relative;
	top: 1px;
}
.works-child-categories > li > a:hover {
	color: #fff;
	text-decoration: underline;
	transition: var(--ease);
}

/*タグ*/
.area-child-tags {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 5px;
	grid-row-gap: 5px;
}
.area-child-tags > li {
	display: inline-block;
	padding: 0;
	margin: 0;
	position: relative;
}
.area-child-tags > li > a {
	display: inline-block;
	padding: 5px 12px 6px;
	margin: 0;
	font-size: 11px;
	line-height: 1;
	font-weight: 500;
	color: var(--main);
	cursor: pointer;
	background: #fff;
	border: 1px solid var(--main);
	border-radius: 22px;
	position: relative;
	transition: var(--ease);
}
.area-child-tags > li > a:hover {
	opacity: 0.8;
	transition: var(--ease);
}
/*more*/
.aside_more {
	padding: 0;
	margin: 0;
	text-align: left;
}
.aside_more > a {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	font-size: 15px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
.aside_more > a::before {
	content: '\f138';
	display: inline;
	font-family: "Font Awesome 6 Free";
	font-size: 18px;
	color: #fff;
	font-weight: 900;
}
.aside_more > a:hover {
	opacity: 0.8;
	transition: var(--ease);
}

/*カテゴリタブ*/
#category-buttons {
	width: 100%;
	padding: 0;
	margin: 0 auto 40px;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
}
.cat-btn {
	display: inline-block;
	padding: 7px 14px;
	margin: 0;
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	color: var(--main);
	cursor: pointer;
	background: #fff;
	border: 1px solid var(--main);
	border-radius: 5px;
	position: relative;
	transition: var(--ease);
	outline: none;
}
.cat-btn:hover,
.cat-btn.active {
	outline: none;
	color: #fff;
	background: var(--main);
	transition: var(--ease);
}
/*== スマホ対応 ==*/
@media only screen and (max-width: 768px){
	/*カテゴリタブ*/
	#category-buttons {
		width: 100%;
		margin: 0 auto 20px;
		column-gap: 5px;
		grid-row-gap: 5px;
	}
	.cat-btn {
		display: inline-block;
		padding: 5px 10px;
		font-size: 11px;
	}
}

/*リスト*/
.worksList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
}
.worksList > li {
	width: 100%;
	padding: 30px;
	margin: 0 auto;
	position: relative;
	background: var(--base);
	border: 1px solid #eee;
	border-radius: 20px;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	grid-row-gap: 30px;
	grid-row-gap: 20px;
}
.worksList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	cursor: pointer;
}
/*タイトル*/
#contents .worksList > li > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--main);
	transition: var(--ease);
}
#contents .worksList > li:hover > h3 {
	color: var(--act);
	transition: var(--ease);
}
#contents .worksList > li > h3::before,
#contents .worksList > li > h3::after {
	display: none;
}
.worksList > li > .worksList_images {
	width: 300px;
	min-width: 300px;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
.worksList > li > .worksList_images > figure {
	width: 100%;
	min-width: 100%;
	padding: 0;
	margin: 0;
	overflow: hidden;
	text-align: center;
	position: relative;
}
.worksList > li > .worksList_images > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
.worksList > li > .worksList_images > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
/*サムネイル*/
.worksList_thumb {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	column-gap: 10px;
}
.worksList_thumb > li {
	width: calc((100% - 20px) / 3);
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.worksList_thumb > li::before {
	content: '';
	display: block;
	padding-top: 65%;
}
.worksList_thumb > li img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
/*情報*/
.worksList_data {
	width: calc(100% - 30px - 300px);
	padding: 0;
	margin: 0;
	position: relative;
}
.worksList_data dl {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
}
.worksList_data dl dt {
	width: 120px;
	min-width: 120px;
	padding: 10px 0;
	margin: 0;
	background: none;
	border: none;
	border-bottom: 1px solid #dee5ec;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
}
.worksList_data dl dt i {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 19px;
	height: 19px;
}
.worksList_data dl dd {
	width: calc(100% - 100px);
	padding: 10px;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 14px;
	line-height: 1.4em;
	font-weight: lighter;
	color: var(--text);
	border-bottom: 1px solid #dee5ec;
}
.worksList_data dl:last-of-type dd {
	font-size: 12px;
	line-height: 1.7em;
	font-weight: lighter;
	color: var(--text);
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 768px){
	/*リスト*/
	.worksList {
		width: 100%;
		grid-row-gap: 20px;
	}
	.worksList > li {
		width: 100%;
		padding: 20px;
		border-radius: 10px;
		grid-row-gap: 10px;
	}
	/*タイトル*/
	#contents .worksList > li > h3 {
		width: 100%;
		font-size: 15px;
	}
	.worksList > li > .worksList_images {
		width: 100%;
		min-width: 100%;
		grid-row-gap: 10px;
	}
	/*サムネイル*/
	.worksList_thumb {
		width: 100%;
		column-gap: 10px;
	}
	.worksList_thumb > li {
		width: calc((100% - 20px) / 3);
	}
	/*情報*/
	.worksList_data {
		width: 100%;
	}
	.worksList_data dl {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
	}
	.worksList_data dl dt {
		width: 90px;
		min-width: 90px;
		padding: 10px 0;
		font-size: 12px;
	}
	.worksList_data dl dt i {
		width: 14px;
		height: 14px;
	}
	.worksList_data dl dd {
		width: calc(100% - 100px);
		padding: 10px;
		font-size: 12px;
	}
	.worksList_data dl:last-of-type dd {
		font-size: 10px;
	}
}

/*一覧ボタン*/
#category-link-wrap {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
}
#category-link-wrap.mt50 {
	margin-top: 50px;
}
#category-link-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	padding: 15px 30px;
	background: var(--main);
	border-radius: 5px;
	font-size: 16px;
	line-height: 1;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
#category-link-btn::after {
	content: '\f138';
	display: inline;
	font-family: "Font Awesome 6 Free";
	font-size: 18px;
	color: #fff;
	font-weight: 900;
}
#category-link-btn:hover {
	opacity: 0.8;
	transition: var(--ease);
}
/*== スマホ対応 ==*/
@media only screen and (max-width: 768px){
	/*一覧ボタン*/
	#category-link-wrap {
		column-gap: 5px;
		grid-row-gap: 5px;
	}
	#category-link-wrap.mt50 {
		margin-top: 20px;
	}
	#category-link-btn {
		column-gap: 10px;
		padding: 12px 20px;
		font-size: 14px;
	}
	#category-link-btn::after {
		width: 13px;
		height: 13px;
	}
}

/* ギャラリー全体 */
.custom-swiper-gallery {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0;
	margin: 100px auto 50px;
	position: relative;
}
.custom-swiper-gallery .main-swiper-container {
	flex: 1;
	position: relative;
	width: calc(70% - 10px);
}
.custom-swiper-gallery .main-swiper-container .swiper-slide {
	width: 100%;
	aspect-ratio: 3 / 2;
}
.custom-swiper-gallery .main-swiper-container .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	/*▼ブラウザの標準機能（ユーザーセレクト・青くなる仕様）を削除*/
	user-select: none; 
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	pointer-events: none;
}
/* サムネイル */
.custom-swiper-gallery .thumb-grid {
	width: 30%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(5, 1fr);
	gap: 10px;
}
.custom-swiper-gallery .thumb-btn {
	border: none;
	padding: 0;
	background: none;
	cursor: pointer;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	transition: var(--ease);
	outline: none;
}
.custom-swiper-gallery .thumb-btn img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	outline: none;
}
.custom-swiper-gallery .thumb-btn:hover,
.custom-swiper-gallery .thumb-btn.active {
	opacity: 0.8;
	outline: none;
	transition: var(--ease);
}
/*矢印*/
.swiper-button-next,
.swiper-button-prev {
	color: var(--text);
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 768px){

	/* ギャラリー全体 */
	.custom-swiper-gallery {
		flex-wrap: wrap;
		gap: 10px;
		margin: 50px auto;
	}
	.custom-swiper-gallery .main-swiper-container {
		width: 100%;
	}
	/* サムネイル */
	.custom-swiper-gallery .thumb-grid {
		width: 100%;
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 10px;
	}
	.custom-swiper-gallery .thumb-btn {
		width: calc((100% - 40px) / 5);
		aspect-ratio: 1 / 1;
	}
	/*矢印*/
	.swiper-button-next:after,
	.swiper-button-prev:after {
		font-size: 30px;
	}
}



/************************************************************/
/*　トップページ　工事の流れ
/************************************************************/
#topFlow {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	background: var(--base);
	z-index: 0;
}
#topFlow::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url('https://e-tec.company/wp-content/uploads/object_bg_1.svg');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.2;
}
#topFlow::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url('https://e-tec.company/wp-content/uploads/object_bg_2.svg');
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	opacity: 0.2;
}
.flowList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
}
.flowList > li {
	width: 100%;
	padding: 50px;
	margin: 0 auto;
	border-radius: 20px;
	background: #fff;
	filter: var(--shade);
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	column-gap: 30px;
}
.flowList > li::before {
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	position: absolute;
	top: 50px;
	left: 97px;
	border-left: 5px dotted var(--main);
}
.flowList > li:last-child::before {
	display: none;
}
.flowList > li > em {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	grid-row-gap: 5px;
	width: 100px;
	min-width: 100px;
	height: 100px;
	aspect-ratio: 1/1;
	background: var(--grad);
	border-radius: 50%;
	font-family: var(--font-en);
	font-size: 15px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	font-style: normal;
	position: relative;
	top: -20px;
}
.flowList > li > em strong {
	display: block;
	width: 100%;
	text-align: center;
	font-family: var(--font-en);
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	font-style: normal;
}
.flowList > li > figure {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	padding: 0;
	margin: 0;
	position: relative;
}
.flowList > li > figure i {
	font-size: 70px;
	line-height: 1;
	color: var(--act);
}
.flowList_info {
	width: calc(100% - 60px - 100px - 80px);
	padding: 0;
	margin: 0;
	position: relative;
}
#contents .flowList_info > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	border: none;
	background: none;
	font-size: 30px;
	line-height: 1.7em;
	font-weight: 700;
	color: var(--sub);
	text-align: left;
}
#contents .flowList_info > h3::before,
#contents .flowList_info > h3::after {
	display: none;
}
#contents .flowList_info > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}


/************************************************************/
/*　トップページ　よくある質問
/************************************************************/
#topFaq {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	background: #fff;
	position: relative;
}
/*リスト*/
.faqList {
	width: 100%;
	max-width: 850px;
	padding: 0;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	grid-row-gap: 0;
}
.faqList > dl {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background: none;
	border-radius: 20px;
}
.faqList > dl > dt {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 20px;
	flex-wrap: nowrap;
	width: 100%;
	padding: 30px 60px 30px 0;
	margin: 0 auto;
	background: none;
	border-radius: 0;
	border-bottom: 1px dotted #cfcfcf;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	position: relative;
	cursor: pointer;
	transition: var(--ease);
}
.faqList > dl > dt:hover {
	color: var(--main);
	transition: var(--ease);
}
.faqList > dl > dt.active {
	color: var(--main);
	transition: var(--ease);
}
.faqList > dl > dt::before {
	content: 'Q';
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	min-width: 35px;
	height: 35px;
	padding: 0 0 3px;
	aspect-ratio: 1/1;
	font-family: var(--font-en);
	font-size: 22px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	background: var(--grad);
	border-radius: 5px;
	transition: var(--ease);
}
.faqList > dl > dt:hover::before,
.faqList > dl > dt.active::before {
	transition: var(--ease);
}
.faqList > dl > dt span {
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	margin: 0;
	background: none;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
}
.faqList > dl > dt span::before {
	content: '';
	display: block;
	width: 20px;
	height: 3px;
	background: var(--sub);
	border-radius: 3px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform-origin: center;
	transition: var(--ease);
}
.faqList > dl > dt span::after {
	content: '';
	display: block;
	width: 20px;
	height: 3px;
	background: var(--sub);
	border-radius: 3px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(90deg);
	-webkit-transform: translate(-50%,-50%) rotate(90deg);
	transform-origin: center;
	transition: var(--ease);
}
.faqList > dl > dt.active span::after {
	transform: translate(-50%,-50%) rotate(0deg);
	-webkit-transform: translate(-50%,-50%) rotate(0deg);
	transform-origin: center;
	transition: var(--ease);
}
.faqList > dl > dt:hover span::before,
.faqList > dl > dt:hover span::after,
.faqList > dl > dt.active span::before,
.faqList > dl > dt.active span::after {
	background: var(--sub);
	transition: var(--ease);
}
.faqList > dl > dd {
	margin: 20px auto 0;
	padding: 30px;
	background: var(--base);
	font-size: 15px;
	line-height: 2;
	font-weight: 500;
	border-radius: 5px;
}
.faqList > dl > dd p {
	padding: 0;
	margin: 0 auto 10px;
	font-size: 15px;
	line-height: 2;
	font-weight: 500;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topFaq {
		width: 100%;
		padding: 30px 0;
		margin: 0 auto;
		background: #fff;
		position: relative;
		scroll-margin-top: 68px;
	}
	/*リスト*/
	.faqList {
		width: calc(100% - 40px);
		max-width: 100%;
	}
	.faqList > dl {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		background: none;
		border-radius: 20px;
	}
	.faqList > dl > dt {
		column-gap: 15px;
		width: 100%;
		padding: 15px 25px 15px 0;
		font-size: 14px;
	}
	.faqList > dl > dt::before {
		width: 25px;
		min-width: 25px;
		height: 25px;
		padding: 0 0 3px;
		font-size: 14px;
	}
	.faqList > dl > dt span {
		display: block;
		width: 10px;
		height: 10px;
	}
	.faqList > dl > dt span::before {
		content: '';
		display: block;
		width: 10px;
		height: 1px;
		border-radius: 0;
	}
	.faqList > dl > dt span::after {
		content: '';
		display: block;
		width: 10px;
		height: 1px;
		border-radius: 0;
	}
	.faqList > dl > dd {
		margin: 0 auto;
		padding: 15px 0 15px 0;
		font-size: 14px;
		line-height: 1.7em;
		font-weight: 500;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
	.faqList > dl > dd p {
		padding: 0;
		margin: 0 auto 10px;
		font-size: 14px;
		line-height: 1.7em;
		font-weight: 500;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
}



/************************************************************/
/*　トップページ　お知らせ
/************************************************************/
#topNews {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	background: #fafafa;
	position: relative;
}
#topNews > dl {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	filter: var(--shade);
}
#topNews > dl dt {
	width: 100%;
	padding: 15px 20px;
	margin: 0;
	background: var(--grad);
	text-align: center;
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
}
#topNews > dl dd {
	width: 100%;
	padding: 50px;
	margin: 0 auto;
	position: relative;
	background: #fff;
	border: 1px solid var(--main);
	border-top: none;
}
/*リスト*/
.newsList {
	width: 100%;
	max-width: 850px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
}
.newsList > li {
	width: 100%;
	padding: 30px;
	margin: 0 auto;
	position: relative;
	border-bottom: 1px solid #aaa;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 30px;
}
.newsList > li time {
	display: block;
	width: 120px;
	padding: 0;
	margin: 0;
	font-size: 14px;
	line-height: 1.4em;
	color: #aaa;
	font-weight: 500;
}
#contents .newsList > li > h3 {
	width: calc(100% - 30px - 120px);
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 500;
	color: var(--text);
	border: none;
	background: none;
}
#contents .newsList > li > h3::before,
#contents .newsList > li > h3::after {
	display: none;
}
#contents .newsList > li > h3 a {
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 500;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
}
#contents .newsList > li > h3 a:hover {
	color: var(--act);
	text-decoration: none;
	transition: var(--ease);
}
/*ボタン*/
.moreBtn {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 20px;
	padding: 0;
	margin: 0;
	list-style: none;
}
.moreBtn.mt30 {
	margin-top: 30px;
}
.moreBtn a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 7px;
	border-radius: 60px;
	padding: 17px 50px;
	margin: 0;
	background: var(--grad-full);
	position: relative;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	text-align: center;
	transition: var(--ease);
	background-size: 200% auto;
	background-position: 0% center;
	transition: var(--ease);
}
.moreBtn a:hover {
	background-position: 100% center;
	transition: var(--ease);
}


/************************************************************/
/*　お問い合わせ
/************************************************************/
.cta {
	width: 100%;
	padding: 100px 50px;
	margin: 0 auto;
	background: var(--base);
	position: relative;
}
.ctaBox_wrap {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border-radius: 10px;
	background: #fff;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	box-shadow: 2px 3px 8px rgba(20, 20, 20, 0.1);
}
.ctaBox_wrap::before {
	content: '';
	display: block;
	width: 1px;
	height: calc(100% - 160px);
	background: #dee5ec;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.ctaBox {
	width: 50%;
	padding: 80px;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
/*電話番号*/
.cta .tel {
	display: inline-flex;
	flex-direction: column;
	grid-row-gap: 10px;
	width: fit-content;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#contents .cta .tel > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	text-align: center;
}
#contents .cta .tel > h3::before,
#contents .cta .tel > h3::after {
	display: none;
}
#contents .cta .tel > a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 3px;
	font-family: var(--font-en);
	font-size: 40px;
	line-height: 1;
	color: var(--main);
	font-weight: 900;
	white-space: nowrap;
	text-decoration: none;
}
#contents .cta .tel > a::before {
	content: '\f095';
	display: inline-block;
	font-family: var(--font-awe);
	font-size: 30px;
	line-height: 1;
	font-weight: 900;
	color: var(--main);
}
#contents .cta .tel > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align-last: center;
	font-size: 14px;
	line-height: 1;
	font-weight: 400;
	color: var(--text);
	white-space: nowrap;
}
/*ボタン*/
.ctaContact {
	display: inline-flex;
	flex-direction: column;
	grid-row-gap: 15px;
	width: fit-content;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#contents .ctaContact > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	text-align: center;
}
#contents .ctaContact > h3::before,
#contents .ctaContact > h3::after {
	display: none;
}
.ctaContact > a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 7px;
	padding: 17px 30px;
	margin: 0;
	background: var(--grad-full);
	border-radius: 50px;
	position: relative;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	text-align: center;
	transition: var(--ease);
	background-size: 200% auto;
	background-position: 0% center;
	transition: var(--ease);
}
.ctaContact > a::before {
	content: '\f0e0';
	display: inline-block;
	font-family: var(--font-awe);
	font-size: 20px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
}
.ctaContact > a:hover {
	background-position: 100% center;
	transition: var(--ease);
}

#contents .cta > p {
	width: 100%;
	max-width: 900px;
	padding: 0;
	margin: 50px auto 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}

/*== スマホ対応 ==*/
@media only screen and (max-width: 768px){
	.cta {
		width: 100%;
		padding: 40px 20px;
	}
	.ctaBox_wrap {
		width: 100%;
		max-width: 100%;
	}
	.ctaBox_wrap::before {
		display: none;
	}
	.ctaBox {
		width: 100%;
		padding: 20px;
		border-bottom: 1px solid #dee5ec;
	}
	.ctaBox:last-of-type {
		border-bottom: none;
	}
	/*電話番号*/
	#contents .cta .tel {
		grid-row-gap: 10px;
	}
	#contents .cta .tel > h3 {
		font-size: 16px;
	}
	#contents .cta .tel > a {
		font-size: 8vw;
	}
	#contents .cta .tel > a::before {
		height: 20px;
		font-size: 23px;
	}
	#contents .cta .tel > p {
		font-size: 14px;
	}
	/*ボタン*/
	.ctaContact {
		grid-row-gap: 15px;
	}
	#contents .ctaContact > h3 {
		font-size: 16px;
	}
	.ctaContact > a {
		column-gap: 10px;
		padding: 15px 20px;
		font-size: 16px;
	}

	#contents .cta > p {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 20px auto 0;
	}
}


/************************************************************/
/*　事例詳細
/************************************************************/
.single_works {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	grid-row-gap: 30px;
	grid-row-gap: 20px;
}
#contents .single_works > h3::before,
#contents .single_works > h3::after {
	display: none;
}
.single_works > figure {
	width: 400px;
	min-width: 400px;
	padding: 0;
	margin: 0;
	border-radius: 10px;
	overflow: hidden;
	text-align: center;
	position: relative;
}
.single_works > figure::before {
	content: '';
	display: block;
	padding-top: 75%;
}
.single_works > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
/*情報*/
.single_works_data {
	width: calc(100% - 30px - 400px);
	padding: 0;
	margin: 0;
	position: relative;
}
.single_works_data dl {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
}
.single_works_data dl dt {
	width: 120px;
	min-width: 120px;
	padding: 10px 0;
	margin: 0;
	background: none;
	border: none;
	border-bottom: 1px solid #dee5ec;
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
	column-gap: 10px;
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
}
.single_works_data dl dt i {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 19px;
	height: 19px;
}
.single_works_data dl dd {
	width: calc(100% - 100px);
	padding: 10px;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 14px;
	line-height: 1.4em;
	font-weight: lighter;
	color: var(--text);
	border-bottom: 1px solid #dee5ec;
}
.single_works_data dl:last-of-type dd {
	font-size: 12px;
	line-height: 1.7em;
	font-weight: lighter;
	color: var(--text);
}
/*== スマホ対応 ==*/
@media only screen and (max-width: 768px){
	.single_works {
		width: 100%;
		grid-row-gap: 10px;
	}
	.single_works > figure {
		width: 100%;
		min-width: 100%;
	}
	/*情報*/
	.single_works_data {
		width: 100%;
	}
	.single_works_data dl {
		width: 100%;
	}
	.single_works_data dl dt {
		width: 100px;
		min-width: 100px;
		padding: 10px 0;
		font-size: 12px;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
	.single_works_data dl dt i {
		width: 14px;
		height: 14px;
	}
	.single_works_data dl dd {
		width: calc(100% - 100px);
		padding: 10px;
		font-size: 12px;
	}
	.single_works_data dl:last-of-type dd {
		font-size: 10px;
	}
}

