<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";


/* 
-------------------------------------------
custom property
-------------------------------------------
*/
@import url(./../base/var.css);


/* 
-------------------------------------------
各種ボタンの設定
-------------------------------------------
*/
/* お知らせ一覧ボタンの設定 */
.l-button,
.y-button {
	display: flex;
}

.l-button a,
.y-button a {
	display: inline-block;
	border: 1px solid #191919;
	background-color: #ffffff;
	border-radius: 24px;
	margin: 0 auto;
	position: relative;
	color: var(--font-color)!important;
}

.l-button a,
.y-button a {
		padding: 8px 60px 10px 20px;	
}

.l-button a::after {
	content: "";
	display: inline-block;
	text-align: center;
	width: 16px;
	height: 16px;
	border: 1px solid #191919;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 8%;
	transform: translateY(-50%);
	transition: all .2s ease-in;
}

.l-button a:hover {
	border: 1px solid transparent;
	background-color: #d6151f;
	color: #ffffff!important;
	transition: all .3s;
}

.l-button a:hover::after {	
	width: 16px;
	height: 16px;
	border: 4px solid #ffffff;
	right: 8%;
}



/* 
-------------------------------------------
各リンクナビ画像　ボタンの設定
-------------------------------------------
*/
.m-card__body::after {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	position: absolute;
	border-radius: 50%;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition: all .2s ease-in;
	opacity: 0;
	border: solid 1px #ffffff;
}

a:hover .m-card__body::after {
	opacity: 1;
	border: solid 2px #ffffff;
}


/* 
-------------------------------------------
ページトップへボタンの設定
-------------------------------------------
*/
.page__top {
	display: inline-block;
	position: fixed;
	right: 0px;
	bottom: 0px;
	width: 64px;
	height: 64px;
	cursor: pointer;
	border: none;
	transition: all .4s;
}

.page__top:hover {
	height: 84px;
	background-color: #d6151f;
	color: #ffffff;
	padding-bottom: 20px;
}</pre></body></html>