
/* レッスン一覧 */
.QuizWrapper {
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  width: 100%;
}
.QuizHeader{
    width: 1000px;
    margin: 0 auto;
    height: 240px;
    background: -webkit-linear-gradient(290deg,rgb(255,64,64), ghostwhite, rgb(64,255,64));
    background: -moz-linear-gradient(290deg,rgb(255,64,64), ghostwhite, rgb(64,255,64));
    background: -o-linear-gradient(290deg,rgb(255,64,64), ghostwhite, rgb(64,255,64));
    background: linear-gradient(160deg,rgb(255,64,64), ghostwhite, rgb(64,255,64));
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-columns: 300px auto;
    grid-template-columns: 300px auto;
}

.QuizHeader > .Image{
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.QuizHeader > .Image >img{
  width: 240px;
  -webkit-border-radius: 6px;
     -moz-border-radius: 6px;
          border-radius: 6px;
}

.QuizHeader > .description {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 2;
  grid-column: 2;
  margin-top: 5rem;
  margin-right: 5rem;
  letter-spacing: 2px;
  line-height: 1.5rem;
}

.QuizHeader > .description h1{
font-size: 28px;
margin: 2rem 0;
font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
font-weight: bold;
/* border-left: solid 15px deepskyblue;
  padding: 0.5rem 1rem; */
}

.QuizHeader > .description p {
  font-size: 14px;
  border-left: 5px solid rgba(255,255,255,0.5);
  padding: 0.5rem 1rem;
  text-align: justify;
  line-height: 2.5rem;
  letter-spacing: 0.1rem;
}
.QuizListBox {
  width: 1000px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: 2rem auto;
}
.QuizContent {
  width: 49%;
  border: 1px solid #666;
  padding: 1rem;
  -webkit-border-radius: 6px;
     -moz-border-radius: 6px;
          border-radius: 6px;
}
.QuizContent h3 {
  margin: 1rem 0;
  font-size: x-large;
  font-weight: bold;  
}


/* .QuizContent h3::before {
  content: "[アイコン的な何か]";
  color: red;
  font-size: 12px;
  font-weight: 100;
  vertical-align: middle;
  margin-right: 0.5rem;
} */

.QuizContent ul{
    padding: 0;
    list-style: none;
}
.QuizContent li {
  letter-spacing: 1px;
  border-bottom: 1px dotted #ddd;
  padding: 0.5rem 0;
}
.QuizContent li:last-child {
  border-bottom: none;
}
.QuizContent li a {
  color: dodgerblue;
}
.QuizContent li a:hover {
  color: steelblue;
  text-decoration: underline;
}

.QuizContent li span.Progress{
    float: right;
}