@charset "utf-8";

/* =====================================================
--------------------------------------------------------
トータルサニタリーサービス
--------------------------------------------------------
===================================================== */

/* サービス一覧 */
.service-list {
	position: relative;
	margin-bottom: 40px;
	padding: 40px 16px 24px;
	border: 2px solid var(--color-housecom-blue);
}

.service-list h2 {
	position: absolute;
	top: -20px;
	left: 0;
	width: 100%;
	text-align: center;
}

.service-list h2 span {
	padding: 0 16px;
	background: #fff;
	color: var(--color-housecom-blue);
	font-size: 28px;
	font-weight: bold;
}

/* .service-list ul {
	margin-bottom: 40px;
} */

.service-list li {
	padding-bottom: 16px;
	/* border-bottom: 1px solid var(--color-grey-light); */
	background-repeat: no-repeat;
	background-size: 60px;
}

.service-list_img01 {
	background-image: url(/img/service/sanitary/menu01.png);
	background-position: right 50%;
}

.service-list_img02 {
	background-image: url(/img/service/sanitary/menu02.png);
	background-position: right 50%;
}

.service-list_img03 {
	background-image: url(/img/service/sanitary/menu03.png);
	background-position: right 50%;
}

.service-list_img04 {
	background-image: url(/img/service/sanitary/menu04.png);
	background-position: right 50%;
}

.service-list hgroup {
	display: flex;
	flex-direction: column-reverse;
}

.service-list hgroup h3 {
	margin-bottom: 4px;
	font-size: 22px;
	font-weight: bold;
}

.service-list hgroup h3 > span {
	margin-right: 4px;
	color: var(--color-housecom-blue);
	font-size: 28px;
}

.service-list hgroup p {
	font-size: 12px;
}

.service-list li > p {
	margin-bottom: 16px;
	width: calc((100% / 4) * 3)
}

.service-list .c--link-sub {
	display: flex;
	margin: 0 auto;
	padding: 8px 0;
	width: 196px;
	border: none;
	background: var(--color-housecom-blue);
	color: #fff;
	font-weight: bold;
}

.service-list > p {
	margin: 0 auto 8px;
	font-weight: bold;
	text-align: center;
}

.service-list > p span {
	display: block;
}

.service-list .c--link-cv-primary {
	display: flex;
	margin: 0 auto;
	width: 232px;
}

@media screen and (min-width:1024px) {
	.service-list .c--flex-1-4 {
		gap: 16px;
	}
	.service-list .c--flex-1-4 > * {
		width: calc((100% - 48px) / 4);
	}
	.service-list li {
		background-size: 72px;
	}
	.service-list_img01 {
		background-position: right 20%;
	}
	.service-list_img02 {
		background-position: right 50%;
	}
	.service-list_img03 {
		background-position: right 40%;
	}
	.service-list_img04 {
		background-position: right 45%;
	}
	.service-list hgroup h3 {
		letter-spacing: -1px;
	}
	.service-list hgroup p {
		font-size: 11px;
		letter-spacing: -1.5px;
	}
	.service-list li > p {
		margin-bottom: 0;
		width: calc((100% / 4) * 3 - 16px);
		height: 5em;
	}
	.service-list > p span {
		display: inline;
	}
}



/* 各サービスのご紹介 */
.introduction {
	margin-bottom: 40px;
}

.introduction h2 {
	padding: 4px 0;
	background: var(--color-housecom-blue);
	color: #fff;
	font-size: 28px;
	font-weight: bold;
	text-align: center;
}

.introduction h3 {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
	border-bottom: 2px solid var(--color-housecom-blue);
	font-size: 20px;
	font-weight: bold;
}

.introduction h3 span {
	margin-right: 8px;
	font-size: 32px;
	color: var(--color-housecom-blue);
}

.introduction_recommend {
	margin-bottom: 24px;
}

.introduction_recommend p {
	position: relative;
	margin-bottom: 24px;
	padding: 6px 0;
	width: 140px;
	border-radius: 4px;
	background: var(--color-housecom-green);
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}

.introduction_recommend p::after {
	display: block;
	position: absolute;
	left: 16px;
	bottom: -10px;
	width: 0;
	height: 0;
	border-top: 10px solid var(--color-housecom-green);
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
	content: '';
}

.introduction_recommend ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.introduction_recommend li {
	color: var(--color-housecom-blue);
	font-size: 18px;
	font-weight: bold;
	text-decoration: underline;
}

@media screen and (min-width:1024px) {
	.introduction {
		margin-bottom: 64px;
	}
	.introduction h3 {
		margin-bottom: 32px;
		font-size: 24px;
	}
	.introduction h3 span {
		font-size: 48px;
	}
	.introduction_recommend {
		display: flex;
		flex-flow: row wrap;
		align-items: center;
		gap: 16px;
	}
	.introduction_recommend p {
		display: flex;
		flex-direction: column;
		justify-content: center;
		margin-bottom: 0;
		width: 100px;
		height: 100px;
		transform: rotate(-15deg);
		border-radius: 50px;
		font-size: 20px;
	}
	.introduction_recommend p::after {
		display: none;
	}
	.introduction_recommend ul {
		margin-top: 0;
	}
}

.introduction h4 {
	margin-bottom: 16px;
	color: var(--color-housecom-blue);
	font-size: 20px;
	font-weight: bold;
}

.introduction h4 span {
	display: block;
}

.introduction hr {
	display: block;
	margin: 40px 0 24px;
	border: 0;
	border-bottom: 1px solid var(--color-grey-pale);
}

.introduction_word {
	margin: 16px 0;
}

