/* お知らせ・コラム（蓝湖 image_id=438f6314） */

.news-page.page-main {
  padding: 0 0 80px;
  overflow-x: hidden;
}

.news-hero {
  position: relative;
  width: 100%;
  height: 402px;
  background: #7a3a38;
  overflow: hidden;
}

.news-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.news-hero-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 110px;
  pointer-events: none;
}

.news-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.news-hero-lead {
  position: relative;
  margin-top: 37px;
  width: min(576px, calc(100% - 48px));
  min-height: 77px;
}

.news-hero-lead::before,
.news-hero-lead::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 32px;
  background: #ffd84d;
}

.news-hero-lead::before {
  top: 0;
}

.news-hero-lead::after {
  bottom: 0;
}

.news-hero-lead p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 16px;
  color: #111;
  font-size: 20px;
  font-weight: 400;
  line-height: 45px;
  text-align: center;
}

.news-crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 36px 0 0;
  font-size: 16px;
  color: #111;
}

.news-crumb a {
  color: #111;
  text-decoration: none;
}

.news-crumb a:hover {
  color: var(--red);
}

.news-crumb-home {
  display: inline-flex;
  align-items: center;
}

.news-crumb-home .iconfont {
  font-size: 16px;
  color: #f86764;
}

.news-featured-sec {
  margin-top: 80px;
}

.news-featured-sec h2 {
  margin: 0 0 48px;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  color: #111;
}

.news-featured {
  display: grid;
  grid-template-columns: 650px minmax(0, 1fr);
  gap: 100px;
  align-items: center;
}

.news-featured-media {
  overflow: hidden;
  border-radius: 16px;
  background: #f4f4f4;
}

.news-featured-media img {
  display: block;
  width: 100%;
  height: 376px;
  object-fit: cover;
}

.news-featured-body h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 900;
  line-height: 40px;
  color: #111;
}

.news-featured-body p {
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 32px;
  color: #333;
}

.news-date {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: #666;
  font-size: 14px;
  line-height: 1;
}

.news-date img {
  width: 17px;
  height: 17px;
}

.news-read-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 251px;
  height: 68px;
  margin-top: 36px;
  border-radius: 999px;
  background: #ff5f5a;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.news-read-btn:hover {
  background: #ff413d;
}

span.news-read-btn {
  cursor: default;
}

.news-tabs {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 88px;
  padding: 0;
  border-bottom: 4px solid #fff667;
}

.news-tabs button {
  position: relative;
  flex: 1;
  margin: 0;
  padding: 0 8px 18px;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
}

.news-tabs button + button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 1px;
  height: 18px;
  background: #d8d8d8;
}

.news-tabs button.is-active {
  color: #ff5f5a;
}

.news-tabs button.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: min(138px, 80%);
  height: 4px;
  background: #ff5f5a;
  transform: translateX(-50%);
}

.news-grid-sec {
  margin-top: 88px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 49px;
  row-gap: 48px;
}

.news-grid.loading-state,
.news-grid:has(.empty-state),
.news-grid:has(.form-error) {
  display: block;
}

.news-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  min-width: 0;
}

.news-card-media {
  overflow: hidden;
  border-radius: 12px;
  background: #f4f4f4;
}

.news-card-media img {
  display: block;
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.news-card h3 {
  margin: 20px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: #111;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card p {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 28px;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 20px;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 31px;
  padding: 0 12px;
  border-radius: 15px;
  font-size: 16px;
  line-height: 1;
  color: #111;
}

.news-tag.is-yellow {
  background: #fff667;
}

.news-tag.is-green {
  background: #76d98d;
}

.news-card-more {
  margin-top: 18px;
  color: #ff413d;
  font-size: 18px;
  font-weight: 700;
}

.news-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 56px;
}

.news-pager button {
  min-width: 72px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #ff413d;
  background: #fff;
  color: #111;
  font-size: 14px;
  cursor: pointer;
}

