@charset "utf-8";

.information-content h3 a {
  color: inherit;
  text-decoration: none;
}

.information-content h3 a:hover {
  color: #7b5d8b;
  opacity: 1;
}

.information-readmore {
  margin: 1rem 0 0;
}

.information-readmore a {
  position: relative;
  display: inline-block;
  padding-right: 1.4rem;
  color: #8e7546;
  font-size: .8rem;
  letter-spacing: .1em;
  text-decoration: none;
}

.information-readmore a::after {
  content: "›";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.news-detail-page {
  max-width: 1050px;
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}

.news-detail-kicker {
  margin: 0 0 2rem;
  color: #a4874e;
  font-size: .78rem;
  letter-spacing: .28em;
  text-align: center;
}

.news-detail-article {
  padding: clamp(2rem, 5vw, 4.5rem);
  background: linear-gradient(#fff, #fcfaf7);
  border-top: 1px solid rgba(185,163,107,.5);
  border-bottom: 1px solid rgba(111,82,124,.18);
}

.news-detail-header {
  margin-bottom: 2.2rem;
  text-align: center;
}

.news-detail-date{
	display:block;
	margin-bottom:1.4rem;
	color:#8f6d2d;
	font-size:1.05rem;
	font-weight:700;
	letter-spacing:.08em;
}

.news-detail-header h1 {
  margin: 0;
  color: #57475f;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: .1em;
}

.news-detail-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

.news-detail-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #eee;
}

.news-detail-gallery img {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.news-detail-body{
    max-width:600px;
    margin:0 auto;
    color:#565158;
    font-size:1.08rem;
    line-height:2.0;
    letter-spacing:.04em;
}

.news-detail-body p{
    margin:0 0 1.3rem;
}

.news-detail-body p,
.news-detail-body h2 {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.news-detail-subheading {
  position: relative;
  margin: 2.8rem 0 0.8rem;
  padding-left: 1rem;
  color: #57475f;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: left !important;
}

.news-detail-subheading::before {
  content: "";
  position: absolute;
  top:0.35em;
  bottom:0.35em;
  width:2px;
  left: 0;
  background: #b89b63;
}

.news-detail-pdf,
.news-detail-back {
  margin: 3rem 0 0;
  text-align: center;
}

.news-detail-pdf a,
.news-detail-back a {
  display: inline-block;
  min-width: 250px;
  padding: .9rem 2.2rem;
  border: 1px solid #b89b63;
  border-radius: 0;
  color: #6f527c;
  text-decoration: none;
  letter-spacing: .08em;
  transition: .3s;
}

.news-detail-pdf a:hover,
.news-detail-back a:hover {
  background: #6f527c;
  border-color: #6f527c;
  color: #fff;
  opacity: 1;
}

.news-detail-message {
  padding: 4rem 1rem;
  color: #716c72;
  text-align: center;
}

@media screen and (min-width: 700px) {
  .news-detail-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-detail-gallery figure:first-child:nth-last-child(3) {
    grid-column: 1 / -1;
  }
}

@media screen and (max-width: 599px) {
  .news-detail-article {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }

  .news-detail-pdf a,
  .news-detail-back a {
    width: 100%;
    min-width: 0;
  }
}
