@charset "utf-8";
/*======================================
一級建築士定期講習
========================================*/
:root{
	--main_color: #ee0000;
	--sub_color: #a20000;
	--subbtn_color: #4ea72e;
}

/*--------------------
reset
--------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, a,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section, summary,
time, mark, audio, video{
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
	box-sizing: border-box;
}

body{
	line-height:1;
	width:100%;
	word-wrap:break-word;/*URL等の長英文の折り返し*/
	word-break: break-all;
	font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	/*font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", serif;*/
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, th{
	font: inherit;
}

ul, ol{
	list-style: none;
}

img{
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: middle;
 image-rendering: -webkit-optimize-contrast;/*縮小時の画像ボケ軽減*/
}

table{
	border-collapse:collapse;
	border-spacing:0;
}

input, textarea, select, button{
	font: inherit;
	color: inherit;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

input, select{}

button{
	cursor: pointer;
	font: inherit;
	color: inherit;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

sub, sup{
	font-size: 65%;
}
sub{
	vertical-align: bottom;
}
sup{
	vertical-align: top;
}

.text_center{
	text-align: center;
}
.text_left{
	text-align: left;
}
.text_right{
	text-align: right;
}

.font_size_l{
	font-size: 1.25em;
}
.font_size_s{
	font-size: 0.85em;
}

.li_indent05 > li,
.text_indent05{
	text-indent: -0.5em;
	padding-left: 0.5em;
}
.li_indent1 > li,
.text_indent1{
	text-indent: -1em;
	padding-left: 1em;
}
.li_indent1_5 > li,
.text_indent1_5{
	text-indent: -1.5em;
	padding-left: 1.5em;
}
.li_indent2 > li,
.text_indent2{
	text-indent: -2em;
	padding-left: 2em;
}
.li_indent2_5 > li,
.text_indent2_5{
	text-indent: -2.5em;
	padding-left: 2.5em;
}
.li_indent3 > li,
.text_indent3{
	text-indent: -3em;
	padding-left: 3em;
}

.li_indent4 > li,
.text_indent4{
	text-indent: -4em;
	padding-left: 4em;
}

.mgn_t05{
	margin-top: 0.5em;
}
.mgn_t1{
	margin-top: 1em;
}
.mgn_t2{
	margin-top: 2em;
}
.mgn_t3{
	margin-top: 3em;
}
.mgn_t4{
	margin-top: 4em;
}
.mgn_b05{
	margin-bottom: 0.5em;
}
.mgn_b1{
	margin-bottom: 1em;
}
.mgn_b2{
	margin-bottom: 2em;
}
.mgn_b3{
	margin-bottom: 3em;
}
.mgn_b4{
	margin-bottom: 4em;
}
.mgn_l05{
	margin-left: 0.5em;
}
.mgn_l1{
	margin-left: 1em;
}
.mgn_l2{
	margin-left: 2em;
}
.mgn_l3{
	margin-left: 3em;
}
.mgn_l4{
	margin-left: 4em;
}
.mgn_r05{
	margin-right: 0.5em;
}
.mgn_r1{
	margin-right: 1em;
}
.mgn_r2{
	margin-right: 2em;
}
.mgn_r3{
	margin-right: 3em;
}
.mgn_r4{
	margin-right: 4em;
}

a{
	text-decoration: none;
}


/*****
表組のスクロール
*****/
.scroll_wrap{}
.scroll_table{}
.scroll_table table{}


/* ===========================================
	MediaQueries
=========================================== */
/* スマホ----------------------------- */
@media screen and (max-width: 767px){
	html{
		font-size:62.5%;
	}
	.br_pc{
		display: none;
	}
	
	/*****
	表組のスクロール
	*****/
	.scroll_wrap{}
	.scroll_wrap::before,
	.scroll_wrap::after{
		content: '←スクロール→';
		display: block;
		text-align: center;
	}
	.scroll_table{
		width: 94%;
		margin: 0 auto;
		overflow-x: scroll;
	}
	
	.scroll_table::before{}
	.scroll_table::after{}
	.scroll_table table{}
	
}

/* PC----------------------------- */
@media screen and (min-width: 768px){
	html{
		font-size:62.5%;
	}
	
	.br_sp{
		display: none;
	}
	
}