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

/************************************************************/
/*　リセット
/************************************************************/
:root {
	--main: #d80519;
	--yellow: #ffeb14;
	--text: #000;
	--line: #5ac263;
	--gradient: linear-gradient(to right, #fa7d14 0%, #d80519 50%, #91000a 100%);
	--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: "Lato", sans-serif;
	--ease: all 0.3s ease;
}
*: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: #fff9e6;
}


/*フォント*/
body,
p {
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
}
@media screen and (max-width: 768px){
	body,
	p {
		font-size: 14px;
		font-weight: 500;
		line-height: 2;
	}
}

/*フォーム*/
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; }
}

/************************************************************/
/*　構成
/************************************************************/
#contents {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
}
body#main #contents {
	padding: 0;
}
.full-container,
.full-container .main {
	width: 100%;
	max-width: 100%;
}
body#main .articleBody {
	margin: 0 auto;
}

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

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

/************************************************************/
/*　タイトル
/************************************************************/
#contents .contHead {
	width: 100%;
	padding: 40px 0 30px;
	margin: 0 auto 50px;
	position: relative;
	background-image: var(--gradient);
	border-top: 5px solid #fff;
}
#contents .contHead::after {
	content: '';
	display: block;
	width: 30px;
	height: 20px;
	background: #d80519;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	position: absolute;
	bottom: -19px;
	left: 50%;
	transform: translate(-50%,0);
}
#contents .contHead > h2 {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
	font-size: 40px;
	line-height: 1.4em;
	font-weight: 900;
	color: #fff;
	text-align: center;
}
#contents .contHead > h2 strong {
	position: relative;
	display: inline-block;
	z-index: 1;
}
#contents .contHead > h2 strong::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 0.5em;
	background: var(--yellow);
	z-index: -1;
	opacity: 0.6;
}
#contents .contHead > h2 small {
	display: block;
	width: fit-content;
	font-size: 0.7em;
	line-height: 1;
	position: relative;
	margin: 0 auto;
	z-index: 0;
}
#contents .contHead > h2 small::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 100%;
	height: 0.5em;
	background: var(--yellow);
	z-index: -1;
	opacity: 0.6;
}
#contents .contHead > span {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	height: 50px;
	padding: 10px 30px;
	margin: 0;
	background: #fff;
	font-family: var(--font-en);
	font-size: 30px;
	line-height: 1;
	font-weight: 900;
	color: var(--text);
	clip-path: polygon(5% 0, 100% 0%, 95% 100%, 0% 100%);
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translate(-50%,0);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#contents .contHead {
		width: 100%;
		padding: 20px 0 15px;
		margin: 0 auto 30px;
	}
	#contents .contHead::after {
		width: 15px;
		height: 10px;
		bottom: -9px;
	}
	#contents .contHead > h2 {
		width: 100%;
		max-width: 100%;
		font-size: 4.5vw;
	}
	#contents .contHead > h2 small {
		font-size: 0.7em;
	}
	#contents .contHead > span {
		height: 30px;
		padding: 7px 20px;
		font-size: 15px;
		top: -15px;
	}
}

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

.page-top-breadcrumbs {
	width: 100%;
	padding: 30px 0 10px;
	margin: 0 auto;
}

/************************************************************/
/*　ヘッダー
/************************************************************/
#header,
.header-fix {
	width: 100%;
	min-width: 1300px;
	padding: 15px 30px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 20px;
	background: var(--yellow);
	z-index: 100;
}
.header-fix {
	position: fixed;
	top: 0;
	left: 0;
	background: var(--yellow);
	box-shadow: none;
}
#header .logo,
.header-fix .logo {
	width: auto;
	min-width: auto;
	height: 50px;
	aspect-ratio: 451 / 196;
	padding: 0;
	margin: 0;
}
#header .logo .siteInfo__title,
.header-fix .logo .siteInfo__title {
	height: 100%;
}
#header .logo .siteInfo__title img,
.header-fix .logo .siteInfo__title img {
	width: auto;
	height: 100%;
}

/*コピー*/
#header .copy,
.header-fix .copy {
	width: auto;
	min-width: auto;
	height: 50px;
	aspect-ratio: 400 / 175;
	padding: 0;
	margin: 0 auto 0 0;
}
#header .copy img,
.header-fix .copy img {
	width: auto;
	height: 100%;
}

/*スタッフ*/
#header .staff,
.header-fix .staff {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 0;
}
#header .staff img,
.header-fix .staff img {
	width: auto;
	height: 50px;
	aspect-ratio: 151 / 139;
}
#header .staff p,
.header-fix .staff p {
	padding: 0;
	margin: 0;
	font-size: 13px;
	line-height: 1.2em;
	font-weight: bold;
	text-align: center;
	color: var(--text);
}

/*電話*/
#header .tel,
.header-fix .tel {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: column;
	grid-row-gap: 5px;
}
#header .tel a,
.header-fix .tel a {
	display: inline-flex;
	justify-content: center;
	align-items: baseline;
	column-gap: 5px;
	font-family: var(--font-en);
	font-size: 30px;
	line-height: 1;
	font-weight: 900;
	color: var(--text);
	transition: var(--ease);
}
#header .tel a:hover,
.header-fix .tel a:hover {
	color: var(--main);
	transition: var(--ease);
}
#header .tel a::before,
.header-fix .tel a::before {
	content: '';
	display: block;
	width: auto;
	height: 20px;
	aspect-ratio: 174 / 100;
	background-image: url('https://eco-choku.com/wp-content/uploads/icon_freed.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
}
#header .tel p,
.header-fix .tel p {
	padding: 5px;
	margin: 0;
	width: 100%;
	text-align: center;
	font-size: 12px;
	line-height: 1;
	border-top: 1px solid var(--text);
	border-bottom: 1px solid var(--text);
}

/*ボタン*/
#menu-header-btn {
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 15px;
}
#menu-header-btn > li {
	padding: 0;
	margin: 0;
	position: relative;
}
#menu-header-btn > li a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	background: #def7d2;
	border-radius: 8px;
	color: #007a1f;
	font-weight: 600;
	padding: 8px 20px;
	text-decoration: none;
	box-shadow: 0 4px 0 #007a1f;
	transition: var(--ease);
}
#menu-header-btn > li a:hover {
	transform: translateY(4px);
	box-shadow: 0 0 0 #007a1f;
}
#menu-header-btn > li .menu-image.menu-image-title-after {
	width: auto;
	height: 25px;
	padding: 0;
	margin: 0;
	display: inline-block;
}
#menu-header-btn > li .menu-image-title-after.menu-image-title {
	padding: 0;
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: #007a1f;
}
/*mail*/
#menu-header-btn > li.contact a {
	background: #e3efff;
	color: #084798;
	box-shadow: 0 4px 0 #084798;
}
#menu-header-btn > li.contact a:hover {
	box-shadow: 0 0 0 #084798;
}
#menu-header-btn > li.contact .menu-image-title-after.menu-image-title {
	color: #084798;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#header,
	.header-fix {
		width: 100%;
		min-width: 100%;
		height: 55px;
		padding: 10px 20px;
		justify-content: flex-end;
		column-gap: 10px;
	}
	#header .logo,
	.header-fix .logo {
		height: 35px;
		margin: 0;
	}
	#header .logo .siteInfo__title,
	.header-fix .logo .siteInfo__title {
		height: 100%;
	}
	#header .logo .siteInfo__title img,
	.header-fix .logo .siteInfo__title img,
	#header .copy img,
	.header-fix .copy img {
		width: auto;
		height: 100%;
		max-height: 35px;
	}
	
	/*コピー*/
	#header .copy,
	.header-fix .copy {
		display: block;
		height: 35px;
		margin: 0 auto 0 0;
	}

	/*スタッフ*/
	#header .staff,
	.header-fix .staff {
		display: none;
	}

	/*電話*/
	#header .tel,
	.header-fix .tel {
		display: inline-flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
		flex-direction: column;
		grid-row-gap: 5px;
	}
	#header .tel a,
	.header-fix .tel a {
		column-gap: 3px;
		font-size: 20px;
	}
	#header .tel a::before,
	.header-fix .tel a::before {
		height: 15px;
	}
	#header .tel p,
	.header-fix .tel p {
		padding: 0;
		font-size: 10px;
		border: none;
	}

	/*ボタン*/
	#menu-header-btn {
		display: none;
	}
}

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

/************************************************************/
/*　フッター
/************************************************************/

/*メニュー*/
#menu-footer-menu {
	width: 100%;
	padding: 30px 20px 10px;
	margin: 0 auto;
	background: var(--main);
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	column-gap: 20px;
}
#menu-footer-menu > li {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-size: 15px;
	line-height: 1;
	color: #fff;
}
#menu-footer-menu > li a {
	font-size: 15px;
	line-height: 1;
	color: #fff;
}
#menu-footer-menu > li a:hover {
	text-decoration: underline;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#menu-footer-menu {
		width: 100%;
		padding: 20px 20px 10px;
		margin: 0 auto;
		background: var(--main);
		position: relative;
		list-style: none;
		display: flex;
		justify-content: center;
		column-gap: 20px;
	}
}


