@charset "UTF-8";
/**
 * Variables
 */
/*
事例詳細　スタイル
*/
.case-hero {
  position: relative;
  padding: 210px 0 30px;
  background: #fff;
  z-index: 10;
  /* ウォーターマーク */
}
@media (max-width: 768px) {
  .case-hero {
    padding: 120px 0 30px;
  }
}
.case-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 32%;
  height: 240px;
  pointer-events: none;
  z-index: -1;
  background-image: url("../images/case_watermark.svg");
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .case-hero::before {
    width: 60%;
    height: 120px;
  }
}
.case-hero__meta {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 18px;
}
.case-hero__meta .post-card__tag {
  margin-bottom: 0;
}
.case-hero__meta .case-date {
  color: #595757;
  font-weight: 700;
}
.case-hero__title {
  font-size: 2.4rem;
  font-weight: 900;
  color: #212028;
  margin-bottom: 72px;
  padding-bottom: 10px;
  letter-spacing: 0.02em;
  border-bottom: 2px solid #212028;
}
@media (max-width: 768px) {
  .case-hero__title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
}
.case-hero__rule {
  border: 0;
  border-top: 2px solid #2d2d2d;
  width: 100%;
  margin-bottom: 40px;
}

.case-grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) {
  .case-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.case-media .wp-post-image,
.case-media img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.case-details .case-info {
  margin-bottom: 80px;
}
.case-details .case-info p {
  color: #212028;
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 1em;
}
.case-details .case-info p:last-child {
  margin-bottom: 0;
}
.case-details .case-issue h3 {
  font-size: 1.2rem;
  color: #212028;
  padding-bottom: 4px;
  border-bottom: 2px solid #EBEBEB;
  margin-bottom: 20px;
}
.case-details .case-issue__content {
  color: #212028;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top: 10px;
}

/* 目次 */
.case-toc {
  margin: 40px 0;
}
.case-toc__title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.case-toc__box {
  background: #f3f3f3;
  padding: 22px 26px;
}

/* 本文 */
.case__body {
  color: #212028;
  line-height: 1.8;
  max-width: 1000px;
  margin: 0 auto;
}

/* フィードバック（感想）ブロック */
.case-feedback {
  border: 1px solid #e6e6e6;
  padding: 48px 48px 36px 48px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .case-feedback {
    padding: 24px;
    margin-bottom: 40px;
  }
}
.case-feedback__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 36px;
  align-items: center;
}
@media (max-width: 768px) {
  .case-feedback__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.case-feedback__img {
  position: relative;
}
.case-feedback__img img {
  display: block;
  width: 100%;
  height: auto;
}
.case-feedback__body {
  color: #212028;
  line-height: 1.8;
}

.return-case__btn {
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .return-case__btn {
    margin-bottom: 60px;
  }
}/*# sourceMappingURL=case.css.map */