html, body, div, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, img, abbr, acronym, address, big, cite, code,
del, dfn, em, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	font-family: "メイリオ", Meiryo, Verdana, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
	box-sizing:border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
	box-sizing:border-box;
}

html{
    overflow-y: scroll;
}

blockquote, q {
	quotes: none;
	box-sizing:border-box;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
	box-sizing:border-box;
}

input, textarea,{
	margin: 0;
	padding: 0;
	box-sizing:border-box;
}

ol, ul{
    list-style:none;
	box-sizing:border-box;
}

table{
	width:100%;
    border-collapse: collapse; 
    border-spacing:0;
	box-sizing:border-box;
}

caption, th{
    text-align: left;
	box-sizing:border-box;
}

a:focus {
	outline:none;
}

header:after,footer:after,section:after,article:after,aside:after,div:after,dl:after,ul:after {
	content : "";
	display : block;
	height : 0;
	clear : both;
}

br {
	letter-spacing:0;
}

img {
	width:100%;
	border: 0;
	vertical-align:bottom;
	box-sizing:border-box;
}

div#accesslog {
	display:none;
}


/*共通使用部分*/

body {
	margin: 0;
	padding: 0;
	font-family:メイリオ, Helvetica, Arial, sans-serif;
	font-size:0.95em;
	letter-spacing:0.1em;
	/*文字サイズの自動調整を無効*/
	-webkit-text-size-adjust: 100%;
	background:#fff;
}

@media (max-width: 680px){
body {
	font-size:0.8em;
}
}

.red {
	color:#E74C3C;
}

.blue {
	color:#0056A8;
}

.black {
	color:#333;
}

.clear {
	clear:both;
}

.left {
	float:left;
}

.right {
	float:right;
}

.big {
	font-size:1.2em;
}

.big02 {
	font-size:1.4em;
}

.small {
	font-size:0.9em;
}

.bold {
	font-weight:bold;
}

.m10 {
	margin:10px;
}

@media (max-width: 680px){
.m10 {
	margin:10px 0;
}
}

.p10 {
	padding: 0 10px;
}


.bottom5 {
	margin-bottom: 5px;
}

.bottom10 {
	margin-bottom: 10px;
}

.bottom15 {
	margin-bottom: 15px;
}

.bottom20 {
	margin-bottom: 20px;
}

@media (max-width: 680px){
.bottom20 {
	margin-bottom: 10px;
}
}

.bottom30 {
	margin-bottom: 30px;
}

.bottom40 {
	margin-bottom: 40px;
}

.bottom50 {
	margin-bottom: 50px;
}

.bottom60 {
	margin-bottom: 60px;
}

/*textleftのスタイル*/

.textleft {
	text-align:left;
}

.textcenter {
	text-align:center;
}

.textright {
	text-align:right;
}

/*文字色のスタイル*/

a:link,a:visited {
	text-decoration:none;
	overflow:hidden;
	color:#0054AC;
}

a:hover {
	text-decoration:none;
	color:#FF8900;
}

/*hoverのスタイル*/ 
.fade {
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	-ms-transition: 0s ease-in-out;
}

.fade:hover {
	opacity: 0.6;
	filter: alpha(opacity=60);
}

/*scaleのスタイル*/
.scale {
	overflow: hidden;
}
 
.scale img {
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	-ms-transition: 0s ease-in-out;
}

.scale img:hover {
	webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

/*boxのスタイル*/
.box960 {
	clear:both;
	width:100%;
	max-width:960px;
	margin:0 auto;
	position:relative;
}

.box960 img {
	max-width:960px;
}

div#accesslog img {
	display:block;
	height:0;
}

/*baseのスタイル*/
.base01 {
	clear:both;
	padding:0 20px;
}

.base02 {
	clear:both;
	padding:15px;
}

@media (max-width: 680px){
.base01 {
	padding:0 10px;
}

.base02 {
	padding:10px;
}
}

