@charset "shift_jis";
:root {
  --primary-color: #1b4332; /* ディープグリーン */
  --accent-color: #b79455; /* 上品なゴールド */
  --bg-color: #f8f9fa; /* 薄いグレー */
  --card-bg: #ffffff;
  --text-color: #333333;
  --text-muted: #666666;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* メインコンテンツ */
.container_survey {
  max-width: 800px;
  margin: 30px auto;
  padding: 0 20px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}
/* ヘッダー */
.header_survey {
  background-color: var(--primary-color);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #ffffff;
  text-align: center;
  padding: 40px 20px;
  border-bottom: 5px solid var(--accent-color);
}
.header_survey h1 {
  font-size: 28px;
  margin-bottom: 15px;
  letter-spacing: 1px;
  font-weight: bold;
}
.header_survey p {
  font-size: 15px;
  opacity: 0.9;
}
.pankuzu_wrap {
  margin-bottom: 0;
}
.breadcrumb {
  margin-bottom: 0;
}
/* 質問カード */
.question-card {
  background-color: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  padding: 30px;
  margin-bottom: 30px;
  border-left: 6px solid var(--primary-color);
}
.question-title {
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
  display: flex;
  align-items: flex-start;
}
.question-number {
  background-color: var(--accent-color);
  color: #ffffff;
  font-size: 13px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 10px;
  white-space: nowrap;
}
/* 簡易グラフのスタイル */
.graph-container {
  margin-bottom: 20px;
}
.graph-row {
  margin-bottom: 15px;
}
.graph-label {
  font-size: 15px;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}
.graph-bar-bg {
  background-color: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
  height: 24px;
  width: 100%;
}
.graph-bar-fill {
  background: linear-gradient(90deg, var(--primary-color), #2d6a4f);
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease-in-out;
}
/* 表形式のスタイル（Q3用） */
.result-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 15px;
}
.result-table th, .result-table td {
  border-bottom: 1px solid #dee2e6;
  padding: 12px;
  text-align: left;
}
.result-table th {
  background-color: #f1f3f5;
  color: var(--primary-color);
  font-weight: bold;
}
.result-table td:last-child {
  text-align: right;
  font-weight: bold;
}
/* コメントセクション */
.comments-section {
  margin-top: 25px;
  border-top: 1px dashed #dee2e6;
  padding-top: 20px;
}
.comments-section-title {
  font-size: 15px;
  color: var(--accent-color);
  font-weight: bold;
  margin-bottom: 12px;
}
.comment-box {
  background-color: #f8f9fa;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 12px;
  font-size: 15px;
  position: relative;
}
.comment-box::before {
  content: "“";
  font-size: 2rem;
  color: #dee2e6;
  position: absolute;
  top: -5px;
  left: 8px;
  font-family: Georgia, serif;
}
.comment-text {
  padding-left: 15px;
  color: #495057;
}
/* レスポンシブ対応 */
@media (max-width: 600px) {
  header_survey h1 {
    font-size: 20px;
  }
  .question-card {
    padding: 20px;
  }
  .question-title {
    font-size: 15px;
  }
}