@charset "UTF-8";

html {
	scroll-behavior: smooth;
}

:not(span) {
	margin: 0;
	padding: 0;
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	box-sizing: border-box;
}
* {
	letter-spacing: calc(1em / 10);
	font-feature-settings: "palt";
	max-height: 99999px;
}

a:any-link {
	text-underline-offset: calc(1em / 6);
	text-decoration: underline;
	-webkit-tap-highlight-color: rgba(255,255,255,0);
	transition: .2s;
}
label,
button,
input[type=checkbox] {
	cursor: pointer;
}

#wrap {
	background: white;
	margin: 0;
	padding: 0;
}
body {
	-webkit-text-size-adjust: 100%;
	margin: 0;
	color: #111;
	padding: 0;
	font-family: sans-serif;
	-webkit-font-smoothing: subpixel-antialiased;
	animation: fadeIn 0.5s ease 0s 1 normal;
}
@keyframes fadeIn {
	0% { opacity: 0; }
	25% { opacity: 0; }
	100% { opacity: 1; }
}
@media (max-width: 60rem) {
	body {
		padding-top: calc(3rem + 2px);
	}
}

/* Safariだけフォントが太くなる対策 */
::-webkit-full-page-media, :future, :root body {
	-webkit-font-smoothing: antialiased;
}

p {
	line-height: 1.667;
}
p + p {
	margin-top: 1rem;
}
em {
	font-size: 1.125rem;
}
strong {
	display: block;
	font-size: 1.25rem;
	font-family: serif;
	line-height: 1.5;
	font-weight: 700;
}
strong a {
	font-weight: 700;
}

