/* ==================================================

 help 共通パーツ

================================================== */
/* 全体 */
#help{
    padding:10px 10px 30px;
    background-color:#f2f2f2;
}

/* TOP */
#help .top_img{
    margin-bottom:15px;
}
#help .top_img img{
    vertical-align:bottom;
}

#help .top_tit{
    padding: 10px;
    margin-bottom: 10px;
    background-color: #63c3db;;
    color: #fff;
    font-size: 14px;
    font-weight: normal;
}

/* 検索ボックス */
#help input, #help button, #help textarea, 
#help select, #help option {
	margin:0;
	padding:0;
	background:none;
	border:none;
	border-radius:0;
	outline:none;
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
}

#help .search_word{
	appearance:none;
	-webkit-appearance:none;
	-moz-appearance:none;
	float:left;
    margin-bottom:15px;
    padding:10px;
	width:80%;
	height:44px;
	font-size:14px;
	line-height:1.2em;
    background-color:#fff;
	box-shadow:none;
	border:1px solid #ccc;
	border-radius:0;
    box-sizing:border-box;
    -webkit-box-sizing:border-box;
       -moz-box-sizing:border-box;
}

#help .search_submit_btn{
    float:left;
    margin-bottom:15px;
    padding:10px;
    width:20%;
    height:44px;
    font-size:14px;
    text-align:center;
    color:#fff;
    background-color:#555;
    background-image:url("../../img_new/search_icon_white.png");
	background-repeat:no-repeat;
	background-position:50% center;
    background-size:15px;
    border-radius:0;
    box-sizing:border-box;
    -webkit-box-sizing:border-box;
       -moz-box-sizing:border-box;
}

/* ==================================================

 index.php

================================================== */
/* お知らせ */
#help .info_wrap ul{
    padding:8px 0 0;
}

#help .info_wrap ul li{
    position:relative;
    padding:15px 25px 15px 15px;
    font-size:12px;
    border-bottom:#ccc 1px dashed;
}

#help .info_wrap ul li:last-child{
    border:none;
}

#help .info_wrap ul li a{
    display:block;
    width:95%;
    text-align:left;
    color:#555;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    -webkit-text-overflow:ellipsis;
         -o-text-overflow:ellipsis;
    text-decoration:none;
}

#help .info_wrap ul li:before{
    background:transparent none repeat scroll 0 0;
    border-right:1px solid #2490d0;
    border-top:1px solid #2490d0;
    content:"";
    display:block;
    height:12px;
    margin-top:3px;
    position:absolute;
    right:20px;
    transform:rotate(45deg);
    -moz-transform:rotate(45deg);
    -webkit-transform:rotate(45deg);
    width:12px;
}

/* 大カテゴリー選択 */

#help .categories {
    margin: 0 auto;
}

#help .categories li a{
    margin: 0 auto 10px;
}

/* よくある質問 */
#help .q_wrap{
    background-color:#fff;
    border:none;
    box-shadow: 0px 1px 3px 0px #ccc;
    -webkit-box-shadow: 0px 1px 3px 0px #ccc;
       -moz-box-shadow: 0px 1px 3px 0px #ccc;
}

#help .q_wrap ul li{
    position:relative;
    padding:15px 25px 15px 15px;
    font-size:12px;
    border-bottom:#ccc 1px dashed;
}

#help .q_wrap ul li:last-child{
    border:none;
}

#help .q_wrap ul li a{
    display:block;
    width:95%;
    text-align:left;
    color:#555;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    -webkit-text-overflow:ellipsis;
         -o-text-overflow:ellipsis;
    text-decoration:none;
}

#help .q_wrap ul li:before{
    background:transparent none repeat scroll 0 0;
    border-right:1px solid #2490d0;
    border-top:1px solid #2490d0;
    content:"";
    display:block;
    height:12px;
    margin-top:3px;
    position:absolute;
    right:20px;
    transform:rotate(45deg);
    -moz-transform:rotate(45deg);
    -webkit-transform:rotate(45deg);
    width:12px;
}

