@charset "UTF-8";
/*********************************/
/* カラー定義 */
/*********************************/
.outer-wrapper {
  max-width: 40rem;
  margin: 0 auto;
}

/*********************************/
/* はじめにお読みください */
/*********************************/
.readme h5 {
  font-size: 1.2rem;
  margin: 2rem 0;
  color: #043F6D;
}
.readme h5:first-of-type {
  margin-top: 0;
}
.readme h6 {
  font-size: 1rem;
  color: #36658A;
  margin: 1rem 0;
}
.readme h6:first-of-type {
  margin-top: 0;
}

.readme .badge {
  background-color: #043F6D;
  color: #F9F9F9;
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  border-radius: 0;
}

/* ──────────────────────────
   chat
   ────────────────────────── */
#chat .tiles .tile .title {
  height: 3.5rem;
  overflow-y: hidden;
}
#chat .tiles .tile .body {
  color: #35393C;
  font-size: 0.9rem;
  line-height: 1.5;
}

.fa-regular:hover,
.fa-solid:hover {
  cursor: pointer;
}

.tooltip {
  position: absolute;
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  z-index: 1000;
  white-space: nowrap;
  font-size: 12px;
  visibility: visible;
  opacity: 1;
}

/*********************************/
/* 回答提出フォーム */
/*********************************/
.form h6:nth-child(n+2) {
  margin-top: 1rem;
}

/*********************************/
/* 模擬試験 */
/*********************************/
.task-wrapper {
  position: sticky;
  top: 10px;
  left: 10px;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

/*********************************/
/* 模擬試験プルダウン */
/*********************************/
/* 共通のスタイル */
.custom-dropdown, .custom-dropdown-task2, .custom-dropdown-task1 {
  position: relative;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
}
.custom-dropdown .selected-option, .custom-dropdown-task2 .selected-option, .custom-dropdown-task2 .selected-option-task2, .custom-dropdown-task1 .selected-option, .custom-dropdown-task1 .selected-option-task1 {
  padding: 10px;
  white-space: normal;
  overflow: hidden;
}
.custom-dropdown .dropdown-options, .custom-dropdown-task2 .dropdown-options, .custom-dropdown-task2 .dropdown-options-task2, .custom-dropdown-task1 .dropdown-options, .custom-dropdown-task1 .dropdown-options-task1 {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 300px;
  overflow-y: auto;
  border: 1px solid #ccc;
  background: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  z-index: 1000;
}
.custom-dropdown .dropdown-options li, .custom-dropdown-task2 .dropdown-options li, .custom-dropdown-task2 .dropdown-options-task2 li, .custom-dropdown-task1 .dropdown-options li, .custom-dropdown-task1 .dropdown-options-task1 li {
  padding: 10px;
  white-space: normal;
  cursor: pointer;
}
.custom-dropdown .dropdown-options li:hover, .custom-dropdown-task2 .dropdown-options li:hover, .custom-dropdown-task2 .dropdown-options-task2 li:hover, .custom-dropdown-task1 .dropdown-options li:hover, .custom-dropdown-task1 .dropdown-options-task1 li:hover {
  background: #f0f0f0;
}

/* Task1用 */
/* Task2用 */
/*********************************/
/* タスク1模試表示 */
/*********************************/
.canvas-container {
  height: 400px;
  width: 100%;
}

canvas {
  display: block;
  height: 100%;
  width: 100%;
}

/*********************************/
/* モデルアンサー集 */
/*********************************/
.sample-answer {
  background: #FBDAE4;
  color: #043F6D;
  margin-top: 1rem;
  padding: 1rem;
}

.table-white-border {
  border-collapse: collapse;
  width: 100%;
}
.table-white-border th,
.table-white-border td {
  border: 1px solid #F9F9F9;
  padding: 0.5rem;
}

/*********************************/
/* 質問・メッセージ */
/*********************************/
.button-gray-corner button:disabled {
  cursor: not-allowed !important;
  pointer-events: none;
}

/*********************************/
/* Progress bar */
/*********************************/
.progress-bar-steps {
  position: relative;
  width: 80%;
  margin: auto;
}
.progress-bar-steps .bar {
  position: relative;
  height: 14px;
  background: #e0e0e0;
  border-radius: 5px;
}
.progress-bar-steps .fill {
  height: 14px;
  background: #36658A;
  border-radius: 5px;
  width: 0%;
  transition: width 1s ease-in-out;
}
.progress-bar-steps .marker {
  position: absolute;
  top: -30px;
  transform: translateX(-50%);
  font-size: 0.9rem;
  color: #043F6D;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.progress-bar-steps .marker.submitted {
  left: 0%;
}
.progress-bar-steps .marker.assigned {
  left: 25%;
}
.progress-bar-steps .marker.reviewing {
  left: 50%;
}
.progress-bar-steps .marker.finalising {
  left: 75%;
}
.progress-bar-steps .marker.returned {
  left: 100%;
}/*# sourceMappingURL=local.css.map */