h3 {
	font-size: 1.125rem;
	padding: 0;
	line-height: 1.25;
}
h3::after {
	content: '';
	display: block;
	width: 100%;
	height: 5px;
	margin: 0.25rem 0 1.25rem;
	background: linear-gradient(to bottom, #AAA, #FFF, #DDD, #EEE);

}
* + h3 {
	margin-top: 2.5rem;
}
h2 + h3 {
	margin-top: 1.25rem;
}
h3::before {
	content: url(./img/cross.png);
	margin-right: 0.25rem;
}
h2, h3, h4 {
	font-weight: 700;
}
object {
	display: block;
	width: 100%;
}
object img {
	display: block;
	width: 100%;
	height: auto;
}
main object img {
	display: block;
	width: 100%;
	max-width: 660px;
	height: auto;
}

.mainimg01{
    display: block;
    width: 58.125rem;
    height: auto;
    margin: 0 auto;
    padding-bottom: 25px;
}
.taisaku01 img{
width: 100%;

}
.taisaku02{
margin: 0 auto;
text-align: center;

}


ol {
	margin: 1rem 0;
}
ol li {
	margin: 0.5rem 0 0.5rem 1.75rem;
	line-height: 1.5;
}

.sumitsuki {
	margin-top:2rem;
	margin-bottom: 1rem;
}
.sumitsuki::before {
	content: '【';
	margin-right: 0.125rem;
}
.sumitsuki::after {
	content: '】';
	margin-left: 0.125rem;
}
.center{
margin: 0 auto;
    text-align: center;
    padding: 13px;
}

.simitsuki_img_mini{
width: 75%;
    text-align: center;
    margin: 0 auto;
}
.simitsuki_img_mini2{
width: 90%;
    text-align: center;
    margin: 0 auto;
}
/*========================================*/
/*============== リンクアイコン ==============*/
/*========================================*/

/* 外部リンクを別窓で開くときにテキストの【末尾】に付くアイコン（※どこでも） */
a[target="_blank"]::after {
	content: '';
	display: inline-block;
	margin: 0 0.125rem;
	width: 0.95em;
	height: 0.95em;
	background: url(./img/out.svg) center center no-repeat;
	background-size: contain;
	position: relative;
	top: -0.25rem;
}
/* PDFにリンクしたときにテキストの【末尾】に付くアイコン（※どこでも） */
a[href$=".pdf"]::after {
	content: 'PDF';
	font-size: 0.75rem;
	display: inline-block;
	margin: 0 0.25rem;
	font-size: 0.75rem;
	background: none;
	letter-spacing: 0;
	color: #C00;
	text-decoration: none;
	position: relative;
	top: -0.333rem;
}

/* Googleマップにリンクしたときにテキストの【先頭】に付くアイコン（※本記事内） */
a[href*="/maps/"]::before,
a[href*="/maps.app"]::before {
	content: '';
	display: inline-block;
	width: calc(1em / 734 * 512); /* 512 */
	height: 1em; /* 734 */
	margin: 0 0.25rem 0 0;
	background: url(./img/google_maps_icon.svg) center center no-repeat;
	background-size: contain;
	transform: scale(1.25);
	position: relative;
	top: 0.125rem;
}
a[href*="/maps/"]::after,
a[href*="/maps.app"]::after {
	content: none;
}


/*========================================*/
/*================= ヘッダ =================*/
/*========================================*/

header hgroup h1 {
	width: 16rem;
}
header hgroup h1 img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}
@media (min-width: 60.001rem) {
	header {
		border-top: solid 2px #09C;
		border-bottom: solid 1px #FFF;
		background: linear-gradient(to bottom,
			#FFFFFF,
			#F3F3F3 5.5rem,
			#FFFFFF calc(5.5rem + 1px),
			#E6E6E6 calc(5.5rem + 2px),
			#FFFFFF calc(5.5rem +  2px + 3%),
			#F3F3F3 95%,
			#F3F3F3 95.001%,
			#E6E6E6);
			box-shadow: 0.125rem 0.125rem 0.25rem rgba(0,0,0,0.125);
			position: relative;
			z-index: 2;
	}
	header input {
		display: none;
	}
	header hgroup {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 58.125rem;
		height: 5rem;
		margin: 0.5rem auto 0;
	}
	header hgroup p:nth-of-type(1) {
		font-size: 0.75rem;
		line-height: 1.5;
	}
	header nav ul {
		display: flex;
		width: 100%;
		justify-content: center;
		margin: 0 auto;
	}
	header nav ul li:first-child {
		display: none;
	}
	header nav ul li {
		list-style: none;
		width: calc(58.125rem / 7);
		border-left: solid thin #CCC;
	}
	header nav ul li:last-child {
		border-right: solid thin #CCC;
	}
	header nav ul li a:any-link {
		display: flex;
		justify-content: center;
		align-items: center;
		text-decoration: none;
		color: #111;
		font-size: 0.9rem;
		height: 3rem;
		border: solid thin white;
		border-bottom: none;
		background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 92%, #C9C9C9 92.001%, #C9C9C9);
	}
	header nav ul li a:hover,
	header nav ul li a.here {
		background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 92%, #09C 92.001%, #09C);
	}
	header nav ul li a.here {
		pointer-events: none;
		cursor: default;
	}
	header nav ul li:nth-child(5) a {
		letter-spacing: -1px;
		white-space: nowrap;
	}
}
@media (max-width: 60rem) {
	header {
		border-top: solid 2px #09C;
		height: calc(3rem + 2px);
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		background: linear-gradient(to bottom, #FFFFFF, #F3F3F3);

		box-shadow: 0 0.25rem 0.25rem rgba(0,0,0,0.125);
		z-index: 5;
	}
	header::before {
		content: '';
		display: block;
		width: 2.5rem;
		height: 2.5rem;
		position: absolute;
		top: 0.25rem;
		right: 1.25vw;
		z-index: 3;
		background: url(./img/hamburger.png) center center no-repeat;
		background-size: cover;
	}

	header hgroup h1 img {
		display: block;
		height: 1.25rem;
		width: auto;
		margin-left: 2.5vw;
		object-fit: contain;
		margin-top: 0.9rem;
	}
	header hgroup p {
		display: none;
	}
	header input[type=checkbox] {
		position: absolute;
		top: 1rem;
		right: 1rem;
		transform: scale(3);
		z-index: 100;
		opacity: 0;
	}
	header nav {
		display: flex;
		justify-content: center;
		align-items: center;
		position: fixed;
		top: 0;
		left: -100%;
		background: rgba(0,0,0,0.75);
		width: 100%;
		height: 100vh;
		z-index: 99;
		transition: .3s;
	}
	header input:checked + nav {
		left: 0;
	}
	header nav::after {
		content: '┼';
		position: absolute;
		top: 0;
		right: 0;
		color: white;
		transform: rotate(45deg);
		font-size: 3rem;
	}
	header nav ul {
		padding: 1rem;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	header nav ul li {
	list-style: none;
		margin: 0.5rem;
	}
	header nav ul li a:any-link {
		display: block;
		text-decoration: none;
		padding: 0.75rem 0;
		font-size: 1.125rem;
		color: #111;
		width: 16rem;
		background: linear-gradient(to bottom, #FFF, #EEE);
		border-top: solid 2px #DDD;
		border-right: solid 2px #BBB;
		border-bottom: solid 2px #BBB;
		border-left: solid 2px #DDD;
		border-radius: 0.25rem;
		text-align: center;
		text-shadow: 1px 1px 0 rgba(255,255,255,0.5);
	}
}

/*========================================*/
/*================= フッタ =================*/
/*========================================*/
footer {
	margin-top: min(10vw, 5rem);
}
footer nav ul {
	display: flex;
	justify-content:center;
	flex-wrap: wrap;
	width: 68.125rem;
	max-width: calc(100% - 5vw);
	margin: 1rem auto;
}
footer nav ul li {
	list-style: none;
	margin-right: 1.25rem;
}
footer nav ul li a {
	font-size: 0.9rem;
	color: #111;
}
footer #copyright {
	color: white;
	background: #09C;
	font-size: min(2vw, 0.75rem);
	padding: 0.5rem 0;
	padding-right: calc((100% - 58.125rem) / 2);
	text-align: right;
}
@media (max-width: 60rem) {
	footer nav ul {
		justify-content: center;
		padding-top: 5vw;
	}
	footer nav ul li {
		margin: 0.5rem;
	}
	footer #copyright {
		text-align: center;
		height: 16.75rem;
	}
}
#sp_fix {
	display: flex;
	flex-direction: column;
	justify-content: center;
	ajign-items: center;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: auto;
	background: #EEE;
}
#sp_fix p:first-child {
	margin: 0 auto !important;
	padding: 0.333rem 0;
	width: 23rem;
	max-width: calc(100% - 5vw);
	line-height: 1.5;
	font-weight: bold;
	text-align: center;
}
#sp_fix p:last-child {
	margin: 0 auto;
}
#sp_fix img {
	display: block;
	width: 23.75rem;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	object-fit: fill;
}
@media (min-width: 60.001rem) {
	#sp_fix {
		display: none;
	}
}
/*========================================*/
/*============= トップに戻るボタン =============*/
/*========================================*/

