@charset "UTF-8";

/*----------------------------------------------------------*/
/* カスタマイズ用CSS
/*----------------------------------------------------------*/
:root {
	--main: #2153a5;
	--sub:  #00b6ec;
	--yellow: #fff44b;
	--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;
	}
	.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(--sub);
}
#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(--sub);
	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://test-mizupro.coresv.com/wp-content/uploads/contHead_line-1.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 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 40px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	text-align: center;
	z-index: 5;
}
#all_wrap .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;
}

/*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 {
		display: inline-flex;
		align-content: center;
		align-items: center;
		justify-content: center;
		flex-wrap: nowrap;
		column-gap: 10px;
		padding: 12px 30px 12px 10px;
		font-size: 14px;
	}
	#all_wrap .btn > a::before {
		content: '';
		display: block;
		width: 14px;
		height: 14px;
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translate(0,-50%);
	}
	#all_wrap .btn > a::after {
		content: '';
		display: block;
		width: 5px;
		height: 6px;
		top: 50%;
		right: 14px;
		transform: translate(0,-50%);
		transition: var(--ease);
	}
}

/*本文*/
#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: 700;
	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://test-mizupro.coresv.com/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;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*ページビジュアル*/
	#pagevisual {
		width: 100%;
		height: 120px;
	}
	#all_wrap #page_title {
		width: 100%;
		max-width: 100%;
		padding: 20px;
		grid-row-gap: 10px;
		z-index: 10;
	}
	#all_wrap #page_title > em {
		font-size: 20px;
	}
	#all_wrap #page_title > h1 {
		font-size: 12px;
	}
	#pagevisual > figure {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		overflow: hidden;
		z-index: 0;
	}
	#pagevisual > figure::before {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		background-image: linear-gradient(to top, #1a233d 0%, #484f64 80%, #484f64 100%);
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
		opacity: 0.6;
	}
	#pagevisual > figure img {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		object-fit: cover;
	}
}

/*h2*/
#all_wrap .content h2 {
	display: block;
	width: 100%;
	padding: 0 0 10px;
	margin: 2em auto 1em;
	font-size: 25px;
	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(--text);
	background: none;
	position: relative;
}
#all_wrap .content h2 small {
	font-size: 14px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*h2*/
	#all_wrap .content h2 {
		display: block;
		width: 100%;
		padding: 0;
		margin: 1em 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;
		background: none;
		position: relative;
	}
}

/*h3*/
#all_wrap .content h3 {
	padding: 10px 10px 10px 15px;
	margin: 1em auto 1em;
	border: none;
	background: #fafafa;
	border-left: 5px solid var(--text);
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	position: relative;
}
/*== スマホ・タブレット対応 ==*/
@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(--text);
		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(--text);
}
/*== スマホ・タブレット対応 ==*/
@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(--text);
	}
}

/*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: 1200px;
	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 auto 0 0;
	position: relative;
	border: none;
	background: none;
}
#logo img {
	width: auto;
	height: 100%;
}
/*アワード*/
#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;
	position: relative;
	transition: var(--ease);
}
.tel > a::before {
	content: '';
	display: block;
	width: auto;
	height: 20px;
	aspect-ratio: 64 / 42;
	background-image: url('https://test-mizupro.coresv.com/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: flex-start;
	align-items: center;
	grid-row-gap: 5px;
	width: 100%;
	height: 100%;
	padding: 10px;
	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.reserved a span {
	margin-top: 0.5em;
}
/* - 無料見積もり*/
#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){
}


/************************************************************/
/*　ヘッダーメニュー
/************************************************************/
#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);
}

/************************************************************/
/*　ハンバーガーメニュー
/************************************************************/
/* ドロワーメニュー */
.navicon {
	display: none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/* ドロワーメニュー */
	.navicon {
		display: block;
		position: fixed;
		top: 20px;
		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(--text);
		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(--main);
		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% - 70px);
		padding: 90px 30px 70px;
		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;
	border-top: 1px solid rgba(255,255,255,0.5);
}
#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: 15px 10px 15px 25px;
	margin: 0;
	background: none;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	position: relative;
	font-size: 15px;
	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);
}
#all_wrap #menu-panel-menu > li > a:hover {
	opacity: 0.8;
	color: #fff;
	text-decoration: none;
	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: 14px;
	line-height: 1.2em;
	color: #fff;
	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: #fff;
	position: absolute;
	top: 50%;
	left: 30px;
	transform: translate(0,-50%);
}
#all_wrap #menu-panel-menu .sub-menu > li > a:hover {
	opacity: 0.8;
	font-size: 14px;
	line-height: 1.2em;
	color: #fff;
	text-decoration: none;
	transition: var(--ease);
}

