/* userrule */

h2 {
  margin-top: 24px;
}

.page_contents h3 {
  padding: 10px 0;
  border-bottom: 2px solid #1e7fb7;
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 16px;
  margin-top: 20px;
}

.page_contents ol {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
}

.page_contents ol>li {
  position: relative;
  padding-left: 2.5em;
  margin-bottom: 1.5em;
}

.page_contents ol>li::before {
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 0;
  width: 2em;
  text-align: right;
}

.link-list {
  margin-top: 8px;
}

.link-list li {
  box-sizing: border-box;
  position: relative;
  margin-right: 1.4em;
  padding-right: 1.4em;
}

.link-list a:hover {
  color: #1e7fb7;
  border-bottom: none;
}


ul.link-list {
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  text-align: justify;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {

  ul.link-list {
    display: flex;
    flex-wrap: wrap;
    text-align: justify;
    margin: 20px 0;
    font-size: 14px;
  }

  .page_contents h3 {
    border-bottom: 2px solid #1e7fb7 !important;
    font-size: 18px;
  }

  h4 {
    margin: 0px;
  }

}

/* userrule */

/* faq */

h5 .question-label {
  color: blue;
}

h5 .highlight {
  font-weight: bold;
}

.answer {
  padding-top: 8px;
}

.answer-label {
  color: red;
}

.page-contentspages .page_contents_inner {
  margin-top: 0px;
}

@media screen and (max-width: 767px) {
  .page_contents_inner {
    margin: 20px 0 30px;

  }
}


/* faq */

/* MER_IODATA-10 【コーディング】CSS調整（静的） */
.page-contentspages .page_contents_inner>.question-box {
  padding: 0;
  transition: .3s;
}

.page-contentspages .page_contents_inner>.question-box:has(h5.open) {
  padding: 0 0 30px;
}

.question-box .answer {
  padding-top: 0px;
}

.question-box {
  border-bottom: 1px solid #dfddde;
}

.question-box .answer-label {
  font-size: 16px;
}

.question-box h5 {
  position: relative;
  font-size: 16px;
  cursor: pointer;
  padding: 20px 0;
  transition: .3s;
}

.question-box h5::before,
.question-box h5::after {
  content: '';
  display: block;
  width: 15px;
  height: 2px;
  border-radius: 5px;
  position: absolute;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #dfddde;
}

.question-box h5::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.question-box h5.open:after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.question-box .answer_wrap {
  display: none;
}

body {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .page-contentspages .page_contents_inner>.question-box:has(h5.open) {
    padding: 0 0 10px;
  }

  .question-box h5 {
    font-size: 14px;
    padding: 10px 25px 10px 0;
  }

  .question-box h5::before,
  .question-box h5::after {
    right: 5px;
  }

  body {
    font-size: 14px;
  }
}