.detail-crumb {
  width: min(1152px, 100% - 48px);
  margin: 0 auto;
  padding-top: 40px;
}
.detail-crumb p {
  font-size: 13px;
  line-height: normal;
  color: #222222;
}
.detail-crumb a:hover {
  text-decoration: underline;
}

.article {
  width: min(800px, 100% - 48px);
  margin: 64px auto 0;
  padding-bottom: 144px;
}
@media (max-width: 767px) {
  .article {
    margin-top: 40px;
    padding-bottom: 80px;
  }
}
.article__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.article__date {
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: #222222;
}
.article__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  color: #222222;
  margin-bottom: 48px;
}
.article__eyecatch {
  aspect-ratio: 16/9;
  background: #d9d9d9;
  margin-bottom: 32px;
}
.article__einfo {
  margin-bottom: 48px;
}
.article__einfo p {
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: #222222;
}
.article__einfo > * + * {
  margin-top: 8px;
}
.article__eplace {
  display: flex;
  align-items: center;
  gap: 4px;
}
.article--event .article__title {
  margin-bottom: 16px;
}
.article--event .article__eyecatch {
  aspect-ratio: 1/1;
}
.article__title--flat {
  margin-bottom: 0;
}
.article__note {
  background: rgba(22, 94, 131, 0.1);
  padding: 16px 24px;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0.8px;
  color: #222222;
  margin-top: 64px;
}
.article__body p {
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
  color: #222222;
  margin-bottom: 28px;
}
.article__body a {
  color: #ee7800;
  text-decoration: underline;
}
.article__body strong {
  font-weight: 700;
}
.article__body h2 {
  font-weight: 500;
  font-size: 20px;
  line-height: normal;
  color: #222222;
  padding-bottom: 16px;
  border-bottom: 1px solid #165e83;
  margin: 64px 0 32px;
}
.article__body h3 {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 20px;
  padding-left: 12px;
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
  color: #222222;
  margin: 64px 0 32px;
}
.article__body h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: #165e83;
}
.article__body img {
  width: 100%;
  margin: 32px 0;
}

.gslider {
  margin-top: 48px;
  margin-bottom: 32px;
}
.gslider__main {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #d9d9d9;
}
.gslider__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.gslider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222222;
  transition: background 0.2s;
}
.gslider__nav:hover {
  background: #ffffff;
}
.gslider__nav--prev {
  left: 72px;
}
.gslider__nav--next {
  right: 72px;
}
.gslider__nav::before {
  content: "";
  width: 14px;
  height: 14px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}
.gslider__nav--prev::before {
  transform: translateX(3px) rotate(-135deg);
}
.gslider__nav--next::before {
  transform: translateX(-3px) rotate(45deg);
}
@media (max-width: 767px) {
  .gslider__nav {
    width: 40px;
    height: 40px;
  }
  .gslider__nav--prev {
    left: 12px;
  }
  .gslider__nav--next {
    right: 12px;
  }
  .gslider__nav::before {
    width: 10px;
    height: 10px;
  }
}
.gslider__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.gslider__thumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #d9d9d9;
  cursor: pointer;
  transition: opacity 0.2s;
}
.gslider__thumb:hover {
  opacity: 0.8;
}
.gslider__thumb.is-active {
  outline: 2px solid #165e83;
  outline-offset: -2px;
}
.gslider__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gmeta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  color: #222222;
}
@media (max-width: 767px) {
  .gmeta {
    font-size: 14px;
    line-height: 20px;
    gap: 12px;
  }
}
