@charset "utf-8";

/*-------------------------------------------------------------------
    * help.css
    * site name : チャンスイット　スマホ
    * description : ヘルプページ
-------------------------------------------------------------------*/

#help #container section h1 {
    padding: 4px 0;
    background: #FFAB47;
}
#help #container section h1 span {
    font-size: 17px;
    font-weight: bold;
    color: #fff;
}
#help h2 {
	color: #555;
	padding: 10px 0;
	background: #fff4e6;
    border-bottom: 1px solid #C1C1C1;
}

/*質問ページ*/
ul.questions >  li {
    position: relative;
	background: #fff;
	border-bottom: 1px solid #999;
    line-height: 1.4em;
	padding: 5px 0;
	text-align: left;
}
ul.questions > li a{
    display: block;
    margin: 0;
    padding: 10px 30px 10px 10px;
    color: #333;
    text-decoration: none;
}

ul.questions > li a:before{
    display: block;
    content: "";
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 50%;
    right: 17px;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    background: #555;
}
ul.questions > li a:after{
    display: block;
    content: "";
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 50%;
    right: 18px;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    background: #fff;
}

/*回答ページ*/
h3 {
	font-weight: bold;
	text-align: left;
	padding: 10px;
    border-bottom: 1px solid #C1C1C1;
}
h3 span {
	margin-right: 5px;
	padding: 3px 8px;
	background: #FFAB47;
	color: #FFF;
	font-weight: normal;
	font-size: 90%;
}
div.answer {
	min-height: 100px;
	padding: 10px;
	text-align: left;
}
div.inquiry {
	font-size: 90%;
	margin: 50px 10px 0;
	padding: 15px;
	background: #FFC;
	border: 1px solid #CCC;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
div.answer .flow {
    font-weight: bold;
}
div.answer .capture {
    padding: 10px 10px 20px;
}
div.answer .caution {
    color: #f00;
}