.sp {
	display: none;
}
.pc {
	display: block;
}
.row {
	width: 100%;
	max-width: 1000px;
	padding: 0 2%;
	margin: 0 auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
body {
	font-size: 1.1rem;
	line-height: 1.6rem;
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
	color: #000;
}
p {
	text-align: justify;
	margin: 0 0 2rem;
}

/* HEADER
*******************************/
header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1;
	background: rgba(255,255,255,0.9);
	z-index: 99;
}
header .row {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 1.2rem 2%;
}
header .site_id {
}
header .navigation {
	text-align: right;
}
header .navigation ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding-left: 0;
	justify-content: flex-end;
	gap: 1.4rem;
}
/*header nav ul li {
	padding: 0 0.4rem;
}*/
header nav ul li a {
	text-decoration: none;
	color: #000;
}
header h1,
header .site_id p {
	font-weight: bold;
	font-size: 1.6rem;
	margin: 0;
}
header h1::before,
header .site_id p::before {
	content: '';
	display: inline-block;
	width: 100px;
	height: 35px;
	background-image: url("../images/common/logo@2x.png");
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: contain;
	margin-bottom: -5px;
}
header h1 span,
header .site_id p span {
	font-size: 1rem;
	padding-right: 1rem;
}
.btn {
	display: none;
}
@media screen and (max-width: 767px) {
	body {
		font-size: 1rem;
	}
	.row {
		padding: 0 5%;
	}
	header .row {
		padding: 0.115rem 2% 0.4rem;
	}
	header h1,
	header .site_id p {
		font-size: 1.6rem;
		position: relative;
		margin-left: 80px;
		line-height: 1.4rem;
	}
	header h1::before,
	header .site_id p::before {
		display: block;
		position: absolute;
		top: 50%;
		right: 100%;
		transform: translateY(-50%);
		width: 80px;
		height: 28px;
	}
	header h1 span,
	header .site_id p span {
		font-size: 0.9rem;
	}
/*********************************************
ハンバーガーメニュー
**********************************************/
	.sp {
		display: block;
	}
	.pc {
		display: none;
	}
.btn {
	/* ボタンの配置位置  */
	position: fixed;
	top: 0;
	right: 16px;
	/* 最前面に */
	z-index: 10;
	/* ボタンの大きさ  */
	width: 57px;
	height: 57px;
display: block;
	border: none;
	background-color: #fba63e;
}
	.navigation button {
		padding: 1px 13px;
	}
/***** 真ん中のバーガー線 *****/
.btn-line {
	display: block;
	/* バーガー線の位置基準として設定 */
	position: relative;
	/* 線の長さと高さ */
	width: 100%;
	height: 4px;
	/* バーガー線の色 */
	background-color: #FFF;
	transition: .2s;
}
/***** 上下のバーガー線 *****/
.btn-line::before , .btn-line::after {
	content: "";
	/* 基準線と同じ大きさと色 */
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #FFF;
	transition: .5s;
}
.btn-line::before {
	/* 上の線の位置 */
	transform: translate(-16px, -10px);
}
.btn-line::after {
	/* 下の線の位置 */
	transform: translate(-16px, 10px);
}
/***** メニューオープン時 *****/
.btn-line.open {
	/* 真ん中の線を透明に */
	background-color: transparent;
}
.btn-line.open::before , .btn-line.open::after {
	content: "";
	background-color: #FFF;
	transition: .2s;
}
.btn-line.open::before {
	/* 上の線を傾ける */
	transform: translate(-16px, 0) rotate(45deg);
	/*transform: rotate(45deg);*/
}
.btn-line.open::after {
	/* 上の線を傾ける */
	transform: translate(-16px, 0) rotate(-45deg);
}
/**************** ここまで、ハンバーガーボタンのスタイリング ****************/
/**************** 以下、メニューのスタイリング ****************/
	header .navigation ul {
		justify-content: flex-start;
	}
.menu {
	/* メニューを縦に */
	display: flex;
	flex-direction: column;
	position: fixed;
	/* メニューの位置マイナス指定で画面外に */
	right: -70%;
	width: 70%;
	height: 100vh;
	background-color: rgba(0, 0, 0, .7);
	color: #efefef;
	transition: .3s;
}
.menu-list {
	/* メニューテキスト位置をリスト内中心に */
	display: flex;
	/*align-items: center;*/
	justify-content: center;
	width: 100%;
	/*height: 100%;*/
	padding-top: 1rem;
}
	.menu-list:nth-of-type(1) {
		padding-top: 2rem;
	}
.menu-list:hover {
	background-color: rgba(255, 255, 255, .5);
	color: #333;
	cursor: pointer;
	transition: .3s;
}
/***** メニューオープン時位置0にして画面内に *****/
.menu.open {
	position: absolute;
	right: 0;
	top: 57px;
}
	header nav ul li a {
		color: #FFF;
	}
}

