/*============================
ヘッダー
============================*/
header {
	transition: transform 0.5s 0.3s;
	position: fixed;
	z-index: 10;
	width: 100%;
	height: 0.84rem;
	background-color: rgba(255, 255, 255, 0);
	transition: all 0.5s;
}

@media screen and (max-width: 599px) {
	header {
		height: 0.68rem;
		background-color: rgba(255, 255, 255, 1);
	}
}

/* ヘッダーが上に消える */
header.hide {
	transform: translateY(-1.50rem);
}

/* スクロールで表示された状態 */
header.scr {
	background-color: rgba(255, 255, 255, 1);
}

/*ロゴ*/
header .logo {
	position: absolute;
	left: 0;
	top: 0;
}

header .logo a {
	display: block;
	background-color: #fff;
	padding: 0.24rem 0.20rem;
	border-bottom: 3px solid #C71E0A;
}

@media screen and (max-width: 599px) {
	header .logo a {
		padding: 0.12rem 0.13rem;
	}
}

header .logo a img {
	display: block;
	width: 0.80rem;
	transition: all 0.3s;
}

@media screen and (max-width: 599px) {
	header .logo a img {
		width: 0.50rem;
	}
}

/* スクロール時のロゴ */
header.scr .logo a {
	padding: 0.15rem 0.20rem;
	border-bottom: 0;
}

@media screen and (max-width: 599px) {
	header.scr .logo a {
		padding: 0.12rem 0.13rem;
		border-bottom: 3px solid #C71E0A;
	}
}

header.scr .logo a img {
	width: 0.60rem;
}

@media screen and (max-width: 599px) {
	header.scr .logo a img {
		width: 0.50rem;
	}
}

/*ナビゲーション*/
header .glo_navi {
	width: 60%;
	margin-left: auto;
	margin-right: 0.3rem;
	padding-top: 0.40rem;
}

@media screen and (max-width: 599px) {
	header .glo_navi {
		width: 100%;
		margin: 0;
		padding-top: 0;
		position: absolute;
		top: 0.68rem;
		left: 0;
		z-index: 1;
		display: none;
		background-color: rgba(199, 30, 10, 0.85);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
	}
}

header.scr .glo_navi {
	padding-top: 0.30rem;
}

@media screen and (max-width: 599px) {
	header.scr .glo_navi {
		padding-top: 0;
	}
}

header .glo_navi .list {
	display: flex;
	justify-content: space-between;
}

@media screen and (max-width: 599px) {
	header .glo_navi .list {
		display: block;
		padding: 0.30rem;
	}

	header .glo_navi .list .link {
		padding-bottom: 0.30rem;
	}
}

header .glo_navi .list .link a {
	color: #fff;
	text-decoration: none;
	font-size: 0.18rem;
	font-weight: 500;
	letter-spacing: 0.075em;
	position: relative;
}

header.scr .glo_navi .list .link a {
	color: #000;
}

@media screen and (max-width: 599px) {
	header.scr .glo_navi .list .link a {
		color: #FFF;
		line-height: 1;
	}
}

header .glo_navi .list .link a::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #FFF;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}

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

	header .glo_navi .list .link a::before {
		content: "";
		width: 0.08rem;
		height: 2px;
		background-color: rgba(255, 255, 255, 0.5);
		display: inline-block;
		position: relative;
		margin-right: 0.10rem;
		top: -0.06rem;
	}
}

header.scr .glo_navi .list .link a::after {
	background: #000;
}

header .glo_navi .list .link a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}

header .glo_navi .list .link.active a:after {
	transform-origin: left top;
	transform: scale(1, 1);
}

/* お問い合わせボタン */
header .glo_navi .list .link:last-child a {
	border: 2px solid #fff;
	padding: 0.1rem 0.45rem;
	border-radius: 0.30rem;
}

@media screen and (max-width: 599px) {
	header .glo_navi .list .link:last-child {
		width: 100%;
		padding: 0.10rem 0 ;
	}

	header .glo_navi .list .link:last-child a {
		display: block;
		box-sizing: border-box;
		text-align: center;
		line-height: 0;
		padding: 0.22rem 0 0.24rem;
	}
	header .glo_navi .list .link:last-child a::before {
		content: none;
	}
}

header.scr .glo_navi .list .link:last-child a {
	border: 2px solid #000;
}

@media screen and (max-width: 599px) {
	header.scr .glo_navi .list .link:last-child a {
		border: 2px solid #FFF;
	}
	header.scr .glo_navi .list .link:last-child a::before {
		content: none;
	}
}

header .glo_navi .list .link:last-child a::after {
	content: none;
}

header .glo_navi .list .link:last-child a:hover {
	background-color: #FFF;
	color: #000;
}