/************************************************************/
/*　メインビジュアル
/************************************************************/

/*swiper*/
.mvSwiper {
	width: 100%;
	height: auto;
	padding: 20px 0 !important;
	margin: 0 auto;
	background: var(--sub);
	overflow: visible;
}
.mvSwiper .swiper-slide {
	width: 1000px; /* 中央固定幅 */
	transition: transform 0.3s ease;
}
.mvSwiper .swiper-slide img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 12px;
}

/*ナビゲーション*/
.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://test-mizupro.coresv.com/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://test-mizupro.coresv.com/wp-content/uploads/arrow_w.svg');
	transition: var(--ease);
}


/*特徴・全額返金*/
#mvFeature {
	width: 100%;
	padding: 30px;
	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;
}
#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;
	grid-row-gap: 10px;
	white-space: nowrap;
}
#all_wrap #mvFeature > h2 span {
	display: block;
	padding: 0;
	margin: 0;
	text-align: left;
	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: left;
	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: 30px;
		margin: 0 auto 40px;
		background: #333;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 10px;
	}
	#all_wrap #mvFeature > ul {
		width: 100%;
		padding: 0;
		margin: 0 auto 10px;
		position: relative;
		list-style: none;
		display: flex;
		justify-content: center;
		align-items: center;
		column-gap: 20px;
	}
	#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%;
		grid-row-gap: 10px;
	}
	#all_wrap #mvFeature > h2 span {
		text-align: center;
		font-size: 15px;
	}
	#all_wrap #mvFeature > h2 p {
		font-size: 30px;
	}
	#all_wrap #mvFeature > h2 p strong {
		text-indent: 0.5em;
		display: inline-block;

	}
	#all_wrap #mvFeature > h2 small {
		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: 5px;
	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){
}

/************************************************************/
/*　アーカイブ　リスト
/************************************************************/

