@charset "UTF-8";

/*----------------------------------------------------------*/
/* カスタマイズ用CSS
/*----------------------------------------------------------*/
:root {
	--main: #2153a5;
	--sub:  #00b6ec;
	--yellow: #fff44b;
	--red: #db0000;
	--base: #d9f4fc;
	--base2: #fffddb;
	--text: #373737;
	--link: #2153a5;
	--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 Sans JP", sans-serif;
	--font-en: "Outfit", sans-serif;
	--font-mincho: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	--font-all: YakuHanJP, "Outfit", "Noto Sans JP", sans-serif;
	--ease: all 0.3s ease;
}
*{
	margin: 0;
	padding: 0;
}
*:focus {
	outline: none;
}
html{
	box-sizing:border-box;
	line-height:1;
	font-size: 62.5%; /*  50 56.25 62.5 68.75 75*/
	background: #fff;
	-webkit-font-smoothing: antialiased;
}
html {
visibility: hidden;
}
html.wf-active {
visibility: visible;
}
::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;
	letter-spacing: normal;
	color: var(--text);
}
.content div {
	margin: 0;
}

/*構成*/
#all_wrap {
	width: calc(100%);
	padding: 0;
	margin: 0;
	position: relative;
}
.widget {
	padding: 0;
	margin: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*構成*/
	#all_wrap {
		width: calc(100%);
		padding: 0;
		margin: 0 auto;
		position: relative;
		padding-top: 50px;
	}
	.l-footer {
		width: calc(100%);
		padding: 0;
		margin: 0 auto;
		position: relative;
	}
	.widget {
		margin-bottom: 0;
	}
}


.content a { color: var(--sub); font-weight: 500; text-decoration: underline; transition: var(--ease); }
.content a:hover { color: var(--link); font-weight: 500; text-decoration: none; transition: var(--ease); }
img { width: 100%; height: auto; }

.content .size-full,
.content .size-large,
.content .size-medium,
.content .size-thumbnail {
	margin-bottom: 1em;
}

#all_wrap .content a.wp-block-button__link {
	display: block;
	width: 50%;
	color: #fff;
	transition: ease 0.2s;
	position: relative;
	padding: 10px 20px;
	margin: 0 auto;
}
#all_wrap .content a.wp-block-button__link:hover { text-decoration: none; opacity: 0.8; transition: ease 0.2s; }
#all_wrap .content a.wp-block-button__link::after {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	background: none;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(0,-50%) rotate(-45deg);
	-webkit-transform: translate(0,-50%) rotate(-45deg);
	transition: ease 0.2s;
}
#all_wrap .content a.wp-block-button__link:hover::after {
	right: 18px;
	transition: ease 0.2s;
}

/* スクロールの幅の設定 */
html::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

/* スクロールの背景の設定 */
html::-webkit-scrollbar-track {
	border-radius: 0;
	box-shadow: 0 0 4px #fff inset;
}

/* スクロールのつまみ部分の設定 */
html::-webkit-scrollbar-thumb {
	border-radius: 0;
	background: #999;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}

#all_wrap .single_content a { color: var(--text); font-weight: 500; transition: ease 0.2s; }
#all_wrap .single_content a:hover { color: #var(--text); font-weight: 500; text-decoration: underline; transition: ease 0.2s; }


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap { position: relative; overflow: hidden; }
	#all_wrap .content a.wp-block-button__link {
		display: block;
		width: 90%;
		color: #fff;
		transition: ease 0.2s;
		position: relative;
		padding: 10px 50px;
		margin: 0 auto;
	}
}

/*ページトップ*/
#to_top {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 40px;
	height: 40px;
	background: var(--main);
	border-radius: 50%;
	position: fixed;
	bottom: 25px;
	right: 25px;
	transition: var(--ease);
	opacity: 0;
	visibility: hidden;
	filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.1));
}
#to_top.fixed {
	transition: var(--ease);
	opacity: 1;
	visibility: visible;
}
#to_top::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	padding: 0;
	margin: 0;
	background: none;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	top: calc(50% + 2px);
	left: 50%;
	transform: translate(-50%,-50%) rotate(-45deg);
	-webkit-transform: rtranslate(-50%,-50%) rotate(-45deg);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*ページトップ*/
	#to_top {
		width: 30px;
		height: 30px;
		bottom: 65px;
		right: 15px;
	}
}

/*reCAPTCHA*/
.grecaptcha-badge {
	z-index: 999;
}


/************************************************************/
/*　共通
/************************************************************/
#all_wrap .contHead {
	width: 100%;
	max-width: 1200px;
	padding: 40px 0 35px;
	margin: 0 auto 50px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	grid-row-gap: 15px;
	border-bottom: 1px solid var(--main);
}
#all_wrap .contHead em {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 20px;
	width: 100%;
	height: 22px;
	padding: 0;
	margin: 0 auto;
	position: absolute;
	top: -11px;
	left: 0;
	font-family: var(--font-en);
	font-size: 16px;
	line-height: 1;
	font-weight: 500;
	color: var(--main);
	font-style: normal;
	white-space: nowrap;
}
#all_wrap .contHead em::before,
#all_wrap .contHead em::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url('https://mizu-pro.jp/wp-content/uploads/contHead_line.svg');
	background-size: auto 100%;
	background-position: right center;
	background-repeat: no-repeat;
}
#all_wrap .contHead em::after {
	transform: scale(-1,-1);
}
#all_wrap .contHead > h2,
#all_wrap .content .contHead > h2 {
	width: fit-content;
	padding: 7px 10px 10px;
	margin: 0 auto;
	position: relative;
	border: none;
	background: var(--main);
	font-size: 40px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-align: center;
	z-index: 5;
}
#all_wrap .contHead > p,
#all_wrap .content .contHead > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 16px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	z-index: 5;
}

/*背景あり*/
#all_wrap .contHead.bg::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(https://mizu-pro.jp/wp-content/uploads/reason_shade.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transform: scale(-1, -1);
	opacity: 0.3;
}
#all_wrap .contHead.bg h2 {
	font-size: 30px;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .contHead {
		width: 100%;
		max-width: 100%;
		padding: 20px 0 15px;
		margin: 0 auto 20px;
		grid-row-gap: 8px;
	}
	#all_wrap .contHead em::before,
	#all_wrap .contHead em::after {
		background-size: auto 130%;
	}
	#all_wrap .contHead em {
		column-gap: 20px;
		height: 20px;
		top: -10px;
		font-size: 12px;
	}
	#all_wrap .contHead > h2,
	#all_wrap .content .contHead > h2 {
		width: fit-content;
		font-size: 18px;
	}
	#all_wrap .contHead > p,
	#all_wrap .content .contHead > p {
		font-size: 12px;
	}
	/*背景あり*/
	#all_wrap .contHead.bg h2 {
		font-size: 18px;
	}
}



/*sec*/
.sec {
	padding: 0;
	margin: 0 auto;
	position: relative;
}
.sec.mb100 {
	margin-bottom: 100px;
}

/*ボタン*/
#all_wrap .btn {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
	position: relative;
	padding: 0;
	margin: 0 auto;
}
#all_wrap .btn > a {
	display: inline-flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	column-gap: 10px;
	padding: 15px 40px 15px 40px;
	margin: 0;
	background: var(--main);
	border-radius: 45px;
	font-family: var(--font-en);
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
	position: relative;
}
#all_wrap .btn > a:hover {
	background: var(--sub);
	transition: var(--ease);
}
#all_wrap .sidebarBox .btn > a {
	display: flex;
	width: 100%;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*ボタン*/
	#all_wrap .btn > a {
		column-gap: 10px;
		padding: 12px 20px 12px 20px;
		border-radius: 35px;
		font-size: 14px;
	}
}

/*本文*/
#all_wrap .content {
	font-size: 15px;
	line-height: 2;
	padding: 0;
	margin: 0 auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*本文*/
	#all_wrap .content {
		font-size: 14px;
		line-height: 2;
		padding: 0;
		margin: 0 auto;
	}
}

/************************************************************/
/*　コンテンツ整形
/************************************************************/
#all_wrap p {
	font-size: 15px;
	line-height: 2;
	font-weight: 500;
	font-feature-settings: "palt" 1;
	font-style: normal;
}
#all_wrap .content p {
	font-size: 15px;
	line-height: 2;
	padding: 0;
	margin: 0 auto 20px;
}
#all_wrap img.alignleft {
	margin-right: 30px;
	margin-bottom: 30px;
}
#all_wrap img.alignright {
	margin-left: 30px;
	margin-bottom: 30px;
}

/*下マージン*/
#all_wrap .content .mb0,
#all_wrap .content .mb0 { margin-bottom: 0px; }
#all_wrap .content .mb5,
#all_wrap .content .mb5 { margin-bottom: 5px; }
#all_wrap .content .mb10,
#all_wrap .content .mb10 { margin-bottom: 10px; }
#all_wrap .content .mb20,
#all_wrap .content .mb20 { margin-bottom: 20px; }
#all_wrap .content .mb30,
#all_wrap .content .mb30 { margin-bottom: 30px; }
#all_wrap .content .mb40,
#all_wrap .content .mb40 { margin-bottom: 40px; }
#all_wrap .content .mb50,
#all_wrap .content .mb50 { margin-bottom: 50px; }
#all_wrap .content .mb60,
#all_wrap .content .mb60 { margin-bottom: 60px; }
#all_wrap .content .mb70,
#all_wrap .content .mb70 { margin-bottom: 70px; }
#all_wrap .content .mb80,
#all_wrap .content .mb80 { margin-bottom: 80px; }
#all_wrap .content .mb90,
#all_wrap .content .mb90 { margin-bottom: 90px; }
#all_wrap .content .mb100,
#all_wrap .content .mb100 { margin-bottom: 100px; }
#all_wrap .content .mb150,
#all_wrap .content .mb150 { margin-bottom: 150px; }
#all_wrap .content .mb200,
#all_wrap .content .mb200 { margin-bottom: 200px; }

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap p {
		font-size: 14px;
		line-height: 2em;
		font-weight: 500;
		font-feature-settings: "palt" 1;
		font-style: normal;
	}
	#all_wrap .content p {
		font-size: 14px;
		line-height: 2em;
		padding: 0;
		margin-bottom: 10px;
	}

	/*下マージン*/
	#all_wrap .content .mb0,
	#all_wrap .content .mb0 { margin-bottom: 0px; }
	#all_wrap .content .mb5,
	#all_wrap .content .mb5 { margin-bottom: 5px; }
	#all_wrap .content .mb10,
	#all_wrap .content .mb10 { margin-bottom: 10px; }
	#all_wrap .content .mb20,
	#all_wrap .content .mb20 { margin-bottom: 20px; }
	#all_wrap .content .mb30,
	#all_wrap .content .mb30 { margin-bottom: 30px; }
	#all_wrap .content .mb40,
	#all_wrap .content .mb40 { margin-bottom: 20px; }
	#all_wrap .content .mb50,
	#all_wrap .content .mb50 { margin-bottom: 25px; }
	#all_wrap .content .mb60,
	#all_wrap .content .mb60 { margin-bottom: 30px; }
	#all_wrap .content .mb70,
	#all_wrap .content .mb70 { margin-bottom: 35px; }
	#all_wrap .content .mb80,
	#all_wrap .content .mb80 { margin-bottom: 40px; }
	#all_wrap .content .mb90,
	#all_wrap .content .mb90 { margin-bottom: 45px; }
	#all_wrap .content .mb100,
	#all_wrap .content .mb100 { margin-bottom: 50px; }
	#all_wrap .content .mb150,
	#all_wrap .content .mb150 { margin-bottom: 70px; }
	#all_wrap .content .mb200,
	#all_wrap .content .mb200 { margin-bottom: 100px; }
}

/*== スマホ・PC 非表示 ==*/
.pc_none { display: none !important; }
.sp_none { display: block !important; }
@media only screen and (max-width: 768px){
	.pc_none { display: block !important; }
	.sp_none { display: none !important; }
}

/************************************************************/
/*　JS
/************************************************************/

/*lightbox*/
.nivo-lightbox-effect-fade {
	visibility: hidden;
	opacity: 0;
}
.nivo-lightbox-overlay.nivo-lightbox-open {
	visibility: visible;
	opacity: 1;
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
	opacity: 1;
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
	background-size: 20px 20px;
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
	width: 20px;
	height: 20px;
}

/************************************************************/
/*　フェードアニメーション
/************************************************************/
/*フェードアップ*/
.fut {
	opacity: 0;
	transition-delay: 0.3s;
	transition-duration: 1s;
	animation-delay: 0.5s;
}
.fut.delay {
	animation-delay: 0.8s;
}
.fut.delay2 {
	animation-delay: 1.1s;
}
.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/*フェードダウン*/
.fdt {
	opacity: 0;
	transition-delay: 0.3s;
	transition-duration: 1s;
	animation-delay: 0.5s;
}
.fdt.delay {
	animation-delay: 0.8s;
}
.fdt.delay2 {
	animation-delay: 1.1s;
}
.fadeDown {
	animation-name: fadeDownAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeDownAnime {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/*フェードイン*/
.fade {
	opacity: 0;
	transition-delay: 0.3s;
	transition-duration: 1s;
	animation-delay: 0.5s;
}
.fade.delay {
	animation-delay: 0.8s;
}
.fade.delay2 {
	animation-delay: 1.1s;
}
.fadeIn {
	animation-name: fadeInAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeInAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
/*フェードショー*/
.show::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: #fff;
	position: absolute;
	top: 0;
	right: 0;
	transform-origin: right;
	z-index: 11;
	animation-delay: 0.7s;
}
.show.delay::before {
	animation-delay: 1s;
}
.show.delay2::before {
	animation-delay: 1.2s;
}
.showopen::before {
	animation-name: fadeShowAnime;
	animation-duration: 1s;
	animation-timing-function: cubic-bezier(0.4, 0.4, 0, 1);
	animation-fill-mode: forwards;
}
@keyframes fadeShowAnime {
	from {
		width: 100%;
	}
	to {
		width: 0%;
	}
}
/*ズームアウト（画像用）*/
.zoomout {
	animation-name: zoomout;
	animation-duration: 5s;
	animation-fill-mode: forwards;
}
@keyframes zoomout {
	from {
		transform: translate(-50%,-50%) scale(1.1);
		transform-origin: center;
	}
	to {
		transform: translate(-50%,-50%) scale(1);
		transform-origin: center;
	}
}

/************************************************************/
/*　構成
/************************************************************/
.l-main {
	width: calc(100%);
	margin-bottom: 0;
	z-index: 1;
	position: static;
}
.top_wrapper {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
#all_wrap .l-wrapper {
	width: calc(100% - 100px);
	max-width: 1000px;
	padding: 50px 0 100px;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: stretch;
	column-gap: 50px;
}
#all_wrap .l-wrapper.single {
	width: calc(100% - 100px);
	max-width: 1000px;
	padding: 50px 0 100px;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: stretch;
	column-gap: 50px;
}
.l-wrapper-full {
	position: relative;
	width: 100%;
	padding: 0;
	margin: 0 auto;
}
.l-wrapper-cat {
	position: relative;
	width: calc(100% - 100px);
	max-width: 1200px;
	padding: 50px 0 100px;
	margin: 0 auto;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: stretch;
	column-gap: 50px;
}

.wrapper {
	width: 100%;
	padding: 50px 0 100px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
.wrapper.cat {
	width: 100%;
	padding: 50px 0 100px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: stretch;
	align-items: stretch;
	column-gap: 50px;
}

#all_wrap .l-wrapper .l-main {
	width: calc(100% - 300px);
	padding: 0;
	margin: 0 auto;
	order: 1;
}
#all_wrap .l-wrapper-full .l-main {
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0;
}
#all_wrap .l-wrapper-cat .l-main {
	width: 100%;
	padding: 0;
	margin: 0;
	order: 1;
}

.page {
	width: 100%;
}
.dividerBottom {
	margin-bottom: 0;
}
.pageContents .content,
.archiveContents .content {
	padding: 0;
	margin: 0 auto;
}
#all_wrap .l-wrapper-full .pageContents .content, #all_wrap .l-wrapper-full .archiveContents .content {
	margin: 0;
	padding: 0;
}
#all_wrap .l-wrapper-full .sitemap_content {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0 auto 100px;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .l-wrapper .l-main {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	#all_wrap.main_page .l-wrapper {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	#all_wrap.sub_page .l-wrapper {
		width: 100%;
		max-width: 100%;
		padding: 20px;
		margin: 0 auto;
		flex-wrap: wrap;
		grid-row-gap: 30px;
	}
	#all_wrap .l-wrapper.single {
		width: 100%;
		max-width: 100%;
		padding: 20px;
		margin: 0 auto;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		align-content: stretch;
		align-items: stretch;
		column-gap: 0;
	}

	#all_wrap .l-wrapper .l-main {
		width: 100%;
		min-width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	#all_wrap .l-wrapper-full .l-main {
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}

	.l-wrapper {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.l-wrapper-full {
		position:relative;
		width: 100%;
		margin: 0 auto;
		padding: 0;
	}
	.l-wrapper-full.cat {
		position:relative;
		width: 100%;
		margin: 0 auto;
		padding: 30px;
	}
	.l-wrapper-cat {
		position: relative;
		width: 100%;
		padding: 30px 0;
		margin: 0 auto;
	}

	/*トップ構成*/
	.top_wrapper {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#topMain {
		width: calc(100%);
		padding: 0;
		margin: 0;
		overflow: hidden;
		background: #fff;
	}

	.side-banner {
		display: block;
		margin-bottom: 0 !important;
	}
	.side-contents {
		display: none;
	}

	.page {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.content {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.postContents {
		width: calc(100%);
		margin: 0 auto;
		padding: 0;
	}
	.pageContents .content,
	.archiveContents .content {
		padding: 0;
		margin: 0 auto;
	}

	/*グーグルマップ表示*/
	.l-wrapper iframe {
		width: 100%;
	}

}

#all_wrap .pager {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0 auto;
	margin-top: 50px;
}

/************************************************************/
/*　見出し　＆　パンくず
/************************************************************/

h1,h2,h3,h4,h5,h6,b,strong {
	font-family: var(--font-ttl);
	font-weight: 900;
	font-style: normal;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt" 1;
	font-size: 1em;
}

/*ページビジュアル*/
#pagevisual {
	width: 100%;
	padding: 70px 0;
	margin: 0 auto;
	background-image: url('https://mizu-pro.jp/wp-content/uploads/contHead_bg.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
}
#all_wrap #page_title {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	grid-row-gap: 15px;
	z-index: 10;
}
#all_wrap #page_title > em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	font-family: var(--font-en);
	font-size: 20px;
	line-height: 1;
	font-style: normal;
	font-weight: 700;
	color: var(--main);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-align: center;
	order: 1;
}
#all_wrap #page_title > h1 {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 30px;
	line-height: 1;
	font-style: normal;
	font-weight: 700;
	color: var(--text);
	text-align: center;
}
/*画像*/
#pagevisual.image::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: var(--main);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	opacity: 0.3;
}
#all_wrap #pagevisual.image #page_title > em {
	color: #fff;
}
#all_wrap #pagevisual.image #page_title > h1 {
	color: #fff;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*ページビジュアル*/
	#pagevisual {
		width: 100%;
		padding: 30px 0;
		background-image: url('https://mizu-pro.jp/wp-content/uploads/contHead_bg.webp');
	}
	#all_wrap #page_title {
		width: 100%;
		max-width: 100%;
		grid-row-gap: 10px;
	}
	#all_wrap #page_title > em {
		font-size: 12px;
		order: 1;
	}
	#all_wrap #page_title > h1 {
		font-size: 18px;
	}
}

/*h2*/
#all_wrap .content h2 {
	display: block;
	width: 100%;
	padding: 10px 20px;
	margin: 2em auto 1em;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	font-feature-settings: "palt" 1;
	font-style: normal;
	border: none;
	border-bottom: 1px solid var(--main);
	border-top: 1px solid var(--main);
	background-image: url('https://mizu-pro.jp/wp-content/uploads/contHead_bg.webp');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}
#all_wrap .content h2 small {
	font-size: 14px;
}
#all_wrap .content h2:first-of-type {
	margin-top: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*h2*/
	#all_wrap .content h2 {
		display: block;
		width: 100%;
		padding: 10px 20px;
		margin: 2em auto 1em;
		font-size: 18px;
		line-height: 1.4em;
		font-weight: 700;
		color: var(--text);
		font-feature-settings: "palt" 1;
		font-style: normal;
		border: none;
		border-bottom: 1px solid var(--main);
		border-top: 1px solid var(--main);
		background-image: url('https://mizu-pro.jp/wp-content/uploads/contHead_bg.webp');
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		position: relative;
	}
	#all_wrap .content h2 small {
		font-size: 14px;
	}
	#all_wrap .content h2:first-of-type {
		margin-top: 0;
	}
}

/*h3*/
#all_wrap .content h3 {
	padding: 10px 10px 10px 15px;
	margin: 1em auto 1em;
	border: none;
	background: #fafafa;
	border-left: 5px solid var(--main);
	font-size: 18px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	position: relative;
}
#all_wrap .content h3:first-of-type {
	margin-top: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*h3*/
	#all_wrap .content h3 {
		padding: 10px 10px 10px 10px;
		margin: 1em auto 1em;
		border: none;
		background: #fafafa;
		border-left: 5px solid var(--main);
		font-size: 15px;
		line-height: 1.4em;
		font-weight: 700;
		color: var(--text);
		position: relative;
	}
}

/*h4*/
#all_wrap .content h4 {
	display: block;
	padding: 0;
	margin: 1em auto 10px;
	position: relative;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.4em;
	position: relative;
	color: var(--main);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*h4*/
	#all_wrap .content h4 {
		display: block;
		padding: 0;
		margin: 1em auto 0.5em;
		position: relative;
		font-weight: 700;
		font-size: 15px;
		line-height: 1.4em;
		position: relative;
		color: var(--main);
	}
}

/*h5*/
#all_wrap .content h5 {
	display: block;
	padding: 0;
	margin: 0.5em auto 5px;
	position: relative;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.4em;
	position: relative;
	color: var(--text);
}
#all_wrap .content h5:first-of-type {
	margin-top: 0;
}

/************************************************************/
/*　ページネーション
/************************************************************/
.pager {
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
}
.pager > li {
	line-height: 1;
	padding: 0;
	margin: 0 5px 0 0;
	text-align: center;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--font-en);
	font-weight: lighter;
	font-style: normal;
	font-feature-settings: "palt";
	color: var(--text);
	border: 1px solid var(--text);
}
.pager > li:hover {
	border: 1px solid var(--text);
	background: none;
}
.pager > li.pager__item-current {
	padding: 5px;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--text);
	border: 1px solid var(--text);
	color: #fff;
}
.pager > li.pager__item-next,
.pager > li.pager__item-prev {
	background: none;
	border-radius: 0;
	font-family: var(--font-en);
	font-weight: lighter;
	font-style: normal;
	font-feature-settings: "palt";
}
.pager > li a {
	text-align: center;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--font-en);
	font-weight: lighter;
	font-style: normal;
	font-weight: normal;
	font-feature-settings: "palt";
	transition: ease 0.2s;
	line-height: 1;
	background: none;
}
.pager > li a:hover {
	background: var(--text);
	color: #fff;
	font-family: var(--font-en);
	font-weight: lighter;
	font-style: normal;
	font-weight: normal;
	font-feature-settings: "palt";
	transition: ease 0.2s;
	line-height: 1;
}

