@charset "UTF-8";

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.news-detail-page,
.news-detail-page *,
.news-detail-page *::before,
.news-detail-page *::after {
  box-sizing: border-box;
}

.news-detail-page {
  --news-detail-green: #214b37;
  --news-detail-cream: #f5f0e7;
  --news-detail-ink: #282b27;
  color: var(--news-detail-ink);
  background: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.news-detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  min-height: 142px;
  overflow: hidden;
  background: var(--news-detail-cream);
}

.news-detail-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 142px;
  align-items: center;
  padding: 18px 48px 18px max(9vw, 72px);
  background: var(--news-detail-cream);
  clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%);
}

.news-detail-hero__copy h1 {
  margin: 0;
  color: var(--news-detail-green);
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", serif;
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

.news-detail-hero__visual {
  min-height: 142px;
  margin-left: -12%;
  overflow: hidden;
}

.news-detail-hero__visual img {
  display: block;
  width: 112%;
  height: 142px;
  object-fit: cover;
  object-position: 54% 49%;
}

.news-detail-body {
  min-height: 720px;
  padding: 52px 28px 68px;
  background: #fff;
}

.news-detail-body > .webgene-detail {
  min-height: 520px;
}

.news-detail-body > .webgene-detail > span {
  display: block;
  padding: 210px 24px;
  color: #77766f;
  text-align: center;
}

.news-detail-style-contract {
  display: none;
}

.news-detail-body > .webgene-blog,
.news-detail-card {
  width: min(100%, 800px);
  margin: 0 auto;
}

.news-detail-card__meta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.news-detail-card__category {
  display: inline-flex;
  min-width: 120px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  color: #fff;
  background: var(--news-detail-green);
  border-radius: 999px;
  font-size: 13px;
  line-height: 1.4;
}

.news-detail-card__category[data-category="お知らせ"] {
  background: #4d4c47;
}

.news-detail-card__category[data-category="採用情報"] {
  background: #cc5518;
}

.news-detail-card__date {
  color: #77766f;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.news-detail-card__title {
  margin: 22px 0 0;
  color: var(--news-detail-green);
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", serif;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.035em;
}

.news-detail-card__image {
  display: block;
  width: min(100%, 600px);
  aspect-ratio: 3 / 2;
  margin: 48px auto 0;
  object-fit: cover;
}

.news-detail-card__image[src=""] {
  display: none;
}

.news-detail-card__content {
  margin-top: 42px;
  color: #20221f;
  font-size: 16px;
  line-height: 1.75;
}

.news-detail-card__content > :first-child {
  margin-top: 0;
}

.news-detail-card__content > :last-child {
  margin-bottom: 0;
}

.news-detail-card__content p,
.news-detail-card__content ul,
.news-detail-card__content ol {
  margin: 0.7em 0;
}

.news-detail-card__content ul,
.news-detail-card__content ol {
  padding-left: 1.45em;
}

.news-detail-card__content strong {
  font-weight: 700;
}

.news-detail-card__back {
  display: flex;
  width: min(100%, 270px);
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin: 52px auto 0;
  color: var(--news-detail-green);
  border: 1px solid var(--news-detail-green);
  border-radius: 4px;
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", serif;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.news-detail-card__back:hover {
  color: #fff;
  background: var(--news-detail-green);
}

@media (max-width: 700px) {
  .news-detail-hero {
    grid-template-columns: 58% 42%;
    min-height: 126px;
  }

  .news-detail-hero__copy {
    min-height: 126px;
    padding-left: 28px;
    clip-path: polygon(0 0, 82% 0, 100% 50%, 82% 100%, 0 100%);
  }

  .news-detail-hero__copy h1 {
    font-size: 34px;
  }

  .news-detail-hero__visual,
  .news-detail-hero__visual img {
    height: 126px;
    min-height: 126px;
  }

  .news-detail-body {
    padding: 38px 20px 56px;
  }

  .news-detail-card__meta {
    gap: 12px;
  }

  .news-detail-card__category {
    min-width: 100px;
    font-size: 12px;
  }

  .news-detail-card__title {
    margin-top: 18px;
    font-size: 25px;
  }

  .news-detail-card__image {
    margin-top: 34px;
  }

  .news-detail-card__content {
    margin-top: 30px;
    font-size: 15px;
  }

  .news-detail-card__back {
    margin-top: 42px;
  }
}