.container-footer-area {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0 auto;
	background: var(--sub);
	position: relative;
	display: block;
}
.col-footer-area1 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#footer_widget {
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
	padding: 50px 0;
	margin: 0 auto;
}
#footer_widget > h2 {
	font-family: var(--font-h);
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	color: var(--main);
	text-align: center;
	background: none !important;
	border: none;
	position: relative;
	padding: 0;
	margin: 0 auto;
}
#footer_widget > p {
	padding: 0;
	margin: 0 auto;
	text-align: center;
	color: var(--text);
}
#footer_widget > .tel {
	font-family: var(--font-h);
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	color: var(--main);
	text-align: center;
	background: none !important;
	border: none;
	position: relative;
	padding: 0;
	margin: 0 auto;
}
#footer_widget > .tel::before {
	content: 'TEL';
	font-size: 0.8em;
	margin-right: 0.5em;
}
#footer_widget > .tel a {
	font-family: var(--font-h);
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	color: var(--main);
	text-decoration: none;
	transition: var(--ease);
}
#footer_widget > .tel a:hover {
	opacity: 0.8;
	transition: var(--ease);
}
.col-footer-area2,
.col-footer-area3 {
	display: none;
}

/************************************************************/
/*　サイドバー
/************************************************************/
.sideNav {
	width: 100%;
	padding: 0;
	margin: 0 auto 40px;
	position: relative;
}
.sideNav dt {
	width: 100%;
	padding: 10px 20px;
	margin: 0;
	background: var(--main);
	font-family: var(--font-h);
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.1em;
	text-align: left;
}
.sideNav dd {
	padding: 0;
	margin: 0;
	position: relative;
	border: 3px solid var(--main);
	border-top: none;
	background: #fff;
}
.sideNav dd ul {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
}
.sideNav dd ul > li {
	width: 100%;
	padding: 0;
	margin: 0;
	background: none;
	border-bottom: 1px solid #ccc;
}
.sideNav dd ul > li a {
	display: block;
	padding: 12px 10px 12px 30px;
	margin: 0;
	font-size: 13px;
	line-height: 1.4em;
	font-weight: 400;
	color: var(--text);
	position: relative;
	background: none;
	transition: var(--ease);
}
.sideNav dd ul > li a::before {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	background: none;
	border-top: 1px solid var(--text);
	border-right: 1px solid var(--text);
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translate(0,-50%) rotate(45deg);
}
.sideNav dd ul > li a:hover {
	color: var(--main);
	background: #fafafa;
	transition: var(--ease);
}

/************************************************************/
/*　メインビジュアル
/************************************************************/
#fv {
	width: 100%;
	min-width: 1500px;
	height: auto;
	aspect-ratio: 2000 / 860;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#fv > figure {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}
#fv > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.fv_info {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 20px;
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 5;
}
.fv_info > ul {
	width: calc(100% - 20px - 450px);
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
}
.fv_info > ul > li {
	width: calc((100% - 30px) / 4);
	padding: 0;
	margin: 0;
	position: relative;
}
.fv_info > ul > li img {
	width: 100%;
	height: auto;
}
#main .fv_info > h2 {
	width: 450px;
	min-width: 450px;
	padding: 0;
	margin: 0;
	position: relative;
	background: none;
	border: none;
}
.fv_info > h2 img {
	width: 100%;
	height: auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#fv {
		width: 100%;
		min-width: 100%;
		height: auto;
		aspect-ratio: 7 / 10;
	}
	#fv > figure {
		width: 100%;
		height: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		overflow: hidden;
	}
	#fv > figure img {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		object-fit: cover;
	}
	.fv_info {
		display: none;
	}
}


/************************************************************/
/*　固定バナー
/************************************************************/
.fixed_banner {
	width: 200px;
	min-width: 200px;
	padding: 0;
	margin: 0;
	position: fixed;
	bottom: 90px;
	right: 0;
	z-index: 10;
}
.fixed_banner img {
	width: 100%;
	height: auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.fixed_banner {
		width: 120px;
		min-width: 120px;
		padding: 0;
		margin: 0;
		position: fixed;
		bottom: 80px;
		right: 0;
		z-index: 10;
	}
	.fixed_banner img {
		width: 100%;
		height: auto;
	}
}

/************************************************************/
/*　トップページ 今月の特価商品
/************************************************************/
#topSpecial {
	width: 100%;
	padding: 120px 0 100px;
	margin: 0 auto;
	position: relative;
}
#topSpecial dl {
	width: 100%;
	max-width: 1000px;
	min-width: 1000px;
	padding: 80px 30px 30px;
	margin: 0 auto;
	border: 8px solid #ffc80a;
	border-radius: 30px;
	background: #fff;
	position: relative;
}
#topSpecial dl dt {
	width: calc(100% - 60px);
	padding: 0;
	margin: 0 auto;
	position: absolute;
	top: -80px;
	left: 50%;
	transform: translate(-50%,0);
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	column-gap: 30px;
}
#topSpecial dl dt h2 {
	width: 750px;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
}
#topSpecial dl dt span {
	display: block;
	width: 130px;
	height: auto;
	position: absolute;
	bottom: 13px;
	right: -10px;
}
#topSpecial dl dt h2 img,
#topSpecial dl dt span img {
	width: 100%;
	height: auto;
}
#topSpecial dl dd {
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#topSpecial dl dd img {
	width: 100%;
	height: auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topSpecial {
		width: 100%;
		padding: 50px 0 50px;
	}
	#topSpecial dl {
		width: calc(100% - 40px);
		max-width: 100%;
		min-width: calc(100% - 40px);
		padding: 40px 20px 20px;
		border: 4px solid #ffc80a;
		border-radius: 10px;
	}
	#topSpecial dl dt {
		width: calc(100% - 40px);
		height: 50px;
		top: -16px;
		column-gap: 10px;
	}
	#topSpecial dl dt h2 {
		width: auto;
		height: 50px;
	}
	#topSpecial dl dt h2 img,
	#topSpecial dl dt span img {
		width: auto;
		height: 100%;
	}
	#topSpecial dl dt span {
		width: auto;
		height: 50px;
		bottom: 0;
		right: -10px;
	}
}

/************************************************************/
/*　トップページ 補助金
/************************************************************/
#topSubsidy {
	width: 100%;
	padding: 0 0 150px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#topSubsidy::before {
	content: '';
	display: block;
	width: 100%;
	height: calc(100% - 50px);
	background-image: url('https://eco-choku.com/wp-content/uploads/subsidy_bg.svg');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}
#topSubsidy > header {
	width: 100%;
	max-width: 600px;
	min-width: 600px;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
}
#topSubsidy > header img {
	width: 100%;
	height: auto;
}
#contents #topSubsidy > h2 {
	width: 100%;
	min-width: 1000px;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	border: none;
	background: none;
	z-index: 0;
}
#topSubsidy > h2 img {
	width: 100%;
	height: auto;
}
#contents #topSubsidy > h2::before {
	content: '';
	display: block;
	width: auto;
	height: 340px;
	aspect-ratio: 454 / 508;
	background-image: url('https://eco-choku.com/wp-content/uploads/topSubsidy_people_1.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	bottom: 120px;
	left: -200px;
	z-index: -1;
}
#contents #topSubsidy > h2::after {
	content: '';
	display: block;
	width: auto;
	height: 340px;
	aspect-ratio: 479 / 481;
	background-image: url('https://eco-choku.com/wp-content/uploads/topSubsidy_people_2.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	bottom: 120px;
	right: -200px;
	z-index: -1;
}
#topSubsidy > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 27px;
	line-height: 1.2em;
	font-weight: 900;
	color: var(--text);
}
#topSubsidy > p strong {
	position: relative;
	display: inline-block;
	z-index: 1;
}
#topSubsidy > p strong::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 0.5em;
	background: #fff;
	z-index: -1;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topSubsidy {
		width: 100%;
		padding: 0 20px 50px;
	}
	#topSubsidy > header {
		width: calc(100% - 40px);
		max-width: 100%;
		min-width: calc(100% - 40px);
		margin: 0 auto 10px;
		z-index: 5;
	}
	#contents #topSubsidy > h2 {
		width: 100%;
		min-width: 100%;
		max-width: 100%;
	}
	#contents #topSubsidy > h2::before {
		width: auto;
		height: 170px;
		bottom: 170px;
		left: -100px;
		z-index: -1;
	}
	#contents #topSubsidy > h2::after {
		width: auto;
		height: 170px;
		bottom: 170px;
		right: -100px;
		z-index: -1;
	}
	#topSubsidy > p {
		font-size: 15px;
	}
	#topSubsidy > p strong::before {
		content: "";
		position: absolute;
		left: 0;
		bottom: -2px;
		width: 100%;
		height: 0.5em;
		background: #fff;
		z-index: -1;
	}
}

