@charset "utf-8";
/* CSS Document */
/*---------------
faq
---------------*/
#faq .panel {
  display: none;
}
#faq .panel.is-show {
  display: block;
}
#faq .tab-group .tab {
  flex-grow: 1;
  text-align: center;
  cursor: pointer;
  float: left;
  width: 33.333333%;
  height: 100px;
  line-height: 100px;
  border: 1px solid #266ec7;
  border-left: none;
  transition: all 0.4s ease;
  color: #266ec7;
  font-size: 2.4rem;
}
#faq .tab-group .tab:first-child {
	border-left: 1px solid #266ec7;
}
#faq .tab-group .tab.is-active {
	background: #266ec7;
	color: #fff;
	position: relative;
}
#faq .tab-group .tab.is-active::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: -17px;
    left: 50%;
    margin-left: -8px;
    border: 9px solid transparent;
    border-top: 9px solid #266ec7; 
}
#faq h3 {
	font-size: 3.6rem;
	margin: 108px 0 0;
	padding: 0 0 50px;
	border-bottom: 1px solid #cdcdcd; 
}
.accordion {
	border-bottom: 1px solid #cdcdcd;
}
.accordion dt {
    padding: 45px 28px 45px 50px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    font-size: 2.4rem;
    border-top: 1px solid #cdcdcd;
}
.accordion dt::before,
.accordion dd::before {
	font-size: 3.6rem;
	font-weight: bold;
	font-family: 'Roboto', sans-serif;
	position: absolute;
	top: 50%;
	left: 12px;
	transform: translate(-50%, -50%);
}
.accordion dt::before {
	content: "Q";
	color: #cdcdcd;
}
.accordion dt span {
	width: 25px;
	height: 25px;
	position: absolute;
	right: 0;
	display: inline-block;
}
.accordion dt span::before,
.accordion dt span::after {
	display: block;
	content: "";
	position: absolute;
	top: 55%;
	left: 0;
	width: 100%;
	height: 13%;
	background: #000;
}
.accordion dt span::before {
	transform: rotate(0deg);
}
.accordion dt span::after {
	transform: rotate(90deg);
}
.accordion dt.active span::before {
	transform: rotate(-45deg);
}
.accordion dt.active span::after {
	transform: rotate(45deg);
}
.accordion dd {
	display: none;
	font-size: 1.8rem;
	padding: 45px 0 45px 50px;
	position: relative;
	font-weight: 300;
}
.accordion dd::before {
	content: "A";
	color: #266ec7;
}
.accordion dd:first-of-type {
	display: block;
}