.accordion {
    padding: 10px;
    text-align: left;
    border: 1px solid #c8c8c8;
}
.accordion:hover {
    color:#006CB7;
    border: 1px solid #006CB7;
}
.accordion > *:first-child {
  margin-top: 0;
}
.accordion > *:last-child {
  margin-bottom: 0;
}

.accordion .table{
    margin-top: 0;
}

.accordion__label {
  margin: 0 0 7px;
}

.accordion__heading {
  margin: 0 0 12px;
  font-size: 1.38rem;
  line-height: 1.2;
}

.accordion__header{
    padding: 0 20px;
}

@media only screen and (max-width: 767px) {
  .accordion__heading {
    font-size: 1.25rem;
    line-height: 1.3;
  }
}

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    transition: all .5s ease;
}

.accordion .title{
    font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .accordion .title{
    padding-right: 40px;
}

}


/*アイコンの＋と×*/
.title::after{
    content: "";
    position: absolute;
    width: 21px;
    height: 21px;
    top: 50%;
    right: 5px;
    background: transparent url(/img/common/toggle_on.svg) no-repeat left top;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
/*　closeというクラスがついたら形状変化　*/
.title.close::after{
background: transparent url(/img/common/toggle_off.svg) no-repeat left top;
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
  margin:0 3% 3% 3%;
    padding: 3%;
}

.accordion:hover .box{
    color: #444;
}

.box table{
    background: #fff;
}

.pc{
    display: block;
}
.sp{
    display: none;
}
@media only screen and (max-width: 767px) {
    .pc{
    display: none;
}
.sp{
    display: block;
}
}

.square--list li {
  list-style-type: none;
  line-height: 1.6;
  padding-left: 1rem;
  position: relative;
}

.square--list li:before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 8px;
}
.square--list {
display: block;
position: relative;
padding-left: 15px;
}

.heading--h4{
  margin: 0 0 1.25rem;
  padding-left: 0.6rem;
  font-weight: bold;
  line-height: 1.4;
  border-left: 8px solid #006CB7;
}


.heading--h2 span{
  font-size: 1.5rem;

}

section .accordion:not(:nth-child(1)) {
  margin-top: 8px;
}
