.section_container a{
  color: #333;
}
.section_container a:hover{
  text-decoration: underline;
}
.accordion-area {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
}
.accordion-area li {
  margin: 10px 0;
}
.title {
  position: relative;
  cursor: pointer;
  font-weight: normal;
  padding: 8px 4px 8px 60px;
  transition: all .5s ease;
  border-radius: 4px;
  background-color: #08BCB1;
  color: #fff;
  margin-bottom: 20px;
}
.title::before,
.title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #FFF;
}
.title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}
.title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}
.title.close::before {
  transform: rotate(45deg);
}
.title.close::after {
  transform: rotate(-45deg);
}
.box {
  display: none;
  padding: 0 8px 8px 8px;
}
.accordion-area ul {
  list-style: none;
  padding-left: 0;
}
.accordion-area ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.accordion-area ul li:before {
  content: "・";
  margin-right: 4px;
}
.link-icon{
  width: 14px;
    height: 14px;
    background-image: url(../img/common/link-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
}