@charset "utf-8";
/* CSS Document */

/*==========
変数
==========*/
:root {
	--bg_color1: rgba(0, 0, 0, 0.3);
	--bg_color2: #F3F3F3;
	--font_color1: #FFF;
	--font_color2: #B9A263;
	--border_color1: #47413c;
	--footer_color: #330808;
	--a_color: #29A6FF;
	--a_hover_color: #B9A263;
}

/*==========
基礎
==========*/
html {
	font-size: 62.5%;
	scroll-behavior: smooth;
	height: 100%;
	overflow-x: hidden;
}

body {
	font-family: "Noto Serif JP", serif;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1;
	color: var(--font_color1);
	font-feature-settings: "palt"1;
	-webkit-text-size-adjust: 100%;
	background-color: #000;
	position: relative;
	margin: 0;
	overflow-wrap: break-word;
	min-height: 100svh;
}

body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-image: url("../img/bg.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
	pointer-events: none;
}

a {
	color: var(--a_color);
	text-decoration: none;
}

a:hover,
a:active {
	color: var(--a_hover_color);
}

img {
	max-width: 100%;
	height: auto;
}

.wrap {
	width: 100%;
	background-color: var(--bg_color1);
}

.container {
	padding: 0 15px;
}

@media (min-width: 768px) {
	body {
		font-size: 1.65rem;
	}

	.wrap {
		width: 600px;
		background-color: rgba(0, 0, 0, 0.75);
		margin: 0 auto;
	}

}

.section_title {
	font-size: 4.2rem;
	font-weight: 600;
	color: var(--font_color2);
	text-align: center;
	margin-bottom: 3rem;
}

@media (min-width: 768px) {
	.section_title {
		font-size: 4.8rem;
		margin-bottom: 5rem;
	}

}


/*==========
フッター
==========*/
.site_footer {
	background-color: var(--footer_color);
	padding: 42px 0 12px;
}

.site_footer .footer_logo {
	width: 24%;
	margin-inline: auto;
}

.footer_text_link {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 24px;
	margin-top: 4rem;
}

.footer_text_link li {
	margin-bottom: 3rem;
}

.footer_text_link li a {
	color: #FFF;
	font-weight: 600;
}

.footer_text_link li a:hover,
.footer_text_link li a:active {
	color: var(--a_hover_color);
}

.site_footer_copyright {
	font-size: 1.35rem;
	color: #FFF;
	text-align: center;
	margin-top: 4rem;
}

@media (min-width: 768px) {
	.site_footer {
		width: 600px;
		margin: 0 auto;
	}
}




/*==========
利用規約ページ
==========*/
.term {
	padding: 5rem 0 10rem;
}

.term h1 {
	font-size: 2.4rem;
	font-weight: 600;
	inline-size: fit-content;
	margin-inline: auto;
	background: linear-gradient(transparent 50%, var(--main_color) 50%);
	padding: 0px 12px 9px;
}

.term p {
	font-size: 1.6rem;
	line-height: 1.75;
	margin-top: 3rem;
}

@media (min-width: 768px) {
	.term p {
		font-size: 1.8rem;
		line-height: 1.9;
		margin-top: 4.5rem;
	}
}

.term .section_link {
	margin-top: 5rem;
}

.section_link {
	display: grid;
	place-items: center;
	background-color: var(--main_color);
	height: 66px;
	width: 78vw;
	max-width: 420px;
	margin: 0 auto;
	border-radius: 50vmax;
}

.section_link span {
	color: #000;
	font-weight: 700;
}
