@charset "UTF-8";




/* CSS STYLE */

html {
	font-size: 10px;
}
/* 横1200px + スクロールバー分 */
@media screen and (max-width: 1220px) {
	html {
		font-size: 0.81967vw;
	}
}
body {
	font-size: 1.8rem;
	line-height: 2;
	letter-spacing: 0.03em;
}

a {
	transition: 0.3s ease;
}
a:hover,
a:active {
	text-decoration: underline;
}

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

.pcnone {
	display: none;
}

.tel a {
	pointer-events: none;
}










/* SITEPARTS */

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

#main-head {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #888;
	width: 100%;
	height: 40rem;
	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: 8rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.1em;
	text-align: center;
	z-index: 2;
}
#main-head h1.mid {
	font-size: 6rem;
}
#main-head h1 span {
	position: relative;
	display: block;
	margin-top: 9rem;
	font-family: 'Roboto', sans-serif;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	text-align: center;
}
#main-head h1 span:before {
	content: "";
	position: absolute;
	top: -4.2rem;
	left: 50%;
	display: block;
	border-top: 2px solid #fff;
	width: 6rem;
	margin-left: -3rem;
}

.anchor-link {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #000;
	width: 100%;
	height: 6rem;
	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;
	justify-content: center;
	align-items: center;
}
.anchor-link ul li {
	border-right: 1px solid rgba(255,255,255,0.5);
	margin-right: 1em;
	padding-right: 1em;
}
.anchor-link ul li:last-child {
	border-right: none;
	margin-right: 0;
	padding-right: 0;
}

.inner-out {
	position: relative;
	width: 100%;
	max-width: 120rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 5rem;
	padding-right: 5rem;
	z-index: 20;
}
.inner-mid {
	position: relative;
	width: 100%;
	max-width: 110rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 5rem;
	padding-right: 5rem;
	z-index: 20;
}
.inner-in {
	position: relative;
	width: 100%;
	max-width: 100rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 5rem;
	padding-right: 5rem;
	z-index: 20;
}

.head1 {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #d61518;
	width: 100%;
	height: 11rem;
	margin-bottom: 6rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1;
	color: #fff;
	overflow: hidden;
}
.head1:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: calc(50vw - 58rem);
	border-top: 1px solid #fff;
}
.head1 span {
	position: absolute;
	top: 0;
	left: -0.4rem;
	font-family: 'Roboto', sans-serif;
	font-size: 11.5rem;
	font-weight: 700;
	letter-spacing: 0;
	white-space: nowrap;
}
.head1 .inner-out {
	text-align: right;
}
.head1.mid span {
	top: 2rem;
	font-size: 7.2rem;
}

.btn {
	margin-top: 4rem;
}
.btn a {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 0.5rem;
	background-color: #d61518;
	min-width: 40rem;
	min-height: 7rem;
	padding: 1rem 3.5rem 1rem 3rem;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none !important;
	color: #fff;
}
.btn a:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 2rem;
	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 a:hover:before {
	right: 1.5rem;
}
.btn.white a {
	background-color: #fff;
	color: #000;
}
.btn.white a:before {
	border-color: transparent transparent transparent #000;
}
.btn.white a:hover {
	background-color: #999;
}

