@charset "UTF-8";




/* CSS STYLE */

html {
	font-size: 2.666666vw;
}
body {
	min-width: 320px;
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: 0.01em;
}

img {
	width: 100%;
	height: auto;
}
video {
	width: 100%;
}

.spnone {
	display: none;
}










/* SITEPARTS */

#warp {
	width: 100%;
	margin-bottom: 10rem;
	overflow: hidden;
}

#main-head {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #888;
	width: 100%;
	height: 24rem;
	padding-top: 5rem;
	color: #fff;
	overflow: hidden;
}
#main-head img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 100%;
	max-width: 100%;
	margin: auto;
	object-fit: cover;
	object-position: 50% 0;
	z-index: 1;
}
#main-head h1 {
	position: relative;
	font-family: 'Noto Serif JP', serif;
	font-size: 4rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.1em;
	text-align: center;
	z-index: 2;
}
#main-head h1.mid {
	font-size: 3.2rem;
	line-height: 1.2;
}
#main-head h1 span {
	position: relative;
	display: block;
	margin-top: 5rem;
	font-family: 'Roboto', sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	text-align: center;
}
#main-head h1 span:before {
	content: "";
	position: absolute;
	top: -2.4rem;
	left: 50%;
	display: block;
	border-top: 2px solid #fff;
	width: 4rem;
	margin-left: -2rem;
}

.anchor-link {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #000;
	width: 100%;
	font-size: 1.4rem;
	line-height: 1;
	color: #fff;
}
.anchor-link a {
	text-decoration: none;
	color: #fff;
}
.anchor-link a:hover {
	text-decoration: underline;
}
.anchor-link ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 1rem;
}
.anchor-link ul li {
	border-right: 1px solid rgba(255,255,255,0.5);
	margin: 0.8rem 1em 0.8rem 0;
	padding-right: 1em;
}
.anchor-link ul li:last-child {
	border-right: none;
	margin-right: 0;
	padding-right: 0;
}

.inner-out,
.inner-mid,
.inner-in {
	position: relative;
	width: 100%;
	padding-left: 2rem;
	padding-right: 2rem;
	z-index: 20;
}

.head1 {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #d61518;
	width: 100%;
	height: 6rem;
	margin-bottom: 4rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1;
	color: #fff;
	overflow: hidden;
}
.head1 span {
	position: absolute;
	top: 0.3rem;
	left: -0.2rem;
	font-family: 'Roboto', sans-serif;
	font-size: 5.6rem;
	font-weight: 700;
	letter-spacing: 0;
	white-space: nowrap;
	opacity: 0.3;
}
.head1 .inner-out {
	text-align: right;
}

.btn {
	margin-top: 2rem;
}
.btn a {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 0.5rem;
	background-color: #d61518;
	width: 100%;
	min-height: 6rem;
	padding: 1rem 2.5rem 1rem 2rem;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none !important;
	color: #fff;
}
.btn a:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 1.5rem;
	width:0;
	height:0;
	border-style:solid;
	border-width: 0.6rem 0 0.6rem 0.6rem;
	border-color: transparent transparent transparent #fff;
	margin-top: -0.6rem;
	transition: 0.3s ease;
}
.btn a:hover {
	background-color: #000;
}
.btn.white a {
	background-color: #fff;
	color: #000;
}
.btn.white a:before {
	border-color: transparent transparent transparent #000;
}

.btn-d {
	width: 100%;
	margin: 6rem 0;
}
.btn-d li {
	margin-bottom: 0.5rem;
}
.btn-d li:last-child {
	margin-bottom: 0;
}

.image-box {
	position: relative;
	overflow: hidden;
}
.image-box img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 100%;
	max-width: 100%;
	margin: auto;
	object-fit: cover;
	z-index: 1;
}


/* FADE */