/************************************************************/
/*　リスト
/************************************************************/
.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 .cfBox {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .cfBox > h3 {
	margin: 0 auto;
}
#all_wrap .cfBox > h3::before,
#all_wrap .cfBox > h3::after {
	display: none;
}
#all_wrap .cfBox dl {
	width: 100%;
	padding: 30px 0;
	margin: 0 auto;
	position: relative;
	border: none;
	border-bottom: 2px dashed #ccc;
	background: none;
}
#all_wrap .cfBox dt {
	font-size: 16px;
	line-height: 1.2em;
	font-weight: 700;
	font-feature-settings: 'palt' 1;
	text-align: left;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	background: none;
	border: none;
}
#all_wrap .cfBox p {
	padding: 0;
	margin: 0;
}
span.att {
	display: inline-block;
	padding: 3px 5px;
	margin: 0;
	background: #cf2e2e;
	border-radius: 3px;
	font-size: 10px;
	line-height: 1;
	font-weight: 600;
	color: #fff;
}
span.any {
	display: inline-block;
	padding: 3px 5px;
	margin: 0;
	background: #0693e3;
	border-radius: 3px;
	font-size: 10px;
	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 .cfBox dd .block {
	display: block;
	margin: 0 auto 5px;
}
/*フォーム*/
#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%;
}
/*ラジオボタン*/
#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 .cf_btn {
	margin: 30px auto 0;
	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(--main);
	padding: 15px 50px 18px;
	margin: 0;
	border-radius: 40px;
	border: none;
	transition: all 0.3s ease;
}
#all_wrap .cf_btn input:hover {
	background: var(--link);
	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 .cfBox input {
		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"] {
		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 .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 {
	display: inline-block;
	padding: 3px 5px;
	margin: 0;
	background: var(--text);
	border-radius: 3px;
	font-size: 10px;
	line-height: 1;
	color: #fff;
	position: relative;
}
#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 2em;
	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 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(--text);
	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: 35px 20px 20px;
	margin: 0 auto;
	position: relative;
	background: var(--yellow);
}
.topCta_wrap {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	column-gap: 20px;
}
/* - 電話*/
.topCta_wrap > a.cta_tel {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	grid-row-gap: 3px;
	width: auto;
	width: fit-content;
	padding: 25px 20px 20px;
	margin: 0;
	background: #fff;
	border-radius: 10px;
	position: relative;
	transition: var(--ease);
}
.topCta_wrap > a.cta_tel > em {
	display: inline-block;
	width: auto;
	width: fit-content;
	padding: 5px 20px 7px;
	margin: 0 auto;
	text-align: center;
	font-size: 18px;
	line-height: 1;
	font-weight: 600;
	font-style: normal;
	white-space: nowrap;
	color: #fff;
	background: var(--main);
	border-radius: 30px;
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 2;
	transition: var(--ease);
}
.topCta_wrap > a.cta_tel > em::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background: var(--main);
	position: absolute;
	bottom: -9px;
	left: 50%;
	transform: translate(-50%,0);
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	transition: var(--ease);
}
#all_wrap .topCta_wrap > a.cta_tel > p {
	display: inline-flex;
	justify-content: center;
	align-items: baseline;
	column-gap: 5px;
	font-family: var(--font-en);
	font-size: 43px;
	line-height: 1;
	font-weight: 600;
	color: #f77311;
	position: relative;
	transition: var(--ease);
}
.topCta_wrap > a.cta_tel > p::before {
	content: '';
	display: block;
	width: auto;
	height: 30px;
	aspect-ratio: 64 / 42;
	background-image: url('https://test-mizupro.coresv.com/wp-content/uploads/icon_fd_green.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
.topCta_wrap > a.cta_tel > span {
	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);
}
.topCta_wrap > a.cta_tel > span em {
	display: inline-block;
	padding: 3px 8px;
	margin: 0;
	background: #f77311;
	border-radius: 16px;
	font-size: 10px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
	font-style: normal;
}
.topCta_wrap > a.cta_tel:hover > em {
	background: var(--sub);
	transform: translate(-50%,5px);
	transition: var(--ease);
}
.topCta_wrap > a.cta_tel:hover > em::after {
	background: var(--sub);
	transform: translate(-50%,0);
}
/*ボタン*/
a.cta_mail,
a.cta_line {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	padding: 20px 40px;
	font-size: 30px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	border-radius: 12px;
	text-align: center;
	position: relative;
	overflow: hidden;
	box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.1),
		inset 0 -2px 4px rgba(0, 0, 0, 0.15),
		0 4px 8px rgba(0, 0, 0, 0.2);
	transition: var(--ease);
}
a.cta_mail:hover,
a.cta_line:hover {
	filter: brightness(1.1);
	transform: translateY(2px);
	box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.1),
		inset 0 -2px 4px rgba(0, 0, 0, 0.2),
		0 2px 4px rgba(0, 0, 0, 0.25);
}
a.cta_mail::after,
a.cta_line::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0.8) 0%,
		rgba(255, 255, 255, 0.3) 35%,
		rgba(255, 255, 255, 0.05) 100%
	);
	border-radius: 12px 12px 0 0;
	pointer-events: none;
	opacity: 0.5;
}
/* メール */
a.cta_mail {
	background: linear-gradient(135deg, #ffb347, #ff6600);
	border: 3px solid #ff6600;
}
a.cta_mail::before {
	content: '';
	display: block;
	width: auto;
	height: 30px;
	aspect-ratio: 1/1;
	background-image: url('https://test-mizupro.coresv.com/wp-content/uploads/icon_mail_w.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}
/* LINE */
a.cta_line {
	background: linear-gradient(135deg, #66ff66, #009900);
	border: 3px solid #009900;
}
a.cta_line::before {
	content: '';
	display: block;
	width: auto;
	height: 30px;
	aspect-ratio: 53 / 50;
	background-image: url('https://test-mizupro.coresv.com/wp-content/uploads/icon_line_w.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}


/************************************************************/
/*　トップページ　動画
/************************************************************/
#topMovie {
	width: 100%;
	padding: 100px;
	margin: 0 auto;
	position: relative;
	background: var(--sub);
	z-index: 0;
}
#topMovie::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url('https://test-mizupro.coresv.com/wp-content/uploads/topMovie_bg.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
#topMovie > figure {
	width: 800px;
	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);
}
#topMovie video {
	width: 100%;
	display: block;
	border-radius: 8px;
}
#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);
}

/************************************************************/
/*　トップページ　実績
/************************************************************/
#topResult {
	width: 100%;
	padding: 100px;
	margin: 0 auto;
	position: relative;
	background: var(--base);
	z-index: 0;
	overflow: hidden;
}
#topResult::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url('https://test-mizupro.coresv.com/wp-content/uploads/topResult_bg.webp');
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -2;
}
#topResult::after {
	content: '';
	display: block;
	width: 100%;
	max-width: 1200px;
	min-width: 1200px;
	height: calc(100% - 100px);
	background-image: url('https://test-mizupro.coresv.com/wp-content/uploads/topResult_img.webp');
	background-repeat: no-repeat;
	background-position: top right 50px;
	background-size: 40%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
	z-index: -1;
}
.topResult_wrap {
	width: 100%;
	max-width: 1200px;
	min-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	grid-row-gap: 20px;
	z-index: 0;
}
#all_wrap .topResult_wrap > h2 {
	width: 50%;
	min-width: 600px;
	padding: 0;
	margin: 0;
	position: relative;
	border: none;
	background: none;
}
#all_wrap .topResult_wrap > h2 img {
	width: 100%;
	height: auto;
	filter: drop-shadow(0 6px 16px rgba(0,0,0,.1))
		drop-shadow(0 1px 1px rgba(0,0,0,.1));
}
#all_wrap .topResult_wrap > p {
	width: 50%;
	min-width: 600px;
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/* - エリア*/
#all_wrap .areabox {
	width: 100%;
	max-width: 1200px;
	padding: 30px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 30px;
	background: #fff;
	border: 2px solid var(--sub);
	border-radius: 10px;
}
#all_wrap .areabox dt {
	width: 150px;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: center;
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	color: var(--main);
}
#all_wrap .areabox dd {
	width: calc(100% - 30px - 150px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .areabox dd > ul {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	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;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .areabox dd > ul > li > a {
	font-weight: 700;
	color: var(--text);
	text-decoration: none;
	transition: var(--ease);
}
#all_wrap .areabox dd > ul > li > a:hover {
	color: var(--main);
	text-decoration: underline;
	transition: var(--ease);
}

/************************************************************/
/*　トップページ　リフォームメニュー
/************************************************************/
#topReform {
	width: 100%;
	padding: 100px;
	margin: 0 auto;
	position: relative;
	background-color: #fff;
	z-index: 0;
	overflow: hidden;
}
#topReform::before {
	content: '';
	display: block;
	width: 100%;
	min-width: 1500px;
	height: 100%;
	background-image: url('https://test-mizupro.coresv.com/wp-content/uploads/topReform_bg.webp');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: top center;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
	z-index: -1;
}
#topReform > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 100px;
	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: 55px;
	line-height: 1.4em;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
}
/*リスト*/
#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: 30px;
	grid-row-gap: 30px;
	counter-reset: reform-counter;
}
#all_wrap .reformList > li {
	width: calc((100% - 60px) / 3);
	padding: 10px;
	margin: 0;
	background: #fff;
	position: relative;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	counter-increment: reform-counter;
}
#all_wrap .reformList > li::before {
	content: "0" counter(reform-counter);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 55px;
	height: 55px;
	background: #fff;
	border-radius: 10px 0 10px 0;
	position: absolute;
	left: 0;
	top: 0;
	font-family: var(--font-en);
	font-size: 30px;
	line-height: 1;
	color: var(--main);
	font-weight: 700;
	z-index: 2;
}
#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;
	border-radius: 10px;
}
#all_wrap .reformList > li > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#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: 20px;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .reformList_info > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 28px;
	line-height: 1.2em;
	font-weight: 900;
	color: var(--main);
	text-align: center;
}
#all_wrap .reformList_info > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}