header.scr .glo_navi .list .link:last-child a:hover {
	background-color: #000;
	color: #FFF;
}


/*============================
フッター
============================*/
footer {
	padding-top: 0.7rem;
}

@media screen and (max-width: 599px) {
	footer {
		padding-top: 0;
	}

	footer .in {
		padding: 0;
	}
}

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

@media screen and (max-width: 599px) {
	.sp_sitemap {
		background-color: #f2f2f2;
		padding: 0.30rem 0.20rem 0.10rem;
	}

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

	.sp_sitemap .list .link {
		width: 50%;
		padding-bottom: 0.20rem;
	}

	.sp_sitemap .list .link a {
		font-size: 0.14rem;
		font-weight: 700;
		color: #000;
		text-decoration: none;
		letter-spacing: 0.05em;
	}

	.sp_sitemap .list .link a::before {
		content: "";
		display: inline-block;
		width: 0.07rem;
		height: 2px;
		background-color: #c71e0a;
		margin-right: 0.08rem;
		position: relative;
		top: -0.04rem;
	}
}

/*ロゴ、住所*/
.left_cont {
	width: 4rem;
}

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

.left_cont .logo {
	width: 1.30rem;
	margin-bottom: 0.20rem;
	position: relative;
	left: -0.10rem;
}

@media screen and (max-width: 599px) {
	.left_cont .logo {
		width: 1.00rem;
		margin: 0.20rem auto;
		position: relative;
		left: 0;
	}
}

.left_cont .logo img {
	width: 100%;
}

.left_cont address {
	font-size: 0.14rem;
	line-height: 1.7;
	letter-spacing: 0.1em;
}

@media screen and (max-width: 599px) {
	.left_cont address {
		font-size: 0.13rem;
		letter-spacing: 0.05em;
	}
}

/*ナビゲーション*/
.right_cont {
	display: flex;
	justify-content: space-between;
	width: calc(100% - 4rem);
}

@media screen and (max-width: 599px) {
	.right_cont {
		display: none;
	}
}

.right_cont .nav_cont {
	width: 25%;
}

.right_cont .nav_cont .nav_cont_box {
	margin-bottom: 0.3rem;
}

.right_cont .nav_cont .nav_cont_box .list {}

.right_cont .nav_cont .nav_cont_box .list .item {}

.right_cont .nav_cont .nav_cont_box .list .item a {
	text-decoration: none;
	color: #000;
	font-size: 0.14rem;
	line-height: 2.17;
	letter-spacing: 0.1em;
	position: relative;
}

.right_cont .nav_cont .nav_cont_box .list .item a::after {
	position: absolute;
	bottom: -2px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #000;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}

.right_cont .nav_cont .nav_cont_box .list .item a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}

/*
.right_cont .nav_cont .nav_cont_box .list .item a:hover {
	color: #C71E0A;
}
*/

.right_cont .nav_cont .nav_cont_box .list .item a strong {
	font-size: 0.16rem;
	position: relative;
}

.right_cont .nav_cont .nav_cont_box .list .item a strong::before {
	content: '';
	display: block;
	width: 0.07rem;
	height: 2px;
	background: #C71E0A;
	position: absolute;
	left: -0.15rem;
	top: 0.12rem;
}

/*写真*/
footer .footer_img {
	margin-top: 0.4rem;
}

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

footer .footer_img .list .item {
	width: 24.8%;
	height: 2.4rem;
}

@media screen and (max-width: 599px) {
	footer .footer_img .list .item {
		height: 16.53vw;
	}
}

footer .footer_img .list .item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

footer .copyright {
	font-size: 0.13rem;
	font-family: 'Poppins', sans-serif;
	text-align: center;
	padding: 0.30rem;
	letter-spacing: 0.1em;
}

@media screen and (max-width: 599px) {
	footer .copyright {
		font-size: 0.10rem;
		padding: 0.20rem;
		letter-spacing: 0.05em;
	}
}

/*============================
共通
============================*/
@media screen and (max-width: 599px) {
	main {
		padding-top: 0.68rem;
	}
}

.sec_title {}

.sec_title .title_jp {
	display: block;
	font-size: 0.18rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 0.10rem;
}

@media screen and (max-width: 599px) {
	.sec_title .title_jp {
		font-size: 0.13rem;
	}
}

.sec_title .title_en {
	font-family: 'Poppins', sans-serif;
	display: inline-block;
	color: #ffffff;
	font-size: 0.48rem;
	letter-spacing: 0.05em;
	font-weight: 600;
	color: transparent;
	-webkit-text-stroke: 1px #c71e0a;
}

@media screen and (max-width: 599px) {
	.sec_title .title_en {
		font-size: 0.32rem;
	}
}

