@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;600;700&display=swap");
.news_index .section_head {
  margin: 50px 0;
}

.news_index .section_head h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 20px;
}

@media screen and (min-width: 980px) {
  .news_index .section_head h2 {
    font-size: 30px;
    line-height: 43px;
  }
}

.news_index .news_filter_wrap {
  margin: 0 auto 48px;
}

@media screen and (min-width: 980px) {
  .news_index .news_filter_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 52px auto 50px;
    width: 650px;
  }
}

.news_index .news_filter_wrap .news_filter {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (min-width: 980px) {
  .news_index .news_filter_wrap .news_filter {
    margin: 0;
    width: auto;
  }
}

.news_index .news_filter_wrap .news_filter ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news_index .news_filter_wrap .news_filter li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #111;
  min-width: 70px;
  padding: 0 10px 2px;
  line-height: 16px;
  height: 17.5px;
  letter-spacing: 0.05em;
  border-radius: 5px;
  z-index: 2;
  margin-left: 10px;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media screen and (min-width: 980px) {
  .news_index .news_filter_wrap .news_filter li {
    font-size: 12px;
    margin-left: 20px;
  }
}

.news_index .news_filter_wrap .news_filter li:first-child {
  margin-left: 0;
}

@media screen and (min-width: 980px) {
  .news_index .news_filter_wrap .news_filter li:hover {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    opacity: 0.6;
  }
}

.news_index .news_filter_wrap .news_filter li a {
  line-height: 16px;
  height: 17.5px;
}

@media screen and (min-width: 980px) {
  .news_index .news_filter_wrap .news_filter li a {
    font-size: 12px;
  }
}

.news_index .news_filter_wrap .news_filter li.active {
  pointer-events: none;
  border-radius: 5px;
  background: #e8e8e8;
}

.news_index .news_filter_wrap .news_select_year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 22px;
  height: 18.5px;
  width: 92px;
}

@media screen and (min-width: 980px) {
  .news_index .news_filter_wrap .news_select_year {
    margin-right: 0;
    margin-top: 0;
    height: 21px;
    width: 115px;
  }
}

.news_index .news_filter_wrap .news_select_year p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: left;
  white-space: nowrap;
  font-size: 10px;
  line-height: 18.5px;
}

@media screen and (min-width: 980px) {
  .news_index .news_filter_wrap .news_select_year p {
    font-size: 12px;
    line-height: 21px;
  }
}

.news_index .news_filter_wrap .news_select_year select {
  border: none;
  outline: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  cursor: pointer;
  color: #111;
  text-align: left;
  padding-left: 10px;
  font-size: 13px;
  line-height: 18.5px;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding-right: 20px;
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 980px) {
  .news_index .news_filter_wrap .news_select_year select {
    font-size: 15px;
    line-height: 21px;
    padding-right: 23px;
  }
}