#back_to_top {
	position: fixed;
	bottom: min(5vw, 1.75rem);
	right: min(1.25vw, 2rem);
	width: min(11vw, 3.33rem);
	height: min(11vw, 3.33rem);
	transform: rotateY(90deg);
	transition: 1s;
}
@media (max-width: 60rem) {
	#back_to_top {
		bottom: 11.5rem;
	}
}
#back_to_top.is-animation {
	transform: rotateY(0deg);
}
#back_to_top a:any-link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-size: min(4.5vw, 1.5rem);
	letter-spacing: 0;
	line-height: 1;
	text-decoration: none;
	font-weight: 700;
	text-align: center;
	color: rgba(255,255,255,0);
	background: url(./lib/img/pagetop.svg) center center no-repeat;
	background-size: cover; 
}

/*========================================*/
/*============== パンくずリスト ==============*/
/*========================================*/

#pankuzu {
	width: 58.125rem;
	max-width: calc(100% - 5vw);
	margin: 1rem auto;
	display: flex;
}
#pankuzu li {
	list-style: none;
}
#pankuzu li + li::before {
	content: '>';
	display: inline-block;
	margin: 0 0.5rem;
	color: #999;
	transform: scale(0.75);
}
#pankuzu li a,
#pankuzu li span {
	font-size: 0.85rem;
}
@media (max-width: 60rem) {
	#pankuzu {
		width: 40rem;
	}
}


