@charset "UTF-8";
/* ===================================
共通
=================================== */
.all_area_wrap {
  margin-top: 80px;
  padding: 0 20px 95px;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 800px) {
  .all_area_wrap {
    margin-top: 30px;
  }
}
.all_area_wrap .all_area {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  max-width: 1240px;
  margin: auto;
}
@media screen and (max-width: 800px) {
  .all_area_wrap .all_area {
    flex-direction: column;
    gap: 40px;
  }
}
.all_area_wrap .all_area .left_area {
  max-width: 880px;
  width: 100%;
}
.all_area_wrap .all_area .right_area {
  flex-shrink: 0;
  width: 280px;
}
@media screen and (max-width: 1024px) {
  .all_area_wrap .all_area .right_area {
    width: 250px;
  }
}
@media screen and (max-width: 800px) {
  .all_area_wrap .all_area .right_area {
    width: 100%;
  }
}

.side_area {
  width: 100%;
}
.side_area li {
  margin-bottom: 18px;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 1024px) {
  .side_area li {
    margin-bottom: 10px;
  }
}
.side_area li a {
  display: block;
  background-image: url(../img/archive_news/icon-arrow.svg);
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center right 20px;
  margin-left: 20px;
  padding: 11px 0;
  transition: 0.3s;
}
@media (hover: hover) {
  .side_area li a:hover {
    background-image: url(../img/archive_news/icon-arrow_hover.svg);
    color: #E03837;
  }
}
.side_area li a::before {
  content: "#";
}
.side_area li a.txt_none::before {
  content: none;
}
.side_area li.current-cat a {
  background-image: url(../img/archive_news/icon-arrow_hover.svg);
  color: #E03837;
}

/* ===================================
ニュース記事一覧 
=================================== */
.news_list {
  width: 100%;
}
.news_list > li {
  border-bottom: 1px solid #D8D5CF;
}
.news_list > li a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0;
  transition: 0.3s;
}
@media (hover: hover) {
  .news_list > li a:hover {
    color: #E03837;
  }
}
@media screen and (max-width: 767px) {
  .news_list > li a {
    flex-direction: column;
    gap: 5px;
    padding: 20px 0;
  }
}

.news_left_box {
  display: flex;
  gap: 30px;
  flex-shrink: 0;
  width: 240px;
}
@media screen and (max-width: 1024px) {
  .news_left_box {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .news_left_box {
    width: 100%;
  }
}
.news_left_box .date_name {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7em;
  transition: 0.3s;
}
.news_left_box .c_cat_list li {
  color: #746F6A;
  font-size: 12px;
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.04em;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .news_left_box .c_cat_list li {
    display: inline-block;
    margin-right: 10px;
  }
}

.news_right_box {
  width: 100%;
}
.news_right_box .title_name {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6em;
  letter-spacing: 0.04em;
  transition: 0.3s;
}

@media (hover: hover) {
  .news_list > li a:hover .news_left_box .date_name {
    color: #E03837;
  }
  .news_list > li a:hover .news_left_box .c_cat_list li {
    color: #E03837;
  }
  .news_list > li a:hover .news_right_box .title_name {
    color: #E03837;
  }
}

.archive-pager {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-top: 75px;
}
.archive-pager .nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.archive-pager .nav-links .page-numbers {
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.04em;
  text-decoration: underline;
  transition: 0.3s;
}
.archive-pager .nav-links .page-numbers.current, .archive-pager .nav-links .page-numbers.dots {
  pointer-events: none;
  text-decoration: none;
}
.archive-pager .nav-links .page-numbers.current {
  font-weight: 500;
}
.archive-pager .nav-links .page-numbers.prev, .archive-pager .nav-links .page-numbers.next {
  position: relative;
  flex-shrink: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding: 10px;
}
.archive-pager .nav-links .page-numbers.prev::before, .archive-pager .nav-links .page-numbers.next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transition: 0.3s;
}
.archive-pager .nav-links .page-numbers.prev {
  margin-right: 5px;
}
.archive-pager .nav-links .page-numbers.prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}
@media (hover: hover) {
  .archive-pager .nav-links .page-numbers.prev:hover::before {
    border-top: 1px solid #E03837;
    border-right: 1px solid #E03837;
  }
}
.archive-pager .nav-links .page-numbers.next {
  margin-left: 5px;
}
.archive-pager .nav-links .page-numbers.next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
@media (hover: hover) {
  .archive-pager .nav-links .page-numbers.next:hover::before {
    border-top: 1px solid #E03837;
    border-right: 1px solid #E03837;
  }
}
@media (hover: hover) {
  .archive-pager .nav-links .page-numbers:hover {
    color: #E03837;
  }
}

