@charset "utf-8";
/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼外部へのリンクボタン▼▼ */
/*▽▽施設サイトや交通アクセスのリンクボタン▽▽*/
/*　http://www.will-hp.com/wpblog/web/157/　*/
/* ▼▼3つほぼ共通　1個所だけPCのみ異なる▼▼ */

/* 角丸 */
.Radius5 {  
    border-radius: 5px;        /* CSS3草案 */  
    -webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 5px;   /* Firefox用 */  
}
/* ボタン共通 */
.Button {
	overflow: hidden;
	width: 160px;	/*PCが160、tabとスマホが140*/
	height: 30px;
	margin: 0;
	padding: 0;
	margin-bottom:5px;
}
.Button a {
	display: block;
	position: relative;
	z-index: 100;
	text-align:left;
	background: #efeef1;
	color: #00a0e9;
	font-size: 14px;
	line-height: 30px;
	text-decoration:none;
}
.Button a:hover {
	background: #cccccc;        /* マウスオーバーカラー */  
}
#subheader-link1 a:before,
#subheader-link2 a:before {        /*白い丸 */ 
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 8px;
	width: 16px;
	height: 16px;
	margin-top: -8px;
	border-radius: 50%;        /* CSS3草案 */  
    -webkit-border-radius: 50%;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 50%;   /* Firefox用 */  
	background: #fff;
}
#subheader-link1 a:after,
#subheader-link2 a:after {        /*「after要素」で三角 */ 
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 14px;
	width: 0;
	height: 0;
	margin-top: -5px;
	border: 5px solid transparent;        /*top right bottom を透明化 */ 	border-left: 5px solid #00a0e9;
}
#subheader-link1 a:hover:after,
#subheader-link2 a:hover:after {        /*「after要素」のマウスオーバー（カラーを合わせる） */  
	border-left: 5px solid #3ab2e9;
}