.news-pager button:disabled {
  opacity: 0.35;
  cursor: default;
}

.news-pager button:not(:disabled) {
  background: #ff413d;
  color: #fff;
}

.news-pager .page-num {
  font-size: 18px;
  font-weight: 800;
  color: #ff413d;
}

.news-pager .page-total {
  font-weight: 400;
  color: #111;
}

.news-detail-page.page-main {
  padding-bottom: 0;
}

.news-detail-page .news-crumb {
  margin-top: 45px;
}

.news-article {
  padding: 0 0 80px;
}

.news-article.loading-state,
.news-article:has(.form-error),
.news-article:has(.empty-state) {
  padding-top: 80px;
  min-height: 200px;
}

.news-article h1 {
  max-width: 1107px;
  margin: 115px auto 0;
  color: #000;
  font-size: 50px;
  font-weight: 900;
  line-height: 70px;
  text-align: center;
}

.news-article-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 38px;
  color: #666;
  font-size: 14px;
  line-height: 1;
}

.news-article-date img {
  width: 17px;
  height: 17px;
}

.news-article-body {
  max-width: 1198px;
  margin: 57px auto 0;
  color: #333;
  font-size: 16px;
  line-height: 32px;
}

.news-article-body p,
.news-article-body ul,
.news-article-body ol {
  margin: 0 0 16px;
}

.news-article-body p:last-child,
.news-article-body ul:last-child,
.news-article-body ol:last-child {
  margin-bottom: 0;
}

.news-article-body h2,
.news-article-body h3 {
  margin: 32px 0 0;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
}

.news-article-body h2 + p,
.news-article-body h3 + p {
  margin-top: 0;
}

.news-article-body ul,
.news-article-body ol {
  padding-left: 1.4em;
}

.news-article-body li {
  margin: 0;
  line-height: 32px;
}

.news-article-body a {
  color: #ff413d;
  font-weight: 700;
}

.news-article-body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 24px 0;
}

.news-related {
  background: rgba(255, 209, 21, 0.1);
  padding: 90px 0 100px;
}

.news-related h2 {
  margin: 0;
  color: #000;
  font-size: 50px;
  font-weight: 900;
  line-height: 70px;
  text-align: center;
}

.news-related-grid {
  margin-top: 47px;
}

.news-related .news-card h3 {
  margin-top: 27px;
}

.news-related .news-card p {
  margin-top: 25px;
}

.news-related-date {
  margin-top: 22px;
  color: #838383;
  font-size: 14px;
  line-height: 28px;
}

.news-related .news-tags {
  margin-top: 25px;
}

.news-related .news-card-more {
  margin-top: 18px;
}

@media (max-width: 1100px) {
  .news-featured {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .news-featured-media img {
    height: auto;
    aspect-ratio: 650 / 376;
  }

  .news-tabs {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 0;
  }

  .news-tabs button {
    flex: 0 0 auto;
    padding: 0 16px 18px;
    font-size: 16px;
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }
}

@media (max-width: 720px) {
  .news-hero {
    height: 280px;
  }

  .news-hero-copy {
    padding-top: 56px;
  }

  .news-article h1,
  .news-related h2,
  .news-hero-copy h1,
  .news-featured-sec h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .news-article h1 {
    margin-top: 48px;
  }

  .news-article-body {
    margin-top: 32px;
  }

  .news-related {
    padding: 56px 0 72px;
  }

  .news-hero-lead {
    margin-top: 20px;
    min-height: 56px;
  }

  .news-hero-lead::before,
  .news-hero-lead::after {
    height: 24px;
  }

  .news-hero-lead p {
    font-size: 14px;
    line-height: 24px;
  }

  .news-featured-body h3 {
    font-size: 22px;
    line-height: 1.4;
  }

  .news-read-btn {
    width: 100%;
    max-width: 251px;
    height: 52px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card-media img {
    height: auto;
    aspect-ratio: 400 / 270;
  }
}