/* ===================================
お知らせ 詳細
=================================== */
.bread_area.single_cont {
  margin-top: 104px;
}
@media screen and (max-width: 1024px) {
  .bread_area.single_cont {
    margin-top: 80px;
  }
}

.s_news_ttl {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .s_news_ttl {
    font-size: 24px;
  }
}

.s_c_cat_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 40px;
}
.s_c_cat_list li {
  display: block;
  margin-right: 7px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6em;
  letter-spacing: 0.04em;
}

.s_news_content {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .s_news_content {
    margin-top: 50px;
  }
}
.s_news_content img {
  width: auto;
  margin-top: 40px;
}
.s_news_content h2 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  background-color: #333;
}
@media screen and (max-width: 767px) {
  .s_news_content h2 {
    font-size: 22px;
  }
}
.s_news_content h2 + h2,
.s_news_content h3 + h2,
.s_news_content h4 + h2,
.s_news_content h5 + h2,
.s_news_content p + h2,
.s_news_content figure + h2,
.s_news_content ul + h2 {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .s_news_content h2 + h2,
  .s_news_content h3 + h2,
  .s_news_content h4 + h2,
  .s_news_content h5 + h2,
  .s_news_content p + h2,
  .s_news_content figure + h2,
  .s_news_content ul + h2 {
    margin-top: 50px;
  }
}
.s_news_content h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.04em;
  border-left: 5px solid #333;
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .s_news_content h3 {
    font-size: 20px;
  }
}
.s_news_content h2 + h3,
.s_news_content h3 + h3,
.s_news_content h4 + h3,
.s_news_content h5 + h3,
.s_news_content p + h3,
.s_news_content figure + h3,
.s_news_content ul + h3 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .s_news_content h2 + h3,
  .s_news_content h3 + h3,
  .s_news_content h4 + h3,
  .s_news_content h5 + h3,
  .s_news_content p + h3,
  .s_news_content figure + h3,
  .s_news_content ul + h3 {
    margin-top: 30px;
  }
}
.s_news_content h4 {
  display: flex;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.04em;
}
.s_news_content h4::before {
  content: "";
  display: block;
  flex-shrink: 0;
  margin-top: 15px;
  width: 60px;
  height: 1px;
  background-color: #333;
}
@media screen and (max-width: 767px) {
  .s_news_content h4 {
    font-size: 18px;
  }
  .s_news_content h4::before {
    width: 30px;
  }
}
.s_news_content h2 + h4,
.s_news_content h3 + h4,
.s_news_content h4 + h4,
.s_news_content h5 + h4,
.s_news_content p + h4,
.s_news_content figure + h4,
.s_news_content ul + h4 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .s_news_content h2 + h4,
  .s_news_content h3 + h4,
  .s_news_content h4 + h4,
  .s_news_content h5 + h4,
  .s_news_content p + h4,
  .s_news_content figure + h4,
  .s_news_content ul + h4 {
    margin-top: 30px;
  }
}
.s_news_content h5 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4em;
  letter-spacing: 0.04em;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .s_news_content h5 {
    font-size: 16px;
    line-height: 1.5em;
  }
}
.s_news_content h2 + h5,
.s_news_content h3 + h5,
.s_news_content h4 + h5,
.s_news_content h5 + h5,
.s_news_content p + h5,
.s_news_content figure + h5,
.s_news_content ul + h5 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .s_news_content h2 + h5,
  .s_news_content h3 + h5,
  .s_news_content h4 + h5,
  .s_news_content h5 + h5,
  .s_news_content p + h5,
  .s_news_content figure + h5,
  .s_news_content ul + h5 {
    margin-top: 30px;
  }
}
.s_news_content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8em;
  letter-spacing: 0.04em;
}
.s_news_content p mark {
  font-weight: 700;
  background: linear-gradient(0deg, rgb(246, 209, 201) 30%, rgba(246, 209, 201, 0) 30%);
}
.s_news_content p strong {
  font-weight: 700;
}
.s_news_content p a {
  color: #E03837;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .s_news_content p {
    font-size: 16px;
  }
}
.s_news_content h2 + p,
.s_news_content h3 + p,
.s_news_content h4 + p,
.s_news_content h5 + p,
.s_news_content p + p,
.s_news_content figure + p,
.s_news_content ul + p {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .s_news_content h2 + p,
  .s_news_content h3 + p,
  .s_news_content h4 + p,
  .s_news_content h5 + p,
  .s_news_content p + p,
  .s_news_content figure + p,
  .s_news_content ul + p {
    margin-top: 30px;
  }
}
.s_news_content figure figcaption {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .s_news_content figure figcaption {
    line-height: 1.5em;
  }
}
.s_news_content h2 + figure,
.s_news_content h3 + figure,
.s_news_content h4 + figure,
.s_news_content h5 + figure,
.s_news_content p + figure,
.s_news_content figure + figure,
.s_news_content ul + figure {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .s_news_content h2 + figure,
  .s_news_content h3 + figure,
  .s_news_content h4 + figure,
  .s_news_content h5 + figure,
  .s_news_content p + figure,
  .s_news_content figure + figure,
  .s_news_content ul + figure {
    margin-top: 30px;
  }
}
.s_news_content ul li {
  display: flex;
  padding-left: 10px;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8em;
  letter-spacing: 0.04em;
}
.s_news_content ul li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background-color: #333;
  border-radius: 100%;
  margin-top: 13px;
}
@media screen and (max-width: 767px) {
  .s_news_content ul li {
    font-size: 14px;
  }
}
.s_news_content h2 + ul,
.s_news_content h3 + ul,
.s_news_content h4 + ul,
.s_news_content h5 + ul,
.s_news_content p + ul,
.s_news_content figure + ul,
.s_news_content ul + ul {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .s_news_content h2 + ul,
  .s_news_content h3 + ul,
  .s_news_content h4 + ul,
  .s_news_content h5 + ul,
  .s_news_content p + ul,
  .s_news_content figure + ul,
  .s_news_content ul + ul {
    margin-top: 30px;
  }
}

.s_news_btn {
  max-width: 300px;
  margin: 0 auto;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .s_news_btn {
    margin-top: 50px;
  }
}
.s_news_btn a {
  position: relative;
  overflow: hidden;
  display: block;
  border: 1px solid #333;
  border-radius: 100px;
  padding: 1rem 4rem;
  z-index: 1;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  cursor: pointer;
}
.s_news_btn a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  transform: translateX(-100%);
  transition: all 0.3s;
  z-index: -1;
}
.s_news_btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50px;
  width: 24px;
  height: 1px;
  background-color: #333;
}
@media (hover: hover) {
  .s_news_btn:hover a {
    color: #fff;
  }
  .s_news_btn:hover a::before {
    transform: translateX(0);
  }
  .s_news_btn:hover a::after {
    transform: translateX(0);
    background-color: #fff;
  }
}