@charset "utf-8";

/* Simple Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	height: 100%;
	overflow: hidden; /* ←ここを変更 */
}

body {
	color: #4c4848;
	background-color: #ffffff;
	vertical-align: baseline;
	min-height: 100%;
	height: 100%; /* ←追加 */
	width: 100%;
	font-family: "IBM Plex Sans JP", Meiryo, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	line-height: 1.6;
	overflow-y: auto; /* ←ここでスクロールを制御 */
}

body > main {
	flex: 1 0 auto;
}

.logo > img {
	height: 35px;
}

.sub-content-title {
	border-bottom: 1px solid gray;
}

div.content {
	flex: 1 1 auto;
	padding: 0.25rem 0.75rem;
	min-width: 0;
}

ul li span {
	vertical-align: middle;
}

/* ナビゲーションの固定に利用 */
.sticky {
	top: 20px;
	position: -webkit-sticky;
	position: sticky;
}

