@charset "utf-8";
/* CSS Document */
/* -----------------------------------------
   first h1
----------------------------------------- */
#h1-item {
	position: relative;
	width: 100%;
}

#h1-item img {
	display: block;
	width: 100%;
	height: auto;
}

#h1-item h1 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
	color: #fff;
	font-size: 3.0rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-shadow:
		0 1px 2px rgba(0, 0, 0, 0.9),
		0 2px 6px rgba(0, 0, 0, 0.8),
		0 0 12px rgba(0, 0, 0, 0.6);
}

	
/* =========================================
   section common
========================================= */
#profile,
#philosophy,
#history {
	padding: 4rem 2rem;
}
/* =========================================
   section title
========================================= */
section h2 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	margin: 0 0 3rem;
	color: #d6b45c;
	font-size: 2.0rem;
	font-weight: normal;
	line-height: 1.4;
	text-align: center;
}

section h2::before,
section h2::after {
	content: "";
	display: block;
	width: 30px;
	height: 2.5px;
	background: #d6b45c;
	flex-shrink: 0;
}

/* =========================================
   profile
========================================= */
.profile-item {
	max-width: 1000px;
	margin: 0 auto;
}

.profile-item dl {
	margin: 0;
}

.profile-item dt,
.profile-item dd {
	margin: 0;
	text-align: left;
}

.profile-item dt {
	margin-top: 2rem;

	font-size: 1.5rem;
	font-weight: bold;
}

.profile-item dt:first-child {
	margin-top: 0;
}

.profile-item dd {
	margin-top: 0.5rem;
	padding-bottom: 2rem;

	font-size: 1.5rem;
	line-height: 1.8;

	border-bottom: 1px solid #ccc;
}
.profile-item dd:last-child{
	border-bottom: none;
}
.profile-item a {
	text-decoration: underline;
}

.division + .division {
	margin-top: 1rem;
}


/* =========================================
   philosophy
========================================= */
#philosophy {
	text-align: center;
}

#philosophy p {
	margin: 0;

	font-size: 2.4rem;
	font-weight: bold;
	line-height: 2;

	text-align: center;
}


/* =========================================
   history
========================================= */
.history-item {
	max-width: 1000px;
	margin: 0 auto;
}

.history-item dl {
	margin: 0;
}

.history-item dt,
.history-item dd {
	margin: 0;
	text-align: left;
}

.history-item dt {
	margin-top: 2rem;

	font-size: 1.5rem;
	font-weight: bold;
}

.history-item dt:first-child {
	margin-top: 0;
}

.history-item dd {
	margin-top: 0.5rem;
	padding-bottom: 2rem;

	font-size: 1.5rem;
	line-height: 1.8;

	border-bottom: 1px solid #ccc;
}
/* 満月の沿革を強調 */
.history-item dt:has(+ dd.highlight),
.history-item dd.highlight {
	background: rgba(255, 255, 255, 0.08);
	color: #b3261e;
	font-weight: bold;
}

/* 日付 */
.history-item dt:has(+ dd.highlight) {
	padding: 1.2rem 0 0.4rem ;
	margin-top: 0;
}

/* 内容 */
.history-item dd.highlight {
	padding: 0.4rem 0 1.2rem;
	margin-top: 0;
}



/* 沿革注釈 */
#history > p {
	max-width: 1000px;
	margin: 1rem auto 0;

	font-size: 1.3rem;
	line-height: 1.6;
	text-align: right;
}
/* =========================================
   tablet
========================================= */
@media screen and (min-width: 768px) {

	#h1-item h1 {
		font-size: 3.6rem;
	}


	/* -------------------------
	   section
	------------------------- */
	#profile,
	#philosophy,
	#history {
		padding: 6rem 3rem;
	}

/* =========================================
   section title
========================================= */
	.index section h2 {
		font-size: 3.2rem;
	}

	.index section h2::before,
	.index section h2::after {
		width: 45px;
	}
	/* -------------------------
	   profile
	------------------------- */
	.profile-item dl {
		display: grid;
		grid-template-columns: 180px 1fr;
	}

	.profile-item dt,
	.profile-item dd {
		margin: 0;
		padding: 1.8rem 0;

		border-bottom: 1px solid #ccc;
	}

	.profile-item dt {
		padding-right: 2rem;
		font-size: 1.6rem;
	}
	.profile-item dt:last-of-type {
		border-bottom: none;
	}
	.profile-item dd {
		font-size: 1.6rem;
	}


	/* -------------------------
	   philosophy
	------------------------- */
	#philosophy p {
		font-size: 3.2rem;
		line-height: 2;
	}


	/* -------------------------
	   history
	------------------------- */
	.history-item dl {
		display: grid;
		grid-template-columns: 230px 1fr;
	}

	.history-item dt,
	.history-item dd {
		margin: 0;
		padding: 1.6rem 0;

		border-bottom: 1px solid #ccc;
	}

	.history-item dt {
		padding-right: 2rem;
		font-size: 1.5rem;
	}

	.history-item dd {
		font-size: 1.5rem;
	}
	.history-item dt:has(+ dd.highlight),
	.history-item dd.highlight {
		padding-top: 1.6rem;
		padding-bottom: 1.6rem;
	}

	.history-item dt:has(+ dd.highlight) {
		padding-left: 0;
	}

	.history-item dd.highlight {
		padding-left: 0;
	}

}


/* =========================================
   PC
========================================= */
@media screen and (min-width: 1024px) {

	#h1-item h1 {
		font-size: 4.2rem;
	}

	#philosophy p {
		font-size: 3.6rem;
	}

}