/*========================================*/
/*================ 本文枠組み ================*/
/*========================================*/
#body_wrap {
	display: flex;
	justify-content: space-between;
	width: 58.125rem;
	margin: 0 auto;
}
main {
	width: 42rem;
}
aside {
	width: 15rem;
}
@media (max-width: 60rem) {
	#body_wrap {
		display: block;
		width: 42rem;
		max-width: calc(100% - 5vw);
	}
	main {
		width: 42rem;
		max-width: 100%;
		margin: 0 auto;
		overflow: hidden;
	}
	aside {
		display: none;
	}
}
/*========================================*/
/*=============== サイドカラム ===============*/
/*========================================*/
aside .aside_box {
	border: solid medium #EEE;
	outline: solid thin #CCC;
	margin-bottom: 2rem;
}
aside .aside_box ul li {
	padding: 0.75rem 0.5rem;
	line-height: 1.25;
	list-style: none;
}
aside .aside_box ul li:nth-child(even) {
	background: #F3F3F3;
}
aside .aside_box ul li a {
	font-size: 0.95rem;
	display: flex;
	align-items: center;
}
aside .aside_box ul li a::before {
	content: '→';
	color: white;
	background: #009;
	display: flex;
	width: 1rem;
	height: 1rem;
	font-size: 0.75rem;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	transform: scale(0.75);
	margin-right: 0.25rem;
}
aside .aside_box h4 {
	font-family: serif;
	font-size: 1.25rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0.5rem 0;
}
aside .aside_box h4 span {
	font-size: 0.9rem;
	margin-top: 0.5rem;
}
aside .aside_box p {
	margin: 0.5rem;
	font-size: 0.95rem;
}
aside .aside_box strong a:any-link {
	text-decoration: none;
	color: #111;
}
aside .aside_box .blue_double {
	text-decoration: none;
	display: block;
	background: linear-gradient(to bottom, rgb(46,156,208), rgb(46,156,208) 50%, rgb(4,133,197) 50.001%, rgb(4,133,197));
	padding: 0.5rem;
	color: white;
	font-size: 0.9rem;
	font-weight: 700;
	border: solid 2px white;
	outline: solid thin #CCC;
	text-align: center;
}
aside .aside_box hr {
	color: rgba(255,255,255,0);
	margin: 1rem 0.5rem;
	height: 2px;
	border-top: dashed 1px #CCC;
}
aside #qr_code {
	display: block;
	width: 100%;
	max-width: 220px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

/*========================================*/
/*========= トップページのヘッダ下の看板 =========*/
/*========================================*/
header + object {
	display: block;
	background: url(./img/cloud.jpg) center center no-repeat;
	padding: 1.5rem 0 2rem;
	background-size: cover;
}
header + object img {
	display: block;
	width: 58.125rem;
	height: auto;
	margin: 0 auto;
}
@media (max-width: 60rem) {
	header + object {
		padding: 2.5vw 0;
	}
	header + object img {
		display: block;
		width: calc(100% - 5vw);
		height: auto;
		border-radius: 0.6rem;
	}

.mainimg01 {
        display: block;
        width: calc(100% - 5vw);
        height: auto;
        border-radius: 0.6rem;
    padding-bottom: 25px;
}

}
@media (max-width: 40rem) {
	header + object img {
		height: 7.5rem;
		object-fit: cover;
	}

	
.mainimg01 {
         display: block;
        width: calc(100% - 5vw);
        height: auto;
        border-radius: 0.6rem;
    padding-bottom: 25px;
}

}

/*========================================*/
/*=============== トップページ ===============*/
/*========================================*/
#top_navi {
	display: flex;
	justify-content: space-between;
	margin-bottom: 2rem;
}
#top_navi li {
	list-style: none;
	width: calc((100% - 1rem) / 2);
}
@media (max-width: 40rem) {
	#top_navi li {
		width: calc((100% - 2.5vw) / 2);
	}
}
#top_navi li img {
	display: block;
	width: 100%;
	height: auto;
	box-shadow: 0.125rem 0.125rem 0.25rem rgba(0,0,0,0.125);
	border-radius: 0.6rem;
}
strong.blue {
	color: #00C;
	font-size: min(4.5vw, 1.25rem);
}
strong.italic {
	font-style: italic;
}

