@charset "UTF-8";

/* faq.css */

h2.faq span {
	background-image: url(/img/icon/icon2_help_color.png);
	background-size: auto 48px;
	padding-left: 66px;
}
aside { background: #fff;}
aside > ul > li > span {
	background: #e87352;
	color: #fff;
	display: block;
	font-weight: bold;
	padding: 8px;
}
aside > ul > li ul li {
	border-top: 1px dotted #ccc;
}
aside > ul > li ul li:first-child {
	border-top: none;
}
aside > ul > li ul li span {
	background-image: url(/img/icon/icon2_right_gray.png);
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: auto 14px;
	cursor: pointer;
	display: block;
	padding: 8px 16px 8px 8px;
	text-indent: 1em;
}
aside > ul > li ul li span.current {
	background-image: url(/img/icon/icon2_right_color.png);
	color: #e87352;
}
main { background: #fff;}
section {
	background: #fff;
	display: none;
}
section.current-view { display: block;}
#faq h3 {
	border-bottom: 2px solid #e87352;
	font-size: 1.2em;
	margin-bottom: 16px;
	padding-bottom: 8px;
	text-align: center;
}
main img {
	height: auto;
	width: 100%;
}
.faq-box {
	margin-bottom: 16px;
}
h4 {
	/*border-left: 6px solid #e87352;*/
	padding: 4px 1em 8px;
}
main .pic {
	border: 1px solid #b0b0b0;
}
main p { line-height: 1.7;}
.status {
	background: #517ce8;
	border-radius: 12px;
	height: 24px;
	padding-top: 4px;
	text-align: center;
	width: 24px;
}
.flex {
	display: flex;
	align-items: center;
	margin-top: 8px;
}
hr {
	margin: 32px 0;
}

/*------------------
1:Tablet, PC
------------------*/
@media screen and (min-width:641px) {

#sp-nav-btn, .close { display: none;}
article#faq {
	position: relative;
	font-size: 14px;
}
article#faq:after {
	content: '';
	clear: both;
	display: block;
}
aside {
	float: left;
	width: 240px;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
aside.fixed {
	position: fixed;
	top: 16px;
}
aside.btm-fixed {
	position: fixed;
	bottom: 32px;
}
aside.btm-btm {
	position: absolute;
	bottom: 95px;
}
main {
	float: right;
	padding: 16px 8px 24px;
	width: -webkit-calc(100% - 260px);
	width: calc(100% - 260px);
}

}/* /Tablet, PC */

/*------------------
2:PC
------------------*/
@media screen and (min-width:1024px) {

article#faq {
    margin: 0 auto;
    width: 1025px;
}
aside {
	width: 268px;
}
aside.btm-btm {
	bottom: 130px;
}
aside > ul > li ul li span {
	-webkit-transition: background-color .5s ease;
	transition: background-color .5s ease;
}
aside > ul > li ul li span:hover {
	background-color: #f0f0f0;
}
main {
	padding: 16px 16px 32px;
	width: 724px;
}
.faq-box {
	margin-bottom: 24px;
}

}/* /PC */