@charset "utf-8";

.news_list {
	margin-bottom: calc(var(--space-65) * 2);
}

/* ボタン */
.MTmore_btn {
  text-align: center;
	margin-top: 0.5em;
}
.MTmore_btn:not(:last-child) {
	margin-bottom: 4em;
}
.MTmore_btn a {
  padding: 6px 6px 6px 24px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  gap: 1em;
  background: var(--sub-color);
  color: #fff;
  font-weight: bold;
}
.MTmore_btn a::after {
	content: "";
  min-width: 32px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
	background-image: url(../../common/img/icon-arrow.svg);
	background-repeat: no-repeat;
	background-position: center;
}
.MTmore_btn.btn_white a {
  border: 1px solid var(--sub-color);
  background: none;
  color: var(--sub-color);
}
.MTmore_btn.btn_white a::after {
  background: none;
}

/* ------------------
  詳細ページ
------------------ */
.news_contents {
	margin-bottom: calc(var(--space-65) * 2);
}

/* 見出し */
.page_heading {
	margin-top: 2em;
}

/* 動画 */
.videofile {
	display: none;
}

video {
	margin-top: 1em;
}

.video:not(:last-child) {
	margin-bottom: 1.5em;
}

/* テーブル */
.news_table {
	width: 100%;
	border: none;
	@media print, screen and (min-width: 768px) {
		margin: 0.5em 0;
	}
}
.news_table:not(:last-child) {
	margin-bottom: 1.5em;
}
.news_table colgroup {
	display: none;
}
.news_table tr {
	height: auto!important;
}
.news_table td {
	border: none;
	height: auto!important;
}
.news_table td {
	border-bottom: solid 2px #fff;
	padding: 0.5em 1em;
	@media screen and (max-width: 767px) {
		display: block;
		width: 100%;
	}
}
.news_table td:not(:first-child) {
	background: #EDF3F5;
	@media screen and (max-width: 767px) {
		padding: 0.75em 1.5em;
	}
}
.news_table td:first-child {
	width: 200px;
	background: #D4E3E8;
	text-align: center;
	vertical-align: middle;
	@media print, screen and (min-width: 768px) {
		border-right: 2px solid #fff;
	}
	@media screen and (max-width: 767px) {
		width: 100%;
		border-bottom: none;
	}
}
.news_table td a {
	color: #3386D2;
	text-decoration: underline;
	&:hover {
		text-decoration: none;
	}
}

/* ギャラリー */
.post_gallery {
	display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin: 0.5em 0;
}
.post_gallery p {
	max-width: 100%;
  width: calc(100% / 3 - 1em / 3);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  margin: 0;
  @media screen and (max-width: 767px) {
    width: calc(50% - 0.25em);
		flex-grow: 0;
  }
}
.post_gallery img {
  height: 100%!important;
  object-fit: cover;
}
.post_gallery:not(:last-child) {
	margin-bottom: 1.5em;
}

@media screen and (max-width: 767px) {}