/* --------- sec_top --------- */
	.sec_top{
		width: 100%;
		height: 450px;
		padding:150px 0 50px;
		box-sizing: border-box;
		background-size: cover;
		background-position: center center;
		background-repeat: no-repeat;
	}
/* --------- END sec_top --------- */
/* --------- sec_menu --------- */
	.sec_menu .container{
		width: 1380px;
		height: 100px;
		margin-top: -100px;
	}
	.sec_menu h3{
		display: inline-block;
		margin-left: -4px;
		font-weight: bold;
		font-size: 1.25em;
		letter-spacing: 7px;
		width: 25%;
		height: 100px;
		line-height: 100px;
		text-align: center;
		cursor: pointer;
		-webkit-transition: all .5s ease;
		   -moz-transition: all .5s ease;
		    -ms-transition: all .5s ease;
		     -o-transition: all .5s ease;
		        transition: all .5s ease;
	}
	.sec_menu h3:first-child{
		margin-left: 0;
	}
	.sec_menu h3:hover{
		background:rgba(255,255,255,.7);
		color:#646464;
	}
	.sec_menu h3.active{
		background:linear-gradient(90deg,transparent,rgba(255,255,255,.7),transparent);
		color:#646464;
	}
/* --------- END sec_menu --------- */
/* --------- sec_content --------- */
	.sec_content .container{
		padding:110px 0 140px;
	}
	.group{
		margin:22px 0;
	}
	.question{
		margin-bottom: 16px;
	}

	.question .num{
		display: inline-block;
		width: 70px;
		height: 70px;
		line-height: 70px;
		text-align: center;
		background:#FFB933;
		color:white;
		font-size: 1.3em;
		font-weight: bold;
		vertical-align: top;
	}
	.question .title{
		display: inline-block;
		width: calc(100% - 76px);
		height: 100%;
		min-height: 70px;
		margin-left: 2px;
		border:1px solid #E8E8E8;
		font-size: 1.2em;
		padding:20px 70px 20px 20px;
		box-sizing: border-box;
		letter-spacing: 3px;
		position: relative;
		cursor: pointer;
		vertical-align: top;	
	}
	.question .title:after{
		content: "";
		display: inline-block;
		width: 22px;
		height: 21px;
		background: url(../img/icon/faq_arrow.png);
		position: absolute;
		right: 35px;
		top: 25px;
		-webkit-transform: rotateZ(180deg);
		   -moz-transform: rotateZ(180deg);
		    -ms-transform: rotateZ(180deg);
		     -o-transform: rotateZ(180deg);
		        transform: rotateZ(180deg);
        -webkit-transition: all .25s ease;
           -moz-transition: all .25s ease;
            -ms-transition: all .25s ease;
             -o-transition: all .25s ease;
                transition: all .25s ease;
	}
	.question .title.expand:after{		
		-webkit-transform: rotateZ(270deg);
		   -moz-transform: rotateZ(270deg);
		    -ms-transform: rotateZ(270deg);
		     -o-transform: rotateZ(270deg);
		        transform: rotateZ(270deg);
	}
	.answer{
		border:1px solid #FFB933;
		color:#eb8400;
		/*min-height: 70px;*/
		opacity: 1;
		padding:20px;
		box-sizing: border-box;
		font-size: 1.2em;
		display: none;
	}
	.answer .num{
		font-weight: bold;
		display: inline-block;
		vertical-align: top;
	}
	.answer .content{
		display: inline-block;
		width: calc(100% - 60px);
		letter-spacing: 3px;
		vertical-align: top;
		text-align: justify;
	}
/* --------- END sec_content --------- */
/* --------- RWD --------- */
	@media only screen and (max-width: 1380px){
		.sec_menu .container{
			width: 100%;
		}
	}
	@media only screen and (max-width: 1250px){
		.container{
			width: 90%;
		}
		.sec_menu h3{
			font-size: 1em;
			/*width: 14.38%;*/
		}
	}
	@media only screen and (max-width: 980px){
		.sec_menu .container{
			height: auto;
			margin-top: -160px;
		}
		.sec_menu h3{
			width: 100%;
			height: 40px;
			line-height: 40px;
			display: block;
			margin-left: 0;
		}
		.sec_content .container{
			width: 90%;
			padding:40px 0 70px;
		}
	}
	@media only screen and (max-width: 480px){
		.sec_top{
			height: 400px;
		}
		.question .num{
			width: 50px;
			height: 50px;
			line-height: 50px;
			font-size: 1.1em;
		}
		.question .title{
			width: calc(100% - 56px);
			font-size: 1em;
			min-height: 50px;
			padding:10px 50px 10px 10px;
			letter-spacing: 1px;
		}
		.question .title:after{
			right:15px;
			top:15px;
		}
		.answer{
			font-size: 1em;
			padding:10px;
		}
		.answer .num{
			padding-right: 10px;
		}
		.answer .content{
			letter-spacing: 1px;
		}
	}
	@media only screen and (max-width: 390px){
		.sec_top{
			padding:100px 0 50px;
		}
	}

/* --------- END RWD --------- */
