@charset "utf-8";

.pcOnly {
  display: block;
}

br.pcOnly {
  display: inline;
}

.spOnly {
  display: none;
}

@media only screen and (max-width: 560px) {
  .pcOnly {
    display: none !important;
  }

  .spOnly {
    display: block;
  }

  br.spOnly {
    display: inline;
  }
}


/** --------------------------------------------------------------------------------
 * フォント
 */
@font-face {
  font-family: icon;
  src:url('/fonts/icon.eot');
  src:url('/fonts/icon.eot?#iefix') format('embedded-opentype'),
    url('/fonts/icon.woff') format('woff'),
    url('/fonts/icon.ttf') format('truetype'),
    url('/fonts/icon.svg#icon') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* アイコン内容メモ
[class^="icon-"], [class*=" icon-"] {
  font-family: 'icon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-chevron-down:before {
  content: "\f0a3";
}
.icon-chevron-left:before {
  content: "\f0a4";
}
.icon-chevron-right:before {
  content: "\f078";
}
.icon-chevron-up:before {
  content: "\f0a2";
}
.icon-home2:before {
  content: "\e901";
}
.icon-files-empty:before {
  content: "\e925";
}
.icon-clock:before {
  content: "\e94e";
}
.icon-calendar:before {
  content: "\e953";
}
.icon-search:before {
  content: "\e986";
}
.icon-cog:before {
  content: "\e994";
}
.icon-notification:before {
  content: "\ea08";
}
.icon-question:before {
  content: "\ea09";
}
.icon-plus:before {
  content: "\ea0a";
}
.icon-minus:before {
  content: "\ea0b";
}
.icon-cross:before {
  content: "\ea0f";
}
.icon-checkmark:before {
  content: "\ea10";
}
.icon-checkmark2:before {
  content: "\ea11";
}
*/

/** ------------------------------------------------------------
 * 基礎 + footer下部固定
 */
html,
body {
  height: 100%;
}

body {
  min-width: 320px;
  color: #333;
  background-color: #fff;
  font-size: 16px;
}

.wrap {
  min-height: 100%;
}

.wrap__inner {
  padding-bottom: 40px;
}

/* リンク */
a {
  color: #197ca6;
}

/** ------------------------------------------------------------
 * footer
 */
.footer {
  margin-top: -40px;
  padding: 0 10px;
  height: 40px;
  line-height: 40px;
  background-color: #010005;
  font-size: 12px;
}

.logout {
  float: right;
}

.logout a {
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  display: inline-block;
  min-width: 7em;
  line-height: 26px;
  color: #000;
  background-color: #fff;
  text-decoration: none;
  text-align: center;
}

.copyright {
  color: #fff;
  text-align: center;
  float: left;
}

.copyright a {
  color: #bbb;
}

/** ------------------------------------------------------------
 * header
 */
.header {
  border-bottom: 4px solid #010005;
}

.header__main {
  position: relative;
  background-color: #fff;
}

.header__main::after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0;
  line-height: 0;
  font-size: 0;
  clear: both;
}

.logo {
  margin-left: 4px;
  height: 46px;
  display: block;
}

@media only screen and (max-width: 560px) {
  .logo {
    height: 38px;
  }
}

.home {
  margin: auto;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  min-width: 7em;
  height: 26px;
  line-height: 26px;
  font-size: 12px;
  text-transform: uppercase;
}

.home a {
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  display: block;
  color: #fff;
  background-color: #010005;
  text-decoration: none;
  text-align: center;
}

