@charset "utf-8";
/* CSS Document */

:root {
	--color-black: #222;
	--color-white: #FFFFFF;
	--color-lightGray: #F5F5F5;
	--color-gray: #878E96;;
	--color-EN-: #4372DD;
	--font-family-JP: "Pretendard JP", -apple-system, blinkmacsystemfont, "segoe ui", helvetica neue, Meiryo, sans-serif; /* Pretendard JP */
	--font-family-EN: Barlow; /* Barlow */
	--font-xxs: 0.625rem; /* 10px */
	--font-xs: 0.75rem;   /* 12px */
	--font-sm: 0.875rem;  /* 14px */
	--font-md: 1rem;      /* 16px */
	--font-lg: 1.125rem;  /* 18px */
	--font-xl: 1.25rem; /* 20px */
	--font-2xl: 2.25rem; /* 36px */
}
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 {
	background-color: var(--color-black);
}
.header__inner {
	padding: 16px;
	width: 100%;
}
.logo {
	display: block;
	flex-shrink: 0;
	width: 112.205px;
	height: 16px;
	margin: 2px auto;
}
.contents {
	padding: 0 16px;
}
.event__inner {
	max-width: 358px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	align-self: stretch;
	gap: 12px;
	padding: 24px 0;
	border-bottom: solid 1px var(--color-lightGray);
}
section:last-child .event__inner {
	border-bottom: none;
}
.hero {
	position: relative;
}

/* 終了イベント */
.event-end .hero::before {
	content: '終了';
	height: 22px;
	position: absolute;
	top: 10px;
	left: 10px;
	color: var(--color-white);
	font-size: var(--font-xs);
	line-height: 1.5;
	letter-spacing: 1.2px;
	padding: 2px 8px;
	background: var(--color-gray);
	border-radius: 4px;
	font-family: var(--font-family-JP);
}
/* */

.hero__image {
	width: 240px;
	height: auto;
	display: block;
	margin: 0 auto;
	border-radius: 8px;
	flex-shrink: 0;
}
.event__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	gap: 12px;
}
.event__item-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}
h2.event__title {
	font-family: var(--font-family-EN);
	font-size: var(--font-xl);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 1px;
}
.event__description {
	font-size: var(--font-sm);
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.7px;
	padding: 20px 0;
	order: 3;
}
.event__schedule {
	opacity: 0.7;
	font-size: var(--font-xs);
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 1.2px;
} 
.event__schedule li:not(:last-child) {
	margin-bottom: 2px;
}
.event__schedule li::before {
	display: none;
}
.btn__site {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 9999px;
	border: 1px solid var(--color-black);
	width: fit-content;
	height: 48px;
	padding: 0 24px 0 32px;
	gap: 8px;
}
.btn__site p {
	font-family: var(--font-family-EN);
	font-size: var(--font-sm);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 1.4px;
}
.btn__site:hover {
	background: var(--color-black);
}
.btn__site:hover p, a.btn__site:hover svg {
	color: var(--color-white);
}
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: 24px 16px;
}
.footer__box {
	padding: 24px 0;
	display: grid;
	gap: 12px;
}
.footer__logo {
	height: 20px;
	width: auto;
	margin: 0 auto;
}
.copyright {
	color: var(--color-white);
	font-family: var(--font-family-EN);
	padding: 0;
	font-size: var(--font-xs);
	letter-spacing: 1.2px;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
}
.btn__official {
	background: var(--color-EN-);
	border-radius: 999px;
	color: var(--color-white);
	font-family: var(--font-family-EN);
	font-size: var(--font-xs);
	letter-spacing: 1.2px;
	line-height: 1.25;
	font-weight: 700;
	padding: 6px 6px 6px 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: stretch;
	width: fit-content;
	gap: 12px;
}
.btn__official .icon-arrow {
	background: var(--color-white);
	border-radius: 999px;
	padding: 4px;
	width: 20px;
	height: 20px;
}
.btn__official:hover {
	opacity: 0.8;
}
.btn__official .icon-arrow svg {
	vertical-align: unset;
}
.sp__only {
	margin: 0 auto;
}
.pc__only {
	display: none;
}

/* 769px以上（PC） */
@media screen and (min-width: 769px) {
	.header__inner {
		display: flex;
		max-width: 1080px;
		margin: 0 auto;
		padding: 40px;
		justify-content: space-between;
		align-items: center;
		align-self: stretch;
	}
	.logo {
		width: 224.411px;
		height: 32px;
	}
	.btn__official {
		display: flex;
		font-size: var(--font-md);
		letter-spacing: 1.6px;
		padding: 6px 6px 6px 32px;
		width: 236px;
		gap: 24px;
	}
	.btn__official .icon-arrow {
		padding: 6px;
		width: 36px;
		height: 36px;
	}
	.contents {
		margin: 0 auto 48px;
		padding: 0;
		max-width: 1080px;
	}
	section {
		padding: 0 40px;
	}
	.event__inner {
		max-width: none;
		align-items: stretch;
		padding: 48px 0;
		flex-direction: row;
		gap: 32px;
	}
	/* 終了イベント */
	.event-end .hero::before {
		height: 27px;
		font-size: var(--font-sm);
		letter-spacing: 1.4px;
		padding: 3px 10px;
		border-radius: 8px;
	}
	/*  */
	.hero__image {
		width: 312px;
		border-radius: 16px;
		height: auto;
		align-self: flex-start;
	}
	.event__item {
		justify-content: space-between;
		gap: 16px;
		max-width: none;
		align-items: stretch;
		text-align: left; 
	}
	.event__item-box {
		align-items: flex-start;
		gap: 16px;
		align-self: stretch;	
	}
	h2.event__title {
		font-size: var(--font-2xl);
		letter-spacing: 1.8px;
	}
	.event__description {
		letter-spacing: 1.4px;
		order: unset;
		padding: 0;
	}
	.event__schedule {
		font-size: var(--font-sm);
		letter-spacing: 1.4px;
		padding-inline-start: 20px;	/* list-style*/
	}
	.event__schedule li {
		list-style-type: none;
		position: relative;
		text-align: left;
	}
	.event__schedule li::before {
		content: url(../images/icon-spot.svg);
		display: block;       
		position: absolute;
		left: -20px;
		top: 2px; 
	}
	.event__schedule li:not(:last-child) {
		margin-bottom: 4px;
	}
	.btn__site p {
		font-size: var(--font-md);
		line-height: 1.25;
		letter-spacing: 1.6px;
	}
	.footer__inner {
		padding: 48px 0;
	}
	.footer__box {
		padding: 0;
		gap: 16px;
	}
	.footer__logo {
		height: 32px;
	}
	.copyright {
		font-size: var(--font-sm);
		letter-spacing: 1.4px;
		padding: 0 0 48px;
	}
	.sp__only {
		display: none;
	}
}
