@charset "utf-8";
/***** 全体 *****/
.c-inner {
	margin: 0 1.5rem 1.5rem 0;
	padding: 3rem;
	min-height: 800px;
	background-color: #fff;
}

.c-item {
	margin-bottom: 3rem;
}

.c-item__in {
	margin-bottom: 2rem;
}

.c-item:last-child,
.c-item__in:last-child {
	margin-bottom: 0;
}

@media screen and (max-width:768px) {
	.c-inner {
		margin: 0 1.5rem 1.5rem;
		padding: 1.5rem;
		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: 30px;
	}
}

/***** 見出し *****/
.c-title__main {
	margin: 0 1.5rem 3rem 0;
	padding: 2rem 2.5rem;
	background-image:
	linear-gradient(135deg, var(--sub-color) 0, #f9be38 20%, #E1CE08 25%, var(--sub-color) 100%),
	linear-gradient(135deg, var(--sub-color) 0, #f9be38 20%, #E1CE08 25%, var(--sub-color) 100%);
	background-repeat: no-repeat;
	background-size: 100% 1px;
	background-position: bottom, top;
	font-size: 2.6rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	font-family: "Zen Old Mincho", serif;
	color: var(--sub-color);
}

.c-title__large {
	position: relative;
	margin-bottom: 2rem;
	padding: 1rem;
	outline: 1px solid var(--sub-color);
	outline-offset: 3px;
	border: 2px solid var(--sub-color);
	font-weight: 600;
	font-size: 2.2rem;
	letter-spacing: 0.08em;
}

.c-title__medium {
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	font-weight: 600;
	font-size: 2rem;
	background: linear-gradient(90deg, var(--sub-color02) 0% 33%, var(--sub-color04) 33% 66%, var(--sub-color05) 66%);
	background-repeat: no-repeat;
	background-size: 6rem 0.2rem;
	background-position: left bottom;
}

.c-title__small {
	margin-bottom: 1rem;
	font-weight: 500;
	font-size: 1.8rem;
}

.c-title__small:before {
	content: '';
	border-left: 2px dotted var(--sub-color02);
	margin-right: 1rem;
}

.c-title__sub {
	margin: 1rem 0 2rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	position: relative;
}

.c-title__sub:before {
	content: '';
	display: block;
	width: 1rem;
	height: 1rem;
	background-color: var(--sub-color03);
	margin-right: 0.5rem;
}

@media screen and (max-width:768px) {
	.c-title__main {
		margin: 0 1.5rem 1.5rem;
		padding: 1rem 1.5rem;
		font-size: 2rem;
	}
	
	.c-title__large {
		margin-bottom: 1.5rem;
		padding: 0.5rem 1rem;
		font-size: 1.8rem;
	}
	
	.c-title__medium {
		margin-bottom: 1.5rem;
		font-size: 1.8rem;
	}
	
	.c-title__small {
		font-size: 1.6rem;
	}
}

/***** ボタン *****/
.c-btn__mail {
	width: 200px;
	margin-top: 10px;
	padding: 7px 0 7px 7px;
	font-size: 1.4rem;
	font-weight: 700;
	text-decoration: none;
	color: #fff;
	display: flex;
	justify-content: center;
	background: var(--sub-color);
	transition: 0.5s;
	border: var(--sub-color) 2px solid;
	position: relative;
}

.c-btn__mail::before {
	content: "";
	height: calc(18px / 2);
	width: 8px;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	background: #fff;
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.5s;
}

.c-btn__mail:hover {
	color: var(--sub-color);
	background: #fff;
}

.c-btn__mail:hover::before {
	color: var(--sub-color);
	background: var(--sub-color);
}

/***** 開催概要 *****/
.p-outline__dl dl {
	display: flex;
}

.p-outline__dl dt {
	border-bottom: 1px solid var(--sub-color);
	padding: 2rem 0;
	width: 25%;
	display: flex;
	align-items: center;
}

.p-outline__dl dd {
	flex: 1;
	border-bottom: 1px solid var(--black-color);
	padding: 2rem 0 2rem 1rem;
}

@media screen and (max-width:768px) {
	.p-outline__dl dl {
		display: block;
	}
	
	.p-outline__dl dt {
		width: 100%;
		padding: 0.5rem 1rem;
		border-top: 1px solid var(--sub-color);
		border-bottom: 1px solid var(--sub-color);
	}
	
	.p-outline__dl dd {
		border-bottom: none;
		padding: 1rem 0 2rem 2rem;
	}
}