@charset "utf-8";
/***** 全体 *****/
.l-inner {
	margin: 0 3rem 3rem;
}

.l-contents {
	min-height: 800px;
	padding: 3rem;
	background-color: #fff;
	border-radius: 5px;
}

.c-title__main {
	margin-bottom: 3rem;
	position: relative;
	z-index: 1;
}

.c-title__main::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 100px;
	right: 100px;
	border-radius: 100px / 30px;
	box-shadow: 0 0 28px rgba(255, 255, 255, .5);
	content: '';
	z-index: -1;
}

.c-title__main h2 {
	padding: 2rem 2.4rem;
	background-color: var(--base-color);
	background-image: linear-gradient(-30deg, #e3eafb 0%, #e7f5ed 30%, #fff 70%);
	border-radius: 5px;
	font-size: 2.8rem;
	font-weight: 600;
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 0.08em;
}

.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) {
	.l-inner {
		margin: 0 1.6rem 1.6rem;
		padding-top: 60px;
	}
	
	.l-contents {
		padding: 1.6rem;
	}
	
	.c-title__main {
		margin: 1.6rem 0;
	}
	
	.c-title__main h2 {
		padding: 1.6rem;
		font-size: 2rem;
	}
}

/***** 準備中ページ *****/
.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__large {
	font-family: 'Noto Serif JP', serif;
	margin-bottom: 2rem;
	padding: 1.5rem 0;
	font-size: 2.2rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	background: linear-gradient(to right, var(--sub-color),#CADEEE);
	background-repeat: no-repeat;
	background-size: 100% 5px;
	background-position: bottom;
}

.c-title__medium {
	font-family: 'Noto Serif JP', serif;
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 2rem;
	padding-left: 1rem;
	border-left: 5px dotted var(--sub-color);
}

.c-title__small {
	font-family: 'Noto Serif JP', serif;
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 2rem;
	text-decoration: 2px underline wavy var(--point-color);
	text-underline-offset: 8px;
}

.c-title__sub {
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	margin: 1rem 0 2rem;
	color: var(--point-color);
}

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

/***** 画像 *****/
.c-img__full {
	width: 100%;
	margin-inline: auto;
}

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

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

.p-outline__dl dd {
	flex: 1;
	border-bottom: 2px solid #ccc;
	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-left: 3px dotted var(--base-color);
	}
	
	.p-outline__dl dd {
		border-bottom: none;
		padding: 1rem 0 2rem;
	}
}

/***** 会長挨拶 *****/
.p-greeting__ph {
	margin-bottom: 4rem;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	gap: 30px;
}

.p-greeting__ph dt {
	text-align: right;
}

.p-greeting__ph dd {
	width: 150px;
}

.p-greeting__txt {
	text-indent: 1em;
	margin-top: 1.5rem;
}

@media screen and (max-width:768px) {
	.p-greeting__ph {
		margin-bottom: 3rem;
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}
	
	.p-greeting__ph dt {
		text-align: center;
	}
	
	.p-greeting__ph dd {
		margin-inline: auto;
	}
}

/***** 宿泊のご案内 *****/
.p-stay__list li {
	margin-bottom: 10px;
	font-size: 1.8rem;
	font-weight: 500;
}

.p-stay__list__num {
	color: var(--sub-color);
	padding-right: 0.2em;
	font-size: 2rem;
}