/*	背景グラデ --------------------------------------------------*/
.bg_golf
{
  background : -moz-linear-gradient(50% 0% -90deg,rgba(41, 171, 226, 1) 0%,rgba(255, 255, 255, 1) 100%);
  background : -webkit-linear-gradient(-90deg, rgba(41, 171, 226, 1) 0%, rgba(255, 255, 255, 1) 100%);
  background : -webkit-gradient(linear,50% 0% ,50% 100% ,color-stop(0,rgba(41, 171, 226, 1) ),color-stop(1,rgba(255, 255, 255, 1) ));
  background : -o-linear-gradient(-90deg, rgba(41, 171, 226, 1) 0%, rgba(255, 255, 255, 1) 100%);
  background : -ms-linear-gradient(-90deg, rgba(41, 171, 226, 1) 0%, rgba(255, 255, 255, 1) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#29ABE2', endColorstr='#FFFFFF' ,GradientType=0)";
  background : linear-gradient(180deg, rgba(41, 171, 226, 1) 0%, rgba(255, 255, 255, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#29ABE2',endColorstr='#FFFFFF' , GradientType=0);
  height: 35%;
}

/*	フォント ---------------------------------------------------*/
.line-seed-jp-regular {
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*	スケール ---------------------------------------------------*/
.w85 { width: 85%; }
.w90 { width: 90%; }

/*	表 --------------------------------------------------------*/
td.idx {
	text-align: center;
	white-space: nowrap;
	font-size: 11pt;
	border-right: 1px solid #DDE2E6;
	font-weight: bold;
	color: #333333;
}
td.ct {
	font-size: 11pt;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
}

/*	アンダーライン -----------------------------------------------*/
.kcolor { position: relative; background: linear-gradient(transparent 40%, yellow 40%); }


/*	先頭カッコスペース調整 ---------------------------------------*/
.ml_m8 { margin-left: -8px; }


/*	リンクボタン -----------------------------------------------*/
.box_link_golf {
  	background-color: #006837;
	padding: 5px 10px 4px 10px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-o-border-radius: 3px;
	-ms-border-radius: 3px;
	font-size: 11pt;
	color: white;
    display: inline-block;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.box_link_golf:hover {
	background-color: #009245;
}