@charset "utf-8";

/*
  File Name   : news.css
  Description : コンテンツエリア関係 他
*/

/* com-category-sort-btn-wrap
============================================================ */
.com-category-sort-btn-wrap {
  margin-bottom: 60px;
}
.com-category-sort-btn-wrap .com-flex-box {
  align-items: center;
  justify-content: center;
}
.com-category-sort-btn-wrap .title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  margin-right: 20px;
}
.com-category-sort-btn-wrap .title span {
  position: relative;
  padding-left: 30px;
}
.com-category-sort-btn-wrap .title span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 14px;
  background: url(../img/common/icon-file-or.svg) 0 0 no-repeat;
  background-size: 20px auto;
}
.com-category-sort-btn-wrap .btn-list li {
  margin-right: 10px;
}
.com-category-sort-btn-wrap .btn-list li:last-child {
  margin-right: 0;
}
.com-category-sort-btn-wrap .btn-list li a {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  padding: 15px 30px;
  border-radius: 50px;
  background-color: #aaa;
  display: block;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, .05);
}
.com-category-sort-btn-wrap .btn-list li.-color-all a {
  color: #fff;
  background-color: #d36900;
}
.com-category-sort-btn-wrap .btn-list li.-color-news a {
  color: #d36900;
  background-color: #fff;
}
.com-category-sort-btn-wrap .btn-list li.-color-event a {
  color: #4771b8;
  background-color: #fff;
}
.com-category-sort-btn-wrap .btn-list li.-color-recruit a {
  color: #5d8e0f;
  background-color: #fff;
}
.com-category-sort-btn-wrap .btn-list li a:hover {
  text-decoration: none;
  opacity: .7;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .com-category-sort-btn-wrap {
    margin-bottom: 30px;
  }
  .com-category-sort-btn-wrap .com-flex-box {
    display: block;
  }
  .com-category-sort-btn-wrap .title {
    margin-right: 0;
    text-align: center;
  }
  .com-category-sort-btn-wrap .title span {
    position: relative;
    padding-left: 30px;
  }
  .com-category-sort-btn-wrap .title span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 14px;
    background: url(../img/common/icon-file-or.svg) 0 0 no-repeat;
    background-size: 20px auto;
  }
  .com-category-sort-btn-wrap .btn-list.com-flex-box {
    display: flex;
    flex-wrap: wrap;
  }
  .com-category-sort-btn-wrap .btn-list {
    padding: 0 20px;
    margin-top: 20px;
  }
  .com-category-sort-btn-wrap .btn-list li {
    width: calc((100% - 15px * 1) / 2);
    margin-right: 10px;
  }
  .com-category-sort-btn-wrap .btn-list li:nth-child(2n) {
    margin-right: 0;
  }
  .com-category-sort-btn-wrap .btn-list li:nth-child(n + 3) {
    margin-top: 15px;
  }
  .com-category-sort-btn-wrap .btn-list li a {
    text-align: center;
  }
  .com-category-sort-btn-wrap .btn-list li a:hover {
    opacity: 1;
  }
}

/* pagination
============================================================ */
.-navigation-wrap {
  margin-top: 60px;
}
.pagination .screen-reader-text {
  display: none;
}
.pagination {
  margin: 0 0 0;
}
.pagination .nav-links {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.pagination .nav-links ul {
  display: flex;
}
.pagination .prev {
  margin-left: 10px;
}
.pagination .next {
  margin-right: 10px;
}
.pagination a {
  transition: opacity .3s ease;
}
.pagination a:hover {
  opacity: .7;
}
.pagination .prev a,
.pagination .next a {
  position: relative;
  top: calc(50% - 5px);
  font-weight: bold;
  text-decoration: none;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  /* background-color: #edf9ff; */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: block;
  box-sizing: border-box;
}
.pagination .prev-all a:before,
.pagination .prev a:before,
.pagination .next-all a:before,
.pagination .next a:before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 50px;
  height: 50px;
}
.pagination .prev a {
  left: -7px;
  padding-left: 0;
  margin-right: 10px;
}
.pagination .prev a:before {
  background: url(../img/news/icon-pagination-left.png) 0 0 no-repeat;
  background-size: 50px;
}
.pagination .prev-all a:before {
  background: url(../img/news/icon-pagination-left-all.png) 0 0 no-repeat;
  background-size: 50px;
}
.pagination .next a {
  left: 7px;
  padding-right: 0;
  margin-left: 10px;
}
.pagination .next a:before {
  background: url(../img/news/icon-pagination-right.png) 0 0 no-repeat;
  background-size: 50px;
}
.pagination .next-all a:before {
  background: url(../img/news/icon-pagination-right-all.png) 0 0 no-repeat;
  background-size: 50px;
}
.pagination .page-numbers:not(.prev):not(.next) a {
  font-weight: normal;
}
.pagination .page-numbers:not(.prev):not(.next):not(.current) a,
.page-numbers.current span {
  font-size: 16px;
  font-weight: bold;
  color: #d36900;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  position: relative;
  text-decoration: none;
  width: 50px;
  height: 50px;
  padding: 16px 0 0;
  box-sizing: border-box;
  background-color: #fff;
  border: solid 1px #fff;
  display: block;
  border-radius: 50%;
}
.page-numbers.current span {
  color: #fff;
  background-color: #d36900;
  border: solid 1px #d36900;
}
.pagination .prev-all a,
.pagination .next-all a {
  background: none !important;
  padding: 0 !important;
  border: none !important;
}
.pagination .prev-all a::before,
.pagination .next-all a::before {
  top: 0;
}

/* pc
------------------------------------------------------------ */
@media screen and (min-width: 811px) {
  .pagination {
    margin: 0 0 0;
  }
  .pagination .nav-links {
    max-width: 100%;
  }
  .pagination .page-numbers span,
  .pagination .page-numbers:not(.prev):not(.next) a,
  .pagination .page-numbers:not(.prev-all):not(.next-all) a {
    margin: 0 5px;
    display: block;
  }
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .-navigation-wrap {
    padding: 0 0;
  }
  .pagination .page-numbers:not(.prev-all):not(.next-all):not(.prev):not(.next):not(.current) a,
  .pagination .page-numbers a {
    display: none;
  }
  .pagination .prev.page-numbers a,
  .pagination .next.page-numbers a,
  .pagination .prev-all.page-numbers a,
  .pagination .next-all.page-numbers a,
  .pagination .page-numbers.current span {
    display: block;
  }
  .pagination .next {
    margin-right: 15px;
  }
  .pagination .prev {
    margin-left: 15px;
  }
}

/* detail
============================================================ */
.detail-wrap .detail-title {
  padding-bottom: 40px;
  border-bottom: solid 1px #e2cebb;
  margin-bottom: 40px;
}
.detail-wrap .info-detail-title .title {
  font-size: 40px;
  font-weight: normal;
  line-height: 1.4;
  margin-bottom: 15px;
}
.mod-editor a {
  text-decoration: underline;
  color: #d36900;
}
.mod-editor .com-btn-wrap a {
  text-decoration: none;
  color: #fff;
}
.mod-editor a:hover {
  text-decoration: none;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .detail-wrap .info-detail-title .title {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 15px;
  }
  .mod-editor a {
    text-decoration: underline;
  }
  .mod-editor .com-btn-wrap a {
    text-decoration: none;
  }
  .mod-editor a:hover {
    text-decoration: underline;
  }
}

/* hoge
============================================================ */
.hoge {
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .hoge {
  }
}
