@charset "UTF-8";
/* CSS Document */
/* テンプレート共通CSS */
/* ページ遷移 */
.page-transition {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  opacity: 1;
  pointer-events: none;
}

/* ページタイトル H1 */
.page-title {
  position: relative;
  width: 100%;
  height: 320px;
  background: url("../img/page_title.jpg") center/auto 100% repeat-x;
}
.page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
}
.page-title .page-title__inner {
  position: relative;
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  background: url("../img/page_title.jpg") center/cover no-repeat;
}
.page-title .page-title__text {
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 600px;
  height: 80px;
  background: rgba(255, 255, 255, 0.75);
  color: #333;
  font-size: 2.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding-left: 80px;
}
.page-title .page-title__text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background: #D7003A;
}

@media screen and (max-width: 1200px) {
  .page-title {
    height: auto;
    background: none;
  }
  .page-title::before {
    display: none;
  }
  .page-title .page-title__inner {
    width: 100%;
    height: 0;
    padding-top: 26.66%;
    margin: 0 auto;
    background: url("../img/page_title.jpg") center/contain no-repeat;
  }
}
@media screen and (max-width: 768px) {
  .page-title .page-title__text {
    left: 0;
    bottom: 12.5%;
    width: 50%;
    height: 37.5%;
    padding-left: 12%;
  }
  .page-title .page-title__text::before {
    left: 0%;
    width: 6%;
  }
}
@media screen and (max-width: 640px) {
  .page-title .page-title__text {
    padding-left: 6%;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 480px) {
  .page-title {
    height: auto;
  }
  .page-title .page-title__inner {
    width: 100%;
    height: 128px;
    padding-top: 0;
    background: url("../img/page_title.jpg") center/cover no-repeat;
  }
  .page-title .page-title__text {
    width: 240px;
    padding-left: 6%;
    font-size: 1.5rem;
  }
}
/* H2 */
.heading-h2 {
  color: #D70039;
  font-size: 1.75rem;
  font-weight: bold;
  text-align: left;
  position: relative;
}
.heading-h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #D70039;
  margin-top: 8px;
}

/* ニュース一覧 */
.newsList__item {
  display: flex;
  width: 100%;
  height: 135px;
  margin-bottom: 40px;
  text-decoration: none;
  color: inherit;
  outline: 1px solid transparent;
  outline-offset: -1px;
  transition: background-color 0.3s ease, outline-color 0.3s ease;
}
.newsList__thumbnail {
  width: 240px;
  height: 135px;
  flex-shrink: 0;
}
.newsList__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.newsList__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-left: 40px;
  padding: 0 40px;
  border-top: 1px solid #d0d0d0;
  border-bottom: 1px solid #d0d0d0;
  min-width: 0;
}
.newsList__content::before {
  content: "";
  flex: 1;
}
.newsList__content::after {
  content: "";
  flex: 1;
}
.newsList__meta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.newsList__date {
  font-size: 1.125rem;
  width: 160px;
}
.newsList__category {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 32px;
  border: 1px solid #313131;
  font-size: 0.875rem;
}
.newsList__title {
  font-size: 1.25rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  min-width: 0;
  margin-bottom: 5px;
}
.newsList__item:hover {
  background-color: #fafafa;
  outline-color: #313131;
}

@media screen and (max-width: 960px) {
  .newsList__content {
    margin-left: 20px;
    padding: 0 0;
  }
  .newsList__meta {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .newsList__date {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .newsList__item {
    display: block;
    height: auto;
  }
  .newsList__thumbnail {
    width: 100%;
    height: auto;
  }
  .newsList__content {
    width: 100%;
    margin-left: 0;
    padding: 20px;
    border: 1px solid #d0d0d0;
  }
}
.newsList__more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.newsList__moreLink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 48px;
  background-color: #fff;
  border: 1px solid #D70039;
  color: #D70039;
  text-decoration: none;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.newsList__moreText {
  font-size: 1.25rem;
}
.newsList__moreIcon {
  position: absolute;
  right: 16px;
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}
.newsList__moreLink:hover {
  background-color: #D70039;
  color: #fff;
}
.newsList__moreLink:hover .newsList__moreIcon {
  transform: translateX(4px);
}

/* =========================
  pagination (WP-PageNavi)
========================= */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 3em;
}

/* 全体 */
.pagination .wp-pagenavi a,
.pagination .wp-pagenavi span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 4px;
  font-size: 0.875rem;
  color: #D70039;
  border: 1px solid #D70039;
  text-decoration: none;
  transition: 0.2s;
}