/************************************************************/
/*　トップページ　選ばれる理由
/************************************************************/
#topReason {
	width: 100%;
	padding: 100px;
	margin: 0 auto;
	position: relative;
	background-color: var(--base2);
	z-index: 0;
}
#all_wrap #topReason .contHead::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url('https://test-mizupro.coresv.com/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.7;
}
#all_wrap #topReason .contHead::after {
	content: '';
	display: block;
	width: auto;
	height: calc(100% + 30px);
	aspect-ratio: 465 / 437;
	background-image: url('https://test-mizupro.coresv.com/wp-content/uploads/reason_ttl_img.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
	position: absolute;
	bottom: 0;
	right: 10%;
	z-index: 1;
}

/*リスト*/
#all_wrap .reasonList {
	width: 100%;
	max-width: 1200px;
	min-width: 1200px;
	padding: 0;
	margin: 0 auto;
	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://test-mizupro.coresv.com/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://test-mizupro.coresv.com/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://test-mizupro.coresv.com/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://test-mizupro.coresv.com/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(--sub);
	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;
}


/************************************************************/
/*　トップページ　悩みを解決
/************************************************************/
#topSolution {
	width: 100%;
	padding: 100px;
	margin: 0 auto;
	position: relative;
	background-color: var(--sub);
	z-index: 0;
	overflow: hidden;
}
#topSolution::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url('https://test-mizupro.coresv.com/wp-content/uploads/topSolution_bg.webp');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.25;
}
#topSolution > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 70px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	grid-row-gap: 30px;
}
#all_wrap #topSolution > 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 #topSolution > 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 #topSolution > header > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	border: none;
	background: none;
	position: relative;
	font-size: 55px;
	line-height: 1.4em;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
}
/*リスト*/
#all_wrap .solutionList {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
#all_wrap .solutionList > li {
	width: calc((100% - 60px) / 3);
	padding: 60px 30px 30px;
	margin: 0;
	background: #fff;
	border-radius: 10px;
	position: relative;
}
#all_wrap .solutionList > li > em {
	display: block;
	width: 70px;
	height: auto;
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 2;
}
#all_wrap .solutionList > li > em img {
	width: 100%;
	height: auto;
}
#all_wrap .solutionList > li > h3 {
	width: 100%;
	padding: 0 0 30px;
	margin: 0 auto 20px;
	border: none;
	background: none;
	position: relative;
	font-size: 24px;
	line-height: 1.4em;
	font-weight: 700;
	color: var(--text);
	text-align: center;
}
#all_wrap .solutionList > li > h3::before {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: #e1e1e1;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 0;
}
#all_wrap .solutionList > li > h3::after {
	content: '';
	display: block;
	width: 65px;
	height: 1px;
	background: var(--sub);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 0;
}
#all_wrap .solutionList > li > h3 strong {
	color: var(--main);
	background: linear-gradient(transparent 40%, #c9f0fb 0%);
	display: inline;
	font-weight: 700;
}
#all_wrap .solutionList > li > p {
	padding: 0;
	margin: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}


