@charset "UTF-8";

.content {
  display: none;
}
.content.show {
  display: block;
}
.ttl_wrap {
  position: relative;
}
.ttl_wrap .ttl_txt {
  width: 1100px;
  position: absolute;
  top: 50%;
  bottom: 50%;
  right: 0;
  left: 0;
  margin: -57px auto 0;
  z-index: 1;
}
.ttl_wrap .ttl_txt h1 {
  color: #fff;
  font-size: 40px;
  line-height: 1.4;
  margin-bottom: 10px;
  text-align: center;
}
.ttl_wrap .ttl_txt p {
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}
.ttl_wrap .ttl_bg {
  position: relative;
  width: 100vw;
  height: 400px;
  overflow: hidden;
}
.ttl_wrap .ttl_bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100%;
  object-fit: cover;
}
.notice_list {
  margin-bottom: 60px;
  position: relative;
}
.notice_list::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #ccc;
  display: inline-block;
  position: relative;
  top: -5px;
  left: 0;
}
.notice_list li {
  position: relative;
}
.notice_list li::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #ccc;
  display: inline-block;
  position: relative;
  bottom: 5px;
  left: 0;
}
.notice_list li a {
  font-size: 18px;
  font-weight: bold;
  padding-right: 24px;
  display: flex;
  position: relative;
}
.notice_list li a::before, .notice_list li a::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 10px;
  height: 3px;
  background-color: #FCCB00;
  transform-origin: calc(100% - 2px) 50%;
}
.notice_list li a::before {
  transform: rotate(45deg);
}
.notice_list li a::after {
  transform: rotate(-45deg);
}
.notice_list li a .date {
  margin-right: 30px;
}
.pagination {
  text-align: center;
  margin-bottom: 100px;
}
.pagination .page-numbers {
  color: #FCCB00;
  font-size: 22px;
  font-weight: bold;
  line-height: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #FCCB00;
  text-align: center;
  margin-right: 20px;
  display: inline-block;
}
.pagination .page-numbers.current {
  color: #fff;
  background-color: #FCCB00;
}
.pagination .page-numbers.next {
  border: none;
  width: auto;
  height: auto;
  padding-right: 18px;
  margin: 0;
  position: relative;
}
.pagination .page-numbers.next::before, .pagination .page-numbers.next::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 10px;
  height: 3px;
  background-color: #FCCB00;
  transform-origin: calc(100% - 2px) 50%;
}
.pagination .page-numbers.next::before {
  transform: rotate(45deg);
}
.pagination .page-numbers.next::after {
  transform: rotate(-45deg);
}
.pagination .page-numbers.prev {
  border: none;
  width: auto;
  height: auto;
  padding-left: 24px;
  margin: 0 20px 0 0;
  position: relative;
}
.pagination .page-numbers.prev::before, .pagination .page-numbers.prev::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  width: 10px;
  height: 3px;
  background-color: #FCCB00;
  transform-origin: calc(100% - 2px) 50%;
}
.pagination .page-numbers.prev::before {
  transform: rotate(135deg);
}
.pagination .page-numbers.prev::after {
  transform: rotate(-135deg);
}



/*     SP
------------------------------*/
@media (max-width: 768px) {
  .ttl_wrap .ttl_txt {
    width: auto;
  }
  .contents.width900 {
    width: 100%;
  }
  .notice_list {
    margin: 0 15px 60px;
  }
  .notice_list li a .date {
    font-size: 16px;
  }
  .notice_list li a .news_ttl {
    font-size: 16px;
    line-height: 1.6;
  }
}