/* hover */
.pagination .wp-pagenavi a:hover {
  background: #ffe6ee;
}

/* current（アクティブ） */
.pagination .wp-pagenavi .current {
  background: #D70039;
  color: #fff;
  pointer-events: none;
}

/* prev / next */
.pagination .wp-pagenavi .previouspostslink,
.pagination .wp-pagenavi .nextpostslink {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0; /* 元文字消す */
}

/* アイコン */
.pagination .wp-pagenavi .previouspostslink::before {
  content: "\f053"; /* 左 */
  font-size: 14px;
}

.pagination .wp-pagenavi .nextpostslink::before {
  content: "\f054"; /* 右 */
  font-size: 14px;
}

/* ニュース個別 */
.newsDetail__meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.newsDetail__date {
  font-size: 1.125rem;
}
.newsDetail__category {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 32px;
  border: 1px solid #313131;
  font-size: 0.875rem;
}

.newsPage__thumbnail {
  max-width: 960px;
  margin: 0 auto;
}
.newsPage__thumbnail img {
  width: 100%;
  height: auto;
}

/* アンカー */
.anchor-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.anchor-buttons__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 32px;
  border: 1px solid #000;
  color: #303030;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.2s;
}
.anchor-buttons__item:hover {
  background-color: #f9f9f9;
}

/* テーブル */
.table-like {
  width: 100%;
}
.table-like__row {
  display: flex;
  border-bottom: 2px solid #fff;
}
.table-like__row:first-child {
  border-top: 2px solid #fff;
}
.table-like__col {
  text-align: left;
  padding: 10px 40px;
}
.table-like__col--a {
  width: 240px;
  background-color: #EEEEEE;
}
.table-like__col--b {
  flex: 1;
  background-color: #fff;
}
.table-like--wide .table-like__col--a {
  width: 360px;
}

@media screen and (max-width: 768px) {
  .table-like__row {
    display: block;
  }
  .table-like__col {
    width: 100%;
    padding: 10px 20px;
  }
}
/* GoogleMap */
.map-embed {
  width: 100%;
  height: 600px;
  border: 1px solid #d0d0d0;
}
.map-embed__iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media screen and (max-width: 768px) {
  .map-embed {
    height: 480px;
  }
}
/* profile */
.profile {
  display: flex;
}
.profile__image {
  width: 240px;
  height: 320px;
  margin-right: 40px;
}
.profile__text {
  flex: 1;
  min-width: 0;
}
.profile__name {
  font-size: 1.25rem;
  border-bottom: 1px solid #d0d0d0;
  line-height: 2;
}
.profile__meta {
  font-size: 1rem;
}
.profile__sns {
  display: flex;
  gap: 24px;
  margin-top: 12px;
}
.profile__sns-item {
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}
.profile__sns-item:hover {
  transform: translateY(-2px);
  opacity: 0.7;
}
.profile__sns-item--website {
  color: #393;
}
.profile__sns-item--x {
  color: #000;
}
.profile__sns-item--facebook {
  color: #1877F2;
}
.profile__sns-item--youtube {
  color: #FF0000;
}
.profile__sns-item--instagram {
  color: #E4405F;
}
.profile__sns-item--tiktok {
  color: #111;
}
.profile__sns-item--line {
  color: #06C755;
}
.profile__sns-item--threads {
  color: #000;
}

@media screen and (max-width: 768px) {
  .profile {
    display: block;
  }
  .profile__image {
    margin: 0 auto 20px;
  }
}
/* ol/li list */
.ol-list {
  counter-reset: list;
}
.ol-list__item {
  counter-increment: list;
  position: relative;
  padding-left: 24px;
}
.ol-list__item::before {
  content: counter(list) ". ";
  position: absolute;
  left: 0;
  top: 0;
}

/* ul/li list */
.ul-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.ul-list__item {
  position: relative;
  padding-left: 24px;
}
.ul-list__item::before {
  content: "◎ ";
  position: absolute;
  left: 0;
  top: 0;
}/*# sourceMappingURL=common.css.map */