@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600&family=Roboto:wght@400;500;700&display=swap");
/* ===============================================
  お知らせ
=============================================== */
.news_list .container.cf {
  padding-top: 50px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .news_list .container.cf {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.news_item {
  position: relative;
}
.news_item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(to right, #009EE7 100px, #C6C6C6 100px);
}
@media screen and (min-width: 769px) {
  .news_item::after {
    background: linear-gradient(to right, #009EE7 150px, #C6C6C6 150px);
  }
}
.news_item:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, #009EE7 100px, #C6C6C6 100px);
}
@media screen and (min-width: 769px) {
  .news_item:first-child::before {
    background: linear-gradient(to right, #009EE7 150px, #C6C6C6 150px);
  }
}

.news_item_inner {
  padding: 30px 0;
}
@media screen and (min-width: 769px) {
  .news_item_inner {
    display: grid;
    grid-template-columns: 120px 1fr;
    column-gap: 40px;
    align-items: start;
    padding: 35px 0;
  }
}

.news_item_inner time {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  .news_item_inner time {
    margin-bottom: 0;
    grid-column: 1;
    grid-row: 1;
    font-size: 16px;
  }
}

@media screen and (min-width: 769px) {
  .news_item_content {
    grid-column: 2;
    grid-row: 1;
  }
}

.news_item_ttl {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  .news_item_ttl {
    margin-bottom: 20px;
    font-size: 20px;
  }
}

.news_item_body {
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .news_item_body {
    line-height: 2;
  }
}
.news_item_body p + p {
  margin-top: 1em;
}
.news_item_body a {
  text-decoration: underline;
  color: inherit;
}
@media (hover: hover) {
  .news_item_body a:hover {
    opacity: 0.6;
    text-decoration: none;
  }
}

.news_label_block {
  margin-top: 2em;
}
.news_label_block + .news_label_block {
  margin-top: 2.5em;
}

.news_label_compare {
  display: flex;
  flex-direction: column;
  gap: 2em;
  margin: 1em 0 1.25em;
}
@media screen and (min-width: 769px) {
  .news_label_compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 24px;
    row-gap: 0.75em;
    align-items: start;
    margin: 1.25em 0 1.5em;
  }
}

.news_label_compare_col {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}
@media screen and (min-width: 769px) {
  .news_label_compare_col {
    display: contents;
  }
}

.news_label_compare_heading {
  font-size: inherit;
  line-height: 1.6;
  font-weight: bold;
  margin: 0;
}

.news_label_note {
  margin: 0;
  font-size: 13px;
  font-weight: normal;
}
@media screen and (min-width: 769px) {
  .news_label_note {
    font-size: 14px;
  }
}

.news_label_red {
  color: #c41e3a;
  font-weight: 700;
}

.news_label_compare_col figure {
  margin: 0;
}
.news_label_compare_col figure img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 769px) {
  .news_label_compare_col figure {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    min-height: 0;
  }
  .news_label_compare_col figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .news_label_compare_col:first-child > .news_label_compare_heading {
    grid-column: 1;
    grid-row: 1;
  }
  .news_label_compare_col:last-child > .news_label_compare_heading {
    grid-column: 2;
    grid-row: 1;
  }
  .news_label_compare_col:last-child > .news_label_note {
    grid-column: 2;
    grid-row: 2;
  }
  .news_label_compare_col:first-child > figure {
    grid-column: 1;
    grid-row: 3;
  }
  .news_label_compare_col:last-child > figure {
    grid-column: 2;
    grid-row: 3;
  }
}

.news_page .back_top_btn {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .news_page .back_top_btn {
    margin-top: 40px;
  }
}
.news_page .back_top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: min(100%, 290px);
  height: 60px;
  border: 1px solid #707070;
  background: #fff;
  color: #333;
}
@media screen and (max-width: 768px) {
  .news_page .back_top {
    width: 100%;
    max-width: none;
    font-size: 16px;
  }
}
.news_page .back_top::after {
  content: "";
  display: inline-block;
  width: 19px;
  height: 6px;
  border-style: solid;
  border-color: #000;
  border-width: 0 0 1px 1px;
  transform: translateY(-50%) skew(-45deg);
  position: absolute;
  top: 50%;
  left: 20px;
}
