/* definition class */
.flex {
	display: flex;
}

.flex-1 {
	flex: 1;
	min-width: 0;
}

.flex-wrap {
	flex-wrap: wrap;
}

.flex-nowrap {
	flex-wrap: nowrap;
}

.flex-col {
	flex-direction: column;
}

.flex-cc {
	align-items: center;
	justify-content: center;
}

.flex-jc-c {
	justify-content: center;
}

.flex-jc-sb {
	justify-content: space-between;
}

.flex-jc-sa {
	justify-content: space-around;
}

.flex-jc-fe {
	justify-content: flex-end;
}

.flex-ai-c {
	align-items: center;
}

.flex-ai-fs {
	align-items: flex-start;
}

.flex-ai-fe {
	align-items: flex-end;
}

.layout {
	width: 1300px;
	max-width: 96vw;
	margin: 0 auto;
	box-sizing: border-box;
}

.font-large {
	font-size: 1rem;
}

.font-normal {
	font-size: 0.875rem;
}

.font-small {
	font-size: 0.8rem;
}

.col-gray {
  color:#969696;
}

/* header */
.header-bar {
	position: relative;
	height: 95px;
}

.wrap {
	height: 95px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: #a10019;
}

.header-top {
	height: 95px;
	padding: 0 1rem;
}

.logo>img {
	width: 405px;
	height: 73px;
	max-width: 80vw;
	object-fit: contain;
}

/* content */
.page-detail {
	padding: 0 1rem;
}

.page-detail-title {
	text-align: center;
}

.page-detail-date {
	text-align: right;
	color: #969696;
	padding: 0.5rem 0;
}

.content {
	line-height: 2;
}

.field-list {
	padding: 20px 0;
}

.field-list>li {
	padding: 6px 0;
}

.field-list>li>a {
	text-decoration: underline !important;
	color: #a10019;
}

.content-bottom {
	text-align: right;
}

.content-bottom>div {
	line-height: 40px;
}

.top-item>a:hover {
	text-decoration: underline !important;
	color: #a10019 !important;
}
