@charset "utf-8";

/* webフォント
======================================================== */
@import url('https://fonts.googleapis.com/css2?family=Amiri&family=Zen+Old+Mincho&family=Noto+Sans+JP:wght@400;500;700&family=Shippori+Antique&display=swap');

/*
* "Amiri" licensed under the Open Font License.
* https://fonts.google.com/specimen/Amiri
* https://www.google.com/fonts/attribution
* https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL
*/
/*
* "Zen Old Mincho" licensed under the Open Font License.
* https://fonts.google.com/specimen/Zen+Old+Mincho
* https://www.google.com/fonts/attribution
* https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL
*/
/*
* "Noto Sans JP" licensed under the Open Font License.
* https://fonts.google.com/specimen/Noto+Sans+JP
* https://www.google.com/fonts/attribution
* https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL
*/
/*
* "Shippori Antique" licensed under the Open Font License.
* https://fonts.google.com/specimen/Shippori+Antique
* https://www.google.com/fonts/attribution
* https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL
*/


/* ステラスreset
======================================================== */
html {
	font-size: 62.5%;
	}
	@media screen and (max-width: 320px) {
	html { font-size: 54.6875%; }
}


/* サイト共通
======================================================== */
body {
	font-size: 1.8rem;
	font-size: clamp(1.4rem, 2vw, 1.8rem);
	font-family: 'Noto Sans JP', sans-serif;
	color: #333;
	margin: 0 auto;
}
#contentsArea {
	min-width: 1260px;
	max-width: 1920px;
	line-height: 1.8;
	}
	@media screen and (max-width:767.98px) {
	#contentsArea {
		min-width: 100%;
	}
}
.wrap {
	width: min(88%, 1400px);
	margin: 0 auto;
	}
	@media screen and (max-width:767.98px) {
	.wrap {
		width: 88%;
	}
}


/* footer
======================================================== */
footer {
	min-width: 1260px;
	max-width: 1920px;
	text-align: center;
	padding-bottom: 80px;
}
footer ul {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	margin-bottom: 50px;
}
footer ul li {
	margin: 0 20px;
}
footer small {
	font-size: 1.2rem;
	color: #999;
}
footer a {
	transition: all 0.3s;
}
footer a:hover {
	opacity: 0.7;
}
@media screen and (max-width:767.98px) {
	footer {
		border-top: solid 1px #eee;
		min-width: 100%;
		text-align: left;
		padding: 40px 6%;
	}
	footer ul {
		display: block;
		font-size: 1.3rem;
		margin-bottom: 40px;
	}
	footer ul li {
		margin: 0 0 15px;
	}
	footer small {
		display: block;
		text-align: center;
	}
}


/* ページの先頭へ
======================================================== */
#pageTop {
	position: fixed;
	bottom: 20px;
	right: 15px;
	margin: 0;
	z-index: 90;
}
#pageTop a {
	display: block;
	position: relative;
	width: 20px;
	height: 50px;
	text-indent: -9999px;
}
#pageTop a::before,
#pageTop a::after {
	display: block;
	content: "";
	position: absolute;
	bottom: 0;
	transition-duration: 0.4s;
}
#pageTop a::before {
	left: 10px;
	width: 1px;
	height: 30px;
	background: #8c8c8c;
}
#pageTop a::after {
	left: 6px;
	top: 22px;
	width: 8px;
	height: 8px;
	border-bottom: 1px solid #8c8c8c;
	transform: rotate(135deg);
}
@media screen and (max-width:767.98px) {
	#pageTop {
		right: 10px;
	}
}


/* parts
======================================================== */
/* 箇条書き
------------------------------------------------- */
/* 黒丸リスト */
.disc li {
	list-style-type: disc;
	margin: 1em 0 0 20px;
	padding-left: 0.3em;
}

/* 数字リスト */
.decimal li {
	list-style-type: decimal;
	margin: 1em 0 0 20px;
	padding-left: 0.8em;
	}
	@media screen and (max-width:767.98px) {
	.decimal li {
		padding-left: 0.4em;
	}
}

