/* ================================================================
   共通リセット・ベース
================================================================ */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }

body{
  font-family:-apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color:#333;
  line-height:1.8;
  background:#fff;
  -webkit-text-size-adjust:100%;
}
a{ color:#2563a8; text-decoration:none; }
a:hover{ text-decoration:underline; }

/* ================================================================
   ページレイアウト
================================================================ */
.info-page{
  max-width:780px;
  margin:0 auto;
  padding:0 28px 60px;
  min-height:100vh;
}

/* サイト名 */
.info-site-name{
  padding:28px 0 48px;
  font-size:1rem;
  color:#2563a8;
}
.info-site-name a{
  color:#2563a8;
  text-decoration:none;
}
.info-site-name a:hover{
  text-decoration:underline;
}

/* ================================================================
   見出し
================================================================ */
/* h1 — ページタイトル */
.info-h1{
  font-size:1.75rem;
  font-weight:800;
  color:#1a1a1a;
  line-height:1.4;
  padding-bottom:14px;
  border-bottom:3px solid #2563a8;
  margin-bottom:40px;
}

/* h2 — セクション見出し（左ボーダー） */
.info-h2{
  font-size:1.2rem;
  font-weight:700;
  color:#1a1a1a;
  line-height:1.5;
  padding-left:16px;
  border-left:3px solid #2563a8;
  margin-bottom:20px;
}

/* ================================================================
   本文
================================================================ */
.info-body{
  font-size:1rem;
  line-height:2;
  color:#333;
  margin-bottom:16px;
}
.info-body:last-child{
  margin-bottom:0;
}
.info-body a{
  color:#2563a8;
}
.info-body strong{
  font-weight:700;
}

/* ================================================================
   セクションブロック
================================================================ */
.info-block{
  margin-bottom:44px;
}
.info-block:last-child{
  margin-bottom:0;
}

/* ================================================================
   テーブル型 定義リスト（運営者情報・調査概要）
================================================================ */
.info-table{
  border-top:1px solid #ddd;
}
.info-table-row{
  display:flex;
  align-items:baseline;
  padding:18px 12px;
  border-bottom:1px solid #ddd;
}
.info-table-row dt{
  width:140px;
  min-width:140px;
  flex-shrink:0;
  font-size:1rem;
  font-weight:700;
  color:#1a1a1a;
}
.info-table-row dd{
  font-size:1rem;
  color:#333;
  margin:0;
  padding-left:20px;
}
.info-table-row dd a{
  color:#2563a8;
}

/* ================================================================
   リスト
================================================================ */
/* サービスリスト（掲載サービス） */
.info-service-list{
  list-style:none;
  padding:4px 0 0 20px;
}
.info-service-list li{
  font-size:1rem;
  line-height:2.2;
  color:#333;
}

/* 評価基準リスト */
.info-criteria-list{
  list-style:none;
  padding:4px 0 0 24px;
  margin-bottom:12px;
}
.info-criteria-list li{
  font-size:1rem;
  line-height:2;
  color:#333;
}

/* ================================================================
   テーブル（評価結果・サービス一覧）
================================================================ */
.info-table-wrap{
  overflow-x:auto;
  margin-bottom:8px;
}
.info-eval-table{
  width:100%;
  border-collapse:collapse;
  font-size:1rem;
}
.info-eval-table th,
.info-eval-table td{
  text-align:left;
  padding:14px 12px;
  border-bottom:1px solid #ddd;
  vertical-align:top;
}
.info-eval-table thead th{
  font-weight:700;
  color:#1a1a1a;
  border-bottom:2px solid #bbb;
}
.info-eval-table .total-row td{
  font-weight:700;
  border-bottom:2px solid #bbb;
}

/* ================================================================
   フッター
================================================================ */
.info-footer{
  margin-top:56px;
  padding:32px 0 12px;
  border-top:1px solid #ddd;
}
.info-footer-nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px 32px;
  justify-content:center;
}
.info-footer-nav a{
  font-size:.88rem;
  color:#555;
}

/* ================================================================
   レスポンシブ
================================================================ */
@media(max-width:600px){
  .info-page{
    padding:0 16px 36px;
  }
  .info-site-name{
    padding:20px 0 32px;
    font-size:.9rem;
  }
  .info-h1{
    font-size:1.35rem;
    margin-bottom:28px;
  }
  .info-h2{
    font-size:1.05rem;
  }
  .info-body{
    font-size:.92rem;
  }
  .info-table-row{
    flex-direction:column;
    padding:14px 8px;
  }
  .info-table-row dt{
    width:auto;
    min-width:auto;
    margin-bottom:2px;
    font-size:.92rem;
  }
  .info-table-row dd{
    padding-left:0;
    font-size:.92rem;
  }
  .info-eval-table{
    font-size:.85rem;
  }
  .info-eval-table th,
  .info-eval-table td{
    padding:10px 6px;
  }
}

/* ================================================================
   INFORMATION SECTION（ランキングページ埋め込み用 — 既存）
================================================================ */
.info-section{
  padding:40px 20px 32px;
  background:#f8f6f3;
}
.info-section .info-inner{
  max-width:520px;
  margin:0 auto;
}
.info-heading{
  font-size:1rem;
  font-weight:800;
  text-align:center;
  color:#3a3232;
  margin-bottom:24px;
  letter-spacing:.03em;
}
.info-heading::after{
  content:"";
  display:block;
  width:36px;
  height:3px;
  background:linear-gradient(90deg,#d0c4b4,#e8ddd4);
  border-radius:2px;
  margin:10px auto 0;
}
.info-card{
  background:#fff;
  border:1px solid #ede8e3;
  border-radius:14px;
  padding:20px 18px;
  margin-bottom:14px;
  box-shadow:0 1px 6px rgba(0,0,0,.03);
}
.info-card:last-child{ margin-bottom:0; }
.info-card-title{
  font-size:.84rem;
  font-weight:700;
  color:#3a3232;
  margin-bottom:12px;
  padding-bottom:8px;
  border-bottom:2px solid #f0ebe6;
  display:flex;
  align-items:center;
  gap:6px;
}
.info-card-title::before{
  content:"";
  display:inline-block;
  width:4px;
  height:16px;
  background:#d0b894;
  border-radius:2px;
  flex-shrink:0;
}
.info-dl{ margin:0; }
.info-dl dt{
  font-size:.72rem;
  font-weight:700;
  color:#8a7e6e;
  margin-bottom:2px;
  letter-spacing:.02em;
}
.info-dl dd{
  font-size:.82rem;
  color:#444;
  line-height:1.7;
  margin:0 0 10px;
}
.info-dl dd:last-child{ margin-bottom:0; }
.info-dl dd a{ color:#4a7fc1; text-decoration:none; }
.info-dl dd a:hover{ text-decoration:underline; }
.info-list{ list-style:none; margin:0; padding:0; }
.info-list li{
  font-size:.8rem;
  line-height:1.75;
  color:#555;
  padding:4px 0 4px 16px;
  position:relative;
}
.info-list li::before{
  content:"";
  position:absolute;
  left:2px; top:11px;
  width:5px; height:5px;
  border-radius:50%;
  background:#c4b8a4;
}
.info-text{
  font-size:.8rem;
  line-height:1.75;
  color:#555;
  margin-bottom:10px;
}
.info-text:last-child{ margin-bottom:0; }
