@charset "utf-8";
/* CSS Document */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, 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 {
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
}

li{list-style:none;}

a:active,
a:hover {
  outline: 0;
}

@-webkit-viewport { width: device-width; }
@-moz-viewport { width: device-width; }
@-ms-viewport { width: device-width; }
@-o-viewport { width: device-width; }
@viewport { width: device-width; }



* {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
img {
   vertical-align: bottom;
}

a:hover img{
	filter:alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}


/* ------------------------------------------
  STYLES
--------------------------------------------- */

body {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	background: #FFF;
	color: #47210d;
	font-size: 14px;
	font-family: "メイリオ","Meiryo",verdana,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
	line-height: 1.8;
	letter-spacing:-0.001em;
	word-wrap: break-word;
	min-width: 1000px;
}

a{
	color: #47210d;
}

a:hover{

}

section{
	width:100%;
	
}


section .inner{
	width:1000px;
	margin-left:auto;
	margin-right:auto;
	padding:75px 0;
	overflow:hidden;
}

header , footer{
	width:1000px;
	margin-left:auto;
	margin-right:auto;
	padding:20px 0;
	overflow:hidden;
}

footer{
	clear:both;
}

footer p{
	width:100%;
	float:left;
	text-align:right;
	margin-top:20px;
	font-size:17px;
}

h2{

}

h3{
	font-size:24px;
	padding:55px 0 30px 0;
	margin-bottom:56px;
	text-align:center;
}

h4{
	font-size:21px;
	margin-bottom:10px;
	line-height:1.8;
}


/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:640px){

body {
	font-size: 12px;
	min-width: 340px;
	width:expression(document.body.clientWidth < 322? "320px" : "auto");
}


header , footer{
	width:100%;
	padding:14px 10px;
}

section .inner{
	width:100%;
	padding:30px 10px;
}

h2{
	font-size:20px;
}

h3{
	font-size:20px;
}

h4{
	font-size:18px;
}

footer p{
	width:100%;
	text-align:center;
	margin-top:20px;
	font-size:13px;
}


}


#page-top {
	position: fixed;
	bottom: 50px;
	right: 50px;
}

#page-top a {
	display: block;
	width: 55px;
	height: 55px;
	background-color: #c9c9ca;
	border-radius: 50px;
	text-align: center;
	color: #fff;
	font-size: 30px;
	text-decoration: none;
	line-height: 50px;
}



/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:640px){

#page-top{
	display:none;
}


}


/*******************************************************************************************

	汎用CSS
	
*******************************************************************************************/
/*div幅指定用*/


.w100 {
	width: 100%;
}
.w70 {
	width: 70%;
}
.w60 {
	width: 60%;
}
.w50 {
	width: 50%;
}
.w40 {
	width: 40%;
}
.w30 {
	width: 30%;
}
.w33 {
	width: 33%;
}

/*マージン調整用*/
.ml10 {
	margin-left: 10px;
}
.ml20 {
	margin-left: 15px;
}
.mt10 {
	margin-top: 10px;
}
.mt20 {
	margin-top: 20px;
}
.mt30 {
	margin-top: 30px;
}
.mb10 {
	margin-bottom: 10px;
}

.mb10-980 {
	margin-bottom: 10px;
}

.mb15 {
	margin-bottom: 15px;
}

.mb20 {
	margin-bottom: 20px;
}
.mb30 {
	margin-bottom: 30px;
}

.mb40 {
	margin-bottom: 40px;
}

.mb50 {
	margin-bottom: 50px;
}

/*パディング調整用*/

.pl20 {
	padding-left: 20px;
}
.pt0{padding-top:0 !important;}

/*フォント用*/
.fs80 {
	font-size: 80%;
}
.fs90 {
	font-size: 90%;
}


.fs11{font-size: 11px;}
.fs12{font-size: 12px;}
.fs13{font-size: 13px;}
.fs14{font-size: 14px;}
.fs15{font-size: 15px;}
.fs16{font-size: 16px;}
.fs17{font-size: 17px;}

.red {
	color: #cc0000;
	font-size: 100%;
	font-weight: bold;
}
.blue {
	font-size: 100%;
	color: #013769;
	font-weight: bold;
}

/*フロート用*/
.fleft {
	float: left;
}
.fright {
	float: right;
}
/*text-align用*/
.talg_C {
	text-align: center;
}
.talg_R {
	margin-top: 5px;
	float:right;
	margin-right:15px;
}

.clear_both{
	clear:both;
}

.vertical{
	vertical-align:middle;
}

.pc_see{display:inline;}

.sp_see{display:none;}

@media only screen and (max-width:640px){

.pc_see{display:none;}

.sp_see{display:inline;}

}

