@charset "UTF-8";
/*--------------------------------------------------
カラー設定
メインカラー	グリーン　#0EB998 
薄いグリーン　			 #EAF5F3 
濃いグリーン　　　　　　#013700
濃いブルー　　　　　　　#009AA2
濃いレッド　　　　　　　#D10043
背景ブラック　　　　　　#00041B

--------------------------------------------------*/

/*==================================================
リンク
==================================================*/

.link_item {
	display: inline-block;
	margin: 10px 0;
	width: 100%;
	padding: 10px 0 10px 10px;
}

.link_item a{
	position: relative;
	display: inline-block;
	padding: 0 20px 0 0;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	font-size: 18px;
	color: #363636;
}
.link_item a::after {
	position: absolute;
	content: "";
	top: 14px;
	right: 0;
	width: 6px;
	height: 6px;
	border-top: 1px solid #A4A4A4;
	border-right: 1px solid #A4A4A4;
	transform: rotate(45deg);
	transition: all 0.3s;
}
@media (hover: hover) and (pointer: fine) {
	.link_item a:hover::after{
		right: -10px;
		border-top: 1px solid #D10043;
		border-right: 1px solid #D10043;
	}
}
@media (hover: none) {
	.link_item a:active::after {
		right: -10px;
		border-top: 1px solid #D10043;
		border-right: 1px solid #D10043;
	}
}
/*リンクアイコン*/
.link_icon {
	position: relative;
	margin-right: 10px;
	top: 7px;
	transform:rotate(180deg);
}