.introduction_word dt {
	font-weight: bold;
}

.introduction_word dd:has(+ dt) {
	margin-bottom: 8px;
}

.introduction div:has(> img) {
	margin-bottom: 32px;
		text-align: center;
}

.introduction_point {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	position: relative;
	margin: 24px 0;
	padding-left: 32px;
	color: var(--color-link-cv);
	font-size: 16px;
	font-weight: bold;
}

.introduction_point::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 24px;
	height: 24px;
	border: 3px solid var(--color-link-cv);
	content: '';
}

.introduction_point::after {
	position: absolute;
	top: -4px;
	left: 5px;
	color: var(--color-link-cv);
	font-family: 'icomoon';
	font-size: 24px;
	line-height: 1;
	text-shadow: 2px 2px 0 #fff, -2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff;
	content: "\e94b";
}

@media screen and (min-width:1024px) {
	.introduction h4 {
		font-size: 24px;
	}
	.introduction h4 span {
		display: inline;
	}
	.introduction_point {
		font-size: 24px;
	}
	.introduction_point::before {
		top: 4px;
	}
	.introduction_point::after {
		top: 0;
	}
}



/* 値段（共通） */
.price {
	margin: 0 auto;
	padding: 16px;
	width: 100%;
	max-width: 750px;
	border: 2px solid var(--color-housecom-blue);
	background: #f1f8fc;
}

.price:has(.price_list) {
	max-width: none;
}

.price_title {
	display: flex;
	flex-direction: column;
	gap: 0 8px;
	font-size: 24px;
	font-weight: bold;
}

.price_title:has(+ .price_list) {
	margin-bottom: 16px;
}

.price_title:has(.price_title_cleaning) {
	flex-flow: row wrap;
	align-items: flex-end;
}

.price_title span {
	font-size: 16px;
}

.price_title_note,
.price_title_cleaning {
	font-weight: normal;
}

.price_yen {
	margin: 0;
	font-size: 28px;
	font-weight: bold;
}

.price_yen:has(+ *) {
	margin-bottom: 8px
}

.price_yen + * {
	margin-top: 8px;
}

.price_note {
	display: block;
	color: #ff0000;
	font-size: 14px;
	font-weight: bold;
}

.price ul li.note {
	font-weight: bold;
}

@media screen and (min-width:1024px) {
	.price {
		display: flex;
		flex-flow: row wrap;
		justify-content: space-between;
		align-items: center;
		padding: 24px;
	}
	.price_title {
		flex-flow: row wrap;
		align-items: center;
		gap: 8px;
		/* width: 50%; */
	}
	.price_title span:not(.price_title_note):not(.price_title_cleaning) {
		width: 100%;
	}
}



/* 表組み要素 */
.price_list {
	margin: 0 auto;
	width: 100%;
	border-top: 1px solid var(--color-grey-pale);
	font-size: 16px;
	text-align: center;
}

.price_list dl {
	border-left: 1px solid var(--color-grey-pale);
	border-right: 1px solid var(--color-grey-pale);
}

.price_list .head {
	display: none;
}

.price_list dt {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4px;
	padding: 12px;
	background: var(--color-housecom-blue-light);
}

.price_list dd {
	padding: 12px;
	border-bottom: 1px solid var(--color-grey-pale);
	background: #fff;
}

.price_list dd span {
	font-size: 12px;
	font-weight: normal;
}

.price_list div:not(.head) dd {
	font-weight: bold;
}

@media screen and (min-width:1024px) {
	.price_list {
		display: flex;
		flex-direction: column;
		gap: 16px;
		border: none;
	}
	.price_list dl {
		display: flex;
		flex-flow: row wrap;
		border: 1px solid var(--color-grey-pale);
		border-right: none;
	}
	.price_list div {
		border-right: 1px solid var(--color-grey-pale);
	}
	.price_list .head {
		display: block;
		width: 16%;
	}
	.price_list dt {
		border-bottom: 1px solid var(--color-grey-pale);
	}
	.price_list dt > span {
		display: none;
	}
	.price_list dd {
		border-bottom: none;
	}
	.price_list:not(:has(.head)) dt {
		width: calc(100% / 6);
		border-bottom: none;
	}
	.price_list:not(:has(.head)) dd {
		width: calc((100% / 6) * 5);
		text-align: left;
	}
	.price_list_four div:not(.head) {
		width: calc((100% - 16%) / 4);
	}
	.price_list_five div:not(.head) {
		width: calc((100% - 16%) / 5);
	}
}



/* セット料金 */
.set-price {
	position: relative;
	padding: 32px 16px 16px;
	border: 2px solid var(--color-housecom-blue);
}

.set-price h2 {
	position: absolute;
	top: -20px;
	left: 0;
	width: 100%;
	text-align: center;
}

.set-price h2 span {
	padding: 0 16px;
	background: #fff;
	color: var(--color-housecom-blue);
	font-size: 28px;
	font-weight: bold;
}

.set-price ul {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.set-price li p {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 8px;
	color: var(--color-housecom-blue);
	font-size: 16px;
	font-weight: bold;
}

.set-price li > p span {
	display: block;
}

.set-price li > p .set-price_name {
	color: var(--color-black);
}

.set-price li > p .set-price_advantage {
	color: #ff0000;
}

@media screen and (min-width:1024px) {
	.set-price {
		padding: 40px 24px 24px;
	}
	.set-price li p {
		flex-flow: row wrap;
	}
	.set-price .price_list:not(:has(.head)) div {
		display: flex;
		align-items: center;
		flex-flow: row wrap;
		width: 100%;
	}
}