/************************************************************/
/*　パンくず
/************************************************************/
/*パンくず*/
.breadcrumb {
	width: calc(100%);
	max-width: 100%;
	padding: 15px 50px;
	margin: 0 auto;
	background: #fafafa;
	border: none;
	overflow-x: scroll;
	position: relative;
	z-index: 5;
	-ms-overflow-style: none;
	scrollbar-width: none;
	z-index: 10;
}
#all_wrap .breadcrumb .container {
	width: calc(100%);
	max-width: 1200px;
}
.breadcrumb::-webkit-scrollbar { 
	display: none;
}
.breadcrumb > ul {
	display: flex;
	justify-content: flex-start;
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	font-size: 10px;
	color: var(--text);
	justify-content: flex-start;
	font-family: var(--font-jp);
}
.breadcrumb a {
	font-size: 10px;
	line-height: 1;
	padding: 0;
	margin: 0;
	text-decoration: none;
	transition: var(--ease);
	color: var(--text);
	font-family: var(--font-jp);
	font-weight: 500;
	font-style: normal;
	font-feature-settings: "palt";
}
.breadcrumb a:hover {
	text-decoration: none;
	transition: var(--ease);
	color: var(--text);
}
.breadcrumb__list {
	padding: 0;
}
.breadcrumb__item {
	position: relative;
	display: table-cell;
	white-space: nowrap;
	padding-right: 15px;
	padding-left: 15px;
	font-size: 10px;
	line-height: 1;
	color: var(--text);
}
.breadcrumb__item::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -2px;
	width: 5px;
	height: 5px;
	border-top: 1px solid var(--text);
	border-right: 1px solid var(--text);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*パンくず*/
	.breadcrumb {
		width: 100%;
		max-width: 100%;
		padding: 10px 20px;
		margin: 0 auto;
		border: none;
		overflow-x: scroll;
		position: relative;
		z-index: 5;
		-ms-overflow-style: none;
		scrollbar-width: none;
		z-index: 10;
	}
	#all_wrap .breadcrumb .container {
		width: 100%;
		max-width: 100%;
	}
	.breadcrumb::-webkit-scrollbar {
		display: none;
	}
	.breadcrumb::before {
		display: none;
	}
	.breadcrumb::after {
		display: none;
	}
	.breadcrumb > ul {
		width: 100%;
		padding: 0;
		margin: 0;
		font-size: 10px;
		background: none;
		justify-content: flex-start;
	}
	.breadcrumb a {
		font-size: 10px;
		line-height: 1;
		padding: 0;
		margin: 0;
		text-decoration: none;
		transition: ease 0.2s;
	}
	.breadcrumb a:hover {
		text-decoration: none;
		transition: ease 0.2s;
		opacity: 0.8;
	}
	.breadcrumb__list {
		padding: 0;
		display: block;
	}
	.breadcrumb__item {
		position: relative;
		display: table-cell;
		white-space: nowrap;
		padding-right: 15px;
		padding-left: 15px;
		font-size: 10px;
		line-height: 1;
	}
	.breadcrumb__item::after {
		content: "";
		position: absolute;
		right: 0;
		top: 50%;
		margin-top: -2px;
		width: 5px;
		height: 5px;
	}
}


/************************************************************/
/*　フォントサイズ
/************************************************************/
.content table {
	font-size: 15px;
	color: #fff;
}


/************************************************************/
/*　ヘッダー
/************************************************************/
#header {
	width: 100%;
	min-width: 1360px;
	padding: 10px 50px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 20px;
}
/*ロゴ*/
#all_wrap #logo {
	width: auto;
	height: 80px;
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
}
#logo img {
	width: auto;
	height: 100%;
}
/*テキスト*/
#all_wrap .header_txt {
	padding: 0;
	margin: 0 auto 0 0;
	text-align: left;
	font-size: 10px;
	line-height: 1.4em;
	font-weight: 500;
	color: var(--text);
	white-space: nowrap;
	letter-spacing: 0.1em;
}
/*アワード*/
#all_wrap .award_list {
	width: auto;
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
}
#all_wrap .award_list > li {
	width: auto;
	height: 70px;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .award_list > li img {
	width: auto;
	height: 100%;
}
/*電話*/
.tel {
	width: auto;
	width: fit-content;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	grid-row-gap: 3px;
}
.tel > span {
	display: block;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 12px;
	line-height: 1;
	font-weight: 600;
	color: var(--text);
}
.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: 600;
	color: #f77311;
	white-space: nowrap;
	position: relative;
	transition: var(--ease);
}
.tel > a::before {
	content: '';
	display: block;
	width: auto;
	height: 20px;
	aspect-ratio: 64 / 42;
	background-image: url('https://mizu-pro.jp/wp-content/uploads/icon_fd.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
.tel > a:hover {
	filter: brightness(1.1);
	transition: var(--ease);
}
#all_wrap .tel > p {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 5px;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 11px;
	line-height: 1;
	font-weight: 500;
	color: var(--text);
}
#all_wrap .tel > p em {
	display: inline-block;
	padding: 3px 5px;
	margin: 0;
	background: #f77311;
	border-radius: 16px;
	font-size: 10px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
	font-style: normal;
}
/*ボタン*/
#all_wrap .menu-header-btn {
	width: auto;
	width: fit-content;
	padding: 0;
	margin: 0;
	display: inline-flex;
	justify-content: center;
	column-gap: 10px;
	position: relative;
	list-style: none;
}
#all_wrap .menu-header-btn > li {
	width: 70px;
	height: 70px;
	min-width: 70px;
	padding: 0;
	margin: 0;
	aspect-ratio: 1/1;
	position: relative;
}
#all_wrap .menu-header-btn > li a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	grid-row-gap: 5px;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	background: #00b6ec;
	border-radius: 5px;
	position: relative;
	box-shadow: 0 5px 0 #0078ad;
	transition: all 0.3s ease;
}
#all_wrap .menu-header-btn > li a img {
	width: auto;
	height: 20px;
	padding: 0;
	margin: 0 auto;
}
#all_wrap .menu-header-btn > li a span {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 10px;
	line-height: 1.2em;
	font-weight: 600;
	color: #fff;
	text-align: center;
	white-space: nowrap;
}
#all_wrap .menu-header-btn > li a:hover {
	filter: brightness(1.1);
	transform: translateY(5px);
	box-shadow: 0 0 0 #0078ad;
}
/* - 無料見積もり*/
#all_wrap .menu-header-btn > li.estimate a {
	background: var(--main);
	box-shadow: 0 5px 0 #012559;
}
#all_wrap .menu-header-btn > li.estimate a:hover {
	box-shadow: 0 0 0 #012559;
}
/* - LINE*/
#all_wrap .menu-header-btn > li.line a {
	background: #06c655;
	box-shadow: 0 5px 0 #1f770c;
}
#all_wrap .menu-header-btn > li.line a:hover {
	box-shadow: 0 0 0 #1f770c;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#header {
		width: 100%;
		min-width: 100%;
		height: 50px;
		padding: 5px 70px 5px 20px;
		column-gap: 10px;
		justify-content: flex-start;
		background: #fff;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 100;
	}
	/*ロゴ*/
	#all_wrap #logo {
		height: 40px;
	}
	/*テキスト*/
	#all_wrap .header_txt {
		font-size: 0.8rem;
		letter-spacing: normal;
	}
	/*アワード*/
	#all_wrap .award_list {
		display: none;
	}
	/*電話*/
	.tel {
		display: none;
	}
	/*ボタン*/
	#all_wrap .menu-header-btn {
		display: none;
	}
}


/************************************************************/
/*　ヘッダーメニュー
/************************************************************/
#headerNav {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background: var(--main);
	border-top: 1px solid var(--main);
}
#all_wrap #menu-header-menu {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
}
#all_wrap #menu-header-menu > li {
	width: calc(100% / 6);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #menu-header-menu > li::after {
	content: '';
	display: block;
	width: 1px;
	height: calc(100% - 30px);
	border-right: 1px dashed #fff;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
	opacity: 0.3;
}
#all_wrap #menu-header-menu > li:last-child::after {
	display: none;
}
#all_wrap #menu-header-menu > li > a {
	display: flex;
	flex-direction: column;
	grid-row-gap: 8px;
	padding: 20px;
	margin: 0;
	background: none;
	position: relative;
	transition: var(--ease);
	z-index: 0;
}
#all_wrap #menu-header-menu > li > a .menu-image-hover-wrapper {
	display: block;
	width: 100%;
	height: 20px;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	transition: var(--ease);
	position: relative;
}
#all_wrap #menu-header-menu > li > a .menu-image-hover-wrapper .menu-image,
#all_wrap #menu-header-menu > li > a .menu-image-hover-wrapper .hovered-image {
	width: auto;
	height: 100%;
	padding: 0;
	margin: 0 auto !important;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: block;
	transition: var(--ease);
	z-index: 2;
}
#all_wrap #menu-header-menu > li > a .menu-image-title {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 8px;
}
#all_wrap #menu-header-menu > li > a .menu-image-title > span {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-family: var(--font-en);
	font-size: 0.8rem;
	line-height: 1;
	letter-spacing: 0.1em;
	color: var(--sub);
	text-align: center;
	order: 1;
	transition: var(--ease);
}
#all_wrap #menu-header-menu > li > a .menu-image-title > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: center;
	font-size: 16px;
	line-height: 1;
	font-weight: 600;
	color: #fff;
	transition: var(--ease);
}
/* - hover*/
#all_wrap #menu-header-menu > li > a:hover {
	background: #e5e9ea;
	transition: var(--ease);
}
#all_wrap #menu-header-menu > li > a:hover .menu-image-title > p {
	color: var(--main);
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#headerNav {
		display: none;
	}
}

/************************************************************/
/*　ハンバーガーメニュー
/************************************************************/
/* ドロワーメニュー */
.navicon {
	display: none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/* ドロワーメニュー */
	.navicon {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 100;
		width: 50px;
		height: 50px;
		min-width: 50px;
	}
	.humburger {
		width: 20px;
		height: 20px;
		padding: 0;
		margin: 0;
		background: )none;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		grid-row-gap: 12px;
	}
	.humburger > span {
		width: 20px;
		display: inline-block;
		transition: var(--ease);
		position: relative;
		height: 1px;
		background: #fff;
		margin: auto;
	}
	.humburger span::before {
		content: '';
		width: 100%;
		display: inline-block;
		transition: var(--ease);
		position: absolute;
		right: 0;
		height: 1px;
		background: #fff;
	}
	.humburger span::after {
		content: '';
		width: 100%;
		display: inline-block;
		transition: var(--ease);
		position: absolute;
		left: 0;
		height: 1px;
		background: #fff;
	}
	.humburger span::before {
		top: -5px;
	}
	.humburger span::after {
		top: 5px;
	}
	#navTgl:checked + .open .humburger span {
		background: #fff;
	}
	#navTgl:checked + .open .humburger span::before {
		width: 0;
		transition: var(--ease);
	}
	#navTgl:checked + .open .humburger span::after {
		width: 0;
		transition: var(--ease);
	}
	#navTgl:checked + .open .humburger {
		background: none;
	}

	#navTgl {
		display: none;
	}
	label.open,
	label.close {
		cursor: pointer;
	}
	.open {
		opacity: 1;
		z-index: 10001;
		width: 50px;
		height: 50px;
		padding: 10px 10px;
		color: #fff;
		background: var(--main);
		border-radius: 0;
		box-sizing: border-box;
		font-size: 3em;
		text-align: center;
		transition: var(--ease);
		position: relative;
		display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		column-gap: 10px;
	}
	#navTgl:checked + .open,
	.open:hover {
		background: var(--sub);
		transition: var(--ease);
	}
	.close {
		pointer-events: none;
		z-index: 1;
		width: 100%;
		height: 100%;
		transition: var(--ease);
	}
	#navTgl:checked ~ .close {
		pointer-events: auto;
	}
}

/*パネル*/
#menu.menuNav {
	position: fixed;
	top: 0;
	right: 0;
	width: 500px;
	height: calc(100vh);
	background: none;
	transition: var(--ease);
	padding: 0;
	overflow: hidden;
	z-index: 99;
	transform: translateX(500px);
}
#menu.menuNav::-webkit-scrollbar {  /* Chrome, Safari 対応 */
	display:none;
}
#navTgl:checked ~ #menu.menuNav {
	width: 500px;
	transition: var(--ease);
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

/*メニュー*/
#menuNavBox {
	width: 100%;
	height: 100%;
	padding: 75px 50px 50px;
	margin: 0;
	background-color: #000;
	overflow-y: scroll;
	-ms-overflow-style: none;    /* IE, Edge 対応 */
	scrollbar-width: none;       /* Firefox 対応 */
	position: fixed;
	bottom: 0;
	left: 0;
	transition: var(--ease);
	visibility: hidden;
	opacity: 0;
	display: flex;
	flex-direction: column;
	grid-row-gap: 50px;
}
#menuNavBox::-webkit-scrollbar {  /* Chrome, Safari 対応 */
	display:none;
}
#navTgl:checked ~ #menu.menuNav #menuNavBox {
	width: 100%;
	transition: var(--ease);
	visibility: visible;
	opacity: 1;
}


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*パネル*/
	#menu.menuNav {
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		transform: translateX(100%);
	}
	#menu.menuNav::-webkit-scrollbar {  /* Chrome, Safari 対応 */
		display:none;
	}
	#navTgl:checked ~ #menu.menuNav {
		width: 100%;
		transition: var(--ease);
		opacity: 1;
		visibility: visible;
		transform: translateX(0);
	}

	/*メニュー*/
	#menuNavBox {
		width: 100%;
		height: calc(100% - 50px);
		padding: 30px;
		margin: 0;
		background: rgba(0,0,0, 0.7);
		backdrop-filter: blur(5px);
		overflow-y: scroll;
		-ms-overflow-style: none;    /* IE, Edge 対応 */
		scrollbar-width: none;       /* Firefox 対応 */
		position: fixed;
		bottom: 0;
		left: 0;
		transition: var(--ease);
		visibility: hidden;
		opacity: 0;
		display: flex;
		flex-direction: column;
		grid-row-gap: 30px;
	}
	#menuNavBox::-webkit-scrollbar {  /* Chrome, Safari 対応 */
		display:none;
	}
	#navTgl:checked ~ #menu.menuNav #menuNavBox {
		width: 100%;
		transition: var(--ease);
		visibility: visible;
		opacity: 1;
	}
}

#all_wrap .menu-panel-menu {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
}
#all_wrap .menu-panel-menu > li {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .menu-panel-menu > li > a {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	padding: 10px 10px 10px 25px;
	margin: 0;
	background: none;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	position: relative;
	font-size: 12px;
	line-height: 1.2em;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .menu-panel-menu > li > a::before {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translate(0,-50%) rotate(45deg);
	transition: var(--ease);
}
#all_wrap .menu-panel-menu > li > a:hover {
	opacity: 0.8;
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .menu-panel-menu > li > a:hover::before {
	left: 12px;
	transition: var(--ease);
}
/*-段落ちメニュー*/
#all_wrap .menu-panel-menu .sub-menu {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
}
#all_wrap .menu-panel-menu .sub-menu > li {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .menu-panel-menu .sub-menu > li > a {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	padding: 10px 10px 10px 45px;
	margin: 0;
	background: none;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	position: relative;
	font-size: 12px;
	line-height: 1.2em;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .menu-panel-menu .sub-menu > li > a::before {
	content: '';
	display: block;
	width: 5px;
	height: 1px;
	border: none;
	background: var(--text);
	position: absolute;
	top: 50%;
	left: 30px;
	transform: translate(0,-50%);
}
#all_wrap .menu-panel-menu .sub-menu > li > a:hover {
	font-size: 12px;
	line-height: 1.2em;
	color: var(--main);
	text-decoration: none;
	transition: var(--ease);
}

/************************************************************/
/*　メインビジュアル
/************************************************************/

/*swiper*/
.mvSwiper {
	width: 100%;
	height: auto;
	padding: 0 0 !important;
	margin: 0 auto;
	background: #fff;
	overflow: visible;
}
.mvSwiper .swiper-slide {
	width: 1000px; /* 中央固定幅 */
	transition: transform 0.3s ease;
}
.mvSwiper .swiper-slide img {
	display: block;
	width: 100%;
	height: auto;
}

/*ナビゲーション*/
.mvSwiper .swiper-button-prev {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	height: 80px;
	min-width: 80px;
	background: rgba(255,255,255,0.5);
	border-radius: 50%;
	position: absolute;
	top: calc(50% + 20px);
	left: calc(50% - 550px);
	bottom: unset;
	right: unset;
	transform: translate(0,-50%);
	transform-origin: center;
	z-index: 10;
	transition: var(--ease);
}
.mvSwiper .swiper-button-next {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	height: 80px;
	min-width: 80px;
	background: rgba(255,255,255,0.5);
	border-radius: 50%;
	position: absolute;
	top: calc(50% + 20px);
	right: calc(50% - 550px);
	bottom: unset;
	left: unset;
	transform: translate(0,-50%);
	transform-origin: center;
	z-index: 10;
	transition: var(--ease);
}
.mvSwiper .swiper-button-next::before,
.mvSwiper .swiper-button-prev::before {
	content: '';
	display: block;
	width: 60px;
	height: 60px;
	min-width: 60px;
	background: rgba(255,255,255,0.5);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	right: unset;
	bottom: unset;
	border: none;
	transform: translate(-50%,-50%);
	z-index: 2;
	transition: var(--ease);
}
.mvSwiper .swiper-button-next::after,
.mvSwiper .swiper-button-prev::after {
	content: '';
	display: block;
	width: 15px;
	height: auto;
	aspect-ratio: 30 / 49;
	background-image: url('https://mizu-pro.jp/wp-content/uploads/arrow.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 5;
	transition: var(--ease);
}
.mvSwiper .swiper-button-prev::after {
	transform: translate(-50%,-50%) scale(-1,1);
	z-index: 5;
}
/* - ホバー*/
.mvSwiper .swiper-button-prev:hover {
	background: rgba(34,82,166,0.5);
	transform-origin: center;
	transform: translate(0,-50%) scale(1.05);
	transition: var(--ease);
}
.mvSwiper .swiper-button-next:hover {
	background: rgba(34,82,166,0.5);
	transform-origin: center;
	transform: translate(0,-50%) scale(1.05);
	transition: var(--ease);
}
.mvSwiper .swiper-button-next:hover::before,
.mvSwiper .swiper-button-prev:hover::before {
	background: rgba(34,82,166,0.9);
	transition: var(--ease);
}
.mvSwiper .swiper-button-next:hover::after,
.mvSwiper .swiper-button-prev:hover::after {
	background-image: url('https://mizu-pro.jp/wp-content/uploads/arrow_w.svg');
	transition: var(--ease);
}

/* ドットの色 */
.mvSwiper .swiper-pagination {
	bottom: 40px !important;
}
.mvSwiper .swiper-pagination-bullet {
	background: #fff;
	opacity: 1;
}
.mvSwiper .swiper-pagination-bullet-active {
	background: var(--sub);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*swiper*/
	.mvSwiper {
		width: 100%;
		padding: 0 0 30px !important;
		background: var(--main);
	}
	.mvSwiper .swiper-slide {
		width: calc(100%); /* 中央固定幅 */
	}

	/*ナビゲーション*/
	.mvSwiper .swiper-button-prev {
		display: none;
	}
	.mvSwiper .swiper-button-next {
		display: none;
	}
	
	/* ドットの色 */
	.mvSwiper .swiper-pagination {
		bottom: 10px !important;
	}
	.mvSwiper .swiper-pagination-bullet-active {
		background: var(--sub);
	}
}


/*特徴・全額返金*/
#mvFeature {
	width: 100%;
	padding: 30px 30px 0;
	margin: 0 auto;
	background: var(--main);
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 30px;
}
#all_wrap #mvFeature > ul {
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 20px;
	display: none;
}
#all_wrap #mvFeature > ul > li {
	width: auto;
	height: 120px;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #mvFeature > ul > li img {
	width: auto;
	height: 100%;
}
#all_wrap #mvFeature > h2 {
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	grid-row-gap: 10px;
	white-space: nowrap;
	text-align: center;
}
#all_wrap #mvFeature > h2 span {
	display: block;
	padding: 0;
	margin: 0;
	text-align: center;
	font-size: 20px;
	line-height: 1.2em;
	font-weight: 700;
	color: #fff;
}
#all_wrap #mvFeature > h2 p {
	display: block;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
	font-size: 35px;
	line-height: 1.2em;
	font-weight: 700;
	color: #fff;
}
#all_wrap #mvFeature > h2 p strong {
	color: #fef552;
	font-size: 1.2em;
	font-weight: 700;
}
#all_wrap #mvFeature > h2 small {
	display: block;
	font-size: 12px;
	line-height: 1.2em;
	color: #fff;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*特徴・全額返金*/
	#mvFeature {
		width: 100%;
		padding: 20px;
		margin: 0 auto;
		background: var(--main);
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 10px;
	}
	#all_wrap #mvFeature > ul {
		width: 80%;
		padding: 0;
		margin: 0 auto 10px;
		position: relative;
		list-style: none;
		display: flex;
		justify-content: center;
		align-items: center;
		column-gap: 20px;
		display: none;
	}
	#all_wrap #mvFeature > ul > li {
		width: calc(50% - 10px);
		height: auto;
	}
	#all_wrap #mvFeature > ul > li img {
		width: 100%;
		height: auto;
	}
	#all_wrap #mvFeature > h2 {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
		border: none;
		background: none;
		display: flex;
		flex-direction: column;
		grid-row-gap: 10px;
		white-space: nowrap;
	}
	#all_wrap #mvFeature > h2 span {
		display: block;
		text-align: center;
		font-size: 14px;
	}
	#all_wrap #mvFeature > h2 p {
		text-align: center;
		font-size: 18px;
	}
	#all_wrap #mvFeature > h2 small {
		font-size: 12px;
		text-align: center;
	}
}

/************************************************************/
/*　サイドバー
/************************************************************/
.l-sidebar {
	width: 250px;
	min-width: 250px;
	padding: 0;
	margin: 0;
	position: relative;
	order: 1;
}
.l-sidebar .sidebar-posts {
	width: 100%;
	padding: 0;
	margin: 0 auto 40px;
	position: relative;
	z-index: 0;
}
#all_wrap .l-sidebar .sidebar-posts h2 {
	width: 100%;
	padding: 15px 20px;
	margin: 0;
	background: var(--main);
	font-size: 14px;
	line-height: 1;
	color: #fff;
	border-radius: 0;
	text-align: left;
}
#all_wrap .l-sidebar .sidebar-posts h2::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAAXNSR0IArs4c6QAAADlJREFUKFONykkOACAIA0D5/6NrSqJxocCcx0YDAFj1PFEWV+KR8UwyvimMUfqiSlfM0o5V8thJjBMN6ygHNMNPbwAAAABJRU5ErkJggg==);
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.2;
}
#all_wrap .l-sidebar .sidebar-posts ul {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 1px;
	background: none;
	border: none;
}
#all_wrap .l-sidebar .sidebar-posts ul > li {
	padding: 15px 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	border-bottom: 1px dotted #999;
	display: flex;
	justify-content: space-between;
	column-gap: 15px;
}
#all_wrap .l-sidebar .sidebar-posts ul > li > figure {
	width: 70px;
	min-width: 70px;
	height: auto;
	aspect-ratio: 1/1;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .l-sidebar .sidebar-posts ul > li > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap .l-sidebar .sidebar-posts ul > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.sidebar-posts_info {
	width: calc(100% - 15px - 70px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	grid-row-gap: 5px;
}
.sidebar-posts_info .date {
	display: block;
	font-size: 11px;
	color: #999;
}
#all_wrap .sidebar-posts_info > h3 {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
	font-size: 12px;
	line-height: 1.4em;
	font-weight: 400;
	color: var(--text);
}
#all_wrap .sidebar-posts_info > h3 a {
	font-size: 12px;
	line-height: 1.4em;
	font-weight: 400;
	color: var(--text);
	text-decoration: none;
}
#all_wrap .sidebar-posts_info > h3 a:hover {
	font-size: 12px;
	line-height: 1.4em;
	font-weight: 400;
	color: var(--text);
	text-decoration: underline;
}