.btn-d {
	display: flex;
	justify-content: center;
	gap: 4rem;
	margin: 10rem 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);
	transition: 0.8s ease-out;
}
.fade-l.active {
	opacity: 1;
	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;
	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: 8rem;
	padding: 3rem 3rem 0 3rem;
	z-index: 20000;
	transition: 0.3s ease;
}
header:after {
	content: "";
	position: absolute;
	top: -6rem;
	left: 0;
	display: block;
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
	width: 100%;
	height: 6rem;
	z-index: -1;
	transition: 0.3s ease;
}
header.active {
	height: 6rem;
	padding: 1rem 3rem 0 3rem;
}
header.active:after {
	top: 0;
}
header .logo {
	position: relative;
	font-size: 0;
	z-index: 2;
}
header .logo img {
	width: auto;
	height: 3rem;
}
header #header-open {
	position: relative;
	background-image: url(../img/tireismoney.png);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: auto 3rem;
	padding-left: 15rem;
	height: 5rem;
	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: 5rem;
	height: 5rem;
	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: 3rem;
	height: 0.4rem;
	margin: -0.2rem 0 0 -1.5rem;
	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: -26rem;
	background-color: #d61518;
	width: 26rem;
	height: 100vh;
	padding: 12rem 3rem 10rem 3rem;
	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 a:hover {
	text-decoration: underline;
}
header #header-menu ul {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
}
header #header-menu ul li {
	margin-bottom: 2.4rem;
}
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.7rem;
	transition: 0.3s ease;
}
header #header-menu ul a:hover:before {
	left: 0.4rem;
}
header #header-menu dl {
	margin-top: 5rem;
}
header #header-menu dl dt {
	font-family: 'Noto Serif JP', serif;
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1;
}
header #header-menu dl dd {
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.5;
}
header #header-menu dl dd.tel {
	margin: 0.8rem 0 0.6rem 0;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	white-space: nowrap;
}










/* footer */

.bread {
	background-color: #f0f0f0;
	padding: 2rem 5rem;
	font-size: 1.4rem;
	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;
}
.bread a:hover {
	text-decoration: underline;
}

footer {
	position: relative;
	display: block;
	background-color: #d61518;
	padding: 10rem 0;
	color: #fff;
}
footer .inner-out {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: flex-start;
}
footer .logo {
	width: 15rem;
}
footer .logo img {
	width: 12rem;
}
footer .logo .copy {
	margin-top: 4rem;
	font-size: 1rem;
	line-height: 1;
}
footer .data {
	font-size: 1.4rem;
	text-align: right;
	line-height: 1;
}
footer .data a {
	text-decoration: none;
	color: #fff;
}
footer .data a:hover {
	text-decoration: underline;
}
footer .data dl dt {
	font-family: 'Noto Serif JP', serif;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1;
}
footer .data dl dd {
	font-size: 1.4rem;
	font-weight: 500;
}
footer .data dl dd.tel {
	margin: 0.8rem 0;
	font-size: 6.2rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	white-space: nowrap;
}
footer .data .btn {
	margin-top: 3rem;
}
footer .data .btn a {
	min-width: 24rem;
	min-height: 5rem;
	margin-left: 0.5rem;
	padding: 1rem 3rem 1rem 1.5rem;
	font-size: 1.6rem;
}
footer .data .btn a:before {
	right: 1.5rem;
}
footer .data .btn a:hover:before {
	right: 1.2rem;
}
footer .data ul {
	display: flex;
	justify-content: flex-end;
	margin-top: 3rem;
}
footer .data ul li {
	border-right: 1px solid rgba(255,255,255,0.5);
	margin-right: 1em;
	padding-right: 1em;
}
footer .data ul li:last-child {
	border-right: none;
	margin-right: 0;
	padding-right: 0;
}
footer .data .add {
	margin-top: 3.5rem;
	font-size: 1.4rem;
	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%;
	overflow: hidden;
	z-index: 20001;
}
#loading .area {
	position: absolute;
	top: 50%;
	left: 50%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 48rem;
	height: 12rem;
	margin: -6rem 0 0 -24rem;
}
#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: 12rem;
	height: 12rem;
	z-index: 2;
}
#loading .obj2 {
	position: relative;
	width: 42rem;
	height: 6rem;
	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: 32.6rem;
	height: 6rem;
	transform: translate(-42rem, 0);
}
@keyframes obj1 {
	0% {
		transform: translate(100vw, 0) rotate(1800deg);
	}
	90% {
		transform: translate(-1.5rem, 0) rotate(0);
	}
	100% {
		transform: translate(0, 0) rotate(0);
	}
}
@keyframes obj2 {
	0% {
		transform: translate(-42rem, 0);
	}
	100% {
		transform: translate(0, 0);
	}
}

