@charset "utf-8";

/*
 *
 * ===== 学力評価テスト：標準CSS =====
 *
 */


/* ========================================


        要素のリセット


   ======================================== */


/* --- HTML5 --- */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
    display: block;
  margin: 0;
  padding: 0;
}


/* --- 要素 ---*/

html,
body,
div,
h1,
h2,
h3,
h4,
h5,
p,
blockquote,
ul,
ol,
li,
dl,
dt,
dd,
form {
  margin: 0;
  padding: 0;
}



/* ========================================


        標準スタイル


   ======================================== */

/*
 * --- 文書全体 ---
 */

html {
    overflow-y: scroll;
    position: relative;
    min-height: 100%;
}

body {
  font-size: 14px;
  margin-bottom: 60px;
    -webkit-text-size-adjust: 100%;
}


/*
 * --- フォント指定 ---
 */

body,
h1, h2, h3, h4, h5,
input, button, select, textarea {
    font-family: 'メイリオ', Meiryo, 'ヒラギノ角ゴPro W3', 'Hiragino Kaku Gothic Pro', sans-serif;
}


/*
 * --- テキスト ---
 */

p {
  line-height: 1.4;
  margin-bottom: 5px;
}

p:last-child {
  margin-bottom: 0;
}

em,
strong,
dfn,
b,
i {
  text-decoration: none;
  font-style: normal;
  font-weight: bold;
}

em,
strong {
  color: #f03030;
}

i {
  font-weight: normal;
}


/*
 * --- 画像 ---
 */

img {
}


/*
 * --- 区切り ---
 */

hr {
  margin: 10px 0;
}



/*
 * --- リスト ---
 */

dt {
  font-weight: normal;
}


/*
 * --- リンク ---
 */

a {
  outline: none !important;
  text-decoration: none !important;

  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}


/*
 * --- フォーム ---
 */

form {
  margin: 0;
}

button {
  outline: none !important;
}

fieldset {
  margin-top: 10px;
}

legend {
  margin-bottom: 10px;
  font-size: 13px;
  color: #707070;
  border-bottom: 1px solid #e9e9e9;
}




/* ========================================


        Bootstrap コンポーネント


   ======================================== */


/*
 * --- グリッド ---
 */

.row {
  margin-left: -10px;
  margin-right: -10px;
}

.row > div {
  padding-left: 10px;
  padding-right: 10px;
}

.col-border-left {
  border-left: 1px dashed #dddddd;
}


/* --- XSサイズ --- */
@media screen and (max-width: 767px) {

    .container {
    padding-left: 10px;
    padding-right: 10px;
  }

    .container-fluid {
    padding-left: 10px;
    padding-right: 10px;
    }

}


/*
 * --- フォント ---
 */

.btn,
.popover {
    font-family: 'メイリオ', Meiryo, 'ヒラギノ角ゴPro W3', 'Hiragino Kaku Gothic Pro', sans-serif;
}


/*
 * --- ボタン ---
 */

.btn {
  box-shadow: 0 2px #d0d0d0;
  margin-bottom: 2px !important;

  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
}

.btn:active {
  box-shadow: none;
  margin-top: 2px !important;
  margin-bottom: 0 !important;
}

.btn-block {
  display: inline-block;
}

/* --- 影なし --- */

.btn.btn-no-shadow {
  box-shadow: none;
  margin-bottom: 0 !important;
}

.btn.btn-no-shadow:active {
  margin-top: 0 !important;
}

/* --- ラウンドボタン --- */

.btn.btn-round {
  border-radius: 2em;
}

/* --- ボタンのサブキャプション --- */

.btn small {
  display: block;
  font-size: 70%;
  color: #ffffff;
}


/*
 * --- ボタンカラー ---
 */

.btn-std, .btn-std:hover, .btn-std:focus,
.btn-secondary, .btn-secondary:hover, .btn-secondary:focus,
.btn-optional, .btn-optional:hover, .btn-optional:focus,
.btn-notice, .btn-notice:hover, .btn-notice:focus
{
  color: #ffffff;
}

.btn-std:disabled,
.btn-secondary:disabled,
.btn-optional:disabled,
.btn-notice:disabled
{
  color: #808080 !important;
  background-color: #e0e0e0 !important;
  box-shadow: 0 2px #d0d0d0;
}