/*コンテンツ*/
#all_wrap .sidebar-menu {
	width: 100%;
	padding: 15px 10px 10px;
	margin: 0 auto 40px;
	background: var(--main);
	position: relative;
	z-index: 0;
}
#all_wrap .sidebar-menu h2 {
	width: 100%;
	padding: 0 0 0 10px;
	margin: 0 auto 15px;
	background: none;
	font-size: 16px;
	line-height: 1;
	color: #fff;
	border-radius: 0;
	text-align: left;
	position: relative;
	border-left: 3px solid #fff;
}
#all_wrap .sidebar-menu h2::before {
	content: '';
	display: block;
	width: 5px;
	height: calc(100% - 30px);
	background: #fff;
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translate(0,-50%);
}
#all_wrap .sidebar-menu ul {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 1px;
	background: var(--main);
	border: none;
	list-style: none;
}
#all_wrap .sidebar-menu ul > li {
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
}
#all_wrap .sidebar-menu ul > li > a {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	position: relative;
	padding: 10px;
	margin: 0;
	background: #fff;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.2em;
	color: var(--text);
	border: none;
	border-bottom: 1px solid var(--base);
	transition: var(--ease);
}
#all_wrap .sidebar-menu ul > li > a::before {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	background: none;
	border-top: 1px solid var(--text);
	border-right: 1px solid var(--text);
	transform: rotate(45deg);
}
#all_wrap .sidebar-menu ul > li > a:hover {
	opacity: 0.9;
	transition: var(--ease);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.l-sidebar {
		display: none;
	}
}

/************************************************************/
/*　フッター
/************************************************************/
.l-footer {
	width: 100%;
	padding: 50px;
	margin: 0 auto;
	position: relative;
	background: #373737;
}
.footer_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 50px;
}
.footer_left {
	width: 50%;
	padding: 0;
	margin: 0;
	position: relative;
}
.footer_right {
	width: 50%;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: flex-end;
	column-gap: 30px;
}
/*情報*/
#all_wrap .panel_info {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .panel_info > h2 {
	width: 100%;
	height: 80px;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	border: none;
	background: none;
}
#all_wrap .panel_info > h2 img {
	width: auto;
	height: 100%;
}
#all_wrap .panel_info > p {
	padding: 0;
	margin: 0 auto 10px;
	font-size: 14px;
	line-height: 2;
	color: #fff;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}

/*メニュー*/
#all_wrap .widget_box {
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .widget_box dt {
	width: 100%;
	padding: 0 0 10px;
	margin: 0 auto 15px;
	position: relative;
	border-bottom: 1px solid var(--sub);
	font-size: 20px;
	line-height: 1.2em;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
}
#all_wrap .widget_box dd {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .widget_box dd ul {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 12px;
}
#all_wrap .widget_box dd ul > li {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .widget_box dd ul#menu-footer-menu > li {
	width: calc(50% - 10px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .widget_box dd ul > li a {
	font-size: 14px;
	line-height: 1.2em;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .widget_box dd ul > li a:hover {
	opacity: 0.8;
	color: #fff;
	text-decoration: underline;
	transition: var(--ease);
}

/*コピーライト*/
.copyright {
	display: block;
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-family: var(--font-en);
	font-size: 10px;
	line-height: 1;
	color: #fff;
	font-style: normal;
	text-align: right;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.l-footer {
		width: 100%;
		padding: 30px 20px;
	}
	.footer_wrap {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto 30px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 30px;
	}
	.footer_left {
		width: 100%;
	}
	.footer_right {
		width: 100%;
		position: relative;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 30px;
	}
	/*情報*/
	#all_wrap .panel_info {
		width: 100%;
	}
	#all_wrap .panel_info > h2 {
		width: 100%;
		height: 70px;
		margin: 0 auto 10px;
		text-align: center;
	}
	#all_wrap .panel_info > p {
		padding: 0;
		margin: 0 auto 10px;
		font-size: 14px;
		line-height: 2;
		color: #fff;
		text-align: center;
	}

	/*メニュー*/
	#all_wrap .widget_box {
		width: 100%;
	}
	#all_wrap .widget_box dt {
		width: 100%;
		padding: 0 0 10px;
		margin: 0 auto 15px;
		border-bottom: 1px solid var(--sub);
		font-size: 18px;
	}
	#all_wrap .widget_box dd ul > li {
		width: calc(50% - 10px);
	}
	#all_wrap .widget_box dd ul > li a {
		font-size: 12px;
	}

	/*コピーライト*/
	.copyright {
		display: block;
		width: 100%;
		max-width: 100%;
		text-align: center;
	}
}

/************************************************************/
/*　アーカイブ　リスト
/************************************************************/

/************************************************************/
/*　リスト
/************************************************************/
.content ul {
	list-style: none;
	padding: 0;
	margin: 5px auto 20px;
}
.content ul li {
	width: 100%;
	padding: 0 0 0 15px;
	margin: 0 0 5px;
	list-style: none;
	border: none;
	background: none;
	position: relative;
	line-height: 1.5em;
}
.content ul li::before {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	padding: 0;
	margin: 0;
	background: var(--text);
	position: absolute;
	top: 0.7em;
	left: 0;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	border-radius: 50%;
}

.content ol {
	list-style: none;
	padding: 0;
	margin: 10px auto 10px;
}
.content ol li {
	padding: 0 0 0 30px;
	margin: 0 0 5px;
	list-style: none;
	border: none;
	background: none;
	position: relative;
	line-height: 1.8em;
}
.content ol li::before {
	font-family: var(--font-en);
	counter-increment: count;
	content: counter(count);
	background: #fff;
	border: 1px solid var(--text);
	color: var(--text);
	width: 2.2rem;
	height: 2.2rem;
	line-height: 2rem;
	font-size: 1rem;
	font-weight: lighter;
	text-align: center;
	border-radius: 50%;
	position: absolute;
	top: 1.6em;
	left: 0;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	border-radius: 50%;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){

	.l-wrapper-full .pageContents .content ul.harf li,
	.l-wrapper-full .postContents .content ul.harf li {
		width: 100%;
		margin: 0 auto 10px
	}
	.l-wrapper-full .pageContents .content ul.harf li:last-child,
	.l-wrapper-full .postContents .content ul.harf li:last-child {
		margin-bottom: 0;
	}
}


/************************************************************/
/*　テーブル
/************************************************************/

/*表*/
#all_wrap table {
	overflow: hidden;
	table-layout: auto;
	border: none;
	background: none;
	padding: 0;
	width: 100%;
	max-width: 100%;
	margin: 0 auto 10px;
	border-radius: 0;
	background: #fff;
	border: 5px solid #e3e3e3;
}
#all_wrap table th {
	display: table-cell;
	font-style: normal;
	font-feature-settings: "palt";
	border: none;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
	text-align: center;
	vertical-align: middle;
	font-family: var(--font-jp);
	font-size: 14px;
	font-weight: 500;
	background: #f0f0f0;
	color: var(--text);
	width: auto;
	padding: 15px 30px;
	margin: 0;
	white-space: nowrap;
}
#all_wrap table td {
	display: table-cell;
	border: none;
	background: none;
	vertical-align: inherit;
	border-bottom: none;
	padding: 15px;
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	border-bottom: 1px solid #e3e3e3;
	border-right: 1px solid #e3e3e3;
}
#all_wrap table td.ttl {
	display: table-cell;
	border: none;
	background: #fafafa;
	vertical-align: inherit;
	border-bottom: none;
	padding: 10px;
	margin: 0;
	font-size: 12px;
	font-weight: 400;
	border-bottom: 1px solid var(--text);
}
#all_wrap .content table td > p:last-of-type {
	margin-bottom: 0;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*表*/
	#all_wrap table {
		overflow: hidden;
		table-layout: fixed;
		border: none;
		background: #fff;
		padding: 0;
		width: 100%;
		max-width: 100%;
		margin: 0 auto 20px;
		border: none;
	}
	#all_wrap table th {
		font-style: normal;
		font-feature-settings: "palt";
		border: none;
		border-bottom: none;
		background: #fafafa;
		vertical-align: inherit;
		padding: 10px 15px;
		margin: 0;
		width: 100%;
		min-width: 100%;
		font-size: 14px;
		display: block;
		text-align: left;
		border: 1px solid rgba(0,0,0,0.1);
	}
	#all_wrap table td {
		border: none;
		background: #fff;
		vertical-align: inherit;
		border-bottom: none;
		padding: 10px 15px;
		margin: 0;
		border-left: 1px solid rgba(0,0,0,0.1);
		border-right: 1px solid rgba(0,0,0,0.1);
		border-bottom: none;
		border-top: none;
		font-size: 14px;
		width: 100%;
		min-width: 100%;
		display: block;
	}
	#all_wrap table tr:last-of-type td {
		border-bottom: 1px solid rgba(0,0,0,0.1);
	}
}


#all_wrap .js-scrollable {
	width: calc(100%);
	overflow-y: hidden !important;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
#all_wrap .js-scrollable::-webkit-scrollbar{
	display:none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*表*/
	#all_wrap .js-scrollable table {
		overflow: hidden;
		table-layout: auto;
		border: none;
		background: #fff;
		padding: 0;
		width: auto;
		max-width: unset;
		margin: 0 auto 20px;
		border: none;
	}
	#all_wrap .js-scrollable table th {
		font-style: normal;
		font-feature-settings: "palt";
		vertical-align: inherit;
		padding: 10px 15px;
		margin: 0;
		width: auto;
		min-width: auto;
		font-size: 14px;
		display: table-cell;
		text-align: center;
		border-bottom: 1px solid #fff;
		border-right: 1px solid #fff;
		background: var(--main);
		color: #fff;
		white-space: nowrap;
	}
	#all_wrap .js-scrollable table td {
		vertical-align: inherit;
		border-bottom: none;
		padding: 10px 15px;
		margin: 0;
		font-size: 14px;
		width: auto;
		min-width: auto;
		display: table-cell;
		border-bottom: 1px solid #e3e3e3;
		border-right: 1px solid #e3e3e3;
		white-space: nowrap;
	}
}

/************************************************************/
/*　お問い合わせ&テーブル
/************************************************************/
#contact {
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap #contact p {
	text-align: center;
}
#contact .tel > p a {
	display: inline-flex;
	justify-content: center;
	align-items: baseline;
	column-gap: 5px;
	font-size: 32px;
	line-height: 1;
	font-weight: 700;
	color: var(--link);
	text-decoration: none;
	white-space: nowrap;
}
#contact .tel > p a::before {
	content: '';
	display: block;
	width: auto;
	height: 22px;
	aspect-ratio: 22 / 28;
	background-image: url('http://roof.housing-coat.com/wp-content/uploads/icon_tel.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
#contact .tel > span {
	display: block;
	padding: 0;
	margin: 0 auto;
	text-align: center;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
}


/*お問い合わせフォーム*/

/*テーブル*/
#all_wrap .table-contactform7 {
	overflow: hidden;
	table-layout: auto;
	border: none;
	background: none;
	padding: 0;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	background: #fff;
	border: none;
	border-radius: 20px;
}
#all_wrap .table-contactform7 th {
	display: table-cell;
	font-style: normal;
	font-feature-settings: "palt";
	border: none;
	border-bottom: 1px solid #fff;
	text-align: left;
	vertical-align: middle;
	font-family: var(--font-jp);
	font-size: 14px;
	font-weight: 700;
	background: var(--sub);
	color: #fff;
	width: 200px;
	min-width: 200px;
	padding: 20px;
	margin: 0;
	white-space: nowrap;
	position: relative;
}
#all_wrap .table-contactform7 td {
	display: table-cell;
	border: none;
	background: none;
	vertical-align: inherit;
	border-bottom: none;
	padding: 20px;
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	border-bottom: 1px solid rgba(155,155,155,0.5);
	line-height: 1.7em;
	position: relative;
}
#all_wrap .table-contactform7 tr:last-of-type th,
#all_wrap .table-contactform7 tr:last-of-type td {
	border-bottom: none;
}
#all_wrap .table-contactform7 span.att {
    display: inline;
    padding: 3px 7px;
    margin: 0 0 0 15px;
    font-size: 10px;
    line-height: 1;
    color: #fff;
    background: #e03131;
    border-radius: 3px;
}

/*フォーム*/
#all_wrap .cfBox input {
	border-radius: 0;
	border: 1px solid #ccc;
	box-shadow: none;
	font-size: 14px;
	padding: 10px;
}
#all_wrap .cfBox input[type="radio"] {
	width: 12px;
}
#all_wrap .cfBox span input.wpcf7-file {
	margin: 0 0 10px;
}
#all_wrap .cfBox input[type="file"] {
	border-radius: 0;
	border: none;
	box-shadow: none;
	font-size: 14px;
	padding: 0;
}
#all_wrap .cfBox input.wpcf7-text {
	width: 100%;
	padding: 10px;
	margin: 0;
	border-radius: 5px;
	border: 1px solid #ccc;
	box-shadow: none;
	font-family: var(--font-jp);
	font-weight: 500;
	font-style: normal;
	font-feature-settings: "palt";
	font-size: 14px;
	line-height: 1;
	background: #fff;
	outline: none;
}
#all_wrap .cfBox input.wpcf7-text.w50 {
	width: 50%;
}
#all_wrap .cfBox input.wpcf7-text.w25 {
	width: 25%;
}
.wpcf7-form-control-wrap[data-name="zip"] {
	display: block;
	margin-bottom: 10px;
}
/*チェックボックス*/
#all_wrap .cfBox .wpcf7-checkbox {
	width: 100%;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 5px;
}
#all_wrap .wpcf7-list-item label {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 5px;
}
#all_wrap .cfBox input[type="checkbox"] {
	padding: 0;
	margin: 0;
	width: 12px;
	height: 12px;
}
/*ラジオボタン*/
#all_wrap .cfBox .wpcf7-radio {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 10px;
}
#all_wrap .cfBox .wpcf7-list-item {
	display: inline-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 5px;
	padding: 0;
	margin: 0;
	cursor: pointer;
}
/*テキストエリア*/
#all_wrap .cfBox textarea {
	width: 100%;
	padding: 10px;
	margin: 0;
	border-radius: 5px;
	border: 1px solid #ccc;
	box-shadow: none;
	font-family: var(--font-jp);
	font-weight: 500;
	font-style: normal;
	font-feature-settings: "palt";
	font-size: 14px;
	line-height: 2;
	background: #fff;
	outline: none;
}
#all_wrap .form-control {
	height: auto;
}
#all_wrap .cf_check {
	padding: 30px 0;
	margin: 0 auto;
	text-align: center;
	cursor: pointer;
}
#all_wrap .cf_check label {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	padding: 10px;
	margin: 0 auto;
	background: #fafafa;
	border-radius: 5px;
	line-height: 1;
	margin-top: 10px;
	cursor: pointer;
}
#all_wrap .txt_cent {
	margin: 30px auto 0;
	text-align: center;
}
#all_wrap .txt_cent input {
	display: inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 10px;
	font-size: 16px;
	line-height: 1;
	font-weight: bold;
	text-align: center;
	color: #fff;
	background: var(--main);
	padding: 15px 50px 18px;
	margin: 0;
	border-radius: 40px;
	border: none;
	transition: all 0.3s ease;
}
#all_wrap .txt_cent input:hover {
	background: var(--sub);
	transition: all 0.3s ease;
}
#all_wrap .wpcf7-spinner {
	display: none !important;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*お問い合わせフォーム*/
	#all_wrap .cfBox {
		width: 100%;
		max-width: 100%;
		padding: 20px;
		border-radius: 10px;
		background: #fafafa;
	}
	#all_wrap .cfBox > h3 {
		font-size: 20px;
		border: none;
		background: none;
		padding: 0;
		margin: 0 auto 10px;
		text-align: center;
	}
	#all_wrap .cfBox dl {
		width: 100%;
		padding: 15px 0;
	}
	#all_wrap .cfBox dt {
		font-size: 16px;
		margin: 0 auto 5px;
	}
	span.att {
		display: inline-block;
		padding: 5px;
		margin: 0 0 0 10px;
		background: #cf2e2e;
		border-radius: 3px;
		font-size: 12px;
		line-height: 1;
		font-weight: 600;
		color: #fff;
	}
	span.any {
		display: inline-block;
		padding: 5px;
		margin: 0 0 0 10px;
		background: #0693e3;
		border-radius: 3px;
		font-size: 12px;
		line-height: 1;
		font-weight: 600;
		color: #fff;
	}
	#all_wrap .cfBox dd {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		border: none;
		background: none;
	}
	/*テーブル*/
	#all_wrap .table-contactform7 {
		overflow: hidden;
		table-layout: auto;
		border: none;
		background: none;
		padding: 0;
		width: 100%;
		max-width: 100%;
		margin: 0;
		background: #fff;
		border: none;
	}
	#all_wrap .table-contactform7 tr {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#all_wrap .table-contactform7 th {
		font-size: 15px;
		padding: 10px 15px;
		width: 100%;
		min-width: 100%;
	}
	#all_wrap .table-contactform7 td {
		padding: 15px;
		font-size: 12px;
	}
	#all_wrap .table-contactform7 tr:last-of-type th,
	#all_wrap .table-contactform7 tr:last-of-type td {
		border-bottom: none;
	}
    #all_wrap .table-contactform7 span.att {
        display: inline;
        padding: 3px 7px;
        margin: 0 0 0 15px;
        font-size: 10px;
        line-height: 1;
        color: #fff;
        background: #e03131;
        border-radius: 3px;
    }
	/*フォーム*/
	#all_wrap .cfBox input {
		font-size: 14px;
		padding: 15px 30px;
	}
	#all_wrap .cfBox input[type="radio"] {
		width: 12px;
	}
	#all_wrap .cfBox span input.wpcf7-file {
		margin: 0 0 10px;
	}
	#all_wrap .cfBox input[type="file"] {
		font-size: 14px;
		padding: 0;
	}
	#all_wrap .cfBox input.wpcf7-text {
		width: 100%;
		padding: 10px;
		border-radius: 5px;
		font-size: 14px;
	}
	#all_wrap .cfBox input.wpcf7-text.w50 {
		width: 100%;
	}
	#all_wrap .cfBox input.wpcf7-text.w25 {
		width: 100%;
	}
	/*ラジオボタン*/
	#all_wrap .cfBox .wpcf7-radio {
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		column-gap: 15px;
		grid-row-gap: 10px;
	}
	/*テキストエリア*/
	#all_wrap .cfBox textarea {
		width: 100%;
		padding: 10px;
		font-size: 14px;
	}
	#all_wrap .form-control {
		height: auto;
	}
	#all_wrap .cf_check {
		padding: 15px 0;
	}
	#all_wrap .cf_check label {
		display: inline-flex;
		justify-content: center;
		align-items: center;
		column-gap: 10px;
		padding: 10px;
		margin: 0 auto;
		background: #fafafa;
		border-radius: 5px;
		line-height: 1;
		margin-top: 10px;
		cursor: pointer;
	}
	#all_wrap .cf_btn {
		text-align: center;
	}
	#all_wrap .cf_btn input {
		display: inline-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: nowrap;
		column-gap: 10px;
		font-size: 16px;
		line-height: 1;
		font-weight: bold;
		text-align: center;
		color: #fff;
		background: var(--sub);
		width: 80%;
		padding: 13px 20px 16px;
		margin: 0;
		border-radius: 36px;
		border: none;
		transition: all 0.3s ease;
	}
}


/*シミュレーション*/
#all_wrap .simuBox {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
	background: var(--main);
	position: relative;
}
#all_wrap .table-simulation {
	width: 100%;
	max-width: 800px;
	padding: 50px;
	margin: 0 auto;
	position: relative;
	border-radius: 20px;
	background: #fff;
}
#all_wrap .table-simulation > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	border: none;
	background: none;
	font-size: 30px;
	line-height: 1;
	font-weight: 900;
	color: var(--main);
	text-align: center;
}
#all_wrap .table-simulation > dl {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
}
#all_wrap .table-simulation > dl:last-of-type {
	margin-bottom: 0;
}
#all_wrap .table-simulation > dl dt {
	width: 100%;
	padding: 0 0 10px;
	margin: 0 auto 20px;
	border: none;
	background: none;
	position: relative;
	border-bottom: 2px solid var(--sub);
	font-size: 20px;
	line-height: 1.2em;
	font-weight: 700;
	color: var(--text);
	text-align: left;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 15px;
}
#all_wrap .table-simulation > dl dd {
	padding: 0;
	margin: 0;
	position: relative;
}
.simu-arrow {
	display: block;
	width: 100%;
	max-width: 800px;
	height: 90px;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	position: relative;
}
.simu-arrow::after {
	content: '';
	display: block;
	width: 200px;
	height: 30px;
	background: var(--sub);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	clip-path: polygon(0 0, 50% 100%, 100% 0);
}
#all_wrap .table-simulation span.att {
	display: inline;
	padding: 3px 7px;
	margin: 0;
	font-size: 10px;
	line-height: 1;
	color: #fff;
	background: #e03131;
	border-radius: 3px;
}

/* チェックボックス */
#all_wrap .table-simulation .wpcf7-checkbox {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}
#all_wrap .table-simulation input[type="checkbox"] {
	display: none;
}
#all_wrap .table-simulation .wpcf7-list-item {
	width: calc((100% - 20px) / 2);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .table-simulation .wpcf7-list-item label {
	display: block;
	padding: 0;
	margin: 0;
}
#all_wrap .table-simulation .wpcf7-list-item-label {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 15px 20px;
	margin: 0;
	border-radius: 7px;
	font-size: 20px;
	font-weight: 600;
	cursor: pointer;
	color: var(--text);
	background: #eee;
	transition: var(--ease);
	user-select: none;
	box-shadow: 0 5px 0 0 #ABABAB;
}
#all_wrap .table-simulation input[type="checkbox"]:checked + .wpcf7-list-item-label {
	background: #ff9743;
	color: #fff;
	transform: translateY(5px);
	box-shadow: 0 5px 0 0 rgba(0,0,0,0);
}
#all_wrap .table-simulation .wpcf7-list-item-label:hover {
	opacity: 0.85;
	transform: translateY(5px);
	box-shadow: 0 5px 0 0 rgba(0,0,0,0);
}

