@charset "UTF-8";
/* =========================================================
お知らせ
========================================================= */

.news-list {
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.news-list li {
  display: flex;
  gap: 1em;
  border-bottom: 1px solid #ddd;
  transition: 0.3s ease;
  opacity: 1;
  transition: all 0.4s ease 0s;
}
.news-list li.is-hidden {
  opacity: 0;
  height: 0;
  margin: 0;
}

.news-list li:hover {
  border-bottom: 1px solid #b86e55;
  transition: 0.3s ease;
}
.news-list li a {
  padding: 25px 0;
  width: 100%;
  height: 100%;
}
.news-list .date {
  min-width: 90px;
  padding-right: 20px;
  color: #b86e55;
  font-weight: bold;
}

.news .more {
  margin-top: 50px;
}

.news .more .btn {
  /* buttonタグのリセットCSS */
  display: block;
  margin: 0 auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
  color: #fff;
  background-color: #c67b68;
  cursor: pointer;
  width: 310px;
  height: 60px;
  border-radius: 30px;
  transition: 0.3s;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.4);
}
.news .more .btn:hover {
  background: #b86e55;
  transition: 0.3s ease;
}

/* ================================================
newsDetail
=============================================== */
.newsDetail .wrapper {
  padding-top: 20px;
}
@media (max-width: 767px) {
  .newsDetail .wrapper {
    padding-top: 40px;
  }
}
.newsDetail .newsHeader {
  border-bottom: 1px solid #dadad7;
  padding-bottom: 15px;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .newsDetail .newsHeader {
    padding-bottom: 16px;
    margin-bottom: 20px;
  }
}
.newsDetail .newsHeader .date {
  color: #c67b68;
}
@media (min-width: 768px) {
  .newsDetail .newsHeader .date {
    font-weight: 600;
  }
}
.newsDetail .newsHeader .title {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .newsDetail .newsHeader .title {
    font-weight: 600;
  }
}
@media (max-width: 767px) {
  .newsDetail .newsHeader .title {
    margin-top: 4px;
  }
}

.newsDetail .newsContent {
  display: flex;
  justify-content: space-between;
}

.newsDetail .newsContent .img_area {
  width: 45%;
  margin-left: 50px;
}
.newsDetail .newsContent .img_area img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.newsDetail .newsContent p {
  margin: 2em 0;
}
@media (max-width: 767px) {
  .newsDetail .newsContent p {
    margin: 1.6em 0;
  }
}

.newsDetail .newsFooter .footerLink {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #dadad7;
  margin-block: 45px 30px;
  padding-top: 45px;
}
@media (max-width: 767px) {
  .newsDetail .newsFooter .footerLink {
    margin-block: 24px 10px;
    padding-top: 24px;
  }
}

.newsDetail .newsFooter .footerLink p a {
  position: relative;
  padding-left: 50px;
}
.newsDetail .newsFooter .footerLink p a::before {
  content: "";
  width: 40px;
  height: 40px;
  background: #b86e55;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.newsDetail .newsFooter .footerLink p :hover {
  cursor: pointer;
}
.newsDetail .newsFooter .footerLink p a:hover {
  opacity: 0.8;
  transition: 0.3s ease;
}
.newsDetail .newsFooter .footerLink p.next a {
  padding-left: 0;
  padding-right: 50px;
}

.newsDetail .newsFooter .footerLink p.next a::before {
  left: inherit;
  right: 0;
}

.newsDetail .newsFooter .footerLink p a::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(-135deg);
  position: absolute;
  top: 0;
  left: 16px;
  bottom: 0;
  margin: auto;
}

.newsDetail .newsFooter .footerLink p.menu a::after{
   transform: rotate(15deg);
}
.newsDetail .newsFooter .footerLink p.next a::after {
  transform: rotate(45deg);
  right: 16px;
  left: inherit;
}

.newsDetail .newsFooter .footerLink .menu {
  position: absolute;
  left: 0;
  right: 0;
  width: fit-content;
  margin: auto;
}
@media (max-width: 767px) {
  .newsDetail .newsFooter .footerLink .menu {
    margin: auto auto 2px;
  }
}
@media (max-width: 360px) {
  .newsDetail .newsFooter .footerLink .menu {
    top: 100%;
  }
}

.newsDetail .newsFooter .footerLink .next {
  margin-left: auto;
}

.newsDetail .newsFooter .footerLink .prev {
    margin-right: auto;
}


/* 画像がある時のコンテナ */
.news-flex-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.news-visual {
  flex: 1; /* 左側40〜50%くらい */
}

.news-visual img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.text_area {
  flex: 1.5; /* 右側テキストを少し広めに */
}

/* 画像がない時のコンテナ（一面テキスト） */
.news-full-text {
  width: 100%;
  line-height: 1.8;
}

/* スマホ対応：画像がある時も縦並びにする */
@media (max-width: 768px) {
  .news-flex-container {
    flex-direction: column;
  }
}