.btn-std { background-color: #3bafda; }
.btn-std:hover { background-color: #2b9fca; }
.btn-secondary { background-color: #8cc152; }
.btn-secondary:hover { background-color: #7Cb142; }
.btn-optional { background-color: #90a0a0; }
.btn-optional:hover { background-color: #809090; }
.btn-notice { background-color: #ed5565; }
.btn-notice:hover { background-color: #da4453; }


/*
 * --- ラベル ---
 */

.label {
  display: inline-block;
  font-size: 90%;
  font-weight: normal;
  white-space: nowrap;
  line-height: 1;
  margin-right: 5px;
  padding: 4px 5px 3px 5px;
  vertical-align: middle;
}

/* --- ラベルのサイズ --- */

.label-sm {
  font-size: 14px;
}

.label-md {
  font-size: 20px;
}


/*
 * --- リスト ---
 */

/* --- 定義リスト --- */

.dl-horizontal dd {
  margin-bottom: 5px;
}


/*
 * --- フォーム ---
 */

.checkbox-inline {
  margin-right: 10px;
  margin-left: 0 !important;
}


/*
 * --- テーブル ---
 */

.table-hover > tbody > tr:hover {
  background-color: #e9f6fc;
}

.table-hover tbody tr {
  cursor: pointer;
}

/* --- tbodyのthを折り返さない --- */

.table-nowrap tbody th {
  white-space: nowrap;
  font-weight: normal;
}

/* --- thを強調 --- */

.table-th-color thead th {
  color: #ffffff;
  background-color: #4694d1;
}

.table-th-color tbody th {
  background-color: #f6f9fc;
}


/*
 * --- タブ ---
 */

.nav > li > a {
  background-color: #f0f0f0;
  border-bottom: 1px solid #dddddd;
}

.nav > li > a:hover,
.nav > li > a:focus {
  background-color: #e9f6fc;
}


.tab-pane {
  padding: 15px;
  border: 1px solid #dddddd;
  border-top: none;
  border-radius: 0 0 6px 6px;
}


/*
 * --- ツールチップ ---
 */

.top.tooltip .tooltip-arrow {
  border-top-color: #f57f17;
}

.tooltip-inner {
  max-width: none;
  text-align: left;
  white-space: nowrap;
  background-color: #f57f17;
}


/*
 * --- ヘルパー ---
 */

/* --- 回り込み --- */

.pull-clear {
    clear: both;
}



/*
 * --- 印刷時の調整 ---
 */

@media print {

  a[href]:after {
    content: '' !important;
  }

  abbr[title]:after {
      content: '' !important;
  }

}


/* ========================================


        Formstone コンポーネント


   ======================================== */

/*
 * --- ドロップダウンメニュー ---
 */

.fs-dropdown-options {
  box-shadow: none;
}

.fs-dropdown-item {
  border: none;
  border-bottom: 1px solid #cccccc;
}

.fs-dropdown-item:last-child {
  border-bottom: none;
}

.fs-dropdown-item:hover {
  background-color: #e0f7fa;
}

.fs-dropdown-item_selected {
  color: #ffffff;
  background-color: #3bafda;
}

/*
 * --- チェックボックス ---
 */

/* --- トグル --- */

.fs-checkbox-checked .fs-checkbox-flag {
  background-color: #3bafda;
}


/* ========================================


        そのほかのコンポーネント


   ======================================== */

/*
 * --- アイコン ---
 */

[class^='icon-'] {
  vertical-align: bottom;
}


/*
 * --- ポップアップピッカー ---
 */

.popover.picker-popover {
  width: 230px;
  min-width: 230px;
}

.picker .picker-items {
  padding: 10px 0 5px 10px;
}

.popover.picker-popover .popover-title {
  font-size: 11px;
  line-height: 1;
  padding: 5px;
}

.picker .picker-item {
  width: 18px;
  height: 18px;
  margin: 0 6px 6px 0;
  padding: 9px 9px 6px 9px;
  font-size: 15px;
}

.picker-popover .picker-selected {
  color: #ffffff;
  background-color: #3bafda;
}


/* ========================================


        レイアウト


   ======================================== */


/* ----------------------------------------

        レイアウト全体

   ---------------------------------------- */



/* ----------------------------------------

        ヘッダー

   ---------------------------------------- */

#page-header {
  background-color: #005bac;
  border: none;
}

/*
 * --- タイトル ---
 */

#header-title {
  float: right;
  display: inline-block;
  padding: 5px;
  background-color: #ffffff;
}

#header-title img {
  width: 50px;
}

#header-title h1 {
  display: inline;
  padding: 0 10px 0 5px;
  vertical-align: middle;
  font-size: 18px;
  font-weight: bold;
  color: #005bac;
}

/* --- XSサイズ --- */
@media screen and (max-width: 767px) {

  #header-title {
    float: left;
    background-color: transparent;
  }

  #header-title h1 {
    display: block;
    margin-top: 13px;
    margin-right: 10px;
    padding: 0;
      font-size: 13px;
        color: #ffffff;
  }

}


/*
 * --- 戻るボタン ---
 */

#header-back {
  margin-top: 9px;
}

/* --- XSサイズ --- */
@media screen and (max-width: 767px) {

  #header-back .text {
    display: none;
  }

}


/*
 * --- オプションボタン ---
 */

#header-option-btn {
  float: left;
  margin-left: 20px;
  padding-top: 8px;
}

#header-option-btn i {
  font-size: 13px;
}



/*
 * --- 残り時間 ---
 */

#header-time-left {
  display: none;
  float: right;
  margin-top: 12px;
  margin-right: 15px;
}

#header-time-left dl {
  font-size: 0;
}

#header-time-left dt,
#header-time-left dd {
  display: inline-block;
  margin: 0;
  padding: 0 15px 0 10px;
  line-height: 1.6;
  min-height: 24px;
  vertical-align: text-bottom;
}

