/*=====================
上部の背景
=====================*/
body::before {
	content: "";
	width: 65.62vw;
	height: 32.98vw;
	max-width: 9.45rem;
	max-height: 4.75rem;
	min-width: 8.12rem;
	min-height: 3.58rem;
	background-image: url(../img/bg_gray.jpg);
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
}

@media screen and (max-width: 499px) {
	body::before {
		content: "";
		width: 1.00rem;
		height: 1.00rem;
		min-height: auto;
		min-width: auto;
	}
}

/*=====================
ヘッダー
=====================*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	box-sizing: border-box;
	padding: 0.20rem 0.20rem 0.20rem 0.30rem;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	min-width: 1080px;
	transition: background-color 0.3s;
}

@media screen and (max-width: 499px) {
	header {
		padding: 0.15rem;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		align-items: center;
		min-width: 100%;
		transition: background-color 0.3s;
	}
}

header.scr {
	background-color: rgba(255, 255, 255, 0.85);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

header .logo {
	width: 3.28rem;
}

@media screen and (max-width: 499px) {
	header .logo {
		width: 2.20rem;
	}
}

header .nav_wrap {
	width: calc(100% - 3.30rem);
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	align-items: center;
	box-sizing: border-box;
}

@media screen and (max-width: 499px) {
	header .nav_wrap {
		width: 100%;
		display: none;
		background-color: rgba(0, 0, 0, 0.85);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		position: absolute;
		left: 0;
		top: 0.70rem;
	}
}

header .nav_wrap .list {
	padding-right: 0.40rem;
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 5.25rem;
}

@media screen and (max-width: 499px) {
	header .nav_wrap .list {
		padding-right: 0;
		box-sizing: border-box;
		padding: 0.30rem;
		max-width: auto;
		flex-wrap: wrap;
	}
}

@media screen and (max-width: 499px) {
	header .nav_wrap .list .link {
		width: 100%;
		padding: 0.20rem 0;
	}
}

header .nav_wrap .list .link a {
	display: block;
	font-size: 0.16rem;
	letter-spacing: 0.10em;
	font-weight: 500;
	color: #111;
	text-decoration: none;
	position: relative;
}

@media screen and (max-width: 499px) {
	header .nav_wrap .list .link a {
		color: #FFF;
	}
}

header .nav_wrap .list .link a::after {
	content: "";
	width: 100%;
	height: 2px;
	background-color: #f8184f;
	position: absolute;
	left: 0;
	bottom: -0.07rem;
	opacity: 0;
	transition: all 0.3s;
}

@media screen and (max-width: 499px) {
	header .nav_wrap .list .link a::after {
		content: none;
	}
}

header .nav_wrap .list .link a:hover::after,
header .nav_wrap .list .link.active a::after {
	opacity: 1;
}

header .nav_wrap .mail_btn {
	width: 1.81rem;
}

@media screen and (max-width: 499px) {
	header .nav_wrap .mail_btn {
		width: calc(100% - 0.40rem);
		margin: auto;
		padding-bottom: 0.40rem;
	}
}

header .nav_wrap .mail_btn a {
	display: block;
	line-height: 0;
	padding: 0.24rem 0 0.26rem;
	background-color: #111;
	color: #FFF;
	font-size: 0.16rem;
	letter-spacing: 0.10em;
	font-weight: 500;
	text-decoration: none;
	position: relative;
	text-align: center;
}

@media screen and (max-width: 499px) {
	header .nav_wrap .mail_btn a {
		padding: 0.29rem 0 0.31rem;
		background-color: #FFF;
		color: #111;
	}
}

header .nav_wrap .mail_btn a:hover {
	background-color: #f8184f;
}

@media screen and (max-width: 499px) {
	header .nav_wrap .mail_btn a:hover {
		background-color: #F2F2F2;
	}
}

header .nav_wrap .mail_btn a span {
	display: block;
	padding-left: 0.45rem;
}

/* メールアイコン */
header .nav_wrap .mail_btn a span::before {
	content: "";
	width: 0.19rem;
	height: 0.16rem;
	background-image: url(../img/icon_mail.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0.11rem;
	top: 50%;
	transform: translateY(-50%);
}

@media screen and (max-width: 499px) {
	header .nav_wrap .mail_btn a span::before {
		background-image: url(../img/icon_mail_blk.svg);
		left: 0.24rem;
	}
}

/* 縦線 */
header .nav_wrap .mail_btn a span::after {
	content: "";
	width: 1px;
	height: 0.30rem;
	background-color: #FFF;
	position: absolute;
	top: 50%;
	left: 0.45rem;
	transform: translateY(-50%);
}

@media screen and (max-width: 499px) {
	header .nav_wrap .mail_btn a span::after {
		content: "";
		width: 1px;
		height: 0.30rem;
		background-color: #111;
		position: absolute;
		top: 50%;
		left: 0.65rem;
		transform: translateY(-50%);
	}
}

/*=====================
main
=====================*/
main {
	padding-top: 1.00rem;
}

@media screen and (max-width: 499px) {
	main {
		padding-top: 0.70rem;
	}
}


/*=====================
MV
=====================*/
#mv {
	width: calc(100% - 0.40rem);
}

@media screen and (max-width: 499px) {
	#mv {
		width: 100%;
	}
}

/*=====================
会社概要・お問い合わせ
=====================*/
#footer_link .list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 2px;
}