.pink_waku a:any-link {
	display: flex;
	width: fit-content;
	flex-wrap: wrap;
	justify-content: center;
	margin: -2rem auto 2rem;
	padding: 0.5rem 1rem;
	color: #F69;
	font-weight: 700;
	border: solid medium #F69;
	border-radius: 1rem;
	text-decoration: none;
	font-size: min(4.5vw, 1.25rem);
}
.pink_waku a:any-link span {
	color: #F69;
	padding: 0.25rem 0.75rem;
}
h2.top_blue {
	font-size: min(6vw, 1.75rem);
	margin: 2.5rem 0 1rem;
	padding: 0.667em;
	color: white;
	background: linear-gradient(to bottom, rgba(63,171,181,0.25), rgba(63,171,181,0.333));
	border: solid thin rgba(63,171,181,0.333);
	border-radius: 0.5rem;
	font-family: serif;
	font-weight: 700;
	scroll-margin-top: 2rem;
	text-shadow: 0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0.25em 0.25em 0.25em rgba(0,0,0,0.5);
}
@media (max-width: 60rem) {
	h2.top_blue,
	h2.top_green {
		scroll-margin-top: 4rem;
	}
}
h2.top_blue span {
	font-size: smaller;
	color: white;
}
h2.top_blue::before {
	content: attr(data-title);
	display: block;
	float: right;
	text-shadow: 0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181),
	0 0 3px rgb(63,171,181);
	font-size: min(4vw, 1.5rem);
	margin-top: 0.25rem;
}
h2.top_green {
	font-size: min(6vw, 1.75rem);
	margin: 2.5rem 0 1rem;
	padding: 0.667em;
	color: white;
	background: linear-gradient(to bottom, rgba(118,183,62,0.25), rgba(118,183,62,0.333));
	border: solid thin rgba(118,183,62,0.333);
	border-radius: 0.5rem;
	font-family: serif;
	font-weight: 700;
	scroll-margin-top: 2rem;
	text-shadow: 0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0.25em 0.25em 0.25em rgba(0,0,0,0.5);
}
h2.top_green span {
	font-size: smaller;
	color: white;
}
h2.top_green::before {
	content: attr(data-title);
	display: block;
	float: right;
	text-shadow: 0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62),
	0 0 3px rgb(118,183,62);
	font-size: min(4vw, 1.5rem);
	margin-top: 0.25rem;
}
@media (max-width: 60rem) {
	h2.top_blue,
	h2.top_green {
		scroll-margin-top: 4rem;
	}
}
.waku {
	border: solid 2px #DDD;
	padding: min(2.5vw, 1.25rem);
	margin: 0 0 2rem;
}
.waku h4.underline_thick {
	font-family: serif;
	font-size: 1.125rem;
	width: fit-content;
	color: #009;
	margin-bottom: 0.75rem;
	background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 66.666%, #BDF 66.667%, #BDF);
}
.waku * + h4 {
	margin-top: 1.75rem;
}
.waku ul li {
	margin: 0.5rem;
	margin-left: 1.25rem;
	line-height: 1.5;
}
.waku ul li a {
	line-height: 1.5;
}
.waku ul.kome li {
	list-style: none;
	display: flex;
	margin-left: 0;
}
.waku ul.kome li::before {
	content: '※';
	flex: none;
}

#foot_banner {
	margin: 3.5rem 0 0;
}
#foot_banner img {
	display: block;
	width: 100%;
	max-width: 660px;
	height: auto;
	margin: 0 auto;
}
@media (max-width: 60rem) {
	#foot_banner {
		display: none;
	}
}

/*========================================*/
/*================ 修繕施工例 ================*/
/*========================================*/

h2.silver {
	background: linear-gradient(to bottom, #FFFFFF, #EEEEEE);
	padding: 1rem;
	font-size: 1.25rem;
	font-weight: 700;
	font-family: serif;
	border-top: solid medium #00C;
	border-left: solid thin #CCC;
	border-right: solid thin #CCC;
}
h4.navy_back {
	background: linear-gradient(to bottom,  rgba(0,17,187,1), rgba(0,17,187,0.75));
	color: white;
	padding: 0.25rem 1rem 0.125rem ;
	line-height: 1.25;
	position: relative;
	margin-bottom: calc(0.25rem + 6px);
}
h4.navy_back::after {
	content: '';
	display: block;
	width: 100%;
	height: 6px;
	background: linear-gradient(to bottom,  rgba(0,17,187,0.5), rgba(0,17,187,0.5) 50%, rgba(0,17,187,0.25) 50.001%, rgba(0,17,187,0.25));
	position: absolute;
	bottom: -6px;
	left: 0;
}
h3 + h4.navy_back {
	margin-top: 0;
}
ul.case {
	margin-bottom: 1.75rem;
}
ul.case li {
	list-style: none;
}
ul.case li img {
	display: block;
	width: 190px;
	height: 165px;
	background: #EEE;
	margin: 0 auto;
	object-fit: cover;
	object-position: left center;
}
ul.case li figcaption {
	font-size: 0.95rem;
	line-height: 1.5;
	margin-top: 0.25rem;
}
ul.case + h3 {
	margin-top: 3rem;
}
ul.case + h4 {
	margin-top: 3rem;
}

@media (min-width: 45.001rem) {
	ul.case {
		display: flex;
	}
	ul.case li {
		width: 190px;
		margin: 0;
		margin-top: 1rem;
		position: relative;
	}
	ul.case li + li {
		margin-left: calc((100% - 190px * 3) / 2);
	}
	ul.case li + li::before {
		content: '▼';
		display: block;
		position: absolute;
		top: 75px;
		left: -22px;
		transform: rotate(-90deg);
		color: #999;
	}

	ul.case + hr {
		margin: 3rem 0;
		width: 100%;
		height: calc(1rem / 8);
		border: none;
	border: none;
	background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0));
	}

}
@media (max-width: 45rem) {
	ul.case {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-top: 1rem;
	}
	ul.case li {
		width: 66.5vw;
		position: relative;
		margin: 0 auto;
	}
	ul.case li + li {
		margin-top: 2rem;
	}
	ul.case li + li::before {
		content: '▼';
		display: block;
		position: absolute;
		top: -2rem;
		left: calc(50% - 0.5rem);
		color: #999;
	}

	ul.case li img {
		display: block;
		width: 66.5vw; /*190px*/
		height: 57.75vw; /*165px*/
		background: #EEE;
		margin: 0 auto;
		object-fit: cover;
		object-position: left center;
	}

	ul.case + hr {
		margin: 15vw 0;
		width: 100%;
		height: calc(1rem / 8);
		border: none;
		background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.25) 50%, rgba(0,0,0,0));
	}

}