/************************************************************/
/*　トップページ　施工事例
/************************************************************/
#topCase {
	width: 100%;
	padding: 100px;
	margin: 0 auto;
	position: relative;
}
.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://test-mizupro.coresv.com/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://test-mizupro.coresv.com/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;
}

/*サイドバー*/
.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 .region-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 .region-child-tags > li {
	display: inline-block;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .region-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 .region-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://test-mizupro.coresv.com/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);
}


/************************************************************/
/*　トップページ　実績紹介
/************************************************************/
#topAchieve {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background: var(--sub);
	z-index: 0;
}
.topAchieve_wrap {
	width: 1000px;
	padding: 100px 0;
	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://test-mizupro.coresv.com/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;
}


/************************************************************/
/*　トップページ　クチコミ評価＆お問い合わせ状況
/************************************************************/
#topInformation {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#topReview {
	width: 50%;
	padding: 50px 70px;
	margin: 0;
	background-color: #E4D672;
	background-image: radial-gradient(at right bottom, #6f5d27, #dbc664);
	position: relative;
	z-index: 1;
	display: -webkit-flex;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	overflow: hidden;
}
#topReview::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(at left bottom, #6f5d27, #dbc664);
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.3;
	z-index: -1;
}
#topNews {
	width: 50%;
	padding: 50px 70px;
	margin: 0;
	background-image: radial-gradient(at right bottom, #2a73e9, #00b7ed);
	position: relative;
	z-index: 1;
	display: -webkit-flex;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	overflow: hidden;
}
#topNews::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(at left bottom, #2a73e9, #00b7ed);
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.3;
	z-index: -1;
}
#topReview::after,
#topNews::after {
	content: "";
	position: absolute;
	top: -150px;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 300px;
	background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 70%);
	border-radius: 50%;
	pointer-events: none;
	opacity: 0.5;
	z-index: -1;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#topInformation {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		display: -webkit-flex;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#topReview {
		width: 100%;
		padding: 20px;
		margin: 0;
		background-color: #E4D672;
		background-image: -webkit-radial-gradient(at right top, #7D5A2A, #E4D672);
		background-image: radial-gradient(at right top, #7D5A2A, #E4D672);
		position: relative;
		z-index: 1;
		display: -webkit-flex;
		display: flex;
		align-items: flex-start;
		flex-wrap: wrap;
	}
	#topNews {
		width: 100%;
		padding: 20px;
		margin: 0;
		background-color: #9AB1B2;
		position: relative;
		z-index: 1;
		display: -webkit-flex;
		display: flex;
		align-items: flex-start;
		flex-wrap: wrap;
	}
}