/************************************************************/
/*　トップページ 選ばれる理由
/************************************************************/
#topReason {
	width: 100%;
	padding: 0 0 100px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#topReason::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background-image: url('https://eco-choku.com/wp-content/uploads/reason_bg.svg');
	background-position: top center;
	background-repeat: repeat-y;
	background-size: 230%;
	opacity: 0.3;
}
#contents #topReason > h2 {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto 70px;
	border: none;
	background: none;
	position: relative;
	font-size: 40px;
	line-height: 1.4em;
	font-weight: 900;
	color: var(--text);
	text-align: center;
}
#contents #topReason > h2 strong {
	position: relative;
	display: inline-block;
	z-index: 1;
}
#contents #topReason > h2 strong::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 0.5em;
	background: var(--yellow);
	z-index: -1;
}
/*box*/
.reasonBox {
	width: 100%;
	max-width: 1000px;
	min-width: 1000px;
	padding: 0;
	margin: 0 auto 70px;
	position: relative;
	background: none;
	border: none;
	border-radius: 30px;
	box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.05);
}
.reasonBox dt {
	padding: 10px 30px 10px 200px;
	margin: 0;
	background: #ffc80a;
	border-radius: 30px 30px 0 0;
}
.reasonBox dt span {
	display: block;
	width: 140px;
	height: auto;
	padding: 0;
	margin: 0;
	position: absolute;
	top: -29px;
	left: 40px;
	z-index: 5;
}
#contents .reasonBox dt h3 {
	width: fit-content;
	font-size: 30px;
	line-height: 1.4em;
	font-weight: 900;
	color: var(--text);
	text-align: left;
	border: none;
	position: relative;
	padding: 0;
	margin: 0;
}
#contents .reasonBox dt h3::before,
#contents .reasonBox dt h3::after {
	display: none;
}
.reasonBox dd {
	border: 8px solid #ffc80a;
	border-top: none;
	border-radius: 0 0 30px 30px;
	padding: 40px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 40px;
	background: #fff;
}
.reasonBox dd figure {
	width: 400px;
	min-width: 400px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
}
.reasonBox dd figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
.reasonBox dd figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.reasonBox dd .topReason_info {
	width: calc(100% - 40px - 400px);
	padding: 0;
	margin: 0;
	position: relative;
}
#contents .reasonBox dd .topReason_info > h4 {
	display: block;
	width: fit-content;
	padding: 5px 10px 7px;
	margin: 0 0 15px;
	background: var(--text);
	font-size: 30px;
	line-height: 1;
	font-weight: 900;
	color: var(--yellow);
}
#contents .reasonBox dd .topReason_info > h4::before,
#contents .reasonBox dd .topReason_info > h4::after {
	display: none;
}
.reasonBox dd .topReason_info > p {
	padding: 0;
	margin: 0 auto;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 16px;
	line-height: 1.8;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topReason {
		width: 100%;
		padding: 0;
	}
	#contents #topReason > h2 {
		width: calc(100% - 40px);
		max-width: 100%;
		margin: 0 auto 30px;
		font-size: 4.5vw;
	}
	/*box*/
	.reasonBox {
		width: calc(100% - 40px);
		max-width: 100%;
		min-width: calc(100% - 40px);
		margin: 0 auto 30px;
		border-radius: 20px;
	}
	.reasonBox dt {
		padding: 10px 10px 10px 90px;
		border-radius: 20px 20px 0 0;
	}
	.reasonBox dt span {
		display: block;
		width: 60px;
		top: -12px;
		left: 20px;
		z-index: 5;
	}
	#contents .reasonBox dt h3 {
		width: fit-content;
		font-size: 3.5vw
	}
	.reasonBox dd {
		border: 5px solid #ffc80a;
		border-top: none;
		border-radius: 0 0 20px 20px;
		padding: 20px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	.reasonBox dd figure {
		width: 100%;
		min-width: 100%;
		border-radius: 10px;
	}
	.reasonBox dd .topReason_info {
		width: 100%;
		order: 1;
	}
	#contents .reasonBox dd .topReason_info > h4 {
		padding: 5px 10px 7px;
		margin: 0 0 5px;
		font-size: 4.5vw;
	}
	.reasonBox dd .topReason_info > p {
		font-size: 15px;
		line-height: 2;
	}
}


.reason_souko {
	width: 100%;
	max-width: 1000px;
	padding: 50px 0 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 50px;
	grid-row-gap: 30px;
	z-index: 0;
}
.reason_souko::after {
	content: '';
	display: block;
	width: 400px;
	height: auto;
	aspect-ratio: 945 / 887;
	background-image: url('https://eco-choku.com/wp-content/uploads/humans.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	bottom: -100px;
	left: -300px;
	z-index: -1;
}
.reason_souko > header {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
.reason_souko > header img {
	width: 100%;
	height: auto;
}
.reason_souko > figure {
	width: 450px;
	min-width: 450px;
	padding: 0;
	margin: 0;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	text-align: center;
	border: 5px solid #fff;
	box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.05);
}
.reason_souko > figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
.reason_souko > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.reason_souko_info {
	width: calc(100% - 50px - 450px - 100px);
	padding: 0;
	margin: 0;
	position: relative;
}
.reason_souko_info > p {
	padding: 0;
	margin: 0 auto 10px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 22px;
	line-height: 2;
	font-weight: 900;
}
.reason_souko_info > p strong {
	font-size: 30px;
	line-height: 1.4em;
	font-weight: 900;
	color: var(--main);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.reason_souko {
		width: calc(100% - 40px);
		max-width: 100%;
		padding: 20px 0 50px;
		column-gap: 0;
		grid-row-gap: 15px;
		justify-content: center;
	}
	.reason_souko::after {
		width: 150px;
		position: absolute;
		bottom: 0;
		right: unset;
		left: -30px;
		z-index: 2;
	}
	.reason_souko > header {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
	}
	.reason_souko > figure {
		width: 100%;
		min-width: 100%;
		border-radius: 20px;
	}
	.reason_souko_info {
		width: 100%;
	}
	.reason_souko_info > p {
		font-size: 15px;
	}
	.reason_souko_info > p strong {
		font-size: 20px;
	}
}

/************************************************************/
/*　トップページ 選ばれる理由 比較
/************************************************************/
#topCompare {
	width: 100%;
	padding: 0 0 100px;
	margin: 0 auto;
	background: #f8faff;
	position: relative;
	z-index: 0;
}
#topCompare > figure.image {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
}
#topCompare > figure.image img {
	width: 100%;
	height: auto;
}
/*タイトル*/
#contents h2.serif {
	width: fit-content;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	border: none;
	background: none;
	font-size: 40px;
	line-height: 1.4em;
	font-weight: 900;
	color: var(--main);
	text-align: center;
}
#contents h2.serif::before,
#contents h2.serif::after {
	content: '';
	display: inline-block;
	height: 70px;
	width: auto;
	aspect-ratio: 58 / 128;
	background-image: url('https://eco-choku.com/wp-content/uploads/serif.svg');
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center;
	position: absolute;
	bottom: 0;
	left: -50px;
}
#contents h2.serif::after {
	transform: scale(-1,1);
	left: unset;
	right: -50px;
}
#contents h2.serif strong {
	position: relative;
	display: inline-block;
	z-index: 1;
}
#contents h2.serif strong::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 0.5em;
	background: var(--yellow);
	z-index: -1;
}
/*支払いリスト*/
#topCompare > p {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto 20px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
.paymentList {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	column-gap: 10px;
}
.paymentList > li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc((100% - 40px) / 5);
	padding: 20px;
	margin: 0;
	background: var(--text);
	font-size: 17px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
	text-align: center;
}
/* - メーカー */
.mekerList {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 40px;
	grid-row-gap: 30px;
}
.mekerList > li {
	width: auto;
	height: 30px;
	padding: 0;
	margin: 0;
	position: relative;
}
.mekerList > li img {
	width: auto;
	height: 100%;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topCompare {
		width: 100%;
		padding: 0 0 50px;
	}
	#topCompare > figure.image {
		width: calc(100% - 40px);
		max-width: 100%;
		margin: 0 auto 30px;
	}
	/*タイトル*/
	#contents h2.serif {
		width: fit-content;
		min-width: calc(100% - 40px);
		margin: 0 auto 20px;
		font-size: 4vw;
	}
	#contents h2.serif::before,
	#contents h2.serif::after {
		height: 30px;
		bottom: 0;
		left: 0;
	}
	#contents h2.serif::after {
		transform: scale(-1,1);
		left: unset;
		right: 0;
	}
	#contents h2.serif strong::before {
		content: "";
		position: absolute;
		left: 0;
		bottom: -2px;
		width: 100%;
		height: 0.5em;
		background: var(--yellow);
		z-index: -1;
	}
	/*支払いリスト*/
	#topCompare > p {
		width: calc(100% - 40px);
		max-width:100%;
		margin: 0 auto 20px;
	}
	.paymentList {
		width: calc(100% - 40px);
		max-width: 100%;
		margin: 0 auto 50px;
		flex-wrap: wrap;
		gap: 10px;
	}
	.paymentList > li {
		width: calc((100% - 10px) / 2);
		padding: 10px;
		font-size: 14px;
	}
	/* - メーカー */
	.mekerList {
		width: calc(100% - 40px);
		max-width: 100%;
		column-gap: 20px;
		grid-row-gap: 15px;
	}
	.mekerList > li {
		height: 20px;
	}
}

/************************************************************/
/*　CTA
/************************************************************/
.cta {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	background-image: url('https://eco-choku.com/wp-content/uploads/cta_bg.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: 0;
	overflow: hidden;
}
.cta::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
	background: rgba(0,0,0,0.4);
}
.cta::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background-image: url('https://eco-choku.com/wp-content/uploads/contact_bg.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.cta_wrap {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 50px;
}
.cta_wrap > header {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#contents .cta_wrap > header h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	border: none;
	background: none;
	font-size: 40px;
	line-height: 1.4em;
	font-weight: 900;
	color: #fff;
}
#contents .cta_wrap > header h2 small {
	font-size: 20px;
	line-height: 1.4em;
	display: block;
}
#contents .cta_wrap > header strong {
	display: inline-block;
	padding: 10px 20px;
	margin: 0;
	background: var(--yellow);
	position: relative;
	font-size: 20px;
	line-height: 1;
	font-weight: 900;
	color: var(--text);
}