#header-time-left dt {
  font-size: 14px;
  color: #ffffff;
  background-color: #5d9cec;
  border-radius: 20px 0 0 20px;
}

#header-time-left dt i {
  margin: 0 5px 0 0;
  padding: 0;
  font-size: 13px;
}

#header-time-left dd {
  font-size: 15px;
  font-weight: bold;
  color: #005bac;
  background-color: #ffffff;
  border-radius: 0 20px 20px 0;
}

/* --- XSサイズ --- */
@media screen and (max-width: 767px) {

    #header-time-left {
    float: right;
    margin-top: 12px;
  }

  #header-time-left dt,
  #header-time-left dd {
    min-height: 24px;
    padding-top: 2px;
    padding-right: 5px;
  }

  #header-time-left dt {
    padding-right: 5px;
  }

  #header-time-left dt i {
    vertical-align: top;
    font-size: 12px;
  }

  #header-time-left dd {
    padding-left: 5px;
    padding-right: 10px;
    font-size: 12px;
  }

}



/*
 * --- メニューボタン ---
 */

#header-menu-btn {
  margin-right: 0;
  padding: 10px 10px 0 10px;
  color: #ffffff;
  background-color: #3bafda;
  border: none;
}

#header-menu-btn span {
  margin: 0;
  font-size: 9px;
  line-height: 0;
}

#header-menu-btn .icon {
  display: block;
}

#header-menu-btn .icon:before {
  content: '\e236';
  font-family: 'Glyphicons Halflings';
  font-size: 12px;
}

.offcanvas-in #header-menu-btn {
  background-color: #e91e63;
}

.offcanvas-in #header-menu-btn .icon:before {
    content: '\e080';
}




/* ----------------------------------------

        フッター

   ---------------------------------------- */

#page-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  min-height: 40px;
  text-align: center;
  background-color: #e9e9e9;
}

#page-footer .copyright {
  padding: 6px 0;
  font-size: 10px;
  color: #909090;
}

#page-footer .copyright p {
  margin: 0;
}


/* ----------------------------------------

        メインコンテンツ

   ---------------------------------------- */


#page-main {
  padding-top: 50px;
}



/* ----------------------------------------

        パンくずリスト

   ---------------------------------------- */

.page-breadcrumb {
    overflow: hidden;
  padding: 5px;
  background-color: #eceff1;
}

.page-breadcrumb ol {
  list-style: none;
  font-size: 0;
}

.page-breadcrumb li {
  display: inline-block;
  position: relative;
  padding: 3px 12px 2px 20px;
  font-size: 11px;
  color: #ffffff;
  background-color: #c0c0c0;
}

.page-breadcrumb li:after {
  content: '';
  position: absolute;
    top: 50%;
  right: -9px;
  margin-top: -10px;
  border-top: 11px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid;
  z-index: 1;
}

