@charset "utf-8";
/* --------------------------------------------

サービス案内

---------------------------------------------- */

/* --------------------------------------------
共通ページタイトル
---------------------------------------------- */
.servicePageTitle {
	position: relative;
	width: 92%;
	margin: 7.5rem auto;
}

.servicePageTitle img:nth-child(1) {
	width: 100%;
}

.servicePageTitle img:nth-child(2) {
	position: absolute;
	bottom: -6.5%;
	right: 1.0%;
	display: block;
	width: 80%;
	max-width: 540px;
}

/*--- Responsive ---*/
@media screen and (max-width:960px) {
	.servicePageTitle img:nth-child(1) {
		width: 160%;
		margin: 0 -12%;
	}

	.servicePageTitle img:nth-child(2) {
		bottom: -7.5vw;
		right: 15%;
		width: 70%;
	}
}




.servicePageTitleText {
	width: 90%;
	max-width: 28em;
	margin: -8rem auto 10rem;
}

.servicePageTitleText-name {
	padding-bottom: 10rem;
	font-size: 10px;
	font-size: 1rem;
	text-align: right;
	color: rgba(255, 255, 255, 0.5);
}

.servicePageTitleText-read {
	padding-bottom: 0.5em;
	font-size: 22px;
	font-size: 2.2rem;
	text-align: center;
}

/*--- Responsive ---*/
@media screen and (max-width:960px) {
	.servicePageTitleText-name {
		padding-bottom: 12rem;
		text-align: center;
	}

	.servicePageTitleText-read {
		text-align: justify;
	}

	.servicePageTitleText-read br {
		display: none;
	}
}

@media screen and (max-width:768px) {
	.servicePageTitleText-name {
		padding-bottom: 6rem;
	}
	.servicePageTitleText-read {
		font-size: 16px;
		font-size: 1.6rem;
	}
}



/* --------------------------------------------
共通リンクボタン
---------------------------------------------- */
.linkBtnWrap {
	padding: 4em 5% 4.5em;
	text-align: center;
	background: #fff;
}

.linkBtnWrap p {
	padding: 1em 0 0.5em;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
}

.linkBtnWrap a {
	display: inline-block;
	margin-bottom: 1em;
}

.linkBtnWrap iframe {
	width: 86vw;
	max-width: 860px;
	height: 48.4vw;
	max-height: 484px;
	margin: 1em 0 0em;
}

/*--- Responsive ---*/
@media screen and (max-width:768px) {
	.linkBtnWrap p {
		font-size: 16px;
		font-size: 1.6rem;
	}

	.linkBtnWrap iframe {
	}
}


/* --------------------------------------------
サービス案内ページへのナビゲーション
---------------------------------------------- */
.serviceNav {
	padding: 8rem 0 5rem;
	background: #141414;
}

.serviceNav h2 {
	padding-bottom: 0.2em;
	text-align: center;
	color: rgba(154, 157, 174, 0.3);
	font-size: 66px;
	font-size: 6.6rem;
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
}

.serviceNav__wrap {
	display: flex;
	flex-wrap: wrap;
	padding: 0 5%;
	row-gap: 4rem;
}

.serviceNav__Item {
	position: relative;
	display: block;
	width: 33%;
	height: 18vw;
}

.serviceNav__Item a {}

.serviceNav__Item__photo {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 80%;
}

.serviceNav__Item__photo img {
	width: 120%;
	height: 100%;
	margin: 0 -5%;
	transition: 0.5s;
	object-fit:cover;
	filter: grayscale(100%);
}

.serviceNav__Item:hover img {
	transform: scale(1.05);
	filter: grayscale(0%) blur(1px);
}

.serviceNav__Item__photo::after {
	content: "SERVICE";
	position: absolute;
	top: 30%;
	left: 0%;
	width: 100%;
	height: 18%;
	padding-top: 2.5em;
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
	text-align: center;
	color: #fff;
	letter-spacing: 0.4em;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.serviceNav__Item:nth-of-type(1) .serviceNav__Item__photo::after {
	background-image: url(../img/serviceNav-s1.png);
}

.serviceNav__Item:nth-of-type(2) .serviceNav__Item__photo::after {
	background-image: url(../img/serviceNav-s2.png);
}

.serviceNav__Item:nth-of-type(3) .serviceNav__Item__photo::after {
	background-image: url(../img/serviceNav-s3.png);
}

.serviceNav__Item:nth-of-type(4) .serviceNav__Item__photo::after {
	background-image: url(../img/serviceNav-s4.png);
}

.serviceNav__Item:nth-of-type(5) .serviceNav__Item__photo::after {
	background-image: url(../img/serviceNav-s5.png);
}

.serviceNav__Item:nth-of-type(6) .serviceNav__Item__photo::after {
	background-image: url(../img/serviceNav-s6.png);
}

.serviceNav__Item h3 {
	width: 100%;
	padding: 1.8em 1em 1em;
	color: #fff;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.2;
	white-space: nowrap;
	background: #141414;
}

.serviceNav__Item span {
	display: block;
	color: #B29A70;
	font-size: 0.8em;
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
}

.serviceNav__Item h3::before {
	content: "";
	display: block;
	width: 1em;
	height: 2px;
	margin: 0em 0.5em -0.7em -1.5em;
	vertical-align: baseline;
	background: #B29A70;
}

/*--- Responsive ---*/
@media screen and (max-width:960px) {

	.serviceNav__Item {
		width: 50%;
		height: auto;
	}
	.serviceNav__Item a {
		display: flex;
		flex-direction: column;
	}
	.serviceNav__Item__photo {
		aspect-ratio: 2 / 1;
		flex-shrink: 0;
	}
	.serviceNav__Item h3 {
		white-space: normal;
		padding: 1.5em 0.4em 0 1.5em;
	}

}
@media screen and (max-width:768px) {

	.serviceNav__Item__photo {
		height: 50%;
		flex-shrink: 0;
	}

	.serviceNav__Item h3 {
		font-size: 15px;
		font-size: 1.5rem;
	}
}