/*電話*/
.cta_info {
	width: calc(100% - 50px - 600px);
	padding: 0;
	margin: 0;
	position: relative;
}
#contents .cta_info > h3 {
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	font-size: 24px;
	line-height: 1.4em;
	font-weight: 900;
	color: #fff;
	text-align-last: justify;
}
#contents .cta_info > h3::before,
#contents .cta_info > h3::after {
	display: none;
}
.cta_info .tel {
	width: 100%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: column;
	grid-row-gap: 5px;
}
.cta_info .tel a {
	display: inline-flex;
	justify-content: center;
	align-items: baseline;
	column-gap: 5px;
	font-family: var(--font-en);
	font-size: 44px;
	line-height: 1;
	white-space: nowrap;
	font-weight: 900;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
.cta_info .tel a:hover {
	color: var(--main);
	transition: var(--ease);
}
.cta_info .tel a::before {
	content: '';
	display: block;
	width: auto;
	height: 30px;
	aspect-ratio: 174 / 100;
	background-image: url('https://eco-choku.com/wp-content/uploads/icon_freed.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
}
.cta_info .tel p {
	padding: 5px;
	margin: 0;
	width: 100%;
	text-align: center;
	font-size: 12px;
	line-height: 1;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	color: #fff;
}
#contents .cta_info > p {
	font-size: 20px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
	padding: 0;
	margin: 10px 0 0;
}

.cta_btns {
	width: 600px;
	min-width: 600px;
	padding: 15px;
	margin: 0;
	background: rgba(255,255,255,0.5);
	border-radius: 10px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 15px;
	grid-row-gap: 10px;
}
.cta_btns > p {
	width: fit-content;
	padding: 10px 20px;
	margin: 0 auto;
	position: relative;
	background: #db0000;
	text-align: center;
	font-size: 20px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
}
.cta_btns > p::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background: #db0000;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	position: absolute;
	bottom: -9px;
	left: 50%;
	transform: translate(-50%,0);
}
/*ボタン*/
.cta_btns > a {
	width: calc((100% - 15px) / 2);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	background: #def7d2;
	border-radius: 8px;
	color: #007a1f;
	font-weight: 600;
	padding: 8px 20px;
	text-decoration: none;
	box-shadow: 0 4px 0 #007a1f;
	transition: var(--ease);
	font-size: 16px;
	font-weight: 700;
	color: #007a1f;
}
.cta_btns > a:hover {
	transform: translateY(4px);
	box-shadow: 0 0 0 #007a1f;
}
/*mail*/
.cta_btns > a.contact {
	background: #e3efff;
	color: #084798;
	box-shadow: 0 4px 0 #084798;
}
.cta_btns > a.contact:hover {
	box-shadow: 0 0 0 #084798;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.cta {
		width: 100%;
		padding: 50px 20px;
		background-image: url('https://eco-choku.com/wp-content/uploads/cta_bg.webp');
	}
	.cta_wrap {
		width: 100%;
		max-width: 100%;
		gap: 20px;
	}
	#contents .cta_wrap > header h2 {
		margin: 0 auto 10px;
		font-size: 4.5vw;
		text-align: center;
	}
	#contents .cta_wrap > header h2 small {
		font-size: 3vw;
		margin-top: 10px;
		text-align: center;
	}
	#contents .cta_wrap > header strong {
		display: block;
		width: fit-content;
		padding: 8px 10px;
		font-size: 3.5vw;
		text-align: center;
		margin: 0 auto;
	}

	/*電話*/
	.cta_info {
		width: 100%;
	}
	#contents .cta_info > h3 {
		font-size: 4vw;
		text-align: center;
		text-align-last: center;
	}
	.cta_info .tel {
		width: 100%;
		grid-row-gap: 5px;
	}
	.cta_info .tel a {
		column-gap: 5px;
		font-size: 44px;
	}
	.cta_info .tel a::before {
		height: 30px;
	}
	.cta_info .tel p {
		padding: 5px;
		font-size: 15px;
	}
	#contents .cta_info > p {
		font-size: 20px;
		text-align: center;
	}

	.cta_btns {
		width: 100%;
		min-width: 100%;
		column-gap: 15px;
		grid-row-gap: 15px;
	}
	.cta_btns > p {
		width: 100%;
		padding: 10px 20px;
		font-size: 4.5vw;
	}
	.cta_btns > p::after {
		content: '';
		bottom: -9px;
	}
	/*ボタン*/
	.cta_btns > a {
		width: 100%;
		font-weight: 600;
		padding: 8px 20px;
		font-size: 16px;
	}
}

/************************************************************/
/*　トップページ エコキュート商品
/************************************************************/
#topProduct {
	width: 100%;
	padding: 0 0 100px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#topProduct .contHead {
	margin: 0 auto 100px;
}
/*リスト*/
.productList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	position: relative;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 50px;
}
.productList > li {
	width: calc((100% - 50px) / 2);
	padding: 0;
	margin: 0;
	position: relative;
	border: 5px solid #ffc80a;
	border-radius: 20px;
	background: #fff;
	box-shadow: rgba(0, 0, 0, 0.05) 8px 8px 0px;
}
.productList > li::before {
	content: '';
	display: block;
	width: auto;
	height: 35px;
	aspect-ratio: 269 / 50;
	background-image: url('https://eco-choku.com/wp-content/uploads/subsidy_tag.svg');
	background-position: center;
	background-size: auto 100%;
	background-repeat: no-repeat;
	position: absolute;
	top: -22px;
	right: 15px;
	z-index: 2;
}
.productList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	aspect-ratio: 1000 / 810;
	border-radius: 20px;
}
.productList > li > figure::before {
	content: '';
	display: block;
	padding-top: 81%;
}
.productList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.productList > li > .btn {
	width: 100%;
	padding: 0 15px 15px;
	margin: 0 auto;
	position: relative;
}
.productList > li > .btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 17px 20px;
	margin: 0 auto;
	background: var(--gradient);
	font-size: 20px;
	line-height: 1;
	font-weight: 900;
	text-align: center;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
	border-radius: 50px;
	box-shadow: 0 4px 0 #760000;
}
.productList > li > .btn a:hover {
	filter: brightness(1.05);
	transform: translateY(4px);
	box-shadow: 0 0 0 #760000;
}

/*サブページ*/
.productList.sub {
	width: 100%;
	max-width: 100%;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topProduct {
		width: 100%;
		padding: 0 0 50px;
	}
	#topProduct .contHead {
		margin: 0 auto 50px;
	}
	/*リスト*/
	.productList {
		width: calc(100% - 40px);
		max-width: 100%;
		flex-wrap: wrap;
		gap: 40px;
	}
	.productList > li {
		width: 100%;
		border: 5px solid #ffc80a;
		border-radius: 20px;
	}
	.productList > li::before {
		height: 35px;
		top: -22px;
		right: 15px;
		z-index: 2;
	}
	.productList > li > .btn {
		width: 100%;
		padding: 0 15px 15px;
		margin: 0 auto;
		position: relative;
	}
	.productList > li > .btn a {
		padding: 15px 20px;
		font-size: 18px;
	}

	/*サブページ*/
	.productList.sub {
		width: 100%;
		max-width: 100%;
	}
}


/************************************************************/
/*　トップページ レビュー
/************************************************************/
#topReview {
	width: 100%;
	padding: 60px 0 100px;
	margin: 0 auto;
	background: #fff;
	position: relative;
	z-index: 0;
	border-top: 10px solid var(--yellow);
}
#topReview::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background-image: url('https://eco-choku.com/wp-content/uploads/reason_bg.svg');
	background-position: bottom center;
	background-repeat: repeat-y;
	background-size: 230%;
	opacity: 0.3;
}
#topReview > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
#topReview > header i {
	display: block;
	width: auto;
	height: 70px;
	animation-play-state: 0;
	margin: 0 auto;
}
#topReview > header i img {
	width: auto;
	height: 100%;
}
#contents #topReview > header > h2 {
	margin: 0 auto;
}


/************************************************************/
/*　トップページ 施工実績
/************************************************************/
#topCase {
	width: 100%;
	padding: 0 0 100px;
	margin: 0 auto;
	background: #f8faff;
	position: relative;
	z-index: 0;
}
#topCase .contHead {
	margin: 0 auto 100px;
}
.caseList {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 50px;
}
.caseList > dl {
	width: calc((100% - 50px) / 2);
	padding: 0;
	margin: 0;
	position: relative;
	border-radius: 5px;
	background: #fff;
	box-shadow: rgba(0, 0, 0, 0.05) 8px 8px 0px;
	border: 5px solid #008b51;
}
.caseList > dl dt {
	width: 100%;
	padding: 15px 20px;
	margin: 0 auto;
	background: #008b51;
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
	column-gap: 15px;
	border-radius: 0;
}
.caseList > dl dt small {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-size: 14px;
	line-height: 1.2em;
	font-weight: 600;
	color: #fff;
}
#contents .caseList > dl dt h3 {
	padding: 0;
	margin: 0;
	font-size: 20px;
	line-height: 1.2em;
	font-weight: 900;
	color: #fff;
	border: none;
	background: none;
	position: relative;
}
#contents .caseList > dl dt h3::before,
#contents .caseList > dl dt h3::after {
	display: none;
}
.caseList > dl dd {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border-radius: 0 0 5px 5px;
	background: #fff;
	position: relative;
}
.caseList > dl dd:before {
	content: '';
	display: block;
	width: 30px;
	height: 15px;
	background: #008b51;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 2;
}
.caseList > dl dd .case_images {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 1px;
}
.caseList > dl dd .case_images::before {
	content: '';
	display: block;
	width: 70px;
	height: auto;
	aspect-ratio: 79 / 41;
	background-image: url('https://eco-choku.com/wp-content/uploads/beforeafter.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 2;
}
.caseList > dl dd .case_images figure {
	width: calc((100% - 1px) / 2);
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.caseList > dl dd .case_images figure::before {
	content: '';
	display: block;
	padding: 50%;
}
.caseList > dl dd .case_images figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.case_info {
	width: 100%;
	padding: 30px;
	margin: 0;
	position: relative;
	border-top: 3px solid #c8c8c8;
}
.case_info > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}

/*サブページ*/
.caseList.sub {
	width: 100%;
	max-width: 100%;
}
.caseList.sub > dl {
	width: calc((100% - 50px) / 3);
}
.caseList.sub > dl dt {
	width: 100%;
	padding: 12px 20px;
	column-gap: 10px;
}
.caseList.sub > dl dt small {
	font-size: 12px;
}
#contents .caseList.sub > dl dt h3 {
	font-size: 16px;
}
.caseList.sub .case_info {
	padding: 20px 20px;
}
.caseList.sub .case_info > p {
	font-size: 14px;
	line-height: 1.7em;
}

