@charset "UTF-8";
/*--------------------------------------------------
カラー設定
ブルー　　　　　　　　　　　#0900BC
グリーン　　　　　　　　　　#75BC00
背景あいじろ　　　　　　　　#ebf6f7
オレンジ　　　　　　　　　　#F4A43B
ピンク　　　　　　　　　　　#F43BD2

@media screen and (max-width: 795px) {

}
@media screen and (max-width: 420px) {
	
}

--------------------------------------------------*/
/*------------------------------
関連リンク
--------------------------------*/

/*リンクアイテム*/
.link_item {
	margin: 40px 0;
	padding-bottom: 40px;
	border-bottom: 1px solid #D2DDD3;
}
.link_name {
	font-size: 20px;
	margin-bottom: 10px;
}
.link_url {
	padding-left: 20px;
	font-size: 18px;
}
@media screen and (max-width: 420px) {
	.link_name {
		font-size: 18px;
	}
	.link_url {
		font-size: 15px;
	}
}
/*下線アニメーション*/
.line {
	display: inline-block;
	padding-bottom: 4px;
	position: relative;
}
.line:hover {
	
}

.line::after {
	background-color: #FF9A00;
	bottom: 0;
	content: '';
	display: block;
	height: 3px;
	left: 0;
	position: absolute;
	transition: .5s all;
	width: 0;
}

.line:hover::after {
	width: 100%;
}