/* ※つきリスト */
.kome li {
	position: relative;
	margin: 1em 0 0;
	text-indent: -1em;
	padding-left: 1.5em;
}
.kome li::before {
	position: relative;
	content: "※";
	display: inline-block;
	margin-left: 0.5em;
	margin-right: 0.5em;
}

/* マージン調整 */
.disc li:first-child,
.decimal li:first-child,
.kome li:first-child {
	margin-top: 0;
}

/* 改行なし（.disc.noTurnなど重ね付けする） */
.noTurn li {
	margin-top: 0;
}


/* 改行
------------------------------------------------- */
/* スマホだけ改行 */
br.sp { 
	display: none;
	}
	@media screen and (max-width:767.98px) {
	br.sp {
		display: block;
	}
}
/* PCだけ改行 */
br.pc { 
	display: block;
	}
	@media screen and (max-width:767.98px) {
	br.pc {
		display: none;
	}
}


/* 段組み
------------------------------------------------- */
.col {
	display: flex;
	}
	@media screen and (max-width:767.98px) {
	.col {
		display: block;
	}
}


/* for appear
============================ */
/* エリア */
section {
	opacity: 0;
	position: relative;
	top: 20px;
}
footer {
	opacity: 0;
	position: relative;
	top: 0;
}


/* home.css 調整
======================================================== */
/* ヘッダ */
.header-search__submit {
	text-align: center;
	padding: .4em 1em; 
}
@media screen and (max-width:768px) {
	.header-search__submit {
		padding: .5em .4em; 
	}
}

/* NEWS */
.home-news {
	border-top: none;
	font-weight: 400;
}
.home-news .home-news__article .home-news__body {
	align-items: start;
}
.home-news .home-news__article .home-news__type--pdf,
.home-news .home-news__article .home-news__type {
	padding: 1.2em 0;
}
.home-news .home-news__article .home-news__type--pdf .home-news__title:after,
.home-news .home-news__article .home-news__type .home-news__title:after {
	display: none;
}
.home-news .home-news__article .home-news__body .home-news__caption .home-news__title {
	font-size: 1.8rem;
	font-weight: 400;
}
.home-news .home-news__article {
	border-bottom: none;
}
.home-news .home-news__article .home-news__body .home-news__property .home-news__category i[class^="home-news-badge--"] {
	display: inline-block;
	width: 160px;
	font-size: 1.4rem;
	font-style: normal;
	font-weight: 400;
	text-align: center;
	padding: 8px;
	margin-top: -2px;
}
.home-news .home-news__article .home-news__body .home-news__property .home-news__date {
	font-size: 1.8rem;
}
@media screen and (max-width:767.98px) {
	.home-news {
		padding: 0;
	}
	.home-news .home-news__article .home-news__body .home-news__property .home-news__date {
		min-width: 120px;
		font-size: 1.4rem;
	}
	.home-news .home-news__article .home-news__body .home-news__property .home-news__category i[class^="home-news-badge--"] {
		width: 110px;
		font-size: 1.2rem;
		padding: 5px;
	}
	.home-news .home-news__article .home-news__body .home-news__caption .home-news__title {
		font-size: 1.4rem;
	}
}

/* フッタ */
.Footer {
	border-top: none;
	padding-bottom: 80px;
}
.Footer__foot {
	margin-top: 50px;
}
.footer-pagetop {
	display: none;
}
.footer-snav__list>li {
	font-size: 1.3rem;
	font-weight: 400;
	line-height: 1.2;
	margin-top: 0;
	padding: 0;
}
.footer-snav__list>li:before {
	display: none;
}
.footer-copyright,
.footer-copyright__label {
	font-size: 1.2rem;
	color: #999;
	font-weight: 400;
}
@media screen and (max-width:767.98px) {
	.Footer {
		border-top: solid 1px #eee;
		padding: 40px 6%;
	}
	.Footer__foot {
		margin-top: 30px;
	}
}