/*

.sec_title .title_en {
font-family: 'Poppins', sans-serif;
display        : inline-block;
color          : #ffffff;
font-size      : 36pt;
letter-spacing : 4px;
text-shadow    : 
2px  2px 1px #c71e0a,
-2px  2px 1px #c71e0a,
2px -2px 1px #c71e0a,
-2px -2px 1px #c71e0a,
2px  0px 1px #c71e0a,
0px  2px 1px #c71e0a,
-2px  0px 1px #c71e0a,
0px -2px 1px #c71e0a;
}
*/


.btn_common {}

.btn_common a {
	display: inline-block;
	line-height: 0;
	/*	padding: 0.16rem 1.20rem 0.16rem 0.2rem;*/
	padding: 0.24rem 0.2rem 0.27rem;
	max-width: 2.40rem;
	width: 100%;
	font-size: 0.18rem;
	letter-spacing: 0.075em;
	text-decoration: none;
	border-radius: 0.30rem;
	position: relative;
	box-sizing: border-box;
}

@media screen and (max-width: 599px) {
	.btn_common a {
		font-size: 0.15rem;
	}
}

.btn_common a::before {
	content: '';
	display: block;
	width: 0.40rem;
	height: 0.02rem;
	background: #c71e0a;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -0.20rem;
	transition: .3s all;
}

@media screen and (max-width: 599px) {
	.btn_common a::before {
		width: 0.30rem;
		height: 2px;
		right: -0.15rem;
	}
}

.btn_common a:hover::before {
	right: -0.25rem;
}

@media screen and (max-width: 599px) {
	.btn_common a:hover::before {
		right: -0.20rem;
	}
}

/*黒ボタン*/
.btn_bk a {
	background: #000;
	color: #fff;
	border: 1px solid #000;
}

.btn_bk a:hover {
	background: #fff;
	color: #000;
	border: 1px solid #000;
}

/*白ボタン*/
.btn_wh a {
	background: #fff;
	color: #000;
	border: 1px solid #fff;
	box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
}

.btn_wh a:hover {
	background: #000;
	color: #fff;
	border: 1px solid #000;
}

/*横長ボタン白*/
.btn_large {
	text-align: center;
}

.btn_large a {
	max-width: 4.00rem;
	color: #000;
	background: #fff;
	text-align: center;
	border: 1px solid #fff;
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
}

.btn_large a:hover {
	opacity: 0.7;
}

/*横長ボタン黒*/
.btn_large_bk {
	text-align: center;
}

.btn_large_bk a {
	max-width: 4.00rem;
	color: #fff;
	background: #000;
	text-align: center;
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 599px) {
	.btn_large_bk a {
		box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
	}
}

.btn_large_bk a:hover {
	color: #000;
	background: #fff;
}



/*============================
ページ下部コンタクト
============================*/
#contact_bnr {
	background: #333333;
	padding-top: 1.00rem;
	padding-bottom: 0.80rem;
}

@media screen and (max-width: 599px) {
	#contact_bnr {
		padding-top: 0.40rem;
		padding-bottom: 0.40rem;
	}
}

/*タイトル*/
#contact_bnr .sec_title {
	text-align: center;
	padding-bottom: 0.30rem;
}

#contact_bnr .sec_title .title_jp {
	color: #FFF;
}

#contact_bnr .sec_title .title_en {
	-webkit-text-stroke: 1px #fff;
}

#contact_bnr .text {
	text-align: center;
	font-size: 0.14rem;
	letter-spacing: 0.1em;
	line-height: 1.75;
	color: #fff;
}

@media screen and (max-width: 599px) {
	#contact_bnr .text {
		font-size: 0.13rem;
		letter-spacing: 0.05em;
	}
}

#contact_bnr .btn_large {
	padding-top: 0.50rem;
}

@media screen and (max-width: 599px) {
	#contact_bnr .btn_large {
		padding: 0.30rem 0;
		max-width: 2.95rem;
		margin: auto;
	}
}

#contact_bnr .btn_large a:hover {
	opacity: 1;
	color: #c71e0a;
}

@media screen and (max-width: 599px) {
	.contact_tel_wrap {
		text-align: center;
	}

	.contact_tel_wrap .title {
		font-size: 0.15rem;
		font-weight: 700;
		color: #FFF;
		letter-spacing: 0.075em;
		padding-bottom: 0.15rem;
	}

	.contact_tel_wrap .tel_num {
		padding-bottom: 0.10rem;
	}

	.contact_tel_wrap .tel_num a {
		color: #FFF;
		text-decoration: none;
		font-family: 'Poppins', sans-serif;
		font-size: 0.24rem;
		letter-spacing: 0.05em;
	}
}