/*フォーム*/
#all_wrap .table-simulation input {
	border-radius: 0;
	border: 1px solid #ccc;
	box-shadow: none;
	font-size: 14px;
	padding: 10px;
}
#all_wrap .table-simulation input[type="radio"] {
	width: 12px;
}
#all_wrap .table-simulation span input.wpcf7-file {
	margin: 0 0 10px;
}
#all_wrap .table-simulation input[type="file"] {
	border-radius: 0;
	border: none;
	box-shadow: none;
	font-size: 14px;
	padding: 0;
}
#all_wrap .table-simulation input.wpcf7-text {
	width: 100%;
	padding: 10px;
	margin: 0;
	border-radius: 5px;
	border: 1px solid #ccc;
	box-shadow: none;
	font-family: var(--font-jp);
	font-weight: 500;
	font-style: normal;
	font-feature-settings: "palt";
	font-size: 14px;
	line-height: 1;
	background: #fff;
	outline: none;
}
#all_wrap .table-simulation input.wpcf7-text.w50 {
	width: 50%;
}
#all_wrap .table-simulation input.wpcf7-text.w25 {
	width: 25%;
}
.wpcf7-form-control-wrap[data-name="zip"] {
	display: inline-block;
	margin-bottom: 10px;
}
/*ラジオボタン*/
#all_wrap .table-simulation .wpcf7-radio {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 10px;
}
/*テキストエリア*/
#all_wrap .table-simulation textarea {
	width: 100%;
	padding: 10px;
	margin: 0;
	border-radius: 5px;
	border: 1px solid #ccc;
	box-shadow: none;
	font-family: var(--font-jp);
	font-weight: 500;
	font-style: normal;
	font-feature-settings: "palt";
	font-size: 14px;
	line-height: 2;
	background: #fff;
	outline: none;
}
#all_wrap .table-simulation .form-control {
	height: auto;
}
#all_wrap .table-simulation .cf_check {
	padding: 30px 0;
	margin: 0 auto;
	text-align: center;
	cursor: pointer;
}
#all_wrap .table-simulation .cf_check label {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	padding: 10px;
	margin: 0 auto;
	background: #fafafa;
	border-radius: 5px;
	line-height: 1;
	margin-top: 10px;
	cursor: pointer;
}
#all_wrap .simuBox .txt_cent {
	margin: 30px auto 0;
	text-align: center;
}
#all_wrap .simuBox .txt_cent input {
	display: inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 10px;
	font-size: 30px;
	line-height: 1;
	font-weight: bold;
	text-align: center;
	color: #fff;
	background: #f77311;
	border: 2px solid #fff;
	padding: 25px 80px 25px;
	margin: 0;
	border-radius: 80px;
	border: none;
	transition: all 0.3s ease;
}
#all_wrap .simuBox .txt_cent input:hover {
	background: var(--sub);
	transition: all 0.3s ease;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*シミュレーション*/
	#all_wrap .simuBox {
		width: 100%;
		padding: 20px 20px;
	}
	#all_wrap .table-simulation {
		width: 100%;
		max-width: 100%;
		padding: 20px;
		border-radius: 10px;
	}
	#all_wrap .table-simulation > h2 {
		width: 100%;
		margin: 0 auto 20px;
		font-size: 18px;
	}
	#all_wrap .table-simulation > dl {
		width: 100%;
		padding: 0;
		margin: 0 auto 30px;
		position: relative;
	}
	#all_wrap .table-simulation > dl dt {
		width: 100%;
		padding: 0 0 10px;
		margin: 0 auto 10px;
		font-size: 18px;
	}
	.simu-arrow {
		display: block;
		width: 100%;
		max-width: 100%;
		height: 50px;
		padding: 0;
		margin: 0 auto;
		text-align: center;
		position: relative;
	}
	.simu-arrow::after {
		content: '';
		display: block;
		width: 200px;
		height: 15px;
		background: var(--sub);
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		clip-path: polygon(0 0, 50% 100%, 100% 0);
	}
	#all_wrap .table-simulation span.att {
		display: inline;
		padding: 3px 7px;
		margin: 0;
		font-size: 10px;
		line-height: 1;
		color: #fff;
		background: #e03131;
		border-radius: 3px;
	}

	/* チェックボックス */
	#all_wrap .table-simulation .wpcf7-checkbox {
		width: 100%;
		gap: 10px;
	}
	#all_wrap .table-simulation input[type="checkbox"] {
		display: none;
	}
	#all_wrap .table-simulation .wpcf7-list-item {
		width: calc((100% - 10px) / 2);
	}
	#all_wrap .table-simulation .wpcf7-list-item-label {
		width: 100%;
		padding: 5px 10px;
		border-radius: 5px;
		font-size: 14px;
	}

	/*フォーム*/
	#all_wrap .table-simulation input {
		border-radius: 0;
		border: 1px solid #ccc;
		box-shadow: none;
		font-size: 14px;
		padding: 10px;
	}
	#all_wrap .table-simulation input[type="radio"] {
		width: 12px;
	}
	#all_wrap .table-simulation span input.wpcf7-file {
		margin: 0 0 10px;
	}
	#all_wrap .table-simulation input[type="file"] {
		border-radius: 0;
		border: none;
		box-shadow: none;
		font-size: 14px;
		padding: 0;
	}
	#all_wrap .table-simulation input.wpcf7-text {
		width: 100%;
		padding: 10px;
		margin: 0;
		border-radius: 5px;
		border: 1px solid #ccc;
		box-shadow: none;
		font-family: var(--font-jp);
		font-weight: 500;
		font-style: normal;
		font-feature-settings: "palt";
		font-size: 14px;
		line-height: 1;
		background: #fff;
		outline: none;
	}
	#all_wrap .table-simulation input.wpcf7-text.w50 {
		width: 100%;
	}
	#all_wrap .table-simulation input.wpcf7-text#zip {
		width: 50%;
	}
	#all_wrap .table-simulation input.wpcf7-text.w25 {
		width: 50%;
	}
	.wpcf7-form-control-wrap[data-name="zip"] {
		display: inline-block;
		margin-bottom: 10px;
	}
	/*ラジオボタン*/
	#all_wrap .table-simulation .wpcf7-radio {
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		column-gap: 30px;
		grid-row-gap: 10px;
	}
	/*テキストエリア*/
	#all_wrap .table-simulation textarea {
		width: 100%;
		padding: 10px;
		margin: 0;
		border-radius: 5px;
		border: 1px solid #ccc;
		box-shadow: none;
		font-family: var(--font-jp);
		font-weight: 500;
		font-style: normal;
		font-feature-settings: "palt";
		font-size: 14px;
		line-height: 2;
		background: #fff;
		outline: none;
	}
	#all_wrap .table-simulation .form-control {
		height: auto;
	}
	#all_wrap .table-simulation .cf_check {
		padding: 30px 0;
		margin: 0 auto;
		text-align: center;
		cursor: pointer;
	}
	#all_wrap .table-simulation .cf_check label {
		display: inline-flex;
		justify-content: center;
		align-items: center;
		column-gap: 10px;
		padding: 10px;
		margin: 0 auto;
		background: #fafafa;
		border-radius: 5px;
		line-height: 1;
		margin-top: 10px;
		cursor: pointer;
	}
	#all_wrap .simuBox .txt_cent {
		margin: 20px auto 0;
		text-align: center;
	}
	#all_wrap .simuBox .txt_cent input {
		display: inline-flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: nowrap;
		column-gap: 10px;
		font-size: 18px;
		line-height: 1;
		font-weight: bold;
		text-align: center;
		color: #fff;
		background: #f77311;
		border: 2px solid #fff;
		padding: 15px 20px 15px;
		margin: 0;
		border-radius: 50px;
		border: none;
		transition: all 0.3s ease;
	}
	#all_wrap .simuBox .txt_cent input:hover {
		background: var(--sub);
		transition: all 0.3s ease;
	}
}



/*表削除*/
#all_wrap .pageContents .content .tablenone,
#all_wrap .postContents .content .tablenone {
	padding: 0;
	margin: 0;
	border-top: none;
	border-bottom: none;
	border-left: none;
	border-right: none;
	border-radius: none;
	background: none;
	color: var(--text);
}
#all_wrap .pageContents .content .tablenone tbody,
#all_wrap .pageContents .content .tablenone th,
#all_wrap .pageContents .content .tablenone td,
#all_wrap .pageContents .content .tablenone tr,
#all_wrap .pageContents .content .tablenone tr:nth-child(odd) td,
#all_wrap .pageContents .content .tablenone tr:nth-child(even) td {
	padding: 0;
	margin: 0;
	border-top: none;
	border-bottom: none;
	border-left: none;
	border-right: none;
	border-radius: none;
	background: none;
	color: var(--text);
}
#all_wrap .postContents .content .tablenone tbody,
#all_wrap .postContents .content .tablenone th,
#all_wrap .postContents .content .tablenone td,
#all_wrap .postContents .content .tablenone tr,
#all_wrap .postContents .content .tablenone tr:nth-child(odd) td,
#all_wrap .postContents .content .tablenone tr:nth-child(even) td {
	padding: 0;
	margin: 0;
	border-top: none;
	border-bottom: none;
	border-left: none;
	border-right: none;
	border-radius: none;
	background: none;
	color: var(--text);
}


/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){

}


/************************************************************/
/*　Google Map
/************************************************************/
.google-maps {
	position: relative;
	padding-bottom: 30%;
	height: 0;
	overflow: hidden;
}
.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}
.access_info p {
	font-size: 1.1em;
	line-height: 2em;
	margin-bottom: 20px;
	text-align: center;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.access_info p {
		width: 90%;
		padding: 0;
		margin: 0 auto;
		font-size: 1.1em;
		line-height: 2em;
		margin-bottom: 20px;
		text-align: center;
	}
	.top_gmap iframe {
		height: 200px;
	}
}



/************************************************************/
/*　全体
/************************************************************/


/************************************************************/
/*　サイトマップ
/************************************************************/
.sitemap ul {
	width: 100%;
	max-width: 980px;
	padding: 0;
	margin: 0 auto;
}
.sitemap ul li {
	width: 100%;
	padding: 0;
	margin: 0;
	background: none;
	list-style: none;
}
.sitemap ul li a {
	display: block;
	padding: 15px 15px 15px 30px;
	margin: 0;
	font-family: var(--font-jp);
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	position: relative;
	transition: var(--ease);
	color: var(--text);
	border-bottom: 1px solid rgba(0,0,0,0.2);
}
.sitemap ul li a:hover {
	transition: var(--ease);
	opacity: 0.8;
}
.sitemap ul li a::before {
	content: "";
	position: absolute;
	left: 10px;
	top: 50%;
	width: 5px;
	height: 5px;
	border-top: 1px solid rgba(0,0,0,0.2);
	border-right: 1px solid rgba(0,0,0,0.2);
	transform: translate(0,-50%) rotate(45deg);
	-webkit-transform: translate(0,-50%) rotate(45deg);
	transition: ease 0.2s;
}
.sitemap ul li a > span {
	display: none;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.sitemap ul {
		width: calc(100%);
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	.sitemap ul .sub-menu {
		padding: 0 0 0 10px;
	}
}

/*スマホ改行
------------------------------------------------------------*/

.pc { display:block !important; }
.sp { display:none !important; }
@media screen and (max-width: 768px){   
	.pc { display:none !important; }
	.sp { display:block !important; }
}


/************************************************************/
/*　本文ギャラリー
/************************************************************/

/*プラグイン*/
#swipebox-overlay {
	background: rgba(0, 0, 0, 0.8);
}
#swipebox-slider .slide img,
#swipebox-slider .slide .swipebox-video-container,
#swipebox-slider .slide .swipebox-inline-container {
	display: inline-block;
	max-height: 90%;
	max-width: 90%;
	margin: 0;
	padding: 0;
	width: auto;
	height: auto;
	vertical-align: middle;
}
/*ギャラリー*/
#all_wrap .content .gallery {
	width: 100%;
	max-width: 980px;
	padding: 0;
	margin: 0 auto 30px;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 20px;
}
#all_wrap .content .gallery::after {
	content: '';
	display: block;
	width: calc(100% / 3 - 13.4px);
}
#all_wrap .content .gallery dl {
	width: calc(100% / 3 - 13.4px);
	padding: 0;
	margin: 0;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	grid-row-gap: 5px;
}
#all_wrap .content .gallery dt {
	padding: 0;
	margin: 0;
	text-align: center;
}
#all_wrap .content .gallery dd {
	padding: 0;
	margin: 0;
	text-align: center;
}
#all_wrap .content .gallery dl img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
}
/*閉じる*/
.tos-close {
	height: 40px;
	top: 10px;
	left: 10px;
	right: unset;
}
.tos-close span:after,
.tos-close span:before {
	width: 10px;
	height: 10px;
	margin-top: -4px;
	margin-left: 0;
	margin-right: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .content .gallery {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 20px;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	#all_wrap .content .gallery::after {
		content: '';
		display: none;
	}
	#all_wrap .content .gallery dl {
		width: calc(100% / 2 - 10px);
		grid-row-gap: 5px;
	}
}

/************************************************************/
/*　Youtube
/************************************************************/
#all_wrap .l-wrapper .youtubeBox {
	width:860px;              /*横幅いっぱいにwidthを指定*/
	padding-bottom: 56.25%;  /*高さをpaddingで指定(16:9)*/
	height:0px;              /*高さはpaddingで指定するためheightは0に*/
	position: relative;
	margin: 0 auto;
}
#all_wrap .l-wrapper .youtubeBox > iframe {
	position: static;
	top: auto;
	left: auto;
	width: 860px;
	height: 500px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .l-wrapper .youtubeBox {
		width:100%;              /*横幅いっぱいにwidthを指定*/
		padding-bottom: 56.25%;  /*高さをpaddingで指定(16:9)*/
		height:0px;              /*高さはpaddingで指定するためheightは0に*/
		position: relative;
	}
	#all_wrap .l-wrapper .youtubeBox > iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
}


/************************************************************/
/*　アーカイブ
/************************************************************/
#all_wrap .archiveList {
	width: calc(100%);
	max-width: 980px;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#all_wrap .archiveList::after {
	content: '';
	display: block;
	width: 31%;
}
#all_wrap .archiveList > li {
	width: 31%;
	padding: 0;
	margin: 0 0 40px;
}
#all_wrap .archiveList > li::before,
#all_wrap .archiveList > li::after {
	display: none;
}
#all_wrap .archiveList > li figure {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	text-align: center;
	overflow: hidden;
	border-radius: 5px;
}
#all_wrap .archiveList > li figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
#all_wrap .archiveList > li figure img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .archiveList > li .date {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 12px;
	font-weight: lighter;
	line-height: 1em;
	color: #999;
	font-style: normal;
	white-space: nowrap;
	padding: 0;
	margin: 0 0 5px;
}
#all_wrap .archiveList > li > h3,
#all_wrap .content .archiveList > li > h3 {
	padding: 0;
	margin: 0 auto 5px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4em;
	font-style: normal;
	border: none;
	background: none;
}
#all_wrap .archiveList > li > p {
	font-size: 14px;
	line-height: 1.7em;
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .archiveList {
		width: calc(100%);
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
		list-style: none;
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#all_wrap .archiveList::after {
		content: '';
		display: none;
	}
	#all_wrap .archiveList > li {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
	}
	#all_wrap .archiveList > li::before,
	#all_wrap .archiveList > li::after {
		display: none;
	}
	#all_wrap .archiveList > li figure {
		width: 100%;
		padding: 0;
		margin: 0 auto 10px;
		position: relative;
		text-align: center;
		overflow: hidden;
		border-radius: 5px;
	}
	#all_wrap .archiveList > li figure::before {
		content: '';
		display: block;
		padding-top: 56.25%;
	}
	#all_wrap .archiveList > li figure img {
		width: 100%;
		height: 100%;
		padding: 0;
		margin: 0;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		-webkit-transform: translate(-50%,-50%);
		object-fit: cover;
	}
	#all_wrap .archiveList > li .date {
		display: inline-block;
		font-family: var(--font-en);
		font-size: 12px;
		font-weight: lighter;
		line-height: 1em;
		color: #999;
		font-style: normal;
		white-space: nowrap;
		padding: 0;
		margin: 0 0 5px;
	}
	#all_wrap .archiveList > li > h3,
	#all_wrap .content .archiveList > li > h3 {
		padding: 0;
		margin: 0 auto 5px;
		font-size: 15px;
		font-weight: 700;
		line-height: 1.4em;
		font-style: normal;
		border: none;
		background: none;
	}
	#all_wrap .archiveList > li > p {
		font-size: 14px;
		line-height: 1.7em;
		padding: 0;
		margin: 0;
		text-align: justify;
		text-justify: inter-ideograph;
	}
}

/************************************************************/
/*　記事詳細
/************************************************************/
#all_wrap .singleContent {
	margin-bottom: 100px;
}
#all_wrap .singleHeader {
	width: 100%;
	padding: 0 0 15px;
	margin: 0 auto 30px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
	border-bottom: 1px solid var(--text);
}
#all_wrap .singleHeader > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
}
.singleHeader_data {
	width: 100%;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
	position: relative;
}
.singleHeader_data > .date {
	display: block;
	font-family: var(--font-en);
	font-weight: lighter;
	font-size: 12px;
	line-height: 1;
	color: var(--text);
	padding: 0;
	margin: 0;
}
#all_wrap .tagList {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 5px;
	grid-row-gap: 5px;
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .tagList > .tag {
	font-size: 1rem;
	line-height: 1;
	padding: 3px 7px;
	margin: 0;
	display: inline-block;
	color: #fff;
	background: #44a334;
	border: none;
	border-radius: 15px;
}
#all_wrap .singleHeader > h1 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 25px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	text-align: left;
	border: none;
	background: none;
}

.tags {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 5px;
	grid-row-gap: 5px;
}
.tags > span {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-size: 10px;
	line-height: 1;
	color: #8c8c8c;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .singleContent {
		margin-bottom: 50px;
	}
	#all_wrap .singleHeader {
		width: 100%;
		padding: 0 0 15px;
		margin: 0 auto 30px;
		grid-row-gap: 10px;
	}
	#all_wrap .singleHeader > figure {
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	.singleHeader_data {
		width: 100%;
		grid-row-gap: 10px;
	}
	.singleHeader_data > .date {
		font-size: 12px;
	}
	#all_wrap .singleHeader > h1 {
		width: 100%;
		font-size: 18px;
		line-height: 1.4em;
	}

	.tags {
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		column-gap: 5px;
		grid-row-gap: 5px;
	}
	.tags > span {
		display: inline-block;
		padding: 0;
		margin: 0;
		font-size: 10px;
		line-height: 1;
		color: #8c8c8c;
	}
}

/*==============================*/
/*目次*/
/*==============================*/
#all_wrap .content .toc {
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
}
#all_wrap .content .toc-title {
	display: inline-block;
	padding: 5px 10px;
	margin: 0;
	background: var(--main);
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
	position: relative;
	top: 15px;
	left: 0;
	z-index: 2;
}
#all_wrap .content .toc .toc-list {
	padding: 30px;
	margin: 0;
	position: relative;
	list-style: none;
	background: #f4f4f4;
}
#all_wrap .content .toc .toc-list li ul {
	margin: 10px 0 !important;
	padding: 0 0 0 1.2em;
}
#all_wrap .content .toc .toc-list li {
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .content .toc .toc-list li a {
	display: inline-block;
	padding: 0 0 0 1.5em;
	position: relative;
	text-decoration: none;
	font-family: var(--font-jp);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6em;
	color: var(--text);
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .content .toc .toc-list > li > a {
	font-size: 16px;
	font-weight: 700;
}
#all_wrap .content .toc .toc-list li ul li a {
	display: inline-block;
	padding: 0 0 0 2em;
	position: relative;
	text-decoration: none;
	font-family: var(--font-jp);
	font-size: 14px;
	font-weight: lighter;
	line-height: 1.6em;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .content .toc .toc-list li a:hover {
	text-decoration: underline;
	opacity: 0.8;
}
#all_wrap .content .toc .toc-list li a strong,
#all_wrap .content .toc .toc-list li a span {
	font-family: var(--font-jp);
	font-weight: lighter;
	font-size: 14px !important;
}
#all_wrap .content .contentstable-number {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}
#all_wrap .content .toc .toc-list > li > a > .contentstable-number::after {
	content: '.';
}
#all_wrap .content .toc-toggle > a {
	display: inline-block;
	font-size: 14px;
	line-height: 1;
	color: #fff;
	text-decoration: none;
}
/*タグ*/
.post-tag {
	margin-top: 5px;
}
.post-tag,
.post-tag a {
	font-size: 14px;
	text-decoration: none;
}
.post-tag a:hover {
	text-decoration: underline;
	color: #0c61a8;
	text-decoration: underline;
}
@media only screen and (max-width: 768px){
	#all_wrap .content .toc .toc-list {
		padding: 20px;
		margin: 0;
		position: relative;
		list-style: none;
		background: #f4f4f4;
	}
	/*タグ*/
	.post-tag,
	.post-tag a {
		font-size: 12px;
	}
	.toc .toc-list {
		padding: 25px 20px 20px;
	}
}

/*==============================*/
/*記事詳細（関連記事）*/
/*==============================*/
.relatedPost {
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
}
.relatedPost > header {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 5px;
	padding: 12px;
	margin: 0 auto;
	background: var(--main);
	position: relative;
	z-index: 0;
}
.relatedPost > header > em {
	font-family: var(--font-en);
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 700;
	font-style: normal;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
}
#all_wrap .relatedPost > header > h2 {
	font-size: 18px;
	line-height: 1;
	font-weight: 400;
	color: #fff;
	background: none;
	border: none;
	padding: 0;
	margin: 0;
}

/* 記事一覧*/
#all_wrap .relatedList {
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
}
#all_wrap .relatedList > li {
	padding: 20px 0;
	margin: 0 auto;
	border-bottom: 1px dotted #999;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 20px;
	position: relative;
}
.relatedList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.relatedList > li figure {
	width: 150px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.relatedList > li figure::before {
	content: '';
	display: block;
	padding-top: 75%;
}
.relatedList > li figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .relatedList_info {
	width: calc(100% - 20px - 150px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
}
#all_wrap .relatedList_info > h3 {
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 15px;
	line-height: 1.4em;
	font-weight: 500;
	color: #19244c;
	background: none;
	border: none;
	transition: all 0.3s ease;
}
.relatedList_info > .date {
	font-size: 12px;
	line-height: 1;
	color: #999;
}
#all_wrap .relatedList > li:hover .relatedList_info > h3 {
	text-decoration: underline;
	transition: all 0.3s ease;
	color: var(--main);
	background: none;
	border: none;
}
@media screen and (max-width: 768px) {
	.relatedPost {
		margin: 0 auto;
	}
	#all_wrap .relatedList > li {
		padding: 10px 0;
		column-gap: 10px;
	}
	.relatedList > li figure {
		width: 80px;
	}
	#all_wrap .relatedList_info {
		width: calc(100% - 10px - 80px);
	}
	#all_wrap .relatedList_info > h3 {
		font-size: 14px;
	}
	.relatedList_info > .date {
		font-size: 11px;
	}
	#all_wrap .relatedList_info > h3 {
		font-size: 13px;
	}
	.relatedList_info > .date {
		font-size: 10px;
	}
}

/************************************************************/
/*　ブログ　詳細＆サイドバー 
/************************************************************/

/*ランキング*/
#all_wrap .sidRankList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	border: none;
	position: relative;
	display: flex;
	flex-direction: column;
}
#all_wrap .sidRankList > li {
	width: 100%;
	padding: 15px 0;
	margin: 0 auto;
	border-bottom: 1px solid #E5E5E5;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	column-gap: 15px;
}
.sidRankList > li > figure {
	width: 80px;
	padding: 0;
	margin: 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.sidRankList > li > figure:before {
	content: "";
	display: block;
	padding: 50%;
}
.sidRankList > li > figure a > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	padding: 0;
	margin: 0;
	transition: var(--ease);
}
.sidRankList > li:hover > figure a > img {
	transform: translate(-50%, -50%) scale(1.05);
	-webkit-transform: translate(-50%, -50%) scale(1.05);
	-ms-transform: translate(-50%, -50%) scale(1.05);
	transform-origin: center;
	transition: var(--ease);
}
.sidRankList > li > figure > .rank {
	display: inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	aspect-ratio: 1/1;
	background: var(--main);
	font-size: 0.8rem;
	line-height: 1;
	color: #fff;
	font-weight: 400;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.sidRankList > li > .sidRankInfo {
	width: calc(100% - 15px - 80px);
	padding: 0;
	margin: 0;
}
#all_wrap .sidRankList > li > .sidRankInfo > h3 {
	padding: 0;
	margin: 0;
	height: 100%;
	color: var(--text);
	font-size: 12px;
	line-height: 1.4em;
	font-weight: 400;
	border: none;
	background: none;
}
#all_wrap .sidRankList > li > .sidRankInfo > h3 a {
	width: 100%;
	height: 100%;
	display: -webkit-flex;
	display: flex;
	align-content: center;
	align-items: center;
	color: var(--text);
	font-family: var(--font-jp);
	font-size: 12px;
	line-height: 1.4em;
	font-weight: 400;
	text-decoration: none;
	text-align: justify;
	text-align: -webkit-justify;
	transition: var(--ease);
}
#all_wrap .sidRankList > li > .sidRankInfo > h3 a:hover {
	color: var(--main);
	transition: var(--ease);
}


