@charset "UTF-8";
.page_news {
  width: 100%;
  padding: 230px 0 110px;
  background-color: #088153;
}
@media screen and (max-width: 930px) {
  .page_news {
    padding: 210px 0 110px;
  }
}
.page_news .news_wrap {
  width: calc(100% - 160px);
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 930px) {
  .page_news .news_wrap {
    width: 100%;
    display: block;
  }
}
.page_news .news_wrap .title_left {
  width: 225px;
  position: fixed;
}
@media screen and (max-width: 930px) {
  .page_news .news_wrap .title_left {
    width: 100%;
    position: unset;
  }
}
@media screen and (max-width: 930px) {
  .page_news .news_wrap .title_left .top_title02 {
    text-align: center;
  }
  .page_news .news_wrap .title_left .top_title02 > img {
    display: block;
    margin: 0 auto;
  }
}
.page_news .news_wrap .title_left .top_title02 span {
  display: block;
  font-size: 18px;
  color: #fff;
  margin-top: 24px;
  margin-left: 0;
}
@media screen and (max-width: 930px) {
  .page_news .news_wrap .title_left .top_title02 span {
    font-size: 14px;
    margin-top: 20px;
  }
}
.page_news .news_wrap .title_left .selectwrap {
  position: relative;
  cursor: pointer;
}
.page_news .news_wrap .title_left .selectwrap::after {
  position: absolute;
  top: 30%; /* 矢印の位置 */
  right: 15px; /* 矢印の位置 */
  width: 10px; /* 矢印の大きさ */
  height: 10px; /* 矢印の大きさ */
  border-top: 3px solid #fff; /* 矢印の線 */
  border-right: 3px solid #fff; /* 矢印の線 */
  -webkit-transform: rotate(135deg); /* 矢印の傾き */
  transform: rotate(135deg); /* 矢印の傾き */
  pointer-events: none; /* 矢印部分もクリック可能にする */
  content: "";
}
.page_news .news_wrap .title_left .selectwrap select {
  background: rgba(255, 255, 255, 0.3);
  border: none;
  border-radius: 26px;
  font-size: 16px;
  color: #fff;
  padding: 15px 20px;
  margin-top: 60px;
  width: 100%;
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.page_news .news_wrap .title_left .selectwrap select option {
  color: #000;
}
@media screen and (max-width: 930px) {
  .page_news .news_wrap .title_left .selectwrap {
    width: 60%;
    margin: 60px auto 65px;
  }
}
.page_news .news_wrap .title_left .btn {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(255, 255, 255, 0.3);
  margin-top: 50px;
}
@media screen and (max-width: 930px) {
  .page_news .news_wrap .title_left .btn {
    width: 330px;
    max-width: 90%;
    position: relative;
    margin: 50px auto 0;
    display: none;
  }
  .page_news .news_wrap .title_left .btn:after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
}
.page_news .news_wrap .title_left .btn span {
  font-size: 16px;
  color: #fff;
  margin: auto;
}
.page_news .news_wrap .news_right {
  width: calc(100% - 315px);
  margin: 0 0 0 auto;
}
@media screen and (max-width: 930px) {
  .page_news .news_wrap .news_right {
    width: 85%;
    margin: 0 auto;
  }
}
.page_news .news_wrap .news_right .news_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  list-style-type: none;
}
@media screen and (max-width: 930px) {
  .page_news .news_wrap .news_right .news_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.page_news .news_wrap .news_right .news_list li {
  width: calc(33.3% - 26.66px);
  margin-right: 40px;
  margin-bottom: 70px;
}
@media screen and (max-width: 930px) {
  .page_news .news_wrap .news_right .news_list li {
    width: 100%;
    margin-right: 0;
  }
}
.page_news .news_wrap .news_right .news_list li:nth-child(3n) {
  margin-right: 0;
}
.page_news .news_wrap .news_right .news_list li .link_small .imgbox {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: block;
}
.page_news .news_wrap .news_right .news_list li .link_small .imgbox::after {
  content: "";
  height: 0;
  padding-top: 75%;
  display: block;
}
.page_news .news_wrap .news_right .news_list li .link_small .imgbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: none;
          animation: none;
  -webkit-transition: -webkit-transform 0.75s;
  transition: -webkit-transform 0.75s;
  transition: transform 0.75s;
  transition: transform 0.75s, -webkit-transform 0.75s;
}
.page_news .news_wrap .news_right .news_list li .link_small:hover {
  opacity: 1;
}
.page_news .news_wrap .news_right .news_list li .link_small:hover * {
  opacity: 1;
}
.page_news .news_wrap .news_right .news_list li .link_small:hover .imgbox img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.page_news .news_wrap .news_right .news_list li .link_small .text_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px;
}
.page_news .news_wrap .news_right .news_list li .link_small .text_top .text01 {
  font-size: 14px;
  font-style: italic;
  color: #fff;
}
.page_news .news_wrap .news_right .news_list li .link_small .text_top .cat {
  height: 22px;
  background-color: #fff;
  margin-left: auto;
  padding: 0 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page_news .news_wrap .news_right .news_list li .link_small .text_top .cat span {
  font-size: 12px;
  color: #088153;
  margin: auto;
}
.page_news .news_wrap .news_right .news_list li .link_small .text02 {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #fff;
  margin-top: 12px;
}
.page_news .news_wrap .news_right .custom-pagination {
  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;
  padding: 10px 0;
}
.page_news .news_wrap .news_right .custom-pagination a,
.page_news .news_wrap .news_right .custom-pagination span {
  margin: 0 5px;
  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;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: #088153; /* Change as needed */
  color: #fff; /* Change as needed */
  text-decoration: none;
  font-size: 24px;
  font-family: "Open Sans", sans-serif;
  font-style: italic;
}
.page_news .news_wrap .news_right .custom-pagination a:hover {
  opacity: 0.7;
}
.page_news .news_wrap .news_right .custom-pagination .current {
  background-color: #fff;
  color: #088153;
}
.page_news .news_wrap .news_right .custom-pagination a.prev,
.page_news .news_wrap .news_right .custom-pagination a.next {
  background-color: transparent;
  border: none;
  color: #fff;
  font-weight: bold;
  font-size: 26px;
  font-style: normal;
}
.page_news .news_wrap .news_right .custom-pagination a.prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 930px) {
  .page_news .news_wrap .news_right .custom-pagination a,
  .page_news .news_wrap .news_right .custom-pagination span {
    width: 31px;
    height: 31px;
    font-size: 17px;
  }
  .page_news .news_wrap .news_right .custom-pagination a img,
  .page_news .news_wrap .news_right .custom-pagination span img {
    width: 60%;
  }
}
.page_news .news_wrap .news_content {
  background: #fff;
  padding: 6%;
  width: calc(100% - 315px);
  margin: 0 0 0 auto;
}
.page_news .news_wrap .news_content .ttl {
  font-size: 24px;
  font-weight: bold;
  color: #088153;
  line-height: 1.6;
}
.page_news .news_wrap .news_content .text_data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0 30px;
}
.page_news .news_wrap .news_content .text_data .text01 {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 16px;
  color: #088153;
}
.page_news .news_wrap .news_content .text_data .cat {
  height: 22px;
  background-color: #088153;
  margin-left: 15px;
  padding: 0 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page_news .news_wrap .news_content .text_data .cat span {
  font-size: 12px;
  color: #fff;
  margin: auto;
}
.page_news .news_wrap .news_content .btn {
  display: none;
}
@media screen and (max-width: 930px) {
  .page_news .news_wrap .news_content .btn {
    width: 330px;
    max-width: 65%;
    height: 50px;
    border-radius: 25px;
    background-color: #088153;
    position: relative;
    margin: 50px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page_news .news_wrap .news_content .btn:after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
  .page_news .news_wrap .news_content .btn span {
    font-size: 16px;
    color: #fff;
    margin: auto;
  }
}
.page_news .news_wrap .news_content .content p {
  font-size: 16px;
  line-height: 2.4;
}
.page_news .news_wrap .news_content .content a {
  color: #24497b;
  text-decoration: underline;
}
.page_news .news_wrap .news_content .content img {
  width: 100%;
}
.page_news .news_wrap .news_content .content figcaption {
  text-align: center;
}
.page_news .news_wrap .news_content .content strong {
  font-weight: bold;
}
.page_news .news_wrap .news_content .content .link_list {
  list-style: disc;
  padding-left: 6%;
}
.page_news .news_wrap .news_content .content .link_list li {
  margin-bottom: 30px;
}
.page_news .news_wrap .news_content .content .link_list li a {
  color: #24497b;
  text-decoration: underline;
}
.page_news .news_wrap .news_content .content .link_list li .link_list_min {
  list-style: disc;
  margin-top: 20px;
  margin-left: 20px;
}
.page_news .news_wrap .news_content .content ul {
  list-style-type: disc;
  margin-top: 20px;
  padding-left: 25px;
}
.page_news .news_wrap .news_content .content ul li {
  margin-bottom: 15px;
}
.page_news .news_wrap .news_content .content ul ul {
  list-style-type: circle;
  margin-top: 15px;
}
.page_news .news_wrap .news_content .content ol {
  list-style-type: decimal;
  margin-top: 20px;
  padding-left: 25px;
}
.page_news .news_wrap .news_content .content ol li {
  margin-bottom: 15px;
}
@media screen and (max-width: 930px) {
  .page_news .news_wrap .news_content {
    width: 90%;
    margin: 0 auto;
    padding: 10% 6%;
  }
  .page_news .news_wrap .news_content .ttl {
    font-size: 18px;
  }
  .page_news .news_wrap .news_content .text_data {
    margin: 20px 0 30px;
  }
  .page_news .news_wrap .news_content .text_data .text01 {
    font-size: 12px;
  }
  .page_news .news_wrap .news_content .text_data .cat {
    height: 20px;
    padding: 0 6px;
  }
  .page_news .news_wrap .news_content .text_data .cat span {
    font-size: 11px;
  }
  .page_news .news_wrap .news_content .content p {
    font-size: 14px;
  }
}
.page_news.page_news_single {
  padding: 190px 0 160px;
}
@media screen and (max-width: 930px) {
  .page_news.page_news_single {
    padding: 110px 0 110px;
  }
}/*# sourceMappingURL=style_news.css.map */