@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
.sec-info__list.sortList {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: auto;
}
@media screen and (min-width: 580px) {
  .sec-info__list.sortList {
    justify-content: flex-start;
    gap: 40px 6%;
  }
}
@media screen and (min-width: 1025px) {
  .sec-info__list.sortList {
    gap: 60px 8.3%;
  }
}
.sec-info__list.sortList > li {
  width: 100%;
}
@media screen and (min-width: 580px) {
  .sec-info__list.sortList > li {
    width: 47%;
  }
}
@media screen and (min-width: 1025px) {
  .sec-info__list.sortList > li {
    width: 27.8%;
  }
}

.filterList__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 2%;
}
@media screen and (min-width: 580px) {
  .filterList__info {
    gap: 15px 2%;
  }
}
@media screen and (min-width: 1025px) {
  .filterList__info {
    gap: 15px 1.4%;
  }
}
.filterList__info label {
  background: #F2F8FE;
  text-align: center;
  border-radius: 30px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  padding: 0.6em 0.5em;
  width: 48%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1.4rem, 1.36vw, 1.6rem);
}
@media screen and (min-width: 580px) {
  .filterList__info label {
    padding: 1em 0.5em;
    width: 32%;
  }
}
@media screen and (min-width: 1025px) {
  .filterList__info label {
    width: 19.5%;
  }
}
.filterList__info label::before {
  content: url(/assets/img/common/icon_tag.svg);
  margin-left: -10px;
  padding-right: 4px;
  transform: scale(0.6);
  width: 20px;
}
@media screen and (min-width: 769px) {
  .filterList__info label::before {
    transform: scale(0.9);
    width: 24px;
  }
}
.filterList__info label.checkbox.active {
  background: #003E92;
  color: #fff;
}
.filterList__info label.checkbox.active::before {
  content: url(/assets/img/common/icon_tag-wt.svg);
}

.sec-info__list [class*=hidden-] {
  display: none;
}

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  width: 0;
  opacity: 0;
  cursor: pointer;
}

input {
  margin: 0;
  width: 0;
  opacity: 0;
}

.info-sttl {
  font-size: clamp(1.7rem, 2.36vw, 3rem);
  font-weight: 500;
  margin-bottom: 0.5em;
}

.info-ssttl {
  font-size: clamp(1.5rem, 1.55vw, 1.8rem);
  font-weight: 700;
  padding-top: 1.4em;
  margin-bottom: 0.1em;
}

.article {
  margin-bottom: 6em;
}
.article img {
  display: block;
  margin: auto;
  height: auto;
  width: auto;
  max-width: 800px;
  max-height: 350px;
}
@media screen and (min-width: 769px) {
  .article img {
    max-height: 600px;
    max-width: 900px;
  }
}
.article a {
  text-decoration: underline;
  color: #003E92;
}
.article a:hover {
  text-decoration: none;
}
.article p {
  display: block;
  padding: 1em 0;
}
.article ol {
  counter-reset: count 0;
  list-style-type: none;
  background: #f6f6f6;
  padding: 20px;
  display: block;
  margin: 0 auto 1em;
}
.article ol li {
  padding-left: 2rem;
  text-indent: -1.9rem;
  margin-bottom: 0.5em;
}
.article ol li::before {
  content: counter(count) ". ";
  counter-increment: count 1;
}
.article ul {
  list-style-type: none;
  padding: 15px 0;
}
.article ul li {
  margin-bottom: 0.5em;
  padding-left: 2rem;
  text-indent: -1.9rem;
}
.article ul li::before {
  content: "● ";
  color: #45a6ef;
}
.article table {
  padding: 15px 0;
  width: 100%;
  border-collapse: collapse;
}
.article table th, .article table td {
  padding: 4px 15px;
  border: solid 1px #ddd;
}
.article strong {
  font-weight: 700;
  padding: 0.5em 0;
  color: #003E92;
}