/*========================================*/
/*=============== 標準修繕料金 ===============*/
/*========================================*/

dl.QandA {
	border: solid thin #CCC !important;
	border-bottom: none;
	margin: 1rem 0;
}
dl.QandA div {
	border-bottom: solid thin #CCC;
	padding: 1rem;
}
dl.QandA div dt {
	padding: 0 0 0.75rem;
	line-height: 1.5;
	display: flex;
	align-items: center;
}
dl.QandA div dd:nth-of-type(1) {
	padding: 0;
	line-height: 1.5;
	display: flex;
	align-items: center;
}

dl.QandA div dt img,
dl.QandA div dd:nth-of-type(1) img {
	flex: none;
	margin-right: 0.5rem;
}
dl.QandA div dd:nth-of-type(2) ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 0.75rem;
	justify-content: center;
}
dl.QandA div dd:nth-of-type(2) ul li {
	list-style: none;
	font-size: 0.9rem;
	text-align: center;
	display: flex;
	align-items: center;
	margin: 0.25rem 0;
}
dl.QandA div dd:nth-of-type(2) ul li:nth-child(n+2)::before {
	content: '＋';
	margin: 0 0.25rem;
}
dl.QandA div dd:nth-of-type(2) ul li:last-child::before {
	content: '＝';
	margin: 0 0.25rem;
}
span.brown {
	color: #900;
	font-size: smaller;
}
@media (min-width: 45.001rem) {
	div.kigu {
		border: solid thin #CCC;
		display: grid;
		grid-template-rows: auto auto;
		grid-template-columns: 45% 55%;
		box-shadow: 0.25rem 0.25rem 0.5rem rgba(0,0,0,0.05);
	}
	div.kigu + div.kigu {
		margin-top: 2rem;
	}
	div.kigu h4 {
		grid-area: 1 / 1 / 2 / 3;
		background: #EEE;
		text-align: center;
		padding: 1rem;
		font-size: 1.125rem;
		border-bottom: solid thin #CCC;
	}
	div.kigu dl {
		grid-area: 2 / 1 / 3 / 2;
		border-right: solid thin #CCC;
	}
	div.kigu dl div {
		display: flex;
	}
	div.kigu dl div:nth-child(6) {
		border-top: solid thin #CCC;
	}
	div.kigu dl div:last-child {
		border-top: solid thin #CCC;
	}
	div.kigu dl div dt {
		width: 50%;
		font-size: 0.9rem;
		padding: 1rem 0.5rem;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		line-height: 1.25;
		background: #EEE;
	}
	div.kigu dl div dd {
		width: 50%;
		font-size: 0.9rem;
		padding: 1rem 0.5rem;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		line-height: 1.25;
	}
	div.kigu object {
		grid-area: 2 / 2 / 3 / 3;
	}
	
	div.kigu object img {
		display: block;
		width: 100%;
		height: auto;
		object-fit: contain;
	}
}
@media (max-width: 45rem) {
	div.kigu {
		border: solid thin #CCC;
		display: flex;
		flex-direction: column;
		box-shadow: 0.25rem 0.25rem 0.5rem rgba(0,0,0,0.05);
	}
	div.kigu + div.kigu {
		margin-top: 10vw;
	}
	div.kigu h4 {
		background: #EEE;
		text-align: center;
		padding: 1rem;
		font-size: 1.125rem;
		border-bottom: solid thin #CCC;
		order: 1;
	}
	div.kigu dl {
		order: 3;
		border-top: solid thin #CCC;
	}
	div.kigu dl div {
		display: flex;
	}
	div.kigu dl div:nth-child(6) {
		border-top: solid thin #CCC;
	}
	div.kigu dl div:last-child {
		border-top: solid thin #CCC;
	}
	div.kigu dl div dt {
		width: 50%;
		font-size: 0.9rem;
		padding: 0.5rem 0.5rem;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		line-height: 1.25;
		background: #EEE;
	}
	div.kigu dl div dd {
		width: 50%;
		font-size: 0.9rem;
		padding: 0.5rem 0.5rem;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		line-height: 1.25;
	}
	div.kigu object {
		order: 2;
	}
}


