/*===========================================================================
unique
単一ページで使用するCSS
接頭辞【.u-】

【予測変換用 _base.css記述】
:root {
  --font-color-base: #333;
  --font-color-main: #005bab;
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-roboto: "Roboto", sans-serif;
  --back-color-base: #fff;
  --back-color-gradient: linear-gradient(100deg, #4896db 1.76%, #0e67b4 26.76%, #005bab 98.94%);
  --design-size-pc: 1400;
  --design-size-sp: 750;
}
===========================================================================*/
.u-kv {
	position: relative;
}
.u-kv__dot {
	position: absolute;
	bottom: 15rem;
	left: 50%;
	transform: translateX(-50%);
}
.u-kv__dot .slick-dots li {
	margin: 0 4rem;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.u-kv {
	}
	.u-kv__dot {
		bottom: 30rem;
	}
	.u-kv__dot .slick-dots li {
		margin: 0 15rem;
	}
}


.u-note {
	background-color: #fff;
}
.u-note__ttl {
	color: #d70000;
	font-size: 16rem;
	font-weight: bold;
	line-height: 1.5;
	position: relative;
	padding-left: 36rem;
}
.u-note__ttl::before {
	content: " ";
	width: 29rem;
	height: 29rem;
	background: url(/common/images/icn_attention.svg) no-repeat center center / contain;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.u-note__boxLst {
	margin-top: 5rem;
}
.u-note__boxInr {
	padding: 4rem 30rem 4rem 0;
	position: relative;
	font-size: 16rem;
	font-weight: bold;
	line-height: 1.5;
	display: inline-block;
}
.u-note__boxInr[target="_blank"]::after {
	content: "";
	width: 16rem;
	height: 16rem;
	background: url(/common/images/icn_blank.svg) no-repeat center center / contain;
	display: inline-block;
	padding-left: 10rem;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.u-note__ttl {
		font-size: 32rem;
		padding-left: 63rem;
	}
	.u-note__ttl::before {
		width: 56rem;
		height: 56rem;
	}
	.u-note__boxLst {
		margin-top: 5rem;
	}
	.u-note__boxInr {
		padding: 8rem 30rem 8rem 0;
		font-size: 32rem;
	}
	.u-note__boxInr[target="_blank"]::after {
		width: 32rem;
		height: 32rem;
		padding-left: 20rem;
	}
}



.u-pickUp {
	background-color: #eef6d8;
	padding-bottom: 60rem;
}
.u-pickUp__inr {
	position: relative;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.u-pickUp {
		padding-right: 40rem;
		padding-left: 40rem;
	}
	.u-pickUp__inr {
		position: relative;
	}
	.u-pickUp__inr .c-imgPanel {
		margin-top: 40rem;
		position: relative;
	}
	.u-pickUp__inr .slick-dots button {
		background-color: #fff;
		border: 1px solid #fff;
	}
	.u-pickUp__inr .slick-active button {
		background-color: #09630c;
	}
}


.u-about {
	background: url(/images/about_img.jpg) no-repeat center center / cover;
}
.u-about__box {
	background: rgba(255, 255, 255, 0.85);
	padding: 50rem 40rem;
	display: inline-block;
	width: 380rem;
}
.u-about__ttl {
	color: #444;
	font-family: "Noto Serif JP";
	font-size: 30rem;
	font-weight: 500;
	display: inline-block;
}
.u-about .m-btn-m {
	margin-top: 40rem;
	margin-left: 0;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.u-about {
		background: url(/images/sp_about_img.jpg) no-repeat center center / cover;
		padding-top: 440rem;
	}
	.u-about__box {
		padding: 50rem;
		display: block;
		width: 100%;
	}
	.u-about__ttl {
		font-size: 54rem;
	}
	.u-about .m-btn-m {
		margin-top: 40rem;
	}
}


/*====================================
重要なお知らせ
====================================*/
.u-important {
	background-color: #fef1f1;
	border-radius: 16rem;
}
.u-important .m-sh-l {
	color: #ff5252;
	margin-top: 0;
}
.u-important .m-newsList__item:last-of-type {
	border-bottom: 0;
}
.u-important .m-newsList__item:last-of-type a {
	padding-bottom: 0;
}


/*====================================
緊急のお知らせ
====================================*/
.u-emergency {
	box-sizing: border-box;
	padding: 40rem 32rem;
	background: #feebeb;
}
.u-emergency__item:not(:first-child) {
	margin-top: 40rem;
}
.u-emergency__item p {
	text-decoration: none;
	color: #d70000;
}
.u-emergency__item .m-sh-xs {
	margin-top: 12rem;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
	.u-emergency__item p {
		line-height: 1.4;
	}
	.u-emergency__item .m-sh-xs {
		margin-top: 20rem;
	}
}