@charset "UTF-8";

/* release */
.bg_gray {
  padding-bottom: 5em;
}
.bg_gray .pcInner1200 {
  margin-top: 5em;
}
.bg_gray .category_list {
  display: flex;
  flex-wrap: wrap;
}
.bg_gray .category_list li {
  margin-right: 1.25em;
}
.bg_gray .category_list a {
  line-height: 1;
  padding: .8em 1.8em;
  border-radius: 99px;
  background-color: #fff;
  text-decoration: none;
  display: block;
  transition: .3s;
}
.bg_gray .category_list .current a {
  background-color: var(--red);
  color: #fff;
}
.bg_gray .category_list .category-news {
  color: #F69717;

}
.bg_gray .category_list .category-item {
  color: #F2868B;

}
.bg_gray .category_list .category-ir {
  color: #31ACE9;
}
@media (min-width: 768px) {
  .bg_gray .category_list a:hover {
    background-color: var(--red);
    color: #fff;
  }
}
@media (max-width: 767px) {
  .bg_gray .category_list li:first-child {
    width: 100%;
    margin-bottom: 1.25em;
  }
  .bg_gray .category_list li:first-child a {
    width: max-content;
  }
  .bg_gray .category_list li:last-child {
    margin-right: 0;
  }
}


#news {
  padding-bottom: 1.25em;
}
.news_year_select {
  position: relative;
  width: 260px;
  margin-bottom: 2.5em;
}
.news_year_select .news_year {
  width: 100%;
  height: 50px;
  padding-right: 40px;
  padding-left: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: 1px solid var(--red);
  border-radius: 4px;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  font-size: 16px;
  color: #333;
  display: block;
}
.news_year_select span {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  width: 40px;
  height: 50px;
  border-left: 1px solid var(--red);;
  pointer-events: none;
}
.news_year_select span::before {
  content: "";
  display: block;
  width: .5em;
  height: .5em;
  padding: 0;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0.25em;
  left: 0;
  right: 0;
  margin: auto;
  border-right: 2px solid var(--red);
  border-top: 2px solid var(--red);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  pointer-events: none;
}


#news {
  margin-top: 5em;
}
#news .pcInner1200 {
  margin-top: 0;
}
.news_list {
  margin-bottom: 3.75em;
}
.news_list a {
  position: relative;
  padding-right: 2.5em;
}
.news_list a::before {
  content: "";
  display: block;
  width: 1.3em;
  height: 1.3em;
  background-color: #990500;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border-radius: 50%;
}
.news_list a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.5em;
  width: 0.5em;
  height: 0.5em;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .news_list a {
    display: block;
  }
  .news_list a div {
    min-width: auto;
    margin-bottom: .5em;
  }
  .news_list .news_tag {
    margin: 0 0 0 1em;
  }
}


.page-numbers {
  display: flex;
  justify-content: center;
}
.page-numbers a,
.page-numbers span {
  color: var(--red);
  width: 3em;
  height: 3em;
  border-radius: 5px;
  background-color: #F8F4F5;
  margin: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: .3s;
}
.page-numbers .current {
  background-color: var(--red);
  color: #fff;
}
.page-numbers .prev {
  color: transparent;
  position: relative;
}
.page-numbers .prev::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-bottom: 2px solid #990500;
  border-left: 2px solid #990500;
  transform: rotate(45deg) translate(-50%, -50%);
  position: absolute;
  top: 52%;
  left: 47%;
}
.page-numbers .next {
  color: transparent;
  position: relative;
}
.page-numbers .next::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #990500;
  border-right: 2px solid #990500;
  transform: rotate(45deg) translate(-50%, -50%);
  position: absolute;
  top: 52%;
  left: 41%;
}
@media (min-width: 768px) {
  .page-numbers a:hover {
    background-color: var(--red);
    color: #fff;
  }
  .page-numbers .prev:hover,
  .page-numbers .next:hover {
    color: transparent;
  }
  .page-numbers .prev:hover::before,
  .page-numbers .next:hover::before {
    border-color: #fff;
  }
}
@media (max-width: 767px) {
  .page-numbers a,
  .page-numbers span {
    width: calc(70vw / 9);
  }
}

.release_content {
  background-color: #fff;
  padding: 5em 6.25em;
  margin-bottom: 4em;
}
.release_content h2 {
  font-size: 1.25em;
  letter-spacing: 0;
  margin-bottom: 3.15em;
  padding-bottom: 1.5em;
  border-bottom: 1px solid #D9D9D9;
}
.release_content_text > *:not(:last-child) {
  margin-bottom: 1rem;
}
.release_content_text a {
  font-size: 0.875em;
  color: var(--red);
  word-break: break-all;
  line-height: 1.5;
}
.release_content_text > figure {
  margin-bottom: 0;
}
.release_content_text img {
  max-width: max-content;
}
@media (max-width: 767px) {
  .release_content {
    padding: 3em 1.5em;
  }
  .release_content h2 {
      margin-bottom: 2.1em;
      padding-bottom: 1.2em;
  }
}


.back_btn {
  text-align: center;
}
.back_btn a {
  max-width: 350px;
  width: 100%;
  text-align: left;
  color: #333;
  padding: 1.5em 3em 1.5em 1.5em;
}
.back_btn a::before {
  right: 1em;
}
.back_btn a::after {
  right: 1.5em;
  transition: .3s;
}
@media (min-width: 768px) {
  .back_btn a:hover::after {
    border-color: #fff;
  }
}
@media (max-width: 767px) {
  .back_btn a {
    max-width: inherit;
    width: 90%;
  }
}

.release_content_text .wp-block-heading {
  margin-top: 4rem;
}
.release_content_text h2.wp-block-heading {
  font-size: 1.35em;
  padding-bottom: 0;
  border-bottom: 0;
}
.release_content_text h3.wp-block-heading {
  font-size: 1.25em;
}
.release_content_text h4.wp-block-heading {
  font-size: 1.15em;
}
.release_content_text h5.wp-block-heading {
  border-left: 5px solid #990702;
  padding-left: 1em;
}
.release_content_text h6.wp-block-heading  {
  border-bottom: 1px solid;
}
.release_content_text blockquote {
  background-color: #eee;
  padding: 2rem 4rem;
  margin-top: 2em;
}
.release_content_text ul.wp-block-list {
  list-style: disc;
  padding-left: 2em;
  margin: 2em 0;
}
.release_content_text .wp-block-image {
    margin: 2em auto !important;
}
@media (max-width: 767px) {
  .release_content_text .wp-block-heading {
    margin-top: 3rem;
  }
  .release_content_text blockquote {
    padding: 2rem;
  }
}