/*口コミ*/
#topReview > span {
	width: 100%;
	height: 20px;
	padding: 0;
	margin: 0 auto 5px;
	display: block;
	text-align: center;
}
#topReview > span img {
	width: auto;
	height: 100%;
	padding: 0;
	margin: 0;
}
#all_wrap #topReview > h2 {
	font-size: 22px;
	line-height: 1.2em;
	font-weight: 600;
	font-feature-settings: "palt";
	padding: 0;
	margin: 0 auto 20px;
	text-align: center;
	color: #fff;
	position: relative;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
}
#all_wrap #topReview > h2 strong {
	font-size: 28px;
	line-height: 1.2em;
	font-weight: 600;
	font-feature-settings: "palt";
	padding: 0;
	margin: 0;
	color: #FFE500;
}
#all_wrap .reviewBox {
	width: 100%;
	padding: 30px 20px 30px 30px;
	margin: auto 0 0;
	border-radius: 20px;
	background: #fff;
}
#all_wrap .reviewBox > ul {
	width: 100%;
	height: 300px;
	padding: 0;
	margin: 0;
	list-style: none;
	overflow-y: scroll;
}
/* スクロールの幅の設定 */
#all_wrap .reviewBox > ul::-webkit-scrollbar {
	width: 3px;
	height: 10px;
}
/* スクロールの背景の設定 */
#all_wrap .reviewBox > ul::-webkit-scrollbar-track {
	border-radius: 2px;
	background: #E1E1E1;
}
/* スクロールのつまみ部分の設定 */
#all_wrap .reviewBox > ul::-webkit-scrollbar-thumb {
	border-radius: 2px;
	background: var(--text);
}
#all_wrap .reviewBox > ul li {
	padding: 20px 0;
	margin: 0;
	width: 95%;
	border-bottom: 1px dotted #9b9b9b;
}
#all_wrap .reviewBox > ul li:first-child {
	padding-top: 0;
}
#all_wrap .reviewBox > ul li > h3 {
	padding: 0;
	margin: 0 auto 10px;
	font-size: 14px;
	line-height: 1.2em;
	font-weight: 500;
	color: #707070;
}
#all_wrap .reviewBox > ul li > h3 > em,
#all_wrap .rating_pt {
	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 .reviewBox > ul li > div,
