@charset "utf-8"; /*
Theme Name: BizVektor SOGOBU CustomSample
Theme URI: http://bizvektor.com
Template: biz-vektor
Description: 
Author: Vektor,Inc
Tags: 
Version: 1.0
*/

#header #site-title	{ text-align:center;  }
#header #site-title a img	{ max-height:100% !important;max-width:100% !important; }

#content p {
    line-height: 170%;
    font-size: large;
}


#content table {
font-size: large;
}


/*-----------------------------
16. CSSのみでボタンデザイン #1　2016/05/07
http://www.nxworld.net/tips/css-only-button-design-and-hover-effects.html

CSS3で装飾したボタン風リンクのサンプルコード（一部採用）
http://www.uka-blog.com/web/html_css/entry_001558.php
------------------------------*/

.button {
	position: relative;
	margin : 0 auto;
	background-color: #85bf43;
	border-radius: 4px;
	color: #fff;
	line-height: 75px;
 font-size: large;
	-webkit-transition: none;
	transition: none;
	box-shadow: 0 3px 0 #0e8c73;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
font-weight: bold;
text-align: center;
width:350px
}
.button:hover {
	background-color: #b3db85;
	box-shadow: 0 3px 0 #23a188;
}
.button:active {
	top: 3px;
	box-shadow: none;
}
.button a {
color: #fff;
text-decoration: none;
}

