/* 簡易リセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* アコーディオン全体 */
.accordion {
  max-width: 800px;
  margin: 0 auto 70px;
}

/* アコーディオン */
.accordion__item {
  border: 1px solid #ccc;
  margin: 10px auto;
  cursor: pointer;
  width: 90%;
}

/* アコーディオンのタイトル */
.accordion__title {
  position: relative;
  padding: 20px 20px 20px 40px;
  font-weight: bold;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.6;
}

/* (+)アイコン */
.accordion__title::before,
.accordion__title::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background-color: #118ccf;
  width: 15px;
  height: 3px;
  transition: all 0.3s;
}

.accordion__title::after {
  transform: rotate(90deg);
}

/* アコーディオンのコンテンツ */
.accordion__content {
  padding: 0 20px 15px 20px;
  display: none;
  cursor: pointer;
}

.accordion__content.is-open {
  display: flex;
  padding: 0;
}

/* アコーディオン展開時の(-)アイコン */
.accordion__item.is-active .accordion__title::before {
  transform: rotate(180deg);
}

.accordion__item.is-active .accordion__title::after {
  transform: rotate(180deg);
  opacity: 0;
}

/* アコーディオンのコンテンツ内 */
.accordiv {
  text-align: center;
}

.hometuika {
  width: 90%;
}

.homeexpla {
  line-height: 1.3;
}

.homeexpla2 {
  line-height: 1.3;
  font-size: 10px;
 }