@media (min-width: 45.001rem) {
	div.kigu2 {
		border: solid thin #CCC;
		display: grid;
		grid-template-rows: auto auto;
		grid-template-columns: 30% 70%;
		box-shadow: 0.25rem 0.25rem 0.5rem rgba(0,0,0,0.05);
		margin-top: 1rem;
	}
	div.kigu2 + div.kigu2 {
		margin: 2rem 0;
	}
	div.kigu2 h4 {
		grid-area: 1 / 1 / 2 / 3;
		background: #EEE;
		text-align: center;
		padding: 1rem;
		font-size: 1.125rem;
		border-bottom: solid thin #CCC;
	}
	div.kigu2 p {
		grid-area: 2 / 1 / 3 / 2;
		border-right: solid thin #CCC;
		background: #EEE;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	div.kigu2 object {
		grid-area: 2 / 2 / 3 / 3;
		display: flex;
		justify-content: center;
	}
	div.kigu2 object img {
		width: auto;
		height: auto;
		max-width: 13rem;
		max-height: 13rem;
		border: solid 1rem white;
		object-fit: contain;
	}
	div.kigu2 object img.wide_image {
		max-width: 20rem;
	}
}
@media (max-width: 45rem) {
	div.kigu2 {
		border: solid thin #CCC;
		display: flex;
		flex-direction: column;
		box-shadow: 0.25rem 0.25rem 0.5rem rgba(0,0,0,0.05);
		margin-top: 1rem;
	}
	div.kigu2 + div.kigu2 {
		margin-top: 10vw;
	}
	div.kigu2 h4 {
		background: #EEE;
		text-align: center;
		padding: 1rem;
		font-size: 1.125rem;
		border-bottom: solid thin #CCC;
		order: 1;
	}
	div.kigu2 p {
		order: 3;
		border-top: solid thin #CCC;
		background: #EEE;
		padding:0.75rem;
		text-align: center;
	}
	div.kigu2 object {
		order: 2;
		display: flex;
		justify-content: center;
	}
	div.kigu2 object img {
		display: block;
		width: 20rem;
		max-width: 50%;
		height: auto;
		border: solid 2.5vw white;
		object-fit: contain;
	}
	div.kigu2 object img.wide_image {
		width: 25rem;
		max-width: 90%;
	}
}
/*========================================*/
/*========== 水道修繕受付センター組織図 ==========*/
/*========================================*/

h4.member {
	font-size: 1rem;
	margin: 2rem 0 0.75rem;
}
h4.member::before {
	content: '《';
}
h4.member:after {
	content: '》';
}
@media (min-width: 45.001rem) {
	table.member {
		border-collapse: collapse;
		width: 100%;
	}
	table.member th,
	table.member td {
		border: solid thin #CCC;
		padding: 0.75rem 0.5rem;
		line-height: 1.25;
		font-size: 0.75rem;
	}
	table.member th {
		text-align: left;
		background: #EEE;
	}
	table.member td.tel,
	table.member td.fax {
		white-space: nowrap;
	}
	table.member thead th {
		text-align: center;
		background: #DEF;
	}
}

.full_wide_image {
	max-width: 614px;
}