.fade {
	opacity: 0;
	transition: 0.8s linear;
}
.fade.active {
	opacity: 1;
}
.fade-l {
	position: relative;
	opacity: 0;
	transform: translate(-2rem, 0);
	-webkit-transition: 0.8s ease-out;
	transition: 0.8s ease-out;
}
.fade-l.active {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}
.fade-r {
	position: relative;
	opacity: 0;
	transform: translate(2rem, 0);
	transition: 0.8s ease-out;
}
.fade-r.active {
	opacity: 1;
	transform: translate(0, 0);
}
.fade-t {
	position: relative;
	opacity: 0;
	transform: translate(0, -2rem);
	transition: 0.8s ease-out;
}
.fade-t.active {
	opacity: 1;
	transform: translate(0, 0);
}
.fade-b {
	position: relative;
	opacity: 0;
	transform: translate(0, 2rem);
	transition: 0.8s ease-out;
}
.fade-b.active {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}
.fade-w {
	transition: 0.8s ease-out;
	transform: scale(1.1,1.1);
	opacity: 0;
}
.fade-z {
	transition: 0.8s ease-out;
	transform: scale(0.9,0.9);
	opacity: 0;
}
.fade-w.active,
.fade-z.active {
	transform: scale(1,1);
	opacity: 1;
}










/* header */

header {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 5rem;
	padding: 1rem 1rem 0 1rem;
	z-index: 20000;
	transition: 0.3s ease;
}
header:after {
	content: "";
	position: absolute;
	top: -5rem;
	left: 0;
	display: block;
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
	width: 100%;
	height: 5rem;
	z-index: -1;
	transition: 0.3s ease;
}
header.active:after {
	top: 0;
}
header .logo {
	position: relative;
	font-size: 0;
	z-index: 2;
}
header .logo img {
	width: auto;
	height: 2rem;
}
header #header-open {
	position: relative;
	background-image: url(../img/tireismoney.png);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: auto 2rem;
	padding-left: 10rem;
	height: 4rem;
	z-index: 2;
	transition: 0.3s ease;
}
header #header-open.active {
	background-image: url(../img/tireismoney-w.png);
}
header #header-btn {
	position: relative;
	background-color: #d61518;
	width: 4rem;
	height: 4rem;
	cursor: pointer;
	transition: 0.2s ease;
}
header #header-btn:before,
header #header-btn:after,
header #header-btn span {
	display: block;
	position: absolute;
	background: #fff;
	width: 2.4rem;
	height: 0.3rem;
	margin: -0.15rem 0 0 -1.2rem;
	transition: 0.2s linear;
}
header #header-btn:before {
	content: "";
	top: 28%;
	left: 50%;
}
header #header-btn:after {
	content: "";
	top: 72%;
	left: 50%;
}
header #header-btn span {
	top: 50%;
	left: 50%;
}
header #header-btn.active {
	background-color: #fff;
}
header #header-btn.active:before,
header #header-btn.active:after,
header #header-btn.active span {
	background-color: #d61518;
}
header #header-btn.active:before {
	top: 50%;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
header #header-btn.active:after {
	top: 50%;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
header #header-btn.active span {
	display: none;
}
header #header-menu {
	position: absolute;
	top: 0;
	right: -20rem;
	background-color: #d61518;
	width: 20rem;
	height: 100vh;
	padding: 8rem 2rem 6rem 2rem;
	color: #fff;
	z-index: 1;
	transition: 0.3s ease;
}
header #header-menu.active {
	right: 0;
}
header #header-menu a {
	text-decoration: none;
	color: #fff;
}
header #header-menu ul {
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1;
}
header #header-menu ul li {
	margin-bottom: 2rem;
}
header #header-menu ul a {
	position: relative;
	display: block;
	padding-left: 1em;
}
header #header-menu ul a:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width:0;
	height:0;
	border-style:solid;
	border-width: 0.5rem 0 0.5rem 0.5rem;
	border-color: transparent transparent transparent #fff;
	margin-top: -0.56rem;
	transition: 0.3s ease;
}
header #header-menu dl {
	margin-top: 4rem;
}
header #header-menu dl dt {
	font-family: 'Noto Serif JP', serif;
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1;
}
header #header-menu dl dd {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
}
header #header-menu dl dd.tel {
	margin: 0.7rem 0 0.5rem 0;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	white-space: nowrap;
}