.news_index .news_filter_wrap .news_select_year::after {
  background-image: url("/assets/img/icon/icon_arrow_bottom.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  cursor: pointer;
  display: block;
  position: absolute;
  top: auto;
  bottom: auto;
  right: 0;
  margin: auto;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 15px;
  width: 15px;
  z-index: 0;
}

@media screen and (min-width: 980px) {
  .news_index .news_filter_wrap .news_select_year::after {
    height: 13px;
    width: 13px;
    margin: auto;
  }
}

@media screen and (min-width: 980px) {
  .news_index .news_filter_wrap .news_select_year:hover select, .news_index .news_filter_wrap .news_select_year:hover::after {
    opacity: 0.6;
  }
}

.news_index .news_list {
  margin-bottom: 70px;
}

@media screen and (min-width: 980px) {
  .news_index .news_list {
    margin-bottom: 95px !important;
  }
}

.news_index .news_list .news_list__item {
  -webkit-animation: tabAnim ease-in-out 0.6s forwards;
          animation: tabAnim ease-in-out 0.6s forwards;
}

.news_index .news_list .news_list__item:not(:last-child) {
  margin-bottom: 46.5px !important;
}

@media screen and (min-width: 980px) {
  .news_index .news_list .news_list__item:not(:last-child) {
    margin-bottom: 49px !important;
  }
}

.news_index .news_list .news_list__item .news_list__date {
  font-weight: 500;
}

@media screen and (max-width: 979px) {
  .news_index .news_list .news_list__item .news_list__date {
    margin-bottom: 7px !important;
  }
}

@media screen and (min-width: 980px) {
  .news_index .news_list .news_list__item .news_list__date {
    line-height: 21px !important;
    width: 258px !important;
  }
}

@media screen and (max-width: 979px) {
  .news_index .news_list .news_list__item .news_list__date time {
    letter-spacing: 0;
  }
}

.news_index .news_list .news_list__item .news_list_title {
  line-height: 2 !important;
  margin-bottom: 0px !important;
}

@media screen and (min-width: 980px) {
  .news_index .news_list .news_list__item .news_list_title {
    line-height: 21px !important;
  }
}

.news_content {
  margin: 0 auto;
  word-break: break-word;
}

@media screen and (min-width: 980px) {
  .news_content {
    padding: 0;
    max-width: 650px;
  }
}

.news_content .news_head {
  margin-bottom: 43px;
}

@media screen and (min-width: 980px) {
  .news_content .news_head {
    margin-bottom: 45px;
  }
}

.news_content .news_head h2 {
  text-align: left;
  font-size: 18px;
  line-height: 1.5;
  margin: 50px 0 5px;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 980px) {
  .news_content .news_head h2 {
    font-size: 22px;
    line-height: 2;
    margin: 45px 0 15px;
  }
}

.news_content .news_head p,
.news_content .news_head time,
.news_content .news_head .news_category {
  font-size: 10px;
  line-height: 22.5px;
  color: #888;
}

@media screen and (min-width: 980px) {
  .news_content .news_head p,
  .news_content .news_head time,
  .news_content .news_head .news_category {
    font-size: 12px;
    line-height: 18px;
  }
}

.news_content .news_body {
  position: relative;
}

.news_content .news_body > * {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

.news_content .news_body > *:first-child {
  margin-top: 0;
}

.news_content .news_body > *:last-child {
  margin-bottom: 0;
}

.news_content .news_body p,
.news_content .news_body a {
  line-height: 2;
}

.news_content .news_body p, .news_content .news_body ul, .news_content .news_body ol {
  margin-bottom: 15px;
}

.news_content .news_body b {
  color: #ec7e19;
  font-weight: 400;
}

.news_content .news_body a {
  -webkit-text-decoration-color: inherit;
          text-decoration-color: inherit;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  text-decoration: underline;
}

@media screen and (min-width: 980px) {
  .news_content .news_body a:hover {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
}

@media screen and (-ms-high-contrast: none) {
  .news_content .news_body a:hover {
    text-decoration: none;
  }
}

@media screen and (min-width: 980px) {
  .news_content .news_body a:hover img {
    opacity: 0.6;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}

.news_content .news_body > p > img,
.news_content .news_body > img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin-top: 20px;
  width: auto;
}

.news_content .news_body > p > img:not[class],
.news_content .news_body > img:not[class] {
  max-width: 100%;
}

.news_content .news_body > p > img.-wide,
.news_content .news_body > img.-wide {
  margin-right: 0;
  margin-left: 0;
  width: 100%;
}

@media screen and (min-width: 980px) {
  .news_content .news_body > p > img,
  .news_content .news_body > img {
    margin: 50px 0 0;
  }
  .news_content .news_body > p > img.-wide,
  .news_content .news_body > img.-wide {
    margin-right: -95px;
    margin-left: -95px;
    width: calc(100% + 190px);
    max-width: inherit;
  }
}

.news_content .news_body img.x1 {
  text-align: left;
  width: 47.619%;
  margin-top: 22px;
}

@media screen and (min-width: 980px) {
  .news_content .news_body img.x1 {
    width: 23%;
    margin-top: 30px;
  }
}

.news_content .news_body h2 {
  text-align: left;
  font-size: 15px;
  line-height: 2;
  margin-top: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 980px) {
  .news_content .news_body h2 {
    font-size: 20px;
    line-height: 40px;
    margin-top: 45px;
    margin-bottom: 45px;
  }
}

.news_content .news_body h3 {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 20px;
  margin-bottom: 8px;
}

@media screen and (min-width: 980px) {
  .news_content .news_body h3 {
    font-size: 18px;
    line-height: 27px;
    margin-top: 45px;
    margin-bottom: 18px;
  }
}

.news_content .news_body h4 {
  font-size: 12px;
  margin-top: 7px;
  margin-top: 20px;
}

@media screen and (min-width: 980px) {
  .news_content .news_body h4 {
    font-size: 15px;
    margin-top: 17px;
  }
}

.news_content .news_body h5 {
  font-size: 11px;
  margin-top: 5px;
  margin-top: 20px;
}

@media screen and (min-width: 980px) {
  .news_content .news_body h5 {
    font-size: 13px;
    margin-top: 15px;
  }
}

.news_content .news_body h6 {
  font-size: 10px;
  margin-top: 5px;
  margin-top: 20px;
}

@media screen and (min-width: 980px) {
  .news_content .news_body h6 {
    font-size: 12px;
    margin-top: 15px;
  }
}

.news_content .news_body .table-wrap._scroll {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: keep-all;
}

@media screen and (max-width: 979px) {
  .news_content .news_body .table-wrap._scroll {
    margin: 25px -30px 25px 0;
  }
}

.news_content .news_body .table-wrap {
  margin: 25px 0 25px 0;
}

@media screen and (min-width: 980px) {
  .news_content .news_body .table-wrap {
    margin: 0 auto 50px;
  }
}

.news_content .news_body .table-wrap .mCSB_container > div {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

@media screen and (min-width: 980px) {
  .news_content .news_body .table-wrap .mCSB_container > div {
    width: 100%;
  }
}

.news_content .news_body .table-wrap .mCSB_container > div > div {
  position: relative;
  margin-right: 28px;
  margin-left: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

@media screen and (min-width: 980px) {
  .news_content .news_body .table-wrap .mCSB_container > div > div {
    width: 100%;
  }
}

.news_content .news_body .table-wrap table {
  border-collapse: separate;
  border: 1px solid #939393;
  width: 100%;
}

.news_content .news_body .table-wrap table thead > tr > th {
  background-color: #888;
  color: #FFF;
  padding-top: 2px;
  padding-bottom: 2px;
}

.news_content .news_body .table-wrap table thead > tr > th:nth-child(n+2) {
  border-left: 1px solid #888;
}

.news_content .news_body .table-wrap table thead > tr > th::before {
  display: none !important;
}

.news_content .news_body .table-wrap table tr th, .news_content .news_body .table-wrap table tr td {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: left;
  vertical-align: middle;
  position: relative;
  z-index: 10;
  font-size: 12px;
  line-height: 24px;
  padding-top: 2px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 2px;
}

@media screen and (min-width: 980px) {
  .news_content .news_body .table-wrap table tr th, .news_content .news_body .table-wrap table tr td {
    font-size: 15px;
    line-height: 30px;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
  }
}

.news_content .news_body .table-wrap table tr th:first-child, .news_content .news_body .table-wrap table tr td:first-child {
  padding-left: 15px;
}

@media screen and (min-width: 980px) {
  .news_content .news_body .table-wrap table tr th:first-child, .news_content .news_body .table-wrap table tr td:first-child {
    padding-left: 30px;
  }
}

.news_content .news_body .table-wrap table tr th:last-child, .news_content .news_body .table-wrap table tr td:last-child {
  padding-right: 15px;
}

@media screen and (min-width: 980px) {
  .news_content .news_body .table-wrap table tr th:last-child, .news_content .news_body .table-wrap table tr td:last-child {
    padding-right: 30px;
  }
}

.news_content .news_body .table-wrap table tbody > tr:nth-child(odd) th::before, .news_content .news_body .table-wrap table tbody > tr:nth-child(odd) td::before,
.news_content .news_body .table-wrap table > tr:nth-child(odd) th::before,
.news_content .news_body .table-wrap table > tr:nth-child(odd) td::before {
  background-color: rgba(248, 248, 248, 0.8);
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: -10;
}

.news_content .news_body .table-wrap table tbody > tr:nth-child(odd) th:first-child::before, .news_content .news_body .table-wrap table tbody > tr:nth-child(odd) td:first-child::before,
.news_content .news_body .table-wrap table > tr:nth-child(odd) th:first-child::before,
.news_content .news_body .table-wrap table > tr:nth-child(odd) td:first-child::before {
  left: 5px;
  width: calc(100% - 5px);
}

@media screen and (min-width: 980px) {
  .news_content .news_body .table-wrap table tbody > tr:nth-child(odd) th:first-child::before, .news_content .news_body .table-wrap table tbody > tr:nth-child(odd) td:first-child::before,
  .news_content .news_body .table-wrap table > tr:nth-child(odd) th:first-child::before,
  .news_content .news_body .table-wrap table > tr:nth-child(odd) td:first-child::before {
    width: calc(100% - 10px);
  }
}

.news_content .news_body .table-wrap table tbody > tr:nth-child(odd) th:last-child::before, .news_content .news_body .table-wrap table tbody > tr:nth-child(odd) td:last-child::before,
.news_content .news_body .table-wrap table > tr:nth-child(odd) th:last-child::before,
.news_content .news_body .table-wrap table > tr:nth-child(odd) td:last-child::before {
  right: 5px;
  width: calc(100% - 5px);
}

@media screen and (min-width: 980px) {
  .news_content .news_body .table-wrap table tbody > tr:nth-child(odd) th:last-child::before, .news_content .news_body .table-wrap table tbody > tr:nth-child(odd) td:last-child::before,
  .news_content .news_body .table-wrap table > tr:nth-child(odd) th:last-child::before,
  .news_content .news_body .table-wrap table > tr:nth-child(odd) td:last-child::before {
    width: calc(100% - 10px);
  }
}

.news_content .news_body .table-wrap table tbody > tr:nth-child(odd):first-child th, .news_content .news_body .table-wrap table tbody > tr:nth-child(odd):first-child td,
.news_content .news_body .table-wrap table > tr:nth-child(odd):first-child th,
.news_content .news_body .table-wrap table > tr:nth-child(odd):first-child td {
  padding-top: 7px;
}

@media screen and (min-width: 980px) {
  .news_content .news_body .table-wrap table tbody > tr:nth-child(odd):first-child th, .news_content .news_body .table-wrap table tbody > tr:nth-child(odd):first-child td,
  .news_content .news_body .table-wrap table > tr:nth-child(odd):first-child th,
  .news_content .news_body .table-wrap table > tr:nth-child(odd):first-child td {
    padding-top: 20px;
  }
}

.news_content .news_body .table-wrap table tbody > tr:nth-child(odd):first-child th::before, .news_content .news_body .table-wrap table tbody > tr:nth-child(odd):first-child td::before,
.news_content .news_body .table-wrap table > tr:nth-child(odd):first-child th::before,
.news_content .news_body .table-wrap table > tr:nth-child(odd):first-child td::before {
  top: 5px;
  height: calc(100% - 5px);
}

@media screen and (min-width: 980px) {
  .news_content .news_body .table-wrap table tbody > tr:nth-child(odd):first-child th::before, .news_content .news_body .table-wrap table tbody > tr:nth-child(odd):first-child td::before,
  .news_content .news_body .table-wrap table > tr:nth-child(odd):first-child th::before,
  .news_content .news_body .table-wrap table > tr:nth-child(odd):first-child td::before {
    top: 10px;
    height: calc(100% - 10px);
  }
}

.news_content .news_body .table-wrap table tbody > tr:nth-child(odd):first-child th:first-child::before, .news_content .news_body .table-wrap table tbody > tr:nth-child(odd):first-child td:first-child::before,
.news_content .news_body .table-wrap table > tr:nth-child(odd):first-child th:first-child::before,
.news_content .news_body .table-wrap table > tr:nth-child(odd):first-child td:first-child::before {
  left: 5px;
}

@media screen and (min-width: 980px) {
  .news_content .news_body .table-wrap table tbody > tr:nth-child(odd):first-child th:first-child::before, .news_content .news_body .table-wrap table tbody > tr:nth-child(odd):first-child td:first-child::before,
  .news_content .news_body .table-wrap table > tr:nth-child(odd):first-child th:first-child::before,
  .news_content .news_body .table-wrap table > tr:nth-child(odd):first-child td:first-child::before {
    left: 10px;
  }
}

.news_content .news_body .table-wrap table tbody > tr:nth-child(odd):first-child th:last-child::before, .news_content .news_body .table-wrap table tbody > tr:nth-child(odd):first-child td:last-child::before,
.news_content .news_body .table-wrap table > tr:nth-child(odd):first-child th:last-child::before,
.news_content .news_body .table-wrap table > tr:nth-child(odd):first-child td:last-child::before {
  right: 5px;
}

@media screen and (min-width: 980px) {
  .news_content .news_body .table-wrap table tbody > tr:nth-child(odd):first-child th:last-child::before, .news_content .news_body .table-wrap table tbody > tr:nth-child(odd):first-child td:last-child::before,
  .news_content .news_body .table-wrap table > tr:nth-child(odd):first-child th:last-child::before,
  .news_content .news_body .table-wrap table > tr:nth-child(odd):first-child td:last-child::before {
    right: 10px;
  }
}

.news_content .news_body .table-wrap table tbody > tr:nth-child(odd):last-child th, .news_content .news_body .table-wrap table tbody > tr:nth-child(odd):last-child td,
.news_content .news_body .table-wrap table > tr:nth-child(odd):last-child th,
.news_content .news_body .table-wrap table > tr:nth-child(odd):last-child td {
  padding-bottom: 7px;
}

@media screen and (min-width: 980px) {
  .news_content .news_body .table-wrap table tbody > tr:nth-child(odd):last-child th, .news_content .news_body .table-wrap table tbody > tr:nth-child(odd):last-child td,
  .news_content .news_body .table-wrap table > tr:nth-child(odd):last-child th,
  .news_content .news_body .table-wrap table > tr:nth-child(odd):last-child td {
    padding-bottom: 20px;
  }
}

.news_content .news_body .table-wrap table tbody > tr:nth-child(odd):last-child th::before, .news_content .news_body .table-wrap table tbody > tr:nth-child(odd):last-child td::before,
.news_content .news_body .table-wrap table > tr:nth-child(odd):last-child th::before,
.news_content .news_body .table-wrap table > tr:nth-child(odd):last-child td::before {
  bottom: 5px;
  height: calc(100% - 5px);
}

@media screen and (min-width: 980px) {
  .news_content .news_body .table-wrap table tbody > tr:nth-child(odd):last-child th::before, .news_content .news_body .table-wrap table tbody > tr:nth-child(odd):last-child td::before,
  .news_content .news_body .table-wrap table > tr:nth-child(odd):last-child th::before,
  .news_content .news_body .table-wrap table > tr:nth-child(odd):last-child td::before {
    bottom: 10px;
    height: calc(100% - 10px);
  }
}

.news_content .news_body .table-wrap table tbody > tr:nth-child(odd):last-child th:first-child::before, .news_content .news_body .table-wrap table tbody > tr:nth-child(odd):last-child td:first-child::before,
.news_content .news_body .table-wrap table > tr:nth-child(odd):last-child th:first-child::before,
.news_content .news_body .table-wrap table > tr:nth-child(odd):last-child td:first-child::before {
  left: 5px;
}

@media screen and (min-width: 980px) {
  .news_content .news_body .table-wrap table tbody > tr:nth-child(odd):last-child th:first-child::before, .news_content .news_body .table-wrap table tbody > tr:nth-child(odd):last-child td:first-child::before,
  .news_content .news_body .table-wrap table > tr:nth-child(odd):last-child th:first-child::before,
  .news_content .news_body .table-wrap table > tr:nth-child(odd):last-child td:first-child::before {
    left: 10px;
  }
}

.news_content .news_body .table-wrap table tbody > tr:nth-child(odd):last-child th:last-child::before, .news_content .news_body .table-wrap table tbody > tr:nth-child(odd):last-child td:last-child::before,
.news_content .news_body .table-wrap table > tr:nth-child(odd):last-child th:last-child::before,
.news_content .news_body .table-wrap table > tr:nth-child(odd):last-child td:last-child::before {
  right: 5px;
}

@media screen and (min-width: 980px) {
  .news_content .news_body .table-wrap table tbody > tr:nth-child(odd):last-child th:last-child::before, .news_content .news_body .table-wrap table tbody > tr:nth-child(odd):last-child td:last-child::before,
  .news_content .news_body .table-wrap table > tr:nth-child(odd):last-child th:last-child::before,
  .news_content .news_body .table-wrap table > tr:nth-child(odd):last-child td:last-child::before {
    right: 10px;
  }
}

.news_content .news_body .table-wrap table tbody > tr th:nth-child(n+2), .news_content .news_body .table-wrap table tbody > tr td:nth-child(n+2),
.news_content .news_body .table-wrap table > tr th:nth-child(n+2),
.news_content .news_body .table-wrap table > tr td:nth-child(n+2) {
  border-left: 1px solid #939393;
}

/* table スクロールバー */
#mCSB_1_scrollbar_horizontal {
  margin-right: 30px;
}

.mCS-my-theme.mCSB_scrollTools_horizontal {
  height: 5px;
  border-radius: 2.5em;
}

.mCSB_draggerContainer {
  background: #f8f8f8;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
  max-width: 210px !important;
}

.mCS-my-theme.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #888888;
  height: 5px;
  margin: 0;
  border-radius: 2.5em;
}

.mCS-my-theme.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #f8f8f8;
  height: 5px;
  margin: 0;
  border-radius: 2.5em;
}

.mCS-my-theme.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  margin: 0;
}

.mCSB_horizontal.mCSB_inside > .mCSB_container {
  margin-bottom: 20px;
}

/* ページネーション */
.pagination-container {
  margin-bottom: 160px;
}

@media screen and (min-width: 980px) {
  .pagination-container {
    margin-bottom: 200px;
  }
}

.pagination-container ul {
  margin: 0 auto 20px;
  padding: 0;
  list-style: none;
  text-align: center;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 650px;
}

@media screen and (min-width: 980px) {
  .pagination-container ul {
    width: 100%;
    max-width: 650px;
  }
}

.pagination-container li {
  display: inline-block;
  margin: 0 11px;
  letter-spacing: 0.05em;
  color: #888;
  line-height: 2;
}

@media screen and (min-width: 980px) {
  .pagination-container li {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    font-size: 15px;
    margin: 0 13px;
  }
}

@media screen and (min-width: 980px) {
  .pagination-container li a {
    font-size: 15px;
  }
}

.pagination-container li.active span {
  color: #111;
}

.pagination-container li:first-child, .pagination-container li:last-child {
  margin: 0 10px;
  position: absolute;
  top: 41px;
  color: #111;
}

@media screen and (min-width: 980px) {
  .pagination-container li:first-child, .pagination-container li:last-child {
    top: 0px;
  }
}

.pagination-container li:first-child {
  left: -12px;
}

@media screen and (min-width: 980px) {
  .pagination-container li:first-child {
    left: -9px;
  }
}

.pagination-container li:last-child {
  right: -12px;
}

@media screen and (min-width: 980px) {
  .pagination-container li:last-child {
    right: -9px;
  }
}

@media screen and (min-width: 980px) {
  .pagination-container li:first-child:not(.disabled):hover, .pagination-container li:last-child:not(.disabled):hover {
    opacity: 0.6;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}

.pagination-container li .ellipse {
  line-height: 12px;
  position: relative;
  bottom: -4px;
}

@media screen and (min-width: 980px) {
  .pagination-container li.active, .pagination-container li:hover {
    color: #111;
  }
}

@media screen and (max-width: 979px) {
  .pagination-container li:nth-child(4) {
    display: none;
  }
}

.pagination-container li span,
.pagination-container li a {
  position: relative;
}

.pagination-container li span.next,
.pagination-container li a.next {
  padding-right: 18px;
}

@media screen and (min-width: 980px) {
  .pagination-container li span.next,
  .pagination-container li a.next {
    padding-right: 25px;
  }
}

.pagination-container li span.next::after,
.pagination-container li a.next::after {
  content: "";
  position: absolute;
  height: 6px;
  width: 6px;
  border: 1px solid #111111;
  border-style: none solid solid none;
  right: 5px;
  top: 10px;
  -webkit-transform: translateY(-50%) rotate(315deg);
  transform: translateY(-50%) rotate(315deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media screen and (min-width: 980px) {
  .pagination-container li span.next::after,
  .pagination-container li a.next::after {
    top: 12px;
  }
}

.pagination-container li span.prev,
.pagination-container li a.prev {
  padding-left: 19px;
}

@media screen and (min-width: 980px) {
  .pagination-container li span.prev,
  .pagination-container li a.prev {
    padding-left: 25px;
  }
}

.pagination-container li span.prev::before,
.pagination-container li a.prev::before {
  content: "";
  position: absolute;
  height: 6px;
  width: 6px;
  border: 1px solid #111111;
  border-style: none solid solid none;
  left: 5px;
  top: 10px;
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media screen and (min-width: 980px) {
  .pagination-container li span.prev::before,
  .pagination-container li a.prev::before {
    top: 12px;
  }
}

/* 「一覧へ戻る」ボタン */
.news_list_more {
  position: relative;
  margin: 50px auto 125px;
  cursor: pointer;
}

@media screen and (min-width: 980px) {
  .news_list_more {
    margin: 100px auto 200px;
    max-width: 400px;
  }
}

@media screen and (min-width: 980px) {
  .news_list_more span {
    font-size: 11px;
    height: 45px;
  }
}

.news_list_more a {
  width: 100%;
  color: #111111;
  font-size: 12px;
  letter-spacing: 0.05em;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

@media screen and (min-width: 980px) {
  .news_list_more a {
    font-size: 12px;
  }
}

.news_list_more a:before {
  content: "";
  position: absolute;
  height: 6px;
  width: 6px;
  border: 1px solid #111111;
  border-style: none solid solid none;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.news_list_more::before, .news_list_more:after {
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  right: 0;
  background-color: #939393;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.news_list_more::before {
  top: 0;
}

.news_list_more::after {
  bottom: 0;
}

@media screen and (min-width: 980px) {
  .news_list_more:hover::before, .news_list_more:hover:after {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
  }
  .news_list_more:hover a:before {
    opacity: 0;
  }
}

/* パンクズ */
.breadcrumb {
  margin-bottom: 50px;
}

@media screen and (min-width: 980px) {
  .breadcrumb {
    margin: 0 auto 98px;
  }
}

@media screen and (min-width: 980px) {
  .breadcrumb ul {
    max-width: 840px;
    width: 100%;
    margin: 0 auto;
  }
}

.breadcrumb li {
  display: inline-block;
}

.breadcrumb li:not(:last-child)::after {
  content: ">";
  display: inline-block;
  padding-left: 3px;
}

@media screen and (min-width: 980px) {
  .breadcrumb li a {
    font-size: 15px;
  }
  .breadcrumb li a:hover {
    opacity: 0.6;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
}
/*# sourceMappingURL=news.css.map */