@charset "utf-8";

/* accordion
----------------------------------------------- */
/* 必須 */
.accordion-content {
  display: none;
}

/* 装飾用 */
.accordion-header {
  background-color: #3f94d7;
  color: #ffffff;
  font-size: 1.1em;
  font-weight: bold;
  padding: 12px 45px 10px 20px;
  margin: 20px 0 0;
  transition: background .3s ease;
  cursor: pointer;
  position: relative;
  border-radius: 4px;
}

.accordion-header.type1 {
  background-color: #3fc5d6;
  padding: 8px 45px 6px 20px;
  margin: 15px 0 0 10px;
}

.accordion-header.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.accordion-header::before,
.accordion-header::after{
  position:absolute;
  content:'';
  top:1px;
  right:20px;
  bottom:0;
  width:12px;
  height:2px;
  margin:auto;
  background:#ffffff;
}
.accordion-header::after{
  transform:rotate(-90deg);
  transition:transform 0.3s;
}
.accordion-header.active::after{transform:rotate(0deg);}

.accordion-content.type1 {
  background-color: #FFF;
  padding: 20px 20px 20px;
  margin-left: 10px;
  border-left: 2px dashed #3fc5d6;
  border-right: 2px dashed #3fc5d6;
  border-bottom: 2px dashed #3fc5d6;
}

.accordion-content {
  background-color: #FFF;
  padding: 20px 20px 20px;
  border-left: 2px dashed #3f94d7;
  border-right: 2px dashed #3f94d7;
  border-bottom: 2px dashed #3f94d7;
}

.accordion-header span,
.accordion-content span{
  padding-left: 0px;
  position: relative;
}

/* hover */
.accordion-header:hover {
  filter: alpha(opacity=80); -moz-opacity: 0.8; opacity: 0.8;
}