/* footer */

.bread {
	background-color: #f0f0f0;
	padding: 1.6rem 2rem;
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1;
	color: #888;
}
.bread ul {
	display: flex;
}
.bread ul li:after {
	content: "-";
	margin: 0 0.5rem;
}
.bread ul li:last-child:after {
	display: none;
}
.bread a {
	text-decoration: none;
	color: #888;
}

footer {
	position: relative;
	display: block;
	background-color: #d61518;
	padding: 4rem 0;
	color: #fff;
}
footer .logo {
	width: 100%;
	margin-top: 4rem;
	text-align: center;
}
footer .logo img {
	width: 8rem;
}
footer .logo .copy {
	margin-top: 2.5rem;
	font-size: 1rem;
	line-height: 1;
}
footer .data {
	width: 100%;
	font-size: 1.2rem;
	text-align: center;
	line-height: 1;
}
footer .data a {
	text-decoration: none;
	color: #fff;
}
footer .data dl dt {
	font-family: 'Noto Serif JP', serif;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1;
}
footer .data dl dd {
	font-size: 1.2rem;
	font-weight: 500;
}
footer .data dl dd.tel {
	margin: 0.5rem 0 0.8rem 0;
	font-size: 5rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	white-space: nowrap;
}
footer .data .btn {
	margin-top: 2.5rem;
}
footer .data .btn a {
	min-height: 5rem;
	margin-top: 0.5rem;
}
footer .data ul {
	display: none;
}
footer .data .add {
	margin-top: 2.5rem;
	font-size: 1.2rem;
	font-weight: 700;
}
footer .data .add img {
	width: auto;
	height: 1.5rem;
	margin-bottom: 0.8rem;
}










/* INDEX */

#loading {
	position: fixed;
	top: 0;
	left: 0;
	background-color: #fff;
	width: 100%;
	height: 100%;
	z-index: 20001;
}
#loading .area {
	position: absolute;
	top: 50%;
	left: 50%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 30rem;
	height: 7.5rem;
	margin: -3.75rem 0 0 -15rem;
}
#loading .obj1 {
	animation: obj1 1s ease-out 0s forwards;
	position: absolute;
	top: 0;
	left: 0;
	background: url(../img/loading_01.png) center center no-repeat;
	background-size: contain;
	width: 7.5rem;
	height: 7.5rem;
	z-index: 2;
}
#loading .obj2 {
	position: relative;
	width: 24rem;
	height: 4rem;
	overflow: hidden;
	z-index: 1;
}
#loading .obj2 div {
	animation: obj2 0.8s linear 1.1s forwards;
	position: absolute;
	top: 0;
	right: 0;
	background: url(../img/loading_02.png) center center no-repeat;
	background-size: contain;
	width: 21.6rem;
	height: 4rem;
	transform: translate(-24rem, 0);
}
@keyframes obj1 {
	0% {
		transform: translate(100vw, 0) rotate(1800deg);
	}
	90% {
		transform: translate(-0.5rem, 0) rotate(0);
	}
	100% {
		transform: translate(0, 0) rotate(0);
	}
}
@keyframes obj2 {
	0% {
		transform: translate(-24rem, 0);
	}
	100% {
		transform: translate(0, 0);
	}
}

.mv {
	position: relative;
	background: #fff url(../img/mv-txt-sp.png) center bottom no-repeat;
	background-size: 100%;
	width: 100%;
	padding-bottom: 15.5rem;
	position: relative;
	overflow: hidden; 
}

