@charset "UTF-8";
/* ========================================
  お知らせ一覧ページ
======================================== */
.news #sub03 {
  padding-top: 0;
}

.newsCat {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-start;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .newsCat {
    justify-content: flex-end;
    margin-bottom: 40px;
  }
}

.newsCat__label {
  font-size: 24px;
  font-weight: 600;
}

.newsCat__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.newsCat__btn {
  display: inline-block;
  padding: 3.5px 20px;
  border-radius: 13px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #fff;
  cursor: pointer;
}
.newsCat__btn:hover {
  color: #fff;
  opacity: 1;
}

.newsList {
  display: flex;
  flex-direction: column;
  padding-left: 0;
}
@media (min-width: 768px) {
  .newsList {
    padding-left: 7%;
  }
}

.newsList__link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
  color: #1A1A1A;
  padding-block: 2em 0;
}
@media (min-width: 768px) {
  .newsList__link {
    flex-direction: row;
    gap: 30px;
    padding-block: 0;
  }
}
.newsList__link:hover .newsList__thumb > img {
  opacity: 1;
  transform: translateY(0);
}

.newsList__meta {
  display: flex;
  align-items: center;
  gap: 0.5em;
  flex-shrink: 0;
  width: 90px;
}
@media (min-width: 768px) {
  .newsList__meta {
    flex-direction: column;
    align-items: flex-start;
    width: 160px;
    margin-top: 3em;
  }
}

.newsList__date {
  font-size: 16px;
}
@media (min-width: 768px) {
  .newsList__date {
    font-size: 20px;
  }
}

.newsList__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1em;
}

.newsList__cat {
  display: inline-block;
  padding: 3.5px 20px;
  border-radius: 13px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #fff;
  white-space: nowrap;
}

.newsList__contentsWrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 6.72%;
  padding-block: 0 2em;
  border-bottom: 1px solid #CCCCCC;
}
@media (min-width: 768px) {
  .newsList__contentsWrap {
    flex: 1;
    width: auto;
    gap: 8.72%;
    padding-block: 3.6em 3em;
  }
}

.newsList__thumb {
  position: relative;
  width: 120px;
  aspect-ratio: 207/166;
}
@media (min-width: 768px) {
  .newsList__thumb {
    width: 24.73%;
  }
}
.newsList__thumb::before {
  content: "";
  display: block;
  position: absolute;
  top: 9.6px;
  left: 9.6px;
  width: 100%;
  height: 100%;
  background: rgba(8, 42, 84, 0.1);
}
@media (min-width: 768px) {
  .newsList__thumb::before {
    top: 14px;
    left: 14px;
  }
}
.newsList__thumb > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.newsList__body {
  flex: 1;
}

.newsList__ttl {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .newsList__ttl {
    font-size: 18px;
  }
}

.newsList__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.newsPager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5em;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .newsPager {
    gap: 42px;
  }
}

.newsPager__prev,
.newsPager__next {
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0.2em;
}
.newsPager__prev a,
.newsPager__next a {
  display: inline-block;
  color: #000000;
}

.newsPager__nums {
  display: flex;
  align-items: center;
}
.newsPager__nums a, .newsPager__nums span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 18px;
  font-weight: bold;
  color: #808080;
  border-radius: 2px;
}
@media (min-width: 768px) {
  .newsPager__nums a, .newsPager__nums span {
    width: 45px;
    height: 45px;
  }
}
.newsPager__nums a.current, .newsPager__nums span.current {
  color: #073484;
}

/* ========================================
  お知らせ詳細ページ
======================================== */
.newsDetail {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
@media (min-width: 768px) {
  .newsDetail {
    flex-direction: row;
    gap: 30px;
    padding-left: 7%;
  }
}

.newsDetail__meta {
  display: flex;
  align-items: center;
  gap: 0.5em;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .newsDetail__meta {
    flex-direction: column;
    align-items: flex-start;
    width: 160px;
  }
}

.newsDetail__date {
  font-size: 16px;
}
@media (min-width: 768px) {
  .newsDetail__date {
    font-size: 20px;
  }
}

.newsDetail__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1em;
}
@media (min-width: 768px) {
  .newsDetail__cats {
    margin-top: 0.5em;
  }
}

.newsDetail__cat {
  display: inline-block;
  padding: 3.5px 20px;
  border-radius: 13px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #fff;
  white-space: nowrap;
}

.newsDetail__body {
  flex: 1;
}

.newsDetail__ttl {
  font-size: 24px;
}
@media (min-width: 768px) {
  .newsDetail__ttl {
    font-size: 28px;
  }
}

.newsDetail__contents img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
}
.newsDetail__contents > p {
  font-size: 11px;
  line-height: 1.8;
  color: #808080;
}
.newsDetail__contents p + p {
  margin-top: 2em;
}

.aligncenter{
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.alignright{
	float: right;
	margin-left: 1.5em;
}
.alignleft{
	float: left;
	margin-right: 1.5em;
}
@media (max-width: 480px){
	.alignright{
		float: none;
		margin-left: 0;
	}
	.alignleft{
		float: none;
		margin-right: 0;
	}
}


.newsNav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid #CCCCCC;
  width: 100%;
  margin-left: auto;
  padding-top: 1.5em;
}
@media (min-width: 768px) {
  .newsNav {
    flex-direction: row;
    width: calc(100% - 160px - 7% - 30px);
  }
}

.newsNav__prev,
.newsNav__next {
  max-width: 216px;
  width: 100%;
}
.newsNav__prev a,
.newsNav__next a {
  display: block;
  color: #1A1A1A;
}
.newsNav__prev a:hover,
.newsNav__next a:hover {
  opacity: 1;
}

.newsNav__next {
  text-align: right;
  margin-left: auto;
}
@media (min-width: 768px) {
  .newsNav__next {
    margin-left: unset;
  }
}

.newsNav__label {
  display: block;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: #000000;
  margin-bottom: 0.4em;
}

.newsNav__ttl {
  display: -webkit-box;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: #002A66;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}