.page-breadcrumb li:nth-child(1) {
  background-color: #2196f3;
  border-radius: 15px 0 0 15px;
}
.page-breadcrumb li:nth-child(1):after { border-left-color: #2196f3; }

.page-breadcrumb li:nth-child(2) { background-color: #03a9f4; }
.page-breadcrumb li:nth-child(2):after { border-left-color: #03a9f4; }

.page-breadcrumb li:nth-child(3) { background-color: #4fc3f7; }
.page-breadcrumb li:nth-child(3):after { border-left-color: #4fc3f7; }

.page-breadcrumb li:nth-child(4) {
  background-color: #81d4fa;
  border-radius: 0 15px 15px 0;
}
.page-breadcrumb li:nth-child(4):after { display: none; }


/* --- XSサイズ --- */
@media screen and (max-width: 767px) {

  .page-breadcrumb {
    margin-bottom: 10px;
      text-align: center;
  }

}


/* ----------------------------------------

        サイドバー

   ---------------------------------------- */

/*
 * --- バー ---
 */

#page-sidebar {
  visibility: hidden;
  position: fixed;
  top: 50px;
  right: -250px;
  width: 250px;
  height: 100%;
  text-align: left;
  background-color: #f0f0f0;
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}



/* --- XSサイズ --- */
@media screen and (max-width: 767px) {

    .offcanvas-in #page-sidebar {
    visibility: visible;
    right: 0;
  }

    /* --- タッチエリア --- */
    #cover {
    content: '';
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 5;
    background-color: #ffffff;
    opacity: 0.7;
    cursor: pointer;
  }

}





/* ========================================


        汎用


   ======================================== */


/* ----------------------------------------

        テキスト・フォント

   ---------------------------------------- */

/*
 * --- テキスト ---
 */

/* --- サイズ --- */

.font-size-lg { font-size: 150% !important; }
.font-size-md { font-size: 125% !important; }
.font-size-sm { font-size: 90% !important; }

.font-size-11 { font-size: 11px !important; }
.font-size-12 { font-size: 12px !important; }
.font-size-14 { font-size: 14px !important; }
.font-size-16 { font-size: 16px !important; }
.font-size-18 { font-size: 18px !important; }
.font-size-20 { font-size: 20px !important; }
.font-size-21 { font-size: 21px !important; }


/* --- 折り返し --- */

.text-wrap {
  white-space: normal !important;
}

.text-no-wrap {
  white-space: nowrap !important;
}


/* --- 行揃え --- */

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-justify,
.text-justify > p {
  text-align: justify !important;
  text-justify: inter-ideograph !important;
}


/* --- 備考 --- */

p.notes,
div.notes {
  font-size: 85%;
  color: #808080;
}


/*
 * --- フォント ---
 */

/* --- フォントを明朝に --- */

.font-mincho {
  font-family: 'ＭＳ Ｐ明朝', 'MS PMincho', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', serif;
}

/* --- 装飾 --- */

.font-bold {
  font-weight: bold;
}


/* --- XSサイズ --- */
@media screen and (max-width: 767px) {

    .text-left-xs {
    text-align: left !important;
    }

}



/* ----------------------------------------

        位置・サイズ

   ---------------------------------------- */


/*
 * --- 位置 ---
 */

.position-relative {
  position: relative;
}


/*
 * --- マージン ---
 */

.margin-0  { margin: 0 !important; }
.margin-10 { margin: 10px !important; }
.margin-20 { margin: 20px !important; }
.margin-40 { margin: 40px !important; }

.margin-top-0  { margin-top: 0 !important; }
.margin-top-10 { margin-top: 10px !important; }
.margin-top-20 { margin-top: 20px !important; }
.margin-top-40 { margin-top: 40px !important; }

.margin-left-10 { margin-left: 10px !important; }
.margin-left-20 { margin-left: 20px !important; }
.margin-left-30 { margin-left: 30px !important; }
.margin-left-40 { margin-left: 40px !important; }

.margin-right-10 { margin-right: 10px !important; }
.margin-right-20 { margin-right: 20px !important; }
.margin-right-30 { margin-right: 30px !important; }
.margin-right-40 { margin-right: 40px !important; }

.margin-bottom-10 { margin-bottom: 10px !important; }
.margin-bottom-20 { margin-bottom: 20px !important; }
.margin-bottom-30 { margin-bottom: 30px !important; }
.margin-bottom-40 { margin-bottom: 40px !important; }


/*
 * --- パディング ---
 */

.padding-10 { padding: 10px !important; }
.padding-20 { padding: 20px !important; }

.padding-top-10 { padding-top: 10px !important; }
.padding-top-20 { padding-top: 20px !important; }
.padding-top-30 { padding-top: 30px !important; }
.padding-top-40 { padding-top: 40px !important; }

.padding-left-10 { padding-left: 10px !important; }
.padding-left-20 { padding-left: 20px !important; }
.padding-left-30 { padding-left: 30px !important; }
.padding-left-40 { padding-left: 40px !important; }

.padding-bottom-10 { padding-bottom: 10px !important; }
.padding-bottom-20 { padding-bottom: 20px !important; }
.padding-bottom-30 { padding-bottom: 30px !important; }
.padding-bottom-40 { padding-bottom: 40px !important; }
.padding-bottom-60 { padding-bottom: 60px !important; }

.padding-right-10 { padding-right: 10px !important; }
.padding-right-20 { padding-right: 20px !important; }
.padding-right-30 { padding-right: 30px !important; }
.padding-right-40 { padding-right: 40px !important; }


/*
 * --- 幅 ---
 */

.width-100 { width: 100px; }
.width-120 { width: 120px; }
.width-150 { width: 150px; }
.width-200 { width: 200px; }
.width-250 { width: 250px; }
.width-300 { width: 300px; }
.width-400 { width: 400px; }
.width-500 { width: 500px; }
.width-600 { width: 600px; }




/* ----------------------------------------

        リスト

   ---------------------------------------- */

/*
 * --- 箇条書きリスト ---
 */

/* --- ブレットリスト --- */

ul.bullet-list {
    list-style: none;
  margin-left: 20px;
  margin-bottom: 10px;
}

ul.bullet-list > li {
    position: relative;
}

ul.bullet-list > li:before {
    content: ' ';
    position: absolute;
    left: -15px;
  top: 6px;
    width: 8px;
    height: 8px;
  font-size: 1px;
    background: #b0a9a0;
    border-radius: 4px;
}

/* --- 角丸数字リスト --- */

ol.round-list {
    list-style: none;
    counter-reset: roundList;
}
ol.round-list > li {
    position: relative;
  margin-left: 30px;
}
ol.round-list > li:before {
    content: counter(roundList);
    counter-increment: roundList;
    position: absolute;
    left: -30px;
    width: 20px;
  color: #ffffff;
  font-family:Arial, Helvetica, sans-serif;
  font-size: 11px;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
    background: #87ceeb;
    border-radius: 5px;
}

/* --- XSサイズ --- */
@media screen and (max-width: 767px) {

  ul.bullet-list {
    margin-left: 10px;
  }

}


/* ----------------------------------------

        デザイン枠

   ---------------------------------------- */

/*
 * --- 角丸枠 パネル ---
 */

.panel {
  display: block;
  position: relative;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin: 0 0 20px 0;
  padding: 5px 10px;
}

.panel-body {
  padding: 10px 20px;
}

.panel-body p {
  text-align: justify;
  text-justify: inter-ideograph;
}


/* --- リンク付き --- */

a.panel {
  transition: 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

a.panel:hover {
  border-color: #d0f0ff;
  background-color: #e9f9ff;
  box-shadow: 0 0 4px rgba(32,128,255,0.8);
}


/* --- リンク付き（右下にアイコン付き） --- */

.panel-with-icon a.panel:after,
a.panel-with-icon:after {
    content: '\f488';
  font-family:'WebHostingHub-Glyphs';
  font-size: 14px;
  color: #f0f0f0;
  position: absolute;
  right: 4px;
    bottom: 2px;
}

.panel-with-icon a.panel:hover:after,
a.panel-with-icon:hover:after {
  color: #b3e5fc !important;
}


/* --- ドロップシャドウなし --- */

.no-shadow .panel,
.panel.no-shadow,
.panel.panel-no-shadow {
  box-shadow: none;
}


/* --- タイトル付き --- */

.panel-with-header {
  padding: 0;
}

.panel-with-header h2 {
  font-size: 16px;
  margin-bottom: 5px;
  padding: 8px 20px;
  text-align: center;
  color: #ffffff;
  background-color: #a0a6a9;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.panel-with-header h2 i {
  font-size: 14px;
  vertical-align: middle;
}

.panel-with-header .header-icon {
  position: absolute;
  width: 30px;
  height: 30px;
  left: -6px;
  top: -4px;
  padding-top: 3px;
  font-size: 16px;
  text-align: center;
  color: #ffffff;
  background-color: #a0a6a9;
  border-radius: 15px;
}


/* --- パネルのボタンエリア --- */

.panel-btn-section {
  max-width: 250px;
  margin: 10px auto;
}




/* ----------------------------------------

        カラー／テーマ

   ---------------------------------------- */

/*
 * --- 学年/教科 ---
 */

/* --- 英語 --- */
.color-g1-e { background-color: #ac92ec; }
.color-g2-e { background-color: #916BB5; }

/* --- 数学 --- */
.color-m1a { background-color: #6BC8F9; }
.color-m2b { background-color: #1e88e5; }
.color-m3 { background-color: #3949ab; }

/* --- 国語 --- */
.color-g1-g { background-color: #a0d468; }
.color-g1-k { background-color: #76A93E; }
.color-g2-g { background-color: #48cfad; }
.color-g2-k { background-color: #00897b; }


/*
 * --- 実施／未実施 ---
 */

.color-status-incomplete { background-color: #fc6e51; }
.color-status-completed { background-color: #a0d468; }



/* ----------------------------------------

        スクロールバー（おもにxs用）

   ---------------------------------------- */


.scrollbar::-webkit-scrollbar,
.scrollbar::-webkit-scrollbar:horizontal {
    background-color: #E6E9ED;
    border-radius: 3px;
}

.scrollbar::-webkit-scrollbar {
    width: 5px;
}

.scrollbar::-webkit-scrollbar:horizontal {
  height: 5px;
}

.scrollbar::-webkit-scrollbar-thumb {
    background-color: #656D78;
    border-radius: 3px;
}

.scrollbar::-webkit-scrollbar-corner {
    background: transparent;
}


/* ========================================


        見出し


   ======================================== */

/*
 * --- H1 ---
 */

#page-main header {
  text-align: center;
}

#page-main h1 {
  display: inline-block;
  margin: 20px auto;
  padding: 5px 25px 2px 25px;
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 1px;
  font-weight: bold;
  color: #ffffff;
  background-color: #005bac;
  border-radius: 50px;
}

#page-main h1 small {
  display: block;
  color: #ffffff;
  margin-bottom: 5px;
}

/*
 * --- H2 ---
 */

#page-main h2 {
    padding-left:10px;
  display: inline-block;
  font-size: 18px;
  line-height: 1.5;
  color:#F90;
  font-weight: bold;
}


/*
 * --- H3 ---
 */

#page-main h3 {
  display: inline-block;
  margin: 10px auto 6px auto;
  padding: 4px 15px 2px 15px;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  color: #ffffff;
  background-color: #005bac;
  border-radius: 20px;
}


/* ========================================


        情報ヘッダー


   ======================================== */

/*
 * --- ヘッダー枠 ---
 */

.info-header {
  margin-bottom: 10px;
}

.info-header-border {
  margin-bottom: 20px;
  padding: 10px 10px 5px 10px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
}

/*
 * --- ヘッダーのリスト ---
 */

.info-header .input-group {
  margin-right: 10px;
  margin-bottom: 5px;
}

.info-header .input-group:last-child {
  margin-right: 0;
}

.info-header .input-group-chuonline + p {
  display: table-cell;
  float: left;
  height: 34px;
  margin: 0 0 0 -1px;
  padding: 6px 12px;
  font-size: 14px;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 0 4px 4px 0;
}

/* --- XSサイズ --- */
@media screen and (max-width: 767px) {

  .info-header .input-group {
    margin-right: 0;
  }

}


/* ========================================


        表示テーブル


   ======================================== */

/* ----------------------------------------

        標準テーブル

   ---------------------------------------- */

/*
 * --- テーブルセクション ---
 */

.tabel-section {
  margin: 10px;
}


/*
 * --- 標準テーマ ---
 */

.table-default-theme {
  font-size: 12px;
}

.table-default-theme thead th {
  font-weight: normal;
  background-color: #e9f0f9;
}

.table-default-theme thead th .th-inner {
  line-height: 1 !important;
}



/*
 * --- ページネーション ---
 */

.tabel-section .pagination-detail {
  font-size: 12px;
}

.tabel-section .pagination-info {
  padding: 6px 15px;
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
}

.tabel-section .page-list {
  margin-left: 20px;
}

.tabel-section .page-list .btn-group {
  margin: 0 5px;
}

/*
 * --- セル ---
 */

/* --- 得点 --- */

.tabel-section .score {
  padding: 0 3px;
  color: #ffffff;
  background-color: #005bac;
  border-radius: 5px;
}


/* --- 日時 --- */

.tabel-section .date {
  font-size: 11px;
  margin-left: 5px;
  color: #909090;
}

/* --- XSサイズ --- */
@media screen and (max-width: 767px) {

  .fixed-table-toolbar .bars,
  .fixed-table-toolbar .columns,
  .fixed-table-toolbar .search {
    margin-top: 0 !important;
  }

  .tabel-section .table-toolbar-item {
    margin-bottom: 5px;
  }

}


/* ----------------------------------------

        ツールバー

   ---------------------------------------- */

.table-toolbar-item {
  margin-right: 10px;
}



/* ========================================


        テーブル汎用


   ======================================== */

/* ----------------------------------------

        列の制御

   ---------------------------------------- */

/*
 * --- 列の折り返し ---
 */

.table-nowrap-col-1 td:nth-child(1),
.table-nowrap-col-2 td:nth-child(2),
.table-nowrap-col-3 td:nth-child(3),
.table-nowrap-col-4 td:nth-child(4),
.table-nowrap-col-5 td:nth-child(5),
.table-nowrap-col-6 td:nth-child(6) {
    white-space: nowrap;
}

/*
 * --- 列のセンタリング ---
 */

.table-center-col-1 td:nth-child(1),
.table-center-col-2 td:nth-child(2) {
  text-align: center;
}


@media screen and (min-width : 768px){
.table-hidden-sm-1 th:nth-child(1),
.table-hidden-sm-1 td:nth-child(1) {
    display: none;

}
}

/* --- XSサイズ --- */
@media screen and (max-width: 767px) {

  /*
   * --- 以降の列を非表示 ---
  */
  .table-hidden-xs-7-over th:nth-child(n+7),
  .table-hidden-xs-7-over td:nth-child(n+7) {
    display: none;


}
}


/* ========================================


        設問ページ


   ======================================== */


body.doc-question {
  margin-bottom: 0;
}


/* --- XSサイズ --- */
@media screen and (max-width: 767px) {

  body.doc-question {
    overflow: hidden !important;
  }

  body.doc-question #page-main {
    padding-top: 0;
  }

}



/* ----------------------------------------

        ヘッダー

   ---------------------------------------- */

.doc-question #header-time-left {
  display: block;
}

/* --- XSサイズ --- */
@media screen and (max-width: 767px) {

  .doc-question .page-breadcrumb {
    display: none;
  }

}


/* ----------------------------------------

        フォーム

   ---------------------------------------- */

/*
 * --- 番号入力のスピナーを非表示 ---
 */

.doc-question input[type='number'] {
    -moz-appearance: textfield;
    -webkit-appearance: none;
}


/* ----------------------------------------

        スプリッター

   ---------------------------------------- */

/*
 * --- スプリッターコンテンツ ---
 */

.doc-question .split-panel-set {
  min-height: 100px;
}

.doc-question .fixed-left.split-pane > .split-panel {
  min-width: 350px;
  overflow: hidden;
}

.doc-question .fixed-left.split-pane > .split-panel-left {
  width: 50%;
}

.doc-question .fixed-left.split-pane > .split-panel-right {
    left: 50%;
    margin-left: 3px;
}

.doc-question .nav-question-content {
  overflow: auto;
  height: 100%;
  border: 1px solid #d0d0d0;
}



/*
 * --- スプリッター ---
 */

.doc-question .split-panel-divider {
  position: relative;
  margin-top: 52px;
  width: 3px;
    left: 50%;
  background: #78909c;
  cursor: w-resize !important;
}

.doc-question .split-panel-divider:after {
  content: '\f4e6';
  font-family:'WebHostingHub-Glyphs';
  position: absolute;
  top: 45%;
  padding: 3px;
  font-size: 10px;
  color: #ffffff;
  background-color: #78909c;
  border-radius: 0 5px 5px 0;
}





/* ----------------------------------------

        左右切り替え（XS）

   ---------------------------------------- */

#section-question-xs {
}


/*
 * --- 切り替え操作 ---
 */

.nav-question-xs {
  position: fixed;
  top: 50%;
  left: 0;
  width: 100%;
}

.nav-switch-btn {
  position: absolute;
  width: 70px;
  height: 70px;
  background-color: #ffffff;
  border: 4px solid #f0f0f0;
  border-radius: 70px;
  opacity: 0.5;
}

.nav-switch-btn i {
  font-size: 24px;
}

.nav-switch-prev-btn {
  text-align: right;
  left: -30px;
}

.nav-switch-next-btn {
  text-align: left;
  right: -30px;
}


/*
 * --- 問題 ---
 */

.panel-set-xs {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  margin-left: -10px;
  margin-right: -10px;
}

.panel-inner-xs {
  position: relative;
  overflow: hidden;
  width: 200%;
  height: 100%;
  margin: 0;
  padding: 50px 0 0 0;
}

.panel-question-xs {
  overflow: auto;
  float: left;
  width: 50%;
  height: 100%;
  margin: 0;
  padding: 52px 0 0 0;
}

.panel-question-xs img {
  overflow: hidden;
}


/* ----------------------------------------

        ページパターン

   ---------------------------------------- */

/*
 * --- 標準設問ページ ---
 */

.doc-question {
}

.doc-question #page-footer {
  display: none;
}



/*
 * --- 設問画像 ---
 */

.img-question {
    display: block;
}


/* --- 設問画像が縦に伸びる --- */

.doc-question-vertical .img-question {
    max-width: 100%;
    height: auto;
}


/* --- 設問画像が横に伸びる --- */

.doc-question-horizontal .nav-question-content {
  overflow-y: hidden;
  position: relative;
}

.doc-question-horizontal .img-question {
  width: auto;
  max-height: 100%;
  margin-right: 0;
}


/* --- 問い --- */

.doc-question-horizontal .index-label {
  position: absolute;
  top: 10px;
  left: 9999px;
  width: 20px;
  text-align: center;
  line-height: 1.1;
}

.doc-question-horizontal .nav-question-content img {
  padding-right: 20px;
  padding-bottom: 10px;
}



/* ----------------------------------------

        全体

   ---------------------------------------- */

.doc-question #section-question {
  margin-top: 10px;
}



/* ----------------------------------------

        問題欄 ナビゲーション

   ---------------------------------------- */

/*
 * --- ナビゲーションパネル ---
 */

.nav-question {
  width: 350px;
  height: 52px;
  padding: 10px 0 0 10px;
  background-color: #e9e9e9;
  border-radius: 10px 10px 0 0;
}

/* --- ラベル --- */

.nav-question-label {
}

.nav-question-label-pre {
  padding: 6px 8px 4px 10px;
  color: #ffffff;
  border-radius: 15px 0 0 15px;
}

.nav-question-parent .nav-question-label-pre {
  background-color: #7986cb;
}

.nav-question-child .nav-question-label-pre {
  background-color: #8bc34a;
}

.nav-question-label-total:before {
  content: '/';
  padding: 0 5px 0 2px;
}

/* --- ドロップダウン --- */

.nav-question-dropdown {
  display: inline-block;
  width: 80px;
  margin: 0;
  vertical-align: top;
}

.nav-question-dropdown button {
  height: 32px;
  line-height: 32px;
}

/* --- 前へ／次へボタン --- */

#section-question .nav-question-prev-btn {
  margin-left: 10px;
}

.nav-question-next-btn {
}

/* --- ブックマーク --- */

#section-question .nav-question-bookmark {
  float: right;
}

.nav-question-bookmark .fs-checkbox-marker {
  width: 60px;
  height: 34px;
}

.nav-question-bookmark .fs-checkbox-state {
  line-height: 30px;
}

.nav-question-bookmark .fs-checkbox-state_on:before,
.nav-question-bookmark .fs-checkbox-state_off:before {
  font-family:'WebHostingHub-Glyphs';
  font-size: 16px;
}

.nav-question-bookmark .fs-checkbox-state_on:before {
    content: '\f13a';
  color: #FBC02D;
}

.nav-question-bookmark .fs-checkbox-state_off:before {
    content: '\f13b';
  color: #d0d0d0;
}

/* ----------------------------------------

        回答欄

   ---------------------------------------- */

/*
 * --- 回答欄パネル ---
 */

#section-answer {
  position: fixed;
  width: 100%;
  left: 0;
  top: 100%;
  bottom: auto;
  z-index: 5;
  background-color: rgba(225,245,254,0.8);
}

#section-answer.opened {
  top: auto;
  bottom: 0;
}

