@charset "utf-8";
/* CSS Document */

:root {
	--color-black: #222;
	--color-white: #FFFFFF;
	--color-lightGray: #F5F5F5;
	--color-gray: #878E96;
	--font-family-JP: "Pretendard JP", -apple-system, blinkmacsystemfont, "segoe ui", helvetica neue, Meiryo, sans-serif; /* Pretendard JP */
	--font-family-EN: "Barlow", sans-serif; /* Barlow */
	--font-xs: 0.75rem;    /* 12px */
	--font-sm: 0.875rem;   /* 14px */
	--font-md: 1rem;       /* 16px */
	--font-lg: 1.25rem;    /* 20px */
	--font-xl: 1.875rem;   /* 30px */
}
html {
	min-width: 300px;
	overflow-x: auto;
}
a {
	text-decoration: none;
}
a, button {
	-webkit-tap-highlight-color: transparent;
}
body {
	color: var(--color-black);
	font-family: var(--font-family-JP);
	font-style: normal;
	font-weight: 400;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
main {
	flex: 1;
}

/* =====================
header
======================== */
header {
	background: var(--color-black);
}
h1 {
	width: 194px;
	height: 9px;
	aspect-ratio: 194/9;
	background-image: url('../images/logo.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	margin: 16px auto;
}
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.logo {
	width: 194px;
	height: 9px;
	flex-shrink: 0;
}

/* =====================
policy__content
======================== */
.policy__content {
	margin: 24px auto;
	padding: 0 16px;
}
.policy__inner {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 48px 0;
}
.policy__main-title {
	color: var(--color-black);
	font-size: var(--font-lg);
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 1px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(34, 34, 34, 0.40);
}
.policy__section {
	opacity: 0.7;
}
.policy__section-inner {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.policy__text-group {
	display: flex;
	flex-direction: column;
	gap: 21px;
}
.policy__section-title,
.policy__text,
.policy__item {
	font-size: var(--font-sm);
	line-height: 1.5;
}
.policy__section-title {
	letter-spacing: 1.4px;
	font-weight: 700;
	margin-bottom: 8px;
}
.policy__text,
.policy__item {
	letter-spacing: 1.4px;
}

/* bullet list */
.policy__list--definition {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.policy__list {
	list-style: none;
	padding-inline-start: 16px;
}
.policy__list .policy__item {
	position: relative;
}
.policy__list .policy__item::before {
	content: "";
	width: 4px;
	height: 4px;
	background: var(--color-black);
	border-radius: 50%;
	position: absolute;
	left: -12px;
	top: 0.6em;
}

/* ********************* */

/* table */
.table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}
.table__header,
.table__cell {
	font-size: var(--font-sm);
	letter-spacing: 1.4px;
	line-height: 1.5;
	border: 1px solid var(--color-black);
	padding: 4px 8px;
	vertical-align: middle;
	white-space: normal;
	word-wrap: break-word;
}
.table__header {
	text-align: center;
	font-weight: 700;
}
.table__cell {
	text-align: left;
}
/* 5th line */
.table__header:nth-child(5),
.table__cell:nth-child(5) {
	width: 30%;
}
/* 1st to 4th line */
.table__header:nth-child(-n+4),
.table__cell:nth-child(-n+4) {
	width: 17.5%;
}
/* ********************* */

.link {
	text-decoration: underline;
	word-wrap:break-word;
}
.button-setting {
	display: flex;
	width: 178px;
	height: 48px;
	padding: 10px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	background: var(--color-black);
	color: var(--color-white);
	font-size: var(--font-sm);
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 1.6px;
	border-radius: 999px;
	margin: 0 auto;
	transition: 0.5s;
	border: 1px solid transparent;
}
.button-setting:hover {
	background: none;
	color: var(--color-black);
	border: 1px solid var(--color-black);
	transition: 0.5s;
}

/* =====================
footer
======================== */
footer::before {
    content: '';
    height: 4px;
    width: 100%;
    background: rgb(34 34 34 / 8%);
    display: block;
    border-top: 1px rgb(34 34 34 / 16%) solid;
}
.footer__inner {
	background: var(--color-black);
	padding: 0;
}
.footer-nav {
	padding: 48px 16px;
	opacity: 0.5;
}
.footer-nav__list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}
.footer-nav__item {
	color: var(--color-white);
	font-family: var(--font-family-EN);
	font-size: var(--font-xs);
	letter-spacing: 1.2px;
	font-weight: 400;
	line-height: 1.5;
}
.footer-nav__item--events a::before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url('../images/icon-home.svg');
	background-size: contain;
	background-repeat: no-repeat;
}
.footer-nav__item--events a {
	display: flex;
	align-items: center;
}
.footer-nav__item--terms-policy {
	display: flex;
    align-items: center;
}
.footer-nav__item--terms-policy span {
    width: 0.8px;
    height: 12px;
    background: rgb(255 255 255 / 30%);
    display: block;
    margin: 0 8px;
}

/* 769px以上（PC） */
@media screen and (min-width: 769px) {
	/* header */
	h1 {
		width: 224px;
		height: 11px;
		aspect-ratio: 224/11;
		margin: 24px auto;
	}

	/* policy__content */
	.policy__content {
		margin: 48px auto;
		padding: 0;
		max-width: 1080px;
	}
	.policy__inner {
		max-width: none;
		gap: 48px;
		padding: 48px 40px;
	}
	.policy__main-title {
		font-size: var(--font-xl);
		letter-spacing: 1.5px;
		padding-bottom: 24px;
	}
	.policy__section-title,
	.policy__text,
	.policy__item {
		font-size: var(--font-md);
		line-height: 1.5;
		letter-spacing: 0.8px;
	}
	.policy__section-title {
		letter-spacing: 1.6px;
	}
	.policy__text-group {
		gap: 24px;
	}
	.policy__list {
		padding-inline-start: 22px;
	}
	.policy__list .policy__item::before {
		left: -14px;
	}
	.table__header,
	.table__cell {
		font-size: var(--font-md);
	}
	.table__header {
		letter-spacing: 1.6px;
	}
	.table__cell {
		letter-spacing: 0.8px;
	}
	/* 5th line */
	.table__header:nth-child(5),
	.table__cell:nth-child(5) {
		width: auto;
	}
	/* 1st to 4th line */
	.table__header:nth-child(-n+4),
	.table__cell:nth-child(-n+4) {
		width: auto;
	}
	.button-setting {
		font-size: var(--font-md);
		width: 312px;
	}
}

/* footer 890px以上（PC） */
@media screen and (min-width: 890px) {
	.footer-nav {
		padding: 48px 40px;
	}
	.footer-nav__list {
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		align-items: center;
		gap:0;
	}
	.footer-nav__item--events {
		order: 1;
		justify-self: start;
		text-align: left;
	}
	.footer-nav__item--corp {
		order: 2;
		justify-self: center;
		text-align: center;
	}
	.footer-nav__item--terms-policy {
		order: 3;
		justify-self: end;
		text-align: right;
	}
}