@media (max-width: 45rem) {
	table.member {
		display: block;
		width: 100%;
		position: relative;
	}
	table.member thead {
		display: none;
	}
	table.member tr {
		display: block;
		width: 85vw;
		padding: 1rem;
		margin: 0;
	}
	table.member tr:nth-child(odd) {
		background: #EEE;
	}
	table.member th,
	table.member td {
		display: block;
		line-height: 1.5;
	}
	table.member th {
		padding: 0;
		text-align: left;
		font-weight: 700;
	}
	table.member th br {
		display: none;
	}
	table.member td {
		padding-left: 1rem;
		font-size: 0.9rem;
		display: flex;
	}
	table.member td.tel::before {
		content: 'TEL：';
	}
	table.member td.fax::before {
		content: 'FAX：';
	}
}
/*========================================*/
/*=============== お問い合わせ ===============*/
/*========================================*/
object + p {
	margin: 3em 0 2rem;
}
.table_wrap {
	margin: 2rem 0;
	max-width: 100%;
	overflow-x: auto;
}
.table_wrap table {
	border-collapse: collapse;
}
.table_wrap table th,
.table_wrap table td {
	border: solid thin #CCC;
	font-size: 0.9rem;
	padding: 0.5rem min(1.25vw, 0.5rem);
	line-height: 1.25;
}
.table_wrap table th {
	background: #DEF;
}
.table_wrap table td.gray {
	background: #F0F0F0;
}
.table_wrap table td.gray_white {
	background: #F9F9F9;
}
.table_wrap table td:last-child {
	white-space: nowrap;
}

/*========================================*/
/*=============== 修繕工事実績 ===============*/
/*========================================*/


@media (min-width: 60.001rem) {
	main.full_size {
		width: 58.125rem;
	}
	table.works {
		margin: 1rem 0;
		border-collapse: collapse;
		width: 100%;
	}
	table.works th, 
	table.works td {
		padding: 0.5rem;
		border: solid thin #CCC;
		font-size: 0.9rem;
		line-height: 1.5;
	}
	table.works thead th {
		background: #DEF;
	}
	table.works tbody th {
		text-align: left;
		background: #EEE;
		width: 8rem;
	}
	table.works td.price {
		white-space: nowrap;
		text-align: center;
	}
	table.works figcaption {
		text-align: center;
		margin-top: 0.25rem;
	}
}
@media (max-width: 60rem) {
	table.works br ~ * {
		font-size: smaller;
	}
	table.works {
		width: 100%;
	}
	table.works thead {
		display: none;
	}
	table.works tbody tr {
		display: grid;
		grid-template-rows: auto auto auto auto;
		grid-template-columns: 1fr auto 1fr;
		border: solid thin #CCC;
		box-shadow: 0.25rem 0.25rem 0.5rem rgba(0,0,0,0.05);
	}
	table.works tbody th {
		grid-area: 1/1/2/4;
		padding: 0.5rem 0;
		line-height: 1.25;
		font-weight: 700;
		background: #EEE;
		margin-bottom: 1vw;
	}
	table.works tbody td:nth-of-type(1) {
		grid-area: 2/1/3/2;
		display: flex;
		justify-content: flex-end;
	}
	table.works tbody td:nth-of-type(2) {
		grid-area: 2/2/3/3;
	}
	table.works tbody td:nth-of-type(3) {
		grid-area: 2/3/3/4;
	}
	table.works tbody td:nth-of-type(4) {
		grid-area: 3/1/4/4;
		padding: 1rem 2.5vw;
		margin-top: 0.5rem;
		position: relative;
	}
	table.works tbody td:nth-of-type(4)::after {
		content: '';
		display: block;
		width: calc(100% - 5vw);
		height: 0;
		border-top: solid thin #CCC;
		position: absolute;
		top: 0;
		left: 2.5vw;
	}
	table.works tbody td:nth-of-type(5) {
		grid-area: 4/1/5/4;
		padding: 1rem 2.5vw 0.75rem;
		position: relative;
	}
	table.works tbody td:nth-of-type(5)::after {
		content: '';
		display: block;
		width: calc(100% - 5vw);
		height: 0;
		border-top: solid thin #CCC;
		position: absolute;
		top: 0;
		left: 2.5vw;
	}

	table.works tbody tr + tr {
		margin: min(7.5vw, 3rem) 0 min(5vw, 2rem);
	}
	table.works tbody th,
	table.works tbody td {
		display: block;
	}
	table.works tbody td figure {
		margin: 2vw 1vw;
		width: 10rem;
		max-width: 25vw;
	}
	table.works tbody td figure img {
		display: block;
		width: 100%;
		height: auto;
	}
	table.works tbody td figure figcaption {
		text-align: center;
		margin-top: 0.25rem;
		font-size: 0.9rem;
	}
	table.works tbody td.price {
		font-size: 0.95rem;
	}
	table.works tbody td.price::before {
		content: '料金：';
	}
	table.works tbody td.customer {
		display: flex;
		line-height: 1.25;
		margin-bottom: 0.5rem;
		font-size: 0.95rem;
	}
	table.works tbody td.customer::before {
		content: 'お客様の声：';
		flex: none;
		white-space: nowrap;
	}


}