/*詳細ページ*/
.caseList.full {
	width: 100%;
	max-width: 100%;
	margin: 0 auto 100px;
}
.caseList.full > dl {
	width: 100%;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topCase {
		width: 100%;
		padding: 0 0 50px;
	}
	#topCase .contHead {
		margin: 0 auto 50px;
	}
	.caseList {
		width: calc(100% - 40px);
		max-width: 100%;
		gap: 20px;
	}
	.caseList > dl {
		width: 100%;
		border-radius: 5px;
	}
	.caseList > dl dt {
		width: 100%;
		padding: 10px 10px;
		flex-wrap: wrap;
		grid-row-gap: 5px;
		column-gap: 15px;
	}
	.caseList > dl dt small {
		display: block;
		width: 100%;
		font-size: 10px;
	}
	#contents .caseList > dl dt h3 {
		font-size: 15px;
	}
	.case_info {
		width: 100%;
		padding: 20px;
	}

	/*サブページ*/
	.caseList.sub {
		width: 100%;
		max-width: 100%;
	}
	.caseList.sub > dl {
		width: 100%;
	}
	.caseList.sub > dl dt {
		width: 100%;
		padding: 10px 10px;
		flex-wrap: wrap;
		grid-row-gap: 5px;
		column-gap: 15px;
	}
	.caseList.sub > dl dt small {
		display: block;
		width: 100%;
		font-size: 10px;
	}
	#contents .caseList.sub > dl dt h3 {
		font-size: 15px;
	}
	.caseList.sub .case_info {
		width: 100%;
		padding: 20px;
	}
	.caseList.sub .case_info > p {
		font-size: 14px;
		line-height: 1.7em;
	}

	/*詳細ページ*/
	.caseList.full {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 100px;
	}
	.caseList.full > dl {
		width: 100%;
	}
}


/************************************************************/
/*　トップページ 施工の流れ
/************************************************************/
#topFlow {
	width: 100%;
	padding: 0 0 100px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#contents #topFlow > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	border: none;
	background: none;
	text-align: center;
	font-size: 40px;
	line-height: 1.4em;
	font-weight: 900;
	color: var(--text);
}
#contents #topFlow > h2 a {
	color: var(--main);
	position: relative;
	display: inline-block;
	text-decoration: none;
}
#contents #topFlow > h2 a::before {
	content: "";
	position: absolute;
	left: 0px;
	bottom: -5px;
	width: 100%;
	height: 0.5em;
	z-index: -1;
	opacity: 0.6;
	background: var(--yellow);
}
/*リスト*/
.flowList {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 70px;
}
.flowList > li {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	column-gap: 30px;
}
.flowList > li::before {
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	border-left: 3px dashed var(--yellow);
	position: absolute;
	top: 100px;
	left: 48px;
}
.flowList > li:last-child::before {
	display: none;
}
.flowList > li > em {
	display: block;
	width: 100px;
	min-width: 100px;
	aspect-ratio: 1/1;
	padding: 0;
	margin: 0;
	position: relative;
}
.flowList > li > em img {
	width: 100%;
	height: auto;
}
.flowList > li > figure {
	width: 250px;
	min-width: 250px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 5px;
}
.flowList > li > figure::before {
	content: '';
	display: block;
	padding-top: 75%;
}
.flowList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.flowList_info {
	width: calc(100% - 30px - 100px - 30px - 250px);
	padding: 0;
	margin: 0;
	position: relative;
}
#contents .flowList_info h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	border: none;
	background: none;
	position: relative;
	text-align: left;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 900;
	color: var(--text);
}
#contents .flowList_info > p {
	padding: 0;
	margin: 0 auto;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	position: relative;
}
.flowList > li.none {
	width: 100%;
	height: 100px;
	padding: 30px;
	margin: 0 auto;
	border-radius: 10px;
	background: #ffe7e1;
	text-align: center;
	font-size: 30px;
	line-height: 1;
	font-weight: 900;
	color: var(--main);
	display: flex;
	justify-content: center;
	align-items: center;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topFlow {
		width: 100%;
		padding: 0 0 50px;
	}
	#contents #topFlow > h2 {
		margin: 0 auto 30px;
		font-size: 4.5vw;
	}
	#contents #topFlow > h2 a {
		font-size: 1.5em;
	}
	/*リスト*/
	.flowList {
		width: calc(100% - 40px);
		max-width: 100%;
		grid-row-gap: 40px;
	}
	.flowList > li {
		width: 100%;
		padding: 0 0 0 70px;
		margin: 0 auto;
		position: relative;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		flex-wrap: wrap;
		column-gap: 20px;
		grid-row-gap: 15px;
	}
	.flowList > li::before {
		content: '';
		display: block;
		width: 1px;
		height: calc(100% + 70px);
		border-left: 3px dashed var(--yellow);
		position: absolute;
		top: 0;
		left: 23px;
	}
	.flowList > li > em {
		display: block;
		width: 50px;
		min-width: 50px;
		position: absolute;
		top: 0;
		left: 0;
	}
	.flowList > li > figure {
		width: 100%;
		min-width: 100%;
	}
	.flowList_info {
		width: calc(100%);
	}
	#contents .flowList_info h2 {
		margin: 0 auto 10px;
		font-size: 20px;
	}
	.flowList > li.none {
		width: 100%;
		height: 50px;
		padding: 15px;
		font-size: 20px;
	}
}

/************************************************************/
/*　トップページ よくある質問
/************************************************************/
#topFaq {
	width: 100%;
	padding: 0 0 100px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}

/*リスト*/
.faqList {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
.faqList > dl {
	width: 100%;
	padding: 30px;
	margin: 0 auto;
	position: relative;
	background: #fff;
	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: 0 60px 0 0;
	margin: 0 auto;
	background: none;
	border-radius: 0;
	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(--main);
	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(--text);
	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(--text);
	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(--text);
	transition: var(--ease);
}
.faqList > dl > dd {
	margin: 0 auto;
	padding: 30px 0px 0 55px;
	background: #fff;
}
.faqList > dl > dd p {
	padding: 0;
	margin: 0 auto 10px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}

/*サブページ*/
.faqList.sub {
	width: 100%;
	max-width: 100%;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topFaq {
		width: 100%;
		padding: 0 0 50px;
	}

	/*リスト*/
	.faqList {
		width: calc(100% - 40px);
		max-width: 100%;
		grid-row-gap: 10px;
	}
	.faqList > dl {
		width: 100%;
		padding: 15px;
		border-radius: 10px;
	}
	.faqList > dl > dt {
		column-gap: 10px;
		flex-wrap: nowrap;
		width: 100%;
		padding: 0 20px 0 0;
		border-radius: 0;
		font-size: 15px;
	}
	.faqList > dl > dt::before {
		width: 20px;
		min-width: 20px;
		height: 20px;
		padding: 0 0 3px;
		font-size: 12px;
	}
	.faqList > dl > dt span {
		display: block;
		width: 10px;
		height: 10px;
		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: 10px;
		height: 1px;
		background: var(--text);
		border-radius: 0;
	}
	.faqList > dl > dt span::after {
		content: '';
		display: block;
		width: 10px;
		height: 1px;
		background: var(--text);
		border-radius: 0;
	}
	.faqList > dl > dd {
		margin: 0 auto;
		padding: 10px 0 0 0;
		background: #fff;
	}
	.faqList > dl > dd p {
		padding: 0;
		margin: 0 auto 10px;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}

	/*サブページ*/
	.faqList.sub {
		width: 100%;
		max-width: 100%;
	}
}

/************************************************************/
/*　トップページ 施工の流れ
/************************************************************/
#topContact {
	width: 100%;
	padding: 0 0 100px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#contents #topContact > .contHead {
	margin: 0 auto 100px;
}
.topContact_head {
	position: relative;
	margin: 0 auto 20px;
}
.topContact_head .lp-contact_campaign p {
	display: flex;
	justify-content: center;
	align-items: baseline;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 30px;
	line-height: 1;
	font-weight: bold;
	color: var(--main);
	margin: 0;
	padding: 0;
	position: relative;
	white-space: nowrap;
}
.topContact_head .lp-contact_campaign strong {
	font-family: var(--font-en);
	font-weight: bold;
	font-size: 40px;
}
.topContact_head .lp-contact_campaign p::before,
.topContact_head .lp-contact_campaign p::after {
	content: '';
	display: block;
	width: 15px;
	height: auto;
	margin: 0 5px;
	aspect-ratio: 58 / 128;
	background-image: url('https://eco-choku.com/wp-content/uploads/serif.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
}
.topContact_head .lp-contact_campaign p::after {
	transform: scale(-1,1);
}
.topContact_head .serif {
	display: inline-block;
	padding: 8px 30px;
	margin: 0;
	background: var(--text);
	font-size: 15px;
	line-height: 1;
	color: #fff;
	font-weight: bold;
	border-radius: 35px;
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translate(-50%,0);
}
.topContact_head .serif::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	padding: 0;
	margin: 0;
	background: var(--text);
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	position: absolute;
	bottom: -9px;
	left: 50%;
	transform: translate(-50%,0);
}
#contents .topContact_head > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	border: none;
	background: none;
	text-align: center;
	font-size: 40px;
	line-height: 1.4em;
	font-weight: 900;
	color: var(--text);
}
#contents .topContact_head > h2 + p {
	padding: 0;
	margin: 0 auto 50px;
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
}
.yellowBox {
	display: inline-block;
	width: fit-content;
	padding: 5px;
	margin: 0 auto;
	background: #ffe725;
	line-height: 1;
	white-space: nowrap;
	font-size: 20px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topContact {
		width: 100%;
		padding: 0 0 50px;
	}
	#contents #topContact > .contHead {
		margin: 0 auto 70px;
	}
	.topContact_head {
		position: relative;
		margin: 0 auto 30px;
	}
	.topContact_head .lp-contact_campaign p {
		font-size: 4vw;
	}
	.topContact_head .lp-contact_campaign strong {
		font-size: 1.2em;
	}
	.topContact_head .lp-contact_campaign p::before,
	.topContact_head .lp-contact_campaign p::after {
		content: '';
		display: block;
		width: 10px;
	}
	.topContact_head .lp-contact_campaign p::after {
		transform: scale(-1,1);
	}
	#contents .topContact_head > h2 {
		margin: 0 auto 15px;
		font-size: 6vw;
	}
	#contents .topContact_head > h2 + p {
		padding: 0;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		grid-row-gap: 5px;
	}
	.yellowBox {
		padding: 5px;
		font-size: 3vw;
	}
}

