/* =========================================================
   第三者評価ページ
   ========================================================= */

.hyouka-inner {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}


/* =========================================================
   導入
   ========================================================= */

.hyouka-intro {
  padding: 60px 0;
}

.hyouka-intro__org {
  font-size: 14px;
  color: #666;
}

.hyouka-intro__title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 6px;
}

.hyouka-intro__cert {
  margin-top: 10px;
  font-size: 13px;
  color: #666;
}

.hyouka-intro__catch {
  margin-top: 30px;
  font-size: 26px;
}

.hyouka-intro__lead {
  margin-top: 10px;
  font-size: 16px;
}

.hyouka-intro__text {
  margin-top: 24px;
}

.hyouka-intro__text p {
  margin-bottom: 16px;
  line-height: 1.9;
}


/* =========================================================
   メニュー
   ========================================================= */

.hyouka-menu {
  padding: 40px 0;
  background: #f7f7f7;
}

.hyouka-menu__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* =========================================================
   メニュー（番号付きカード）
   ========================================================= */

.hyouka-menu__list li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #333;
  transition: 0.2s;
}

.hyouka-menu__list li a:hover {
  background: #2f6b5f;
  color: #fff;
}


/* 番号 */

.hyouka-menu__num {
  font-size: 14px;
  font-weight: 700;
  color: #2f6b5f;
  min-width: 32px;
}

.hyouka-menu__list li a:hover .hyouka-menu__num {
  color: #fff;
}


/* テキスト */

.hyouka-menu__text {
  font-size: 14px;
  line-height: 1.6;
}


/* =========================================================
   セクション
   ========================================================= */

.hyouka-section {
  padding: 80px 0;
  border-bottom: 1px solid #eee;
}

.hyouka-section__title {
  font-size: 24px;
}


/* =========================================================
   レスポンシブ
   ========================================================= */

@media (max-width: 768px) {
  .hyouka-menu__list {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   メニュー余白調整（微調整）
   ========================================================= */

.hyouka-menu__list li {
  list-style: none;
}

/* =========================================================
   第三者評価ページ セクション本文
   ========================================================= */

.hyouka-section__body {
  margin-top: 32px;
}


/* =========================================================
   評価ポイント
   ========================================================= */

.hyouka-point {
  padding: 24px 0;
  border-top: 1px solid #e8e8e8;
}

.hyouka-point:first-child {
  border-top: none;
  padding-top: 0;
}

.hyouka-point__title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  line-height: 1.6;
}

.hyouka-point__num {
  flex: 0 0 auto;
  min-width: 48px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e8f1ee;
  color: #2f6b5f;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.hyouka-point__label {
  font-size: 22px;
  font-weight: 700;
  color: #2f6b5f;
}

.hyouka-point__text {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  color: #333333;
}

@media (max-width: 768px) {
  .hyouka-point__title {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hyouka-point__num {
    min-width: auto;
  }

  .hyouka-point__label {
    font-size: 20px;
  }
}

/* =========================================================
   フロー画像
   ========================================================= */

.hyouka-flow {
  margin-top: 32px;
  text-align: center;
}

.hyouka-flow img {
  max-width: 100%;
  height: auto;
  border: 1px solid #e5e5e5;
}

/* =========================================================
   画像表示（共通）
   ========================================================= */

.hyouka-image {
  margin-top: 24px;
  text-align: center;
}

.hyouka-image img {
  max-width: 100%;
  height: auto;
}

/* =========================================================
   実績画像（少しだけ強調）
   ========================================================= */

#sec05 .hyouka-image img {
  border: 1px solid #ddd;
  background: #fff;
}

/* =========================================================
   テーブル
   ========================================================= */

.hyouka-table-wrap {
  margin-top: 24px;
  overflow-x: auto;
}

.hyouka-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.hyouka-table th,
.hyouka-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
}

.hyouka-table th:first-child,
.hyouka-table td:first-child {
  text-align: left;
}

.hyouka-table thead th {
  background: #f3f3f3;
  font-weight: 700;
}


/* =========================================================
   オプション
   ========================================================= */

.hyouka-option-lead {
  margin-top: 32px;
  font-weight: 600;
}

.hyouka-option__title {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
  color: #2f6b5f;
}

.hyouka-note {
  margin-top: 20px;
  font-size: 14px;
  color: #555;
}

/* =========================================================
   外部リンク（実績）
   ========================================================= */

.hyouka-link {
  margin-top: 32px;
  padding: 20px;
  background: #f7f7f7;
  text-align: center;
}

.hyouka-link__text {
  margin-bottom: 12px;
  font-weight: 600;
}

.hyouka-link__btn {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #2f6b5f;
  color: #2f6b5f;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

.hyouka-link__btn:hover {
  background: #2f6b5f;
  color: #fff;
}


/* =========================================================
   苦情相談窓口（シンプル・線なし）
   ========================================================= */

.hyouka-contact-simple {
  margin-top: 40px;
}

.hyouka-contact-simple__title {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
  color: #2f6b5f;
}

.hyouka-contact-simple__row {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  font-size: 15px;
}

.hyouka-contact-simple__row .label {
  min-width: 120px;
  font-weight: 700;
  color: #2f6b5f;
}

.hyouka-contact-simple__row a {
  color: #2f6b5f;
  text-decoration: none;
}

.hyouka-contact-simple__row a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hyouka-contact-simple__row {
    flex-direction: column;
    gap: 4px;
  }
}

/* =========================================================
   CTA（見積依頼）
   ========================================================= */

.hyouka-cta__lead {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  color: #2f6b5f;
}

.hyouka-cta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.hyouka-cta__item {
  padding: 28px 24px;
  background: #f7f7f7;
}

.hyouka-cta__title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #333333;
}

.hyouka-cta__btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #2f6b5f;
  background: #ffffff;
  color: #2f6b5f;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s ease;
}

.hyouka-cta__btn:hover {
  background: #2f6b5f;
  color: #ffffff;
}

.hyouka-cta__note {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: #555555;
}

@media (max-width: 768px) {
  .hyouka-cta {
    grid-template-columns: 1fr;
  }

  .hyouka-cta__item {
    padding: 24px 20px;
  }
}