body {
	background-color: transparent;
	font-family: 'Sono', 'Kiwi Maru', serif;
	padding: 5px 20px;
	color: #656565;
	letter-spacing: 0.05em;
	line-height: 1.6em;
	margin-bottom: 30px;
}

h2 {
	font-family: 'Sono', 'Zen Maru Gothic', sans-serif;
	font-weight: normal;
	margin: 10px 0 20px 5px;
	color: #486061;
	font-size: 18px;
}

::selection {
	background: #E2564B;
	color: #F0F4F4;
}

ruby {
	line-height: 0.5em;
}

ruby rt {
	font-family: 'Sono', 'Kiwi Maru', serif;
	position: relative;
	top: 0.5em;
	font-weight: normal;
	line-height: 1;
	padding: 0;
	margin: 0;
}

/* アコーディオン全体のスタイル */
.glossary-container {
	padding: 0px;
}

/* アコーディオンのヘッダー（行：あ行、か行など） */
.accordion-header {
	font-size: 18px;
	cursor: pointer;
	padding: 10px;
	background-color: #486061;
	border: 1px solid #486061;
	margin-top: 10px;
	margin-bottom: 5px;
	border-radius: 5px;
	display: block;
	color: #ddd;
}

/* アコーディオンのチェックボックスを非表示にする */
.accordion-toggle {
	display: none;
}

/* + と - の切り替え */
.accordion-header:before {
	content: '＋';
	margin-right: 10px;
}

.accordion-toggle:checked+.accordion-header:before {
	content: '－';
}



/* アコーディオンの内容（用語名、説明文） */
.accordion-content {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.3s ease;
}

.accordion-toggle:checked~.accordion-content {
	max-height: 3000px;
	/* 必要に応じて十分な高さに調整 */
}

/* 用語名のスタイル */
.term-title {
	font-size: 20px;
	padding: 10px 15px 0 15px;
	margin-bottom: 5px;
	font-family: 'Sono', 'Zen Maru Gothic', sans-serif;
}

/* 読み仮名と説明文のスタイル */
.term-description {
	font-size: 16px;
	color: #555;
	padding: 0 15px 10px 15px;
}

/* 区切り線 */
hr {
	border: none;
	border-top: 1px solid #486061ac;
	margin: 5px 10px;
}

.font_s {
	font-size: 70%;

	letter-spacing: 0.05em;

}