.mv {
	position: relative;
	background: #fff url(../img/mv-txt-pc.png) center bottom no-repeat;
	background-size: 160rem;
	width: 100%;
	height: 100vh;
	min-height: 72rem;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.mv-image {
	position: relative;
	width: 100%;
	height: calc(100vh - 13rem);
	min-height: calc(72rem - 13rem);
	position: relative;
	overflow: hidden; 
	z-index: 1;
}
.mv-image .box {
	position: relative;
	background-color: #fff;
	width: 100%;
	height: calc(100vh - 13rem);
	min-height: calc(72rem - 13rem);
}
.mv-image .box .bgimg {
	width: 100%;
	height: calc(100vh - 13rem);
	min-height: calc(72rem - 13rem);
	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.3); 
	}
}

.mv-title {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100vh - 13rem);
	min-height: calc(72rem - 13rem);
	z-index: 2;
}
.mv-title .inner-out {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.mv-title h1 {
	width: 26.6rem;
}
.mv-title .title {
	font-family: 'Noto Serif JP', serif;
	font-size: 8rem;
	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: 2rem;
	font-size: 4rem;
}
.mv-title .btn {
	margin-top: 6rem;
}
.mv-title .btn a {
	min-width: 32rem;
	min-height: 7rem;
	margin-right: 0.5rem;
}

.index-about {
	background-color: #fff;
	padding: 20rem 0;
}
.index-about .inner-out {
	position: relative;
	z-index: 1;
}
.index-about .inner-out:after {
	content: "";
	position: absolute;
	top: 50%;
	left: calc(50% + 25rem);
	display: block;
	border-radius: 70rem;
	background: url(../img/tire.jpg) center center no-repeat;
	background-size: 70rem;
	width: 70rem;
	height: 70rem;
	margin-top: -35rem;
	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: 3.5rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 8rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.1em;
	color: #000;
}
.index-about .btn {
	margin-top: 4.5rem;
}

.index-consept {
	background-color: #f0f0f0;
	padding: 0 0 15rem 0;
}
.consept-box {
	position: relative;
	display: flex;
	justify-content: space-between;
	margin-top: 15rem;
}
.consept-box:before {
	content: "";
	position: absolute;
	bottom: -15rem;
	display: block;
	border-left: 2px solid #d61518;
	height: 0;
	transition: 1s ease;
}
.consept-box.active:before {
	height: calc(100%  + 5rem);
}
.consept-box h3 {
	width: 15rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 8rem;
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: 0;
	text-align: center;
	color: #000;
}
.consept-box h3:first-letter {
	font-size: 15rem;
}
.consept-box .read {
	position: relative;
	width: calc(100% - 20rem);
	padding-top: 51rem;
}
.consept-box .read .image {
	position: absolute;
	top: 0;
	background-color: #ccc;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	width: calc(100% + calc(50vw - 55rem));
	height: 48rem;
	z-index: 1;
}
.consept-box:nth-of-type(1) .read .image {
	background-image: url(../img/index-img_01.jpg);
}
.consept-box:nth-of-type(2) .read .image {
	background-image: url(../img/index-img_02.jpg);
}
.consept-box:nth-of-type(3) .read .image {
	background-image: url(../img/index-img_03.jpg);
}
.consept-box .read .num {
	position: absolute;
	top: 29.4rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 20rem;
	font-weight: 700;
	line-height: 1;
	color: #d61518;
	z-index: 2;
}
.consept-box:nth-of-type(odd) {
	flex-direction: row;
}
.consept-box:nth-of-type(even) {
	flex-direction: row-reverse;
}
.consept-box:nth-of-type(odd):before {
	left: -5rem;
}
.consept-box:nth-of-type(even):before {
	right: -5rem;
}
.consept-box:nth-of-type(odd) h3 {
	margin: -3rem 0 0 -1rem;
}
.consept-box:nth-of-type(even) h3 {
	margin: -3rem -1rem 0 0;
}
.consept-box:nth-of-type(odd) .read .image {
	left: 0;
}
.consept-box:nth-of-type(even) .read .image {
	right: 0;
}
.consept-box:nth-of-type(odd) .read .num {
	left: -5.8rem;
}
.consept-box:nth-of-type(even) .read .num {
	right: -5.8rem;
}

.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.jpg);
	width: calc(100% + 20rem);
	height: 64rem;
	margin: 10rem -10rem 4rem -10rem;
}
.index-service h3 {
	margin: 4rem 0;
	font-family: 'Noto Serif JP', serif;
	font-size: 6rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
	color: #000;
}
.index-service h3:first-letter {
	font-size: 12rem;
}
.index-service .btn {
	margin-top: 5rem;
}