/*buttonのスタイル*/
.button01 a {
	clear:both;
	padding:10px 25px;
	text-align: center;
	color: #fff;
	cursor:pointer;
	font-size:1.1em;
	display:inline-block;
	background:#0054AC;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	-ms-transition: 0s ease-in-out;
	border-radius:5px;
	font-weight:bold;
}

.button01 a:hover {
	background:#333;
	color:#fff;
}

.button02 a {
	clear:both;
	padding:10px 25px;
	text-align: center;
	color: #000;
	cursor:pointer;
	font-size:1.1em;
	display:inline-block;
	background:#f9f9f9;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	-ms-transition: 0s ease-in-out;
	border-radius:5px;
	font-weight:bold;
	border:1px solid #ddd;
}

.button02 a:hover {
	background:#ddd;
	color:#000;
}

.button02 span {
	padding: 3px 0 3px 30px;
	background:url(../img/tel.png) no-repeat left;
	background-size:25px;
}

@media (max-width: 680px){

.button01 a {
	width:100%;
	margin:0;
	display:block;
	padding:10px 0;
	border-radius:3px;
	background:#0054AC;
}

.button01 a:hover {
	background:#333;
}

.button02 a {
	width:100%;
	margin:0;
	display:block;
	padding:10px 0;
	font-size:1em;
	border-radius:3px;
	font-weight:normal;
	background:#f9f9f9;
}

.button02 a:hover {
	background:#ddd;
	color:#000;
}
}

/*widh680のスタイル*/
.w680 img {
	max-width:680px;
}

/*widh780のスタイル*/
.w780 img {
	max-width:780px;
}

/*img切り替えのスタイル*/
@media (min-width: 680px){
.smallimg {
	display:none;
}
}

@media (max-width: 680px){
.bigimg {
	display:none;
}
}

div.w-bonus-bg01 {
	padding-bottom: 20px;
	background:url(../img/w-bonus-bg01.png) no-repeat center top;
	background-size:cover;
}

@media (max-width: 680px){
div.w-bonus-bg01 {
	padding-bottom: 10px;
}
}

/* header */
header#header {
	width:100%;
	height:100%;
}

header#header h1 {
	position:relative;
	z-index:9999;
}

header#header p {
	font-weight:bold;
	font-size:1.1em;
	/* text-shadow: 2px 1px 0px #00C95E,-2px 1px 0px #00C95E,2px -1px 0px #00C95E,-2px -1px 0px #00C95E; */
}

header#header p.w-bonus-img02 {
	position:absolute;
	top:-100px;
	right:-100px;
}

@media (max-width: 1180px){
header#header p.w-bonus-img02 {
	top:-30px;
	right:0;
}
}

@media (max-width: 880px){
header#header p.w-bonus-img02 {
	width:300px;
}
}

@media (max-width: 680px){
header#header p.w-bonus-img02 {
	width:200px;
}

header#header p {
	font-weight:bold;
	font-size:1em;
}
}

/* content */
section.w-bonus01 {
	margin-bottom:2.4%;
}

section.w-bonus01 div.left {
	width:48.8%;
}

section.w-bonus01 div.right {
	width:48.8%;
}

div.w-bonus01-bg {
	padding:10px;
	background:#fff;
}

@media (max-width: 680px){
section.w-bonus01 {
	margin-bottom:10px;
}

section.w-bonus01 div.left {
	width:100%;
	float:none;
	margin-bottom: 10px;
}

section.w-bonus01 div.right {
	width:100%;
	float:none;
}
}

section.w-bonus02 p {
	font-size:1.1em;
}

@media (max-width: 880px){
section.w-bonus02 p {
	font-size:1em;
}
}

/* footer */
footer#footer {
	clear:both;
	color:#003399;
	padding-top: 40px;
	padding-bottom: 40px;
}

.logo img {
	max-width:420px;
}

footer#footer p {
	font-size:1.4em;
}

@media (max-width: 680px){
footer#footer {
	text-align:center;
	padding-top: 10px;
	padding-bottom: 10px;
}

.logo img {
	max-width:300px;
}

footer#footer p {
	font-size:1em;
}
}