/************************************************************/
/*　トップページ　LINE登録
/************************************************************/
.line-signup {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	box-shadow: rgba(0, 0, 0, 0.05) 8px 8px 0px;
	border-radius: 20px;
}
.line-signup dt {
	width: 100%;
	padding: 15px 30px;
	margin: 0 auto;
	background: var(--line);
	text-align: center;
	font-size: 30px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
	border-radius: 20px 20px 0 0;
}
.line-signup dd {
	width: 100%;
	padding: 30px;
	margin: 0 auto;
	background: #fff;
	border: 5px solid var(--line);
	border-radius: 0 0 20px 20px;
}
#contents .line-signup dd h3 {
	padding: 0;
	margin: 0 auto 20px;
	font-size: 25px;
	line-height: 1.4em;
	font-weight: 900;
	text-align: left;
	border: none;
	background: none;
}
#contents .line-signup dd h3::before,
#contents .line-signup dd h3::after {
	display: none;
}
#contents .line-signup dd h3 strong {
	color: var(--line);
}
#contents .line-signup dd h3:first-of-type {
	margin-bottom: 50px;
}
.signupFlow {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	column-gap: 30px;
}
.signupFlow > li {
	width: calc((100% - 60px) / 3);
	padding: 30px 20px 20px;
	margin: 0;
	border-radius: 10px;
	background: var(--line);
	position: relative;
	text-align: center;
}
.signupFlow > li::after {
	content: '';
	display: block;
	width: 15px;
	height: 30px;
	background: var(--line);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	position: absolute;
	top: 50%;
	right: -14px;
	transform: translate(0, -50%);
}
.signupFlow > li:last-child::after {
	display: none;
}
.signupFlow > li > em {
	display: inline-block;
	padding: 8px 15px;
	margin: 0;
	background: #fff;
	border-radius: 40px;
	font-size: 15px;
	line-height: 1;
	font-weight: 900;
	font-style: normal;
	color: var(--line);
	border: 3px solid var(--line);
	text-align: center;
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translate(-50%,0);
	white-space: nowrap;
}
.signupFlow > li > p {
	padding: 0;
	margin: 0 auto 15px;
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 900;
	text-align: center;
	color: #fff;
	white-space: nowrap;
}
.signupFlow > li > img {
	width: auto;
	height: 60px;
}
.signup_wrap {
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	column-gap: 50px;
}
.signup_info {
	width: calc(100% - 250px - 50px);
	padding: 0;
	margin: 0;
	position: relative;
}
.line-signup dd .signup_info h3 {
	width: 100%;
	padding: 0;
	margin: 0 0 20px;
	font-size: 30px;
	line-height: 1.4em;
	font-weight: 900;
	text-align: left;
}
.line-signup dd .signup_info h3::before,
.line-signup dd .signup_info h3::after {
	display: none;
}
.line-signup dd .signup_info h3 strong {
	color: var(--line);
}
.signup_wrap > figure {
	width: 250px;
	height: auto;
}
.signup_wrap > figure img {
	width: 100%;
	height: auto;
}
/*-ボタン*/
.signup_wrap .cta_btns {
	width: 100%;
	min-width: 100%;
	padding: 0;
	margin: 0;
	background: none;
	border-radius: 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 15px;
	grid-row-gap: 10px;
}
.signup_wrap .cta_btns > a {
	width: calc((100% - 15px) / 2);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	background: #def7d2;
	border-radius: 8px;
	color: #007a1f;
	font-weight: 600;
	padding: 15px 20px;
	text-decoration: none;
	box-shadow: 0 4px 0 #007a1f;
	transition: var(--ease);
	font-size: 20px;
	font-weight: 700;
	color: #007a1f;
}
.signup_wrap .cta_btns > a:hover {
	transform: translateY(4px);
	box-shadow: 0 0 0 #007a1f;
}
/*mail*/
.signup_wrap .cta_btns > a.contact {
	background: #e3efff;
	color: #084798;
	box-shadow: 0 4px 0 #084798;
}
.signup_wrap .cta_btns > a.contact:hover {
	box-shadow: 0 0 0 #084798;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.line-signup {
		width: calc(100% - 40px);
		max-width: 100%;
		margin: 0 auto 30px;
		border-radius: 20px;
	}
	.line-signup dt {
		width: 100%;
		padding: 10px 20px;
		font-size: 4.5vw;
	}
	.line-signup dd {
		width: 100%;
		padding: 20px;
		border-radius: 0 0 20px 20px;
	}
	#contents .line-signup dd h3 {
		padding: 0;
		margin: 0 auto 10px;
		font-size: 4.5vw;
	}
	#contents .line-signup dd h3:first-of-type {
		margin-bottom: 30px;
	}
	.signupFlow {
		width: 100%;
		margin: 0 auto 20px;
		column-gap: 15px;
	}
	.signupFlow > li {
		width: calc((100% - 40px) / 3);
		padding: 20px 10px 10px;
	}
	.signupFlow > li::after {
		content: '';
		display: block;
		width: 10px;
		height: 20px;
		background: var(--line);
		clip-path: polygon(0 0, 0% 100%, 100% 50%);
		position: absolute;
		top: 50%;
		right: -9px;
		transform: translate(0, -50%);
	}
	.signupFlow > li:last-child::after {
		display: none;
	}
	.signupFlow > li > em {
		display: inline-block;
		padding: 5px 10px;
		margin: 0;
		background: #fff;
		border-radius: 40px;
		font-size: 10px;
		line-height: 1;
		font-weight: 900;
		font-style: normal;
		color: var(--line);
		border: 1px solid var(--line);
		text-align: center;
		position: absolute;
		top: -10px;
		left: 50%;
		transform: translate(-50%,0);
		white-space: nowrap;
	}
	.signupFlow > li > p {
		padding: 0;
		margin: 0 auto 8px;
		font-size: 0.8rem;
		line-height: 1.4em;
		font-weight: 900;
		text-align: center;
		color: #fff;
		white-space: nowrap;
	}
	.signupFlow > li > img {
		width: auto;
		height: 30px;
	}
	.signup_wrap {
		display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 30px;
	}
	.signup_info {
		width: 100%;
	}
	.line-signup dd .signup_info h3 {
		margin: 0 0 10px;
		font-size: 20px;
	}
	.signup_wrap > figure {
		width: 100%;
		height: auto;
		position: relative;
		overflow: hidden;
		text-align: center;
	}
	.signup_wrap > figure::before {
		content: '';
		display: block;
		padding-top: 65%;
	}
	.signup_wrap > figure img {
		width: 100%;
		height: auto;
		position: absolute;
		top: 0;
		left: 0;
	}
	/*-ボタン*/
	.signup_wrap .cta_btns {
		width: 100%;
		min-width: 100%;
		flex-wrap: wrap;
		grid-row-gap: 15px;
	}
	.signup_wrap .cta_btns > a {
		width: 100%;
		padding: 10px 20px;
		font-size: 18px;
	}
	.signup_wrap .cta_btns > a:hover {
		transform: translateY(4px);
		box-shadow: 0 0 0 #007a1f;
	}
	/*mail*/
	.signup_wrap .cta_btns > a.contact {
		background: #e3efff;
		color: #084798;
		box-shadow: 0 4px 0 #084798;
	}
	.signup_wrap .cta_btns > a.contact:hover {
		box-shadow: 0 0 0 #084798;
	}
}

