/* -------------------------------------------------*/
@charset "UTF-8";
/* ----- flex box Block --------------------------------------------*/
.link-box {
	background-color: #ffffff;	/* 背景色指定 */
	padding: 10px;							/* 余白指定 */
	display: flex;							/* フレックスボックスにする */
	justify-content:center;
}

.link-item {
	padding: 10px;
	color: #653920;			/* 文字色 */
	margin: 10px;			 /* 外側の余白 */
	border-radius: 5px;		/* 角丸指定 */
	width: 360px;				 /* 幅指定 */
}

/* ----- link Block --------------------------------------------*/
.link-item a	{
	display: block;
	padding: 0 40px;
	color: #e8dbcb;
	border-radius: 5px;		/* 角丸指定 */
	text-align: center;
	font-weight: bold;
	font-size: 18px;
	line-height: 64px;
	background-color: #653920;
}
.link-item a:link,
.link-item a:visited,
.link-item a:focus	{
	text-decoration: none;
}
.link-item a:hover	{
	text-decoration: underline;
	filter:alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}


