@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; /* 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 */
}

 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;
}
h1.title {
	display: flex;
	justify-content: center;
	background: var(--color-black);
	padding: 16px;
}
.logo {
	width: 194px;
	height: 9px;
	flex-shrink: 0;
}
.description {
	background: var(--color-lightGray);
	font-size: var(--font-md);
	line-height: 1.5;
	letter-spacing: 0.8px;
	padding: 24px 16px;
	text-align: center;
}
.contents {
	margin: 0 auto 24px;
	padding: 0 16px;
}
.event__inner {
	max-width: 358px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	align-self: stretch;
	gap: 32px;
	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: 5px;
	left: 5px;
	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;
	border-radius: 8px;
	margin: 0 auto;
	flex-shrink: 0;
}
.event__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	gap: 16px;
}
.event__item-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	gap: 16px;
}
.event__description {
	font-size: var(--font-sm);
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.7px;
}
h2.event__title {
	font-family: var(--font-family-EN);
	font-size: var(--font-xl);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 1px;
}
ul.event__schedule {
	opacity: 0.7;
	font-size: var(--font-xxs);
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 1px;
}
ul.event__schedule li:not(:last-child) {
	margin-bottom: 2px;
}
.btn__site {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 9999px;
	border: 1px solid var(--color-black);
	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, .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: 0;
}
.copyright {
	color: var(--color-white);
	font-family: var(--font-family-EN);
	padding: 48px 16px;
	font-size: var(--font-xs);
	letter-spacing: 1.2px;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
}

/* 769px以上（PC） */
@media screen and (min-width: 769px) {
	.spBr {
		display: none;
	}
	h1.title {
		padding: 24px 0;
	}
	.logo {
		width: 224px;
		height: 11px;
	}
	.description {
		padding: 24px 0;
	}
	.contents {
		margin: 24px auto;
		padding: 0;
		max-width: 1080px;
	}
	section {
		padding: 0 40px;
	}
	.event__inner {
		max-width: none;
		padding: 24px 0;
		flex-direction: row;
		align-items: flex-start;
	}
	.hero__image {
		width: 160px;
	}
	.event__item {
		flex-direction: column;
		align-items: flex-start;
		align-self: stretch;
		text-align: left;
		margin: 0;
	}
	.event__item-box {
	    align-items: normal;
    	text-align: left;	
	}
	.event__description {
		letter-spacing: 1.4px;
	}
	ul.event__schedule {
		font-size: var(--font-xs);
		letter-spacing: 1.2px;
		padding-inline-start: 14px;	/* list-style*/
	}
	ul.event__schedule li {
		list-style-type: none;
		position: relative;
	}
	ul.event__schedule li::before {
		content: url(../images/icon-spot.svg);        
		position: absolute;
		left: -14px;
		top: 2px; 
	}
	ul.event__schedule li:not(:last-child) {
		margin-bottom: 4px;
	}
	.footer__inner {
		padding-bottom: 48px;
	}
	.copyright {
		font-size: var(--font-sm);
		letter-spacing: 1.4px;
		padding: 48px 0;
	}
}