/* company */

.company-greetings {
	position: relative;
	background-color: #fff;
	padding: 9rem 0 10rem 0;
}
.company-greetings:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	background: url(../img/company-bg_01.jpg) center center no-repeat;
	background-size: cover;
	width: 50%;
	height: 100%;
	z-index: 1;
	opacity: 0;
	transition: 1.2s ease;
}
.company-greetings.active:after {
	opacity: 1;
}
.company-greetings .inner-out {
	padding-right: 45rem;
	z-index: 2;
}
.company-greetings h2 {
	margin-bottom: 5rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 6rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #000;
}
.company-greetings h2:first-letter {
	font-size: 12rem;
}
.company-greetings p {
	margin-top: 2rem;
}
.company-greetings p.name {
	display: flex;
	align-items: center;
	margin-top: 4rem;
	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: 48rem;
}

.image-box.company2 {
	width: 100%;
	height: 67rem;
}

.company-vision {
	position: relative;
	background-color: #fff;
}
.company-vision:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	background: url(../img/company-bg_02.jpg) center center no-repeat;
	background-size: cover;
	width: 50%;
	height: 100%;
	z-index: 1;
	opacity: 0;
	transition: 1.2s ease;
}
.company-vision.active:after {
	opacity: 1;
}
.company-vision .head1 {
	margin-bottom: 9rem;
	z-index: 2;
}
.company-vision div.inner-out {
	padding-bottom: 10rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 2.8rem;
	font-weight: 600;
	line-height: 2.2;
	z-index: 2;
}

.company-area {
	position: relative;
	background-color: #fff;
	padding-bottom: 10rem;
}
.company-area:last-of-type {
	padding-bottom: 0;
}
.company-area table {
	border-top: 1px solid #ccc;
	width: 100%;
}
.company-area table th {
	width: 18%;
	font-weight: 700;
}
.company-area table th,
.company-area table td {
	border-bottom: 1px solid #ccc;
	line-height: 1.8;
	padding: 1.8rem 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: 2.4rem;
	font-weight: 700;
	line-height: 1.8;
}
.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 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 1px solid #000;
	border-radius: 20rem;
	background-color: #fff;
	width: 100%;
	min-height: 20rem;
	margin-top: 3rem;
	padding: 2rem;
	font-size: 1.8rem;
	line-height: 1.8;
}
.outsourcing .step {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #d61518;
	border-radius: 16rem;
	width: 16rem;
	height: 16rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 3rem;
	font-weight: 600;
	line-height: 1;
	color: #fff;
	overflow: hidden;
}
.outsourcing .read {
	width: calc(100% - 36rem);
}
.outsourcing .image {
	position: relative;
	background-color: #eee;
	border-radius: 16rem;
	width: 16rem;
	height: 16rem;
	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: 1.2rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 2.4rem;
	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: 30rem;
	margin-top: 10rem;
}
.works-btmimg div {
	position: relative;
	width: 33.3333333333%;
	height: 30rem;
	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: 3.5rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.1em;
	text-align: center;
	color: #000;
}
.head-servicecar strong {
	font-size: 3.4rem;
	font-weight: 600;
}
.head-servicecar strong span {
	font-size: 4.4rem;
	color: #d61518;
}
.works-cars {
	display: flex;
	justify-content: space-between;
}
.works-cars div {
	width: 19.7%;
}