#answer-panel {
  border-top: 3px solid #3bafda;
}

/* --- XSサイズ --- */
@media screen and (max-width: 767px) {

  #section-answer {
    top: 48px;
  }

  #section-answer.opened {
    top: 48px;
    bottom: auto;
    margin-bottom: 0;
  }

  #answer-panel {
    display: none;
    padding: 5px 10px;
  }

  #section-answer.opened #answer-panel {
    display: block;
  }

}


/*
 * --- トグルボタン ---
 */

#answer-toggle-btn {
  border: none;
  position: absolute;
  top: -32px;
  min-width: 150px;
  width: 60%;
  height: 32px;
  margin: 0 20%;
  font-size: 16px;
  padding: 8px 15px;
  color: #ffffff;
  background-color: #3bafda;
  border-radius: 10px 10px 0 0;
  -webkit-transition: color 0.2s, background-color 0.2s, border-color 0.2s;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}

#answer-toggle-btn:hover {
    background-color: #2b9fca;
}

#answer-toggle-btn:hover + #answer-panel {
    border-color: #2b9fca;
}

#answer-toggle-btn:before {
    content: '\f48a';
  font-family:'WebHostingHub-Glyphs';
  margin-right: 5px;
  font-size: 12px;
}

#answer-toggle-btn:after {
  content: '開く';
}

