/*========================
body（スマホメニューオープン時）
========================*/
@media screen and (max-width: 499px) {
	body.menu_active {
		overflow: hidden;
	}
}

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

@media screen and (max-width: 499px) {
	header {
		padding: 0.15rem;
		background-color: rgba(255, 255, 255, 0.85);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		min-width: auto;
	}
}

/*スクロール時 */
header.hide {
	transform: translateY(-1.20rem);
}


/* ロゴ */
header .logo {
	width: 1.56rem;
}

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

/* ナビゲーション */
header .glo_nav .nav_list {
	display: flex;
	flex-wrap: wrap;
}

@media screen and (max-width: 499px) {
	header .glo_nav .nav_list {
		padding: 0.50rem 0 1.80rem;
		justify-content: center;
		height: calc(100vh - 0.60rem);
		box-sizing: border-box;
/*		align-items: center;*/
	}
}

header .glo_nav .nav_list .text,
header .glo_nav .nav_list .tel {
	font-size: 0.16rem;
	letter-spacing: 0.05em;
	font-weight: 600;
	font-family: 'Jost', sans-serif;
	margin-left: 0.30rem;
}

header .glo_nav .nav_list .text:first-child {
	margin-left: 0;
}


@media screen and (max-width: 499px) {
	header .glo_nav .nav_list .text {
		width: 100%;
		margin: 0;
		text-align: center;
		margin-bottom: 0.10rem;
		line-height: 1;
	}
}

header .glo_nav .nav_list .text a,
header .glo_nav .nav_list .tel a {
	color: #111;
	text-decoration: none;
	position: relative;
}

header .glo_nav .nav_list .text a::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #333;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}

header .glo_nav .nav_list .text a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}

header .glo_nav .nav_list .text.active a:after {
	transform-origin: left top;
	transform: scale(1, 1);
}

/* TELリンク */
header .glo_nav .nav_list .tel {
	position: relative;
	top: -0.08rem;
}

header .glo_nav .nav_list .tel::before {
	content: "";
	width: 0.21rem;
	height: 0.21rem;
	display: inline-block;
	background-image: url(../img/icon_tel.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	padding-left: 0.36rem;
	position: relative;
	top: 0.04rem;
}

/* IE11 */
@media all and (-ms-high-contrast: none) {
	header .glo_nav .nav_list .tel::before {
		margin-left: -0.20rem;
	}
	header .glo_nav .nav_list .tel a {
		padding-left: 0.20rem;
	}
}


header .glo_nav .nav_list .tel::after {
	content: "";
	width: 1px;
	height: 0.40rem;
	position: absolute;
	left: 0.40rem;
	top: -0.04rem;
	background-color: #111;
}


/* SNSアイコン */
header .glo_nav .nav_list .sns {
	margin-left: 0.30rem;
	position: relative;
	top: -0.08rem;
	font-size: 0.16rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
}
header .glo_nav .nav_list .sns a{
    color: #111;
    text-decoration: none;
    position: relative;
}

@media screen and (max-width: 499px) {
	header .glo_nav .nav_list .sns {
		margin: 0.10rem 0.15rem;
		position: relative;
		top: 0;
	}
}

header .glo_nav .nav_list .sns a:hover {
	opacity: 0.7;
}

header .glo_nav .nav_list .sns img {
	display: inline-block;
	width: 0.22rem;
}

/* LINEバナー（スマホ時） */
.line_bnr {
	width: calc(100% - 0.40rem);
	position: fixed;
	left: 0.20rem;
	bottom: 0.20rem;
	z-index: 10;
}

.line_bnr a {
	display: block;
	text-align: center;
	background-color: #00B900;
	padding: 0.10rem;
	border-radius: 0.25rem;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.line_bnr a img {
	display: block;
	margin: auto;
	width: 1.80rem;
}

/* スマホ時のTELボタン */
header .sp_tel_btn {
	width: 0.36rem;
	height: 0.30rem;
	position: absolute;
	right: 0.55rem;
	top:0.15rem;
	border-right: 1px solid #111;
}

header .sp_tel_btn a {
	width: 0.20rem;
	height: 0.20rem;
	display: block;
	position: relative;
	top:0.05rem;
}

/*========================
コンテンツ初期設定
========================*/
main {
	margin-top: 1.07rem;
	display: block;
}

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

/*========================
共通タイトル
========================*/
.sec_title {
	font-family: 'Jost', sans-serif;
	font-size: 0.15rem;
	font-weight: 700;
	letter-spacing: 0.20em;
	margin-bottom: 0.30rem;
	position: relative;
}

@media screen and (max-width: 499px) {
	.sec_title {
		font-size: 0.13rem;
		padding-left: 0.20rem;
	}
}

.sec_title span {
	position: relative;
}

/* 線が左にはみ出るパターン */
.sec_title.line_left span::before {
	content: "";
	display: block;
	width: 0.16rem;
	height: 1px;
	background-color: #111;
	position: absolute;
	left: -0.30rem;
	bottom: 0;
}

@media screen and (max-width: 499px) {
	.sec_title.line_left span::before {
		width: 0.10rem;
		left: -0.20rem;
	}
}

/* 線が下くるパターン */
.sec_title.under_line {
	margin-bottom: 0.42rem;
}

.sec_title.under_line span::before {
	content: "";
	display: block;
	width: 0.16rem;
	height: 1px;
	background-color: #111;
	position: absolute;
	left: 50%;
	bottom: -0.12rem;
	transform: translateX(-50%);
}

@media screen and (max-width: 499px) {
	.sec_title.under_line span::before {
		width: 0.10rem;
	}
}

/* センター揃え */
.sec_title.center {
	text-align: center;
}

/*========================
アクセス
========================*/
#access {
	position: relative;
}

#access::before {
	content: "";
	display: block;
	width: calc(100% - 1.00rem);
	height: 42.85vw;
	min-height: 5.00rem;
	max-height: 6.00rem;
	background-image: url(../img/footer_access_mv.jpg);
	background-position: center center;
	background-size: cover;
}