#footer_link .detail {
	width: 50%;
	text-align: center;
	height: 26.80vw;
	min-height: 3.80rem;
	position: relative;
}

@media screen and (max-width: 499px) {
	#footer_link .detail {
		width: 100%;
		height: 55vw;
		min-height: auto;
		margin-top: 2px;
	}
}

#footer_link .detail a {
	color: #FFF;
	text-decoration: none;
	display: block;
	height: 100%;
	position: relative;
}

#footer_link .detail .wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

#footer_link .detail .sec_title {
	font-size: 0.30rem;
	letter-spacing: 0.10em;
	font-weight: 700;
	color: #FFF;
	padding-bottom: 0.70rem;
}

@media screen and (max-width: 499px) {
	#footer_link .detail .sec_title {
		font-size: 0.20rem;
		padding-bottom: 0.20rem;
	}
}

#footer_link .detail .sec_title span {
	font-size: 0.20rem;
	letter-spacing: 0.10em;
	font-weight: 400;
	font-family: 'Oswald', sans-serif;
	display: block;
	padding-top: 0.24rem;
}

@media screen and (max-width: 499px) {
	#footer_link .detail .sec_title span {
		font-size: 0.12rem;
		padding-top: 0.10rem;
	}
}

#footer_link .detail .more_btn {
	width: 100%;
	max-width: 3.00rem;
	margin: auto;
}

@media screen and (max-width: 499px) {
	#footer_link .detail .more_btn {
		max-width: 2.40rem;
	}
}

#footer_link .detail .more_btn span {
	display: block;
	background-color: #FFF;
	color: #111;
	font-family: 'Jost', sans-serif;
	font-size: 0.16rem;
	font-weight: 500;
	letter-spacing: 0.10em;
	line-height: 0;
	position: relative;
	padding: 0.30rem;
}

@media screen and (max-width: 499px) {
	#footer_link .detail .more_btn span {
		font-size: 0.14rem;
		padding: 0.25rem;
	}
}

#footer_link .detail .more_btn span::after {
	content: "";
	width: 0.60rem;
	height: 1px;
	position: absolute;
	top: 50%;
	right: -0.30rem;
	background-color: #111;
	z-index: 1;
	transition: all 0.3s;
}

@media screen and (max-width: 499px) {
	#footer_link .detail .more_btn span::after {
		width: 0.40rem;
		right: -0.20rem;
	}
}

#footer_link .detail a:hover .more_btn span::after {
	right: -0.40rem;
}

@media screen and (max-width: 499px) {
	#footer_link .detail a:hover .more_btn span::after {
		right: -0.20rem;
	}
}

#footer_link #company a {
	background-image: url(../img/footer_company_bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

#footer_link #contact a {
	background-image: url(../img/footer_contact_bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

#footer_link .detail a:hover {
	opacity: 0.7;
}

/*=====================
footer
=====================*/
footer {
	background-image: url(../img/bg_gray.jpg);
	padding: 0.90rem 0;
}

@media screen and (max-width: 499px) {
	footer {
		padding: 0.30rem 0;
	}
}

footer::after {
	content: "";
	background-image: url(../img/logo_bg_right.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right bottom;
	width: 3.74rem;
	height: 80%;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 0;
}

@media screen and (max-width: 499px) {
	footer::after {
		height: 50%;
	}
}

footer .in {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	z-index: 1;
}

footer .sitemap {
	width: 50%;
}

@media screen and (max-width: 499px) {
	footer .sitemap {
		width: 100%;
		margin-bottom: 0.30rem;
	}
}

footer .sitemap .list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

@media screen and (max-width: 499px) {
	footer .sitemap .list {
		padding-left: 0.10rem;
	}
}

footer .sitemap .list .link {
	width: 50%;
	padding: 0.10rem 0;
}

footer .sitemap .list .link a {
	color: #111;
	text-decoration: none;
	font-size: 0.14rem;
	letter-spacing: 0.10em;
}

footer .sitemap .list .link a::before {
	content: "";
	display: inline-block;
	width: 0.11rem;
	height: 0.08rem;
	background-image: url(../img/footer_arrow.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	padding-right: 0.10rem;
	position: relative;
	top: -0.02rem;
	transition: all 0.3s;
}

footer .sitemap .list .link a:hover::before {
	background-position: 0.03rem center;
}

footer .address {
	width: 3.31rem;
	text-align: right;
}

@media screen and (max-width: 499px) {
	footer .address {
		width: 100%;
		text-align: center;
	}
}

footer .address .logo {
	width: 3.31rem;
	margin-bottom: 0.25rem;
}

@media screen and (max-width: 499px) {
	footer .address .logo {
		width: 2.60rem;
		margin: 0 auto 0.15rem;
	}
}

footer .address .text {
	font-size: 0.14rem;
	letter-spacing: 0.05em;
	line-height: 1.75;
}

@media screen and (max-width: 499px) {
	footer .address .text {
		font-size: 0.13rem;
		letter-spacing: 0.05em;
		line-height: 1.75;
	}
}

footer .address .text a {
	color: #111;
	text-decoration: none;
}

@media screen and (max-width: 499px) {
footer .address .text a {
	font-weight: 700;
	text-decoration: underline;
}
}

/*=====================
コピーライト
=====================*/
#copyright {
	padding: 0.20rem 0;
	text-align: center;
}

#copyright .text {
	font-family: 'Jost', sans-serif;
	font-size: 0.10rem;
	letter-spacing: 0.10em;
}