/*******************************
 common
*******************************/
#headline {
	padding-top: 75px;
}
footer {
    box-shadow: 0px -10px 10px 0px rgba(0, 0, 0, 0.3);
    background-color: #FFF;
}
footer .row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-top: 3rem;
	padding-bottom: 3rem;
}
footer .row h2 {
	width: 100%;
	margin: 0 0 1.5rem;
	font-size: 1.5rem;
}
footer .row ul {
	list-style: none;
	padding-left: 0;
}
footer .row .office {
	width: 68%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
footer .row .office ul:nth-of-type(1) {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 66%;
}
footer .row .office ul:nth-of-type(1) li {
	width: 48%;
}
footer .row .office ul:nth-of-type(1) li:first-child {
	margin-bottom: 1.5rem;
	text-align: left;
}
footer .row .office ul:nth-of-type(1) li:first-child img {
	width: 97%;
}
footer .row .office ul:nth-of-type(1) li:nth-child(2) {
	margin-bottom: 1.5rem;
	text-align: right;
}
footer .row .office ul:nth-of-type(1) li:nth-child(2) img {
	width: 91.5%;
}
footer .row .office ul:nth-of-type(1) li:nth-child(3) img {
	width: 100%;
}
footer .row .office ul:nth-of-type(1) li:nth-child(4) {
	text-align: center;
}
footer .row .office ul:nth-of-type(1) li:nth-child(4) img {
	width: 85%;
}
footer .row .office ul:last-child {
	width: 34%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4%;
	box-sizing: border-box;
}
footer .row .office ul:last-child li {
	width: 100%;
}
footer .row .comp {
	width: 32%;
	padding-left: 4%;
	box-sizing: border-box;
}

/*******************************
 Home
*******************************/
.home #headline .row {
	width: 100%;
	max-width: none;
	height: 75vh;
	background-image: url("../images/home/home_headline_bg@2x.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.home #headline .row figure {
	position: absolute;
	width: 80%;
	max-width: 900px;
	top: 30%;
	left: 50%;
	transform: translateX(-50%);
}
.home #headline .row p {
	text-align: center;
	font-weight: bold;
	font-size: 1.3rem;
	line-height: 2rem;
	position: absolute;
	bottom: 5%;
	left: 0;
	margin: 0;
	width: 100%;
	text-shadow: 
       3px  3px 7px #ffffff,
      -3px  3px 7px #ffffff,
       3px -3px 7px #ffffff,
      -3px -3px 7px #ffffff,
       3px  0px 7px #ffffff,
       0px  3px 7px #ffffff,
      -3px  0px 7px #ffffff,
       0px -3px 7px #ffffff;
}
.home .googlemap {
	width: 100%;
	padding-top: 45%;
	position: relative;
}
.home .googlemap iframe {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}
.home #intro {
	background-image: url("../images/home/home_bg@2x.png"),linear-gradient(150deg, rgba(255, 255, 255, 1), rgba(255, 255, 233, 1));
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100%;
}
.home #intro .row {
	padding: 5rem 2%;
}
.home #intro .row h2 {
	text-align: center;
	color: #f63;
	font-size: 2rem;
	font-weight: 900;
	margin: 0 0 2rem;
}
.home #intro .row p {
	text-align: center;
}
.home #intro .row table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 5rem;
}
.home #intro .row table th,
.home #intro .row table td {
	border: 1px solid #000;
	padding: 0.6rem;
}
.home #intro .row table th {
	background-color: #fba63e;
	font-size: 1.3rem;
}
.home #intro .row table td {
	text-align: left;
	vertical-align: top;
}
.home #intro .row table tr:nth-of-type(5) td span {
	font-size: 1.5rem;
	font-weight: 500;
}
.home #intro .row table tr:nth-of-type(n+11):nth-of-type(-n+14) td {
	border-bottom: none;
	border-top: none;
}
.home #intro .row table tr:nth-of-type(11) td {
	padding-bottom: 0;
}
.home #intro .row table tr:nth-of-type(n+12):nth-of-type(-n+14) td {
	padding-top: 0;
	padding-bottom: 0;
}
.home #intro .row table tr:nth-of-type(15) td {
	border-top: none;
	padding-top: 0;
}
.home #intro .row table td ol {
	list-style: none;
	padding-left: 0.5rem;
	margin: 0.5rem 0;
}
.home #intro .row table td ol li {
	text-indent: -1.2rem;
	padding-left: 1.4rem;
}
@media screen and (max-width:767px) {
	#headline {
		padding-top: 57px;
	}
	footer .row {
		padding: 2rem 5%;
	}
	footer .row h2 {
		font-size: 1.3rem;
		margin-bottom: 1.5rem;
	}
	footer .row {
		justify-content: center;
		flex-direction: column;
		align-items: center;
	}
	footer .row .office {
		width: 200px;
		flex-direction: column;
	}
	footer .row .office ul:nth-of-type(1) {
		width: 100%;
		margin-bottom: 1.5rem;
	}
	footer .row .office ul:nth-of-type(1) li {
		width: 100%;
	}
	footer .row .office ul:nth-of-type(1) li:nth-child(1),
	footer .row .office ul:nth-of-type(1) li:nth-child(2),
	footer .row .office ul:nth-of-type(1) li:nth-child(3) {
		margin-bottom: 1rem;
	}
	footer .row .office ul:nth-of-type(1) li:nth-child(1) img,
	footer .row .office ul:nth-of-type(1) li:nth-child(2) img,
	footer .row .office ul:nth-of-type(1) li:nth-child(3) img,
	footer .row .office ul:nth-of-type(1) li:nth-child(4) img {
		width: 100%;
	}
	footer .row .office ul:last-child {
		width: 200px;
		margin-top: 0;
		margin-bottom: 2rem;
	}
	footer .row .comp {
		width: 200px;
		padding-left: 0;
		border-left: none;
	}
	.home #headline .row {
		height: 60vh;
	}
	.home #headline .row p {
		font-size: 1.2rem;
		line-height: 1.7rem;
		bottom: 3%;
	}
	.home #intro .row {
		padding: 3rem 5%;
	}
	.home #intro .row h2 {
		font-size: 1.6rem;
		margin-bottom: 1.5rem;
	}
	.home #intro .row table {
		margin-bottom: 3rem;
	}
	.home #intro .row table td {
		display: block;
	}
	.home #intro .row table tr td:first-child {
		border-top: none;
		border-bottom: none;
		background-color: #fee4c5;
	}
	.home #intro .row table tr:nth-of-type(4) td:last-child a,
	.home #intro .row table tr:nth-of-type(5) td span a:last-child {
		pointer-events: none;
	}
	.home #intro .row table tr:nth-of-type(5) td span {
		font-size: 1.3rem;
	}
	.home #intro .row table tr:nth-of-type(11) td:first-child {
		border-bottom: 1px solid #000;
		padding-bottom: 0.6rem;
	}
	.home #intro .row table tr:nth-of-type(11) td:last-child {
		display: none;
	}
	.home #intro .row table tr:nth-of-type(n+12):nth-of-type(-n+15) td:first-child {
		background-color: inherit;
		padding: 0.6rem 0.6rem 0;
	}
	.home #intro .row table tr:nth-of-type(n+12):nth-of-type(-n+15) td:last-child {
		text-indent: -4.9rem;
		padding-left: 6.9rem;
	}
	.home #intro .row table tr:last-child td:first-child {
		background-color: inherit;
		border-bottom: 1px solid #000;
	}
}

