@charset "UTF-8";
/* ------------------------------
	レスポンシブ
------------------------------ */
/* ------------------------------
	フォント
------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Wix+Madefor+Text:ital,wght@0,400..800;1,400..800&display=swap");
/* ------------------------------
	カラー
------------------------------ */
/* ------------------------------
	.news
------------------------------ */
.news {
  padding: 50px 0 150px;
}
@media screen and (max-width: 768px) {
  .news {
    padding: 20px 0 60px;
  }
}
.news .news_nav {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .news .news_nav {
    margin-bottom: 40px;
  }
}
.news .news_nav .outer {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (min-width: 769px) {
  .news .news_nav .outer::before {
    position: absolute;
    bottom: 18px;
    left: 0;
    margin: auto;
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background: #99A7B2;
  }
}
.news .news_nav .news_nav_box {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1000px) {
  .news .news_nav .news_nav_box {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .news .news_nav .news_nav_box {
    gap: 3px;
  }
}
@media screen and (max-width: 768px) {
  .news .news_nav .left_box {
    display: flex;
    gap: 15px;
  }
}
@media screen and (max-width: 370px) {
  .news .news_nav .left_box {
    gap: 10px;
  }
}
@media screen and (max-width: 350px) {
  .news .news_nav .left_box {
    gap: 5px;
  }
}
.news .news_nav .news_nav_btn {
  display: flex;
  align-items: center;
  background: #fff;
}
.news .news_nav .news_nav_btn .news_nav_btn_txt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 195px;
  height: 40px;
  color: #666;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media screen and (max-width: 1000px) {
  .news .news_nav .news_nav_btn .news_nav_btn_txt {
    width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .news .news_nav .news_nav_btn .news_nav_btn_txt {
    width: 56px;
    height: 30px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 340px) {
  .news .news_nav .news_nav_btn .news_nav_btn_txt {
    width: 50px;
  }
}
@media screen and (min-width: 769px) {
  .news .news_nav .news_nav_btn .news_nav_btn_txt:hover {
    opacity: 0.7;
  }
}
.news .news_nav .news_nav_btn [type=checkbox] {
  margin: 0;
}
.news .news_nav .news_nav_btn.blue .news_nav_btn_txt {
  background: #BFDDF0;
}
.news .news_nav .news_nav_btn.blue [type=checkbox]:checked + .news_nav_btn_txt {
  background: #0077C3;
  color: #fff;
}
.news .news_nav .news_nav_btn.green .news_nav_btn_txt {
  background: #E6ECCC;
}
.news .news_nav .news_nav_btn.green [type=checkbox]:checked + .news_nav_btn_txt {
  background: #9BB533;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .news .news_nav .news_nav_btn.sky {
    margin-bottom: 25px;
  }
}
.news .news_nav .news_nav_btn.sky .news_nav_btn_txt {
  background: #BBE8F0;
}
.news .news_nav .news_nav_btn.sky.active .news_nav_btn_txt {
  background: #15B9D4;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .news .news_nav .news_nav_btn.sky .news_nav_btn_txt {
    width: 69px;
  }
}
@media screen and (max-width: 340px) {
  .news .news_nav .news_nav_btn.sky .news_nav_btn_txt {
    width: 50px;
  }
}
.news .news_nav .archive {
  position: relative;
  z-index: 1000;
}
.news .news_nav .archive .archive_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 247px;
  height: 40px;
  background: #F6F6F6;
  border: 1px solid #ddd;
  cursor: pointer;
}
@media screen and (max-width: 900px) {
  .news .news_nav .archive .archive_btn {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .news .news_nav .archive .archive_btn {
    width: 107px;
    height: 30px;
    padding-right: 15px;
    font-size: 1.2rem;
  }
}
.news .news_nav .archive .archive_btn::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 12px solid #99A7B2;
}
@media screen and (max-width: 768px) {
  .news .news_nav .archive .archive_btn::before {
    right: 8px;
  }
}
.news .news_nav .archive .archive_btn.open::before {
  transform: rotate(180deg);
}
.news .news_nav .archive .archive_list {
  position: absolute;
  top: 40px;
  left: 0;
  display: none;
  width: 100%;
  padding: 10px 20px;
  background: #F6F6F6;
  border: 1px solid #ddd;
}
@media screen and (max-width: 768px) {
  .news .news_nav .archive .archive_list {
    top: 30px;
    padding: 5px 5px;
  }
}
.news .news_nav .archive .archive_list .archive_item + .archive_item {
  border-top: 1px dashed #99A7B2;
}
.news .news_nav .archive .archive_list .archive_item a {
  display: block;
  padding: 10px 0;
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .news .news_nav .archive .archive_list .archive_item a {
    padding: 8px 0;
    font-size: 1.2rem;
  }
}
.news .news_nav .archive .archive_list .archive_item.current a {
  background: url(../img/common/ico_check02.svg) no-repeat 5px center;
}
@media screen and (max-width: 768px) {
  .news .news_nav .archive .archive_list .archive_item.current a {
    background-size: 13px;
    background-position: left center;
  }
}
.news .news_list .news_item {
  border-bottom: 1px solid #ddd;
}
.news .news_list .news_item:first-child {
  border-top: 1px solid #ddd;
}
.news .news_list .news_item a {
  display: flex;
  align-items: center;
  min-height: 66px;
  padding: 10px 60px 10px 0;
  background: url(../img/common/ico_arw01.svg) no-repeat;
  background-position: calc(100% - 18px) center;
}
@media screen and (max-width: 768px) {
  .news .news_list .news_item a {
    display: block;
    height: auto;
    padding: 15px 40px 15px 0;
    background-position: calc(100% - 10px) center;
  }
}
.news .news_list .news_item .date_box {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 295px;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .news .news_list .news_item .date_box {
    justify-content: flex-start;
    width: 100%;
    margin: 0 0 12px;
  }
}
.news .news_list .news_item .date_box .date {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .news .news_list .news_item .date_box .date {
    order: 2;
    font-size: 1.2rem;
  }
}
.news .news_list .news_item .date_box .cate {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 30px;
  font-size: 1.4rem;
  line-height: 1.3;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .news .news_list .news_item .date_box .cate {
    order: 1;
    width: 80px;
    height: 18px;
    margin-right: 13px;
    font-size: 1rem;
  }
}
.news .news_list .news_item .date_box .cate.green {
  background: #9BB533;
}
.news .news_list .news_item .date_box .cate.blue {
  background: #0077C3;
}
.news .news_list .news_item .news_ttl {
  max-width: 660px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.4rem;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .news .news_list .news_item .news_ttl {
    max-width: 100%;
    -webkit-line-clamp: 3;
    line-height: 1.5;
  }
}
.news .news_list .news_item.pdf_link .ttl_box {
  display: flex;
  align-items: flex-end;
}
.news .news_list .news_item.pdf_link .ttl_box::after {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 13px;
  height: 20px;
  margin-left: 10px;
  background: url(../img/common/ico_pdf.png) no-repeat center center;
}
.news .news_list .news_item.no_detail {
  pointer-events: none;
}
.news .news_list .news_item.no_detail * {
  pointer-events: none;
}
.news .news_list .news_item.no_detail a {
  background: none;
  padding-right: 0;
}
.news .news_list .news_item.no_detail .news_ttl {
  display: block;
  overflow: visible;
  max-width: 100%;
}

