@charset "utf-8";

/*--------------------------------------------------------
　見出し（シンプル）
--------------------------------------------------------*/

.st-g01{
	margin: 30px 0;
	padding: 10px 10px 10px 20px;
	border-radius: 6px;
	-moz-border-radius: 6px; /* Firefox用 */
	-webkit-border-radius: 6px; /* Safari,Google Chrome用 */
	color: #000;
	font-size: 18px;
	line-height: 160%;
background-color: #fff;
border: 2px solid #fff;
-moz-box-shadow: 0px 0px 4px #999;
-webkit-box-shadow: 0px 0px 4px #999;
box-shadow: 0px 0px 4px #999;
/*IE 7 AND 8 DO NOT SUPPORT BLUR PROPERTY OF SHADOWS*/
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#fff', endColorstr = '#eee');
/*INNER ELEMENTS MUST NOT BREAK THIS ELEMENTS BOUNDARIES*/
/*Element must have a height (not auto)*/
/*All filters must be placed together*/
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr = '#fff', endColorstr = '#eee')";
/*Element must have a height (not auto)*/
/*All filters must be placed together*/
background-image: -moz-linear-gradient(top, #fff, #eee);
background-image: -ms-linear-gradient(top, #fff, #eee);
background-image: -o-linear-gradient(top, #fff, #eee);
background-image: -webkit-gradient(linear, center top, center bottom, from(#fff), to(#eee));
background-image: -webkit-linear-gradient(top, #fff, #eee);
background-image: linear-gradient(top, #fff, #eee);
/*--IE9 DOES NOT SUPPORT CSS3 GRADIENT BACKGROUNDS--*/
}


/*--------------------------------------------------------
　見出し（吹き出し風）
--------------------------------------------------------*/

/* 赤地に白文字 */
.st01-r {
	position: relative;
background-image: -ms-linear-gradient(bottom, #ff3019 0%, #cf0404 100%);
background-image: -moz-linear-gradient(bottom, #ff3019 0%, #cf0404 100%);
background-image: -o-linear-gradient(bottom, #ff3019 0%, #cf0404 100%);
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ff3019), color-stop(1, #cf0404));
background-image: -webkit-linear-gradient(bottom, #ff3019 0%, #cf0404 100%);
background-image: linear-gradient(to top, #ff3019 0%, #cf0404 100%);
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	line-height: 160%;
	border: 2px solid #fff;
	margin: 30px 0;
	padding: 10px 15px;
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	box-shadow:1px 3px 5px 0 #999;
}
.st01-r:before,
.st01-r:after {
	content: "";
	position: absolute;
	top: 100%;
	height: 0;
	width: 0;
}
.st01-r:after {
	left: 40px;
	border: 10px solid transparent;
	border-top: 10px solid #ff3019;
}
.st01-r:before {
	left: 38px;
	border: 12px solid transparent;
	border-top: 12px solid #fff;
}

/* 青地に白文字 */
.st01-b {
	position: relative;
background-image: -ms-linear-gradient(bottom, #1c81cf 0%, #115A91 100%);
background-image: -moz-linear-gradient(bottom, #1c81cf 0%, #115A91 100%);
background-image: -o-linear-gradient(bottom, #1c81cf 0%, #115A91 100%);
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #1c81cf), color-stop(1, #115A91));
background-image: -webkit-linear-gradient(bottom, #1c81cf 0%, #115A91 100%);
background-image: linear-gradient(to top, #1c81cf 0%, #115A91 100%);
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	line-height: 160%;
	border: 2px solid #fff;
	margin: 30px 0;
	padding: 10px 15px;
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	box-shadow:1px 3px 5px 0 #999;
}
.st01-b:before,
.st01-b:after {
	content: "";
	position: absolute;
	top: 100%;
	height: 0;
	width: 0;
}
.st01-b:after {
	left: 40px;
	border: 10px solid transparent;
	border-top: 10px solid #1c81cf;
}
.st01-b:before {
	left: 38px;
	border: 12px solid transparent;
	border-top: 12px solid #fff;
}

/* 緑地に白文字 */
.st01-g {
	position: relative;
background-image: -ms-linear-gradient(bottom, #07BA07 0%, #057D05 100%);
background-image: -moz-linear-gradient(bottom, #07BA07 0%, #057D05 100%);
background-image: -o-linear-gradient(bottom, #07BA07 0%, #057D05 100%);
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #07BA07), color-stop(1, #057D05));
background-image: -webkit-linear-gradient(bottom, #07BA07 0%, #057D05 100%);
background-image: linear-gradient(to top, #07BA07 0%, #057D05 100%);
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	line-height: 160%;
	border: 2px solid #fff;
	margin: 30px 0;
	padding: 10px 15px;
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	box-shadow:1px 3px 5px 0 #999;
}
.st01-g:before,
.st01-g:after {
	content: "";
	position: absolute;
	top: 100%;
	height: 0;
	width: 0;
}
.st01-g:after {
	left: 40px;
	border: 10px solid transparent;
	border-top: 10px solid #07BA07;
}
.st01-g:before {
	left: 38px;
	border: 12px solid transparent;
	border-top: 12px solid #fff;
}

/* 橙地に白文字 */
.st01-o {
	position: relative;
background-image: -ms-linear-gradient(bottom, #FA7000 0%, #DE4F02 100%);
background-image: -moz-linear-gradient(bottom, #FA7000 0%, #DE4F02 100%);
background-image: -o-linear-gradient(bottom, #FA7000 0%, #DE4F02 100%);
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #FA7000), color-stop(1, #DE4F02));
background-image: -webkit-linear-gradient(bottom, #FA7000 0%, #DE4F02 100%);
background-image: linear-gradient(to top, #FA7000 0%, #DE4F02 100%);
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	line-height: 160%;
	border: 2px solid #fff;
	margin: 30px 0;
	padding: 10px 15px;
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	box-shadow:1px 3px 5px 0 #999;
}
.st01-o:before,
.st01-o:after {
	content: "";
	position: absolute;
	top: 100%;
	height: 0;
	width: 0;
}
.st01-o:after {
	left: 40px;
	border: 10px solid transparent;
	border-top: 10px solid #FA7000;
}
.st01-o:before {
	left: 38px;
	border: 12px solid transparent;
	border-top: 12px solid #fff;
}

/* 黒地に白文字 */
.st01-k {
	position: relative;
background-image: -ms-linear-gradient(bottom, #666 0%, #000 100%);
background-image: -moz-linear-gradient(bottom, #666 0%, #000 100%);
background-image: -o-linear-gradient(bottom, #666 0%, #000 100%);
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #666), color-stop(1, #000));
background-image: -webkit-linear-gradient(bottom, #666 0%, #000 100%);
background-image: linear-gradient(to top, #666 0%, #000 100%);
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	line-height: 160%;
	border: 2px solid #fff;
	margin: 30px 0;
	padding: 10px 15px;
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	box-shadow:1px 3px 5px 0 #999;
}
.st01-k:before,
.st01-k:after {
	content: "";
	position: absolute;
	top: 100%;
	height: 0;
	width: 0;
}
.st01-k:after {
	left: 40px;
	border: 10px solid transparent;
	border-top: 10px solid #666;
}
.st01-k:before {
	left: 38px;
	border: 12px solid transparent;
	border-top: 12px solid #fff;
}


/*--------------------------------------------------------
　見出し（ボタン風）
--------------------------------------------------------*/

/* 赤地に白文字 */
.st02-r {
background-image: -ms-linear-gradient(bottom, #ff3019 0%, #cf0404 100%);
background-image: -moz-linear-gradient(bottom, #ff3019 0%, #cf0404 100%);
background-image: -o-linear-gradient(bottom, #ff3019 0%, #cf0404 100%);
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ff3019), color-stop(1, #cf0404));
background-image: -webkit-linear-gradient(bottom, #ff3019 0%, #cf0404 100%);
background-image: linear-gradient(to top, #ff3019 0%, #cf0404 100%);
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	line-height: 160%;
	margin: 30px 0;
	padding: 10px 15px;
	text-shadow:1px 1px 2px #333;
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	box-shadow:inset -2px -2px 3px rgba(0,0,0, 0.6),inset 2px 2px 3px rgba(255,255,255,0.8);
}

/* 青地に白文字 */
.st02-b {
background-image: -ms-linear-gradient(bottom, #1c81cf 0%, #115A91 100%);
background-image: -moz-linear-gradient(bottom, #1c81cf 0%, #115A91 100%);
background-image: -o-linear-gradient(bottom, #1c81cf 0%, #115A91 100%);
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #1c81cf), color-stop(1, #115A91));
background-image: -webkit-linear-gradient(bottom, #1c81cf 0%, #115A91 100%);
background-image: linear-gradient(to top, #1c81cf 0%, #115A91 100%);
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	line-height: 160%;
	margin: 30px 0;
	padding: 10px 15px;
	text-shadow:1px 1px 2px #333;
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	box-shadow:inset -2px -2px 3px rgba(0,0,0, 0.6),inset 2px 2px 3px rgba(255,255,255,0.8);
}

/* 緑地に白文字 */
.st02-g {
background-image: -ms-linear-gradient(bottom, #07BA07 0%, #057D05 100%);
background-image: -moz-linear-gradient(bottom, #07BA07 0%, #057D05 100%);
background-image: -o-linear-gradient(bottom, #07BA07 0%, #057D05 100%);
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #07BA07), color-stop(1, #057D05));
background-image: -webkit-linear-gradient(bottom, #07BA07 0%, #057D05 100%);
background-image: linear-gradient(to top, #07BA07 0%, #057D05 100%);
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	line-height: 160%;
	margin: 30px 0;
	padding: 10px 15px;
	text-shadow:1px 1px 2px #333;
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	box-shadow:inset -2px -2px 3px rgba(0,0,0, 0.6),inset 2px 2px 3px rgba(255,255,255,0.8);
}

/* 橙地に白文字 */
.st02-o {
background-image: -ms-linear-gradient(bottom, #FA7000 0%, #DE4F02 100%);
background-image: -moz-linear-gradient(bottom, #FA7000 0%, #DE4F02 100%);
background-image: -o-linear-gradient(bottom, #FA7000 0%, #DE4F02 100%);
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #FA7000), color-stop(1, #DE4F02));
background-image: -webkit-linear-gradient(bottom, #FA7000 0%, #DE4F02 100%);
background-image: linear-gradient(to top, #FA7000 0%, #DE4F02 100%);
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	line-height: 160%;
	margin: 30px 0;
	padding: 10px 15px;
	text-shadow:1px 1px 2px #333;
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	box-shadow:inset -2px -2px 3px rgba(0,0,0, 0.6),inset 2px 2px 3px rgba(255,255,255,0.8);
}

/* 黒地に白文字 */
.st02-k {
background-image: -ms-linear-gradient(bottom, #666 0%, #000 100%);
background-image: -moz-linear-gradient(bottom, #666 0%, #000 100%);
background-image: -o-linear-gradient(bottom, #666 0%, #000 100%);
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #666), color-stop(1, #000));
background-image: -webkit-linear-gradient(bottom, #666 0%, #000 100%);
background-image: linear-gradient(to top, #666 0%, #000 100%);
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	line-height: 160%;
	margin: 30px 0;
	padding: 10px 15px;
	text-shadow:1px 1px 2px #333;
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	box-shadow:inset -2px -2px 3px rgba(0,0,0, 0.6),inset 2px 2px 3px rgba(255,255,255,0.8);
}


/*--------------------------------------------------------
　見出し（吹き出し風）背景なし
--------------------------------------------------------*/

/* 赤線に赤文字 */
.st03-r {
	position: relative;
	color: #c00;
	font-size: 20px;
	font-weight: bold;
	line-height: 160%;
	margin: 30px 0;
	padding: 10px 15px 5px 0;
	border-bottom: 1px solid #c00;
}
 
.st03-r:before,
.st03-r:after{
	content: '';
	border-right: 20px solid #fff;
	border-top: 15px solid #c00;
	bottom: -15px;
	position: absolute;
	left: 25px;
}
 
.st03-r:after{
	border-top-color: #fff;
	border-right-color: transparent;
	bottom: -13px;
	left: 26px;
}

/* 青線に青文字 */
.st03-b {
	position: relative;
	color: #025A99;
	font-size: 20px;
	font-weight: bold;
	line-height: 160%;
	margin: 30px 0;
	padding: 10px 15px 5px 0;
	border-bottom: 1px solid #025A99;
}
 
.st03-b:before,
.st03-b:after{
	content: '';
	border-right: 20px solid #fff;
	border-top: 15px solid #025A99;
	bottom: -15px;
	position: absolute;
	left: 25px;
}
 
.st03-b:after{
	border-top-color: #fff;
	border-right-color: transparent;
	bottom: -13px;
	left: 26px;
}

/* 緑線に緑文字 */
.st03-g {
	position: relative;
	color: #018A14;
	font-size: 20px;
	font-weight: bold;
	line-height: 160%;
	margin: 30px 0;
	padding: 10px 15px 5px 0;
	border-bottom: 1px solid #018A14;
}
 
.st03-g:before,
.st03-g:after{
	content: '';
	border-right: 20px solid #fff;
	border-top: 15px solid #018A14;
	bottom: -15px;
	position: absolute;
	left: 25px;
}
 
.st03-g:after{
	border-top-color: #fff;
	border-right-color: transparent;
	bottom: -13px;
	left: 26px;
}

/* 橙線に橙文字 */
.st03-o {
	position: relative;
	color: #F54B02;
	font-size: 20px;
	font-weight: bold;
	line-height: 160%;
	margin: 30px 0;
	padding: 10px 15px 5px 0;
	border-bottom: 1px solid #F54B02;
}
 
.st03-o:before,
.st03-o:after{
	content: '';
	border-right: 20px solid #fff;
	border-top: 15px solid #F54B02;
	bottom: -15px;
	position: absolute;
	left: 25px;
}
 
.st03-o:after{
	border-top-color: #fff;
	border-right-color: transparent;
	bottom: -13px;
	left: 26px;
}

/* 黒線に黒文字 */
.st03-k {
	position: relative;
	color: #000;
	font-size: 20px;
	font-weight: bold;
	line-height: 160%;
	margin: 30px 0;
	padding: 10px 15px 5px 0;
	border-bottom: 1px solid #000;
}
 
.st03-k:before,
.st03-k:after{
	content: '';
	border-right: 20px solid #fff;
	border-top: 15px solid #000;
	bottom: -15px;
	position: absolute;
	left: 25px;
}
 
.st03-k:after{
	border-top-color: #fff;
	border-right-color: transparent;
	bottom: -13px;
	left: 26px;
}


/*--------------------------------------------------------
　見出し（ボタン風）背景なし
--------------------------------------------------------*/

/* 赤枠に赤文字 */
.st04-r {
	color: #c00;
	font-size: 20px;
	font-weight: bold;
	line-height: 160%;
	margin: 30px 0;
	padding: 5px 15px;
	border: 1px solid #c00;
	box-shadow: 0 0 5px #888 inset;
	-moz-box-shadow: 0 0 5px #888 inset; /* Firefox用 */
	-webkit-box-shadow: 0 0 5px #888 inset; /* Safari,Google Chrome用 */
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
}

/* 青枠に青文字 */
.st04-b {
	color: #025A99;
	font-size: 20px;
	font-weight: bold;
	line-height: 160%;
	margin: 30px 0;
	padding: 5px 15px;
	border: 1px solid #025A99;
	box-shadow: 0 0 5px #888 inset;
	-moz-box-shadow: 0 0 5px #888 inset; /* Firefox用 */
	-webkit-box-shadow: 0 0 5px #888 inset; /* Safari,Google Chrome用 */
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
}

/* 緑枠に緑文字 */
.st04-g {
	color: #018A14;
	font-size: 20px;
	font-weight: bold;
	line-height: 160%;
	margin: 30px 0;
	padding: 5px 15px;
	border: 1px solid #018A14;
	box-shadow: 0 0 5px #888 inset;
	-moz-box-shadow: 0 0 5px #888 inset; /* Firefox用 */
	-webkit-box-shadow: 0 0 5px #888 inset; /* Safari,Google Chrome用 */
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
}

/* 橙枠に橙文字 */
.st04-o {
	color: #F54B02;
	font-size: 20px;
	font-weight: bold;
	line-height: 160%;
	margin: 30px 0;
	padding: 5px 15px;
	border: 1px solid #F54B02;
	box-shadow: 0 0 5px #888 inset;
	-moz-box-shadow: 0 0 5px #888 inset; /* Firefox用 */
	-webkit-box-shadow: 0 0 5px #888 inset; /* Safari,Google Chrome用 */
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
}

/* 黒枠に黒文字 */
.st04-k {
	color: #000;
	font-size: 20px;
	font-weight: bold;
	line-height: 160%;
	margin: 30px 0;
	padding: 5px 15px;
	border: 1px solid #000;
	box-shadow: 0 0 5px #888 inset;
	-moz-box-shadow: 0 0 5px #888 inset; /* Firefox用 */
	-webkit-box-shadow: 0 0 5px #888 inset; /* Safari,Google Chrome用 */
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
}


/*--------------------------------------------------------
　ボタン
--------------------------------------------------------*/

/* 赤地に白文字 */
.btn01-r {
	font-size: 24px;
	font-weight: bold;
	line-height: 180%;
	text-align: center;
	text-shadow:2px 2px 2px #333;
}

.btn01-r a {
	display: block;
	margin: 30px;
	padding: 20px 0;
	text-decoration: none;
	border: 5px solid #fff;
	border-radius:6px;
	-webkit-border-radius:6px;
	-moz-border-radius:6px;
	box-shadow:1px 3px 5px 0 #999;
}

.btn01-r a:link,
.btn01-r a:visited{
background-image: -ms-linear-gradient(bottom, #ff3019 0%, #cf0404 100%);
background-image: -moz-linear-gradient(bottom, #ff3019 0%, #cf0404 100%);
background-image: -o-linear-gradient(bottom, #ff3019 0%, #cf0404 100%);
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ff3019), color-stop(1, #cf0404));
background-image: -webkit-linear-gradient(bottom, #ff3019 0%, #cf0404 100%);
background-image: linear-gradient(to top, #ff3019 0%, #cf0404 100%);
	color: #fff;
}

.btn01-r a:hover,
.btn01-r a:active{
background-image: -ms-linear-gradient(bottom, #cf0404 0%, #ff3019 100%);
background-image: -moz-linear-gradient(bottom, #cf0404 0%, #ff3019 100%);
background-image: -o-linear-gradient(bottom, #cf0404 0%, #ff3019 100%);
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #cf0404), color-stop(1, #ff3019));
background-image: -webkit-linear-gradient(bottom, #cf0404 0%, #ff3019 100%);
background-image: linear-gradient(to top, #cf0404 0%, #ff3019 100%);
	color: #fff;
}

/* 青地に白文字 */
.btn01-b {
	font-size: 24px;
	font-weight: bold;
	line-height: 180%;
	text-align: center;
	text-shadow:2px 2px 2px #333;
}

.btn01-b a {
	display: block;
	margin: 30px;
	padding: 20px 0;
	text-decoration: none;
	border: 5px solid #fff;
	border-radius:6px;
	-webkit-border-radius:6px;
	-moz-border-radius:6px;
	box-shadow:1px 3px 5px 0 #999;
}

.btn01-b a:link,
.btn01-b a:visited{
background-image: -ms-linear-gradient(bottom, #1c81cf 0%, #115A91 100%);
background-image: -moz-linear-gradient(bottom, #1c81cf 0%, #115A91 100%);
background-image: -o-linear-gradient(bottom, #1c81cf 0%, #115A91 100%);
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #1c81cf), color-stop(1, #115A91));
background-image: -webkit-linear-gradient(bottom, #1c81cf 0%, #115A91 100%);
background-image: linear-gradient(to top, #1c81cf 0%, #115A91 100%);
	color: #fff;
}

.btn01-b a:hover,
.btn01-b a:active{
background-image: -ms-linear-gradient(bottom, #115A91 0%, #1c81cf 100%);
background-image: -moz-linear-gradient(bottom, #115A91 0%, #1c81cf 100%);
background-image: -o-linear-gradient(bottom, #115A91 0%, #1c81cf 100%);
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #115A91), color-stop(1, #1c81cf));
background-image: -webkit-linear-gradient(bottom, #115A91 0%, #1c81cf 100%);
background-image: linear-gradient(to top, #115A91 0%, #1c81cf 100%);
	color: #fff;
}

/* 緑地に白文字 */
.btn01-g {
	font-size: 24px;
	font-weight: bold;
	line-height: 180%;
	text-align: center;
	text-shadow:2px 2px 2px #333;
}

.btn01-g a {
	display: block;
	margin: 30px;
	padding: 20px 0;
	text-decoration: none;
	border: 5px solid #fff;
	border-radius:6px;
	-webkit-border-radius:6px;
	-moz-border-radius:6px;
	box-shadow:1px 3px 5px 0 #999;
}

.btn01-g a:link,
.btn01-g a:visited{
background-image: -ms-linear-gradient(bottom, #07BA07 0%, #057D05 100%);
background-image: -moz-linear-gradient(bottom, #07BA07 0%, #057D05 100%);
background-image: -o-linear-gradient(bottom, #07BA07 0%, #057D05 100%);
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #07BA07), color-stop(1, #057D05));
background-image: -webkit-linear-gradient(bottom, #07BA07 0%, #057D05 100%);
background-image: linear-gradient(to top, #07BA07 0%, #057D05 100%);
	color: #fff;
}

.btn01-g a:hover,
.btn01-g a:active{
background-image: -ms-linear-gradient(bottom, #057D05 0%, #07BA07 100%);
background-image: -moz-linear-gradient(bottom, #057D05 0%, #07BA07 100%);
background-image: -o-linear-gradient(bottom, #057D05 0%, #07BA07 100%);
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #057D05), color-stop(1, #07BA07));
background-image: -webkit-linear-gradient(bottom, #057D05 0%, #07BA07 100%);
background-image: linear-gradient(to top, #057D05 0%, #07BA07 100%);
	color: #fff;
}

/* 橙地に白文字 */
.btn01-o {
	font-size: 24px;
	font-weight: bold;
	line-height: 180%;
	text-align: center;
	text-shadow:2px 2px 2px #333;
}

.btn01-o a {
	display: block;
	margin: 30px;
	padding: 20px 0;
	text-decoration: none;
	border: 5px solid #fff;
	border-radius:6px;
	-webkit-border-radius:6px;
	-moz-border-radius:6px;
	box-shadow:1px 3px 5px 0 #999;
}

.btn01-o a:link,
.btn01-o a:visited{
background-image: -ms-linear-gradient(bottom, #FA7000 0%, #DE4F02 100%);
background-image: -moz-linear-gradient(bottom, #FA7000 0%, #DE4F02 100%);
background-image: -o-linear-gradient(bottom, #FA7000 0%, #DE4F02 100%);
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #FA7000), color-stop(1, #DE4F02));
background-image: -webkit-linear-gradient(bottom, #FA7000 0%, #DE4F02 100%);
background-image: linear-gradient(to top, #FA7000 0%, #DE4F02 100%);
	color: #fff;
}

.btn01-o a:hover,
.btn01-o a:active{
background-image: -ms-linear-gradient(bottom, #DE4F02 0%, #FA7000 100%);
background-image: -moz-linear-gradient(bottom, #DE4F02 0%, #FA7000 100%);
background-image: -o-linear-gradient(bottom, #DE4F02 0%, #FA7000 100%);
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #DE4F02), color-stop(1, #FA7000));
background-image: -webkit-linear-gradient(bottom, #DE4F02 0%, #FA7000 100%);
background-image: linear-gradient(to top, #DE4F02 0%, #FA7000 100%);
	color: #fff;
}


/*--------------------------------------------------------
　仕切り線
--------------------------------------------------------*/

/*左から右に薄く*/
hr.g-line01 {
	border:0;
	height:2px;
	background-image: -webkit-linear-gradient(left, rgba(0,0,0,0.8), rgba(0,0,0,0.4), rgba(0,0,0,0));
	background-image:    -moz-linear-gradient(left, rgba(0,0,0,0.8), rgba(0,0,0,0.4), rgba(0,0,0,0));
	background-image:     -ms-linear-gradient(left, rgba(0,0,0,0.8), rgba(0,0,0,0.4), rgba(0,0,0,0));
	background-image:      -o-linear-gradient(left, rgba(0,0,0,0.8), rgba(0,0,0,0.4), rgba(0,0,0,0));
}

/*中央から左右に薄く*/
hr.g-line02 {
	border: 0;
	height: 2px;
	background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	background-image:    -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	background-image:     -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	background-image:      -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
}



/*----------------------------------------------------
　インラインボックス（スクロール）
----------------------------------------------------*/

.inbox {
        margin: 0 -25px;
        border: solid 1px #999;
        width: 700px;
        height: 300px;
        padding: 25px;
        overflow: auto;
}