/* ==================================================

 detail.php

================================================== */
/* FAQ内容 */
#help .faq_wrap{
    margin-bottom:20px;
    background-color:#fff;
    border:none;
    box-shadow: 0px 1px 3px 0px #ccc;
    -webkit-box-shadow: 0px 1px 3px 0px #ccc;
       -moz-box-shadow: 0px 1px 3px 0px #ccc;
}

#help .q_title{
    position:relative;
    margin:0 10px 10px;
    padding:10px 0 10px 20px;
    font-size:14px;
    line-height:1.6em;
    font-weight:bold;
    color:#555;
    word-break:break-all;/*改行制御*/
    word-wrap:break-word;/*改行制御*/
    overflow-wrap:break-word;/*改行制御*/
    border-bottom:#ccc 1px dashed;
}

#help .q_title:before {
    position:absolute;
    top:10px;
    left:0;
    color:#1994da;
    content:"Q.";
    font-size:14px;
}

#help .a_text{
    position:relative;
    padding:0 10px 10px 30px;
    font-size:12px;
    line-height:1.6em;
    letter-spacing:0.8px;
    color:#555;
    word-break:break-all;/*改行制御*/
    word-wrap:break-word;/*改行制御*/
    overflow-wrap:break-word;/*改行制御*/
    border-bottom:#ccc 1px solid;
}

#help .a_text:before {
    position:absolute;
    top:0;
    left:10px;
    color:#f74361;
    content:"A.";
    font-size:14px;
    font-weight:bold;
}

/* アンサー内容にimg,リンクつきの可能性があるため必要 */
#help .a_text img{
    width:100%;
}

#help .a_text a{
    text-decoration:none;
    color:#1994da;
}

/* アンケート */
#help .anq_area dl dt{
    padding:10px 10px 5px;
    background-color:#fafafa;
    border-bottom:#ccc 1px dashed;
}

#help .anq_area dl dd{
    padding:20px 10px;
}

#help .anq_area dl dd #enquete_y,
#help .anq_area dl dd #enquete_n{
    padding:10px;
    width:41%;
    font-size:14px;
    line-height:24px;
    text-align:center;
    color:#fff;
}
    
#help .anq_area dl dd #enquete_y{
    float:left;
    margin-right:10px;
    background-color:#1994da;
}

#help .anq_area dl dd #enquete_n{
    float:right;
    background-color:#666;
}

#help .anq_area .thank_text{ /* script内共通 */
    padding:10px;
    font-size:14px;
    font-weight:bold;
    text-align:center;
    color:#f74361;
    background-color:#fafafa;
}

#help .textarea{
    padding:10px;
    font-size:12px;
    line-height:1.6em;
    text-align:center;
    color:#555;
    border-top:#ccc 1px dashed;
}

#help .textarea p{
    text-align:left;
}

#help .textarea textarea{
    -webkit-appearance: none;
    border-radius:0;
    margin:5px auto;
    min-width:100%;
    max-width:100%;
    outline:none;
    border:#ccc 2px solid;
    box-sizing:border-box;
    -webkit-box-sizing:border-box;
       -moz-box-sizing:border-box;
}

#help .anq_area input[type="submit"] {
    -webkit-appearance: none;
    border-radius:0;
    vertical-align:middle;
    text-align:center;
    border:none;
    outline:none;
}

#help .anq_area #anq_btn{
    margin:20px 0;
    padding:10px;
    width:90%;
    font-size:14px;
    line-height:24px;
    text-align:center;
    color:#fff;
    background-color:#1994da;
}

#help .textarea .anq_war{
    padding-left:10px;
    color:#f74361;
    text-indent:-1em;
}

/* 解決しない場合 */
#help .faq_wrap .to_support{
    position:relative;
    padding:15px 25px 15px 15px;
    font-size:12px;
    border-top:#ccc 1px dashed;
}

