@charset "utf-8";

/* アコーディオン */
.ac-box {
  width: auto;
  margin: 30px auto 5px;
}

/*ラベル*/
.ac-box label {
  max-width: 385px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  background: #ad0809;
  margin: auto;
  line-height: 50px;
  position: relative;
  display: block;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  color: #fff;
  transition: all 0.5s;
}

/*ラベルホバー時*/
.ac-box label:hover {
  background: #c94545;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/*チェックを隠す*/
.ac-box input {
  display: none;
}

/*チェックのアイコン（↓）*/
.ac-box label:after {
  color: #fff;
}

/*チェックのアイコン（↑）*/
.ac-box input:checked~label::after {
  color: #fff;
}

/*中身を非表示にしておく*/
.ac-box div {
  height: 0px;
  padding: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
}

/*クリックで中身を表示*/
.ac-box input:checked~div {
  height: auto;
  opacity: 1;
}

/*表示内容の調整*/
.ac-box div p {
  text-align: justify;
  margin-bottom: 1.2em;
}

.ac-small p {
  margin-bottom: 0px;
}