@charset "UTF-8";
.survey-area {
  display: none;
}

.question-section {
  display: none;
}

.question-section.is-active {
  display: block;
}

/* 進捗全体 */
.progress-area {
  max-width: 960px;
  margin: 32px auto;
  padding: 40px 40px;
}

/* ステップ表記 */
.progress-step {
  font-size: clamp(16px, 1vw, 36px);
  font-weight: 700;
  color: #152E44;
  margin-bottom: 40px;
  text-align: center;
}

/* バー全体 */
.progress-bar-wrap {
  display: flex;
  gap: 12px;
}

/* 1本ずつの線 */
.progress-line {
  flex: 1;
  height: 10px; /* ← 太め */
  background-color: #C8C8C8;
  border-radius: 9999px;
}

/* 進んだ分 */
.progress-line.is-active {
  background-color: #013770;
}

.question-box {
  background-color: #FFBF7E;
  border-radius: 20px;
  padding: 32px 24px 36px;
  margin-top: 40px;
  margin-bottom: 56px;
}

.question-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #152E44;
  margin-bottom: 24px;
}

.answer-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.answer-item {
  display: flex;
  align-items: center;
  gap: 56px;
  background-color: #FFF5E2;
  border-radius: 16px;
  padding: 16px 20px;
  border: 3px solid transparent;
  cursor: pointer;
  text-align: left;
  transition: all 0.15s ease;
}

.answer-item.is-selected {
  border-color: #013770;
}

.answer-main {
  font-size: clamp(18px, 1.5vw, 36px);
  font-weight: 700;
  color: #152E44;
  margin: 0 0 4px;
}

.answer-sub {
  font-size: clamp(16px, 1vw, 24px);
  color: #152E44;
  margin: 0;
}

.next-wrap {
  margin-top: 28px;
  text-align: center;
}

.next-button {
  background-color: #013770;
  color: #fff;
  font-size: clamp(16px, 1.5vw, 36px);
  font-weight: 700;
  padding: 16px clamp(16px, 4vw, 80px);
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.next-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* 回答アイコン全体の枠 */
.answer-image {
  width: 100px; /* ← ここで大きさを決める */
  height: 100px;
  flex-shrink: 0; /* 押しつぶされ防止 */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 画像そのもの */
.answer-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* アスペクト比保持 */
}

.question-title--multi {
  font-size: clamp(18px, 1.5vw, 36px);
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  justify-items: center;
}

.answer-item.multi {
  background-color: #FFF5E2;
  border-radius: 16px;
  padding: 16px;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 80%;
}

.answer-item.multi.is-selected {
  border-color: #152E44;
}

.answer-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #152E44;
}

.answer-check img {
  width: 20px;
  height: 20px;
}

.answer-item.multi > img {
  width: 100%;
  max-width: 120px;
  height: auto;
}

.question-nav {
  display: flex;
  justify-content: space-around;
  margin-top: 32px;
}