.mv-image {
	position: relative;
	width: 100%;
	height: 100vh;
	max-height: 70rem;
	position: relative;
	overflow: hidden; 
	z-index: 1;
}
.mv-image .box {
	position: relative;
	background-color: #fff;
	width: 100%;
	height: 100vh;
	max-height: 70rem;
}
.mv-image .box .bgimg {
	width: 100%;
	height: 100vh;
	max-height: 100%;
	max-width: 100%;
	margin: auto;
	object-fit: cover;
}
.mv-image .add-anime .bgimg {
	animation: zoom 10s linear 0s normal both;
}
@keyframes zoom {
	0% {
			transform: scale(1);
	}
	100% {
			transform: scale(1.5); 
	}
}

.mv-title {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	max-height: 70rem;
	padding-top: 6rem;
	z-index: 2;
}
.mv-title h1 {
	width: 15rem;
	margin: 0 auto;
}
.mv-title .title {
	margin-top: 3rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 3.6rem;
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
	white-space: nowrap;
	transition: 0.5s ease;
}
.mv-title.active .title {
	color: #000;
}
.mv-title .title span {
	display: block;
	margin-bottom: 1rem;
	font-size: 2rem;
}
.mv-title .btn {
	margin-top: 3rem;
}
.mv-title .btn a {
	min-height: 5rem;
	margin-top: 0.5rem;
}

.index-about {
	background-color: #fff;
	margin-bottom: 8rem;
	padding: 8rem 0 24.5rem 0;
}
.index-about .inner-out {
	position: relative;
	z-index: 1;
}
.index-about .inner-out:after {
	content: "";
	position: absolute;
	bottom: -24.5rem;
	left: 2rem;
	border-radius: 70rem;
	background: url(../img/tire.jpg) center center no-repeat;
	background-size: 33.5rem;
	width: 33.5rem;
	height: 33.5rem;
	opacity: 0;
	transform: rotate(360deg);
	z-index: -1;
	transition: 1s ease;
}
.index-about .inner-out.active:after {
	opacity: 1;
	transform: rotate(0);
}
.index-about h2 {
	margin-bottom: 2.5rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 3.6rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.1em;
	color: #000;
}
.index-about .btn {
	margin-top: 3rem;
}

.index-consept {
	background-color: #f0f0f0;
	padding: 0 0 6rem 0;
}
.consept-box {
	position: relative;
	margin-top: 6rem;
}
.consept-box h3 {
	width: 7rem;
	min-height: 31rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 3.6rem;
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: 0;
	text-align: center;
	color: #000;
}
.consept-box h3:first-letter {
	font-size: 7rem;
}
.consept-box .read {
	position: relative;
	width: 100%;
	padding-top: 3rem;
}
.consept-box .read .image {
	position: absolute;
	top: -30rem;
	background-color: #ccc;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	width: 26.5rem;
	height: 30rem;
	z-index: 1;
}
.consept-box:nth-of-type(1) .read .image {
	background-image: url(../img/index-img_01_sp.jpg);
}
.consept-box:nth-of-type(2) .read .image {
	background-image: url(../img/index-img_02_sp.jpg);
}
.consept-box:nth-of-type(3) .read .image {
	background-image: url(../img/index-img_03_sp.jpg);
}
.consept-box .read .num {
	position: absolute;
	top: -9.3rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 10rem;
	font-weight: 700;
	line-height: 1;
	color: #d61518;
	z-index: 2;
}
.consept-box:nth-of-type(odd) h3 {
	margin: -1rem auto 0 -0.5rem;
}
.consept-box:nth-of-type(even) h3 {
	margin: -1rem -0.5rem 0 auto;
}
.consept-box:nth-of-type(odd) .read .image {
	right: -2rem;
}
.consept-box:nth-of-type(even) .read .image {
	left: -2rem;
}
.consept-box:nth-of-type(odd) .read .num {
	left: 6rem;
}
.consept-box:nth-of-type(even) .read .num {
	right: 6rem;
}

.index-service {
	background-color: #fff;
}
.index-service .image {
	background-color: #ccc;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../img/index-img_04_sp.jpg);
	width: 100%;
	height: 30rem;
	margin: 6rem 0 1rem 0;
}
.index-service h3 {
	margin: 1rem 0 2rem 0;
	font-family: 'Noto Serif JP', serif;
	font-size: 3.2rem;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0;
	color: #000;
}
.index-service h3:first-letter {
	font-size: 6rem;
}
.index-service .btn {
	margin-top: 3rem;
}