/*******************************
 Service
*******************************/
.service #headline .row {
	width: 100%;
	max-width: none;
	height: 65vh;
	background-image: url("../images/service/service_hl@2x.jpg");
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.service #headline .row h1 {
	margin: 0;
	text-indent: -9999px;
}
.service #intro .row {
	position: relative;
}
.service #intro .row h2 {
	position: absolute;
	top: 10%;
	left: 2%;
	width: 98%;
	color: #f63;
	font-size: 2.8rem;
	line-height: 3.4rem;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 900;
}
.service #intro .row div {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
}
.service #intro .row div figure {
	width: 70%;
	order: 2;
}
.service #intro .row div p {
	width: 28%;
	order: 1;
	font-size: 1.2rem;
	line-height: 2rem;
}
.service .cnt h2 {
	text-align: center;
}
.service .cnt h2 span {
	display: inline-block;
	background-color: #f90;
	text-align: center;
	color: #FFF;
	font-size: 1.8rem;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 400;
	padding: 0.6rem 2.5rem;
	border-radius: 50px;
	margin: 0 auto;
	white-space: nowrap;
}
.service #equip {
	background-image: url("../images/service/time_top@2x.png"),url("../images/service/service_bg@2x.png"),linear-gradient(150deg, rgba(255, 255, 255, 1), rgba(255, 255, 233, 1));
	background-position: center bottom -1px, center bottom;
	background-repeat: no-repeat;
	background-size: 100%;
	padding-bottom: 10rem;
}
.service #equip.cnt h2 span,
.service #area.cnt h2 span {
	letter-spacing: 0.5rem;
}
.service #equip .row ul {
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-left: 0;
}
.service #equip .row ul li {
	width: 45%;
	margin-bottom: 3rem;
}
.service #equip .row ul li h3 {
	margin: 0 0 0.6rem;
	color: #f90;
	font-size: 1.3rem;
	font-weight: bold;
}
.service #equip .row ul li h3::before {
	content: '●';
	display: inline;
}
.service #equip .row ul li figure {
	margin-bottom: 0.6rem;
}
.service #equip .row ul li figure img {
	border: 3px solid #f90;
	border-radius: 15px;
}
.service #equip .row ul li p {
	margin-bottom: 0;
}
.service #equip .row ul li:nth-child(3),
.service #equip .row ul li:nth-child(6),
.service #equip .row ul li:nth-child(7) {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.service #equip .row ul li:nth-child(3) div {
	width: 34%;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