/* ------------------------------
	.news_details
------------------------------ */
.news_details {
  padding: 30px 0 150px;
}
@media screen and (max-width: 768px) {
  .news_details {
    padding: 25px 0 60px;
  }
}
.news_details .wrap {
  max-width: 730px;
}
@media screen and (max-width: 768px) {
  .news_details .wrap {
    max-width: 100%;
  }
}
.news_details .news_head {
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .news_details .news_head {
    padding-bottom: 25px;
  }
}
.news_details .news_head .news_ttl {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.5;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .news_details .news_head .news_ttl {
    font-size: 2rem;
  }
}
.news_details .news_head .news_ttl .tx01 {
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .news_details .news_head .news_ttl .tx01 {
    font-size: 1.8rem;
  }
}
.news_details .news_head .date {
  margin-top: 40px;
  text-align: right;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .news_details .news_head .date {
    margin-top: 15px;
    font-size: 1rem;
  }
}
.news_details .news_head .main_img {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .news_details .news_head .main_img {
    margin-top: 20px;
  }
}
.news_details .news_btm {
  position: relative;
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .news_details .news_btm {
    margin-top: 60px;
  }
}
.news_details .news_btm .btn a {
  font-weight: 900;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .news_details .news_btm .btn a {
    width: 160px;
    max-width: 45%;
  }
}
.news_details .news_btm .prev_btn,
.news_details .news_btm .next_btn {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
}
.news_details .news_btm .prev_btn a,
.news_details .news_btm .next_btn a {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 900;
}
.news_details .news_btm .prev_btn .arw,
.news_details .news_btm .next_btn .arw {
  width: 19px;
  height: 19px;
  background: url(../img/common/ico_arw01.svg) no-repeat right center;
}
.news_details .news_btm .prev_btn {
  left: 0;
  padding-left: 15px;
}
@media screen and (max-width: 768px) {
  .news_details .news_btm .prev_btn {
    left: -2vw;
    padding-left: 0;
  }
}
.news_details .news_btm .prev_btn .arw {
  margin-right: 14px;
  transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  .news_details .news_btm .prev_btn .arw {
    margin-right: 0;
  }
}
.news_details .news_btm .next_btn {
  right: 0;
  padding-right: 15px;
}
@media screen and (max-width: 768px) {
  .news_details .news_btm .next_btn {
    right: -2vw;
    padding-right: 0;
  }
}
.news_details .news_btm .next_btn .arw {
  margin-left: 14px;
}
@media screen and (max-width: 768px) {
  .news_details .news_btm .next_btn .arw {
    margin-left: 0;
  }
}