/* company */

.company-greetings {
	position: relative;
	background-color: #fff;
	padding: 5rem 0 6rem 0;
}
.company-greetings:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	background: url(../img/company-bg_01_sp.jpg) center center no-repeat;
	background-size: cover;
	width: 60%;
	height: 100%;
	z-index: 1;
}
.company-greetings .inner-out {
	z-index: 2;
}
.company-greetings h2 {
	margin-bottom: 3rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 3.6rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #000;
}
.company-greetings h2:first-letter {
	font-size: 7rem;
}
.company-greetings p {
	margin-top: 1.5rem;
}
.company-greetings p.name {
	display: flex;
	align-items: center;
	margin-top: 3rem;
	font-weight: 700;
	line-height: 1;
}
.company-greetings p.name img {
	width: auto;
	height: 3rem;
	margin-left: 1.5rem;
}

.image-box.company {
	width: 100%;
	height: 20rem;
}

.company-vision {
	position: relative;
	background-color: #fff;
}
.company-vision:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	background: url(../img/company-bg_02_sp.jpg) center center no-repeat;
	background-size: cover;
	width: 60%;
	height: 100%;
	z-index: 1;
}
.company-vision .head1 {
	margin-bottom: 5rem;
	z-index: 2;
}
.company-vision div.inner-out {
	padding-bottom: 6rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 2;
	z-index: 2;
}

.company-area {
	position: relative;
	background-color: #fff;
	padding-bottom: 6rem;
}
.company-area:last-of-type {
	padding-bottom: 0;
}
.company-area table {
	border-top: 1px solid #ccc;
	width: 100%;
}
.company-area table th {
	width: 35%;
	font-weight: 700;
}
.company-area table th,
.company-area table td {
	border-bottom: 1px solid #ccc;
	line-height: 1.6;
	padding: 1.2rem 0;
}
.company-area table img {
	width: auto;
	height: 3rem;
}
.datails-list {
	margin-bottom: 1rem;
}
.datails-list li {
	position: relative;
	padding-left: 0.8em;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.6;
}
.datails-list li:before {
	content: "・";
	position: absolute;
	top: 0;
	left: -0.2em;
	color: #d61518;
	font-weight: 700;
}










/* works */

.works-outsourcing {
	position: relative;
	background-color: #fff;
}

.outsourcing {
	position: relative;
	border: 1px solid #000;
	border-radius: 2rem;
	background-color: #fff;
	width: 100%;
	margin-top: 6rem;
	padding: 6rem 2rem 2rem 2rem;
	font-size: 1.6rem;
	line-height: 1.8;
}
.outsourcing .step {
	position: absolute;
	top: -5rem;
	right: 51.5%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #d61518;
	border-radius: 10rem;
	width: 10rem;
	height: 10rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 2.2rem;
	font-weight: 600;
	line-height: 1;
	color: #fff;
	overflow: hidden;
}
.outsourcing .image {
	position: absolute;
	top: -5rem;
	left: 51.5%;
	background-color: #eee;
	border-radius: 10rem;
	width: 10rem;
	height: 10rem;
	overflow: hidden;
}
.outsourcing .image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 100%;
	max-width: 100%;
	object-fit: cover;
}
.outsourcing h3 {
	margin-bottom: 1rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.1em;
	color: #d61518;
}

.works-btmimg {
	display: flex;
	justify-content: space-between;
	background-color: #000;
	width: 100%;
	height: 12rem;
	margin-top: 6rem;
}
.works-btmimg div {
	position: relative;
	width: 33.3333333333%;
	height: 12rem;
	overflow: hidden;
}
.works-btmimg div img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 100%;
	max-width: 100%;
	object-fit: cover;
}