/*==============================*/
/*記事詳細（関連記事）*/
/*==============================*/
#all_wrap .editor {
	padding: 0;
	margin: 50px auto 50px;
	position: relative;
}
#all_wrap .editor > header {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 5px;
	padding: 12px;
	margin: 0 auto;
	background: var(--main);
	position: relative;
	z-index: 0;
}
#all_wrap .editor > header > em {
	font-family: var(--font-en);
	font-size: 18px;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 700;
	font-style: normal;
	color: #fff;
	text-decoration: none;
}
#all_wrap .editor > header > h2 {
	font-size: 10px;
	line-height: 1;
	font-weight: 400;
	color: #fff;
	padding: 0;
	margin: 0;
}
#all_wrap .editorBox {
	width: 100%;
	padding: 20px;
	margin: 0;
	background: #fff;
	border: 5px solid var(--main);
	border-top: none;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 20px;
}
#all_wrap .editorBox > figure {
	width: 150px;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
	overflow: hidden;
	border-radius: 50%;
}
#all_wrap .editorBox > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap .editorBox > figure img {
	width: 100%;
	max-width: unset;
	height: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	object-fit: cover
}
#all_wrap .editorBox_info {
	width: calc(100% - 150px - 20px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	grid-row-gap: 5px;
}
#all_wrap .editorBox_info > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.2em;
	font-weight: bold;
	border: none;
	background: none;
}
#all_wrap .editorBox_info > h3 > small {
	font-size: 12px;
	font-weight: lighter;
}
#all_wrap .editorBox_info > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 12px;
	line-height: 1.7em;
}

@media screen and (max-width: 768px) {
	#all_wrap .editorBox > figure {
		width: 100px;
	}
	#all_wrap .editorBox_info {
		width: calc(100% - 100px - 20px);
	}
	#all_wrap .editorBox_info > h3 {
		font-size: 15px;
	}
	#all_wrap .editorBox {
		width: 100%;
		padding: 15px;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 10px;
	}
	#all_wrap .editorBox > figure {
		width: 150px;
		padding: 0;
		margin: 0 auto;
	}
	#all_wrap .editorBox_info {
		width: calc(100%);
	}
	#all_wrap .editorBox_info > h3 {
		width: 100%;
		font-size: 15px;
		text-align: center;
	}
}


/*前後の記事*/
#all_wrap .prevNext {
	width: 100%;
	padding: 0;
	margin: 0 auto;
}
#all_wrap .prevNext__pop {
	background-color: var(--text);
}
#all_wrap .eyecatch {
	background: var(--text);
}
#all_wrap .heading-secondary {
	color: var(--text);
}
#all_wrap .prevNext__text {
	padding: 0;
	margin: 0;
	color: var(--text);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*前後の記事*/
	#all_wrap .prevNext {
		width: 90%;
		padding: 0;
		margin: 0 auto;
	}
}

/*プロフィール*/
#all_wrap .profile {
	border: none;
	margin-top: 0;
	padding: 20px;
	background: var(--text);
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	align-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}
#all_wrap .profile__text {
	background: none;
	font-size: 15px;
	padding: 0 0 0 13px;
	margin-bottom: 15px;
	margin-top: 40px;
	border-left: 2px solid #d3c8a8;
	font-style: italic;
	text-align: left;
	color: #d3c8a8;
}
#all_wrap .profile__contents {
	width: 80%;
	padding: 0;
	margin: 0;
}
#all_wrap .profile__name {
	color: #d3c8a8;
	font-size: 19px;
	line-height: 1.4em;
	font-style: italic;
	padding: 0 0 10px;
	margin: 0 auto 10px;
	border-bottom: 1px solid #d3c8a8;
}
#all_wrap .profile__author {
	width: 15%;
	text-align: left;
	padding: 0;
	margin: 0 20px 0 0;
}
#all_wrap .profile__author img {
	width: 100%;
	height: auto;
	margin: 0;
}
#all_wrap .profile__list {
	display: none;
}
#all_wrap .profile__description {
	padding: 0;
	margin: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*プロフィール*/
	#all_wrap .profile {
		border: none;
		margin-top: 0;
		padding: 20px;
		background: var(--text);
		display: -webkit-flex;
		display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	}
	#all_wrap .profile__text {
		background: none;
		font-size: 15px;
		padding: 0 0 0 13px;
		margin-bottom: 15px;
		margin-top: 40px;
		border-left: 2px solid #d3c8a8;
		font-style: italic;
		text-align: left;
		color: #d3c8a8;
	}
	#all_wrap .profile__contents {
		width: 80%;
		padding: 0;
		margin: 0;
	}
	#all_wrap .profile__name {
		color: #d3c8a8;
		font-size: 19px;
		line-height: 1.4em;
		font-style: italic;
		padding: 0 0 10px;
		margin: 0 auto 10px;
		border-bottom: 1px solid #d3c8a8;
	}
	#all_wrap .profile__author {
		width: 15%;
		text-align: left;
		padding: 0;
		margin: 0 0 0 0;
	}
	#all_wrap .profile__author img {
		width: 100%;
		height: auto;
		margin: 0;
	}
	#all_wrap .profile__list {
		display: none;
	}
	#all_wrap .profile__description {
		padding: 0;
		margin: 0;
	}
}

/************************************************************/
/*　共通
/************************************************************/

/*mt*/
.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt40 { margin-top: 40px !important; }
.mt50 { margin-top: 50px !important; }
.mt100 { margin-top: 100px !important; }
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*mt*/
	.mt10 { margin-top: 10px !important; }
	.mt15 { margin-top: 10px !important; }
	.mt20 { margin-top: 10px !important; }
	.mt30 { margin-top: 15px !important; }
	.mt40 { margin-top: 20px !important; }
	.mt50 { margin-top: 25px !important; }
	.mt100 { margin-top: 50px !important; }
}

/*リスト*/
.content ul {
	padding: 0;
	margin: 0;
	position: relative;
	list-style: disc;
	list-style-position: inside;
}
.content ul > li {
	padding: 0;
	margin: 0;
	margin-bottom: 5px;
}
.content ul > li:last-child {
	margin-bottom: 0;
}
.content ul > li::before,
.content ul > li::after {
	display: none;
}


/************************************************************/
/*　CTA
/************************************************************/
.topCta {
	width: 100%;
	padding: 30px 0 20px 0;
	margin: 0 auto;
	position: relative;
	background: var(--main);
}
.topCta_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	background: #fff;
	border-radius: 10px;
}
.topCta_left {
	width: 50%;
	min-width: 600px;
	padding: 0;
	margin: 0;
	position: relative;
}
.topCta_right {
	width: calc(50%);
	min-width: 600px;
	padding: 30px;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 20px;
	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://mizu-pro.jp/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: -15px;
	left: 40%;
	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;
	text-align-last: justify;
	font-size: 22px;
	line-height: 1;
	font-weight: 700;
	font-style: normal;
	white-space: nowrap;
	color: var(--text);
	z-index: 2;
	transition: var(--ease);
}
#all_wrap .topCta_right > a.cta_tel > p {
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 5px;
	grid-row-gap: 7px;
	font-family: var(--font-en);
	font-size: 73px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	position: relative;
	transition: var(--ease);
}
#all_wrap .topCta_right > a.cta_tel:hover > p {
	color: #f77311;
	transition: var(--ease);
}
.topCta_right > a.cta_tel > p::before {
	content: '';
	display: block;
	width: auto;
	height: 55px;
	aspect-ratio: 97 / 55;
	background-image: url('https://mizu-pro.jp/wp-content/uploads/freedial.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
.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: 20px 20px;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	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(2px);
}
/* メール */
a.cta_mail {
	background: #ff6600;
}
a.cta_mail::before {
	content: '';
	display: block;
	width: auto;
	height: 20px;
	aspect-ratio: 1/1;
	background-image: url('https://mizu-pro.jp/wp-content/uploads/icon_mail_w.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
/* LINE */
a.cta_line {
	background: #06c655;
}
a.cta_line::before {
	content: '';
	display: block;
	width: auto;
	height: 20px;
	aspect-ratio: 53 / 50;
	background-image: url('https://mizu-pro.jp/wp-content/uploads/icon_line_w.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.topCta {
		width: 100%;
		padding: 30px 20px;
	}
	.topCta_wrap {
		width: 100%;
		max-width: 100%;
		flex-wrap: wrap;
	}
	.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: 0;
		grid-row-gap: 10px;
	}
	/*画像*/
	.topCta_left > figure {
		width: 100%;
	}
	.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;
	}
	#all_wrap .topCta_right > a.cta_tel > p {
		font-size: 35px;
		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: 10px;
		width: 100%;
		padding: 15px 20px;
		font-size: 20px;
	}
}

/************************************************************/
/*　トップページ　挨拶
/************************************************************/
#topGreeting {
	width: 100%;
	padding: 80px 0;
	margin: 0 auto;
	background: #fff;
	position: relative;
	z-index: 0;
}
#message_about {
	width: 100%;
	max-width: 1200px;
	padding: 50px;
	margin: 0 auto;
	background: #f7f7f7;
	border-radius: 20px;
	position: relative;
	z-index: 0;
}
.message_info > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	grid-row-gap: 10px;
}
#all_wrap .message_info > header > em {
	font-family: var(--font-en);
	font-size: 50px;
	line-height: 1;
	font-weight: bold;
	color: #000;
	font-style: normal;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: left;
}
#all_wrap .message_info > header > h2 {
	width: 100%;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 15px;
	line-height: 1;
	font-weight: bold;
	color: var(--main);
}
.message_wrap {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 100px;
}
.message_info {
	width: calc(100% - 100px - 380px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .message_info > h2 {
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	border: none;
	background: none;
	font-size: 25px;
	line-height: 1.4em;
	font-weight: bold;
	color: #000;
	text-align: left;
}
#all_wrap .message_info > p {
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
.message_wrap > figure {
	width: 380px;
	min-width: 380px;
	padding: 0;
	margin: 0;
	position: relative;
	transform: translate(0,-80px);
}
.message_wrap > figure img {
	width: 100%;
	height: auto;
}
#all_wrap .message_wrap .name {
	background: var(--main);
	border-radius: 30px 30px 30px 0;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2em;
	color: #fff;
	padding: 15px 30px;
	position: absolute;
	right: -80px;
	top: 200px;
	z-index: 1;
}
#all_wrap .message_wrap .name strong {
	font-size: 1.8em;
	line-height: 1.5em;
	font-weight: 900;
	color: #fff;
}
#all_wrap .message_wrap .name span {
	display: block;
	font-family: var(--font-en);
	font-size: 10px;
	line-height: 1.5em;
	font-weight: 700;
	color: #fff;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topGreeting {
		width: 100%;
		padding: 30px 20px;
		background: #f7f7f7;
	}
	#message_about {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
		background: none;
		border-radius: 10px;
		position: relative;
		z-index: 0;
	}
	.message_info > header {
		margin: 0 auto 20px;
	}
	#all_wrap .message_info > header > em {
		font-family: var(--font-en);
		font-size: 30px;
	}
	#all_wrap .message_info > header > h2 {
		width: 100%;
		font-size: 15px;
	}
	.message_wrap {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	.message_info {
		width: calc(100%);
	}
	#all_wrap .message_info > h2 {
		padding: 0;
		margin: 0 auto 10px;
		font-size: 18px;
	}
	.message_wrap > figure {
		width: 100%;
		min-width: 100%;
		transform: unset;
	}
	#all_wrap .message_wrap .name {
		background: var(--main);
		border-radius: 30px 0 0 0;
		font-size: 12px;
		font-weight: 700;
		line-height: 1.2em;
		color: #fff;
		padding: 15px 30px;
		position: absolute;
		right: -20px;
		top: unset;
		bottom: 1px;
		z-index: 1;
	}
	#all_wrap .message_wrap .name strong {
		font-size: 1.8em;
		line-height: 1.5em;
		font-weight: 900;
		color: #fff;
	}
	#all_wrap .message_wrap .name span {
		display: block;
		font-family: var(--font-en);
		font-size: 10px;
		line-height: 1.5em;
		font-weight: 700;
		color: #fff;
	}
}


/************************************************************/
/*　トップページ　動画
/************************************************************/
#topMovie {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
	position: relative;
}
#movie {
	width: 800px;
	min-width: 800px;
	aspect-ratio: 16 / 9;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}
#movie > video {
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 9;
}
#playButton {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	cursor: pointer;
	transition: var(--ease);
}
#playButton img {
	width: 100px;
	height: 100px;
	transition: var(--ease);
}
#playButton img:hover {
	opacity: 0.8;
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topMovie {
		width: 100%;
		padding: 30px 20px;
		background: #f7f7f7;
	}
	#movie {
		width: 100%;
		min-width: 100%;
		aspect-ratio: 16 / 9;
	}
	#playButton img {
		width: 50px;
		height: 50px;
		transition: var(--ease);
	}
}



/************************************************************/
/*　トップページ　エリア
/************************************************************/
#topArea {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
	position: relative;
	background: #fff;
	z-index: 0;
	overflow: hidden;
}
/* - エリア*/
#all_wrap .areabox {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .areabox dt {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	padding: 15px;
	margin: 0 auto;
	background: #f77311;
	font-size: 20px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
}
#all_wrap .areabox dt::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background-image: url('https://mizu-pro.jp/wp-content/uploads/icon_pin.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
#all_wrap .areabox dd {
	padding: 45px;
	margin: 0;
	border: 5px solid #f77311;
	border-top: none;
	position: relative;
	background: #fafafa;
}
#all_wrap .areabox dd > ul {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
	position: relative;
	list-style: none;
	width: 100%;
	padding: 0;
	margin: 0 auto;
}
#all_wrap .areabox dd > ul > li {
	display: inline-block;
	width: auto;
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 14px;
	line-height: 1.2em;
}
#all_wrap .areabox dd > ul > li > a {
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .areabox dd > ul > li > a:hover {
	font-size: 14px;
	color: var(--main);
	text-decoration: underline;
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topArea {
		width: 100%;
		padding: 30px 20px;
	}
	#area {
		padding: 30px 20px 30px;
	}
	/* - エリア*/
	#all_wrap .areabox {
		width: 100%;
		max-width: 100%;
	}
	#all_wrap .areabox dt {
		padding: 10px 15px;
		font-size: 18px;
	}
	#all_wrap .areabox dt::before {
		width: 18px;
		height: 18px;
	}
	#all_wrap .areabox dd {
		padding: 20px;
		border: 5px solid #f77311;
		border-top: none;
	}
	#all_wrap .areabox dd > ul {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-wrap: wrap;
		column-gap: 10px;
		grid-row-gap: 10px;
	}
}

/************************************************************/
/*　トップページ　リフォームメニュー
/************************************************************/
#topReform {
	width: 100%;
	padding: 100px;
	margin: 0 auto;
	position: relative;
	background-color: #fff;
	z-index: 0;
	overflow: hidden;
}
#topReform::after {
	content: '';
	display: block;
	width: 100%;
	min-width: 1500px;
	height: 100%;
	max-height: 600px;
	background-image: url('https://mizu-pro.jp/wp-content/uploads/topSolution_bg-1.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: top -80px center;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
	z-index: -2;
}
#topReform > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 80px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	grid-row-gap: 30px;
}
#all_wrap #topReform > header > em {
	display: inline-block;
	padding: 15px 40px 17px;
	margin: 0 auto;
	position: relative;
	background: var(--yellow);
	border-radius: 62px;
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	font-style: normal;
	color: var(--main);
	text-align: center;
	white-space: nowrap;
}
#all_wrap #topReform > header > em::before {
	content: '';
	display: block;
	width: 30px;
	height: 15px;
	background: var(--yellow);
	position: absolute;
	bottom: -14px;
	left: 50%;
	transform: translate(-50%,0);
	clip-path: polygon(0 0, 50% 100%, 100% 0);
}
#all_wrap #topReform > header > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	border: none;
	background: none;
	position: relative;
	font-size: 35px;
	line-height: 1.6em;
	font-weight: 900;
	color: #000;
	white-space: nowrap;
}
#all_wrap #topReform > header > h2 span {
	display: inline-block;
	padding: 10px 10px;
	margin: 0;
	background: var(--main);
	font-size: 35px;
	line-height: 1em;
	font-weight: 900;
	color: #fff;
}
#all_wrap #topReform > header > h2 span:first-of-type {
	margin-bottom: 5px;
}
#all_wrap #topReform > header > h2 strong {
	font-size: 1.4em;
	position: relative;
	font-weight: 900;
}

/*リスト*/
#all_wrap .reformList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 50px;
	grid-row-gap: 50px;
	counter-reset: reform-counter;
}
#all_wrap .reformList > li {
	width: calc((100% - 50px) / 2);
	padding: 0;
	margin: 0;
	background: #f7f7f7;
	position: relative;
	counter-increment: reform-counter;
}
#all_wrap .reformList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}
#all_wrap .reformList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#all_wrap .reformList > li > figure::before {
	content: '';
	display: block;
	padding-top: 30%;
}
#all_wrap .reformList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transform-origin: center;
	object-fit: cover;
	transition: var(--ease);
}
#all_wrap .reformList > li:hover > figure img {
	transform: translate(-50%,-50%) scale(1.05);
	transform-origin: center;
	transition: var(--ease);
}
.reformList_info {
	width: 100%;
	padding: 30px;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
	background: #f7f7f7;
}
#all_wrap .reformList_info > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 22px;
	line-height: 1.2em;
	font-weight: 900;
	color: var(--text);
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: var(--ease);
}
#all_wrap .reformList > li:hover .reformList_info > h3 {
	color: var(--main);
	transition: var(--ease);
}
.reform_open {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	min-width: 40px;
	background: var(--main);
	border-radius: 50%;
	background-image: url('https://mizu-pro.jp/wp-content/uploads/arrow_w.svg');
	background-repeat: no-repeat;
	background-position: 16px center;
	background-size: 10px;
	position: relative;
	z-index: 10;
	transition: var(--ease);
}
#all_wrap .reformList_info > p.reform_txt {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topReform {
		width: 100%;
		padding: 0;
	}
	#topReform::after {
		content: '';
		display: block;
		width: 100%;
		min-width: 100%;
		height: 100%;
		background-image: url('https://mizu-pro.jp/wp-content/uploads/topSolution_bg-1.webp');
		background-repeat: no-repeat;
		background-size: 100%;
		background-position: top center;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translate(-50%,0);
		z-index: -2;
	}
	#topReform > header {
		width: 100%;
		padding: 30px 20px;
		margin: 0 auto 20px;
		grid-row-gap: 30px;
	}
	#all_wrap #topReform > header > em {
		display: inline-block;
		padding: 7px 20px 10px;
		border-radius: 35px;
		font-size: 15px;
	}
	#all_wrap #topReform > header > em::before {
		width: 30px;
		height: 12px;
		bottom: -11px;
	}
	#all_wrap #topReform > header > h2 {
		width: 100%;
		font-size: 20px;
	}
	#all_wrap #topReform > header > h2 span {
		display: inline-block;
		padding: 10px 10px;
		font-size: 20px;
	}
	#all_wrap #topReform > header > h2 span:first-of-type {
		margin-bottom: 5px;
	}
	#all_wrap #topReform > header > h2 strong {
		font-size: 1.2em;
		font-weight: 900;
	}

	/*リスト*/
	#all_wrap .reformList {
		width: calc(100% - 40px);
		max-width: 100%;
		column-gap: 0;
		grid-row-gap: 20px;
		counter-reset: reform-counter;
	}
	#all_wrap #beginner .reformList {
		padding-bottom: 30px;
	}
	#all_wrap .reformList > li {
		width: 100%;
		counter-increment: reform-counter;
	}
	.reformList_info {
		width: 100%;
		padding: 20px;
		grid-row-gap: 10px;
	}
	#all_wrap .reformList_info > h3 {
		width: 100%;
		font-size: 18px;
	}
	.reform_open {
		width: 20px;
		height: 20px;
		min-width: 20px;
		background-position: 8px center;
		background-size: 5px;
	}
	#all_wrap .reformList_info > h3:hover .reform_open {
		background: var(--sub);
		background-image: url('https://mizu-pro.jp/wp-content/uploads/arrow_w.svg');
		background-repeat: no-repeat;
		background-position: 8px center;
		background-size: 5px;
		transform: rotate(90deg);
		transition: var(--ease);
	}
}

/************************************************************/
/*　トップページ　選ばれる理由
/************************************************************/
#topReason {
	width: 100%;
	padding: 100px;
	margin: 0 auto;
	position: relative;
	background-color: #f7f7f7;
	z-index: 0;
}
#all_wrap #topReason .contHead::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url('https://mizu-pro.jp/wp-content/uploads/reason_shade.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transform: scale(-1,-1);
	opacity: 0.3;
}
/*リスト*/
#all_wrap .reasonList {
	width: 100%;
	max-width: 1200px;
	min-width: 1200px;
	padding: 0;
	margin: 0 auto 100px;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 100px;
}
#all_wrap .reasonList > li {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 50px;
}
#all_wrap .reasonList > li::after {
	content: '';
	display: block;
	width: 80px;
	height: 80px;
	aspect-ratio: 1/1;
	position: absolute;
	bottom: -80px;
	left: 50%;
	transform: translate(-50%,0);
	background-image: url('https://mizu-pro.jp/wp-content/uploads/reason_line.svg');
	background-repeat: no-repeat;
	background-size: 200px;
	background-position: center;
}
#all_wrap .reasonList > li:nth-child(even)::after {
	content: '';
	display: block;
	width: 100px;
	height: 100px;
	aspect-ratio: 1/1;
	position: absolute;
	bottom: -110px;
	left: 47%;
	transform: translate(-50%,0);
	background-image: url('https://mizu-pro.jp/wp-content/uploads/reason_line.svg');
	background-repeat: no-repeat;
	background-size: 200px;
	background-position: center;
	transform: scale(-1,1);
}
#all_wrap .reasonList > li:last-child::after {
	display: none;
}
#all_wrap .reasonList > li > figure {
	width: 600px;
	min-width: 600px;
	padding: 0;
	margin: 0;
	position: relative;
	z-index: 0;
}
#all_wrap .reasonList > li > figure::after {
	content: '';
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 100 / 65;
	background-image: url('https://mizu-pro.jp/wp-content/uploads/reason_shade.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: absolute;
	bottom: -20px;
	right: -20px;
	z-index: -1;
	border-radius: 420px;
}
#all_wrap .reasonList > li > figure > span {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 420px;
}
#all_wrap .reasonList > li > figure > span::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .reasonList > li > figure > span img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .reasonList > li > figure > em {
	display: block;
	width: 100px;
	height: auto;
	aspect-raito: 104 / 126;
	background-image: url('https://mizu-pro.jp/wp-content/uploads/reason_icon_01.svg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
}

#all_wrap .reasonList > li .reasonList_info {
	width: calc(100% - 50px - 600px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 25px;
}
#all_wrap .reasonList > li:nth-child(odd) .reasonList_info {
	order: 1;
}
#all_wrap .reasonList_info > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	grid-row-gap: 7px;
}
#all_wrap .reasonList_info > h3 > span {
	width: fit-content;
	padding: 5px 10px 7px;
	margin: 0 auto 0 0;
	background: var(--main);
	border-radius: 5px;
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
}
#all_wrap .reasonList_info > h3 > span strong {
	color: var(--yellow);
}
#all_wrap .reasonList > li .reasonList_info > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topReason {
		width: 100%;
		padding: 30px 20px 20px;
	}
	#all_wrap #topReason .contHead::before {
		background-image: url('https://mizu-pro.jp/wp-content/uploads/reason_shade.webp');
	}
	#all_wrap #topReason .contHead::after {
		display: none;
	}

	/*リスト*/
	#all_wrap .reasonList {
		width: 100%;
		max-width: 100%;
		min-width: 100%;
		grid-row-gap: 30px;
		margin: 0 auto;
	}
	#all_wrap .reasonList > li {
		width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 15px;
	}
	#all_wrap .reasonList > li::after {
		display: none;
	}
	#all_wrap .reasonList > li:nth-child(even)::after {
		display: none;
	}
	#all_wrap .reasonList > li:last-child::after {
		display: none;
	}
	#all_wrap .reasonList > li > figure {
		width: 100%;
		min-width: 100%;
	}
	#all_wrap .reasonList > li > figure::after {
		width: 100%;
		bottom: -30px;
		right: -10px;
		z-index: -1;
		border-radius: 300px;
	}
	#all_wrap .reasonList > li > figure > span {
		display: block;
		width: 100%;
		border-radius: 300px;
	}
	#all_wrap .reasonList > li > figure > em {
		width: 70px;
	}

	#all_wrap .reasonList > li .reasonList_info {
		width: calc(100%);
		grid-row-gap: 15px;
		order: 1;
		z-index: 5;
	}
	#all_wrap .reasonList_info > h3 {
		width: 100%;
		grid-row-gap: 5px;
	}
	#all_wrap .reasonList_info > h3 > span {
		width: fit-content;
		padding: 5px 10px 7px;
		border-radius: 5px;
		font-size: 20px;
	}
}