.servicecar-area {
	position: relative;
	background-color: #f0f0f0;
	margin-top: -10.5rem;
	padding: 17rem 0 10rem 0;
	z-index: 1;
}
.servicecar-area h3 {
	margin-bottom: 5rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 4rem;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.1em;
	text-align: center;
	color: #000;
}
.servicecar-area h3 strong {
	font-size: 6rem;
	font-weight: 600;
	color: #d61518;
}
.service-main {
	counter-reset: service;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
	gap: 0.5rem 1.125%;
	width: 100%;
	height: 118rem;
}
.service-main .box {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	background-color: #d61518;
	width: 19.1%;
	font-size: 1.4rem;
	line-height: 1.6;
	color: #fff;
	z-index: 2;
}
.service-main .box:before {
	counter-increment: service;
	content: counter(service);
	position: absolute;
	top: -2.5rem;
	left: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid #d61518;
	border-radius: 5rem;
	background-color: #fff;
	width: 5rem;
	height: 5rem;
	margin-left: -2.5rem;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	color: #d61518;
}
.service-main .box:nth-of-type(1),
.service-main .box:nth-of-type(5) {
	transform: translate(0, 1rem);
}
.service-main .box:nth-of-type(6),
.service-main .box:nth-of-type(10) {
	transform: translate(0, -1rem);
}
.service-main .box:nth-of-type(n+6) {
	flex-wrap: wrap-reverse;
	align-content: space-between;
}
.service-main .box:nth-of-type(n+6):before {
	top: inherit;
	bottom: -2.5rem;
}
.service-main .image {
	width: 100%;
	font-size: 0;
}
.service-main .read {
	width: 100%;
	padding: 1.2rem 1.5rem;
}
.service-main h4 {
	display: flex;
	align-items: center;
	min-height: 5.2rem;
	margin-bottom: 0.8rem;
	font-size: 1.6rem;
	line-height: 1.6;
	font-weight: 700;
}
.service-main .main-image {
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	background: url(../img/works-service-main-ph.jpg) center center no-repeat;
	background-size: 140rem;
	width: 140rem;
	height: 80rem;
	z-index: 1;
	transition: 0.8s ease-out;
	transform: translate(-50%, -50%) scale(1.1,1.1);
}
.service-main .main-image.active {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1,1);
}
.service-main .main-image:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	background: url(../img/works-service-main-txt.png) center center no-repeat;
	background-size: 140rem;
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 1400px) {
	.service-main .main-image {
		width: 100vw;
	}
}
.service-main .main-image p {
	position: absolute;
	bottom: 14rem;
	left: 0;
	background-color: rgba(51,51,51,0.5);
	padding: 2rem 5rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 3rem;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.1em;
	color: #fff;
}
.service-other-head {
	margin: 8rem 0 3rem 0;
	font-family: 'Noto Serif JP', serif;
	font-size: 3rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.1em;
	text-align: center;
	color: #000;
}
.service-other1 {
	display: flex;
	gap: 0.5rem 1.125%;
	width: 100%;
}
.service-other1 .box {
	background-color: #666;
	width: 19.1%;
	padding: 1.5rem;
	font-size: 1.4rem;
	line-height: 1.6;
	color: #fff;
}
.service-other1 .image {
	margin-bottom: 1.2rem;
	font-size: 0;
}
.service-other1 h5 {
	margin-bottom: 0.5rem;
	font-size: 1.6rem;
	font-weight: 700;
}
.service-other2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.2rem 1.125%;
	width: 100%;
	margin-top: 1.2rem;
}
.service-other2 .image {
	width: 19.1%;
}