.works-servicecar {
	position: relative;
	background-color: #fff;
}
.works-servicecar > .inner-out {
	z-index: 2;
}
.works-servicecar .works-btmimg {
	margin: 0;
}
.head-servicecar {
	margin-bottom: 2rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.1em;
	text-align: center;
	color: #000;
}
.head-servicecar strong {
	font-size: 3rem;
	font-weight: 600;
}
.head-servicecar strong span {
	font-size: 3.5rem;
	color: #d61518;
}
.works-cars {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.4rem 1%;
}
.works-cars div {
	width: 32.6666666666%;
}

.servicecar-area {
	position: relative;
	background-color: #f0f0f0;
	margin-top: -16.5rem;
	padding: 19.5rem 0 6rem 0;
	z-index: 1;
}
.servicecar-area h3 {
	margin-bottom: 2rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.1em;
	text-align: center;
	color: #000;
}
.servicecar-area h3 strong {
	font-size: 2.6rem;
	font-weight: 600;
	color: #d61518;
}
.service-main {
	position: relative;
	counter-reset: service;
	display: flex;
	flex-wrap: wrap;
	gap: 2.5rem 1.6%;
	width: 100%;
	padding-top: 25.5rem;
}
.service-main .box {
	position: relative;
	background-color: #d61518;
	width: 49.2%;
	font-size: 1.2rem;
	line-height: 1.6;
	color: #fff;
	z-index: 2;
}
.service-main .box:before {
	counter-increment: service;
	content: counter(service);
	position: absolute;
	top: -2rem;
	left: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid #d61518;
	border-radius: 5rem;
	background-color: #fff;
	width: 4rem;
	height: 4rem;
	margin-left: -2rem;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	color: #d61518;
}
.service-main .image {
	width: 100%;
	font-size: 0;
}
.service-main .read {
	width: 100%;
	padding: 1rem;
}
.service-main h4 {
	display: flex;
	align-items: center;
	min-height: 4.2rem;
	margin-bottom: 0.5rem;
	font-size: 1.4rem;
	line-height: 1.5;
	font-weight: 700;
}
.service-main .main-image {
	opacity: 0;
	position: absolute;
	top: 0;
	left: -2rem;
	background: url(../img/works-service-main-ph_sp.jpg) center center no-repeat;
	background-size: cover;
	width: 100vw;
	height: 23rem;
	z-index: 1;
	transition: 0.8s ease-out;
	transform: scale(1.1,1.1);
}
.service-main .main-image.active {
	opacity: 1;
	transform: scale(1,1);
}
.service-main .main-image:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	background: url(../img/works-service-main-txt_sp.png) center center no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
}
.service-main .main-image p {
	background-color: rgba(51,51,51,0.5);
	padding: 1rem 2rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.1em;
	color: #fff;
}
.service-other-head {
	margin: 4rem 0 1.6rem 0;
	font-family: 'Noto Serif JP', serif;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.1em;
	text-align: center;
	color: #000;
}
.service-other1 {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.6%;
	width: 100%;
}
.service-other1 .box {
	background-color: #666;
	width: 49.2%;
	font-size: 1.2rem;
	line-height: 1.6;
	color: #fff;
}
.service-other1 .image {
	font-size: 0;
}
.service-other1 .read {
	padding: 1rem;
}
.service-other1 h5 {
	margin-bottom: 0.5rem;
	font-size: 1.4rem;
	font-weight: 700;
}
.service-other2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.4rem 1.25%;
	width: 100%;
	margin-top: 1.5rem;
}
.service-other2 .image {
	width: 32.5%;
}

