/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 10 2026 | 08:23:12 */
/* === 事例詳細ページ専用 === */

/* タイトル：本文と同じ max-width 1200px に合わせる */
.c-post--case .c-post-header {
  max-width: 1200px;
  margin: 0 auto 2.5em;
  padding: 0 20px;
  box-sizing: border-box;
}
.c-post--case .c-post-header .c-post-header__title {
  font-size: 38px !important;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: left;
  margin: 0 0 0 -0.6em;
  padding-left: 0.6em;
  border-left: 6px solid #2a8c3d;
}

/* アイキャッチ画像：800px＋ドロップシャドウ */
.c-post--case .c-post-thumbnail {
  max-width: 800px;
  margin: 0 auto 2.5em;
}
.c-post--case .c-post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

/* 本文中の画像：800pxで統一＋角丸＋影 */
.c-post--case .c-post-content .wp-block-image,
.c-post--case .c-post-content figure {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.c-post--case .c-post-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

/* 画像キャプション（出典表示） */
.c-post--case .c-post-content figcaption {
  font-size: 0.85rem;
  color: #888;
  text-align: center;
  margin-top: 0.6em;
}

@media (max-width: 767px) {
  .c-post--case .c-post-header .c-post-header__title {
    font-size: 28px !important;
    border-left-width: 5px;
  }
}

/* ===== お客様の声セクション ===== */

/* 枠全体がリンク */
.c-voice__item {
  display: flex;
  gap: 32px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 32px;
  background: #f5f5f0;
  border-radius: 16px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.c-voice__item:hover {
  background: #f0f0ea;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* 画像 */
.c-voice__image {
  flex-shrink: 0;
  width: 280px;
  margin: 0;
}
.c-voice__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* 本文側 */
.c-voice__body {
  flex-grow: 1;
  min-width: 0;
}

/* 会社名の行（矢印を右端に） */
.c-voice__name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 16px !important;
  letter-spacing: .048em;
  margin-bottom: 14px;
}

/* 矢印を円形ボタン風に */
.c-voice__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: 16px;
  border: 1px solid #28823C;
  border-radius: 50%;
  color: #28823C;
  font-size: 14px;
  line-height: 1;
  transition: background 0.3s ease, color 0.3s ease;
}
.c-voice__item:hover .c-voice__arrow {
  background: #28823C;
  color: #fff;
}

/* 記事タイトル＋区切り線 */
.c-voice__subtitle {
  font-size: 16px !important;
  letter-spacing: .048em;
  font-weight: bold;
  color: #333;
  line-height: 1.6;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #ddd;
}

/* 説明文 */
.c-voice__text {
  font-size: 14px !important;
  letter-spacing: .048em;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* スマホ */
@media (max-width: 767px) {
  .c-voice__item {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  .c-voice__image {
    width: 100%;
  }
}