/* ================================================
   SINGLE POST
================================================ */

.single-main {
  max-width: 100%;
  padding: 0;
}

.single-eyecatch {
  width: 100%;
  max-height: 560px;
  overflow: hidden;
}

.single-eyecatch img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.single-article {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 24px 120px;
}

.single-header {
  margin-bottom: 48px;
  border-bottom: 1px solid #ede8e0;
  padding-bottom: 32px;
}

.single-date {
  font-size: 0.8rem;
  color: #333;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.single-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #333;
}

/* 本文 */
.single-content {
  font-size: 1rem;
  line-height: 2.2;
  color: #444;
  letter-spacing: 0.05em;
}

.single-content p {
  margin-bottom: 1.8em;
}

/* H2 */
.single-content h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #333;
  border-left: 4px solid #b8a898;
  background: #faf7f4;
  padding: 14px 20px;
  margin: 56px 0 24px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

/* H3 */
.single-content h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  border-left: 3px solid #d4c8bc;
  padding: 4px 16px;
  margin: 40px 0 16px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

/* ================================================
   記事末尾CTA
================================================ */

.single-cta {
  margin-top: 80px;
  padding: 48px 40px;
  background: #f5f0ea;
  text-align: center;
}

.single-cta__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: #b8a898;
  margin-bottom: 16px;
}

.single-cta__text {
  font-size: 0.9375rem;
  color: #777;
  line-height: 2;
  margin-bottom: 32px;
}

.single-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #06C755;
  color: #fff;
  padding: 16px 40px;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.2s;
}

.single-cta__btn:hover {
  opacity: 0.85;
}

.single-cta__icon {
  font-size: 0.7rem;
  font-weight: 700;
  background: #fff;
  color: #06C755;
  padding: 2px 6px;
  border-radius: 4px;
}

/* 画像 */
.single-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 32px auto;
}

/* SP */
@media (max-width: 767px) {
  .single-eyecatch {
    max-height: 280px;
  }

  .single-eyecatch img {
    height: 280px;
  }

  .single-article {
    padding: 48px 20px 80px;
  }

  .single-title {
    font-size: 1.4rem;
  }

  .single-content h2 {
    font-size: 1.1rem;
  }

  .single-content h3 {
    font-size: 1rem;
  }
}