@charset "UTF-8";
/* =====================
	アイテム一覧
 ======================= */
.allitem-list {
  display: grid;
  grid-template-columns: 100%;
  gap: 14px 0;
}
.allitem-list__item__parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  font-size: 1.6rem;
  line-height: normal;
  letter-spacing: 0.1em;
  padding-right: 40px;
  position: relative;
}
.allitem-list__item__parent::before, .allitem-list__item__parent::after {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--c_blue);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
  margin: auto;
}
.allitem-list__item__parent::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: var(--anim);
  transition: var(--anim);
}
.allitem-list__item__parent img {
  width: 56px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.allitem-list__item__parent.is-open::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.allitem-list__item__children a {
  display: block;
  padding: 14px 24px 14px 12px;
  position: relative;
  border-bottom: 1px solid var(--c_border);
  font-size: 1.5rem;
  line-height: normal;
}
.allitem-list__item__children a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--c_blue);
  border-right: 1px solid var(--c_blue);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 14px;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* スマホのみ
  ------------------------ */
/* タブレット・PC
  ------------------------ */
@media (min-width: 768px) {
  .allitem-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .allitem-list__item__parent img {
    width: 70px;
  }
}
/* PCのみ
  ------------------------ */