@charset "euc-jp";

/*-----------------------------------------------------------------------------*/
/* 基本設定 */
/*-----------------------------------------------------------------------------*/
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, font, 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 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	}
*, *::before, *::after {
	box-sizing: border-box;
	}

html, body { /*height:100%;*/}

html {
	font-size: 62.5%; /*10px相当*/
	-webkit-font-smoothing: antialiased;
	}

body {
	color:#000;
	font-size: 1.5rem;
	line-height: 1.7;
	word-wrap:break-word;
	overflow-wrap:break-word;

	font-family: 'Hiragino Kaku Gothic ProN', "メイリオ", sans-serif;
	
	-webkit-text-size-adjust: 100%; /*　iphoneでの文字拡大禁止　*/
	}

table {
	font-size:inherit;
	border-collapse:collapse;
	border-spacing:0;
	}
	th,td {
	line-height:1.5;
	font-weight: inherit;
	text-align: left;
	}
	
h1,h2,h3,h4,h5,h6,em,pre { font-weight:normal; line-height:1.3;}

img {
	vertical-align: top;
	border:none;
	max-width:100%;
	height:auto;
	}

ul, ol { list-style: none;}
.clear { clear: both;}
.nowrap { white-space: nowrap;}

.text_c, .text_c p {	text-align:center !important;}
.text_r, .text_r p {	text-align:right !important;}


/*　レスポンシブ切り替え（brなど）　*/
@media screen and (max-width: 767px) {
.pc, .pc_br ,.pcOnly { display: none !important; }
}
@media screen and (min-width: 768px) {
.sp, .sp_br,.spOnly { display: none !important; }
}

/*　リンク
-----------------------------------------------------------------------------*/
a {
	color: #003399;
	text-decoration: underline;
	outline:none;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	}
	a:hover {
	color: #3366CC;
	}

/*　フォント
-----------------------------------------------------------------------------*/
.font_b {
	font-weight: bold !important;
	}
.font_n{
	font-weight: normal !important;
	font-style: normal !important;
	}

/*　float解除（共通）
-----------------------------------------------------------------------------*/
.cf::after {
	content: "";
	clear: both;
	display: block;
	}