@media screen and (max-width: 499px) {
	#access::before {
		width: calc(100% - 0.20rem);
		height: 53.33vw;
		min-height: auto;
		max-height: auto;
	}
}

#access .access_info_wrap {
	padding: 0.70rem 0 1.20rem;
	font-size: 0.15rem;
	line-height: 2;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

@media screen and (max-width: 499px) {
	#access .access_info_wrap {
		padding: 0.30rem 0 0;
	}
}

#access .access_info_wrap .textbox {
	width: 100%;
	max-width: 4.00rem;
}

#access .access_info_wrap .access_table th {
	text-align: left;
	font-weight: 400;
	padding-top: 0.20rem;
	padding-right: 0.24rem;
}

#access .access_info_wrap .access_table td {
	padding-top: 0.20rem;
}

#access .access_info_wrap .access_table td a {
	color: #111;
}

#access .access_info_wrap .access_tel {
	padding-top: 20px;
	font-size: 0.21rem;
	letter-spacing: 0.10em;
	font-family: 'Jost', sans-serif;
}

@media screen and (max-width: 499px) {
	#access .access_info_wrap .access_tel {
		text-align: center;
	}
}

#access .access_info_wrap .access_tel a {
	color: #111;
	text-decoration: none;
}

#access .access_info_wrap .access_sns_warp {
	padding-top: 20px;
}

#access .access_info_wrap .access_sns_warp .list {
	display: flex;
	flex-wrap: wrap;
}

@media screen and (max-width: 499px) {
	#access .access_info_wrap .access_sns_warp .list {
		justify-content: center;
		margin-bottom: 0.30rem;
	}
}

#access .access_info_wrap .access_sns_warp .list .sns {
	margin-right: 0.36rem;
	width: 0.26rem;
}

@media screen and (max-width: 499px) {
	#access .access_info_wrap .access_sns_warp .list .sns {
		margin-right: 0.26rem;
		margin-right: 0.26rem;
		width: 0.26rem;
	}
}

/* GoogleMap */
#access .access_info_wrap .access_map {
	width: 100%;
	max-width: 6.50rem;
	height: 4.40rem;
}

@media screen and (max-width: 499px) {
	#access .access_info_wrap .access_map {
		width: 100vw;
		margin-left: -0.20rem;
		margin-right: -0.20rem;
		height: 2.40rem;
	}
}

#access .access_info_wrap .access_map iframe {
	width: 100%;
	height: 100%;
}

/*========================
フッター
========================*/
footer {
	background-color: #332B25;
	color: #FFF;
}

