@charset "utf-8";
/* sellとbuyで共通になっているため、どちらかが大きく変わる場合は複製して更新してください */

.information {
  padding: 0 0 96px;
}

@media screen and (max-width: 768px) {
  .information {
    padding: 0 0 calc(96*100vw/375);
  }
}

/* List
------------------------------*/
.-content .header_info-list {
  margin-bottom: 96px;
  max-height: none;
}

@media screen and (max-width: 768px) {
  .-content .header_info-list {
    margin-bottom: calc(64*100vw/375);
  }
}

/* Detail
------------------------------*/
.information_header {
  display: flex;
  margin: 64px 0 20px;
}

.information_header .-date {
  margin: 0 16px 0 0;
}

.information_header .-label {
  border-radius: 3px;
  font-size: 11px;
  line-height: 1;
  padding: 5px;
}

.information_title {
  font-size: 22px;
  margin: 0 0 20px;
}

.information_detail hr {
    background: var(--main-border);
    height: 1px;
}

.information_detail ul,
.information_detail ol{
    margin: 1em 0 0;
    padding-left: 1.5em;
}

.information_detail ul li {
    list-style: circle;
}

.information_detail ol li {
    list-style: decimal;
}

.information_detail-text {
  margin: 0 0 46px;
}

.information_detail-text a {
  text-decoration: underline;
}

.information_detail {
  border-top: 1px solid var(--main-border);
  border-bottom: 1px solid var(--main-border);
  margin: 0 0 100px;
  padding: 30px 0 20px;
}

.infoList .ec-pager {
  padding: 1em 0;
}


@media screen and (max-width: 768px) {
  .information_header {
    margin: calc(64*100vw/375) 0 calc(20*100vw/375);
  }

  .information_header .-date {
    margin: 0 calc(10*100vw/375) 0 0;
  }

  .information_header .-label {
    border-radius: calc(3*100vw/375);
    font-size: calc(10*100vw/375);
    padding: calc(5*100vw/375);
  }

  .information_title {
    font-size: calc(18*100vw/375);
    margin: 0 0 calc(20*100vw/375);
  }

  .information_detail-text {
    margin: 0 0 calc(45*100vw/375);
  }

  .information_detail {
    margin: 0 0 calc(64*100vw/375);
    padding: calc(20*100vw/375) 0 calc(40*100vw/375);
  }
}