#help .faq_wrap .to_support a{
    display:block;
    width:95%;
    text-align:left;
    color:#555;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    -webkit-text-overflow:ellipsis;
         -o-text-overflow:ellipsis;
    text-decoration:none;
}

#help .faq_wrap .to_support:before{
    background:transparent none repeat scroll 0 0;
    border-right:1px solid #2490d0;
    border-top:1px solid #2490d0;
    content:"";
    display:block;
    height:12px;
    margin-top:3px;
    position:absolute;
    right:20px;
    transform:rotate(45deg);
    width:12px;
}

/* この回答に関連するFAQ */
#help .rela_wrap,
#help .faq_cat_box{
    margin-bottom: 15px;
    background-color:#fff;
    border:none;
    box-shadow: 0px 1px 3px 0px #ccc;
    -webkit-box-shadow: 0px 1px 3px 0px #ccc;
       -moz-box-shadow: 0px 1px 3px 0px #ccc;
}

#help .rela_wrap ul li,
#help .faq_cat_box ul li{
    position:relative;
    padding:15px 25px 15px 15px;
    font-size:12px;
    border-bottom:#ccc 1px dashed;
}

#help .rela_wrap ul li:last-child,
#help .faq_cat_box ul li:last-child{
    border:none;
}

#help .rela_wrap ul li a,
#help .faq_cat_box ul li a{
    display:block;
    width:95%;
    text-align:left;
    color:#555;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    -webkit-text-overflow:ellipsis;
         -o-text-overflow:ellipsis;
    text-decoration:none;
}

#help .rela_wrap ul li:before,
#help .faq_cat_box ul li:before{
    background:transparent none repeat scroll 0 0;
    border-right:1px solid #2490d0;
    border-top:1px solid #2490d0;
    content:"";
    display:block;
    height:12px;
    margin-top:3px;
    position:absolute;
    right:20px;
    transform:rotate(45deg);
    width:12px;
}

/* ==================================================

 topic_list.php

================================================== */
#help .result_area{
    margin-bottom:20px;
    padding-bottom:10px;
    background-color:#fff;
    border:none;
    box-shadow: 0px 1px 3px 0px #ccc;
    -webkit-box-shadow: 0px 1px 3px 0px #ccc;
       -moz-box-shadow: 0px 1px 3px 0px #ccc;
}

#help .resu_wrap ul li{
    position:relative;
    padding:15px 25px 15px 15px;
    font-size:12px;
    background-color:#fff;
    border-bottom:#ccc 1px dashed;
}

#help .resu_wrap ul li a{
    display:block;
    width:95%;
    text-align:left;
    color:#555;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    -webkit-text-overflow:ellipsis;
         -o-text-overflow:ellipsis;
    text-decoration:none;
}

#help .resu_wrap ul li:before{
    background:transparent none repeat scroll 0 0;
    border-right:1px solid #2490d0;
    border-top:1px solid #2490d0;
    content:"";
    display:block;
    height:12px;
    margin-top:3px;
    position:absolute;
    right:20px;
    transform:rotate(45deg);
    width:12px;
}

#help .resu_wrap p{
    padding:10px 0 0 10px;
    font-size:12px;
    background-color:#fff;
}

/* ページャー */
#help .result_bar{
    display:table;
    margin:10px 0 0;
    padding:0 10px;
    width:100%;
    font-size:12px;
    box-sizing:border-box;
    -webkit-box-sizing:border-box;
       -moz-box-sizing:border-box;
}

#help .result_bar .prev{
    display:table-cell;
    width:30%;
}

#help .result_bar .next{
    display:table-cell;
    width:30%;
}

#help .result_bar .no{
    display:table-cell;
    width:40%;
    text-align:center;
}

#help .result_bar .page_btn{
    display:block;
    padding:8px 0;
    color:#555;
    text-decoration:none;
    text-align:center;
    background-color:#f2f2f2;
    border-radius:3px;
}

#help .result_bar .pager{
    display:inline-block;
    padding:8px 20px;
    background-color:#666;
    border-radius:3px;
    color:#fff;
    text-align:center;
}
