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

.kv_park {}

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


/* =========================================================
navWrap
========================================================= */
#navparkWrap {
	box-sizing: border-box;
	width: 100%;
	height: 62px;
	background: #E5116E;
	border-bottom: solid 1px #ccc;
	margin: 0 auto;
	z-index: 999;
	position: relative;
}

@media screen and (min-width: 835px) {
	#navparkWrap.is-nav-fixed {
		position: fixed;
		top: 8rem;
		left: 0;
		width: 100%;
	}
}

#navparkWrap .navparkWrapInner {
	width: 1000px;
	margin: 0 auto;
}

#nav {
	margin: 0 auto;
	position: relative;
}

#nav::after {
	content: "";
	display: block;
	clear: both;
}

#nav .navBox {
	box-sizing: border-box;
	border-right: 1px solid #fff;
	position: relative;
	transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	float: left;
}

#nav .navBox:first-child {
	border-left: 1px solid #fff;
}

#nav .navBox .cate {
	display: table;
	box-sizing: border-box;
	width: 100%;
	height: 60px;
	font-size: 14px;
	line-height: 1.5;
	text-decoration: none;
	text-align: center;
	position: relative;
	cursor: pointer;
	z-index: auto;
}

#nav .navBox .cate img {
	vertical-align: middle;
	margin: 0 0 2px;
}

#nav .navBox .cate a {
	/*padding: 18px 49.5px 18px 49.5px;*/
	/* padding: 18px 68px 18px; */
	padding: 18px 49.6px 18px;
}

/*英語*/
.enNav #nav .navBox .cate a {
	padding: 18px 46.5px 18px;
}

/*中文簡体*/
.zhcnNav #nav .navBox .cate a {
	padding: 18px 50.8px 18px;
}

/*中文繁体*/
.zhtwNav #nav .navBox .cate a {
	padding: 18px 50.8px 18px;
}

/*韓国語*/
.koNav #nav .navBox .cate a {
	padding: 18px 57.6px 18px;
}

@-moz-document url-prefix() {

	/*firefox*/
	#nav .navBox .cate a {
		/*padding: 18px 49.7px 18px 49.7px;*/
		padding: 18px 49.6px 18px;
	}

	/*韓国語*/
	.koNav #nav .navBox .cate a {
		padding: 18px 57.5px 18px;
	}
}

#nav .navBox a {
	display: block;
	color: #fff;
}

#nav .navBox:hover:before,
#nav .navBox.is-active:before {
	content: "";
	width: 100%;
	height: 3px;
	display: inline-block;
	background: #ebd175;
	position: absolute;
	bottom: 0;
	left: 0;
}

#nav .navBox:hover {
	color: #fff;
}

#nav .navBox:hover a {
	color: #fff;
}

/*下層メニュー*/
#nav .navBox .subCate {
	position: absolute;
	top: 60px;
	left: 0;
	width: 250px;
	color: #655121;
	background: #000;
	visibility: hidden;
	opacity: 0;
	z-index: auto;
	transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

#nav .navBox:hover .subCate,
#nav .navBox.is-active .subCate {
	top: 60px;
	visibility: visible;
	opacity: 1;
}

#nav .navBox .subCate li {
	background-color: #000;
	border-bottom: 1px solid #555;
	position: relative;
	text-align: left;
}

#nav .navBox:last-of-type .subCate {
	left: auto;
	right: -1px;
}

.enNav #nav .navBox .subCate li a,
.zhcnNav #nav .navBox .subCate li a,
.zhtwNav #nav .navBox .subCate li a,
.koNav #nav .navBox .subCate li a,
#nav .navBox .subCate li a {
	display: block;
	width: 100%;
	font-size: 13px;
	font-weight: 400;
	color: #fff;
	background: url(../../images/shared/arrow_left_wh.png) no-repeat center right 10px;
	background-size: 6px auto;
	padding: 12px 30px 12px 20px;
	transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

#nav .navBox .subCate li a:hover {
	color: #fff;
	-ms-filter: "alpha( opacity=70 )";
	filter: alpha(opacity=70);
	opacity: 0.7;
}

#nav .navBox .subCate li.nav_blank a {
	background: url(../../images/shared/ico_blank_wh.png) no-repeat center right 10px;
	background-size: 10px auto;
}