/* ユーザ名 */
.userName {
  padding: 3px 10px 2px 0;
  border-top: 1px dotted #bbb;
  background-color: #fff;
  text-align: right;
  font-size: 11px;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/** ------------------------------------------------------------
 * ログイン
 */
.loginWrap {
  background: url("/images/pc/contents/login/bg.jpg") no-repeat 50% 50%;
  -webkit-background-size: cover;
     -moz-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
}

/** ------------------------------
 * login
 */
.login {
  margin: 60px auto;
  display: table;
  table-layout: fixed;
  width: 96%;
  max-width: 1100px;
}

.loginText,
.loginForm {
  padding: 0 30px;
  display: table-cell;
  vertical-align: middle;
}

.loginForm {
  width: 360px;
}

.loginForm__wrap {
  margin: 0 auto;
  padding: 25px 30px;
  border: 1px solid #bbb;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  color: #333;
  background-color: #fff;
  line-height: 1.5;
  font-size: 16px;
  font-weight: bold;
}

@media only screen and (max-width:800px) {
  .login {
    margin: 20px 15px;
    display: block;
    width: auto;
    max-width: none;
  }

  .loginText,
  .loginForm {
    margin: 20px 0;
    padding: 0;
    display: block;
    width: auto;
  }

  .loginForm__wrap {
    max-width: 360px;
  }
}

/* ようこそ */
.loginText__title {
  margin-bottom: 20px;
}

.loginText__title img {
  width: 100%;
  max-width: 550px;
}

.loginText__body {
  margin-top: 30px;
  padding: 0 6px;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 3px 3px 2px #fff, -3px 3px 2px #fff, 3px -3px 2px #fff, -3px -3px 2px #fff;
}

@media only screen and (max-width:800px) {
  .loginText__body {
    font-size: 16px;
  }
}

/* フォームパーツ */
.loginForm input {
  margin: 5px 0 15px;
  padding: 0 10px;
  border: 1px solid #bbb;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  height: 3em;
  line-height: 3em;
  font-weight: normal;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 15px;
}

.loginForm button {
  margin: 0;
  padding: 0;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  border: none;
  display: block;
  width: 100%;
  height: 3em;
  line-height: 3em;
  color: #fff;
  background-color: #010005;
  font-size: 18px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  font-family: ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", メイリオ, sans-serif;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}


/** ------------------------------
 * flashMessage
 */
.flashMessage,
.errorMessage,
.noticeMessage {
  width: 640px;
  max-width: 100%;
  margin: 20px auto;
}

.noticeMessage {
  width: 740px;
}

@media only screen and (max-width: 560px) {
  .flashMessage,
  .errorMessage,
  .noticeMessage {
    width: 96%;
  }
}

.errorMessage__title {
  padding: 3px 20px;
  -webkit-border-radius: 3px 3px 0 0;
     -moz-border-radius: 3px 3px 0 0;
          border-radius: 3px 3px 0 0;
  color: #c33;
  display: inline-block;
  vertical-align: bottom;
  color: #fff;
  background-color: #c33;
  text-align: center;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
}

.flashMessage__body,
.errorMessage__body,
.noticeMessage__body {
  margin-bottom: 15px;
  padding: 14px;
  border: 1px solid #c33;
  -webkit-border-radius: 0 3px 3px 3px;
     -moz-border-radius: 0 3px 3px 3px;
          border-radius: 0 3px 3px 3px;
  color: #c33;
  background-color: #fee;
  font-size: 12px;
  font-weight: normal;
}

.flashMessage__body {
  border: 1px solid #268d6a;
  color: #268d6a;
  background-color: #eeffee;
  font-size: 14px;
}

.noticeMessage__body {
  margin-bottom: 0;
  border: 1px solid #268d6a;
  color: #268d6a;
  background-color: #eeffee;
  font-size: 14px;
}

/** ------------------------------
 * コンテンツ幅調整枠
 */
.frame {
  margin: 0 auto;
  max-width: 1000px;
}

.frameS {
  margin: 0 auto;
  max-width: 560px;
}

/** ------------------------------
 * タイトル
 */
.titleBar {
  margin: 20px 0 0 0;
  padding: 10px 10px 10px 20px;
  border: 1px solid #bbb;
  position: relative;
  color: #fff;
  background-color: #010005;
  font-size: 120%;
}

@media only screen and (max-width: 1000px) {
  .titleBar {
    margin-top: -1px;
    border-right: none;
    border-left: none;
  }
}

.titleBar::before {
  content: "";
  border-left: 4px solid #fff;
  position: absolute;
  top: 11px;
  bottom: 11px;
  left: 10px;
  display: block;
}

/** ------------------------------
 * 管理者メニュー
 */
.buttonMenu {
  margin: 30px auto 80px;
  list-style-type: none;
  font-size: 26px;
  text-align: center;
}

.buttonMenu::after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0;
  line-height: 0;
  font-size: 0;
  clear: both;
}

.buttonMenu__list {
  padding: 0 10px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  float: left;
  width: 50%;
}

.buttonMenu__list a {
  padding: 30px 10px;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  border: 1px solid #bbb;
  display: block;
  color: #197ca6;
  background-color: #f6f6f6;
  text-decoration: none;
}

.buttonMenu__list a::before {
  margin: 0 15px;
  display: inline-block;
  font-family: icon;
  font-size: 50px;
  vertical-align: middle;
  line-height: 1.2;
}

.buttonMenu__list--managerProgress a::before {
  content: "\e953";
}

.buttonMenu__list--managerHistory a {
  color: #3ed22f;
}

.buttonMenu__list--managerHistory a::before {
  content: "\e925";
}

.buttonMenu__list--managerHistory2 a {
  color: #3ed22f;
}

.buttonMenu__list--managerHistory2 a::before {
  /* content: "\e986"; */
  content: "\e925";
}

.buttonMenu__list--userManagement a::before {
  content: "\e994";
}

.buttonMenu__list--sendMail a {
  color: #3ed22f;
}

.buttonMenu__list--sendMail a::before {
  content: "";
  display: inline-block;
  background-image: url('/images/pc/contents/mail-icon.png');
  background-size: contain;
  background-repeat: no-repeat;
  margin: 5px 15px;
  width: 50px;
  height: 50px;
  vertical-align: middle;
  line-height: 1.2;
}

@media only screen and (max-width: 560px) {
  .buttonMenu {
    margin-bottom: 30px;
    font-size: 16px;
  }

  .buttonMenu__list a::before {
    display: block;
    text-align: center;
  }
}

@media only screen and (max-width: 400px) {
  .buttonMenu__list a {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

/** ------------------------------
 * courseType
 */
.courseType {
  margin: 30px 0;
}

.courseType::after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0;
  line-height: 0;
  font-size: 0;
  clear: both;
}

.courseType__item {
  /*
  float: left;
  width: 50%;
  */
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

/*
.courseType__item {
  padding-right: 10px;
}
*/

/*
.courseType__item + .courseType__item {
  padding-right: 0;
  padding-left: 10px;
}
*/

@media only screen and (max-width: 1000px) {
  .courseType {
    margin-right: 10px;
    margin-left: 10px;
  }
}

@media only screen and (max-width: 560px) {
  /*
  .courseType {
    margin: 0;
  }

  .courseType__item {
    float: none;
    width: auto;
  }

  .courseType__item {
    padding-right: 0;
  }

  .courseType__item + .courseType__item {
    padding-left: 0;
  }
  */
}

/* タイトル */
.courseType__title {
  padding: 10px 10px 10px 50px;
  border: 1px solid #bbb;
  border-bottom: none;
  position: relative;
  line-height: 1.2; 
  font-weight: bold;
}

.courseType__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: block;
  width: 40px;
  background-color: #010005;
}

.courseType__title--optional::before {
  background-color: #259c15;
}

.courseType__title::after {
  content: "\e925";
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: block;
  width: 40px;
  height: 1.2em;
  line-height: 1.2em;
  color: #fff;
  font-family: icon;
  text-align: center;
}

/* 中身 */
.courseTypeList {
  list-style-type: none;
  border: 1px solid #bbb;
}

@media only screen and (max-width: 560px) {
  /*
  .courseType__item + .courseType__item .courseType__title {
    border-top: none;
  }

  .courseType__title {
    border-right: none;
    border-left: none;
  }

  .courseTypeList {
    border-right: none;
    border-left: none;
  }
  */
}

.courseTypeList__item + .courseTypeList__item {
  border-top: 1px solid #bbb;
}

.courseTypeList__item--closed {
  background-color: #f6f6f6;
}

.courseTypeList a {
  padding: 10px 20px 10px 10px;
  position: relative;
  display: block;
  text-decoration: none;
}

.courseTypeList a::after {
  content: "\f078";
  margin: auto;
  position: absolute;
  top: 0;
  right: -3px;
  bottom: 0;
  display: block;
  width: 1em;
  height: 1.2em;
  line-height: 1.2em;
  color: #bbb;
  font-family: icon;
}

/* 完了日 */
.completionDate {
  display: inline-block;
  color: #197ca6;
  font-size: 12px;
  font-weight: bold;
}

@media only screen and (max-width: 560px) {
  .completionDate {
    display: block;
  }
}

.completionDate::before {
  margin: 0 3px 0 2px;
  content: "\ea10";
  margin-right: 4px;
  color: #197ca6;
  font-family: icon;
}

.certificateButton .button {
  border-top: none;
  padding-top: 0;
}

.certificateButton .button > * {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.certificateButton .button > span {
  cursor: default;
}

.certificateButton .button > *::before {
  content: "";
  display: inline-block;
  background-image: url('/images/pc/contents/cert-icon.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  vertical-align: middle;
}

.certificateButton .note {
  text-align: center;
  font-size: 14px;
}

/** ------------------------------
 * テーマ検索
 */
#tabBody_02.themeSearch,
.themeSearchTitle + .themeSearch {
  display: none;
}

.themeSearchTitle {
  padding: 10px 40px;
  position: relative;
  color: #fff;
  background-color: #29b9d3;
  text-align: center;
  cursor: pointer;
}

.themeSearchTitle::after {
  content: "\ea0a";
  margin: auto;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  display: block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  color: #29b9d3;
  background-color: #fff;
  font-family: icon;
  font-size: 14px;
}

.themeSearchTitle--open::after {
  content: "\ea0b";
}

.themeSearch {
  padding: 0 0 40px;
  position: relative;
  font-size: 14px;
  text-align: center;
}

.themeSearch--bg {
  border-bottom: 1px solid #bbb;
  background-color: #f6f6f6;
}

@media only screen and (max-width: 1000px) {
  .themeSearch form {
    margin: 0 10px;
  }
}

.themeSearch__item {
  padding-top: 20px;
}

.themeSearch__item::after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0;
  line-height: 0;
  font-size: 0;
  clear: both;
}

.themeSearch__item::after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0;
  line-height: 0;
  font-size: 0;
  clear: both;
}

.themeSearch__input {
  padding: 6px;
  -webkit-border-radius: 3px 0 0 3px;
     -moz-border-radius: 3px 0 0 3px;
          border-radius: 3px 0 0 3px;
  border: 1px solid #bbb;
  display: block;
  float: left;
  width: 70%;
  height: 40px;
  line-height: 26px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  font-size: 14px;
}

input[type="date"].themeSearch__input {
  width: auto;
  display: inline;
  float: none;
}

.themeSearch__select {
  padding: 6px 0 6px 6px;
  -webkit-border-radius: 0 3px 3px 0;
     -moz-border-radius: 0 3px 3px 0;
          border-radius: 0 3px 3px 0;
  border: 1px solid #bbb;
  border-left: none;
  display: block;
  float: left;
  width: 30%;
  height: 40px;
  line-height: 26px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  font-size: 14px;
}

.themeSearch.managerHistory .themeSearch__select {
  display: inline;
  border-left: 1px solid #bbb;
  float: none;
  width: auto;
  min-width: 30%;
}

.themeSearch button {
  margin: 0 auto;
  padding: 0;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  border: none;
  display: block;
  width: 100%;
  height: 3em;
  line-height: 3em;
  color: #fff;
  background-color: #197ca6;
  font-size: 18px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  font-family: ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", メイリオ, sans-serif;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.themeSearch.managerHistory button {
  display: inline-block;
  width: 30%;
}

.themeSearch.managerHistory button + button {
  margin-left: 1em;
}

@media only screen and (max-width: 1000px) {
  .themeSearch button {
    width: 100%;
  }
}

.themeSearch form label {
  margin: 3px 0.3em 0 0;
  padding: 5px 1em 5px 0;
}

.themeSearch form label:last-of-type {
  margin-left: 1em;
}

.themeSearch input[type="radio"],
.themeSearch input[type="checkbox"] {
  margin: -1px 6px 0 2px;
}

/** ------------------------------
 * courseList
 */
.courseListTitle {
  margin-top: 20px;
  padding: 10px 10px 10px 50px;
  border: 1px solid #bbb;
  border-bottom: none;
  position: relative;
  line-height: 1.2; 
  font-weight: bold;
}

@media only screen and (max-width: 1000px) {
  .courseListTitle {
    margin-top: -1px;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #bbb;
  }
}

.courseListTitle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: block;
  width: 40px;
  background-color: #197ca6;
}

.courseListTitle::after {
  content: "\e986";
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: block;
  width: 40px;
  height: 1.2em;
  line-height: 1.2em;
  color: #fff;
  font-family: icon;
  text-align: center;
  font-weight: normal;
}

.courseList {
  margin: 0 0 30px;
  border: 1px solid #bbb;
  list-style-type: none;
}

@media only screen and (max-width: 1000px) {
  .courseList {
    margin: 0;
    border: none;
  }
}

.courseList__item + .courseList__item {
  border-top: 1px solid #bbb;
}

.courseList__item--closed {
  background-color: #f6f6f6;
}

.courseList__item a {
  padding: 10px 20px 10px 36px;
  position: relative;
  display: block;
  text-decoration: none;
}

.courseList__item a::after {
  content: "\f078";
  margin: auto;
  position: absolute;
  top: 0;
  right: -3px;
  bottom: 0;
  display: block;
  width: 1em;
  height: 1.2em;
  line-height: 1.2em;
  color: #bbb;
  font-family: icon;
}

/* 任意・必須アイコン */
.conditionIcon {
  margin: auto;
  -webkit-border-radius: 100px;
     -moz-border-radius: 100px;
          border-radius: 100px;
  position: absolute;
  top: 0;
  left: 5px;
  bottom: 0;
  display: block;
  width: 2.6em;
  height: 2.6em;
  line-height: 2.6em;
  color: #fff;
  font-size: 10px;
  text-align: center;
}

.conditionIcon--required {
  background-color: #197ca6;
}

.conditionIcon--notRequired {
  background-color: #259c15;
}

/** ------------------------------
 * 動画リスト
 */
.movieList {
  margin: 20px 0 30px;
  list-style-type: none;
  text-align: center;
}

.movieList__item {
  text-align: center;
}

.movieList__item + .movieList__item {
  margin-top: 30px;
}

.movieList__item img,
.movieList__item iframe {
  width: 100%;
  max-width: 760px;
}

.movieList__item--sp {
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}

.movieList__item--sp iframe {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

.movieTitle {
  margin-bottom: 7px;
  color: #197ca6;
  font-weight: bold;
  font-size: 120%;
}

/* js */
.video-target {
  cursor: pointer;
}

.video-wrapper {
  display: none;
  position: fixed;
  min-width: 100%;
  min-height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  z-index: 21000;
}

.video-frame {
  position: absolute;
  top: 50%;
  left: 50%;
}

.video-close {
  float:right;
  margin-top:-30px;
  margin-right:-30px;
  cursor:pointer;
  color: #fff;
  border: 1px solid #AEAEAE;
  border-radius: 30px;
  background: #605F61;
  font-size: 31px;
  font-weight: bold;
  display: inline-block;
  line-height: 0px;
  padding: 11px 3px;
}

.video-close:before {
  content: "×";
}

.video-link {
  position: relative;
  display: inline-block;  
}

.video-link:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: url("/images/pc/contents/play.png") no-repeat 50% 50%;  
  -webkit-transition: all 0.4s ease;
     -moz-transition: all 0.4s ease;
      -ms-transition: all 0.4s ease;
       -o-transition: all 0.4s ease;
          transition: all 0.4s ease;
}

.video-link:hover:after {
  opacity: 0.7;
}

/** ------------------------------
 * 完了表
 */
.progressWrap {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.progress {
  font-size: 15px;
  background-color: rgba(255,255,255,0.7);
}

.progress th,
.progress td {
  padding: 12px 4px;
}

.progress th {
  font-weight: bold;
  width: 150px;
}

.progress th.tableTitle {
  color: #fff;
  background-color: #010005;
}

.progress td {
  text-align: center;
}

.progress__clear {
  background-color: #ccc;
}

.progress__clear span {
  border: 1px solid #c00;
  -webkit-border-radius: 5em;
     -moz-border-radius: 5em;
          border-radius: 5em;
  width: 1.4em;
  height: 1.4em;
  line-height: 1.4;
  color: #c00;
  text-align: center;
  font-size: 13px;
  display: inline-block;
}

.fixed_header_display_none_at_print {
  background-color: #eee !important;
}

/** ------------------------------
 * タブ
 */
.tabButton {
  padding: 6px;
  background-color: #40c2e2;
  font-weight: bold;
}

.tabButton li {
  display: inline-block;
}

.tabButton a {
  padding: 0 30px;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  display: inline-block;
  line-height: 2.6em;
  color: #fff;
  background-color: #15a0c2;
  text-decoration: none;
  font-size: 13px;
  -webkit-box-shadow: 1px 1px 1px #087995 inset;
     -moz-box-shadow: 1px 1px 1px #087995 inset;
          box-shadow: 1px 1px 1px #087995 inset;
}

.tabButton__current a {
  color: #197ca6;
  background-color: #fff;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}

.tabButton select {
  padding: 6px 0 6px 6px;
  -webkit-border-radius: 0 3px 3px 0;
     -moz-border-radius: 0 3px 3px 0;
          border-radius: 0 3px 3px 0;
  border: 1px solid #bbb;
  border-left: none;
  display: inline-block;
  height: 2.5em;
  line-height: 26px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  font-size: 14px;
}

/** ------------------------------
 * 標準のボタンリンク
 */
.button {
  border-top: 1px solid #bbb;
  padding: 10px 0;
  text-align: center;
}

.progressWrap + .button {/* 完了表の真下 */
  margin-top: -1px;
}

.button > * {
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  border: none;
  display: inline-block;
  width: 100%;
  max-width: 560px;
  height: 3em;
  line-height: 3em;
  color: #fff;
  background-color: #010005;
  font-size: 14px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  font-family: ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", メイリオ, sans-serif;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  text-transform: uppercase;
}

.button.disabled > * {
  background-color: #888 !important;
}

.certificateButton .button > * {
  max-width: 420px;
  background-color: #197ca6;
}

.certificateButton .button.disabled > * {
  cursor: not-allowed;
}

@media only screen and (max-width: 560px) {
  .button {
    padding-right: 10px;
    padding-left: 10px;
  }
  .button > * {
    display: block;
    width: auto;
    max-width: none;
  }
}

/** ------------------------------
 * 受講ログ
 */
.resultList {
  margin: 20px 0;
  border: 1px solid #bbb;
  list-style-type: none;
}

.pager + .resultList {
  margin-top: 0;
}

.resultList + .pager {
  margin-top: -10px;
}

@media only screen and (max-width: 1000px) {
  .resultList {
    margin: -1px 0;
    border-right: none;
    border-left: none;
  }

  .resultList + .pager {
    margin-top: 10px;
  }
}

.resultList__item {
  padding: 10px 10px 10px 7.5em;
  position: relative;
}

.resultList__item + .resultList__item {
  border-top: 1px solid #bbb;
}

.resultList__date {
  margin: auto;
  border-right: 1px dotted #ddd;
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;
  display: block;
  width: 10em;
  height: 1.2em;
  line-height: 1.2em;
  color: #999;
  font-size: 10px;
}

@media only screen and (max-width: 560px) {
  .resultList__item {
    padding-left: 5.2em;
  }

  .resultList__date {
    border-right: none;
    width: 6.5em;
    height: 2.4em;
  }
}

.resultList__pass {
  border-bottom: 5px solid #fe0;
  color: #227dee;
  font-weight: bold;
}

.resultList__notPass {
  color: #e22;
}

/** ------------------------------
 * 質問
 */
.questionStartButton {
  padding: 0 0 40px;
  text-align: center;
}

.questionStartButton > * {
  margin: 0;
  padding: 0;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  border: none;
  display: inline-block;
  width: 100%;
  max-width: 480px;
  height: 3em;
  line-height: 3em;
  color: #fff;
  background-color: #dd0000;
  font-size: 18px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  font-family: ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", メイリオ, sans-serif;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

@media only screen and (max-width: 560px) {
  .questionStartButton {
    padding-right: 10px;
    padding-left: 10px;
  }

  .questionStartButton > * {
    display: block;
    width: 100%;
    max-width: none;
  }
}

.questionStartButton > *::before {
  margin-right: 8px;
  content: "\ea10";
  font-family: icon;
}

.questionStartClearedLabel {
  width: 240px;
  margin: 0 auto 16px;
  border: 1px solid #c00;
  border-radius: 8px;
  padding: 0.5em 0;
  text-align: center;
  font-weight: bold;
  background-color: #ffffe0;
}

.questionStartClearedLabel .date {
  display: inline-block;
}

.questionStartClearedLabel .mark {
  display: inline-block;
  color: #c00;
}

/* Q＆A */
.questionTitle {
  padding: 30px 0;
  width: 100%;
  display: table;
  font-weight: bold;
}

.questionTitle div {
  display: table-cell;
  vertical-align: middle;
}

.questionTitle__numberDiv {
  width: 90px;
}

.questionTitle__number {
  display: block;
  position: relative;
  width: 100%;
  color: #d00;
  font-size: 200%;
  text-align: center;
}

.questionTitle__number::before,
.questionTitle__number::after {
  border: 2px solid #d00;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0.2em;
}

.questionTitle__number::before {
  border-right: none;
  left: 0;
}

.questionTitle__number::after {
  border-left: none;
  right: 0;
}

.questionTitle__contentDiv {
  padding-left: 20px;
}

.questionTitle__content {
  font-size: 120%;
  line-height: 1.6;
}

@media only screen and (max-width: 1000px) {
  .questionTitle__numberDiv {
    width: 70px;
    padding-left: 10px;
  }

  .questionTitle__number {
    font-size: 150%;
  }

  .questionTitle__contentDiv {
    padding-left: 12px;
    padding-right: 12px;
  }

  .questionTitle__content {
    font-size: 110%;
    line-height: 1.5;
  }
}

.selectAnswer {
  margin-bottom: 30px;
  list-style-type: none;
}

.selectAnswer__item {
  border: 1px solid #bbb;
}

@media only screen and (max-width: 1000px) {
  .selectAnswer {
    width: 90%;
    margin: 0 auto 30px;
  }
}

.selectAnswer__item + .selectAnswer__item {
  border-top: none;
}

.selectAnswer__item label {
  padding: 10px 10px 10px 35px;
  position: relative;
  display: block;
}

.selectAnswer__item label input {
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  width: 1em;
  height: 1em;
  display: block;
}


@media only screen and (max-width: 1000px) {
  .answerButton {
    margin: 0 10px;
  }
}

.answerButton > * {
  margin: 0 auto;
  padding: 0;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  border: none;
  display: block;
  width: 100%;
  max-width: 560px;
  height: 3em;
  line-height: 3em;
  color: #fff;
  background-color: #dd0000;
  font-size: 18px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  font-family: ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", メイリオ, sans-serif;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

/** ------------------------------
 * 結果発表
 */
.correct,
.wrong {
  margin-bottom: 40px;
  padding: 36px 10px 40px;
  border-bottom: 1px solid #bbb;
  background-color: #f9f9f9;
  font-size: 50px;
  line-height: 1.2;
  text-align: center;
}

.correct span,
.wrong span {
  padding: 0 0.2em;
  display: inline-block;
  background: linear-gradient(transparent 70%, #fff000 0%);
}

.correct span::before,
.wrong span::before {
  margin-right: 10px;
  font-weight: bold;
  font-size: 110%;
}

.correct {
  color: #227dee;
}

.correct span::before {
  margin-right: 10px;
  content: "";
  -webkit-border-radius: 100px;
     -moz-border-radius: 100px;
          border-radius: 100px;
  display: inline-block;
  vertical-align: middle;
  width: 0.65em;
  height: 0.65em;
  border: 0.3em solid #227dee;
  font-size: 38px;
}

.wrong {
  color: #e22;
}

.questionBody {
  margin: 40px 0;
  font-size: 120%;
  font-weight: bold;
  text-align: left;
}

@media only screen and (max-width: 1000px) {
  .questionBody {
    margin-right: 10px;
    margin-left: 10px;
    font-size: 110%;
  }
}

.wrong span::before {
  margin-right: 10px;
  content: "\ea0f";
  font-family: icon;
  font-size: 38px;
}

.showAnswer {
  color: #e22;
  text-align: center;
  font-size: 110%;
  line-height: 26px;
}

@media only screen and (max-width: 1000px) {
  .showAnswer {
    margin-right: 10px;
    margin-left: 10px;
  }
}

.showAnswer__wrap {
  display: inline-block;
  list-style-type: none;
  text-align: left;
}

.showAnswer__list {
  padding-left: 38px;
  position: relative;
}

.showAnswer__list + .showAnswer__list {
  margin-top: 1.5em;
}

.showAnswer__list--correct {
  color: #227dee;
  font-weight: bold;
}

.showAnswer__list--correct.selected {
  background-color: #ffffdd;
  border-bottom: 3px solid #227dee;
}

.showAnswer__list--wrong {
  /* font-size: 80%; */
}

.showAnswer__list--wrong.selected {
  background-color: #ffffdd;
  border-bottom: 3px solid #e22;
}

.showAnswer i {
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  color: #fff;
  background-color: #e22;
  display: inline-block;
  vertical-align: top;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  font-weight: bold;
  font-family: icon;
  font-style: normal;
  text-align: center;
}

.showAnswer .correctIcon {
  background-color: #227dee;
}

.showAnswer .correctIcon::before {
  content: "";
  margin: auto;
  border: 4px solid #fff;
  -webkit-border-radius: 100px;
     -moz-border-radius: 100px;
          border-radius: 100px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 12px;
  height: 12px;
}

.showAnswer .wrongIcon::before {
  content: "\ea0f";
}

/** ------------------------------
 * 解説
 */
.commentary {
  margin: 40px 0;
  border: 1px solid #bbb;
  background-color: #fff;
}

@media only screen and (max-width: 1000px) {
  .commentary {
    margin-bottom: 0;
    border-right: none;
    border-left: none;
  }
}

.commentary__title {
  padding: 8px 15px;
  border-bottom: 1px solid #bbb;
  color: #fff;
  background-color: #40c2e2;
  text-align: center;
  letter-spacing: 1em;
}

.commentary__title::before {
  content: "[";
}

.commentary__title::after {
  content: "]";
}

.commentary__body {
  padding: 20px 15px 30px;
  font-size: 90%;
  line-height: 1.4;
  min-height: 2.8em;
}

.commentary__pager {
  padding: 10px 15px;
  border-top: 1px solid #bbb;
  background-color: #f6f6f6;
  text-align: right;
}

.commentary__pager a {
  padding: 5px 10px;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  display: inline-block;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 7em;
  color: #fff;
  background-color: #197ca6;
  text-decoration: none;
  text-align: center;
}

@media only screen and (max-width: 1000px) {
  .commentary__pager {
    padding-bottom: 30px;
  }

  .commentary__pager a {
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    border: none;
    display: block;
    height: 3em;
    line-height: 3em;
    color: #fff;
    background-color: #197ca6;
    font-size: 14px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    font-family: ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", メイリオ, sans-serif;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    text-transform: uppercase;
  }
}

/** ------------------------------
 * finish
 */
.finish {
  background-color: #fcfcfc;
  text-align: center;
}

.finish__title {
  padding: 8px 15px;
  border-bottom: 1px solid #bbb;
  color: #fff;
  background-color: #34b375;
  text-align: center;
  font-weight: bold;
}

.questionCount {
  margin-top: 30px;
  font-size: 150%;
}

.questionCount span {
  font-size: 60px;
}

.questionClear {
  margin: 20px auto;
  padding: 30px 10px;
  border: 3px solid #eee;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 560px;
  background-color: #f6f6f6;
  font-size: 200%;
  font-weight: bold;
}

@media only screen and (max-width: 560px) {
  .questionClear {
    margin-bottom: 0;
    border-style: solid none none none;
  }
}

.questionClear__pass {
  color: #227dee;
}

.questionClear__fail {
  color: #e22;
}

.questionClear__title {
  padding: 0 1.5em;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  display: inline-block;
  color: #fff;
  background-color: #227dee;
  font-size: 60%;
  vertical-align: middle;
}

.questionClear__fail .questionClear__title {
  background-color: #e22;
}

/** ------------------------------------------------------------
 * history detail table
 */

.historyDetailTable .progressWrap {
  min-height: 320px;
}

.historyDetailTable .questionNumHeader {
  position: relative;
}

.historyDetailTable .questionNumHeader .questionContentTooltip {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  font-weight: normal;
  font-size: 12px;
  width: 400px;
  background-color: #ffffe0;
  border: 1px solid #bbb;
  padding: 6px;
  text-align: left;
  display: none;
}

@media only screen and (max-width: 560px) {
  .historyDetailTable .progressWrap {
    min-height: auto;
  }

  .historyDetailTable .questionNumHeader .questionContentTooltip {
    width: 280px;
  }
}

.historyDetailTable .questionNumHeader .questionContentTooltip span {
  font-weight: bold;
}

/** ------------------------------------------------------------
 * pager
 */
.pager {
  margin: 20px 0;
  line-height: 1.2;
  text-align: center;
}

@media only screen and (max-width: 560px) {
  .pager {
    font-size: 12px;
  }
}

.pager__prev,
.pager__next,
.pager__item {
  margin: 0 2px;
}

.pager__prev,
.pager__next {
  font-family: icon;
}

.pager__prev,
.pager__next,
.pager__item,
.pager a,
.pager span {
  display: inline-block;
  vertical-align: bottom;
}

.pager a {
  text-decoration: none;
}

.pager a,
.pager span {
  border: 1px solid #ddd;
  padding: 0.6em 1em;
}

.pager span {
  color: #ccc;
}

.pager__item--current {
  background-color: #f6f6f6;
}


/** ------------------------------
 * 該当なし
 */
.NA {
  padding: 60px 10px;
  text-align: center;
  font-weight: bold;
}

.courseType__title + .NA {
  border-top: 1px solid #bbb;
}

/** ------------------------------------------------------------
 * エラーページ
 */
.errorTitle,
.errorBox {
  text-align: center;
}

.errorTitle {
  margin: 140px 15px 20px;
  color: #999;
  font-size: 50px;
  line-height: 1.2;
}

.errorBox {
  margin-bottom: 140px;
}

.errorBox p {
  padding: 0 15px;
}

#exceptionMessage {
  margin: 30px 0 -140px;
  padding-top: 30px;
  padding-bottom: 70px;
  color: #aaa;
  background-color: #f6f6f6;
}

@media only screen and (max-width: 560px) {
  .errorTitle {
    margin-top: 70px;
    font-size: 40px;
  }

  .errorBox {
    margin-bottom: 70px;
  }

  #exceptionMessage {
    margin-bottom: -70px;
  }
}

@media only screen and (max-width: 400px) {
  .errorTitle {
    font-size: 32px;
  }

  .errorBox {
    font-size: 13px;
  }
}

.linkButton a {
  display: inline-block;
  padding: 8px 12px;
  background-color: #449d44;
  border-radius: 3px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}

.commonForm {
  width: 480px;
  margin: 20px auto;
  padding: 12px;
  border: 1px solid #bbb;
  box-sizing: border-box;
}

.commonForm__item {
  margin-bottom: 8px;
}

.commonForm__itemName {
  font-size: 14px;
  font-weight: bold;
  color: #197ca6;
}

.commonForm__itemInput input[type="text"],
.commonForm__itemInput input[type="email"],
.commonForm__itemInput input[type="password"],
.commonForm__itemInput input[type="date"],
.commonForm__itemInput input[type="time"],
.commonForm__itemInput select,
.commonForm__itemInput textarea {
  width: 100%;
  border: 1px solid #bbb;
  box-sizing: border-box;
  padding: 8px 6px;
  border-radius: 8px;
}

.commonForm__itemInput input[type="date"],
.commonForm__itemInput input[type="time"] {
  width: 130px;
}

.commonForm__note {
  font-size: 14px;
  text-align: center;
}

@media only screen and (max-width: 560px) {
  .commonForm {
    width: 96%;
  }

  .commonForm .button > * {
    display: inline-block;
    width: 100%;
  }
}