/************************************************************/
/*　トップページ　施工事例
/************************************************************/
#topCase {
	width: 100%;
	padding: 100px;
	margin: 0 auto;
	position: relative;
	background: #f7f7f7;
}
.topCase_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 40px;
}
.case-sidebar {
	width: 340px;
	min-width: 340px;
	padding: 0;
	margin: 0;
	position: relative;
}
.topCase_content {
	width: calc(100% - 40px - 340px);
	padding: 0;
	margin: 0;
	position: relative;
}
/*タイトル*/
#all_wrap #topCase .contHead::before {
	content: '';
	display: block;
	width: auto;
	height: calc(100% + 30px);
	aspect-ratio: 351 / 412;
	background-image: url('https://mizu-pro.jp/wp-content/uploads/case_ttl_img_01.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
	position: absolute;
	bottom: 0;
	left: 10%;
	z-index: 1;
}
#all_wrap #topCase .contHead::after {
	content: '';
	display: block;
	width: auto;
	height: calc(100% + 30px);
	aspect-ratio: 368 / 424;
	background-image: url('https://mizu-pro.jp/wp-content/uploads/case_ttl_img_02.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
	position: absolute;
	bottom: 0;
	right: 10%;
	z-index: 1;
}
/*ボタン*/
#category-buttons {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	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: 2px solid var(--main);
	border-radius: 30px;
	position: relative;
	transition: var(--ease);
}
.cat-btn:hover,
.cat-btn.active {
	color: #fff;
	background: var(--main);
	transition: var(--ease);
}
/*リスト*/
#all_wrap .caseList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 40px;
	grid-row-gap: 60px;
}
#all_wrap .caseList > li {
	width: calc((100% - 40px) / 2);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
#all_wrap .caseList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}
#all_wrap .caseList > li > figure {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
}
#all_wrap .caseList > li > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .caseList > 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);
}
#all_wrap .caseList > li:hover > figure img {
	transform: translate(-50%,-50%) scale(1.05);
	transform-origin: center;
	transition: var(--ease);
}
.caseList_info {
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
.caseList_tag {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
}
.caseList_tag > span {
	display: inline-block;
	padding: 5px 12px;
	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);
}
#all_wrap .caseList_info > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	transition: var(--ease);
}
#all_wrap .caseList > li:hover .caseList_info > h3 {
	color: var(--main);
	transition: var(--ease);
}
#all_wrap .caseList_info > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	font-size: 13px;
	line-height: 1.7em;
}

/*3列*/
#all_wrap .caseList.sub > li {
	width: calc((100% - 40px) / 2);
	padding: 15px;
	margin: 0;
	background: #fafafa;
	border-radius: 10px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
	box-shadow: 5px 5px 0 rgba(0,0,0,0.05);
}
#all_wrap .caseList.sub .caseList_info > h3 {
	font-size: 16px;
}

/*サイドバー*/
.asideBox {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
}
#all_wrap .asideBox > h2 {
	width: 100%;
	padding: 0 0 10px;
	margin: 0 auto 20px;
	background: none;
	border: none;
	border-bottom: 1px solid var(--main);
	font-size: 24px;
	line-height: 1.2em;
	font-weight: 700;
	color: var(--text);
	text-align: left;
}
/* - カテゴリ一覧 */
#all_wrap .case-child-categories {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .case-child-categories > li {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .case-child-categories > li > a {
	font-size: 15px;
	line-height: 1;
	font-weight: 500;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 5px;
}
#all_wrap .case-child-categories > li > a .cat-count {
	display: inline-block;
	padding: 4px 10px 5px;
	margin: 0;
	font-size: 0.8rem;
	line-height: 1;
	color: var(--text);
	background: #ccc;
	border-radius: 20px;
	position: relative;
	top: 1px;
}
#all_wrap .case-child-categories > li > a:hover {
	color: var(--main);
	transition: var(--ease);
}
/*タグ*/
#all_wrap .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: 10px;
	grid-row-gap: 10px;
}
#all_wrap .area-child-tags > li {
	display: inline-block;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .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);
}
#all_wrap .area-child-tags > li > a:hover {
	color: #fff;
	background: var(--main);
	border: 1px solid var(--main);
	transition: var(--ease);
}
/*more*/
#all_wrap .aside_more {
	padding: 0;
	margin: 0;
	text-align: left;
}
#all_wrap .aside_more > a {
	display: inline-flex;
	justify-content: flex-start;
	align-items: baseline;
	column-gap: 10px;
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .aside_more > a::after {
	content: '';
	display: block;
	width: auto;
	height: 13px;
	aspect-ratio: 30 / 49;
	background-image: url('https://mizu-pro.jp/wp-content/uploads/arrow.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
}
#all_wrap .aside_more > a:hover {
	color: var(--main);
	transition: var(--ease);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topCase {
		width: 100%;
		padding: 30px 20px 20px;
	}
	.topCase_wrap {
		width: 100%;
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 30px
	}
	.topCase_wrap.sub {
		width: calc(100% - 40px);
	}
	.case-sidebar {
		width: 100%;
		min-width: 100%;
		order: 1;
		display: none;
	}
	.topCase_content {
		width: 100%;
	}
	/*タイトル*/
	#all_wrap #topCase .contHead::before {
		display: none;
	}
	#all_wrap #topCase .contHead::after {
		display: none;
	}
	/*ボタン*/
	#category-buttons {
		margin: 0 auto 20px;
		column-gap: 5px;
		grid-row-gap: 5px;
	}
	.cat-btn {
		display: inline-block;
		padding: 5px 10px;
		font-size: 12px;
		border: 2px solid var(--main);
		border-radius: 22px;
	}
	/*リスト*/
	#all_wrap .caseList {
		width: 100%;
		column-gap: 10px;
		grid-row-gap: 10px;
	}
	#all_wrap .caseList > li {
		width: calc((100% - 10px) / 2);
		grid-row-gap: 10px;
		padding: 10px;
		border-radius: 10px;
		background: #fafafa;
	}
	#all_wrap .caseList > li > figure {
		border-radius: 10px;
	}
	.caseList_info {
		grid-row-gap: 7px;
	}
	.caseList_tag {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		column-gap: 5px;
		grid-row-gap: 5px;
	}
	.caseList_tag > span {
		display: inline-block;
		padding: 3px 7px;
		font-size: 0.8rem;
		border-radius: 20px;
	}
	#all_wrap .caseList_info > h3 {
		width: 100%;
		font-size: 14px;
	}
	#all_wrap .caseList_info > p {
		font-size: 12px;
	}

	/*3列*/
	#all_wrap .caseList.sub > li {
		width: calc((100% - 10px) / 2);
		padding: 10px;
		border-radius: 10px;
		grid-row-gap: 10px;
		box-shadow: 3px 3px 0 rgba(0,0,0,0.05);
	}
	#all_wrap .caseList.sub .caseList_info > h3 {
		font-size: 14px;
	}
}

/************************************************************/
/*　トップページ　実績紹介
/************************************************************/
#topAchieve {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background: #f7f7f7;
	z-index: 0;
}
.topAchieve_wrap {
	width: 1000px;
	padding: 0 0 100px;
	margin: 0 auto;
	position: relative;
}
.topAchieve_wrap > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: 8px solid #fff;
	border-radius: 20px;
	background: #fff;
	overflow: hidden;
	box-shadow: 15px 15px 15px rgba(0,0,0,0.1);
}
.topAchieve_wrap > figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
.topAchieve_wrap > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
/*スタッフ*/
.topAchieve_wrap > span {
	content: '';
	display: block;
	width: auto;
	height: 540px;
	aspect-ratio: 509 / 1071;
	padding: 0;
	margin: 0;
	background-image: url('https://mizu-pro.jp/wp-content/uploads/topAchieve_human.webp');
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center;
	position: absolute;
	bottom: 0;
	left: -130px;
	z-index: 5;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topAchieve {
		width: 100%;
		padding: 20px;
	}
	.topAchieve_wrap {
		width: 100%;
		padding: 0;
	}
	.topAchieve_wrap > figure {
		width: 100%;
		border: 5px solid #fff;
		border-radius: 20px;
	}
	/*スタッフ*/
	.topAchieve_wrap > span {
		width: 50px;
		height: auto;
		bottom: -20px;
		left: -10px;
	}
}

/************************************************************/
/*　トップページ　クチコミ評価＆お問い合わせ状況
/************************************************************/
#topInformation {
	width: 100%;
	max-width: 1200px;
	padding: 100px 0 50px;
	margin: 0 auto;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#topNews {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0;
	position: relative;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topInformation {
		width: 100%;
		max-width: 100%;
		padding: 30px 20px;
	}
	#topNews {
		width: 100%;
		max-width: 100%;
	}
}

/*NEWS*/
#all_wrap .newsBox > ul {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
#all_wrap .newsBox > ul li {
	padding: 20px;
	margin: 0;
	width: calc((100% - 30px) / 2);
	background: #f7f7f7;
	border-radius: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 15px;
}
#all_wrap .newsBox > ul li > figure {
	width: 140px;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
	overflow: hidden;
	border-radius: 5px;
}
#all_wrap .newsBox > ul li > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .newsBox > ul 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);
}
#all_wrap .newsBox > ul li:hover > figure img {
	transform: translate(-50%,-50%) scale(1.05);
	transform-origin: center;
	transition: var(--ease);
}
#all_wrap .newsBox > ul li > .newsBox_info {
	width: calc(100% - 15px - 140px);
}
#all_wrap .newsBox > ul li .caseList_tag {
	padding: 0;
	margin: 0 auto 5px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 5px;
	grid-row-gap: 5px;
}
#all_wrap .newsBox > ul li .caseList_tag span {
	font-size: 11px;
	line-height: 1;
	padding: 3px 7px;
	margin: 0;
	display: inline-block;
	color: #fff;
	background: var(--main);
	border: none;
	border-radius: 15px;
}
#all_wrap .newsBox > ul li .tags span.newsBoxDate {
	font-size: 12px;
	line-height: 1;
	padding: 0;
	margin: 0 5px 0 0;
	display: inline-block;
	color: var(--text);
	background: none;
}
#all_wrap .newsBox > ul li h3 {
	padding: 0;
	margin: 0;
	font-size: 14px;
	line-height: 1.5em;
	font-weight: 500;
	color: var(--text);
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .newsBox > ul li h3 a {
	font-size: 14px;
	line-height: 1.5em;
	font-weight: 500;
	color: var(--text);
	transition: var(--ease);
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .newsBox > ul li h3 a:hover {
	color: var(--main);
	transition: var(--ease);
}
#all_wrap .newsBox > ul li .date {
	font-size: 12px;
	color: #999;
	line-height: 1;
	display: block;
	margin-bottom: 10px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*NEWS*/
	#all_wrap .newsBox > ul {
		width: calc(100%);
		max-width: 100%;
		column-gap: 0;
		grid-row-gap: 15px;
	}
	#all_wrap .newsBox > ul li {
		padding: 15px;
		margin: 0;
		width: 100%;
		background: #f7f7f7;
		border-radius: 5px;
		column-gap: 15px;
	}
	#all_wrap .newsBox > ul li > figure {
		width: 100px;
		padding: 0;
		margin: 0;
		position: relative;
		text-align: center;
		overflow: hidden;
		border-radius: 5px;
	}
	#all_wrap .newsBox > ul li > figure::before {
		content: '';
		display: block;
		padding: 50%;
	}
	#all_wrap .newsBox > ul li > .newsBox_info {
		width: calc(100% - 15px - 100px);
	}
	#all_wrap .newsBox > ul li .caseList_tag {
		padding: 0;
		margin: 0 auto 5px;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-wrap: wrap;
		column-gap: 5px;
		grid-row-gap: 5px;
	}
	#all_wrap .newsBox > ul li .caseList_tag span {
		font-size: 0.8rem;
		line-height: 1;
		padding: 3px 7px;
		margin: 0;
		display: inline-block;
		color: #fff;
		background: var(--main);
		border: none;
		border-radius: 15px;
	}
	#all_wrap .newsBox > ul li .tags span.newsBoxDate {
		font-size: 10px;
		line-height: 1;
		padding: 0;
		margin: 0 5px 0 0;
		display: inline-block;
		color: var(--text);
		background: none;
	}
	#all_wrap .newsBox > ul li h3 {
		font-size: 12px;
		line-height: 1.4em;
		font-weight: 400;
	}
	#all_wrap .newsBox > ul li h3 a {
		font-size: 12px;
		line-height: 1.4em;
		font-weight: 400;
	}
	#all_wrap .newsBox > ul li .date {
		font-size: 10px;
		color: #999;
		line-height: 1;
		display: block;
		margin-bottom: 10px;
	}
}


/************************************************************/
/*　トップページ　よくある質問
/************************************************************/
#topFaq {
	width: 100%;
	padding: 100px;
	margin: 0 auto;
	position: relative;
}
/*タイトル*/
#all_wrap #topFaq .contHead::before {
	content: '';
	display: block;
	width: auto;
	height: calc(100% + 30px);
	aspect-ratio: 297 / 346;
	background-image: url('https://mizu-pro.jp/wp-content/uploads/faq_ttl_img_01.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
	position: absolute;
	bottom: 0;
	left: 10%;
	z-index: 1;
}
#all_wrap #topFaq .contHead::after {
	content: '';
	display: block;
	width: auto;
	height: calc(100% + 30px);
	aspect-ratio: 275 / 317;
	background-image: url('https://mizu-pro.jp/wp-content/uploads/faq_ttl_img_02.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
	position: absolute;
	bottom: 0;
	right: 10%;
	z-index: 1;
}
/*子カテゴリタイトル*/
#all_wrap .faq-category-title {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 24px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	text-align: center;
}
/*リスト*/
#all_wrap .faqList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 50px;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
#all_wrap .faqList > dl {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background: none;
	border-radius: 20px;
}
#all_wrap .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: 20px 60px 20px 40px;
	margin: 0 auto;
	background: #d9f4fc;
	border-radius: 20px;
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	position: relative;
	cursor: pointer;
	transition: var(--ease);
}
#all_wrap .faqList > dl > dt:hover {
	color: #fff;
	background: var(--main);
	transition: var(--ease);
}
#all_wrap .faqList > dl > dt.active {
	background: var(--main);
	color: #fff;
	border-radius: 20px 20px 0 0;
	transition: var(--ease);
}
#all_wrap .faqList > dl > dt::before {
	content: 'Q';
	display: inline-flex;
	width: 30px;
	min-width: 30px;
	height: 30px;
	font-family: var(--font-en);
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	color: var(--sub);
	transition: var(--ease);
}
#all_wrap .faqList > dl > dt:hover::before,
#all_wrap .faqList > dl > dt.active::before {
	color: #fff;
	transition: var(--ease);
}
#all_wrap .faqList > dl > dt span {
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	margin: 0;
	background: none;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
}
#all_wrap .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);
}
#all_wrap .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);
}
#all_wrap .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);
}
#all_wrap .faqList > dl > dt:hover span::before,
#all_wrap .faqList > dl > dt:hover span::after,
#all_wrap .faqList > dl > dt.active span::before,
#all_wrap .faqList > dl > dt.active span::after {
	background: #fff;
	transition: var(--ease);
}
#all_wrap .faqList > dl > dd {
	margin: 0 auto;
	padding: 30px 40px;
	background: #f7f7f7;
	border-radius: 5px;
	font-size: 15px;
	line-height: 2;
	font-weight: 500;
	border-radius: 0 0 20px 20px;
}
#all_wrap .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 20px 0;
	}
	/*タイトル*/
	#all_wrap #topFaq .contHead::before {
		display: none;
	}
	#all_wrap #topFaq .contHead::after {
		display: none;
	}
	/*子カテゴリタイトル*/
	#all_wrap .faq-category-title {
		width: 100%;
		max-width: 100%;
		font-size: 18px;
	}
	/*リスト*/
	#all_wrap .faqList {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 30px;
		grid-row-gap: 10px;
	}
	#all_wrap .faqList > dl {
		border-radius: 10px;
	}
	#all_wrap .faqList > dl > dt {
		column-gap: 10px;
		flex-wrap: nowrap;
		width: 100%;
		padding: 15px 40px 15px 15px;
		margin: 0 auto;
		background: #d9f4fc;
		border-radius: 10px;
		font-size: 14px;
	}
	#all_wrap .faqList > dl > dt.active {
		background: var(--main);
		color: #fff;
		border-radius: 10px 10px 0 0;
		transition: var(--ease);
	}
	#all_wrap .faqList > dl > dt::before {
		content: 'Q';
		display: inline-flex;
		width: 16px;
		min-width: 16px;
		height: 16px;
		font-family: var(--font-en);
		font-size: 16px;
		line-height: 1;
		font-weight: 700;
		color: var(--sub);
		transition: var(--ease);
	}
	#all_wrap .faqList > dl > dt span {
		display: block;
		width: 10px;
		height: 10px;
		padding: 0;
		margin: 0;
		background: none;
		position: absolute;
		top: 50%;
		right: 15px;
		transform: translate(0,-50%);
		-webkit-transform: translate(0,-50%);
	}
	#all_wrap .faqList > dl > dt span::before {
		content: '';
		display: block;
		width: 10px;
		height: 2px;
		background: var(--sub);
		border-radius: 2px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		-webkit-transform: translate(-50%,-50%);
		transform-origin: center;
		transition: var(--ease);
	}
	#all_wrap .faqList > dl > dt span::after {
		content: '';
		display: block;
		width: 10px;
		height: 2px;
		background: var(--sub);
		border-radius: 2px;
		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);
	}
	#all_wrap .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);
	}
	#all_wrap .faqList > dl > dt:hover span::before,
	#all_wrap .faqList > dl > dt:hover span::after,
	#all_wrap .faqList > dl > dt.active span::before,
	#all_wrap .faqList > dl > dt.active span::after {
		background: #fff;
		transition: var(--ease);
	}
	#all_wrap .faqList > dl > dd {
		margin: 0 auto;
		padding: 20px 20px;
		background: var(--base2);
		border-radius: 5px;
		font-size: 14px;
		line-height: 2;
		font-weight: 500;
		border-radius: 0 0 20px 20px;
	}
	#all_wrap .faqList > dl > dd p {
		padding: 0;
		margin: 0 auto 10px;
		font-size: 14px;
		line-height: 2;
		font-weight: 500;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
}

/************************************************************/
/*　トップページ　会社概要
/************************************************************/
#topCompany {
	width: 100%;
	padding: 100px;
	margin: 0 auto;
	background: #f7f7f7;
	position: relative;
}
/*タイトル*/
#all_wrap #topCompany .contHead::before {
	content: '';
	display: block;
	width: auto;
	height: calc(100% + 30px);
	aspect-ratio: 385 / 396;
	background-image: url('https://mizu-pro.jp/wp-content/uploads/company_ttl_img_02.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
	position: absolute;
	bottom: 0;
	left: 10%;
	z-index: 1;
}
#all_wrap #topCompany .contHead::after {
	content: '';
	display: block;
	width: auto;
	height: calc(100% + 30px);
	aspect-ratio: 487 / 402;
	background-image: url('https://mizu-pro.jp/wp-content/uploads/company_ttl_img_01.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
	position: absolute;
	bottom: 0;
	right: 10%;
	z-index: 1;
}
/*ロゴ*/
#all_wrap .company_logo {
	width: 100%;
	max-width: 1200px;
	height: 100px;
	padding: 0;
	margin: 0 auto 30px;
	position: relative;
	text-align: center;
}
#all_wrap .company_logo img {
	width: auto;
	height: 100%;
}
/*ボックス*/
.topCompany_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	column-gap: 30px;
	background: #fff;
}
.topCompany_left {
	width: calc(50% - 15px);
	padding: 0;
	margin: 0;
	position: relative;
}
.topCompany_right {
	width: calc(50% - 15px);
	padding: 0;
	margin: 0;
	position: relative;
}
/*マップ*/
.topCompany_right > figure {
	width: 100%;
	height: 100%;
	padding: 10px;
	margin: 0;
	width: 100%;
	overflow: hidden;
	border-radius: 20px;
}
.topCompany_right > figure iframe {
	width: 100%;
	height: 100%;
	border-radius: 20px;
}
/*テーブル*/
#all_wrap .topCompany_table {
	overflow: hidden;
	table-layout: auto;
	border: none;
	background: none;
	padding: 0;
	width: 100%;
	max-width: 100%;
	margin: 0;
	background: #fff;
	border: none;
}
#all_wrap .topCompany_table th {
	display: table-cell;
	font-style: normal;
	font-feature-settings: "palt";
	border: none;
	border-bottom: 1px solid #fff;
	text-align: center;
	vertical-align: middle;
	font-family: var(--font-jp);
	font-size: 14px;
	font-weight: 500;
	background: var(--main);
	color: #fff;
	width: auto;
	padding: 30px;
	margin: 0;
	white-space: nowrap;
}
#all_wrap .topCompany_table td {
	display: table-cell;
	border: none;
	background: none;
	vertical-align: inherit;
	border-bottom: none;
	padding: 30px;
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	border-bottom: 1px solid rgba(155,155,155,0.5);
	line-height: 1.7em;
}
#all_wrap .topCompany_table tr:last-of-type th,
#all_wrap .topCompany_table tr:last-of-type td {
	border-bottom: none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topCompany {
		width: 100%;
		padding: 30px 20px 20px;
	}
	/*タイトル*/
	#all_wrap #topCompany .contHead::before {
		display: none;
	}
	#all_wrap #topCompany .contHead::after {
		display: none;
	}
	/*ロゴ*/
	#all_wrap .company_logo {
		width: 100%;
		max-width: 100%;
		height: 70px;
		margin: 0 auto 20px;
	}
	/*ボックス*/
	.topCompany_wrap {
		width: 100%;
		max-width: 100%;
		border-radius: 10px;
		flex-wrap: wrap;
		column-gap: 0;
	}
	.topCompany_left {
		width: 100%;
	}
	.topCompany_right {
		width: 100%;
	}
	/*マップ*/
	.topCompany_right > figure {
		padding: 10px;
		border-radius: 10px;
		aspect-ratio: 4 / 3;
	}
	.topCompany_right > figure iframe {
		width: 100%;
		height: 100%;
		border-radius: 10px;
	}
	/*テーブル*/
	#all_wrap .topCompany_table th {
		font-size: 12px;
		padding: 15px;
	}
	#all_wrap .topCompany_table td {
		padding: 15px;
		font-size: 12px;
	}
}

/************************************************************/
/*　トップページ　お問い合わせ
/************************************************************/
#topContact {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
	background: var(--main);
	position: relative;
}
#all_wrap #topContact > header {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	grid-row-gap: 15px;
}
#all_wrap #topContact > header > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-family: var(--font-en);
	font-size: 50px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-align: center;
	z-index: 5;
}
#all_wrap #topContact > header > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 16px;
	line-height: 1.4em;
	font-weight: 700;
	color: #fff;
	z-index: 5;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topContact {
		width: 100%;
		padding: 20px 0 0;
	}
	#all_wrap #topContact > header {
		width: 100%;
		max-width: 100%;
		grid-row-gap: 10px;
	}
	#all_wrap #topContact > header > h2 {
		font-size: 25px;
	}
	#all_wrap #topContact > header > p {
		font-size: 14px;
	}
}

/************************************************************/
/*　よくある質問
/************************************************************/
#topFaq.sub {
	padding: 0;
	margin: 0 auto;
}
.faq-nav {
	display: flex;
	justify-content:center;
	align-items: center;
	gap: 10px;
	margin: 0 auto 50px;
	flex-wrap: wrap;
}
.faq-nav-btn {
	padding: 10px 20px;
	background: var(--main);
	border-radius: 35px;
	text-decoration: none;
	color: #fff;
	transition: var(--ease);
}
.faq-nav-btn:hover {
	background: var(--sub);
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topFaq.sub {
		padding: 0 20px;
	}
	.faq-nav {
		gap: 10px;
		margin: 0 auto 30px;
	}
	.faq-nav-btn {
		padding: 10px 20px;
		background: var(--main);
		border-radius: 35px;
		text-decoration: none;
		color: #fff;
		transition: var(--ease);
	}
	.faq-nav-btn:hover {
		background: var(--sub);
		transition: var(--ease);
	}
}