.prev-button {
  background-color: #D9D9D9;
  color: #152E44;
  font-size: clamp(16px, 1.5vw, 36px);
  font-weight: 700;
  padding: 16px clamp(16px, 4vw, 80px);
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.answer-row {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.answer-item.single {
  background: #FFF5E2;
  border-radius: 16px;
  padding: 16px;
  border: 3px solid transparent;
  cursor: pointer;
  text-align: center;
  flex-direction: column;
  gap: 6px;
}

.answer-item.single.is-selected {
  border-color: #013770;
}

.answer-item.single img {
  max-width: 120px;
  margin-bottom: 8px;
}

.q3width {
  width: 65%;
}

.q4width {
  width: 65%;
}

.secure-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.secure-note img {
  width: 15%;
}

.select-box {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  background-color: #fff;
  border: 2px solid #C8C8C8;
  border-radius: 10px;
  cursor: pointer;
  appearance: none; /* OSデザインを消す */
  -webkit-appearance: none;
  -moz-appearance: none;
}

.answer-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.answer-label img {
  width: 36px;
  height: auto;
  object-fit: contain;
}

.question-title--icon {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #152E44;
  margin-bottom: 16px;
}

.question-title--icon img {
  width: 45px;
  height: auto;
  object-fit: contain;
}

.area-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
  margin-bottom: 50px;
  background-color: #F48E00;
  padding: 16px 24px;
  margin-left: -24px;
  margin-right: -24px;
}

.area-note img {
  width: 30%;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
  margin-top: 2px;
}

.area-note p {
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.6;
  color: #000;
  margin: 0;
  text-align: center;
}

.question-block {
  background-color: #FFF5E2;
  border-radius: 16px;
  padding: 20px 16px;
  margin-bottom: 16px;
}

.answer-box {
  position: relative;
}

.answer-box::after {
  content: "▼";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(70%);
  font-size: 12px;
  color: #152E44;
  pointer-events: none;
}

.select-box:focus {
  outline: none;
  border-color: #013770;
  box-shadow: 0 0 0 3px rgba(1, 55, 112, 0.15);
}

.select-box:disabled {
  background-color: #F2F2F2;
  color: #999;
  cursor: not-allowed;
}

.secure-note--outside {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 24px 0 16px;
  font-size: clamp(16px, 2vw, 24px);
  color: #152E44;
}

.secure-note--outside img {
  width: 10%;
  height: auto;
}

.input-box {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  background-color: #fff;
  border: 2px solid #C8C8C8;
  border-radius: 10px;
}

.input-box:focus {
  outline: none;
  border-color: #013770;
  box-shadow: 0 0 0 3px rgba(1, 55, 112, 0.15);
}

.input-error {
  margin-top: 6px;
  font-size: 14px;
  color: #C0392B;
}

.question-nav--vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.next-button--final {
  position: relative;
  width: 100%;
  max-width: 570px;
  padding: 20px 48px 20px 24px;
  font-size: clamp(16px, 1.5vw, 32px);
  line-height: 1.4;
  text-align: center;
}

.next-button--final .arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
}

.prev-button--bottom {
  background-color: #D9D9D9;
  color: #152E44;
  font-size: clamp(16px, 1vw, 36px);
  font-weight: 700;
  padding: 16px clamp(16px, 2vw, 50px);
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

/* =========================
  送信完了画面
========================= */
.complete-box {
  text-align: center;
}

.complete-icon {
  width: clamp(56px, 8vw, 80px);
  margin: 0 auto 16px;
}

.complete-icon img {
  width: 100%;
  height: auto;
  display: block;
}

.complete-title {
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 700;
  color: #152E44;
  margin-bottom: 16px;
}

/* 説明文 */
.complete-text {
  font-size: clamp(16px, 1.6vw, 22px);
  color: #152E44;
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

/* FFF5E2 の説明枠 */
.complete-note {
  background-color: #FFF5E2;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: left;
}

/* 強調タイトル */
.complete-note-title {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  color: #152E44;
  margin-bottom: 16px;
}

/* 説明本文 */
.complete-note-text {
  font-size: clamp(14px, 1.4vw, 20px);
  color: #152E44;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

@media (max-width: 500px) {
  .company-row {
    flex-direction: column;
    gap: 8px;
  }
  .company-label {
    flex: none;
  }
  .front-main {
    padding: 0 10px;
  }
  .hero-title {
    font-size: clamp(20px, 5vw, 40px);
  }
  .answer-item {
    gap: 10px;
    width: 95%;
    margin: 0 auto;
  }
  .answer-image img {
    max-width: 90%;
  }
  .image-right img {
    width: 60%;
  }
  .question-title--multi {
    font-size: clamp(16px, 1.5vw, 36px);
  }
  .question-box {
    padding: 32px 0px 36px;
  }
  .answer-item.multi {
    padding: 6px;
    gap: 12px;
    width: 90%;
  }
  .answer-item.multi > img {
    max-width: 80px;
  }
  .q3width {
    width: 28%;
  }
  .answer-item.single {
    padding: 6px;
  }
  .answer-item.single img {
    max-width: 100px;
  }
  .q4width {
    width: 80%;
  }
  .question-block {
    width: 90%;
    margin: 0 auto 16px;
  }
  .area-note {
    font-size: clamp(15px, 2vw, 24px);
    gap: 1px;
    margin-left: 0;
    margin-right: 0;
    padding: 16px 6px;
  }
  .next-button--final {
    max-width: 350px;
  }
  .progress-area {
    margin: 0 auto;
    padding: 40px 40px 20px;
  }
  .answer-item.single img {
    width: 90%;
  }
  .strong-block {
    margin-top: 25px;
  }
}/*# sourceMappingURL=question.css.map */