@charset "utf-8";

/* ========================================================
	base.css => 共通基本CSS
======================================================== */

/* reset
============================================================================================================ */
html {
-webkit-text-size-adjust: 100%;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}
table {
	font-size: 100%;
	font-family: inherit;
}
fieldset, img {
	border: 0;
}
img {
	vertical-align: middle;
}
address, caption, cite, code, dfn, em, th, var {
	font-style: normal;
	font-weight: normal;
}
ol, ul {
	list-style: none;
}
caption, th {
	text-align: left;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
}
q:before, q:after {
	content: '';
}
abbr, acronym {
	border: 0;
}
select, input, textarea {
	font-size: 100%;
}
header,footer,nav,section,article,figure,aside {
	display: block;
}

button{
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}
input[type="text"] {
	width:100%;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* ClearFix
============================================================================================================ */
.clear,
.clearfix,
.row {
	/*zoom: 1;*/
	position: relative;
}
.clear:after,
.clearfix:after,
.row:after {
	content: "."; display: block; height: 0; clear: both; visibility: hidden; line-height: 0; overflow: hidden;
}


/* float
============================================================================================================ */
.fl {float: left;}
.fr {float: right;}

@media screen and (max-width: 680px) {
.fl {float: none;}
.fr {float: none;}
}

/* block_center
============================================================================================================ */
.bc{
	display: block;
	margin-right: auto;
	margin-left: auto;
}

/* text-align
============================================================================================================ */
.tal {text-align: left;}
.tac {text-align: center;}
.tar {text-align: right;}


/* margin
============================================================================================================ */
.m00 {margin: 0 !important;}
.mb {margin-bottom: 1.5em !important;}
.mb00 {margin-bottom: 0 !important;}
.mb05 {margin-bottom: 5px !important;}
.mb08 {margin-bottom: 8px !important;}
.mb10 {margin-bottom: 10px !important;}
.mb15 {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb25 {margin-bottom: 25px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb35 {margin-bottom: 35px !important;}
.mb40 {margin-bottom: 40px !important;}
.mb45 {margin-bottom: 45px !important;}
.mb50 {margin-bottom: 50px !important;}
.mb-40 {margin-bottom: -40px !important;}
.mt {margin-top: 1.5em !important;}
.mt00 {margin-top: 0 !important;}
.mt05 {margin-top: 5px !important;}
.mt08 {margin-top: 8px !important;}
.mt10 {margin-top: 10px !important;}
.mt15 {margin-top: 15px !important;}
.mt20 {margin-top: 20px !important;}
.mt25 {margin-top: 25px !important;}
.mt30 {margin-top: 30px !important;}
.mt35 {margin-top: 35px !important;}
.mt40 {margin-top: 40px !important;}
.mt45 {margin-top: 45px !important;}
.mt50 {margin-top: 50px !important;}
.mt-40 {margin-top: -40px !important;}

/* padding
============================================================================================================ */
.p00 {padding: 0 !important;}
.pb {padding-bottom: 1.3em !important;}
.pb00 {padding-bottom: 0 !important;}
.pb05 {padding-bottom: 5px !important;}
.pb08 {padding-bottom: 8px !important;}
.pb10 {padding-bottom: 10px !important;}
.pb15 {padding-bottom: 15px !important;}
.pb20 {padding-bottom: 20px !important;}
.pb25 {padding-bottom: 25px !important;}
.pb30 {padding-bottom: 30px !important;}
.pb35 {padding-bottom: 35px !important;}
.pb40 {padding-bottom: 40px !important;}
.pb45 {padding-bottom: 45px !important;}
.pb50 {padding-bottom: 50px !important;}
.pt00 {padding-top: 0 !important;}
.pt05 {padding-top: 5px !important;}
.pt08 {padding-top: 8px !important;}
.pt10 {padding-top: 10px !important;}
.pt15 {padding-top: 15px !important;}
.pt20 {padding-top: 20px !important;}
.pt25 {padding-top: 25px !important;}
.pt30 {padding-top: 30px !important;}
.pt35 {padding-top: 35px !important;}
.pt40 {padding-top: 40px !important;}
.pt45 {padding-top: 45px !important;}
.pt50 {padding-top: 50px !important;}


/* font size
============================================================================================================ */
.fz10 { font-size: 10px;}
.fz11 { font-size: 11px;}
.fz12 { font-size: 12px;}
.fz13 { font-size: 13px;}
.fz14 { font-size: 14px;}
.fz15 { font-size: 15px;}
.fz16 { font-size: 16px;}
.fz17 { font-size: 17px;}
.fz18 { font-size: 18px;}
.fz19 { font-size: 19px;}
.fz20 { font-size: 20px;}


/* font weight
============================================================================================================ */
.fwb{ font-weight: bold; }


/*hoverアニメーション*/
.fade a:hover img {
	opacity: 0.45;
	-webkit-opacity: 0.45;
	-moz-opacity: 0.45;
	filter: alpha(opacity=45);	/* IE lt 8 */
	-ms-filter: "alpha(opacity=45)"; /* IE 8 */
	}
.fade a img {
	-webkit-transition: opacity 0.2s ease-out;
	-moz-transition: opacity 0.2s ease-out;
	-ms-transition: opacity 0.2s ease-out;
	transition: opacity 0.2s ease-out;
	}

a.fade:hover img {
	opacity: 0.45;
	-webkit-opacity: 0.45;
	-moz-opacity: 0.45;
	filter: alpha(opacity=45);	/* IE lt 8 */
	-ms-filter: "alpha(opacity=45)"; /* IE 8 */
	}
a.fade img {
	-webkit-transition: opacity 0.2s ease-out;
	-moz-transition: opacity 0.2s ease-out;
	-ms-transition: opacity 0.2s ease-out;
	transition: opacity 0.2s ease-out;
	}

ul.number{
	list-style-type: decimal;
	padding-left:2em;
	line-height: 1.4em;
	}
	
/*---レスポンシブの為に追記---*/
.l85{
	float: left;
	width: 85%;
	}
.l80{
	float: left;
	width: 80%;
	}
.l75{
	float: left;
	width: 75%;
	}
.l70{
	float: left;
	width: 70%;
	}
.l65{
	float: left;
	width: 65%;
	}
.l60{
	float: left;
	width: 60%;
	}
.l55{
	float: left;
	width: 55%;
	}
.l50{
	float: left;
	width: 50%;
	}
.l45{
	float: left;
	width: 45%;
	}
.l40{
	float: left;
	width: 40%;
	}
.l35{
	float: left;
	width: 35%;
	}
.l30{
	float: left;
	width: 30%;
	}
.l25{
	float: left;
	width: 25%;
	}
.l20{
	float: left;
	width: 20%;
	}
.l15{
	float: left;
	width: 15%;
	}
.l10{
	float: left;
	width: 10%;
	}

.r85{
	float: right;
	width: 85%;
	}
.r80{
	float: right;
	width: 80%;
	}
.r75{
	float: right;
	width: 75%;
	}
.r70{
	float: right;
	width: 70%;
	}
.r65{
	float: right;
	width: 65%;
	}
.r60{
	float: right;
	width: 60%;
	}
.r55{
	float: right;
	width: 55%;
	}
.r50{
	float: right;
	width: 50%;
	}
.r45{
	float: right;
	width: 45%;
	}
.r40{
	float: right;
	width: 40%;
	}
.r35{
	float: right;
	width: 35%;
	}
.r30{
	float: right;
	width: 30%;
	}
.r25{
	float: right;
	width: 25%;
	}
.r20{
	float: right;
	width: 20%;
	}
.r15{
	float: right;
	width: 15%;
	}
.r10{
	float: right;
	width: 10%;
	}
@media screen and (max-width: 680px) {

/*---レスポンシブの為に追記---*/
.l85,.l80,.l75,.l70,.l65,.l60,.l55,.l50,.l45,.l40,.l35,.l30,.l25,.l20,.l15,.l10{
	width: 100%;
	margin-bottom: 15px;
	}

.r85,.r80,.r75,.r70,.r65,.r60,.r55,.r50,.r45,.r40,.r35,.r30,.r25,.r20,.r15,.r10{
	width: 100%;
	margin-bottom: 15px;
	}
}

.red{
	color:#C1272D;
	}
.white{
	color:#FFFFFF;
	}
.yellow{
	color:#FFF100;
	}
.j_green{
	color: #1E7600;
	}
.j_orange{
	color: #7E4500;
	}