blockquote {
  background: #f6f6f6;
  padding: 20px;
  display: block;
  margin: 0 auto 1em;
}

.bg-bl p {
  margin: 0 auto 2em;
}

.heading {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .heading {
    margin-bottom: 40px;
  }
}

/*--article table--*/
.commonTable {
  position: relative;
  margin-top: 3%;
  margin-bottom: 3%;
}
.commonTable caption {
  text-align: right;
  padding: 0.5em 0;
}
.commonTable table {
  width: 100%;
  box-sizing: border-box;
}
.commonTable table tr {
  box-sizing: border-box;
  border-bottom: 1px solid #e1e1e1;
  border-left: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
}
.commonTable table tr:first-child {
  border-top: 1px solid #e1e1e1;
}
.commonTable table th {
  width: 32%;
  box-sizing: border-box;
  vertical-align: top;
  background: #eee;
  padding: 3%;
  font-weight: normal;
  border-right: 1px solid #e1e1e1;
}
.commonTable table td {
  padding: 3%;
  width: 68%;
  box-sizing: border-box;
  vertical-align: top;
}
.commonTable.is-scroll {
  overflow-x: auto;
  margin-top: 1.5%;
  margin-bottom: 1.5%;
}
.commonTable.is-scroll::before {
  display: block;
  content: "※下の表は、スクロールが可能です。";
  height: 44px;
  background-image: url(../images/common/ico_scroll.png);
  background-repeat: no-repeat;
  background-position: center 0;
  padding-top: 10px;
  text-align: center;
  animation: bgroop 2s ease infinite;
  font-weight: bold;
  background-color: #fff;
  opacity: 0.6;
  font-size: 1.5rem;
  margin-top: 15px;
}
.commonTable.is-scroll table th {
  padding: 1.5%;
}
.commonTable.is-scroll table td {
  padding: 1.5%;
}
.commonTable.aboutTable {
  line-height: 2.3;
}
.commonTable.aboutTable dl {
  margin-bottom: 10px;
}
.commonTable.aboutTable dt {
  font-weight: normal;
  width: 100%;
  line-height: 1;
}
.commonTable.aboutTable dd {
  width: 100%;
}
.commonTable.stripe table tr:nth-child(odd) {
  background: #eee;
}
.commonTable.stripe table th {
  background: none;
}
.commonTable.row-3 table tr:first-child {
  background: #e2e2e2;
}
.commonTable.row-3 table tr:first-child th {
  background: #e2e2e2;
  border-right: 1px solid #d0d0d0;
}
.commonTable.row-3 table th {
  width: 26%;
}
.commonTable.row-3 table td {
  width: 38%;
}
.commonTable.row-3 table td:nth-child(2) {
  border-right: 1px solid #d0d0d0;
}

@keyframes bgroop {
  0% {
    background-position: calc(8% - 10px) 0;
  }
  50% {
    background-position: calc(8% + 10px) 0;
  }
  100% {
    background-position: calc(8% - 10px) 0;
  }
}
@media (min-width: 768px) {
  .commonTable {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .commonTable table {
    width: 100%;
    box-sizing: border-box;
  }
  .commonTable table th {
    width: 22%;
    box-sizing: border-box;
    vertical-align: top;
    background: #eee;
    padding: 13px 15px;
    font-weight: normal;
  }
  .commonTable table td {
    padding: 13px 15px;
    width: 79%;
    box-sizing: border-box;
    vertical-align: top;
  }
  .commonTable.is-scroll {
    max-width: none;
    width: 100%;
    overflow-x: auto;
  }
  .commonTable.is-scroll::before {
    display: none;
  }
  .commonTable.stripe table tr:nth-child(odd) {
    background: #eee;
  }
  .commonTable.stripe table th {
    background: none;
  }
  .commonTable.row-3 table th {
    width: 20%;
  }
  .commonTable.row-3 table td {
    width: 40%;
  }
  .commonTable.note {
    font-size: 1.2rem;
  }
}