@charset "UTF-8";
/* --------------------------------------------------------
* お知らせ
* -------------------------------------------------------*/
/* pdfnote */
.u-pdfNote {
	margin-bottom: 80px;
	padding: 20px;
	background-color: var(--color-bg);
}
.u-pdfNote__item {
	font-size: 1.3rem;
	line-height: 1.86;
	margin-bottom: 10px;
}
.u-pdfNote__item:first-child {
	width: 158px;
}
.u-pdfNote__item img {
	width: auto;
	height: auto;
}
@media (max-width: 767px) {
	.u-pdfNote__item:not(:first-child) {
		margin-top: 20px;
	}
}
@media (min-width: 768px) {
	.u-pdfNote {
		display: flex;
		align-items: center;
		margin-top: 80px;
		padding: 27px 50px 25px;
	}
	.u-pdfNote__item {
		margin-left: 20px;
		font-size: 1.4rem;
		line-height: 1.71;
	}
	.u-pdfNote__item:first-child {
		margin-left: 0;
	}
}

/* yearController */
.u-yearController {
	position: relative;
	width: 220px;
	margin-bottom: 60px;
	font-size: 1.5rem;
	visibility: hidden;
}
.u-yearController.is-ready {
	visibility: visible;
}
.u-yearController::after {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	right: 20px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	border-bottom: 2px solid #333;
	border-right: 2px solid #333;
}
.u-yearController select {
	max-width: 100%;
	min-width: 220px;
	padding: 5px 50px 7px 20px;
	color: var(--color-txt);
	appearance: none;
	position: relative;
	z-index: 1;
	font-weight: 500;
	cursor: pointer;
	line-height: var(--line-height-s);
	font-family: var(--font-sans);
	border: 1px solid var(--color-border);
	border-radius: 0;
	box-sizing: border-box;
}
@media (min-width: 768px) {
	.u-yearController {
		width: 270px;
		font-size: 1.8rem;
	}
	.u-yearController::after {
		right: 18px;
	}
	.u-yearController select {
		width: 270px;
		height: 50px;
		padding: 10px 50px 12px 20px;
	}
}