/************************************************************/
/*　新着情報
/************************************************************/
#all_wrap .newsList {
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
#all_wrap .newsList > li {
	padding: 0 0 20px;
	margin: 0;
	width: 100%;
	border-bottom: 1px dotted #e1e1e1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 15px;
}
#all_wrap .newsList > li > figure {
	width: 200px;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
	overflow: hidden;
	border-radius: 5px;
}
#all_wrap .newsList > li > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .newsList > 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);
}
#all_wrap .newsList > li:hover > figure img {
	transform: translate(-50%,-50%) scale(1.05);
	transform-origin: center;
	transition: var(--ease);
}
#all_wrap .newsList > li > .newsBox_info {
	width: calc(100% - 15px - 200px);
}
#all_wrap .newsList > li .caseList_tag {
	padding: 0;
	margin: 0 auto 5px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 5px;
	grid-row-gap: 5px;
}
#all_wrap .newsList > li .caseList_tag span {
	font-size: 11px;
	line-height: 1;
	padding: 3px 7px;
	margin: 0;
	display: inline-block;
	color: #fff;
	background: #44a334;
	border: none;
	border-radius: 15px;
}
#all_wrap .newsList > li .tags span.newsBoxDate {
	font-size: 12px;
	line-height: 1;
	padding: 0;
	margin: 0 5px 0 0;
	display: inline-block;
	color: var(--text);
	background: none;
}
#all_wrap .newsList > li h3 {
	padding: 0;
	margin: 0;
	font-size: 14px;
	line-height: 1.7em;
	font-weight: 500;
	color: var(--text);
}
#all_wrap .newsList > li h3 a {
	font-size: 14px;
	line-height: 1.7em;
	font-weight: 500;
	color: var(--text);
	transition: var(--ease);
}
#all_wrap .newsList > li h3 a:hover {
	color: var(--main);
	transition: var(--ease);
}
#all_wrap .newsList > li .date {
	font-size: 11px;
	color: #999;
	line-height: 1;
	display: block;
	margin-bottom: 10px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .newsList {
		width: calc(100% - 40px);
		margin: 0 auto;
		grid-row-gap: 0;
		border-top: 1px dotted #e1e1e1;
	}
	#all_wrap .newsList > li {
		padding: 20px 0;
		margin: 0;
		width: 100%;
		border-bottom: 1px dotted #e1e1e1;
		display: flex;
		justify-content: space-between;
		align-items: center;
		column-gap: 15px;
	}
	#all_wrap .newsList > li > figure {
		width: 80px;
	}
	#all_wrap .newsList > li > figure::before {
		padding: 50%;
	}
	#all_wrap .newsList > li > .newsBox_info {
		width: calc(100% - 15px - 80px);
	}
	#all_wrap .newsList > li h3 {
		font-size: 12px;
		line-height: 1.5em;
		font-weight: 500;
		color: var(--text);
		transition: var(--ease);
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
	#all_wrap .newsList > li h3 a {
		font-size: 12px;
		line-height: 1.5em;
		font-weight: 500;
		color: var(--text);
		transition: var(--ease);
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
	#all_wrap .newsList > li .date {
		font-size: 11px;
		color: #999;
		line-height: 1;
		display: block;
		margin-bottom: 10px;
	}
}


/************************************************************/
/*　コラム
/************************************************************/
#all_wrap .columnList {
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 20px;
}
#all_wrap .columnList > li {
	padding: 15px;
	margin: 0;
	width: calc((100% - 20px) / 2);
	border: none;
	background: #fafafa;
	border-radius: 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 15px;
	box-sizing: border-box;
	transition: var(--ease);
	position: relative;
}
#all_wrap .columnList > li:hover {
	background: var(--base);
	transition: var(--ease);
}
#all_wrap .columnList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}
#all_wrap .columnList > li > figure {
	width: 140px;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
	overflow: hidden;
	border-radius: 5px;
}
#all_wrap .columnList > li > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .columnList > 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);
}
#all_wrap .columnList > li:hover > figure img {
	transform: translate(-50%,-50%) scale(1.05);
	transform-origin: center;
	transition: var(--ease);
}
#all_wrap .columnList > li > .columnBox_info {
	width: calc(100% - 15px - 140px);
}
#all_wrap .columnList > li .caseList_tag {
	padding: 0;
	margin: 0 auto 5px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 5px;
	grid-row-gap: 5px;
}
#all_wrap .columnList > li .caseList_tag span {
	font-size: 1rem;
	line-height: 1;
	padding: 3px 7px;
	margin: 0;
	display: inline-block;
	color: #fff;
	background: #44a334;
	border: none;
	border-radius: 15px;
}
#all_wrap .columnList > li h3 {
	padding: 0;
	margin: 0;
	font-size: 12px;
	line-height: 1.5em;
	font-weight: 500;
	color: var(--text);
}
#all_wrap .columnList > li h3 a {
	font-size: 12px;
	line-height: 1.5em;
	font-weight: 500;
	color: var(--text);
	transition: var(--ease);
}
#all_wrap .columnList > li h3 a:hover {
	color: var(--main);
	transition: var(--ease);
}
#all_wrap .columnList > li .date {
	font-size: 11px;
	color: #999;
	line-height: 1;
	display: block;
	margin-bottom: 10px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .columnList {
		width: calc(100% - 40px);
		margin: 0 auto;
		grid-row-gap: 0;
		border-top: 1px dotted #e1e1e1;
	}
	#all_wrap .columnList > li {
		padding: 20px 0;
		margin: 0;
		width: 100%;
		border-bottom: 1px dotted #e1e1e1;
		display: flex;
		justify-content: space-between;
		align-items: center;
		column-gap: 15px;
		background: none;
	}
	#all_wrap .columnList > li:hover {
		background: none;
	}
	#all_wrap .columnList > li > figure {
		width: 80px;
	}
	#all_wrap .columnList > li > figure::before {
		padding: 50%;
	}
	#all_wrap .columnList > li > .columnBox_info {
		width: calc(100% - 15px - 80px);
	}
	#all_wrap .columnList > li h3 {
		padding: 0;
		margin: 0;
		font-size: 12px;
		line-height: 1.5em;
		font-weight: 500;
		color: var(--text);
	}
	#all_wrap .columnList > li h3 a {
		font-size: 12px;
		line-height: 1.5em;
		font-weight: 500;
		color: var(--text);
		transition: var(--ease);
	}
	#all_wrap .columnList > li h3 a:hover {
		color: var(--main);
		transition: var(--ease);
	}
	#all_wrap .columnList > li .date {
		font-size: 11px;
		color: #999;
		line-height: 1;
		display: block;
		margin-bottom: 10px;
	}
}


/************************************************************/
/*　クチコミ
/************************************************************/
#all_wrap .reviewList {
	width: 100%;
	height: 300px;
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
#all_wrap .reviewList > li {
	padding: 0 0 20px;
	margin: 0;
	width: 100%;
	border-bottom: 1px dotted #9b9b9b;
}
#all_wrap .reviewList > li > h3 {
	padding: 0;
	margin: 0 auto 10px;
	font-size: 14px;
	line-height: 1.2em;
	font-weight: 500;
	color: #707070;
}
#all_wrap .reviewList > li > h3 > em {
	display: inline-block;
	padding: 0;
	margin: 0 5px;
	color: #FF7B25;
	font-family: var(--font-en);
	font-style: normal;
	font-size: 20px;
	font-weight: 600;
}
#all_wrap .reviewList > li > div,
#all_wrap .reviewList > li p {
	font-size: 14px;
	line-height: 1.7em;
	padding: 0;
	margin: 0;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .reviewList {
		width: 100%;
		height: 240px;
		padding: 0;
		margin: 0;
		list-style: none;
		overflow-y: scroll;
	}
}


/************************************************************/
/*　会社情報
/************************************************************/
#all_wrap .tbl_company {
	width: 100%;
	margin: 1.5rem auto;
	border-collapse: collapse;
	color: #0b1b2b;
	background: #fff;
	box-shadow: 0 4px 16px rgba(37, 99, 235, 0.05);
	border-radius: 12px;
	overflow: hidden;
}
#all_wrap .tbl_company th,
#all_wrap .tbl_company td {
	padding: 14px 16px;
	border-bottom: 1px solid rgba(9,30,66,.12);
	font-size: 15px;
	line-height: 1.6;
}
#all_wrap .tbl_company th {
	width: 160px;
	color: #1e3a8a;
	font-weight: 700;
	background: #f0f6ff;
	text-align: center;
	vertical-align: middle;
}
#all_wrap .tbl_company td{
	background: #fff;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .tbl_company {
		width: 100%;
		margin: 1.5rem auto;
		border-collapse: collapse;
		color: #0b1b2b;
		background: #fff;
		box-shadow: 0 4px 16px rgba(37, 99, 235, 0.05);
		border-radius: 0;
		overflow: hidden;
	}
	#all_wrap .tbl_company th,
	#all_wrap .tbl_company td {
		padding: 14px 16px;
		border-bottom: 1px solid rgba(9,30,66,.12);
		font-size: 15px;
		line-height: 1.6;
	}
	#all_wrap .tbl_company th {
		width: 160px;
		color: #1e3a8a;
		font-weight: 700;
		background: #f0f6ff;
		text-align: center;
		vertical-align: middle;
	}
	#all_wrap .tbl_company td{
		background: #fff;
	}
}


/************************************************************/
/*　初めての方へ
/************************************************************/
#beginner {
	padding: 50px 0 0;
}
/*ご挨拶*/
#begin_greeting {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .begin_greeting_wrap {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .begin_greeting_wrap > header {
	width: 100%;
	padding: 30px 80px 35px;
	margin: 0 auto 50px;
	position: relative;
	border-top: 1px solid var(--main);
	border-bottom: 1px solid var(--main);
}
#all_wrap .begin_greeting_wrap > header::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(https://mizu-pro.jp/wp-content/uploads/reason_shade.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transform: scale(-1, -1);
	opacity: 0.3;
}
#all_wrap .begin_greeting_wrap > header > figure {
	width: 200px;
	height: auto;
	aspect-ratio: 1/1;
	overflow: hidden;
	position: absolute;
	bottom: 0;
	right: 80px;
}
#all_wrap .begin_greeting_wrap > header > figure img {
	width: 100%;
	height: auto;
}
#all_wrap .begin_greeting_wrap > header > h2 {
	width: 100%;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	font-size: 30px;
	line-height: 1.7em;
	font-weight: 900;
	color: var(--main);
}


#all_wrap .begin_greeting_wrap > .info {
	width: calc(100%);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .txtbox {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
}
#all_wrap .begin_greeting_wrap > .info h2 {
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	border: none;
	background: none;
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	text-align: left;
}
#all_wrap .begin_greeting_wrap > .info p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}


/*強み*/
#begin_strength {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	background: var(--main);
	text-align: center;
}
#all_wrap #begin_strength > h2 {
	display: inline-block;
	width: auto;
	width: fit-content;
	padding: 15px 60px 17px;
	margin: 0 auto 30px;
	position: relative;
	background: var(--yellow);
	border-radius: 62px;
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	font-style: normal;
	color: var(--main);
	text-align: center;
	white-space: nowrap;
}
#all_wrap #begin_strength > h2::before {
	content: '';
	display: block;
	width: 30px;
	height: 15px;
	background: var(--yellow);
	position: absolute;
	bottom: -14px;
	left: 50%;
	transform: translate(-50%,0);
	clip-path: polygon(0 0, 50% 100%, 100% 0);
}
#all_wrap #begin_strength > p {
	padding: 0;
	margin: 0 auto;
	text-align: center;
	color: #fff;
}

/*エリア*/
#begin_area {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	background: var(--base);
	text-align: center;
}

/*お支払い*/
#begin_payment {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	background: var(--base2);
}
#all_wrap .flowBox {
	width: 100%;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
}
#all_wrap .flowBox dl {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background: #fff;
	border-radius: 10px;
	display: flex;
	justify-content: space-between;
	filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.08));
}
#all_wrap .flowBox dl::after {
	content: '';
	display: block;
	width: 30px;
	height: 15px;
	background: #fff;
	position: absolute;
	bottom: -14px;
	left: 50%;
	transform: translate(-50%,0);
	clip-path: polygon(0 0, 50% 100%, 100% 0);
}
#all_wrap .flowBox dl:last-of-type::after {
	display: none;
}
#all_wrap .flowBox dl dt {
	width: 250px;
	min-width: 250px;
	padding: 20px;
	margin: 0;
	background: var(--sub);
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	text-align: center;
	border-radius: 10px 0 0 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#all_wrap .flowBox dl dd {
	width: calc(100% - 250px);
	padding: 20px;
	margin: 0;
	background: #fff;
	position: relative;
	border-radius: 0 10px 10px 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
#all_wrap .flowBox dl dd > p {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .flowBox dl dd > p:last-of-type {
	margin-bottom: 0;
}

/*流れ*/
#begin_flow {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	background: var(--base);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#beginner {
		padding: 30px 0 0;
	}
	/*ご挨拶*/
	#begin_greeting {
		width: calc(100% - 40px);
	}
	#all_wrap .begin_greeting_wrap {
		width: 100%;
		max-width: 100%;
	}
	#all_wrap .begin_greeting_wrap > header {
		width: 100%;
		padding: 20px 20px 25px;
		margin: 0 auto 20px;
	}
	#all_wrap .begin_greeting_wrap > header > figure {
		width: 80px;
		right: 10px;
	}
	#all_wrap .begin_greeting_wrap > header > h2 {
		font-size: 15px;
		line-height: 1.5em;
	}
	#all_wrap .begin_greeting_wrap > .info {
		width: calc(100%);
	}
	#all_wrap .begin_greeting_wrap > .info h2 {
		padding: 0;
		margin: 0 auto 20px;
		font-size: 20px;
		text-align: center;
	}
	#all_wrap .txtbox {
		width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		position: relative;
	}

	/*強み*/
	#begin_strength {
		width: 100%;
		padding: 30px 20px;
	}
	#all_wrap #begin_strength > h2 {
		padding: 10px 20px 12px;
		border-radius: 40px;
		font-size: 14px;
		margin: 0 auto 20px;
	}
	#all_wrap #begin_strength > h2::before {
		width: 20px;
		height: 12px;
		bottom: -11px;
	}
	#all_wrap #begin_strength > p {
		padding: 0;
		margin: 0 auto;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
		color: #fff;
	}

	/*エリア*/
	#begin_area {
		width: 100%;
		padding: 30px 20px;
		margin: 0 auto;
		position: relative;
		background: var(--base);
		text-align: center;
	}

	/*お支払い*/
	#begin_payment {
		width: 100%;
		padding: 30px 20px;
	}
	#all_wrap .flowBox {
		width: 100%;
		max-width: 100%;
		grid-row-gap: 20px;
	}
	#all_wrap .flowBox dl {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		background: #fff;
		border-radius: 10px;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.08));
	}
	#all_wrap .flowBox dl::after {
		width: 20px;
		height: 12px;
		bottom: -11px;
	}
	#all_wrap .flowBox dl dt {
		width: 100%;
		min-width: 100%;
		padding: 10px;
		margin: 0;
		background: var(--sub);
		font-size: 16px;
		line-height: 1;
		font-weight: 700;
		color: #fff;
		text-align: center;
		border-radius: 10px 10px 0 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#all_wrap .flowBox dl dd {
		width: calc(100%);
		padding: 10px;
		margin: 0;
		background: #fff;
		position: relative;
		border-radius: 0 0 10px 10px;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
	#all_wrap .flowBox dl dd > p {
		width: 100%;
		padding: 0;
		margin: 0 auto 10px;
		text-align: justify;
		text-justify: inter-ideograph;
		word-break: break-all;
	}
	#all_wrap .flowBox dl dd > p:last-of-type {
		margin-bottom: 0;
	}

	/*流れ*/
	#begin_flow {
		width: 100%;
		padding: 30px 20px;
	}
}

/************************************************************/
/*　お問い合わせ & お見積もり
/************************************************************/
#contact {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#estimate {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .contact_txt {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .contact_txt > p {
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	text-align: center;
}
#all_wrap .contact_txt > p:last-of-type {
	margin-bottom: 0;
}
#all_wrap .cfBox {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
	background: #f7f7f7;
	position: relative;
}
#all_wrap .content .cfBox > h2 {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0 auto 40px;
	border: none;
	background: none;
	position: relative;
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	text-align: center;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .contact_txt {
		width: 100%;
		padding: 30px 20px;
	}
	#all_wrap .contact_txt > p {
		margin: 0 auto 10px;
	}
	#all_wrap .cfBox {
		width: 100%;
		padding: 30px 20px;
	}
	#all_wrap .content .cfBox > h2 {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 20px;
		font-size: 20px;
	}
}

/************************************************************/
/*　リフォームメニュー 子ページ
/************************************************************/
#all_wrap .reform_page {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .reform_txt {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .reform_txt > p {
	padding: 0;
	margin: 0 auto 10px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .reform_txt > p:last-of-type {
	margin-bottom: 0;
}
/*取扱商品*/
#all_wrap #sc_product {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	margin-top: 100px;
}
/*事例*/
#all_wrap #sc_reform-case {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	margin-top: 100px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .reform_txt {
		width: 100%;
		max-width: 100%;
	}
	/*取扱商品*/
	#all_wrap #sc_product {
		width: 100%;
		max-width: 100%;
		margin-top: 50px;
	}
	/*事例*/
	#all_wrap #sc_reform-case {
		width: 100%;
		max-width: 100%;
		margin-top: 50px;
	}
}

/*取扱商品リスト*/
#all_wrap .productList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	grid-row-gap: 20px;
}
#all_wrap .productList > li {
	width: 100%;
	padding: 20px;
	margin: 0;
	background: #fafafa;
	border-radius: 10px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 20px;
	box-shadow: 5px 5px 0 rgba(0,0,0,0.05);
	transition: var(--ease);
}
#all_wrap .productList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
}
#all_wrap .productList > li > header {
	width: 100%;
	padding: 0 0 10px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 15px;
	border-bottom: 2px solid var(--main);
}
#all_wrap .productList > li > header .maker {
	display: inline-block;
	width: fit-content;
	height: 20px;
}
#all_wrap .productList > li > header .maker img {
	width: auto;
	height: 100%;
}
#all_wrap .productList > li > header h3 {
	width: auto;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	position: relative;
	text-align: left;
	font-size: 22px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	transition: var(--ease);
}
#all_wrap .productList > li > figure {
	display: block;
	width: 250px;
	min-width: 250px;
	height: auto;
	aspect-ratio: 1/1;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	background: #fff;
}
#all_wrap .productList > li > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap .productList > 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);
}
.productList_info {
	width: calc(100% - 20px - 250px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 7px;
	align-items: flex-end;
}
#all_wrap .productList_info > p.list_txt {
	width: 100%;
	padding: 10px 15px;
	margin: 0 auto;
	position: relative;
	font-size: 13px;
	line-height: 1.7em;
	background: #F2F8FC;
}
#all_wrap .productList_info > p.price {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 16px;
	line-height: 1 !important;
	font-weight: 600;
	text-align: right;
}
#all_wrap .productList_info > p.sprice {
	width: fit-content;
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 14px;
	line-height: 1 !important;
	font-weight: bold;
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
}
#all_wrap .productList_info > p.sprice::before {
	content: '税別・工事費別途';
	display: inline-block;
	width: 100%;
	padding: 5px 10px;
	margin: 0;
	background: var(--main);
	font-size: 14px;
	line-height: 1 !important;
	font-weight: bold;
	color: #fff;
	text-shadow: unset;
	white-space: nowrap;
	filter: unset;
	text-align: center;
}
#all_wrap .productList_info > p.sprice em {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 90px;
	min-width: 90px;
	height: 90px;
	aspect-ratio: 1/1;
	background-image: url('https://mizu-pro.jp/wp-content/uploads/badge.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: absolute;
	bottom: 0;
	left: -100px;
	font-size: 25px;
	line-height: 1 !important;
	font-weight: bold;
	color: #fff;
	font-style: normal;
	filter: drop-shadow(0px 0px 1px rgba(0,0,0,0.2));
	transform-origin: center;
	transform: rotate(-5deg);
}
#all_wrap .productList_info > p.sprice span {
	font-size: 30px;
	line-height: 1 !important;
	font-weight: 700;
	color: #ffe800;
	text-shadow: 0px -1px 0 var(--red), 1px -1px 0 var(--red), 1px 0 0 var(--red), 1px 1px 0 var(--red), 0 1px 0 var(--red), -1px 1px 0 var(--red), -1px 0 0 var(--red), -1px -1px 0 var(--red);
	filter: drop-shadow(0px 0px 1px var(--red));
}
#all_wrap .productList_info > p.sprice strong {
	font-size: 55px;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*取扱商品リスト*/
	#all_wrap .productList {
		width: 100%;
		grid-row-gap: 20px;
	}
	#all_wrap .productList > li {
		width: 100%;
		padding: 20px;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	#all_wrap .productList > li > header {
		width: 100%;
		padding: 0 0 15px;
		column-gap: 0;
		grid-row-gap: 10px;
		flex-wrap: wrap;
		border-bottom: 2px solid var(--main);
	}
	#all_wrap .productList > li > header .maker {
		display: block;
		width: 100%;
		height: 20px;
		text-align: center;
	}
	#all_wrap .productList > li > header h3 {
		width: 100%;
		text-align: center;
		font-size: 17px;
	}
	#all_wrap .productList > li > figure {
		width: 100%;
		min-width: 100%;
	}
	.productList_info {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
		display: flex;
		flex-direction: column;
		grid-row-gap: 7px;
		align-items: flex-end;
	}
	#all_wrap .productList_info > p.list_txt {
		width: 100%;
		padding: 10px 15px;
		margin: 0 auto;
		position: relative;
		font-size: 13px;
		line-height: 1.7em;
		background: #F2F8FC;
	}
	#all_wrap .productList_info > p.price {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		font-size: 14px;
		line-height: 1 !important;
		font-weight: 600;
		text-align: right;
	}
	#all_wrap .productList_info > p.sprice {
		width: fit-content;
		padding: 0;
		margin: 0;
		position: relative;
		font-size: 12px;
		line-height: 1 !important;
		font-weight: bold;
		display: flex;
		flex-direction: column;
		grid-row-gap: 5px;
	}
	#all_wrap .productList_info > p.sprice::before {
		width: 100%;
		padding: 5px 10px;
		font-size: 14px;
	}
	#all_wrap .productList_info > p.sprice em {
		width: 90px;
		min-width: 90px;
		height: 90px;
		bottom: 0;
		left: -100px;
		font-size: 25px;
	}
	#all_wrap .productList_info > p.sprice span {
		font-size: 20px;
	}
	#all_wrap .productList_info > p.sprice strong {
		font-size: 45px;
	}
}