.works-advantages {
	position: relative;
	background-color: #fff;
}
.works-ad {
	position: relative;
	border-radius: 2rem;
	background-color: #f0f0f0;
	margin: 5rem 0;
	padding: 4rem 5rem;
}
.works-ad:after {
	content: "";
	position: absolute;
	bottom: -4rem;
	left: 50%;
	width:0;
	height:0;
	border-style:solid;
	border-width: 4rem 6rem 0 6rem;
	border-color: #d61518 transparent transparent transparent;
	margin-left: -6rem;
}
.works-ad h3 {
	margin-bottom: 3rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 3rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.1em;
	text-align: center;
	color: #d61518;
}
.works-ad .flow {
	display: flex;
	justify-content: space-between;
}
.works-ad .flow .box {
	position: relative;
	width: 23%;
}
.works-ad .flow .box:before {
	content: "";
	position: absolute;
	top: 6rem;
	right: -1.5rem;
	width:0;
	height:0;
	border-style:solid;
	border-width: 1.5rem 0 1.5rem 1.6rem;
	border-color: transparent transparent transparent #fff;
}
.works-ad .flow .box:last-of-type:before {
	display: none;
}
.works-ad .flow .image {
	position: relative;
	border-radius: 1rem;
	width: 100%;
	height: 15rem;
	background-color: #fff;
	overflow: hidden;
}
.works-ad .flow .image img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20rem;
	transform: translate(-50%, -50%);
}
.works-ad .flow dl dt {
	margin-top: 1.4rem;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	color: #000;
}
.works-ad .flow dl dd {
	position: relative;
	border-radius: 0.5rem;
	background-color: #666;
	margin-top: 1.6rem;
	padding: 1.1rem 1rem;
	text-align: center;
	font-size: 1.8rem;
	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: 3rem;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1;
	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: 3.6rem;
	color: #fff;
}
.works-ad-other {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 8rem 0;
}
.works-ad-other h3 {
	font-family: 'Noto Serif JP', serif;
	font-size: 3rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.1em;
}
.works-ad-other ul {
	width: 79%;
	background: url(../img/works-other-ar.png) left center no-repeat;
	background-size: 2.1rem;
	padding-left: 5rem;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 2;
}
.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: 6rem 0 4rem 0;
	font-family: 'Noto Serif JP', serif;
	font-size: 3rem;
	font-weight: 600;
	line-height: 1;
	text-align: center;
}
.works-areaandtype h3 + p {
	text-align: center;
}
.works-area {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 4rem 0;
}
.works-area .map {
	width: 45.5%;
}
.works-area .read {
	width: 50%;
}
.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.8;
	padding: 1.8rem 0;
}
.works-area table th {
	width: 40%;
}
.works-area + p {
	text-align: center;
}

.works-car {
	width: 100%;
	height: 6.2rem;
	margin-top: 4rem;
	overflow: hidden;
}
.works-car .carmove {
	animation: car 20s 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: 9rem 0 0 0;
}
.contact-area h2 {
	margin: 8rem 0 4rem 0;
	font-family: 'Noto Serif JP', serif;
	font-size: 4rem;
	font-weight: 600;
	line-height: 1;
}
.contact-area h3 {
	margin: 4rem 0 2rem 0;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4;
}
.contact-area p {
	margin-top: 2rem;
}

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

