@charset "UTF-8";
/*
=====
ここからNEWS お知らせ詳細ページ独自のcss
=====
*/
.eyecatch-image-box {
  aspect-ratio: 16/9;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .eyecatch-image-box {
    margin-bottom: 20px;
  }
}
.eyecatch-image-box img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 8px;
}

.title {
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

.news-data-box {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid #adadad;
  margin-bottom: 150px;
}
@media (max-width: 767px) {
  .news-data-box {
    padding-top: 8px;
    margin-bottom: 30px;
  }
}
.news-data-box .category {
  background: #adadad;
  padding: 6px 13px;
  font-size: 18px;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .news-data-box .category {
    padding: 3px 8px;
    font-size: 10px;
  }
}
.news-data-box .date {
  font-family: canada-type-gibson, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 25px;
}
@media (max-width: 767px) {
  .news-data-box .date {
    font-size: 13px;
  }
}

.post-contents {
  padding-inline: 20px;
  line-height: 2;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}
@media (max-width: 767px) {
  .post-contents {
    padding-inline: 0;
  }
}

.button-area {
  text-align: right;
  margin-top: 150px;
}
@media (max-width: 767px) {
  .button-area {
    margin-top: 50px;
  }
}