/* LESS Document */
.cmsArea .infoContents {
  padding: 0 100px;
}
@media (width <= 1023px) {
  .cmsArea .infoContents {
    padding: 0 10px;
  }
}
.cmsArea h2 {
  margin: 100px 0 48px;
  padding: 0 0 15px;
  font-size: 4rem;
  line-height: 1.2;
  border-bottom: #D7D7D7 2px solid;
  margin-bottom: 20px;
  position: relative;
}
@media (width <= 767px) {
  .cmsArea h2 {
    margin: 50px 0 20px;
    font-size: 8vw;
  }
}
.cmsArea h2::after {
  content: '';
  display: block;
  width: 110px;
  height: 2px;
  background: #AF1C40;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.cmsArea h3 {
  margin: 56px 0 24px;
  padding: 0 0 0 28px;
  line-height: 1.4;
  font-size: 2.8rem;
  position: relative;
}
@media (width <= 767px) {
  .cmsArea h3 {
    margin: 40px 0 15px;
    font-size: 5.6vw;
    padding-left: 6vw;
  }
}
.cmsArea h3::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/bullet_htl.svg) no-repeat center center / cover;
  position: absolute;
  left: 0;
  top: 10px;
}
@media (width <= 767px) {
  .cmsArea h3::before {
    width: 4vw;
    height: 4vw;
    top: 2vw;
  }
}
.cmsArea h4 {
  margin: 40px 0 16px;
  font-size: 2rem;
  line-height: 1.4;
  color: #1F296B;
}
@media (width <= 767px) {
  .cmsArea h4 {
    margin: 30px 0 10px;
    font-size: 4vw;
  }
}
.cmsArea p:not(:last-child) {
  margin-bottom: 2em;
}
.cmsArea table {
  max-width: 1080px;
  margin: 24px auto;
}
.cmsArea table th,
.cmsArea table td {
  font-size: 1.8rem;
  padding: 24px;
}
@media (width <= 767px) {
  .cmsArea table th,
  .cmsArea table td {
    font-size: 3.6vw;
    padding: 12px;
  }
}
.cmsArea table th {
  min-width: 200px;
}
@media (width <= 767px) {
  .cmsArea table th {
    min-width: 0;
    width: 25%;
  }
}
.cmsArea img {
  max-width: 100%!important;
  height: auto!important;
}
.cmsArea img[style*="right"] {
  margin: 0 0 1em 1em;
}
.cmsArea img[style*="left"] {
  margin: 0 1em 1em 0;
}
.cmsArea ul {
  margin: 0 0 30px;
  padding: 0 0 0 30px;
}
.cmsArea ul li::before {
  content: '\f0da';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 7px 0 -15px;
  border-radius: 8px;
  background: #AF1C40;
  vertical-align: middle;
}
.cmsArea ol {
  list-style: decimal;
  margin: 0 0 30px;
  padding: 0 0 0 30px;
}
.cmsArea blockquote {
  background: #EEE;
  position: relative;
  margin: 0 !important;
  padding: 32px;
}
.cmsArea blockquote::before,
.cmsArea blockquote::after {
  content: "“";
  font-family: 'Roboto', sans-serif;
  font-size: 60px;
  color: #787878;
  line-height: 1;
  position: absolute;
  top: 5px;
  left: 5px;
}
.cmsArea blockquote::after {
  content: "”";
  top: auto;
  left: auto;
  bottom: -30px;
  right: 5px;
}
.cmsArea a {
  color: #0080E8;
  font-weight: bold;
  overflow-wrap: anywhere;
}
/* -------------------------------- pagination */
.pagination {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 5px 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 50px 0 0;
  text-align: center;
  font-size: 0;
}
@media (width <= 767px) {
  .pagination {
    gap: 5px 8px;
  }
}
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  padding: 11px 15px;
  line-height: 1.2;
  text-decoration: none;
  font-size: 2rem;
  font-weight: bold;
  color: #3A3A3A;
  background: #DDD;
  border-radius: 50px;
  box-sizing: border-box;
}
@media (width <= 767px) {
  .pagination a,
  .pagination span {
    width: 40px;
    height: 40px;
    padding: 5px 12px;
  }
}
.pagination a:hover,
.pagination span:hover,
.pagination a.current,
.pagination span.current {
  background: #AF1C40;
  color: #FFF;
}
.pagination a.current,
.pagination span.current {
  pointer-events: none;
}
.pagination a.prev,
.pagination span.prev {
  width: 114px;
  margin-right: 24px;
  justify-content: flex-start;
}
@media (width <= 767px) {
  .pagination a.prev,
  .pagination span.prev {
    width: max-content;
    margin-right: 6px;
  }
}
.pagination a.next,
.pagination span.next {
  width: 114px;
  margin-left: 24px;
  justify-content: flex-end;
}
@media (width <= 767px) {
  .pagination a.next,
  .pagination span.next {
    width: max-content;
    margin-left: 6px;
  }
}
.pagination span {
  background: #EEE;
  border-color: #EEE;
  color: #ADADAD;
  pointer-events: none;
}
