@charset "UTF-8";

.guide-container__wrap[open] .guide-container__btn::before {
  transform: rotate(0deg);
}
.guide-container__wrap[open] .guide-container__btn::after {
  display: none;
}
.guide-container__wrap:not(:first-child) {
  margin-top: 20px;
}
.guide-container__head {
  position: relative;
  padding: 10px;
  padding-right: 50px;
  border: 1px solid #dcdcdc;
  background-color: #f5f5f5;
  list-style: none;
}
.guide-container__head::-webkit-details-marker {
  display: none;
}
.guide-container__hdg-lv3 {
  font-size: 1.4rem;
}
.guide-container__content {
  margin-top: 0;
  border: 1px solid #dcdcdc;
  border-top: none;
}
.guide-container__content > :first-child {
  margin-top: 0;
}
.guide-container__content > :last-child {
  margin-bottom: 0;
}
.guide-container__btn {
  display: block;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  width: 30px;
  height: 30px;
  margin: auto 0;
  padding: 5px;
  border-radius: 50px;
  background-color: #cccccc;
}
.guide-container__btn::before, .guide-container__btn::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: calc(100% - 10px);
  height: 2px;
  margin: auto;
  background-color: #ffffff;
  content: "";
  transition: 0.3s ease-in-out;
}
.guide-container__btn::before {
  transform: rotate(-90deg);
}

.m-list__item::before {
  width: 3px;
  height: 3px;
}

@media screen and (min-width: 768px) {
  .guide-container__wrap:not(:first-child) {
    margin-top: 40px;
  }
  .guide-container__head {
    padding: 20px;
    padding-right: 70px;
  }
  .guide-container__hdg-lv3 {
    font-size: 1.8rem;
  }
  .guide-container__btn {
    right: 20px;
    width: 40px;
    height: 40px;
  }
}
