@charset "utf-8";

/* ===================================================================
CSS information
 file name  :  index.css
 style info :  /faq/index.html
=================================================================== */
#faq_index{
}



/*** menu_area ***/
#menu_area{
	width:1000px;
	margin:45px auto 15px;
}

#menu_area h2{
	font-size:33px;
	text-align:center;
	margin:0 0 40px;
}

#menu_area .menu{
	overflow:hidden;
	padding:0 0 10px;
}

#menu_area .menu li{
	float:left;
	width:200px;
	text-align:center;
	font-size:16px;
	cursor:pointer;
	position:relative;
}


#menu_area .menu li span{
	font-size:16px;
    line-height: 24px;
    padding: 8px 0;
    position: relative;
    z-index: 2;
    text-decoration: none;
    color: #231815;
    display: block;
    background: #fff;
    text-align: center;
    border-left: 1px solid #CCC;
    border-right: 1px solid #CCC;
    margin-left: -1px;
}
		
		
#menu_area .menu li.select span{
	color: #c2a253;
}
		
#menu_area .menu li:before {
	height: 2px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
}
		
#menu_area .menu li:after {
        margin-left: -8px;
        height: 12px;
        width: 12px;
        position: absolute;
        left: 50%;
        bottom: -8px;
        transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
}
		
#menu_area .menu li:before,
#menu_area .menu li:after {
        content: "";
        z-index: 1;
        display: block;
        background: #fff;
        filter: alpha(opacity=0);
        transition: ease-out background 0.5s;
        -o-transition: ease-out background 0.5s;
        -ms-transition: ease-out background 0.5s;
        -moz-transition: ease-out background 0.5s;
        -webkit-transition: ease-out background 0.5s;
}
		
#menu_area .menu li:hover:before,
#menu_area .menu li:hover:after {
	background: #001e3a;
}

#menu_area .menu li.select:before,
#menu_area .menu li.select:after {
        content: "";
        z-index: 1;
        display: block;
        background: #fff;
        transition: ease-out background 0.5s;
        -o-transition: ease-out background 0.5s;
        -ms-transition: ease-out background 0.5s;
        -moz-transition: ease-out background 0.5s;
        -webkit-transition: ease-out background 0.5s;
}
		

#menu_area .menu li.select:before,
#menu_area .menu li.select:after {
	background: #001e3a;
}



/*** list_area ***/
#list_area{
	clear:both;
	width:1000px;
	margin:0 auto 30px;
}

#list_area p.no_data{
	font-size:16px;
	text-align:center;
	padding:50px 0 100px;
}

#list_area .list_box{
	margin:0 0 50px;
}

#list_area ul{
}

#list_area ul li{
	margin:0 0 15px;
}

#list_area ul li h3{
	cursor:pointer;
	font-size:21px;
	background:#eeece7;
	border-radius:5px;
	padding:0 10px 2px;
	line-height:1.1;
}
#list_area ul li h3.select{
	background:rgba(194,162,83,0.3);
}

#list_area ul li h3 span{
	font-size:44px;
	color:#c2a253;
	display:inline-block;
	vertical-align:sub;
	padding:0 8px 2px 0;
	font-family:"Arial Black", Gadget, sans-serif;
}

#list_area ul li p{
	font-size:14px;
	padding:10px 0 10px 50px;
	margin:0;
	display:none;
}


