@charset "UTF-8";


/* --------------------------------------------------
   インタビューページ　／　ニュース
-------------------------------------------------- */
.detail__hero {
  padding-top:30px;
  margin-bottom:100px;
}
@media screen and (max-width:1030px){
  .detail__hero{
      margin-bottom:50px;
  }
}

.detail__hero.single {
  padding-top:80px;
}
@media screen and (max-width:757px){
.detail__hero.single {
      padding-top:30px;
  }
}

.article h3 {
  font-size:25px;
}
@media screen and (max-width:757px){
.article h3 {
     font-size:16px;
     line-height: 1.9;
  }
}

.article .wp-element-caption {
  font-size:14px;
}
@media screen and (max-width:757px){
.article .wp-element-caption {
     font-size:12px;
  }
}

.article .wp-block-image {
  margin-bottom:50px;
}
@media screen and (max-width:757px){
.article .wp-block-image {
  margin-bottom:30px;
  }
}


.detail__content.article.award {
  padding-bottom:80px;
}
@media screen and (max-width: 757px) {
.detail__content.article.award {
    padding-bottom:30px;
  }
}

/* --------------------------------------------------
   ニュース記事ページ
-------------------------------------------------- */
.detail__tax {
  display: inline-block;
  padding: 2px 20px;
  border: 1px solid #4c4c4d;
  border-radius: 50px;
  font-size: 16px;
  color: #4c4c4d;
  margin-bottom: 20px;
  line-height:1.4;
}
@media screen and (max-width: 757px) {
.detail__tax {
      font-size: 14px;
      margin-bottom: 10px;
  }
}

.detail__title {
  font-size: 25px;
  font-weight: 700;
  color: #4c4c4d;
  margin: 0 0 12px;
  line-height: 1.5;
}
@media screen and (max-width: 757px) {
  .detail__title {
    font-size: 18px;
    margin: 0 0 6px;
  }
}

.detail__date {
  display: block;
  font-size: 14px;
  color: #4c4c4d;
  margin-bottom: 32px;
}

.detail__thumb {
  width: 100%;
  margin-bottom: 40px;
  border-radius: 4px;
  overflow: hidden;
}
.detail__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.detail__content {
  font-size: 16px;
  line-height: 1.9;
  color: #4c4c4d;
}
.detail__content p {
  margin: 0 0 1.6em;
}
@media screen and (max-width: 757px) {
  .detail__content {
    font-size: 14px;
  }
}

/* detail nav */
.detail__nav {
  padding: 40px 0 64px;
}
@media screen and (max-width: 757px) {
.detail__nav {
      padding: 10px 0 30px;
  }
}

.detail__nav::before {
  content: "";
  display: block;
  width: min(calc(100% - 120px), 1200px);
  height: 1px;
  background: #e0e0e0;
  margin: 0 auto 40px;
}
@media screen and (max-width: 757px) {
.detail__nav::before {
      margin: 0 auto 10px;
      width:90%;
  }
}

.detail__nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 757px) {
  .detail__nav-inner {
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
  }
}

.detail__nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.detail__nav-link:hover {
  opacity: 0.6;
      transform: translateY(0px);
}

.detail__nav-prev .detail__nav-link {
  align-items: flex-start;
}

.detail__nav-next .detail__nav-link {
  align-items: flex-end;
  text-align: right;
}

.detail__nav-direction {
  font-size: 15px;
  color: #4C4C4D;
  letter-spacing: 0.05em;
}

.detail__nav-label {
  font-size: 13px;
  color: #4c4c4d;
}
@media screen and (max-width: 757px) {
  .detail__nav-label {
    display: none;
  }
}

.detail__nav-center {
  text-align: center;
}

.detail__nav-archive {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 15px;
  color: #4C4C4D;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.detail__nav-archive:hover {
  opacity: 0.7;
    transform: translateY(0px);
}

.wp-block-paragraph a {
  text-decoration: underline;
}