.contact-data {
	display: flex;
	justify-content: space-between;
	margin: 4rem 0;
}
.contact-data a {
	text-decoration: none;
	color: #fff;
}
.contact-data a:hover {
	text-decoration: underline;
}
.contact-data dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	border-radius: 1rem;
	background-color: #d61518;
	width: 48.88%;
	padding: 3.5rem 3rem;
	text-align: center;
	color: #fff;
}
.contact-data dl dt {
	width: 100%;
	font-family: 'Noto Serif JP', serif;
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1;
}
.contact-data dl dd {
	width: 100%;
	font-size: 1.6rem;
	line-height: 1.8;
}
.contact-data dl dd.tel {
	margin: 1.5rem 0;
	font-size: 5.5rem;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}
.contact-data dl dd.mail {
	margin: 1.5rem 0;
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1;
}










/* maintenance */

.agency-maintenance {
	position: relative;
	background-color: #fff;
	padding-bottom: 10rem;
}
.agency-maintenance h3 {
	margin: 6rem 0 4rem 0;
	font-family: 'Noto Serif JP', serif;
	font-size: 3rem;
	font-weight: 600;
	line-height: 1;
	text-align: center;
}
.agency-maintenance h3:first-child {
	margin-top: 0;
}
.agency-maintenance h3 + p {
	margin-top: 3rem;
	text-align: center;
}
.agency-img {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 3rem 0;
}
.agency-img:last-child {
	margin-bottom: 0;
}
.agency-img .box {
	width: 48.2%;
}
.agency-img p {
	width: 100%;
	margin-top: 1rem;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
}

.agency-advantages {
	position: relative;
	background-color: #fff;
	padding-bottom: 10rem;
}
.agency-advantages h3 {
	margin: 6rem 0 4rem 0;
	font-family: 'Noto Serif JP', serif;
	font-size: 3rem;
	font-weight: 600;
	line-height: 1;
	text-align: center;
}
.agency-advantages h3:first-child {
	margin-top: 0;
}
.agency-advantages .btn-d {
	margin: 6rem 0 4rem 0;
}
.agency-advantages .btn-d + p {
	margin-bottom: 6rem;
	text-align: center;
}
.agency-block {
	border: 2px solid #d61518;
	border-radius: 2rem;
	background-color: #fff;
	margin: 4rem 0;
	overflow: hidden;
}
.agency-block:last-child {
	margin-bottom: 0;
}
.agency-block h4 {
	background-color: #d61518;
	padding: 3rem 5rem 3.4rem 5rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 3.2rem;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	color: #fff;
}
.agency-block .read {
	padding: 3rem 5rem;
}
.agency-block ul li {
	position: relative;
	padding-left: 1em;
	font-size: 2.4rem;
	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;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	border-radius: 10rem;
	background-color: #f0f0f0;
	width: 100%;
	min-height: 16rem;
	margin-top: 2.5rem;
	padding: 2rem 5rem;
}
.agency-block .contact:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 2rem;
	display: block;
	border-radius: 12rem;
	background: #fff url(../img/maintenance-icon.png) center center no-repeat;
	background-size: 12rem;
	width: 12rem;
	height: 12rem;
	margin-top: -6rem;
}
.agency-block .contact dt {
	width: 100%;
	margin-bottom: 1rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1.4;
	color: #d61518;
}
.agency-block .contact dd {
	width: 100%;
	font-size: 1.8rem;
	line-height: 1.8;
}
.agency-block .service {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin-top: 2.5rem;
}
.agency-block .service img {
	display: block;
	width: 56rem;
	height: auto;
}
.agency-block .service dl {
	width: calc(100% - 60rem);
}
.agency-block .service dl dt {
	border-radius: 4rem;
	background-color: #d61518;
	width: 12rem;
	height: 4rem;
	font-size: 2rem;
	font-weight: 700;
	line-height: 4rem;
	text-align: center;
	color: #fff;
}
.agency-block .service dl span {
	display: block;
	margin-top: 1.5rem;
	font-family: 'Noto Serif JP', serif;
	font-size: 3.2rem;
	font-weight: 600;
	line-height: 1.2;
	color: #d61518;
}
.agency-block .service dl .btn {
	margin-top: 2rem;
}