#section-answer.opened #answer-toggle-btn:before {
  content: '\f48b';
}

#section-answer.opened #answer-toggle-btn:after {
  content: '閉じる';
}


/* --- XSサイズ --- */
@media screen and (max-width: 767px) {

  #answer-toggle-btn {
    top: auto;
    bottom: -48px;
    height: 48px;
    border-radius: 0 0 10px 10px;
  }

  #answer-toggle-btn:before {
    content: '\f48b';
  }

  #section-answer.opened #answer-toggle-btn:before {
        content: '\f48a';
  }

}


/*
 * --- 回答リスト ---
 */

#answer-list {
  overflow-y: scroll;
  padding: 5px 15px;
  list-style: none;
  counter-reset: answerCount;
  height:200px;
}



#answer-list.answer-label-katakana {
}

/*
 * --- 回答欄 ---
 */

#answer-list li {
  float: left;
  width: 90px;
  margin: 5px;
}

.pull li {
  float: left;
  width: 110px !important;
  margin: 5px;
}

.check_list li {
  float: left;
  width: 100% !important;
  margin: 5px;
}


.check_list li label{
    width: 40px;
    margin-bottom:5px !important;
}

.check_list .btn-group>.btn:first-child{
    border-radius:0;
}

.check_list .check-group>.btn:first-child{
    border-radius:0 5px 5px 0;
}