.service #equip .row ul li:nth-child(3) div p {
	flex-grow: 2;
}
.service #equip .row ul li:nth-child(3) div figure {
	width: 100%;
}
.service #equip .row ul li:nth-child(3) figure {
	width: 62%;
}
.service #equip .row ul li:nth-child(5) figure {
	width: 90%;
}
.service #equip .row ul li:nth-child(5) p {
	position: relative;
	padding-right: 145px;
}
.service #equip .row ul li:nth-child(5) p::after {
	content: '';
	display: block;
	width: 125px;
	height: 125px;
	border-radius: 50%;
	border: 3px solid #F90;
	background-image: url("../images/service/service08@2x.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: absolute;
	top: -60px;
	right: 0;
	
}
.service #equip .row ul li:nth-child(6) h3 {
	width: 100%;
}
.service #equip .row ul li:nth-child(6) figure {
	width: 45%;
}
.service #equip .row ul li:nth-child(7) div {
	width: 31%;
}
.service #equip .row ul li:nth-child(7) figure {
	width: 62%;
}
.service #schedule {
	background-color: #FFF;
	position: relative;
}
.service #schedule h2 {
	position: absolute;
	top: -7rem;
	left: 50%;
	transform: translateX(-50%);
}
.service #schedule .row {
	position: relative;
}
.service #schedule .row > figure {
	position: absolute;
	top: -5rem;
	right: 0;
	width: 52%;
}
.service #schedule .row .split {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	position: relative;
	z-index: 1;
	padding-bottom: 2rem;
	border-bottom: 2px solid #000;
	margin-bottom: 2rem;
}
.service #schedule .split_first {
	width: 70%;
}
.service #schedule .split_first h3 {
	display: inline-block;
	padding: 0.5rem 2rem;
	background-color: #ffedd1;
	font-size: 1.25rem;
	font-weight: 900;
	color: #000;
}
.service #schedule .split_first .table {}
.service #schedule .split_first .table dl {
	display: flex;
	margin: 0;
}
.service #schedule .split_first .table dl.sp {
	display: none;
}
.service #schedule .split_first .table dl dt {
	width: 100px;
}
.service #schedule .split_first .table dl dt .time {
	background-color: #F90;
	text-align: center;
	color: #FFF;
	border-radius: 50px;
	white-space: nowrap;
	padding: 0.1rem 1rem;
}
.service #schedule .split_first .table dl dt p {
	color: #F90;
	text-align: center;
}
.service #schedule .split_first .table dl dd {
	width: calc(100% - 100px);
	margin-left: 0;
	padding-left: 0.5rem;
}
.service #schedule .split_first .table dl dd p {
	color: #F90;
	font-size: 1.2rem;
	font-weight: 900;
}
.service #schedule .split_first .table dl dd p span {
	color: #000;
	font-weight: normal;
	font-size: 1.1rem;
	text-indent: -2rem;
	padding-left: 2.2rem;
}
.service #schedule .split_first .table dl dd p span::before {
	content: '…… ';
	display: inline;
}