/************************************************************/
/*　トップページ　お問い合わせ
/************************************************************/

/*cfBox*/
.cfBox {
	width: 1000px;
	max-width: 1000px;
	padding: 50px 50px;
	margin: 0 auto;
	background: #fff;
	border: 8px solid #ffc80a;
	border-radius: 20px;
	position: relative;
	box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.05);
}
#contents .cfBox h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	text-align: center;
	border: none;
	background: none;
	position: relative;
	font-size: 30px;
	line-height: 1.3em;
	font-weight: 900;
	color: var(--text);
}
#contents .cfBox h3::before,
#contents .cfBox h3::after {
	display: none;
}
.spacer {
	display: block;
	width: 100%;
	height: 70px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.cfBox {
		width: 100%;
		max-width: 100%;
		padding: 0 20px;
		margin: 0 auto;
		background: #FEF9E4;
		border-radius: 0;
		position: relative;
		filter: unset;
		border: none;
		box-shadow: none;
	}
	#contents .cfBox h3 {
		margin: 0 auto 20px;
		font-size: 18px;
	}
	#contents .cfBox h3::before,
	#contents .cfBox h3::after {
		display: none;
	}
	.spacer {
		display: block;
		width: 100%;
		height: 30px;
	}
}

/************************************************************/
/*　お見積もりフォーム
/************************************************************/
/* 入力フォームテーブル */
.cfBox dl {
	width: 100%;
	padding: 0 0 30px;
	margin: 0 auto 30px;
	border: none;
	background: none;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	flex-wrap: nowrap;
	column-gap: 40px;
	border-bottom: 1px dashed #c8c8c8;
}
.cfBox dl dt {
	display: block;
	width: 30%;
	padding: 0 0 0 60px;
	margin: 0;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: bold;
	position: relative;
}
.cfBox dl dt p,
.cfBox dl dd p {
	font-size: 15px;
	line-height: 1.4em;
	font-weight: 900;
	color: var(--text);
	padding: 0;
	margin: 0;
}
.cfBox dl dt small {
	font-size: 12px;
}
.cfBox dl dd {
	width: calc(70% - 40px);
	padding: 0;
	margin: 0;
	position: relative;
}
.cfBox .att {
	display: inline-block;
	padding: 7px 10px;
	margin: 0;
	background: #ff732f;
	border-radius: 20px;
	color: #ffffff;
	font-size: 12px;
	line-height: 1;
	font-weight: bold;
	position: absolute;
	top: 0;
	left: 0;
}
.cfBox .any {
	display: inline-block;
	padding: 7px 10px;
	margin: 0;
	background: #aaa;
	border-radius: 20px;
	color: #ffffff;
	font-size: 12px;
	line-height: 1;
	font-weight: bold;
	position: absolute;
	top: 0;
	left: 0;
}
.cfBox .block {
	display: block;
	padding: 0;
	margin: 0 auto 10px;
}
.cfBox .wpcf7-not-valid-tip {
	display: block;
	padding: 0;
	margin: 10px 0 0;
}
.cfBox dl dd small {
	display: block;
	font-size: 12px;
	padding: 0;
	margin: 10px 0 0;
}

/*フォーム幅*/
.cfBox input,
.cfBox textarea {
	padding: 15px;
	margin: 0;
	border-radius: 10px;
	border: 1px solid #c8c8c8;
	box-shadow: none;
	font-family: var(--font-jp);
	font-weight: 500;
	font-style: normal;
	font-feature-settings: "palt";
	font-size: 14px;
	line-height: 1.4em;
	background: #fff;
	outline: none;
}
.cfBox input.w10,
.cfBox textarea.w10 {
	width: 100%;
	padding: 10px 15px;
	margin-right: 5px;
}
.cfBox input.w25,
.cfBox textarea.w25 {
	width: 25%;
	margin-right: 5px;
}
.cfBox input.w50,
.cfBox textarea.w50 {
	width: 100%;
}
.cfBox input.w100,
.cfBox textarea.w100 {
	width: 100%;
}
.addForm {
	display: block;
	margin-bottom: 5px;
}
.ftitle {
	display: inline-block;
	min-width: 110px;
	padding: 0;
	margin: 0;
	white-space: nowrap;
}
.cfBox input[type=file] {
	border: none;
	background: none;
	padding: 0;
	margin: 0;
	border-radius: 0;
}
.cfBox .stext {
	display: block;
	margin-bottom: 10px;
}

/*セレクト*/
.cfBox .wpcf7-select {
	padding: 10px 40px 10px 10px;
	margin: 0;
	border-radius: 10px;
	border: 1px solid #c8c8c8;
	box-shadow: none;
	font-family: var(--font-jp);
	font-weight: 500;
	font-style: normal;
	font-feature-settings: "palt";
	font-size: 14px;
	line-height: 1.4em;
	background: #fff;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.cfBox .wpcf7-select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23666' stroke-width='2'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 12px 8px;
}

/*チェックボックス*/
.wpcf7-checkbox {
	padding: 0;
	margin: 0;
}
.wpcf7-checkbox .wpcf7-list-item {
	padding: 0;
	margin: 0 1em 0 0;
}
.wpcf7-checkbox label {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 5px;
	padding: 0;
	margin: 0;
}
.cfBox input[type=checkbox] {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	padding: 3px;
	border: 1px solid #c8c8c8;
	position: relative;
	cursor: pointer;
	border-radius: 0;
}
.cfBox input[type=checkbox]:checked::after {
	content: "✔";
	position: absolute;
	top: -4px;
	left: 2px;
	font-size: 20px;
	color: var(--main);
}
.wpcf7-checkbox .wpcf7-list-item-label {
	font-size: 20px;
}

/*ラジオボタン*/
.cfBox input[type=radio] {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	border: 2px solid #c8c8c8;
	border-radius: 50%;
	position: relative;
}

.cfBox input[type=radio]:checked::before {
	content: "";
	width: 10px;
	height: 10px;
	background: #333;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/*フォームリスト*/
.formList {
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}
.formList > li {
	width: 30%;
	padding: 0;
	margin: 5px 0;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	position: relative;
	white-space: nowrap;
}
.formList > li > span:first-of-type {
	min-width: 35%;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
}
.formList > li > span:first-of-type::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background: var(--main);
	padding: 0;
	margin: 0 5px 0 0;
}
.formList > li input {
	margin: 0 5px;
	width: 90%;
}
/*ファイル添付*/
.fileTxt {
	margin-bottom: 5px;
}
/*キャンペーン*/
.estimateForm td > p.ef_campaign {
	display: block;
	margin-bottom: 20px;
	text-align: left;
}
.estimateForm td > p.ef_campaign > span {
	display: block;
}
.estimateForm td > p.ef_campaign:last-of-type {
	margin-bottom: 0;
}
/*利用規約*/
.wpcf7-acceptance label {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 5px;
}
/*送信ボタン*/
.cfBox .txt_cent {
	text-align: center;
}
.cfBox .txt_cent input[type="submit"] {
	-webkit-appearance: none;
}
.cfBox .txt_cent input {
	padding: 25px 150px;
	margin: 0 auto;
	display: inline-block;
	background: var(--main);
	border: none;
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	transition: 0.5s;
	border-radius: 40px;
	font-size: 25px;
	line-height: 1;
	font-weight: bold;
	box-shadow: 0 4px rgba(154, 154, 154, 0.3);
}
.cfBox .txt_cent input:hover {
	filter: brightness(1.1);
	transition: 0.5s;
}
.cfBox .txt_cent .wpcf7-spinner {
	width: 0;
	height: 0;
	padding: 0;
	margin: 0;
	display: none;
}
/*送信エラー*/
.wpcf7 form .wpcf7-response-output {
	width: 100%;
	max-width: 1000px;
	padding: 30px;
	margin: 50px auto 0;
}
.wpcf7-not-valid-tip {
	display: inline-block;
	margin: 0 0 0 5px;
}

/*-現在の状況*/
.cfBox .fileStatus {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 50px;
	margin: 0 auto 30px;
}
.cfBox .fileStatus_info {
	width: calc(100% - 200px - 50px);
	padding: 0;
	margin: 0;
	position: relative;
}
.cfBox .fileStatus_info > p {
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
}
.cfBox .fileStatus_info > p strong {
	display: inline-block;
	color: #ff732f;
}
.cfBox .fileStatus > figure {
	width: 200px;
	padding: 0;
	margin: 0;
	position: relative;
}
.cfBox .fileStatus > figure img {
	width: 100%;
	height: auto;
}
.cfBox .fileStatus:first-of-type {
	padding: 0 0 30px;
	margin: 0 auto 30px;
	border-bottom: 1px solid #ccc;
}

/*プライバシー*/
.cf_privacy {
	padding: 0;
	margin: 0 auto 30px;
}
.cf_privacy > p {
	text-align: center;
}
.cf_privacy a {
	color: var(--red);
	text-decoration: underline;
}