.check-group .active.btn{
    background-color: #EFFFDD;
}

#answer-list li .answer-index {
  float: left;
  width: 40px;
  height: 34px;
  line-height: 32px;
  text-align: center;
  color: #fff;
  background-color: #8BC34A;
  border: 1px solid #cccccc;
  border-right: none;
  border-radius: 8px 0 0 8px;
}

#answer-list .form-control {
  font-size: 16px;
}

#answer-list li input,
#answer-list li p {
  float: left;
  width: 50px;
  border-radius: 0 6px 6px 0;
  background-color: #ffffff !important;
}

#answer-list li select {
  float: left;
  width: 70px;
  border-radius: 0 6px 6px 0;
  background-color: #ffffff !important;
}


/* --- 正解、不正解 --- */

#answer-list li.answer-ok,
#answer-list li.answer-ng {
  position: relative;
}

#answer-list li.answer-ok:before,
#answer-list li.answer-ng:before {
  font-family:'WebHostingHub-Glyphs';
  font-size: 28px;
  position: absolute;
  left: -12px;
  top: -3px;
  opacity: 0.8;
}

#answer-list li.answer-ok:before {
    content: '\f772';
  color: #da4453;
}

#answer-list li.answer-ng:before {
    content: '\00d7';
  color: #434a54;
}