/*
.service #schedule .split_first table th {
	vertical-align: top;
}
.service #schedule .split_first table th .time {
	background-color: #F90;
	text-align: center;
	color: #FFF;
	border-radius: 50px;
	white-space: nowrap;
	padding: 0.1rem 1rem;
}
.service #schedule .split_first table th p {
	color: #F90;
	text-align: center;
}
.service #schedule .split_first table td {
	padding-left: 0.5rem;
}
.service #schedule .split_first table td p {
	color: #F90;
	font-size: 1.2rem;
	font-weight: 900;
}
.service #schedule .split_first table td p span {
	color: #000;
	font-weight: normal;
	font-size: 1.1rem;
	text-indent: -2rem;
	padding-left: 2.2rem;
}
.service #schedule .split_first table td p span::before {
	content: '…… ';
	display: inline;
}
*/
.service #schedule .row .split ul {
	width: 27%;
	list-style: none;
}
.service #schedule .row .split ul li:first-child {
	margin-bottom: 2rem;
}
.service #schedule .row .split ul li img {
	border-radius: 15px;
}
.service #schedule .row .split + p {
	text-align: center;
	font-size: 1.6rem;
	line-height: 2rem;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 400;
}
.service #schedule .row .horizontal {
	width: 100%;
	overflow: scroll;
	padding-bottom: 1rem;
}
.service #schedule .row .horizontal table {
	border-spacing: 0.4rem;
	margin: 0 auto;
}
.service #schedule .row .horizontal table tr td {
	padding: 1rem;
	font-size: 1.1rem;
	white-space: nowrap;
}
.service #schedule .row .horizontal table tr:first-child td {
	background-color: #e5c0ec;
	color: #000;
	font-weight: 900;
	font-size: 1.2rem;
}
.service #schedule .row .horizontal table tr:nth-child(2) td,
.service #schedule .row .horizontal table tr:nth-child(6) td {
	background-color: #e6e6e6;
	text-align: center;
	padding: 0.5rem;
}
.service #schedule .row .horizontal table tr:nth-child(3) td {
	background-color: #f5e6f7;
}
.service #schedule .row .horizontal table tr:nth-child(4) td {
	padding: 0;
}
.service #schedule .row .horizontal table tr:nth-child(5) td {
	background-color: #aceed3;
	color: #000;
	font-weight: 900;
	font-size: 1.2rem;
}
.service #schedule .row .horizontal table tr:nth-child(7) td {
	background-color: #def8ed;
}
.service #schedule .row .horizontal table tr td h4 {
	margin: 0 0 0.5rem;
}
.service #schedule .row .horizontal table tr:nth-child(3) td:not(:first-child),
.service #schedule .row .horizontal table tr:nth-child(7) td:not(:first-child) {
	text-align: center;
}
.service #schedule .row .horizontal + p {
	display: none;
}
.service #schedule .row .horizontal + p + p {
	font-size: 1.3rem;
	font-weight: bold;
	text-align: center;
	line-height: 2rem;
	padding: 1rem 0;
	border-bottom: 2px solid #000;
}
.service #schedule .row .horizontal + p + p span {
	font-size: 2rem;
	color: #F90;
	line-height: 3rem;
}
.service #schedule .row .horizontal + p + p span a {
	color: #F90;
	text-decoration: none;
}
.service #area {
	background-image: url("../images/service/sougei_top@2x.png"),linear-gradient(150deg, rgba(255, 216, 170, 1), rgba(255, 255, 233, 1));
	background-position: center top -1px;
	background-repeat: no-repeat;
	background-size: 100%;
	padding: 9% 0 5rem;
}
.service #area .row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-top: 3rem;
}
.service #area .row .left {
	width: 42%;
}
.service #area .row .left p span {
	color: #F63;
	font-size: 1.2rem;
	font-weight: bold;
}
.service #area .row .left p span.pc {
	display: inline;
}
.service #area .row .left p span.sp {
	display: none;
}
.service #area .row .left ol {
	list-style: none;
}
.service #area .row .left ol li {
	margin-bottom: 2.5rem;
	text-indent: -37px;
}
.service #area .row .left ol li span {
	font-size: 2rem;
	font-weight: 900;
}
.service #area .row .left ol li:first-child span::before {
	content: '';
	display: inline-block;
	width: 37px;
	height: 32px;
	margin-bottom: -5px;
	background-image: url("../images/service/num1@2x.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
}
.service #area .row .left ol li:nth-child(2) span::before {
	content: '';
	display: inline-block;
	width: 37px;
	height: 32px;
	margin-bottom: -5px;
	background-image: url("../images/service/num2@2x.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
}
.service #area .row .left ol li:nth-child(3) span::before {
	content: '';
	display: inline-block;
	width: 37px;
	height: 32px;
	margin-bottom: -5px;
	background-image: url("../images/service/num3@2x.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
}
.service #area .row .left ol li:nth-child(4) span::before {
	content: '';
	display: inline-block;
	width: 37px;
	height: 32px;
	margin-bottom: -5px;
	background-image: url("../images/service/num4@2x.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
}
.service #area .row figure {
	width: 54%;
}
@media screen and (max-width:880px) {
	.service #intro .row h2 {
		margin-top: 0;
		margin-bottom: 0;
	}
	.service #intro .row div p {
		font-size: 1.1rem;
		line-height: 1.7rem;
	}
}
@media screen and (max-width:825px) {
	.service #schedule .row .horizontal + p {
		display: block;
		color: #999;
		font-size: 0.95rem;
	}
}
@media screen and (max-width:767px) {
	.service #headline .row {
		height: 50vh;
	}
	.service #intro .row {
		padding-top: 2rem;
	}
	.service #intro .row h2 {
		position: static;
	}
	.service #intro .row div {
		margin-top: -10%;
	}
	.service #intro .row div figure {
		width: 100%;
		order: 1;
	}
	.service #intro .row div p {
		width: 100%;
		order: 2;
	}
	.service #equip .row ul li,
	.service #equip .row ul li:nth-child(3) div,
	.service #equip .row ul li:nth-child(5) figure,
	.service #equip .row ul li:nth-child(6) figure,
	.service #equip .row ul li:nth-child(7) div,
	.service #equip .row ul li:nth-child(7) figure {
		width: 100%;
	}
	.service #schedule h2 {
		top: -4rem;
	}
	.service #schedule .row > figure {
		position: static;
		width: 100%;
	}
	.service #schedule .row .split {
		display: block;
	}
	.service #schedule .split_first {
		width: 100%;
	}
	.service #schedule .split_first .table dl.sp {
		display: block;
	}
	.service #schedule .split_first .table div.sp p {
		margin-bottom: 0;
	}
	.service #schedule .split_first .table dl dt p,
	.service #schedule .split_first .table dl dd p {
		margin-bottom: 0.5rem;
	}
	.service #area {
		padding-top: 5%;
	}
	.service #area .row .left,
	.service #area .row figure {
		width: 100%;
	}
	.service #area .row .left p span.pc {
		display: none;
	}
	.service #area .row .left p span.sp {
		display: inline;
	}
	.service #area .row .left ol li {
		margin-bottom: 1.5rem;
	}
}
@media screen and (max-width:500px) {
	.service #intro .row h2 {
		font-size: 2.2rem;
		line-height: 3rem;
	}
	.service .cnt h2 span {
		font-size: 1.6rem;
	}
}