/* ------------------------------
	.wp
------------------------------ */
.details_txt {
  overflow: hidden;
}
.details_txt > *:first-child,
.details_txt > *:first-child *:first-child {
  margin-top: 0 !important;
}
.details_txt > *:last-child,
.details_txt > *:last-child *:last-child {
  margin-bottom: 0 !important;
}
.details_txt > * {
  position: relative;
  max-width: 100%;
}
.details_txt * {
  font-size: 1.6rem;
  line-height: 1.8;
  word-break: break-all;
  word-break: break-word;
}
.details_txt h1,
.details_txt h2,
.details_txt h3,
.details_txt h4,
.details_txt h5,
.details_txt h6 {
  position: relative;
  line-height: 1.5;
  font-weight: bold;
}
.details_txt h1,
.details_txt h2 {
  padding-bottom: 15px;
  font-size: 2.4rem;
  border-bottom: 5px solid #0077C3;
}
.details_txt h3 {
  padding-left: 12px;
  border-left: 11px solid #0077C3;
  font-size: 2rem;
}
.details_txt h4 {
  font-size: 2rem;
}
.details_txt h5 {
  font-size: 1.6rem;
}
.details_txt h6 {
  font-size: 1.6rem;
}
.details_txt a {
  font-size: inherit;
  line-height: inherit;
  color: #0077C3;
}
.details_txt span,
.details_txt strong,
.details_txt em,
.details_txt b {
  font-size: inherit;
  line-height: inherit;
}
.details_txt > *,
.details_txt > * p + p {
  margin-top: 60px;
}
.details_txt > p + p {
  margin-top: 20px;
}
.details_txt h1 + *,
.details_txt h2 + * {
  margin-top: 30px;
}
.details_txt h3 + *,
.details_txt h4 + *,
.details_txt h5 + *,
.details_txt h6 + * {
  margin-top: 15px;
}
.details_txt .wp-caption-text,
.details_txt figcaption,
.details_txt caption {
  display: block;
  margin-bottom: 0 !important;
  margin-top: 1em;
  font-size: 1.4rem;
}
.details_txt figure {
  display: table;
}
.details_txt figure figcaption {
  display: table-caption;
  caption-side: bottom;
}
.details_txt .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.details_txt .alignright {
  float: right;
  margin-left: 25px;
  padding-bottom: 0.3em;
  overflow: hidden;
}
.details_txt .alignleft {
  float: left;
  margin-right: 25px;
  padding-bottom: 0.3em;
  overflow: hidden;
}
.details_txt p::after {
  content: "";
  clear: both;
}
.details_txt > *:first-child.alignright + p,
.details_txt > *:first-child.alignleft + p {
  margin-top: 0;
}
.details_txt .alignleft + .aligncenter,
.details_txt .alignright + .aligncenter {
  padding-top: 28px;
}
.details_txt ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.details_txt ul li::before {
  content: "・";
}
.details_txt ol {
  padding-left: 25px;
}
.details_txt ol {
  counter-reset: ol_num;
}
.details_txt ol li {
  position: relative;
}
.details_txt ol li:before {
  position: absolute;
  top: 0;
  left: -25px;
  counter-increment: ol_num;
  content: counter(ol_num) ".";
}
.details_txt li + li {
  margin-top: 2px;
}
.details_txt blockquote {
  padding: 30px 30px;
  border: 1px solid #99A7B2;
}
.details_txt blockquote::before, .details_txt blockquote::after {
  position: absolute;
  z-index: 2;
  display: block;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  pointer-events: none;
}
.details_txt blockquote::before {
  top: 10px;
  left: 20px;
  content: "“";
}
.details_txt blockquote::after {
  bottom: -10px;
  right: 20px;
  content: "”";
}
.details_txt table {
  width: 100%;
}
.details_txt thead {
  border: 0;
}
.details_txt th,
.details_txt td {
  padding: 1.5rem 2rem;
  border-left: 1px solid #99A7B2;
  border-bottom: 1px solid #99A7B2;
  border-color: #99A7B2;
  line-height: 1.3;
  background: #fff;
}
.details_txt th {
  background: #BFDDF0;
  font-weight: bold;
}
.details_txt tr > *:last-child {
  border-right: 1px solid #99A7B2;
}
.details_txt tr:first-child > * {
  border-top: 1px solid #99A7B2;
}
.details_txt iframe {
  display: block;
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.details_txt .is-type-video,
.details_txt .is-provider-youtube,
.details_txt .wp-block-embed-youtube {
  width: 100%;
}
.details_txt .wp-block-embed-youtube.alignleft, .details_txt .wp-block-embed-youtube.alignright {
  max-width: 100%;
}
.details_txt hr {
  background-color: #99A7B2;
  border: 0;
  height: 1px;
}
@media screen and (max-width: 768px) {
  .details_txt .alignright,
  .details_txt .alignleft {
    float: none;
    display: block;
    text-align: center;
    margin: 30px auto 0;
    padding: 0;
  }
  .details_txt .alignleft + .aligncenter,
  .details_txt .alignright + .aligncenter {
    padding-top: 0;
  }
  .details_txt .aligncenter figcaption,
  .details_txt .alignleft figcaption,
  .details_txt .alignright figcaption {
    display: block;
    margin-bottom: 0;
  }
  .details_txt .alignnone {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .details_txt * {
    font-size: 1.4rem;
  }
  .details_txt > *,
  .details_txt > * p + p {
    margin-top: 40px;
  }
  .details_txt > p + p {
    margin-top: 15px;
  }
  .details_txt h1 + *,
  .details_txt h2 + * {
    margin-top: 20px;
  }
  .details_txt h3 + *,
  .details_txt h4 + *,
  .details_txt h5 + *,
  .details_txt h6 + * {
    margin-top: 15px;
  }
  .details_txt h1,
  .details_txt h2 {
    padding-bottom: 10px;
    font-size: 1.8rem;
  }
  .details_txt h3 {
    padding-left: 10px;
    border-width: 8px;
    font-size: 1.8rem;
  }
  .details_txt h4 {
    font-size: 1.6rem;
  }
  .details_txt h5 {
    font-size: 1.4rem;
  }
  .details_txt h6 {
    font-size: 1.4rem;
  }
  .details_txt .wp-caption-text,
  .details_txt figcaption,
  .details_txt caption {
    font-size: 1.2rem;
  }
  .details_txt th,
  .details_txt td {
    padding: 5px 10px;
  }
  .details_txt blockquote {
    padding: 20px;
  }
  .details_txt blockquote::before, .details_txt blockquote::after {
    font-size: 2rem;
  }
  .details_txt blockquote::before {
    top: 10px;
    left: 0.5rem;
    content: "“";
  }
  .details_txt blockquote::after {
    bottom: 0;
    right: 0.5rem;
    content: "”";
  }
  .details_txt .is-style-columns_info_box .wp-block-column:nth-child(1) {
    order: 2;
  }
  .details_txt .is-style-columns_info_box .wp-block-column:nth-child(2) {
    order: 1;
  }
}