footer .in {
	padding: 0.80rem 0.40rem;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

@media screen and (max-width: 499px) {
	footer .in {
		padding: 0.35rem 0;
		display: block;
	}
}

/* ロゴ */
footer .in .logo {
	width: 1.56rem;
}

@media screen and (max-width: 499px) {
	footer .in .logo {
		width: 0.80rem;
		margin: auto;
	}
}

/* ナビゲーション */
footer .in .footer_nav_wrap {
	width: 60%;
}

footer .in .footer_nav_wrap .footer_nav {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
}

footer .in .footer_nav_wrap .footer_nav .text {
	margin-left: 0.50rem;
	margin-bottom: 0.44rem;
}

footer .in .footer_nav_wrap .footer_nav .text a,
footer .in .footer_nav_wrap .footer_nav .tel a {
	color: #FFF;
	text-decoration: none;
	position: relative;
	font-size: 0.16rem;
	letter-spacing: 0.10em;
	font-weight: 400;
	font-family: 'Jost', sans-serif;
}

footer .in .footer_nav_wrap .footer_nav .text a::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #FFF;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}

footer .in .footer_nav_wrap .footer_nav .text a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}

/* TELリンク */
footer .in .footer_nav_wrap .footer_nav .tel {
	position: relative;
	top: -0.08rem;
}

footer .in .footer_nav_wrap .footer_nav .tel::before {
	content: "";
	width: 0.21rem;
	height: 0.21rem;
	display: inline-block;
	background-image: url(../img/icon_tel_w.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	padding-left: 0.36rem;
	position: relative;
	top: 0.04rem;
}

footer .in .footer_nav_wrap .footer_nav .tel::after {
	content: "";
	width: 1px;
	height: 0.40rem;
	position: absolute;
	left: 0.40rem;
	top: -0.04rem;
	background-color: #FFF;
}

/* IE11 */
@media all and (-ms-high-contrast: none) {
	footer .in .footer_nav_wrap .footer_nav .tel::before {
		margin-left: -0.20rem;
	}
	footer .in .footer_nav_wrap .footer_nav .tel a {
		padding-left: 0.20rem;
	}
}


/* SNSアイコン */
footer .in .footer_nav_wrap .footer_nav .sns {
	margin-left: 0.30rem;
	position: relative;
	top: -0.04rem;
}

footer .in .footer_nav_wrap .footer_nav .sns a:hover {
	opacity: 0.7;
}

footer .in .footer_nav_wrap .footer_nav .sns img {
	display: block;
	width: 0.22rem;
}

/* Mailアイコン */
footer .in .footer_nav_wrap .footer_nav .mail {
	margin-left: 0.30rem;
	position: relative;
	top: -0.02rem;
}

footer .in .footer_nav_wrap .footer_nav .mail a:hover {
	opacity: 0.7;
}

footer .in .footer_nav_wrap .footer_nav .mail img {
	display: block;
	width: 0.26rem;
}

/* SPのみ */
.sp_footer_nav {
	width: 2.24rem;
	margin: auto;
}

.sp_footer_nav .tel_wrap {
	padding: 0.30rem 0;
}

.sp_footer_nav .tel_wrap a {
	display: block;
	color: #FFF;
	text-decoration: none;
}

.sp_footer_nav .tel_wrap a dl {
	display: flex;
	justify-content: space-between;
	border: 1px solid #FFF;
	font-family: 'Jost', sans-serif;
	font-size: 0.18rem;
	text-align: center;
	align-items: center;
}

.sp_footer_nav .tel_wrap a dt {
	width: 0.40rem;
	box-sizing: border-box;
	padding: 0.12rem;
	border-right: 1px solid #FFF;
}

.sp_footer_nav .tel_wrap a dd {
	width: calc(100% - 0.42rem);
	text-align: center;
}

.sp_footer_nav .sns_nav_wrap .list {
	display: flex;
	justify-content: center;
}

.sp_footer_nav .sns_nav_wrap .list .sns {
	width: 0.22rem;
	margin: 0 0.16rem;
}

.sp_footer_nav .sns_nav_wrap .list .mail {
	width: 0.27rem;
	margin: 0 0.16rem;
	padding-top: 0.02rem;
}

/* コピーライト */
footer .copyright {
	font-family: 'Jost', sans-serif;
	text-align: center;
	background-color: #FFF;
	padding: 0.20rem;
	color: #111;
}

@media screen and (max-width: 499px) {
	footer .copyright {
		padding-bottom: 0.90rem;
	}
}
