@charset "utf-8";

.br_sp {display: none}
.br_pc {display: block}

h1.d_h1 {
	font-size: 1.6rem;
	margin: 2rem 0;
    color: var(--Dark_Sub_Color);
    font-weight: bold;
    font-family: var(--Font_Weight_Bold);
	letter-spacing: .2rem;
	text-align: center;
}

#main_content section {
	letter-spacing: .1rem;
	margin: 3rem 5rem 5rem;
}

section h2 {
	font-size: 1.3rem;
	color: #036eb8;
	margin-bottom: 1rem;
}

section p {
	text-align: justify;
}

section p.margin_top {
	margin: 2rem 0 1rem;
}

section p.font_l {
	font-size: 1.2rem;
	font-weight: 900;
}

section ul.back_link {
	margin-top: 1rem;
}

section ul.back_link li {
	margin-bottom: 1rem;
}

section ul.back_link li a::after {
	    font-weight: 900;
    font-family: var(--Font_Awesome);
    content: var(--Arrow_Right);
    margin-left: 1rem;
}

section span.fc_blue {color: #036eb8;}

section span.asta {font-size: .9rem;}

@media screen and (orientation: portrait) and (max-width: 767px){
	
	.br_sp {display: block}
    .br_pc {display: none}
	
	h1.d_h1 {
	font-size: 1.4rem;
	margin: 2rem 0;
	letter-spacing: .1rem;
}

#main_content section {
	margin: 2rem 1rem 2rem;
	width: auto;
}

section h2 {
	font-size: 1.2rem;
}
	
	section p.font_l {
	font-size: 1.1rem;
}
	
}

/* table */

.table-container {
	display: block;
    overflow-x: hidden;
}

.table-container table.table_1,
.table-container table.table_2,
.table-container table.table_3 {
	width: 100%;
	}

.table-container table.table_3 {
	margin-bottom: 1rem;
}

.table-container p {
	margin: 0;
}

section table th,
section table td {
	border: 2px solid #fff;
	padding: .4rem 1rem;
}

section table thead tr {
	background-color: #036eb8;
	color: #fff;
	text-align: left;
}

section table tbody tr:nth-of-type(odd) {
	background-color: #d1e8ff;
}

section table tbody tr:nth-of-type(even) {
	background-color: #eff7ff;
}

section table tbody tr td:nth-child(1) {
	width: 8rem;
}

section table.table_2 tbody tr td:nth-child(2) {
	word-break: break-all;
	width: 19rem;
}




@media screen and (orientation: portrait) and (max-width: 767px){
	
	.table-container {
	display: flex;
    flex-direction: column;
    overflow-x: scroll;
		font-size: .9rem;
}
	
	.table-container table.table_1 {
	width: 140%;
    flex-shrink: 0;
	}
	
	.table-container table.table_2 {
	width: 180%;
    flex-shrink: 0;
	}
	
	section table th,
section table td {
	border: 2px solid #fff;
	padding: .2rem .5rem;
}
	
	section table tbody tr td:nth-child(1) {
	width: 6.5rem;
}
	
	section table.table_2 tbody tr td:nth-child(2) {
	width: 15.5rem;
}
	
	section table.table_3 tbody tr td:nth-child(1) {
	width: 5.5rem;
}
	
	
}