#all_wrap .reviewBox > ul li p {
	font-size: 14px;
	line-height: 1.7em;
	padding: 0;
	margin: 0;
}
/*星評価*/
.star5_rating {
	position: relative;
	z-index: 0;
	display: inline-block;
	white-space: nowrap;
	color: #CCCCCC; /* グレーカラー 自由に設定化 */
	font-size: 18px;
}
.star5_rating:before, .star5_rating:after {
	content: '★★★★★';
}
.star5_rating:after {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	overflow: hidden;
	white-space: nowrap;
	color: #FFC13A;
}
.star5_rating[data-rate="5"]:after{ width: 100%; } /* 星5 */
.star5_rating[data-rate="4.5"]:after{ width: 90%; } /* 星4.5 */
.star5_rating[data-rate="4"]:after{ width: 80%; } /* 星4 */
.star5_rating[data-rate="3.5"]:after{ width: 70%; } /* 星3.5 */
.star5_rating[data-rate="3"]:after{ width: 60%; } /* 星3 */
.star5_rating[data-rate="2.5"]:after{ width: 50%; } /* 星2.5 */
.star5_rating[data-rate="2"]:after{ width: 40%; } /* 星2 */
.star5_rating[data-rate="1.5"]:after{ width: 30%; } /* 星1.5 */
.star5_rating[data-rate="1"]:after{ width: 20%; } /* 星1 */
.star5_rating[data-rate="0.5"]:after{ width: 10%; } /* 星0.5 */
.star5_rating[data-rate="0"]:after{ width: 0%; } /* 星0 */

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*口コミ*/
	#topReview > span {
		width: 100%;
		height: 20px;
		padding: 0;
		margin: 0 auto 5px;
		display: block;
	}
	#topReview > span img {
		width: auto;
		height: 100%;
		padding: 0;
		margin: 0;
	}
	#all_wrap #topReview > h2 {
		font-size: 16px;
		line-height: 1.2em;
		font-weight: 600;
		font-feature-settings: "palt";
		padding: 0;
		margin: 0 auto 10px;
		text-align: center;
		color: #fff;
		position: relative;
		display: -webkit-flex;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
	}
	#all_wrap #topReview > h2 strong {
		width: 100%;
		display: block;
		text-align: center;
		font-size: 20px;
		line-height: 1.2em;
		font-weight: 600;
		font-feature-settings: "palt";
		padding: 0;
		margin: 0;
		color: #FFE500;
	}
	#all_wrap .reviewBox {
		width: 100%;
		padding: 20px 20px 20px 20px;
		margin: auto 0 0;
		border-radius: 10px;
		background: #fff;
	}
	#all_wrap .reviewBox > ul {
		width: 100%;
		height: 240px;
		padding: 0;
		margin: 0;
		list-style: none;
		overflow-y: scroll;
	}
	/* スクロールの幅の設定 */
	#all_wrap .reviewBox > ul::-webkit-scrollbar {
		width: 3px;
		height: 10px;
	}
	/* スクロールの背景の設定 */
	#all_wrap .reviewBox > ul::-webkit-scrollbar-track {
		border-radius: 2px;
		background: #E1E1E1;
	}
	/* スクロールのつまみ部分の設定 */
	#all_wrap .reviewBox > ul::-webkit-scrollbar-thumb {
		border-radius: 2px;
		background: var(--text);
	}
}


/*お問い合わせ状況*/
#topNews > span {
	width: 100%;
	height: 20px;
	padding: 0;
	margin: 0 auto 5px;
	display: block;
	text-align: center;
}
#topNews > span img {
	width: auto;
	height: 100%;
	padding: 0;
	margin: 0;
}
#all_wrap #topNews > h2 {
	font-size: 22px;
	line-height: 1.2em;
	font-weight: 600;
	font-feature-settings: "palt";
	padding: 0;
	margin: 0 auto 20px;
	text-align: center;
	color: #fff;
}
#all_wrap .newsBox {
	width: 100%;
	padding: 30px 20px 30px 30px;
	margin: auto 0 0;
	border-radius: 20px;
	background: #fff;
}
#all_wrap .newsBox > ul {
	width: 100%;
	height: 300px;
	padding: 0;
	margin: 0;
	list-style: none;
	overflow-y: scroll;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
