/* option */
.pageOptionText {
  line-height: 1.5em;
  color: #cb9800;
  font-size: 14px;
  font-weight: bold;
  margin: 50px auto;
}

.pageOptionListBox {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.pageOptionListBox li {
  width: 30%;
  margin-right: 5%;
  margin-bottom: 50px;
}

.pageOptionListBox li:nth-child(3n) {
  margin-right: 0;
}

.pageOptionListEachTitle {
  font-size: 20px;
  display: flex;
  height: 2em;
  align-items: center;
  line-height: 1.2em;
}

.pageOptionListEachImage {
  margin: 10px 0;
}

.pageOptionListEachImage img {
  width: 100%;
}

.pageOptionListEachPrice {
  margin: 10px 0;
  line-height: 1.5em;
  font-size: 18px;
}

.pageOptionListEachPrice span {
  color: #fff;
  background-color: #000;
  padding: 2px 10px;
  margin-right: 10px;
  font-size: 12px;
  position: relative;
  top: -2px;
}

.pageOptionListEachCourse {
  margin: 10px 0;
}

.pageOptionListEachCourseTitle {
  color: #fff;
  background-color: #000;
  padding: 2px 10px;
  margin-right: 10px;
  font-size: 12px;
  position: relative;
}

.pageOptionListEachCourseEach {
  background: #eee;
  padding: 4px;
  margin: 3px;
  font-size: 11px;
  display: inline-block;
  line-height: 1.2em;
  font-weight: bold;
}

.pageOptionListEachInfo {
  font-size: 14px;
  margin: 10px 0;
  line-height: 1.5em;
}

@media all and (max-width: 959px) { /* SP */
  /* option */
  .pageOptionText {
    font-size: 12px;
  }
  .pageOptionListBox li {
    width: 100%;
    margin-right: 0;
  }

  .pageOptionListEachImage {
    text-align: center;
  }

  .pageOptionListEachImage img {
    max-width: 300px;
  }

}

@media all and (min-width: 960px) { /* PC */

}