/*------------------------------------*\
-------- Page Styles: Accordion
\*------------------------------------*/
html, body {
	height: auto;
	min-height: 100%;
	background-color: #171717;
}
body {
	position:relative;
	z-index:0;
	color:#bcbaba;
}
a {
	color: #419ee9;
}
.main {
	margin: 0 auto;
	padding: 10px 0;
}
.main:before {
	width:100%;
	height:100%;
	position:absolute;
	top:0px;
	left:0px;
	z-index:-1;
	content:'';
	/* background:-webkit-radial-gradient(30%, rgba(255,255,255,0.15), rgba(0,0,0,0)), url('img/body-bg.png');
	background:-moz-radial-gradient(30%, rgba(255,255,255,0.15), rgba(0,0,0,0)), url('img/body-bg.png');
	background:-o-radial-gradient(30%, rgba(255,255,255,0.15), rgba(0,0,0,0)), url('img/body-bg.png');
	background:radial-gradient(30%, rgba(255,255,255,0.15), rgba(0,0,0,0)), url('img/body-bg.png'); */
}

.site-header-wrap {
	margin-bottom:60px;
	border-bottom:1px solid #cd9ad6;
}

/*------------------------------------*\
-------- DEMO Code: accordion
\*------------------------------------*/
/*----- Accordion -----*/
.accordion, .accordion * {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	position:relative;
}

.accordion {
	overflow:hidden;
	/*box-shadow:0px 1px 3px rgba(0,0,0,0.25);*/
	border-radius:0px;
	background:#FFF;
	border:1px solid #555;
	margin-bottom: 20px;
}

/*----- Section Titles -----*/
.accordion-section-title {
	width:100%;
	padding:15px 60px 15px 15px;
	display:inline-block;
	border-bottom:1px solid #555;
	background:#1f1f1f;
	transition:all linear 0.15s;
	/* Type */
	font-size:16px;
	/* text-shadow:0px 1px 0px #fff; */
	color:#bcbaba;
	line-height:1.3;
	background-image:url(../img/arrow.png);
	background-repeat:no-repeat;
	background-position:97% 50%;
}

.accordion-section-title.active, .accordion-section-title:hover {
	/*background:#D08BCA;*/
	/* Type */
	text-decoration:none;
	/*color:#C505B2;*/
	/*text-shadow:0px 1px 0px #D219C0;*/
	/*background-image:url(../img/arrow1.png);
	background-repeat:no-repeat;
	background-position:center right 3%;*/
}

.accordion-section-title.active{
	background-image:url(../img/arrow2.png);
	background-repeat:no-repeat;
	background-position:center right 3%;
	text-decoration:none;
	color:#419ee9;
	background-color:#181818;
	border-bottom:none;
	font-size:18px;
}

.accordion-section:last-child .accordion-section-title {
	/*border-bottom:none;*/
}

/*----- Section Content -----*/
.accordion-section-content {
	background-color:#181818;
	padding:0px 25px 15px 25px;
	display:none;
	border-bottom: 1px solid #555;
}
.accordion-section-content.open {
	box-shadow: inset 0px -8px 4px -6px rgba(0,0,0,.5);
}

.FaqArrow{
	position:absolute;
	top:21px;
	right:24px;
	display:inline-block;
	*display:inline;
	*zoom:1;
	width:19px;
	height:11px;
	/*overflow:hidden;*/
	padding:0;
	border:0;
	background:url(img/arrow.png);
	text-align:left;
	text-indent:-9999px;
	*text-indent:0;
	*line-height:9999px;
	*word-wrap:normal
}
.note{
	padding:10px;
	background-color:#1b2835;
	border: 1px solid #206bae;
	border-radius:6px;
	font-size:12px;
	line-height:16px;
	margin-top:15px;
	word-wrap: break-word;
}
.product-title {
	color:#fff;
	font-family: "Segoe UI", "Open Sans", "Meiryo", "微軟正黑體", "MS UI Gothic", "MS PGothic", Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: 100;
	margin-bottom:10px;
	padding-left:15px;
}
.table {
	width: 100%;
	border-bottom: 1px solid #ccc;
	display: table;
	font-size: 14px;
}
.table.title {
	border-bottom: none;
}
.table.w360 {
	max-width: 360px;
}
.table-row {
	display: table-row;
}
.table-cell {
	border: 1px solid #ccc;
	border-bottom: none;
	display: table-cell;
	padding: 10px;
	vertical-align: middle;
}
.table-cell:nth-child(even) {
	border-left: none;
}
.table-cell.main-title {
	width: 100%;
	background-color: #2e2e33;
	text-align: center;
}
.table-cell.sub-title {
	background-color: #222;
	text-align: center;
}
