@charset "utf-8";
/***** 全体 *****/
.l-wrap__r {
	background-color: #fff;
	padding: 3.2rem;
	min-height: 1000px;
}

.c-item {
	margin-bottom: 3.2rem;
}

.c-item__in {
	margin-bottom: 2.4rem;
}

.c-item:last-child,
.c-item__in:last-child {
	margin-bottom: 0;
}

@media screen and (max-width:768px) {
	.l-wrap__r {
		padding: 1.6rem;
		min-height: 400px;
	}
}

/***** 準備中ページ *****/
.c-under__txt {
	display: flex;
	align-items: center;
	min-height: 200px;
	margin-left: 100px;
	font-size: 1.8rem;
}

@media screen and (max-width:768px) {
	.c-under__txt {
		font-size: 1.6rem;
		margin-left: 3.2rem;
	}
}

/***** 見出し *****/
.c-title__main {
	font-family: "Noto Serif", serif;
	font-size: 2.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #fff;
	margin-bottom: 3.2rem;
	padding: 1.2rem 1.6rem;
	border-radius: 5px;
	border-left: 8px solid var(--sub-color);
	border-right: 8px solid var(--sub-color);
	background-color: var(--base-color);
}

.c-title__large {
	font-family: "Noto Serif", serif;
	font-size: 2.2rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin-bottom: 2.4rem;
	padding: 0 0 0.5rem 1.6rem;
	border-bottom: 1px solid var(--base-color);
	position: relative;
}

.c-title__large::before {
	content: "";
	display: block;
	width: 5px;
	height: 100%;
	background: linear-gradient(to bottom, var(--sub-color), var(--base-color));
	position: absolute;
	bottom: 0;
	left: 0;
}

.c-title__medium {
	font-family: "Noto Serif", serif;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 2rem;
	padding-left: 1rem;
	border-left: 8px double var(--base-color);
}

.c-title__small {
	font-family: "Noto Serif", serif;
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 1.6rem;
	padding-left: 2rem;
	background-image: repeating-linear-gradient(45deg, var(--sub-color) 0, var(--sub-color) 3px, transparent 3px, transparent 5px);
	background-repeat: no-repeat;
	background-size: 14px 14px;
	background-position: top 0.5em left;
}

.c-title__sub {
	font-family: "Noto Serif", serif;
	font-weight: 700;
	margin: 1rem 0 1.6rem;
	color: var(--sub-color);
}

@media screen and (max-width:768px) {
	.c-title__main {
		font-size: 2rem;
		margin-bottom: 2.4rem;
		padding: 0.8rem 1rem;
		border-width: 6px;
	}
	
	.c-title__large {
		font-size: 1.8rem;
		margin-bottom: 1.6rem;
	}
	
	.c-title__medium {
		font-size: 1.8rem;
		margin-bottom: 1.6rem;
	}
	
	.c-title__small {
		font-size: 1.6rem;
		margin-bottom: 1rem;
	}
	
	.c-title__sub {
		margin-bottom: 1rem;
	}
}

/***** テーブル *****/
.c-table {
	width: 100%;
}

.c-table th {
	padding: 1rem;
	font-weight: 600;
	text-align: center;
	color: #fff;
	border: 1px solid var(--border-color);
	background-color: var(--base-color);
}

.c-table td {
	padding: 1rem;
	border: 1px solid var(--border-color);
}

/***** スマホテーブル *****/
@media screen and (max-width:768px) {
	.js-scrollable {
		overflow-x: scroll;
		width: 100%;
	}
}

/***** Greeting from the President *****/
.p-greeting__box {
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-end;
	gap: 1.6rem;
	margin-bottom: 3.2rem;
}

.p-greeting__box dt {
	width: 160px;
}

.p-greeting__box dd {
	flex: 1;
	text-align: right;
}

.p-greeting__txt {
	margin-bottom: 1em;
}

.p-greeting__txt:last-child {
	margin: 0;
}

@media screen and (max-width:768px) {
	.p-greeting__box {
		flex-direction: column;
		align-items: center;
		gap: 1.6rem;
	}
	
	.p-greeting__box dd {
		text-align: center;
	}
}

/***** General Information *****/
.p-outline__dl dl {
	display: flex;
}

.p-outline__dl dt {
	color: var(--base-color);
	font-weight: 600;
	border-bottom: 1px solid var(--base-color);
	padding-block: 2.4rem;
	width: 25%;
	display: flex;
	align-items: center;
}

.p-outline__dl dd {
	flex: 1;
	border-bottom: 1px solid var(--border-color);
	padding: 2.4rem 0 2.4rem 1rem;
}

.p-outline__table td {
	vertical-align: baseline;
}

@media screen and (max-width:768px) {
	.p-outline__dl dl {
		display: block;
	}
	
	.p-outline__dl dt {
		width: 100%;
		padding: 0.5rem 1rem;
		border: 1px solid var(--base-color);
	}
	
	.p-outline__dl dd {
		border-bottom: none;
		padding: 1rem 0 2.4rem 1em;
	}
	
	.p-outline__table td {
		display: block;
	}
}

/***** Access to Venue *****/
.p-access__fig {
	width: 90%;
	margin-inline: auto;
}

@media screen and (max-width:768px) {
	.p-access__fig {
		width: 100%;
	}
}