@charset "UTF-8";

:root {
	--body-bg: #000;
	--brand-purple: #1a043d;
	--brand-red: #cc0000;
	--menu-bg: rgba(0, 0, 0, 0.5);
	--text-white: #ffffff;
}

/* --- 基本設定 --- */
body, html {
	margin: 0;
	padding: 0;
#	font-family:Arial,YakuHanJP,hiragino-kaku-gothic-pron,"メイリオ",Meiryo,"游ゴシック体",YuGothic,"游ゴシック","Yu Gothic",sans-serif;
	font-family: "Times New Roman", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "MS P明朝", "MS PMincho", serif;
	background-color: var(--body-bg);
	color: var(--text-white);
	scroll-snap-type: y mandatory;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
	width: 100%;
	vertical-align: bottom;

}
.pc {
	display: block;
}
.sp {
	display:none;
}
@media only screen and (max-width: 750px) {
	.pc {
	        display:none;
	}
	.sp {
		display: block;
	}
}

/* -------------------------------------
	フローティングメニュー
----------------------------------------*/

#floating-nav {
	position: fixed;
	top: 0;
	right: 1%;
	z-index: 2000;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	width: 30%;
	max-width: 300px;
}
@media screen and (max-width: 750px) {
	#floating-nav {
		right: 0;
		width: 55%;
		max-width: 390px;
	}
}

.nav-toggle {
	width: 40px;
	height: 40px;
	background: var(--menu-bg);
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 32px;
	cursor: pointer;
	border: 1px solid rgba(255,255,255,0.2);
	backdrop-filter: blur(5px);
}

.nav-list {
	list-style: none;
	padding: 0;
	margin: 5px 0 0 0;
	display: none;
	flex-direction: column;
	gap: 0;
	width: 100%;
	overflow-y: auto;
	max-height: 90vh;
}

.nav-list span {
	color: red;
}

.nav-list.open { display: flex; }

.nav-item {
	font-family: Arial, sans-serif;
	background: var(--menu-bg);
	color: var(--text-white);
	display: flex;
	align-items: center;
	padding: 3% 5%;
	cursor: pointer;
#	font-size: 16px;
	font-size: calc(25 * 100vw / 1920);
	letter-spacing: 0.1em; transition: background 0.3s;
	backdrop-filter: blur(5px); border: none; text-align: left;
	box-sizing: border-box; justify-content: space-between;

	a {
		color: #fff;
	}
}
@media screen and (max-width: 750px) {
	.nav-item {
		font-size: calc(27 * 100vw / 750);
		padding: 3vw 5%;
	}
}

.nav-item:hover {
	background: rgba(255, 255, 255, 0.15);
}
.nav-item::after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 0 6px 10px;
	border-color: transparent transparent transparent #ffffff;
}


/* -------------------------------------
	フッター
----------------------------------------*/
footer {
	position: relative;
	z-index: 11;
}

.footer__container {
	background: #211c1d;
	width: 100%;
	padding: 1% 0;
	position: relative;
	box-sizing: border-box;

	.footer__icon-image {
		position: absolute;
		top: 50%;
		left: 2%;
		width: 6%;
		transform: translateY(-50%);
	}

	.footer__link-area {
		position: relative;
		width: 100%;
		font-size: calc(25 * 100vw / 1920);
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 5px;
	}

	a {
		color: #f36f05;
	}

	.footer__link {
		display: flex;
		flex-wrap: wrap;
		gap: 3vw;
	}
	.footer__copy {
		display: flex;
		align-items: center;
		gap: 2vw;
	}

}
@media screen and (max-width: 750px) {
	.footer__container {
		padding: 5% 0 20%;

		.footer__icon-image {
			width: 15%;
			top: 80%;
			left: 50%;
			transform: translate(-50%, -50%);
		}

		.footer__link-area {

			font-size: calc(25 * 100vw / 750);
			gap: 5vw;
		}

		.footer__link {
			flex-direction: column;
			align-items: center;
			gap: 2vw;

		}

		.footer__copy {
			flex-direction: column;
			align-items: center;
			gap: 1vw;
		}
	}
}


/* -------------------------------------
	下層ページタイトル
----------------------------------------*/
.common__page-title {
	font-family: Arial, sans-serif;
	text-align: center;
	font-size: calc(27 * 100vw / 1920);
	letter-spacing: 0.7vw;
	margin-bottom: 3%;

	img {
		margin: 0 auto 1%;
		width: 8%;
	}
}
@media screen and (max-width: 750px) {
	.common__page-title {
		font-size: calc(27 * 100vw / 750);
		letter-spacing: 0.7vw;

		img {
			width: 15%;
		}
	}
}


/* -------------------------------------
	xxxxxxxx
----------------------------------------*/