@media screen and (max-width: 834px) {
	#navparkWrap .navparkWrapInner {
		width: 100%;
	}

	#navparkWrap {
		box-sizing: border-box;
		width: 100%;
		height: auto;
		background: #fff;
		border-bottom: solid 1px #ccc;
		margin: 0 auto;
		display: block;
		position: relative;
		top: auto;
	}

	#nav .navBox:hover .subCate,
	#nav .navBox.is-active .subCate {
		visibility: hidden !important;
		opacity: 0 !important;
		transition: none !important;
	}

	/* 2. JSでクラスがついた時だけ、強制的に表示させる */
	#nav .navBox .subCate.is-modal-active {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
		position: fixed !important;
		/* モーダル配置を維持 */
		z-index: 99999 !important;
	}

	.navBox {
		display: inline-block;
		width: 50%;
		/* 2列に並べる場合 */
		vertical-align: top;
	}

	.navBox:last-child {
		width: 100%;
	}

	#nav .navBox .cate {
		height: auto;
	}

	#nav .navBox .cate a {
		padding: 14px 0 14px;
	}

	.cate a {
		display: block;
		background: #e60073;
		/* 公園のピンク */
		color: #fff;
		padding: 15px 5px;
		margin: 2px;
		text-align: center;
		font-size: 14px;
		border-radius: 0px;
	}



	/* 子メニュー（モーダル本体） */
	/* top: 50% !important; → JSで動的に設定するため削除（navBar直下に配置） */
	/* transform: translate(-50%, -50%); → 縦オフセットなしのtranslateX(-50%)に変更 */
	/* padding-top: 50px → ×ボタンをモーダル内側（top:10px）に収めるためのスペース確保 */
	#nav .navBox .subCate {
		display: none;
		/* 初期は非表示 */
		position: fixed;
		/* top は JS で #navparkWrap の下端から動的に設定 */
		top: auto;
		left: 50%;
		transform: translateX(-50%);
		width: 90%;
		max-width: none;
		background: #000;
		/* 黒背景 */
		z-index: 10001;
		padding: 50px 20px 20px;
		border-radius: 0px;
		transition: none;
		-webkit-transition: none;
		overflow-y: auto;
	}

	#nav .navBox .subCate {
		z-index: 10001;
	}

	.subCate li a {
		color: #fff;
		padding: 15px;
		border-bottom: 1px solid #333;
		display: block;
		text-align: left;
	}

	/* 背景の暗幕（オーバーレイ） */
	#modal-overlay {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.6);
		z-index: 100;
	}

	.enNav #nav .navBox .subCate li a,
	.zhcnNav #nav .navBox .subCate li a,
	.zhtwNav #nav .navBox .subCate li a,
	.koNav #nav .navBox .subCate li a,
	#nav .navBox .subCate li a {
		padding: 14px 30px 14px 20px;
		font-size: 14px;
	}

	.subCate {
		/* 他のプロパティに加え、以下を適用 */
		position: fixed !important;
		z-index: 99999 !important;
	}

	/* before疑似要素で×ボタンを作成 */
	/* top: -45px → モーダル外側（navBarに被る）から内側 top:10px に変更 */
	#nav .navBox .subCate::before {
		content: "×";
		position: absolute;
		top: 10px;
		right: 10px;
		width: 34px;
		height: 34px;
		background: none;
		color: #FFF;
		border: 1px solid #fff;
		border-radius: 50%;
		text-align: center;
		line-height: 30px;
		font-size: 22px;
		font-weight: bold;
		z-index: 10005;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
		cursor: pointer;
		display: block;
	}

	/* =========================================================
	gNavBox内に挿入する公園cateナビ（スマホ用）
	========================================================= */
	.parkCateInGNav {
		width: 330px;
		margin: 0 auto 3rem;
	}

	.pgn-item {
		border-top: 1px solid rgba(255, 255, 255, 0.2);
	}

	.pgn-item:last-child {
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}

	.pgn-header {
		background: none;
		border: none;
		color: #fff;
		width: 100%;
		text-align: left;
		padding: 12px 30px 12px 0;
		font-size: 1.5rem;
		cursor: pointer;
		position: relative;
	}

	.pgn-header::after {
		content: "+";
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		font-size: 1.8rem;
	}

	.pgn-header.is-open::after {
		content: "−";
	}

	.pgn-item>a {
		display: block;
		color: #fff;
		padding: 12px 0;
		font-size: 1.5rem;
	}

	.pgn-sub {
		display: none;
		padding: 0 0 10px;
	}

	.pgn-sub li a {
		color: rgba(255, 255, 255, 0.8);
		font-size: 1.4rem;
		display: block;
		padding: 8px 0 8px 15px;
	}
}