/* スクロールの幅の設定 */
#all_wrap .newsBox > ul::-webkit-scrollbar {
	width: 3px;
	height: 10px;
}
/* スクロールの背景の設定 */
#all_wrap .newsBox > ul::-webkit-scrollbar-track {
	border-radius: 2px;
	background: #E1E1E1;
}
/* スクロールのつまみ部分の設定 */
#all_wrap .newsBox > ul::-webkit-scrollbar-thumb {
	border-radius: 2px;
	background: var(--text);
}
#all_wrap .newsBox > ul li {
	padding: 0;
	margin: 0;
	width: 95%;
	border-bottom: 1px dotted var(--text);
	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: #44a334;
	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.7em;
	font-weight: 500;
	color: var(--text);
}
#all_wrap .newsBox > ul li h3 a {
	font-size: 14px;
	line-height: 1.7em;
	font-weight: 500;
	color: var(--text);
	transition: var(--ease);
}
#all_wrap .newsBox > ul li h3 a:hover {
	color: var(--main);
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*お問い合わせ状況*/
	#topNews > span {
		width: 100%;
		height: 20px;
		padding: 0;
		margin: 0 auto 5px;
		display: block;
		text-align: center;
	}
	#topNews > span img {
		width: auto;
		height: 100%;
		padding: 0;
		margin: 0;
	}
	#all_wrap #topNews > h2 {
		font-size: 20px;
		line-height: 1.2em;
		font-weight: 600;
		font-feature-settings: "palt";
		padding: 0;
		margin: 0 auto 10px;
		text-align: center;
		color: #fff;
	}
	#all_wrap .newsBox {
		width: 100%;
		padding: 20px 20px 20px 20px;
		margin: auto 0 0;
		border-radius: 10px;
		background: #fff;
	}
	#all_wrap .newsBox > ul {
		width: 100%;
		height: 200px;
		padding: 0;
		margin: 0;
		list-style: none;
		overflow-y: scroll;
	}
	/* スクロールの幅の設定 */
	#all_wrap .newsBox > ul::-webkit-scrollbar {
		width: 3px;
		height: 10px;
	}
	/* スクロールの背景の設定 */
	#all_wrap .newsBox > ul::-webkit-scrollbar-track {
		border-radius: 2px;
		background: #E1E1E1;
	}
	/* スクロールのつまみ部分の設定 */
	#all_wrap .newsBox > ul::-webkit-scrollbar-thumb {
		border-radius: 2px;
		background: var(--text);
	}
	#all_wrap .newsBox > ul li {
		padding: 20px 0;
		margin: 0;
		width: 95%;
		border-bottom: 1px dotted var(--text);
	}
	#all_wrap .newsBox > ul li .tags {
		padding: 0;
		margin: 0 auto 8px;
	}
	#all_wrap .newsBox > ul li .tags span {
		font-size: 11px;
		line-height: 1;
		padding: 3px 5px;
		margin: 0 3px 0 0;
		display: inline-block;
		color: #fff;
		border-radius: 3px;
	}
	#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: 15px;
		line-height: 1.2em;
		font-weight: 600;
		color: var(--text);
	}
}


/************************************************************/
/*　トップページ　よくある質問
/************************************************************/
#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://test-mizupro.coresv.com/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://test-mizupro.coresv.com/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: var(--base2);
	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;
}


/************************************************************/
/*　トップページ　会社概要
/************************************************************/
#topCompany {
	width: 100%;
	padding: 100px;
	margin: 0 auto;
	background: #d9f4fc;
	position: relative;
}
/*タイトル*/
#all_wrap #topCompany .contHead::before {
	content: '';
	display: block;
	width: auto;
	height: calc(100% + 30px);
	aspect-ratio: 385 / 396;
	background-image: url('https://test-mizupro.coresv.com/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://test-mizupro.coresv.com/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(--sub);
	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;
}

/************************************************************/
/*　トップページ　お問い合わせ
/************************************************************/
#topContact {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
	background: var(--yellow);
	position: relative;
}
#all_wrap #topContact > header {
	width: 100%;
	max-width: 1200px;
	padding: 0;
	margin: 0 auto;
	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: 40px;
	line-height: 1;
	font-weight: 700;
	color: var(--text);
	text-align: center;
	letter-spacing: 0.1em;
	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: var(--text);
	z-index: 5;
}


/************************************************************/
/*　よくある質問
/************************************************************/
#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);
}



/************************************************************/
/*　新着情報
/************************************************************/
#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: 140px;
	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 - 140px);
}
#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);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#all_wrap .newsList {
		width: 100%;
		height: 200px;
		padding: 0;
		margin: 0;
		list-style: none;
		overflow-y: scroll;
	}
	#all_wrap .newsList > li {
		padding: 20px 0;
		margin: 0;
		width: 95%;
		border-bottom: 1px dotted var(--text);
	}
	#all_wrap .newsList > li .tags {
		padding: 0;
		margin: 0 auto 8px;
	}
	#all_wrap .newsList > li .tags span {
		font-size: 11px;
		line-height: 1;
		padding: 3px 5px;
		margin: 0 3px 0 0;
		display: inline-block;
		color: #fff;
		border-radius: 3px;
	}
	#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: 15px;
		line-height: 1.2em;
		font-weight: 600;
		color: var(--text);
	}
}



/************************************************************/
/*　クチコミ
/************************************************************/
#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;
	}
}
