@charset "utf-8";
/* =======================================

	ContentsElements

======================================= */

/* ------------------------------------
	common
------------------------------------ */
/* 見出し用クラス */
.h_large {
	font-size: 3.6rem;
}
.h_bg {
	background: #333;
	color: #fff;
	font-size: 2rem;
	line-height: 1.5;
	text-align: center;
	padding: 0.2em 1em;
	margin: 0.5em 0 1.5em;
}
.h_tri {
	font-size: 1.6rem;
	color: #333;
	margin: 1.5em 0 1em;
	padding: 0 0 0 15px;
	text-indent: -15px;
}
.h_tri::before {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 0 8px 12px;
	border-color: transparent transparent transparent #333;
	margin: -2px 3px 0 0;
	vertical-align: middle;
}

.base_wrap.type_hr {
	padding: 50px 0 0;
}
.base_wrap.type_hr::before {
	content: '';
	position: absolute;
	width: 200px;
	height: 0;
	border-top: 1px solid #8C9BA5;
	top: 0;
	left: 50%;
	margin-left: -100px;
}

.sec_gray {
	background: #e8ebed;
	padding: 50px 0 1px;
}

.txt_catch {
	font-size: 2rem;
	font-weight: bold;
}

.txt_note {
	font-size: 1.3rem;
}

.line_img {
	border: 1px solid #707070;
}

@media only screen and (max-width: 768px) {
	.txt_catch {
		font-size: 1.6rem;
	}
}

/* 丸つきリスト */
.ul_round {
	margin: 0 0 30px;
}
.ul_round li {
	padding: 0 0 0 20px;
	position: relative;
}
.ul_round li::before {
	content: '';
	position: absolute;
	top: 11px;
	left: 0;
	display: block;
	width: 10px;
	height: 10px;
	background: #333;
	border-radius: 100%;

}

/* ※つきリスト */
.ul_attn {
	margin: 0 0 30px;
}
.ul_attn li {
	position: relative;
	padding-left: 1.5em;
}
.ul_attn li span {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
}


/* cont_header visual 中ページ用 */

@media only screen and (max-width: 768px) {
	.cont_header.visual {
		margin: 0 0 30px;
	}
	.cont_header .wrap {
		padding: 20px 0;
	}
	.cont_header.visual,
	.cont_header.visual.large {
		height: auto;
		display: block;
	}
	.cont_header.visual::after {
		position: relative;
		display: block;
		top: auto;
		left: auto;
		width: 100%;
		height: 250px;
	}
}

/* ------------------------------------
	accordion
------------------------------------ */
.accordion .h_bg {
	text-align: left;
	position: relative;
	cursor: pointer;
	padding-right: 2em;
}
.accordion .h_bg::after {
	content: '';
	display: inline-block;
	width: 13px;
	height: 13px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	transform: rotate(45deg);
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -3px;
}
.accordion .content {
	display: none;
}
.accordion .h_bg.open::after {
	margin-top: -10px;
	transform: rotate(225deg);
}

/* ------------------------------------
	Q&A
------------------------------------ */
.h_qa {
	position: relative;
	font-size: 2rem;
	line-height: 1.6;
	min-height: 7rem;
	padding: 0 0 0 8rem;
	margin-bottom: 2.5rem;
	display: flex;
	align-items: center;
}
.h_qa::before {
	content: 'Q.';
	font-family: Arial, Helvetica, sans-serif;
	font-size: 7rem;
	font-weight: normal;
	line-height: 1;
	position: absolute;
	top: 0;
	left: 0;
}

@media only screen and (max-width: 768px) {
	.h_qa {
		font-size: 1.6rem;
		min-height: 5rem;
		padding: 0 0 0 6rem;
	}
	.h_qa::before {
		font-size: 5rem;
	}
}

/* ------------------------------------
	Topics
------------------------------------ */
.topics_list article {
	padding: 0 0 50px;
	border-bottom: 1px dashed #707070;
	margin: 0 0 50px;
}
.topics_list article:last-of-type {
	border-bottom: none;
	margin: 0;
	padding: 0;
}
.topics_list article .info {
	color: #999;
	letter-spacing: -1em;
	font-weight: bold;
}
.topics_list article .info > * {
	letter-spacing: 0;
}
.topics_list article .info span:nth-child(n+2)::before {
	content: '\7c';
	display: inline-block;
	padding: 0 0.5em;
}
.topics_list article .info img {
	max-height: 1em;
	vertical-align: middle;
	margin: 0 0 2px 0.8em;
}

.topics_list article h1 {
	font-size: 2rem;
	margin-bottom: 1em;
}
.topics_list article h1 a {
	color: #333;
	border-bottom: 1px solid transparent;
}
.topics_list article h1 a::after {
	display: none;
}

.topics_list article img {
	margin: 0 auto 1em;
}



/* hover
------------------------------------ */
/* all */
body.pc_view .topics_list article h1 a,
body.pc_view .topics_list article a img {
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
body.pc_view .topics_list article h1 a:hover {
	border-color: #333;
	text-decoration: none;
}
body.pc_view .topics_list article a:hover img {
	opacity: 0.7;
}