.works-advantages {
	position: relative;
	background-color: #fff;
}
.works-ad {
	position: relative;
	border-radius: 1rem;
	background-color: #f0f0f0;
	margin: 3rem 0;
	padding: 2.5rem 2rem;
}
.works-ad:after {
	content: "";
	position: absolute;
	bottom: -2rem;
	left: 50%;
	width:0;
	height:0;
	border-style:solid;
	border-width: 2rem 3rem 0 3rem;
	border-color: #d61518 transparent transparent transparent;
	margin-left: -3rem;
}
.works-ad h3 {
	margin-bottom: 2rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.1em;
	text-align: center;
	color: #d61518;
}
.works-ad .flow {
	width: 100%;
}
.works-ad .flow .box {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin-bottom: 2rem;
}
.works-ad .flow .box:before {
	content: "";
	position: absolute;
	bottom: -1rem;
	left: 5rem;
	width:0;
	height:0;
	border-style:solid;
	border-width: 1.1rem 1rem 0 1rem;
	border-color: #fff transparent transparent transparent;
}
.works-ad .flow .box:last-of-type:before {
	display: none;
}
.works-ad .flow .image {
	position: relative;
	border-radius: 1rem;
	width: 12rem;
	height: 12rem;
	background-color: #fff;
	font-size: 0;
	overflow: hidden;
}
.works-ad .flow .image img {
	width: 12rem;
}
.works-ad .flow dl {
	width: 16rem;
}
.works-ad .flow dl dt {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	color: #000;
}
.works-ad .flow dl dd {
	position: relative;
	border-radius: 0.5rem;
	background-color: #666;
	margin-top: 1rem;
	padding: 0.8rem 0.5rem;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1;
	color: #fff;
}
.works-ad .flow dl dd:before {
	content: "";
	position: absolute;
	top: -1rem;
	left: 50%;
	width:0;
	height:0;
	border-style:solid;
	border-width: 0 1rem 1.1rem 1rem;
	border-color: transparent transparent #666 transparent;
	margin-left: -1rem;
}
.works-ad .txt {
	margin-top: 2rem;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
	color: #d61518;
}
.works-ad.red {
	background-color: #d61518;
}
.works-ad.red:after {
	display: none;
}
.works-ad.red h3 {
	color: #fff;
}
.works-ad.red .flow dl dt {
	color: #fff;
}
.works-ad.red .flow dl dd {
	background-color: #fff;
	color: #d61518;
}
.works-ad.red .flow dl dd:before {
	border-color: transparent transparent #fff transparent;
}
.works-ad.red .txt {
	font-size: 2.4rem;
	color: #fff;
}
.works-ad-other {
	width: 100%;
	margin: 3rem 0;
}
.works-ad-other h3 {
	margin-bottom: 1.6rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.1em;
	text-align: center;
}
.works-ad-other ul {
	width: 100%;
	background: url(../img/works-other-ar_sp.png) center top no-repeat;
	background-size: 100%;
	padding-top: 2.5rem;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.6;
}
.works-ad-other ul li {
	position: relative;
	padding-left: 1.2em;
}
.works-ad-other ul li:before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
	font-weight: 700;
	color: #d61518;
}

.works-areaandtype {
	position: relative;
	background-color: #fff;
}
.works-areaandtype h3 {
	margin: 4rem 0 2.5rem 0;
	font-family: 'Noto Serif JP', serif;
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
}
.works-area {
	width: 100%;
	margin-bottom: 6rem;
	margin: 2rem 0;
}
.works-area .read {
	margin-top: 2rem;
}
.works-area table {
	border-top: 1px solid #ccc;
	width: 100%;
}
.works-area table th {
	width: 18%;
	font-weight: 700;
}
.works-area table th,
.works-area table td {
	border-bottom: 1px solid #ccc;
	line-height: 1.6;
	padding: 1.2rem 0;
}
.works-area table th {
	width: 35%;
}

.works-car {
	width: 100%;
	height: 6.2rem;
	margin-top: 3rem;
	overflow: hidden;
}
.works-car .carmove {
	animation: car 30s linear infinite;
	background: url(../img/works-car.png) left top repeat-x;
	background-size: 185rem;
	width: 370rem;
	height: 6.2rem;
}
@keyframes car {
	0% {
		margin-left: 0;
	}
	100% {
		margin-left: -185rem;
	}
}










/* contact */

