@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap");
:root {
  --honin: #5185c5;
  --harukas: #c59ac5;
}

.info_list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 10px;
}
.info_list * {
  box-sizing: border-box;
}

.information {
  width: 100%;
  background: #fff;
  border-width: 1px;
  border-style: solid;
}
.information.section1 {
  border-color: var(--honin);
}
.information.section1 .information_title {
  background: var(--honin);
}
.information.section2 {
  border-color: var(--harukas);
}
.information.section2 .information_title {
  background: var(--harukas);
}
.information_title {
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "M PLUS Rounded 1c", sans-serif;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 0.25em 0;
}
.information .comment_area {
  width: 100%;
  aspect-ratio: 24/32;
  padding: 8px;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.information .comment_area::-webkit-scrollbar {
  display: none;
}
@media (width <= 480px) {
  .information .comment_area {
    aspect-ratio: 1/1;
  }
}
.information dl {
  border-bottom: 1px solid #9fa0a0;
}
.information dl dt {
  font-size: 13px;
  line-height: 18px;
  padding: 0.5em 0;
  padding-left: 0.25em;
  position: relative;
  cursor: pointer;
}
.information dl dt::before {
  display: block;
  content: "";
  position: absolute;
  right: 0.25em;
  top: 24px;
  width: 14px;
  height: 1px;
  background: #5185c5;
}
.information dl dt::after {
  content: "";
  display: block;
  position: absolute;
  right: 0.25em;
  top: 24px;
  width: 14px;
  height: 1px;
  background: #5185c5;
  transform: rotate(90deg);
  transition: all 0.4s;
}
.information dl dt .date {
  width: 7em;
  font-size: 12px;
  line-height: 20px;
  color: #808080;
}
.information dl dt .info_title {
  font-size: 14px;
  word-break: keep-all;
  overflow-wrap: anywhere;
  font-weight: 700;
}
.information dl dt.open {
  border: none;
}
.information dl dt.open::after {
  transform: rotate(0);
}
.information dl dd {
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: start;
  align-items: start;
  font-size: 13px;
  line-height: 20px;
  padding: 0 0.25em 0.5em 0.25em;
  display: none;
}
.information dl dd .info_copy {
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.information dl dd.open {
  display: block;
}

.hide_480 {
  display: block;
}
@media screen and (min-width: 340px) {
  .hide_480 {
    display: none;
  }
}/*# sourceMappingURL=info_st.css.map */