/*ボックス*/
#policy_box {
	width: 100%;
	height: 300px;
	padding: 30px;
	margin: 30px auto;
	border: 1px solid #aaa;
	background: #fafafa;
	overflow: hidden;
	overflow-y: scroll;
}
#contents #policy_box h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto 15px;
	position: relative;
	border: none;
	background: none;
	font-size: 18px;
	line-height: 1.2em;
	text-align: left;
}
#contents #policy_box p {
	padding: 0;
	margin: 0 auto 10px;
}
#contents #policy_box ul {
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	list-style-position: inside;
}
#contents #policy_box ul li {
	margin: 0;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.estimate_txt {
		width: calc(100%);
		padding: 30px 0;
		margin: 0 auto;
	}
	#estimateFormWrap {
		width: 100%;
		padding: 40px 0;
		margin: 0 auto;
		background: #fafafa;
		position: relative;
	}
	.content #estimateFormWrap > h2 {
		margin: 0 auto 20px;
	}
	#estimateFormWrap .titleBox em {
		display: block;
		width: 100%;
		font-size: 20px;
	}
	.content #estimateFormWrap .titleBox h2 {
		width: 100%;
		margin-top: 5px;
	}

	/* 入力フォームテーブル */
	/* 入力フォームテーブル */
	.cfBox dl {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		border: none;
		background: none;
		display: flex;
		display: -webkit-flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 10px;
	}
	.cfBox dl dt {
		display: block;
		width: 100%;
		padding: 0 0 0 45px;
		margin: 0;
		font-size: 16px;
		line-height: 1.4em;
		font-weight: bold;
		position: relative;
	}
	.cfBox dl dt small {
		font-size: 12px;
	}
	.cfBox dl dd {
		width: calc(100%);
		padding: 0;
		margin: 0;
		position: relative;
	}
	.cfBox .att {
		display: inline-block;
		padding: 5px 8px;
		margin: 0;
		background: #ff732f;
		border-radius: 20px;
		color: #ffffff;
		font-size: 10px;
		line-height: 1;
		font-weight: bold;
		position: absolute;
		top: 2px;
		left: 0;
	}
	.cfBox .any {
		display: inline-block;
		padding: 5px 8px;
		margin: 0;
		border-radius: 20px;
		color: #ffffff;
		font-size: 10px;
		line-height: 1;
		font-weight: bold;
		position: absolute;
		top: 2px;
		left: 0;
	}
	.cfBox .block {
		display: block;
		padding: 0;
		margin: 0 auto 10px;
	}
	.cfBox .wpcf7-not-valid-tip {
		display: block;
		padding: 0;
		margin: 10px 0 0;
	}
	.cfBox dl dd small {
		display: block;
		font-size: 12px;
		padding: 0;
		margin: 10px 0 0;
	}

	.cfBox input,
	.cfBox textarea {
		font-size: 14px;
		background: #fff;
		max-width: 100%;
	}

	.cfBox small {
		font-size: 10px;
		line-height: 1.4em;
		margin-bottom: 5px;
	}

	.cfBox strong {
		display: block;
		padding: 0;
		margin: 0 auto 5px;
		font-weight: bold;
		line-height: 1.4em;
		font-size: 12px;
	}

	/*フォーム幅*/
	.cfBox input.w10,
	.cfBox textarea.w10 {
		width: 15%;
		padding: 5px;
	}
	.cfBox input.w25,
	.cfBox textarea.w25 {
		width: 50%;
	}
	.cfBox input.w50,
	.cfBox textarea.w50 {
		width: 100%;
	}
	.cfBox input.w100,
	.cfBox textarea.w100 {
		width: 100%;
	}

	/*チェックボックス*/
	.wpcf7-checkbox {
		padding: 0;
		margin: 0;
	}
	.wpcf7-checkbox .wpcf7-list-item {
		padding: 0;
		margin: 0 1em 0 0;
	}
	.wpcf7-checkbox label {
		display: inline-flex;
		justify-content: flex-start;
		align-items: center;
		column-gap: 5px;
		padding: 0;
		margin: 0;
	}
	.cfBox input[type=checkbox] {
		appearance: none;
		-webkit-appearance: none;
		width: 15px;
		height: 15px;
		padding: 3px;
		border: 1px solid #c8c8c8;
		position: relative;
		cursor: pointer;
		border-radius: 0;
	}
	.cfBox input[type=checkbox]:checked::after {
		content: "✔";
		position: absolute;
		top: -4px;
		left: 2px;
		font-size: 20px;
		color: var(--main);
	}
	.wpcf7-checkbox .wpcf7-list-item-label {
		font-size: 15px;
	}

	/*フォームリスト*/
	.formList {
		width: 100%;
		padding: 0;
		margin: 0;
		list-style: none;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
		position: relative;
	}
	.formList > li {
		width: 100%;
		padding: 0;
		margin: 5px 0;
		display: flex;
		display: -webkit-flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: nowrap;
		position: relative;
		white-space: nowrap;
	}
	.formList > li > span:first-of-type {
		min-width: 35%;
		position: relative;
		display: flex;
		display: -webkit-flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: nowrap;
	}
	.formList > li > span:first-of-type::before {
		content: '';
		display: block;
		width: 10px;
		height: 10px;
		background: var(--main);
		padding: 0;
		margin: 0 5px 0 0;
	}
	.formList > li input {
		margin: 0 5px;
		width: 90%;
	}
	/*ファイル添付*/
	.fileTxt {
		margin-bottom: 5px;
	}
	/*キャンペーン*/
	.cfBox p.ef_campaign {
		display: block;
		margin-bottom: 20px;
		text-align: left;
	}
	.cfBox p.ef_campaign > span {
		display: block;
	}
	.cfBox p.ef_campaign:last-of-type {
		margin-bottom: 0;
	}
	/*送信ボタン*/
	.cfBox .txt_cent {
		width: calc(100%);
		text-align: center;
		margin: 0 auto;
	}
	.cfBox .txt_cent input[type="submit"] {
		-webkit-appearance: none;
	}
	.cfBox .txt_cent input {
		width: 100%;
		padding: 20px 30px;
		margin: 0 auto;
		display: block;
		border: none;
		font-size: 20px;
		color: #fff;
		font-weight: bold;
		cursor: pointer;
		transition: 0.5s;
		border-radius: 40px;
	}
	.cfBox .txt_cent .wpcf7-spinner {
		width: 0;
		height: 0;
		padding: 0;
		margin: 0;
	}
	/*送信エラー*/
	.wpcf7 form .wpcf7-response-output {
		width: calc(100% - 40px);
		max-width: 100%;
		padding: 10px;
		margin: 30px auto 0;
	}
	.wpcf7-not-valid-tip {
		display: inline-block;
		margin: 0 0 0 5px;
	}

	/*-現在の状況*/
	.cfBox .fileStatus {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 15px;
		margin: 0 auto 20px;
	}
	.cfBox .fileStatus_info {
		width: calc(100%);
	}
	.cfBox .fileStatus_info > p {
		padding: 0;
		margin: 0 auto 10px;
		line-height: 1.4em;
		font-size: 12px;
	}
	.cfBox .fileStatus_info > p strong {
		display: inline-block;
		color: #ff732f;
	}
	.cfBox .fileStatus > figure {
		width: 100%;
		text-align: center;
	}
	.cfBox .fileStatus > figure img {
		width: 70%;
		height: auto;
	}
	.cfBox .fileStatus:first-of-type {
		padding: 0 0 20px;
		margin: 0 auto 20px;
		border-bottom: 1px solid #ccc;
	}
}


/************************************************************/
/*　トップページ　対応エリア
/************************************************************/
.topArea {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
	background: #fff;
	position: relative;
	z-index: 0;
}
.topArea > dl {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
}
.topArea > dl dt {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	padding: 15px;
	margin: 0 auto;
	background: var(--main);
	font-size: 20px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
}
.topArea > dl dt::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background-image: url('https://eco-choku.com/wp-content/uploads/icon_pin.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
.topArea > dl dd {
	padding: 45px;
	margin: 0;
	border: 5px solid var(--main);
	border-top: none;
	position: relative;
	background: #fafafa;
}
.topArea > dl dd p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
.topArea > dl + p {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.topArea {
		width: 100%;
		padding: 20px;
	}
	.topArea > dl {
		width: 100%;
		max-width: 100%;
	}
	.topArea > dl dt {
		column-gap: 10px;
		padding: 15px;
		font-size: 4vw;
		line-height: 1.2em;
	}
	.topArea > dl dd {
		padding: 20px;
	}
	.topArea > dl + p {
		width: 100%;
		max-width: 100%;
	}
}

/************************************************************/
/*　モーダルウィンドウ
/************************************************************/
.modal {
	display: none;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100000;
}
.modal .modal__bg {
	background: rgba(0,0,0,0.8);
	height: 100vh;
	position: absolute;
	width: 100%;
}
.modal .modal__content {
	background: #fff;
	padding: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	max-width: 1100px;
	height: calc(100vh - 100px);
	overflow-y: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.modal .modal__content::-webkit-scrollbar{
	display:none;
}
.modal .closeBtn {
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 10000;
	background: none;
	text-indent: -9999px;
}
.modal .closeBtn::before,
.modal .closeBtn::after {
	content: '';
	display: block;
	width: 5px;
	height: 100%;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(45deg);
	-webkit-transform: translate(-50%,-50%) rotate(45deg);
	transform-origin: center;
}
.modal .closeBtn::after {
	transform: translate(-50%,-50%) rotate(-45deg);
	-webkit-transform: translate(-50%,-50%) rotate(-45deg);
	transform-origin: center;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*モーダルウィンドウ*/
	.modal {
		display: none;
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
	}
	.modal .modal__content {
		padding: 30px;
		width: calc(100% - 60px);
	}
	.modal .closeBtn {
		top: 15px;
	}
}