.main_header h1 {
	position: relative;
	border-bottom:none;
	padding: .3rem 1rem;
	font-size: 1.3rem;
	letter-spacing: 0.1em;
	margin-top: 2rem;
	margin-bottom: 2rem;
	font-weight: bold;
	border-left: 7px solid #4c4948;
}

.main_header h1::after {
	content: "";
	width: 100%;
	border-bottom: 1px dotted #4c4948;
	position: absolute;
	left: 0;
	bottom: 0;
}

section {
	margin: 3rem 0 5rem;
}

section h2 {
    padding: 1.3rem 0;
    margin: 0 0 2rem 0;
    font-size: 1rem;
    position: relative;
    letter-spacing: 0.05em;
}

section h2::after {
	content: "";
	width: 5%;
	border-bottom: 2px solid #be2a2a;
	position: absolute;
	left: 0;
	bottom: 0;
}

main .text,
main .note,
main dl,
.moreinfo {
    letter-spacing: 0.1em;
    line-height: 2;
}

main .text p,
main .text li,
main dl,
.moreinfo {
    font-size: .85rem;
	margin: 1.3rem 0;
}

main .note p,
main .note li {
	font-size: .8rem;
	margin: .3rem 0;
}

/* *** 上部 *** */
.main_header a {
	text-decoration: none;
    width: calc(100% - 43em);
}

/* *** リスト *** */
.guide_select {
	margin-top: 1.5em;
	border-bottom: solid 1px #d4d4d4;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.guide_select > * {
	padding: 1.5em 0;
	border-top: solid 1px #d4d4d4;
}
.guide_select dt {
	width: 14rem;
	font-weight: bold;
}
.guide_select dd {
	width: calc(100% - 14rem);
}
.guide_select dd .foreign_list {
	margin-top: 1em;
	margin-left: 2em;
	list-style: disc;
}
.guide_select dd .foreign_list li {
	font-size: 100%;
}
.guide_select dd .moreinfo {
	width: 50%;
	margin: 1.5em 0 0 auto;
}

/* *** 下部 *** */

ul.moreinfo {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
ul.moreinfo li {
	width: calc((100% - 1.5em) / 2);
}

/* *** リンク *** */
.moreinfo a {
	display: block;
	padding: 0.5em 1em;
	background-color: #666;
	color: #fff;
	text-align: center;
	position: relative;
	transition: 0.5s;
}
.guide_select dd .foreign_list + .moreinfo a {
	background-color: #c00;
}
.moreinfo a:hover {
	text-decoration: none;
	opacity: 0.7;
	transition: 0.5s;
}
.moreinfo a::after {
	content: "\f105";
	font-family: FontAwesome;
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translateY(-50%);
}