.contact-area {
	position: relative;
	background-color: #fff;
	padding: 5rem 0 0 0;
}
.contact-area h2 {
	margin: 5rem 0 2rem 0;
	font-family: 'Noto Serif JP', serif;
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1;
}
.contact-area h3 {
	margin: 3rem 0 1.5rem 0;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4;
}
.contact-area p {
	margin-top: 1.5rem;
}

.contact-txt {
	margin: 0 !important;
}

.contact-data {
	margin: 3rem 0;
}
.contact-data a {
	text-decoration: none;
	color: #fff;
}
.contact-data dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	border-radius: 1rem;
	background-color: #d61518;
	width: 100%;
	margin-top: 1rem;
	padding: 2.5rem 2rem;
	text-align: center;
	color: #fff;
}
.contact-data dl dt {
	width: 100%;
	font-family: 'Noto Serif JP', serif;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1;
}
.contact-data dl dd {
	width: 100%;
	font-size: 1.3rem;
	line-height: 1.8;
}
.contact-data dl dd.tel {
	margin: 1.5rem 0;
	font-size: 4.4rem;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}
.contact-data dl dd.mail {
	margin: 1.5rem 0;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}










/* maintenance */

.agency-maintenance {
	position: relative;
	background-color: #fff;
	padding-bottom: 6rem;
}
.agency-maintenance h3 {
	margin: 4rem 0 2.5rem 0;
	font-family: 'Noto Serif JP', serif;
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
}
.agency-maintenance h3:first-child {
	margin-top: 0;
}
.agency-maintenance h3 + p {
	margin-top: 2rem;
}
.agency-img {
	width: 100%;
}
.agency-img .box {
	width: 100%;
	margin-top: 2rem;
}
.agency-img p {
	width: 100%;
	margin-top: 1rem;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}
.agency-img .box + p {
	margin-top: 2rem;
}

.agency-advantages {
	position: relative;
	background-color: #fff;
	padding-bottom: 6rem;
}
.agency-advantages h3 {
	margin: 4rem 0 2.5rem 0;
	font-family: 'Noto Serif JP', serif;
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
}
.agency-advantages h3:first-child {
	margin-top: 0;
}
.agency-advantages .btn-d {
	margin: 3rem 0 2rem 0;
}
.agency-advantages .btn-d + p {
	margin-bottom: 3rem;
	text-align: center;
}
.agency-block {
	border: 2px solid #d61518;
	border-radius: 1rem;
	background-color: #fff;
	margin: 4rem 0;
	overflow: hidden;
}
.agency-block:last-child {
	margin-bottom: 0;
}
.agency-block h4 {
	background-color: #d61518;
	padding: 1.5rem 2rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 2.2rem;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
	color: #fff;
}
.agency-block .read {
	padding: 1.5rem 2rem;
}
.agency-block ul li {
	position: relative;
	padding-left: 1em;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.6;
}
.agency-block ul li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
	font-weight: 700;
	color: #d61518;
}
.agency-block .contact {
	position: relative;
	border-radius: 2rem;
	background-color: #f0f0f0;
	width: 100%;
	margin-top: 1.5rem;
	padding: 2rem;
}
.agency-block .contact dt {
	width: 100%;
	margin-bottom: 1rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.4;
	color: #d61518;
}
.agency-block .contact dd {
	width: 100%;
	font-size: 1.6rem;
	line-height: 1.8;
}
.agency-block .service {
	width: 100%;
	margin-top: 1.5rem;
}
.agency-block .service img {
	display: block;
	width: 100%;
	height: auto;
}
.agency-block .service dl {
	width: 100%;
	margin-top: 1.5rem;
}
.agency-block .service dl dt {
	border-radius: 3rem;
	background-color: #d61518;
	width: 10rem;
	height: 3rem;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 3rem;
	text-align: center;
	color: #fff;
}
.agency-block .service dl span {
	display: block;
	margin-top: 1rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1.2;
	color: #d61518;
}
.agency-block .service dl .btn {
	margin-top: 1.5rem;
}