/* --- 数字入力 --- */

#answer-list li .answer-type-number {
}


/* ----------------------------------------

        サイドバー

   ---------------------------------------- */

.doc-question #sidebar-menu {
}

.doc-question #sidebar-menu > ul {
  padding: 20px 20px 5px 20px;
}

/*
 * --- リスト ---
 */

.doc-question #sidebar-menu .sidebar-group-parent {
  background-color: #ede7f6;
  border-left: 5px solid #7986cb;
}

.doc-question #sidebar-menu .sidebar-group-child {
  background-color: #f9fbe7;
  border-left: 5px solid #8bc34a;
}

.doc-question #sidebar-menu li {
  min-height: 40px;
  list-style: none;
  margin-bottom: 5px;
}

.doc-question #sidebar-menu .nav-label {
  float: left;
  margin-right: 10px;
  line-height: 34px;
  font-size: 12px;
}

.doc-question #sidebar-menu select {
  font-size: 16px;
  width: 80px;
}

.doc-question #sidebar-menu .nav-question-prev-btn,
.doc-question #sidebar-menu .nav-question-next-btn {
  width: 100px;
}

.doc-question #sidebar-menu .nav-question-label-pre {
  padding-left: 0;
  color: #404040;
}

/*
 * --- 結果ボタン ---
 */

.doc-question #sidebar-menu #sidebar-result {
  padding: 20px;
}



/* ========================================


        ページ特有


   ======================================== */

/* ----------------------------------------

        情報ページ

   ---------------------------------------- */

.doc-info #header-time-left,
.doc-info #header-menu-btn,
.doc-info .page-breadcrumb {
  display: none;
}

.doc-hide-menu #header-menu-btn,
.doc-hide-back #header-back {
  display: none;
}



/* - eof. */