/************************************************************/
/*　スマホ固定
/************************************************************/
#fixedMenu {
	width: 100%;
	height: 50px;
	padding: 0;
	margin: 0 auto;
	background: #f77311;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 10;
	display: flex;
	justify-content: space-between;
}
#fixedMenu #menu-header-btn {
	width: 150px;
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 0;
}
#fixedMenu #menu-header-btn > li {
	width: 50px;
	min-width: 50px;
	height: auto;
	aspect-ratio: 1/1;
	padding: 0;
	margin: 0;
	position: relative;
}
#fixedMenu #menu-header-btn > li a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	grid-row-gap: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	background: #00b6ec;
	border-radius: 0;
	position: relative;
	transition: all 0.3s ease;
}
#fixedMenu #menu-header-btn > li a img {
	width: auto;
	height: 20px;
	padding: 0;
	margin: 0 auto;
}
#fixedMenu #menu-header-btn > li a span {
	display: none;
}
#fixedMenu #menu-header-btn > li a:hover {
	filter: brightness(1.1);
	transform: translateY(5px);
	box-shadow: 0 0 0 #0078ad;
}
/* - 無料見積もり*/
#fixedMenu #menu-header-btn > li.estimate a {
	background: var(--main);
	box-shadow: 0 5px 0 #012559;
}
#fixedMenu #menu-header-btn > li.estimate a:hover {
	box-shadow: 0 0 0 #012559;
}
/* - LINE*/
#fixedMenu #menu-header-btn > li.line a {
	background: #06c655;
	box-shadow: 0 5px 0 #1f770c;
}
#fixedMenu #menu-header-btn > li.line a:hover {
	box-shadow: 0 0 0 #1f770c;
}
/*電話*/
#fixedMenu .tel {
	width: calc(100% - 150px);
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	grid-row-gap: 3px;
}
#fixedMenu .tel > a {
	display: inline-flex;
	justify-content: center;
	align-items: baseline;
	column-gap: 5px;
	font-family: var(--font-en);
	font-size: 22px;
	line-height: 1;
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
	position: relative;
	transition: var(--ease);
}
#fixedMenu .tel > a::before {
	content: '';
	display: block;
	width: auto;
	height: 15px;
	aspect-ratio: 64 / 42;
	background-image: url('https://mizu-pro.jp/wp-content/uploads/icon_fd_w.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
#fixedMenu .tel > a:hover {
	filter: brightness(1.1);
	transition: var(--ease);
}
#all_wrap #fixedMenu .tel > p {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 5px;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 1rem;
	line-height: 1;
	font-weight: 500;
	color: #fff;
}
#all_wrap #fixedMenu .tel > p em {
	display: inline-block;
	padding: 3px 5px;
	margin: 0;
	background: #fff;
	border-radius: 16px;
	font-size: 0.8rem;
	line-height: 1;
	font-weight: 500;
	color: #f77311;
	font-style: normal;
}

/************************************************************/
/*　トップページ　リフォームプラン
/************************************************************/
#topPlan {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap #topPlan > header {
	width: 100%;
	max-width: 1200px;
	padding: 0 0 50px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	grid-row-gap: 15px;
}
#all_wrap #topPlan > header::after {
	content: '';
	display: block;
	width: auto;
	height: 200px;
	aspect-ratio: 465 / 437;
	background-image: url('https://mizu-pro.jp/wp-content/uploads/reason_ttl_img.webp');
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100%;
	position: absolute;
	bottom: 0;
	right: 100px;
}
#all_wrap #topPlan > header > em {
	display: inline-block;
	padding: 7px 20px;
	margin: 0 auto;
	position: relative;
	background: var(--main);
	border-radius: 35px;
	font-family: var(--font-en);
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	font-style: normal;
}
#all_wrap #topPlan > header > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 30px;
	font-size: 30px;
	line-height: 1;
	font-weight: 900;
	color: var(--text);
}
#all_wrap #topPlan > header > h2::before,
#all_wrap #topPlan > header > h2::after {
	content: '';
	display: block;
	width: 3px;
	height: 30px;
	background: var(--main);
	border-radius: 3px;
	transform: rotate(-18deg);
	position: relative;
	top: 2px;
}
#all_wrap #topPlan > header > h2::after {
	transform: rotate(18deg);
}
/*プラン*/
#all_wrap .planBox {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
}
#all_wrap .planBox:last-of-type {
	margin-bottom: 0;
}
#all_wrap .planBox dt {
	width: 100%;
	padding: 30px;
	margin: 0 auto;
	background: var(--main);
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
#all_wrap .planBox dt > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 45px;
	line-height: 1.2em;
	font-weight: 700;
	color: #fff;
	border: none;
	background: none;
	position: relative;
}
#all_wrap .planBox dt > p {
	padding: 7px 10px;
	margin: 0 auto;
	display: inline-block;
	border-radius: 3px;
	background: #fff;
	font-size: 18px;
	line-height: 1.2em;
	font-weight: 700;
	color: var(--text);
	text-align: center;
}
#all_wrap .planBox dd {
	width: 100%;
	padding: 50px;
	margin: 0 auto;
	background: #fff;
	position: relative;
	border: 10px solid var(--main);
	border-top: none;
}
/* - 枠色 */
/* -- オレンジ */
#all_wrap .planBox.orange dt {
	background: #ff9743;
}
#all_wrap .planBox.orange dt > h2 {
	color: #fff;
}
#all_wrap .planBox.orange dd {
	border: 10px solid #ff9743;
}
/* -- 水色 */
#all_wrap .planBox.blue dt {
	background: #00b6ec;
}
#all_wrap .planBox.blue dt > h2 {
	color: #fff;
}
#all_wrap .planBox.blue dd {
	border: 10px solid #00b6ec;
}
/* -- 緑 */
#all_wrap .planBox.blue dt {
	background: #01ad9f;
}
#all_wrap .planBox.blue dt > h2 {
	color: #fff;
}
#all_wrap .planBox.blue dd {
	border: 10px solid #01ad9f;
}
/* -- 赤 */
#all_wrap .planBox.red dt {
	background: #f57170;
}
#all_wrap .planBox.red dt > h2 {
	color: #fff;
}
#all_wrap .planBox.red dd {
	border: 10px solid #f57170;
}

/*チェックボックス*/
#all_wrap .checkList {
	list-style: none;
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
#all_wrap .checkList li {
	position: relative;
	width: calc(50% - 15px);
	padding-left: 50px;
	margin: 0;
	font-size: 30px;
	font-weight: 600;
}
#all_wrap .checkList li.wide {
	width: 100%;
}
#all_wrap .checkList li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	border: 3px solid #333;
	border-radius: 6px;
	background: #fff;
}
#all_wrap .checkList li::after {
	content: "✔";
	position: absolute;
	left: 4px;
	top: 35%;
	transform: translateY(-55%);
	font-size: 40px;
	font-weight: 500;
	color: #f77311;
}
/* - 値段*/
#all_wrap .planBox .price {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	font-size: 30px;
	line-height: 1;
	font-weight: 900;
	color: var(--text);
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: baseline;
}
#all_wrap .planBox .price > span {
	display: inline-block;
	padding: 5px 10px;
	margin: 0 10px 0 0;
	background: #f77311;
	border-radius: 5px;
	font-size: 20px;
	line-height: 1;
	font-weight: 900;
	color: #fff;
	position: relative;
	top: -3px;
}
#all_wrap .planBox .price > strong {
	font-family: var(--font-en);
	font-size: 80px;
	line-height: 1;
	font-weight: 900;
	color: #f80000;
	position: relative;
	top: 3px;
}
/*写真*/
#all_wrap .plan_image_ttl {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	font-size: 20px;
	line-height: 1;
	font-weight: 900;
	color: var(--text);
	text-align: left;
}
#all_wrap .plan_image {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 15px;
	grid-row-gap: 15px;
}
#all_wrap .plan_image > li {
	content: '';
	display: block;
	width: calc((100% - 30px) / 3);
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
}
#all_wrap .plan_image > li::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .plan_image > li img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topPlan {
		width: 100%;
		padding: 30px 0;
	}
	#all_wrap #topPlan > header {
		width: 100%;
		max-width: 100%;
		padding: 0 0 20px;
		grid-row-gap: 10px;
	}
	#all_wrap #topPlan > header::after {
		display: none;
	}
	#all_wrap #topPlan > header > em {
		display: inline-block;
		padding: 5px 20px;
		border-radius: 25px;
		font-size: 15px;
	}
	#all_wrap #topPlan > header > h2 {
		width: 100%;
		column-gap: 20px;
		font-size: 20px;
	}
	#all_wrap #topPlan > header > h2::before,
	#all_wrap #topPlan > header > h2::after {
		width: 3px;
		height: 20px;
		top: 2px;
	}
	#all_wrap #topPlan > header > h2::after {
		transform: rotate(18deg);
	}
	/*プラン*/
	#all_wrap .planBox {
		width: calc(100% - 40px);
		max-width: 100%;
		margin: 0 auto 20px;
	}
	#all_wrap .planBox dt {
		width: 100%;
		padding: 10px 20px;
		grid-row-gap: 10px;
	}
	#all_wrap .planBox dt > h2 {
		width: 100%;
		font-size: 18px;
	}
	#all_wrap .planBox dt > p {
		padding: 5px 10px;
		font-size: 12px;
	}
	#all_wrap .planBox dd {
		width: 100%;
		padding: 20px;
		margin: 0 auto;
		background: #fff;
		position: relative;
		border: 5px solid var(--main);
		border-top: none;
	}
	/* - 枠色 */
	/* -- オレンジ */
	#all_wrap .planBox.orange dt {
		background: #ff9743;
	}
	#all_wrap .planBox.orange dt > h2 {
		color: #fff;
	}
	#all_wrap .planBox.orange dd {
		border: 5px solid #ff9743;
	}
	/* -- 水色 */
	#all_wrap .planBox.blue dt {
		background: #00b6ec;
	}
	#all_wrap .planBox.blue dt > h2 {
		color: #fff;
	}
	#all_wrap .planBox.blue dd {
		border: 5px solid #00b6ec;
	}
	/* -- 緑 */
	#all_wrap .planBox.blue dt {
		background: #01ad9f;
	}
	#all_wrap .planBox.blue dt > h2 {
		color: #fff;
	}
	#all_wrap .planBox.blue dd {
		border: 5px solid #01ad9f;
	}
	/* -- 赤 */
	#all_wrap .planBox.red dt {
		background: #f57170;
	}
	#all_wrap .planBox.red dt > h2 {
		color: #fff;
	}
	#all_wrap .planBox.red dd {
		border: 5px solid #f57170;
	}

	/*チェックボックス*/
	#all_wrap .checkList {
		list-style: none;
		width: 100%;
		padding: 0;
		margin: 0 auto 10px;
		display: flex;
		justify-content: flex-start;
		flex-direction: column;
		column-gap: 10px;
		grid-row-gap: 15px;
	}
	#all_wrap .checkList li {
		position: relative;
		width: 100%;
		padding-left: 35px;
		margin: 0;
		font-size: 17px;
		line-height: 1.2em;
		font-weight: 600;
	}
	#all_wrap .checkList li::before {
		content: "";
		position: absolute;
		left: 0;
		top: 10px;
		width: 20px;
		height: 20px;
		border: 1px solid #333;
		border-radius: 5px;
		background: #fff;
	}
	#all_wrap .checkList li::after {
		content: "✔";
		position: absolute;
		left: 4px;
		top: 6px;
		font-size: 23px;
		font-weight: 500;
		color: #f77311;
	}
	/* - 値段*/
	#all_wrap .planBox .price {
		width: 100%;
		padding: 0;
		margin: 0 auto 10px;
		font-size: 20px;
		line-height: 1;
		font-weight: 900;
		color: var(--text);
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: baseline;
	}
	#all_wrap .planBox .price > span {
		display: inline-block;
		padding: 5px 10px;
		margin: 0 10px 0 0;
		font-size: 12px;
		top: -3px;
	}
	#all_wrap .planBox .price > strong {
		font-family: var(--font-en);
		font-size: 30px;
		line-height: 1;
		font-weight: 900;
		color: #f80000;
		position: relative;
		top: 2px;
	}
	/*写真*/
	#all_wrap .plan_image_ttl {
		width: 100%;
		padding: 0;
		margin: 0 auto 10px;
		position: relative;
		font-size: 20px;
		line-height: 1;
		font-weight: 900;
		color: var(--text);
		text-align: left;
	}
	#all_wrap .plan_image {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		column-gap: 15px;
		grid-row-gap: 15px;
	}
	#all_wrap .plan_image > li {
		content: '';
		display: block;
		width: calc((100% - 30px) / 3);
		padding: 0;
		margin: 0;
		position: relative;
		overflow: hidden;
		text-align: center;
		border-radius: 10px;
	}
	#all_wrap .plan_image > li::before {
		content: '';
		display: block;
		padding-top: 65%;
	}
	#all_wrap .plan_image > li img {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		object-fit: cover;
	}
}

/************************************************************/
/*　トップページ　お悩み解決
/************************************************************/
#topTabs {
	width: 100%;
	padding: 100px 0;
	margin: 0 auto;
	position: relative;
	background: #fafafa;
}
#topTabs > header {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	grid-row-gap: 15px;
}
#topTabs > header > em {
	position: relative;
	display: inline-block;
	margin: 0 auto 10px;
	padding: 0 10px 15px;
	width: fit-content;
	color: #2153a5;
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.1em;
	font-style: normal;
	background: none;
	border-bottom: solid 3px #2153a5;
	box-sizing: border-box;
}
#topTabs > header > em::before {
	content: "";
	position: absolute;
	bottom: -24px;
	left: 50%;
	margin-left: -15px;
	border: 12px solid transparent;
	border-top: 12px solid #FFF;
	z-index: 2;
}
#topTabs > header > em::after {
	content: "";
	position: absolute;
	bottom: -30px;
	left: 50%;
	margin-left: -17px;
	border: 14px solid transparent;
	border-top: 14px solid #2153a5;
	z-index: 1;
}
#all_wrap #topTabs > header > h2 {
	width: fit-content;
	padding: 0;
	margin: 0 auto;
	border: none;
	background: none;
	position: relative;
	font-size: 50px;
	line-height: 1;
	font-weight: 900;
	color: var(--text);
	z-index: 0;
}
#all_wrap #topTabs > header > h2::before,
#all_wrap #topTabs > header > h2::after {
	content: '';
	display: block;
	width: 5px;
	height: 50px;
	background: var(--main);
	border-radius: 5px;
	position: absolute;
	top: 65%;
	left: -20px;
	transform: translate(0,-50%) rotate(-18deg);
}
#all_wrap #topTabs > header > h2::after {
	transform: translate(0,-50%) rotate(18deg);
	position: absolute;
	top: 65%;
	right: -20px;
	left: unset;
}
#all_wrap #topTabs > header > h2 strong {
	display: inline-block;
	margin: 0 10px;
	font-size: 1.4em;
	font-weight: 900;
	color: #2153a5;
	position: relative;
	z-index: -1;
}
#all_wrap #topTabs > header > h2 strong::before {
	content: '';
	display: block;
	width: 280px;
	height: auto;
	aspect-ratio: 500 / 134;
	background-image: url('https://mizu-pro.jp/wp-content/uploads/marker.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: -1;
	opacity: 0.7;
}

.tabs {
	width: 1200px;
	min-width: 1200px;
	padding: 0;
	margin: 0 auto;
	border: 4px solid #e95416;
}
.tabs input[type="radio"] {
	display: none;
}
.tab-label {
	flex: 1;
	padding: 15px 10px;
	background: #fff;
	border: none;
	border-left: 4px solid #e95416;
	cursor: pointer;
	font-size: 18px;
	line-height: 1.4em;
	text-align: center;
	font-weight: 700;
	transition: var(--ease);
	box-sizing: border-box;
	position: relative;
}
.tab-label:first-of-type {
	border-left: none;
}
.tabs .tab-label {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.tabs {
	display: flex;
	flex-wrap: wrap;
}
/* アクティブタブ */
#tab1-radio:checked ~ .tab-label[for="tab1-radio"],
#tab2-radio:checked ~ .tab-label[for="tab2-radio"],
#tab3-radio:checked ~ .tab-label[for="tab3-radio"],
#tab4-radio:checked ~ .tab-label[for="tab4-radio"],
#tab5-radio:checked ~ .tab-label[for="tab5-radio"] {
	background: #e95416;
	color: #fff;
}
#tab1-radio:checked ~ .tab-label[for="tab1-radio"]::after,
#tab2-radio:checked ~ .tab-label[for="tab2-radio"]::after,
#tab3-radio:checked ~ .tab-label[for="tab3-radio"]::after,
#tab4-radio:checked ~ .tab-label[for="tab4-radio"]::after,
#tab5-radio:checked ~ .tab-label[for="tab5-radio"]::after {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: #e95416;
	position: absolute;
	bottom: -19px;
	left: 50%;
	transform: translate(-50%,0);
	clip-path: polygon(0 0, 50% 100%, 100% 0);
}
/* コンテンツ部分 */
.tab-content {
	width: 100%;
	background: #fff;
	padding: 30px;
	text-align: left;
	box-sizing: border-box;
	border-top: 4px solid #e95416;
}
/* 非表示デフォルト */
.tab-panel {
	display: none;
}
/* 選択されたパネルを表示 */
#tab1-radio:checked ~ .tab-content #panel1,
#tab2-radio:checked ~ .tab-content #panel2,
#tab3-radio:checked ~ .tab-content #panel3,
#tab4-radio:checked ~ .tab-content #panel4,
#tab5-radio:checked ~ .tab-content #panel5 {
	display: block;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topTabs {
		width: 100%;
		padding: 30px 0;
	}
	#topTabs > header {
		width: calc(100% - 40px);
		max-width: 100%;
		margin: 0 auto 20px;
		grid-row-gap: 15px;
	}
	#topTabs > header > em {
		margin: 0 auto 10px;
		padding: 0 7px 10px;
		width: fit-content;
		color: #2153a5;
		font-size: 18px;
		font-weight: 900;
		border-bottom: solid 3px #2153a5;
	}
	#topTabs > header > em::before {
		content: "";
		position: absolute;
		bottom: -23px;
		left: 50%;
		margin-left: -15px;
		border: 12px solid transparent;
		border-top: 12px solid #FFF;
		z-index: 2;
	}
	#topTabs > header > em::after {
		content: "";
		position: absolute;
		bottom: -29px;
		left: 50%;
		margin-left: -17px;
		border: 14px solid transparent;
		border-top: 14px solid #2153a5;
		z-index: 1;
	}
	#all_wrap #topTabs > header > h2 {
		width: fit-content;
		font-size: 20px;
	}
	#all_wrap #topTabs > header > h2::before,
	#all_wrap #topTabs > header > h2::after {
		content: '';
		display: block;
		width: 3px;
		height: 20px;
		background: var(--main);
		border-radius: 3px;
		position: absolute;
		top: 65%;
		left: -20px;
		transform: translate(0,-50%) rotate(-18deg);
	}
	#all_wrap #topTabs > header > h2::after {
		transform: translate(0,-50%) rotate(18deg);
		position: absolute;
		top: 65%;
		right: -20px;
		left: unset;
	}
	#all_wrap #topTabs > header > h2 strong {
		display: inline-block;
		margin: 0 10px;
		font-size: 1.4em;
	}
	#all_wrap #topTabs > header > h2 strong::before {
		width: 100px;
	}

	.tabs {
		width: calc(100% - 40px);
		min-width: calc(100% - 40px);
		padding: 0;
		margin: 0 auto;
		border: 2px solid #e95416;
	}
	.tabs input[type="radio"] {
		display: none;
	}
	.tab-label {
		flex: 1;
		padding: 5px 3px;
		border-left: 2px solid #e95416;
		font-size: 12px;
		line-height: 1.2em;
		white-space: nowrap;
	}
	#tab1-radio:checked ~ .tab-label[for="tab1-radio"]::after,
	#tab2-radio:checked ~ .tab-label[for="tab2-radio"]::after,
	#tab3-radio:checked ~ .tab-label[for="tab3-radio"]::after,
	#tab4-radio:checked ~ .tab-label[for="tab4-radio"]::after,
	#tab5-radio:checked ~ .tab-label[for="tab5-radio"]::after {
		content: '';
		display: block;
		width: 10px;
		height: 10px;
		background: #e95416;
		position: absolute;
		bottom: -9px;
		left: 50%;
		transform: translate(-50%,0);
		clip-path: polygon(0 0, 50% 100%, 100% 0);
	}
	/* コンテンツ部分 */
	.tab-content {
		width: 100%;
		background: #fff;
		padding: 20px;
		text-align: left;
		box-sizing: border-box;
		border-top: 2px solid #e95416;
	}
}


/*タブ内容*/
.tab_wrap {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 30px;
	align-items: flex-start;
}
.tab_wrap > figure {
	width: 40%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.tab_wrap > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
.tab_wrap > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.tab_wrap > .tab_info {
	width: calc(60% - 30px);
	padding: 10px 0 0;
	margin: 0;
	position: relative;
}
#all_wrap .tab_wrap > .tab_info > h3 {
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	border: none;
	background: none;
	font-size: 30px;
	line-height: 1;
	font-weight: 900;
	color: var(--text);
	text-align: left;
}
#all_wrap .tab_info > ul {
	list-style: none;
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	grid-row-gap: 15px;
}
#all_wrap .tab_info > ul li {
	position: relative;
	width: 100%;
	padding: 0 10px 15px 40px;
	margin: 0;
	border-bottom: 1px dashed #c8c8c8;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2em;
}
#all_wrap .tab_info > ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.1em;
	width: 24px;
	height: 24px;
	border: 3px solid #333;
	border-radius: 6px;
	background: #fff;
}
#all_wrap .tab_info > ul li::after {
	content: "✔";
	position: absolute;
	left: 6px;
	top: 0.4em;
	transform: translateY(-55%);
	font-size: 26px;
	font-weight: 500;
	color: #f77311;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*タブ内容*/
	.tab_wrap {
		width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 15px;
		align-items: flex-start;
	}
	.tab_wrap > figure {
		width: 100%;
	}
	.tab_wrap > figure::before {
		content: '';
		display: block;
		padding: unset;
		padding-top: 50%;
	}
	.tab_wrap > .tab_info {
		width: 100%;
		padding: 0;
	}
	#all_wrap .tab_wrap > .tab_info > h3 {
		margin: 0 auto 15px;
		font-size: 20px;
		text-align: center;
	}
	#all_wrap .tab_info > ul {
		list-style: none;
		width: 100%;
		padding: 0;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		grid-row-gap: 10px;
	}
	#all_wrap .tab_info > ul li {
		position: relative;
		width: 100%;
		padding: 0 10px 10px 30px;
		margin: 0;
		border-bottom: 1px dashed #c8c8c8;
		font-size: 18px;
		font-weight: 600;
		line-height: 1.2em;
	}
	#all_wrap .tab_info > ul li::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0.1em;
		width: 18px;
		height: 18px;
		border: 2px solid #333;
		border-radius: 5px;
		background: #fff;
	}
	#all_wrap .tab_info > ul li::after {
		content: "✔";
		position: absolute;
		left: 5px;
		top: 0.4em;
		transform: translateY(-55%);
		font-size: 20px;
		font-weight: 500;
		color: #f77311;
	}
}

/************************************************************/
/*　キャンペーン
/************************************************************/
#topCampaign {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
	position: relative;
	background: #c2f6e6;
}
#all_wrap #topCampaign > h2 {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
}
#all_wrap #topCampaign > h2 img {
	width: 100%;
	height: auto;
}
#all_wrap .campaignList {
	width: 100%;
	max-width: 800px;
	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: 20px;
}
#all_wrap .campaignList > li {
	width: calc((100% - 20px) / 2);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .campaignList > li img {
	width: 100%;
	height: auto;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topCampaign {
		width: 100%;
		padding: 30px 20px;
	}
	#all_wrap #topCampaign > h2 {
		width: 100%;
		max-width: 100%;
	}
	#all_wrap .campaignList {
		width: 100%;
		max-width: 100%;
		column-gap: 10px;
		grid-row-gap: 10px;
	}
	#all_wrap .campaignList > li {
		width: calc((100% - 10px) / 2);
	}
}

/************************************************************/
/*　バナー
/************************************************************/

/*swiper*/
#topBanner {
	width: 100%;
	height: auto;
	padding: 50px 0;
	margin: 0 auto;
	background: #eeeeee;
}
#all_wrap .topBanner_list {
	width: 800px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
#all_wrap .topBanner_list > li {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .topBanner_list > li img {
	width: 100%;
	height: auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*swiper*/
	#topBanner {
		width: 100%;
		padding: 30px 20px;
	}
	#all_wrap .topBanner_list {
		width: 100%;
		column-gap: 10px;
		grid-row-gap: 10px;
	}
	#all_wrap .topBanner_list > li {
		width: 100%;
	}
}