@charset "UTF-8";

/* /////////////////////////////////////////////// */

/* 汎用CSS */

/* /////////////////////////////////////////////// */

/* ----------------------------------------------- */
/* 初期化 */
/* ----------------------------------------------- */
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,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, #menu, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	background-repeat: no-repeat;
	box-sizing: border-box;
}

body {
	font-family: Verdana, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", Meiryo, sans-serif;
	font-size: 0.85em;
	font-feature-settings : "palt";
	line-height: 160%;
}

iframe {
	vertical-align: bottom;
}

table {
	border-collapse: collapse;
}

p {
	text-align: justify;
}

address {
	font-style: normal;
}



/* ----------------------------------------------- */
/* レイアウト系 */
/* ----------------------------------------------- */
.table_view {
	display: table;
	border-collapse: collapse;
}
.table_view > * {
	display: table-cell;
	vertical-align: middle;
}

.flex {
	display: flex;
}
.wrap {
	flex-wrap: wrap;
}

.no_list {
	margin: 0;
	padding: 0;
}
.no_list > li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.fixed_table,
.fixed_table thead,
.fixed_table tbody {
	width: 100%;
	display: block;
	background-color: #FFF;
}
.fixed_table thead {
	display: table;
	width: calc(100% - 15px);
}
.fixed_table tbody {
	height: 200px;
	display: block;
	overflow-y: scroll;
}
.fixed_table tbody tr {
	width: 100%;
	margin-bottom: -1px;
	display: table;
}
.fixed_table th,
.fixed_table td {
	border: 1px solid #000;
}

.news_view {
}
.news_view dt {
	width: 5em;
	margin-right: -5em;
	float: left;
	clear: both;
}
.news_view dd {
	padding-left: 6em;
}




/* ----------------------------------------------- */
/* レイアウト系 */
/* ----------------------------------------------- */
.fix:after {
	content: " ";
	display: block;
	clear: both;
}

.left { text-align: left; }
.center { text-align: center; }
.right { text-align: right; }

.fl { float: left; }
.fr { float: right; }
.both { clear: both; }

.w_max {
	width: 100%;
}

.aligncenter {
   display: block;
   margin-left: auto;
   margin-right: auto;
}
.alignleft {
   float: left;
}
.alignright {
   float: right;
}


/* ----------------------------------------------- */
/* テキスト系 */
/* ----------------------------------------------- */
.mincho {
	font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", "ＭＳ Ｐ明朝", "MS PMincho", Meiryo, serif;
}

.caution {
	color: #F00;
}

.fs_ss { font-size: 0.6em; }
.fs_s { font-size: 0.85em; }
.sf_l { font-size: 1.2em; }
.fs_ll { font-size: 1.4em; }

/*
.note {
	padding-left: 1.2em;
	position: relative;
	line-height: 100%;
	color: #999;
	font-size: 0.85em;
}
.note:before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
	line-height: 100%;
}

.rubi {
	vertical-align: super;
	color: #999;
	font-size: 0.7em;
}

.required:before {
	content: "必須";
	width: 40px;
	margin-left: -50px;
	height: 18px;
	line-height: 18px;
	margin-right: 10px;
	display: inline-block;
	color: #FFF;
	font-size: 10px;
	text-align: center;
	vertical-align: middle;
	background-color: #A32624;
	border-radius: 4px;
}
*/


/* ----------------------------------------------- */
/* ボタン系 */
/* ----------------------------------------------- */
.btn {
	padding: 0.5em 1em;
	display: inline-block;
	border-radius: 4px;
	text-align: center;
}

.img_btn {
	display: block;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	background-position: top;
}
.img_btn:hover {
	background-position: bottom;
}



/* ----------------------------------------------- */
/* マージン */
/* ----------------------------------------------- */
/*/////////////// top ///////////////*/
.mt0 { margin-top: 0px !important; }
.mt5 { margin-top: 5px !important; }
.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt40 { margin-top: 40px !important; }
.mt50 { margin-top: 50px !important; }

/*/////////////// right ///////////////*/
.mr0 { margin-right: 0px !important; }
.mr5 { margin-right: 5px !important; }
.mr10 { margin-right: 10px !important; }
.mr15 { margin-right: 15px !important; }
.mr20 { margin-right: 20px !important; }
.mr30 { margin-right: 30px !important; }
.mr40 { margin-right: 40px !important; }
.mr50 { margin-right: 50px !important; }

/*/////////////// bottom ///////////////*/
.mb0 { margin-bottom: 0px !important; }
.mb5 { margin-bottom: 5px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb50 { margin-bottom: 50px !important; }

/*/////////////// left ///////////////*/
.ml0 { margin-left: 0px !important; }
.ml5 { margin-left: 5px !important; }
.ml10 { margin-left: 10px !important; }
.ml15 { margin-left: 15px !important; }
.ml20 { margin-left: 20px !important; }
.ml30 { margin-left: 30px !important; }
.ml40 { margin-left: 40px !important; }
.ml50 { margin-left: 50px !important; }