@charset "UTF-8";
/* NEWS詳細ページのスタイル
----------------------------------------------------------------- */
@layer pages {
  .newsDetail {
    max-width: 1024px;
    margin: 0 auto;
    padding-inline: 30px;
  }
  @media (max-width: 768px) {
    .newsDetail {
      padding: 0;
    }
  }
  .newsDetail__box {
    margin-top: 89.2px;
    padding-inline: 20px;
  }
  @media (max-width: 768px) {
    .newsDetail__box {
      margin-top: 7px;
    }
  }
  .newsDetail__inner {
    width: 100%;
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .newsDetail__block {
    display: flex;
    gap: 27.3px;
    gap: clamp(18px, 2.5277777778vw, 27.3px);
    position: relative;
    border: 1px solid var(--blue);
    background: var(--white);
    padding: 27.2px 35.3px 69.3px 50.9px;
  }
  @media (max-width: 768px) {
    .newsDetail__block {
      flex-direction: column;
      padding: 9px 11px 48px;
    }
  }
  .newsDetail__thumb {
    max-width: 100%;
    width: 40%;
    height: 100%;
  }
  @media (max-width: 768px) {
    .newsDetail__thumb {
      margin: 0;
      padding: 8px;
      border: 1px solid #707070;
      width: 100%;
    }
  }
  .newsDetail__thumbInner {
    aspect-ratio: 386.34/211.93;
    width: 100%;
    overflow: hidden;
  }
  .newsDetail__thumbImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .newsDetail__body {
    flex: 1;
  }
  .newsDetail__date {
    display: block;
    background: var(--purple);
    color: var(--navy);
    padding: 13.8px 34.7px;
    font-weight: 600;
    font-size: clamp(16px, 2.3148148148vw, 25px);
    line-height: 0.8;
    letter-spacing: 0;
  }
  @media (max-width: 768px) {
    .newsDetail__date {
      padding: 16px 15px 11px;
    }
  }
  .newsDetail__text {
    margin-top: clamp(25px, 3.0555555556vw, 33px);
    font-size: clamp(12px, 1.8518518519vw, 20px);
    font-weight: 600;
    line-height: 1.75;
    color: var(--navy);
    letter-spacing: 0.15em;
  }
  @media (max-width: 768px) {
    .newsDetail__text {
      line-height: 2.08;
      letter-spacing: 0.01em;
      padding-inline: 14px;
    }
  }
  .newsDetail__back {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 38.5px 50.5px 0 0;
    border-color: transparent var(--blue) transparent;
  }
  .newsDetail__backLink {
    position: absolute;
    position: absolute;
    width: 67px;
    left: -4px;
    top: -34px;
  }
  @media (min-width: 767px) {
    .newsDetail__backLink:hover {
      opacity: 0.7;
    }
  }
}