@charset "utf-8";
/* このファイルはUTF-8のBOMなし(UTF-8N)で保存しています */

/**
 * CSS Information
 * ===============================================================
 * *フォントサイズなどデフォルト設定
 * ===============================================================
*/
/* ::::::::::::::::::::::::::::::::::::
:::: reset sorce
:::::::::::::::::::::::::::::::::::: */

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}







/**
 * ========================================
 * //1 font-size / font-weight / color
 * ========================================
 */

.txt_10{font-size: 1.0rem;}
.txt_11{font-size: 1.1rem;}
.txt_12{font-size: 1.2rem;}
.txt_13{font-size: 1.3rem;}
.txt_14{font-size: 1.4rem;}
.txt_15{font-size: 1.5rem;}
.txt_16{font-size: 1.6rem;}
.txt_17{font-size: 1.7rem;}
.txt_18{font-size: 1.8rem;}
.txt_19{font-size: 1.9rem;}
.txt_20{font-size: 2.0rem;}
.txt_21{font-size: 2.1rem;}
.txt_22{font-size: 2.2rem;}
.txt_23{font-size: 2.3rem;}
.txt_24{font-size: 2.4rem;}
.txt_25{font-size: 2.5rem;}
.txt_26{font-size: 2.6rem;}
.txt_27{font-size: 2.7rem;}
.txt_28{font-size: 2.8rem;}
.txt_29{font-size: 2.9rem;}
.txt_30{font-size: 3.0rem;}
.txt_31{font-size: 3.1rem;}
.txt_32{font-size: 3.2rem;}

	/* -- >>> styles for narrow layout SPのときフォントが大きくなりすぎるのを防ぐ ----- */
	@media screen and (max-width: 599px) {
		.txt_17{font-size: 1.6rem;}
		.txt_18{font-size: 1.6rem;}
		.txt_19{font-size: 1.6rem;}
		.txt_20{font-size: 1.7rem;}
		.txt_21{font-size: 1.7rem;}
		.txt_22{font-size: 1.7rem;}
		.txt_23{font-size: 1.8rem;}
		.txt_24{font-size: 1.8rem;}
		.txt_25{font-size: 1.8rem;}
		.txt_26{font-size: 1.9rem;}
		.txt_27{font-size: 1.9rem;}
		.txt_28{font-size: 1.9rem;}
		.txt_29{font-size: 2.0rem;}
		.txt_30{font-size: 2.0rem;}
		.txt_31{font-size: 2.0rem;}
		.txt_32{font-size: 2.1rem;}
	}

.bold{font-weight: bold;}

.txt_red{color:#f05d5d;}
.txt_orange{color:#ff7a03;}
.txt_yellow{color:#ffea00;}
.txt_green{color:#46a363;}
.txt_blue{color:#3a9ec8;}
.txt_purple{color:#48449e;}


.txh_20 {line-height: 2.0rem;}
.txh_25 {line-height: 2.5rem;}
.txh_30 {line-height: 3.0rem;}
.txh_35 {line-height: 3.5rem;}
.txh_40 {line-height: 4.0rem;}


.ls1 { letter-spacing: 1px; }
.ls3 { letter-spacing: 3px; }
.ls5 { letter-spacing: 5px; }
.ls8 { letter-spacing: 8px; }


/**
 * ========================================
 * //2 margin bottom
 * ========================================
 */

.mb_10{margin-bottom: 10px;}
.mb_20{margin-bottom: 20px;}
.mb_30{margin-bottom: 30px;}
.mb_40{margin-bottom: 40px;}
.mb_50{margin-bottom: 50px;}
.mb_60{margin-bottom: 60px;}
.mb_70{margin-bottom: 70px;}
.mb_80{margin-bottom: 80px;}


.mb05em { margin-bottom: 0.5em; }
.mb1em { margin-bottom: 1em; }
.mb2em { margin-bottom: 2em; }
.mb3em { margin-bottom: 3em; }
.mb4em { margin-bottom: 4em; }
.mb5em { margin-bottom: 5em; }
.mb10em { margin-bottom: 10em; }

/**
 * ========================================
 * // text position
 * ========================================
 */

.tC {text-align: center;}
.tL {text-align: left;}
.tR {text-align: right;}

.cf {overflow: hidden;}



/**
 * ========================================
 * //3 float
 * ========================================
 */


	/* -- >>> styles for narrow layout ----- */
	@media screen and (max-width: 599px) {
		.imgR,.imgL{
			text-align: center;
		}

	}

	/* -- >>> styles for medium layout ----- */
	@media screen and (min-width: 600px) and (max-width: 959px) {
		.imgR{
			float:right;
		}
		.imgL{
			float:left;
		}

	}

	/* -- >>> styles for wide layout ----- */
	@media screen and (min-width: 960px) {
		.imgR{
			float:right;
		}
		.imgL{
			float:left;
		}
		section .tL{
			text-align: left;
		}
		section .tR{
			text-align: right;
		}
		

	}



	/* -- >>> styles for wide layout ----- */
	/*@media screen and (max-width: 960px) {

		.imgR{
			float:right;
		}
		.imgL{
			float:left;
		}
		section .imgR{
			text-align: center;
		}
		section .tL{
			text-align: left;
		}
		section .tR{
			text-align: right;
		}
		section .imgL{
			text-align: center;
		}	

	}*/




