@charset "UTF-8";
body {
	padding-top: 110px;
	min-width: 375px;
}
@media screen and (max-width: 750px) {
	body {
		padding-top: 60px;
		font-size: 14px;
	}
}

main * {
	box-sizing: border-box;
	letter-spacing: 0em;
}

img {
	max-width: 100%;
	vertical-align: top;
}

ul, ol, dl {
	list-style: none;
	margin: 0;
	padding: 0;
}

a {
	color: #7ab1c3;
	transition: all 0.1s ease;
}
a:hover {
	color: #000000;
}

footer a:hover {
	color: #ffffff;
}

.u-attention {
	font-weight: normal;
	font-style: normal;
	color: #b72424;
}

.u-bold {
	font-weight: bold;
	font-style: normal;
}

.u-text-left {
	text-align: left;
}

.u-text-right {
	text-align: right;
}

.u-marker {
	background: linear-gradient(transparent 70%, #fff284 70%);
}

.l-other {
	padding-top: 120px;
	padding-bottom: 120px;
}
@media screen and (max-width: 750px) {
	.l-other {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

.l-contents {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	width: 1000px;
}
@media screen and (max-width: 750px) {
	.l-contents {
		padding-left: 25px;
		padding-right: 25px;
		width: auto;
	}
}

/********** header **********/
.header {
	position: fixed;
	top: 0;
	width: 100%;
	height: 90px;
}
@media screen and (max-width: 750px) {
	.header {
		height: 60px;
	}
}

.menuButton {
	top: 10px;
	border: 0;
	background: url(../images/common/menu-black.png) no-repeat center/100%;
	outline: none;
}
@media screen and (max-width: 750px) {
	.menuButton {
		top: 10px;
	}
}
.menuButton:before, .menuButton:after {
	transition: all 0.2s ease;
	background: #000000;
}
.menuButton:before {
	top: 0;
}
.menuButton:after {
	bottom: 0;
}
.menuButton.is-on {
	background: none;
}
.menuButton.is-on:before {
	top: 50%;
	left: 10px;
	width: 80%;
	transform: rotate(-45deg);
}
@media screen and (max-width: 750px) {
	.menuButton.is-on:before {
		left: 4px;
	}
}
.menuButton.is-on:after {
	top: 50%;
	left: 10px;
	width: 80%;
	transform: rotate(45deg);
}
@media screen and (max-width: 750px) {
	.menuButton.is-on:after {
		left: 4px;
	}
}

.main-navi {
	box-sizing: border-box;
	overflow-y: scroll;
	position: fixed;
	top: 0;
	right: -100%;
	height: 100%;
	z-index: 1000;
	padding-top: 90px;
	padding-left: 30px;
	padding-right: 40px;
	width: 390px;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
	font-weight: 400;
	background: #ffffff;
	transition: all 0.3s ease;
}
@media screen and (max-width: 750px) {
	.main-navi {
		padding-top: 60px;
		padding-left: 25px;
		padding-right: 25px;
		width: 100%;
	}
}
.main-navi.is-on {
	right: -20px;
}
@media screen and (max-width: 750px) {
	.main-navi.is-on {
		right: 0;
		width: 100%;
	}
}

.help-navi-list {
	margin-bottom: 30px;
	font-size: 16px;
	line-height: 60px;
}
@media screen and (max-width: 750px) {
	.help-navi-list {
		font-size: 15px;
	}
}
.help-navi-list a {
	display: block;
	color: #000000;
	text-decoration: none;
}
.help-navi-list a:hover {
	text-decoration: underline;
}

.main-navi-list {
	line-height: 55px;
	font-size: 16px;
}
@media screen and (max-width: 750px) {
	.main-navi-list {
		font-size: 15px;
	}
}
.main-navi-list a {
	display: block;
	color: #000000;
	text-decoration: none;
}
.main-navi-list a:hover {
	text-decoration: underline;
}
.main-navi-list.is-main {
	border-top: 1px solid #d6d6d6;
	margin-bottom: 15px;
	line-height: 65px;
}
.main-navi-list.is-main .main-navi-list__item {
	border-bottom: 1px solid #d6d6d6;
}

.main-navi-contact {
	margin-top: 45px;
	padding-bottom: 90px;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
	text-align: center;
}

.main-navi-contact__tel {
	font-size: 40px;
	line-height: 1;
}

.main-navi-contact__open {
	font-size: 14px;
}

.main-navi-contact__button {
	margin-top: 15px;
	font-size: 16px;
}
.main-navi-contact__button a {
	box-sizing: border-box;
	display: inline-block;
	padding: 20px;
	width: 240px;
	border: 1px solid #000000;
	color: #000000;
	text-decoration: none;
	transition: all 0.1s ease;
}
.main-navi-contact__button a:hover {
	background: #000000;
	color: #ffffff;
}

.main-navi-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
	opacity: 0;
}
.main-navi-overlay.is-on {
	animation: overlay 0.2s ease forwards;
	display: block;
}

@keyframes overlay {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.fix-logo {
	position: fixed;
	top: 400px;
	right: 63px;
}
@media screen and (max-width: 750px) {
	.fix-logo {
		display: none;
	}
}

.fix-scroll {
	position: fixed;
	top: 800px;
	right: 63px;
	cursor: pointer;
}
@media screen and (max-width: 750px) {
	.fix-scroll {
		display: none;
	}
}
.fix-scroll:before {
	content: "";
	width: 2px;
	height: 25px;
	background: #000000;
	left: calc(50% - 1px);
	top: -35px;
	position: absolute;
	transition: height 0.4s ease-out, top 0.4s ease-out;
}
.fix-scroll:hover:before {
	height: 45px;
	top: -55px;
}

.c-header-title {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 300px;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
	font-weight: 400;
	background: #eeeeee;
	color: #ffffff;
}
@media screen and (max-width: 750px) {
	.c-header-title {
		height: 151px;
		background-size: cover;
	}
}
.c-header-title.is-about {
	background: url(../images/about/about-head-bg.jpg) no-repeat center center;
	background-size: cover;
}
@media screen and (max-width: 750px) {
	.c-header-title.is-about {
		height: 202px;
	}
}
@media screen and (max-width: 750px) {
	.c-header-title.is-about img {
		width: 271px;
	}
}
.c-header-title.is-guarantee {
	background: url(../images/guarantee/guarantee-head-bg.jpg) no-repeat center center;
	background-size: cover;
}
.c-header-title.is-process {
	background: url(../images/process/process-head-bg.jpg) no-repeat center center;
	background-size: cover;
}
.c-header-title.is-order {
	background: url(../images/order/order-head-bg.jpg) no-repeat center center;
	background-size: cover;
}

.c-header-title__main {
	display: block;
	margin-bottom: 5px;
	font-size: 50px;
	line-height: 1;
}
@media screen and (max-width: 750px) {
	.c-header-title__main {
		font-size: 27px;
		line-height: 1.18;
	}
}

.c-header-title__sub {
	font-family: "Old Standard TT", serif;
	font-size: 20px;
	letter-spacing: 0em;
}
@media screen and (max-width: 750px) {
	.c-header-title__sub {
		font-size: 11px;
	}
}

.c-title-main {
	font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
	font-weight: 400;
	text-align: center;
}
.c-title-main.is-other {
	margin-bottom: 60px;
}
@media screen and (max-width: 750px) {
	.c-title-main.is-other {
		margin-bottom: 45px;
	}
}

.c-title-main__main {
	display: block;
	margin-bottom: 5px;
	font-size: 45px;
	line-height: 1;
}
@media screen and (max-width: 750px) {
	.c-title-main__main {
		font-size: 27px;
		line-height: 1.18;
	}
}

.c-title-main__sub {
	font-family: "Old Standard TT", serif;
	font-size: 17px;
	letter-spacing: 0em;
}
@media screen and (max-width: 750px) {
	.c-title-main__sub {
		font-size: 11px;
	}
}

.c-table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

.c-table__th {
	padding: 25px 20px;
	width: 180px;
	border-top: 1px solid #acacac;
	border-bottom: 1px solid #acacac;
	font-size: 18px;
	font-weight: 400;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
	text-align: left;
}
@media screen and (max-width: 750px) {
	.c-table__th {
		padding: 15px;
		font-size: 14px;
		width: 90px;
	}
}

.c-table__td {
	padding: 25px 20px 25px 0;
	border-top: 1px solid #acacac;
	border-bottom: 1px solid #acacac;
	font-size: 18px;
	font-weight: 400;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
}
@media screen and (max-width: 750px) {
	.c-table__td {
		padding: 15px 0 15px 0;
		font-size: 14px;
	}
}

.p-about-fv__top {
	overflow: hidden;
	padding-top: 53px;
	height: 690px;
	background: #ab1b1b;
	/* Old browsers */
	/* FF3.6-15 */
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg, #ab1b1b 0%, #e78006 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ab1b1b", endColorstr="#e78006",GradientType=1 );
	/* IE6-9 fallback on horizontal gradient */
}
@media screen and (max-width: 750px) {
	.p-about-fv__top {
		padding-top: 30px;
		height: 475px;
	}
}

.p-about-fv__title01 {
	margin-left: auto;
	margin-right: auto;
	margin-top: 0;
	margin-bottom: 45px;
	padding-top: 17px;
	height: 80px;
	width: 700px;
	background: #ffffff;
	transform: skewX(-30deg);
	text-align: center;
}
@media screen and (max-width: 750px) {
	.p-about-fv__title01 {
		margin-bottom: 35px;
		padding-top: 12px;
		height: 48px;
		width: 330px;
	}
}
.p-about-fv__title01 img {
	transform: skewX(30deg);
}
@media screen and (max-width: 750px) {
	.p-about-fv__title01 img {
		width: 220px;
	}
}

.p-about-fv__title02 {
	margin: 0;
	text-align: center;
}
@media screen and (max-width: 750px) {
	.p-about-fv__title02 img {
		width: 125px;
	}
}

.p-about-fv__model01 {
	position: absolute;
	top: -25px;
	left: 0px;
}
@media screen and (max-width: 750px) {
	.p-about-fv__model01 {
		top: -5px;
		left: calc(50% - 150px);
		transform: translateX(-50%);
	}
	.p-about-fv__model01 img {
		width: 175px;
	}
}

.p-about-fv__model02 {
	position: absolute;
	top: -25px;
	right: -15px;
}
@media screen and (max-width: 750px) {
	.p-about-fv__model02 {
		top: -5px;
		right: calc(50% - 160px);
		transform: translateX(50%);
	}
	.p-about-fv__model02 img {
		width: 165px;
	}
}

.p-about-fv__bottom {
	background: #d6a800;
	color: #ffffff;
	text-align: center;
}

.p-about-fv__title03 {
	margin: 0;
	padding: 20px 0;
}
@media screen and (max-width: 750px) {
	.p-about-fv__title03 img {
		width: 320px;
	}
}

.p-about-fv__monstar01 {
	position: absolute;
	top: -290px;
	left: 5px;
}
@media screen and (max-width: 750px) {
	.p-about-fv__monstar01 {
		top: -140px;
		left: calc(50% - 100px);
		transform: translateX(-50%);
	}
	.p-about-fv__monstar01 img {
		width: 165px;
	}
}

.p-about-fv__monstar02 {
	position: absolute;
	top: -220px;
	right: -60px;
}
@media screen and (max-width: 750px) {
	.p-about-fv__monstar02 {
		top: -105px;
		right: calc(50% - 90px);
		transform: translateX(50%);
	}
	.p-about-fv__monstar02 img {
		width: 195px;
	}
}

/***** クリーニングモンスターのこだわり *****/
.p-about-feature {
	padding-top: 120px;
	padding-bottom: 105px;
	background: url(../images/common/bg-line01.gif) repeat;
}
@media screen and (max-width: 750px) {
	.p-about-feature {
		padding-top: 60px;
		padding-bottom: 50px;
	}
}

.p-about-feature-list {
	margin-top: 85px;
}
@media screen and (max-width: 750px) {
	.p-about-feature-list {
		margin-top: 30px;
	}
}

.p-about-feature-list__item {
	margin-bottom: 70px;
}
@media screen and (max-width: 750px) {
	.p-about-feature-list__item {
		margin-bottom: 30px;
	}
}

.p-about-feature-list__title {
	margin-bottom: 15px;
	font-size: 28px;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
	color: #b72424;
}
@media screen and (max-width: 750px) {
	.p-about-feature-list__title {
		margin-bottom: 10px;
		font-size: 20px;
	}
}

.p-about-feature-list__body {
	margin-top: 0;
	font-size: 18px;
	line-height: 1.67;
}

.p-about-feature-images {
	display: flex;
	flex-wrap: wrap;
	margin-top: 105px;
}
@media screen and (max-width: 750px) {
	.p-about-feature-images {
		margin-top: 40px;
	}
}

.p-about-feature-images__item {
	position: relative;
	width: 50%;
}

.p-about-feature-images__icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	line-height: 35px;
	font-size: 20px;
	font-weight: bold;
	font-family: "Oswald", sans-serif;
	font-style: italic;
	background: #b72424;
	color: #ffffff;
	text-align: center;
}
@media screen and (max-width: 750px) {
	.p-about-feature-images__icon {
		width: 60px;
		line-height: 20px;
		font-size: 13px;
	}
}

/********** 会社概要 **********/
.p-about-company {
	padding-top: 115px;
	padding-bottom: 130px;
	background: #f6f6f6;
}
@media screen and (max-width: 750px) {
	.p-about-company {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

.p-about-company-table {
	margin-top: 45px;
	margin-left: auto;
	margin-right: auto;
	width: 800px;
}
@media screen and (max-width: 750px) {
	.p-about-company-table {
		margin-top: 30px;
		margin-left: auto;
		margin-right: auto;
		width: 100%;
	}
}

.p-compensation-table {
	margin-left: auto;
	margin-right: auto;
	width: 800px;
}
@media screen and (max-width: 750px) {
	.p-compensation-table {
		width: auto;
	}
}

.p-question__title {
	margin-top: 0;
	margin-bottom: 30px;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
	font-size: 30px;
	line-height: 1.33;
}

.p-question-wrap {
	margin-bottom: 90px;
}

.p-qa-list__item {
	margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
	.p-qa-list__item {
		margin-bottom: 20px;
	}
}

.p-qa-list__head {
	position: relative;
	margin: 0;
	padding: 15px 75px 12px 50px;
	min-height: 60px;
	font-size: 20px;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
	background: url(../images/common/icon-q-white.png) no-repeat left 18px top 15px #000000;
	background-size: 20px 30px;
	color: #ffffff;
	font-feature-settings: "palt";
	letter-spacing: 0;
	cursor: pointer;
	transition: all 0.1s ease;
}
@media screen and (max-width: 750px) {
	.p-qa-list__head {
		padding: 7px 65px 4px 55px;
		min-height: 40px;
		font-size: 17px;
		background-position: left 22px top 10px;
		background-size: 13px 19px;
	}
}
.p-qa-list__head:hover {
	background-color: #222222;
}

.p-qa-list__title {
	margin: 0;
}

.js-toggle-contents {
	display: none;
}

.p-qa-list__body {
	margin: 0;
	padding: 35px 25px 35px 50px;
	border: 1px solid #000000;
	background: url(../images/common/icon-a.png) no-repeat left 15px top 35px;
	background-size: 25px 20px;
	letter-spacing: 0;
}
@media screen and (max-width: 750px) {
	.p-qa-list__body {
		padding: 25px 30px 25px 55px;
		background-position: left 18px top 25px;
		background-size: 18px 16px;
	}
}
.p-qa-list__body:last-child {
	margin-bottom: 0;
}

.p-qa-list__button {
	overflow: hidden;
	text-indent: -9999px;
	position: absolute;
	top: 0px;
	right: 0px;
	width: 66px;
	height: 60px;
	border: 0;
	background: transparent;
	cursor: pointer;
	transition: all 0.1s ease;
	outline: none;
}
@media screen and (max-width: 750px) {
	.p-qa-list__button {
		width: 60px;
		height: 40px;
	}
}
.p-qa-list__button.is-open .p-qa-list__button-line1 {
	transform: rotate(0deg);
}

.p-qa-list__button-line1 {
	position: absolute;
	top: 29px;
	left: 20px;
	display: block;
	width: 25px;
	height: 2px;
	background: #ffffff;
	transition: all 0.2s ease;
	transform: rotate(-90deg);
}
@media screen and (max-width: 750px) {
	.p-qa-list__button-line1 {
		top: 20px;
		left: 20px;
		width: 18px;
		height: 1px;
	}
}

.p-qa-list__button-line2 {
	position: absolute;
	top: 29px;
	left: 20px;
	display: block;
	width: 25px;
	height: 2px;
	background: #ffffff;
}
@media screen and (max-width: 750px) {
	.p-qa-list__button-line2 {
		top: 20px;
		left: 20px;
		width: 18px;
		height: 1px;
	}
}

.p-guarantee-fv {
	padding-top: 120px;
	height: 830px;
	background: #cd646c;
	/* Old browsers */
	/* FF3.6-15 */
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(60deg, #cd646c 0%, #e78e24 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#cd646c", endColorstr="#e78e24",GradientType=1 );
	/* IE6-9 fallback on horizontal gradient */
	color: #ffffff;
}
@media screen and (max-width: 750px) {
	.p-guarantee-fv {
		padding-top: 40px;
		padding-bottom: 30px;
		height: auto;
	}
}

.p-guarantee-fv__model01 {
	position: absolute;
	top: 75px;
	left: -40px;
}
@media screen and (max-width: 750px) {
	.p-guarantee-fv__model01 {
		position: static;
		margin-top: 25px;
		text-align: center;
	}
	.p-guarantee-fv__model01 img {
		width: 330px;
	}
}

.p-guarantee-fv__text {
	margin-top: 50px;
	margin-left: 555px;
}
@media screen and (max-width: 750px) {
	.p-guarantee-fv__text {
		margin-top: 25px;
		margin-left: 0;
		text-align: center;
	}
	.p-guarantee-fv__text img {
		width: 330px;
	}
}

.p-guarantee-fv__body {
	margin-top: 45px;
	line-height: 1.67;
	font-size: 18px;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
	letter-spacing: 0.075em;
}
@media screen and (max-width: 750px) {
	.p-guarantee-fv__body {
		margin-top: 15px;
		font-size: 14px;
		text-align: left;
	}
}

.p-guarantee-promise {
	padding-top: 100px;
	padding-bottom: 100px;
}
@media screen and (max-width: 750px) {
	.p-guarantee-promise {
		padding-top: 65px;
		padding-bottom: 60px;
	}
}

.p-guarantee-promise__title {
	position: relative;
	margin-top: 0;
	margin-bottom: 0;
	padding-left: 215px;
	line-height: 96px;
	font-size: 54px;
	font-weight: 400;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
	background: #b72424;
	color: #ffffff;
	letter-spacing: 0;
	font-feature-settings: "palt";
}
@media screen and (max-width: 750px) {
	.p-guarantee-promise__title {
		margin-bottom: 30px;
		padding-left: 145px;
		padding-top: 7px;
		padding-bottom: 7px;
		line-height: 1.1;
		font-size: 25px;
	}
}
.p-guarantee-promise__title .big {
	font-size: 72px;
}
@media screen and (max-width: 750px) {
	.p-guarantee-promise__title .big {
		font-size: 30px;
	}
}
.p-guarantee-promise__title img {
	position: absolute;
	left: 30px;
	bottom: 0;
	width: 155px;
}
@media screen and (max-width: 750px) {
	.p-guarantee-promise__title img {
		left: 13px;
		width: 110px;
	}
}

.p-guarantee-promise-list__item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding-top: 60px;
	padding-bottom: 60px;
	padding-right: 55px;
}
@media screen and (max-width: 750px) {
	.p-guarantee-promise-list__item {
		display: block;
		padding-top: 25px;
		padding-bottom: 35px;
		padding-right: 0;
	}
}
.p-guarantee-promise-list__item:nth-child(even) {
	background: #fbf2f2;
}
@media screen and (max-width: 750px) {
	.p-guarantee-promise-list__item:nth-child(even) {
		padding-left: 15px;
		padding-right: 15px;
	}
}

.p-guarantee-promise-list__num {
	padding-left: 5px;
	width: 145px;
	font-size: 35px;
	font-weight: bold;
	font-family: "Oswald", sans-serif;
	text-align: center;
	letter-spacing: -0.05em;
}
@media screen and (max-width: 750px) {
	.p-guarantee-promise-list__num {
		margin-bottom: 20px;
		padding-left: 0;
		width: auto;
		font-size: 26px;
	}
}
.p-guarantee-promise-list__num span {
	font-size: 60px;
}
@media screen and (max-width: 750px) {
	.p-guarantee-promise-list__num span {
		font-size: 45px;
	}
}

.p-guarantee-promise-list__text {
	flex: 1;
	padding-left: 30px;
	border-left: 2px solid #4c4c4c;
}
@media screen and (max-width: 750px) {
	.p-guarantee-promise-list__text {
		padding-left: 0;
		border-left: 0;
	}
}

.p-guarantee-promise-list__title {
	margin-top: 0;
	margin-bottom: 20px;
	line-height: 1.27;
	font-size: 30px;
	font-weight: 400;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
	letter-spacing: 0.075em;
}
@media screen and (max-width: 750px) {
	.p-guarantee-promise-list__title {
		margin-bottom: 15px;
		font-size: 20px;
	}
}

.p-guarantee-promise-list__body {
	margin-top: 0;
	margin-bottom: 0;
	line-height: 1.63;
	letter-spacing: 0.075em;
}

.p-guarantee-promise-list__info {
	margin-top: 25px;
}
@media screen and (max-width: 750px) {
	.p-guarantee-promise-list__info li {
		margin-left: 1em;
		text-indent: -1em;
	}
}

/*********** 安心保証 **********/
.p-safety {
	padding-top: 120px;
	padding-bottom: 105px;
	background: url(../images/guarantee/guarantee-safety-bg.jpg) no-repeat center top #f5f4f1;
	background-size: contain;
}
@media screen and (max-width: 750px) {
	.p-safety {
		padding-top: 60px;
		padding-bottom: 60px;
		background-size: 700px 356px;
	}
}

.p-safety-index {
	margin-bottom: 100px;
}
@media screen and (max-width: 750px) {
	.p-safety-index {
		margin-bottom: 30px;
	}
}

.p-safety-list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 75px;
}
@media screen and (max-width: 750px) {
	.p-safety-list {
		display: block;
		margin-top: 0;
	}
}

.p-safety-list__item {
	position: relative;
	padding-top: 30px;
	padding-bottom: 45px;
	border-right: 1px solid #959595;
	width: 33.3333%;
}
@media screen and (max-width: 750px) {
	.p-safety-list__item {
		padding-top: 30px;
		padding-bottom: 30px;
		border-right: 0;
		border-bottom: 1px solid #959595;
		width: auto;
	}
}
.p-safety-list__item:last-child {
	border: 0;
}

.p-safety-list__title {
	position: relative;
	margin: 0 auto;
	padding-top: 50px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: #b72424;
	color: #ffffff;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
	font-size: 27px;
	font-weight: 400;
	line-height: 1.14;
	text-align: center;
	letter-spacing: -0.05em;
	font-feature-settings: "palt";
}
@media screen and (max-width: 750px) {
	.p-safety-list__title {
		padding-top: 37px;
		width: 155px;
		height: 155px;
		font-size: 18px;
	}
}
.p-safety-list__title .big {
	font-size: 35px;
	font-style: normal;
}
@media screen and (max-width: 750px) {
	.p-safety-list__title .big {
		font-size: 25px;
	}
}
.p-safety-list__title.is-02 {
	line-height: 1.4;
}
.p-safety-list__title.is-03 {
	padding-top: 70px;
	line-height: 1.4;
}
@media screen and (max-width: 750px) {
	.p-safety-list__title.is-03 {
		margin-top: 15px;
		padding-top: 50px;
	}
}

.p-safety-list__body {
	margin-top: 30px;
	margin-bottom: 0;
	font-size: 18px;
	text-align: center;
	letter-spacing: 0em;
}
@media screen and (max-width: 750px) {
	.p-safety-list__body {
		margin-top: 15px;
		font-size: 14px;
	}
}

.p-safety-list__attention {
	margin-top: 15px;
	font-size: 14px;
	text-align: right;
	letter-spacing: 0;
}
@media screen and (max-width: 750px) {
	.p-safety-list__attention {
		margin-top: 0;
		font-size: 12px;
		text-align: left;
	}
}

.p-safety-list__monstar01 {
	position: absolute;
	top: 20px;
	left: -62px;
}
@media screen and (max-width: 750px) {
	.p-safety-list__monstar01 {
		top: 23px;
		left: -37px;
		width: 50px;
	}
}

.p-safety-list__monstar02 {
	position: absolute;
	top: 135px;
	right: -28px;
}
@media screen and (max-width: 750px) {
	.p-safety-list__monstar02 {
		top: 105px;
		right: -13px;
		width: 45px;
	}
}

.p-safety-list__monstar03 {
	position: absolute;
	top: -35px;
	right: 20px;
}
@media screen and (max-width: 750px) {
	.p-safety-list__monstar03 {
		width: 75px;
	}
}

.p-safety-detail-wrap {
	padding: 0 40px;
	background: #ffffff;
}
@media screen and (max-width: 750px) {
	.p-safety-detail-wrap {
		padding: 10px 15px 0 15px;
	}
}

.p-safety-detail {
	padding: 75px 0 60px 0;
	border-bottom: 1px solid #959595;
}
@media screen and (max-width: 750px) {
	.p-safety-detail {
		padding: 40px 0 40px 0;
	}
}
.p-safety-detail:last-child {
	border-bottom: 0;
}

.p-safety-detail__main {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 75px;
}
@media screen and (max-width: 750px) {
	.p-safety-detail__main {
		display: block;
		margin-bottom: 0;
	}
}

.p-safety-detail__image {
	width: 460px;
}
@media screen and (max-width: 750px) {
	.p-safety-detail__image {
		margin-bottom: 15px;
		width: auto;
	}
}

.p-safety-detail__text {
	flex: 1;
	margin-left: 30px;
}
@media screen and (max-width: 750px) {
	.p-safety-detail__text {
		margin-left: 0;
	}
}

.p-safety-detail__title {
	margin-top: 0;
	margin-bottom: 30px;
	line-height: 1.25em;
	font-size: 35px;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
}
@media screen and (max-width: 750px) {
	.p-safety-detail__title {
		margin-bottom: 15px;
		line-height: 1.5em;
		font-size: 21px;
	}
}
.p-safety-detail__title .big {
	font-size: 40px;
	font-style: normal;
}
@media screen and (max-width: 750px) {
	.p-safety-detail__title .big {
		font-size: 24px;
	}
}

.p-safety-detail__attention {
	font-size: 14px;
	color: #b72424;
}
@media screen and (max-width: 750px) {
	.p-safety-detail__attention {
		font-size: 12px;
	}
}

.p-safety-detail-info {
	position: relative;
	margin-top: 75px;
	padding: 50px 50px 25px 50px;
	border: 1px solid #e78e24;
}
@media screen and (max-width: 750px) {
	.p-safety-detail-info {
		margin-top: 45px;
		padding: 35px 30px 20px 30px;
	}
}
.p-safety-detail-info.is-red {
	padding: 30px;
	border-color: #c9550f;
}
@media screen and (max-width: 750px) {
	.p-safety-detail-info.is-red {
		padding: 35px 30px 20px 30px;
	}
}
.p-safety-detail-info + .p-safety-detail-info {
	margin-top: 60px;
}
@media screen and (max-width: 750px) {
	.p-safety-detail-info + .p-safety-detail-info {
		margin-top: 45px;
	}
}

.p-safety-detail-info__title {
	display: inline-block;
	position: absolute;
	top: -23px;
	left: 50%;
	transform: translateX(-50%);
	margin: 0;
	padding-left: 40px;
	padding-right: 40px;
	line-height: 46px;
	border-radius: 23px;
	font-size: 20px;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
	font-weight: 400;
	background: #e78e24;
	color: #ffffff;
	text-align: center;
}
@media screen and (max-width: 750px) {
	.p-safety-detail-info__title {
		top: -17px;
		padding-left: 25px;
		padding-right: 25px;
		line-height: 35px;
		min-width: 270px;
		border-radius: 18px;
		font-size: 16px;
	}
}
.p-safety-detail-info__title.is-red {
	background: #c9550f;
}

.p-safety-detail-info__title-sub {
	font-weight: bold;
	text-align: center;
}
@media screen and (max-width: 750px) {
	.p-safety-detail-info__title-sub {
		margin-top: 0;
		text-align: left;
	}
}

.p-safety-detail-info__body {
	margin: 0;
	letter-spacing: 0;
	text-align: center;
}

.p-safety-detail-info__body-sub {
	margin: 0;
	font-size: 14px;
	text-align: left;
	letter-spacing: -0.025em;
}

.p-safety-detail-qa {
	margin-top: 50px;
}
@media screen and (max-width: 750px) {
	.p-safety-detail-qa {
		margin-top: 30px;
	}
}

.p-safety-detail-qa__title {
	margin: 0 0 30px 0;
	padding-left: 40px;
	font-size: 20px;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
	background: url(../images/common/icon-q.png) no-repeat left 5px top;
	background-size: 20px 30px;
	font-feature-settings: "palt";
	letter-spacing: 0;
}
@media screen and (max-width: 750px) {
	.p-safety-detail-qa__title {
		margin-bottom: 20px;
		padding-left: 30px;
		font-size: 17px;
		background-position: left 5px top 4px;
		background-size: 13px 19px;
	}
}

.p-safety-detail-qa__body {
	margin: 0 0 50px 0;
	padding-top: 5px;
	padding-left: 40px;
	background: url(../images/common/icon-a.png) no-repeat left top;
	background-size: 30px 24px;
	letter-spacing: 0;
}
@media screen and (max-width: 750px) {
	.p-safety-detail-qa__body {
		margin-bottom: 35px;
		padding-top: 0;
		padding-left: 30px;
		background-position: left top 1px;
		background-size: 18px 15px;
	}
}
.p-safety-detail-qa__body:last-child {
	margin-bottom: 0;
}

.p-safety-detail-qa__tel {
	margin-top: 20px;
	font-size: 22px;
	font-weight: bold;
	font-family: "Oswald", sans-serif;
	letter-spacing: 0;
}

.p-safety-detail-qa__open {
	font-size: 14px;
}

.test {
	margin: 0;
}

.p-order {
	padding-top: 180px;
	padding-bottom: 60px;
}
@media screen and (max-width: 750px) {
	.p-order {
		padding-top: 80px;
		padding-bottom: 30px;
	}
}

.p-order-list {
	margin-top: 60px;
}
@media screen and (max-width: 750px) {
	.p-order-list {
		margin-top: 30px;
	}
}

.p-order-list__item {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 120px;
}
@media screen and (max-width: 750px) {
	.p-order-list__item {
		display: block;
		padding-bottom: 45px;
	}
}
.p-order-list__item:not(:last-child):before {
	content: "";
	position: absolute;
	left: 54px;
	top: 0;
	width: 4px;
	height: 100%;
	background: #b72424;
}
@media screen and (max-width: 750px) {
	.p-order-list__item:not(:last-child):before {
		content: none;
	}
}

.p-order-list__num {
	position: relative;
	top: -30px;
	margin: 0;
	width: 110px;
	text-align: center;
}
@media screen and (max-width: 750px) {
	.p-order-list__num {
		position: static;
		margin-bottom: 20px;
		width: auto;
		text-align: center;
	}
}
.p-order-list__num.is-01 {
	top: -45px;
}
.p-order-list__num.is-01 img {
	width: 97px;
}
@media screen and (max-width: 750px) {
	.p-order-list__num.is-01 img {
		width: 80px;
	}
}
.p-order-list__num.is-02 {
	left: -3px;
}
.p-order-list__num.is-02 img {
	width: 83px;
}
@media screen and (max-width: 750px) {
	.p-order-list__num.is-02 img {
		width: 70px;
	}
}
.p-order-list__num.is-03 {
	right: -5px;
}
.p-order-list__num.is-03 img {
	width: 91px;
}
@media screen and (max-width: 750px) {
	.p-order-list__num.is-03 img {
		width: 78px;
	}
}
.p-order-list__num.is-04 {
	top: -35px;
}
.p-order-list__num.is-04 img {
	width: 103px;
}
@media screen and (max-width: 750px) {
	.p-order-list__num.is-04 img {
		width: 82px;
	}
}
.p-order-list__num.is-05 {
	left: -13px;
}
@media screen and (max-width: 750px) {
	.p-order-list__num.is-05 {
		margin-left: -35px;
		margin-bottom: 5px;
	}
}
.p-order-list__num.is-05 img {
	width: 101px;
}
@media screen and (max-width: 750px) {
	.p-order-list__num.is-05 img {
		width: 85px;
	}
}
.p-order-list__num.is-06 {
	top: -60px;
	right: -15px;
}
@media screen and (max-width: 750px) {
	.p-order-list__num.is-06 {
		margin-right: -20px;
	}
}
.p-order-list__num.is-06 img {
	width: 117px;
}
@media screen and (max-width: 750px) {
	.p-order-list__num.is-06 img {
		width: 98px;
	}
}

.p-order-list__image {
	margin-left: 45px;
	margin-right: 40px;
	width: 300px;
}
@media screen and (max-width: 750px) {
	.p-order-list__image {
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 20px;
		width: auto;
	}
}

.p-order-list__text {
	flex: 1;
}

.p-order-list__body {
	margin-top: 0;
	margin-bottom: 0;
}

.p-order-list__button-link {
	margin-top: 20px;
}

.p-order-list__button-link {
	display: block;
	padding: 20px 15px;
	width: 340px;
	border: 1px solid #ea970a;
	font-weight: bold;
	background: #ea970a;
	color: #ffffff;
	text-align: center;
	text-decoration: none;
	transition: all 0.1s ease;
}
@media screen and (max-width: 750px) {
	.p-order-list__button-link {
		width: auto;
	}
}
.p-order-list__button-link:hover {
	background: #ffffff;
	color: #ea970a;
}

.test {
	margin: 0;
}

.p-process {
	padding-top: 120px;
	padding-bottom: 60px;
}
@media screen and (max-width: 750px) {
	.p-process {
		padding-top: 40px;
		padding-bottom: 30px;
	}
}

.p-process-list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 150px;
}
@media screen and (max-width: 750px) {
	.p-process-list {
		display: block;
		margin-top: 30px;
	}
}

.p-process-list__item {
	position: relative;
	margin-bottom: 90px;
	width: 50%;
}
@media screen and (max-width: 750px) {
	.p-process-list__item {
		margin-bottom: 60px;
		width: auto;
	}
}
.p-process-list__item:nth-child(odd) {
	padding-right: 30px;
}
@media screen and (max-width: 750px) {
	.p-process-list__item:nth-child(odd) {
		padding-right: 0;
	}
}
.p-process-list__item:nth-child(even) {
	padding-left: 30px;
}
@media screen and (max-width: 750px) {
	.p-process-list__item:nth-child(even) {
		padding-left: 0;
	}
}
.p-process-list__item:before {
	/* ライン */
	content: "";
	position: absolute;
	top: 68px;
	left: 0;
	width: 100%;
	height: 6px;
	background: #ccc;
}
@media screen and (max-width: 750px) {
	.p-process-list__item:before {
		top: 50px;
		height: 3px;
	}
}
.p-process-list__item:nth-child(1):before {
	background: #b70c0b;
	background: linear-gradient(45deg, #b70c0b 0%, #ce3b39 100%);
}
@media screen and (max-width: 750px) {
	.p-process-list__item:nth-child(2) {
		margin-top: 85px;
	}
}
.p-process-list__item:nth-child(2):before {
	background: #ce3b39;
	background: linear-gradient(45deg, #ce3b39 0%, #e76d6b 100%);
}
.p-process-list__item:nth-child(3):before {
	background: #e56967;
	background: linear-gradient(45deg, #e56967 0%, #dc7a50 100%);
}
.p-process-list__item:nth-child(4):before {
	background: #dc7a50;
	background: linear-gradient(45deg, #dc7a50 0%, #d28b37 100%);
}
.p-process-list__item:nth-child(5):before {
	background: #d28b37;
	background: linear-gradient(45deg, #d28b37 0%, #e6784d 100%);
}
.p-process-list__item:nth-child(6):before {
	background: #e6784d;
	background: linear-gradient(45deg, #e6784d 0%, #fb6464 100%);
}

.p-process-list__num {
	margin-bottom: 65px;
	line-height: 1;
	font-size: 50px;
	font-weight: bold;
	font-family: "Oswald", sans-serif;
	letter-spacing: 0;
	text-align: center;
}
@media screen and (max-width: 750px) {
	.p-process-list__num {
		margin-bottom: 40px;
		font-size: 35px;
	}
}

.p-process-list__title {
	margin-top: 25px;
	margin-bottom: 5px;
	font-size: 28px;
	font-weight: 400;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
	color: #b72424;
}
@media screen and (max-width: 750px) {
	.p-process-list__title {
		margin-top: 15px;
		font-size: 20px;
	}
}

.p-process-list__body {
	margin: 0;
}

.p-process-list__monstar {
	position: absolute;
}
.p-process-list__monstar.is-02 {
	top: -100px;
	left: calc(50% - 135px);
	transform: translateX(-50%);
	width: 162px;
}
@media screen and (max-width: 750px) {
	.p-process-list__monstar.is-02 {
		top: -70px;
		left: calc(50% - 90px);
		width: 115px;
	}
}
.p-process-list__monstar.is-04 {
	top: -23px;
	right: calc(50% - 145px);
	transform: translateX(50%);
	width: 95px;
}
@media screen and (max-width: 750px) {
	.p-process-list__monstar.is-04 {
		top: -18px;
		right: calc(50% - 80px);
		width: 70px;
	}
}
.p-process-list__monstar.is-05 {
	top: -58px;
	right: calc(50% - 120px);
	transform: translateX(50%);
	width: 105px;
}
@media screen and (max-width: 750px) {
	.p-process-list__monstar.is-05 {
		top: -55px;
		right: calc(50% - 95px);
		width: 85px;
	}
}

.p-terms-cleaning {
	padding-bottom: 120px;
}
@media screen and (max-width: 750px) {
	.p-terms-cleaning {
		padding-bottom: 60px;
	}
}

.p-terms__intro {
	margin: 0 0 60px 0;
}
@media screen and (max-width: 750px) {
	.p-terms__intro {
		margin-bottom: 45px;
	}
}

.p-terms__title {
	margin: 0 0 30px 0;
	font-size: 20px;
	font-weight: bold;
}
@media screen and (max-width: 750px) {
	.p-terms__title {
		margin-bottom: 15px;
		font-size: 18px;
	}
}

.p-terms__body {
	margin: 0 0 30px 0;
}
@media screen and (max-width: 750px) {
	.p-terms__body {
		margin-bottom: 25px;
	}
}

.p-terms__section {
	margin: 0 0 60px 0;
}
@media screen and (max-width: 750px) {
	.p-terms__section {
		margin-bottom: 35px;
	}
}

.p-terms__image {
	margin-top: 15px;
	margin-bottom: 15px;
	text-align: center;
}