@charset "UTF-8";

/* ===============================================================
    カラースキーマ
=============================================================== */
/*
サイトで使う色をまとめてあります。

色コードの部分だけコピペして使うか、
SASS等で変数化してください。
下記クラス名はただの名前です。
クラス名は実際のHTML内に使用しないでください。
必要なければこの項目ごと削除してください。
*/

/* =============================
    カラー系
============================= */

/*メイン青*/
.color-main{
    color: #034bd2;
    background-color: #034bd2;
}

/*サブ緑*/
.color-sub{
    color: #00ac97;
    background-color: #00ac97;
}



/*暗い青*/
.color-main--dark{
    color: #023087;
    background-color: #023087;
}

/*暗い緑*/
.color-sub--dark{
    color: #009381;
    background-color: #009381;
}

/*背景用の薄い青*/
.color-bg--light{
    color: #dffffb;
    background-color: #dffffb;
}

/*リンク色*/
.color-link{
    color: #0091d5;
    background-color: #0091d5;
}

/*基本的にホバー色は透明度の変更で対応*/

/* =============================
    黒・グレー系
============================= */

/*テキスト黒*/
.color-dark{
    color: #1c1c1c;
    background-color: #1c1c1c;
}

/*暗いグレー*/
.color-gray-dark{
    color: #4a4a4a;
    background-color: #4a4a4a;
}

/*グレー*/
.color-gray-dark{
    color: #878787;;
    background-color: #878787;
}

/*やや明るいグレー*/
.color-gray-light{
    color: #cfcfcf;
    background-color: #cccccc;
}

/*白に近いグレー*/
.color-white-dark{
    color: #eeeeee;
    background-color: #eeeeee;
}

/*カラースキーマ END*/

/* 赤文字 */
.color-red{
    color: #ff0000;
}
/* 白 */
.color-white{
    color: #eeeeee;
}

/*デバッグ用*/
.debug1{
    background: red !important;
}
.debug2{
    font-size: 100px !important;
}

/* ===============================================================
    要素のリセット
=============================================================== */
/* 全てのブラウザで、どのような状況でも縦スクロールバーを表示
10pxを1remと計算*/
html {
    background: transparent;
    font-size: 62.5%;/*root 1rem font-size:16px*62.5%= 10px*/
    /*height: 100%;*/
    line-height: 1;
    margin: 0;
    /*    overflow: scroll;
        overflow: -moz-scrollbars-vertical;
        overflow-x: auto;*/
    padding: 0;
}

/* 要素のリセット */
body,
div, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, address,
ol, ul, dl, li, dt, dd,
table,tbody,thead,tr, th, td, form, fieldset,legend,
header, footer,main, section, article, aside, nav, figure, figcaption,
a,span,img,em,strong,i{
    background: transparent;
    border: none;
    box-sizing: border-box;
    color: #1c1c1c;
    /*font-family:Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;*/

    font-family:Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
    /*ゆうゴシックは使用しない。for android,iOS,windowsXP-10,MacOS*/
    font-size: 100%;
    margin: 0;
    padding: 0;
}

ul,ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img, input, select, textarea {
    /*font-family:Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;*/
    font-family:Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;

    /*ゆうゴシックは使用しない。for android,iOS,windowsXP-10,MacOS*/
    vertical-align: middle;
}

a img {
    border: 0;
    vertical-align: bottom;
}

/* ===============================================================
    ページ基本設定
=============================================================== */
body {
    background: #eeeeee;
    font-size: 1.4rem;/*基本フォントサイズ:1.4rem =14px*/
}
/* リンクテキスト */
a:link { color: #0091d5; }
a:visited { color: #0091d5; }
a:hover, a:focus, a:active { color: rgba(0, 145, 213,0.5); }

/* ===============================================================
    共通パーツ
=============================================================== */

/* ===============================================================
    フォーム部品
=============================================================== */

/* =============================
    フォーム内要素
============================= */
/*----- 一覧エリア -----*/
input[type="text"],
input[type="date"],
input[type="password"],
input[type="email"],
input[type="number"],
select,
textarea{
    border:solid 1px  #cccccc;;
    border-radius:4px;
    color:#1C1C1C;
    font-size: 1.4rem;
    line-height: 1;
    padding:.8rem;
    vertical-align:middle;
}

input[type="text"],
input[type="date"],
input[type="password"],
input[type="email"],
input[type="number"]{
    height: 16px;
}

input[type="number"]{
    text-align: right;
}
input[type="number"].spin-button-hide::-webkit-outer-spin-button,
input[type="number"].spin-button-hide::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"].spin-button-hide {
  -moz-appearance: textfield;
}

textarea{
    line-height: 1.4;
    padding-top:0;
}

/*input type file is not setting*/
input[type="file"]{

}

input[disabled="disabled"],
select[disabled="disabled"],
textarea[disabled="disabled"]{
    background: #eeeeee;
    color: #878787;
    cursor: not-allowed;
}
/*ラジオボタン,チェックボックス*/
input[type="radio"],
input[type="checkbox"]{
    margin: .4rem;

}

input[onfocus^="Calendar"] {
    background: url(/assets/icon_calendar.png) no-repeat 98% center;
}

label{
    font-size: 1.4rem;
    padding:.4rem 0;
    vertical-align:middle;
}

select {
    padding:.8rem;
    text-align: left;
    -webkit-appearance: menulist-button;
}


/* =============================
    フォームサイズバリエーション
============================= */
.input-Sel {
    width: 20rem;
}

.input-XS {
    width: 4rem;
}

.input-SS {
    width: 10rem;
}

.input-S {
    width: 20rem;
}

.input-SM {
    width: 30rem;
}

.input-SMM {
    width: 35rem;
}

.input-SL {
    width: 40rem;
}

.input-M {
    width: 50rem;
}

.input-L {
    width: 80rem;
}
.input-block {
    width: 90%;
}

/* =============================
    フォームグループ
============================= */
/*通常フォームグループ*/
.form-group{
    margin:1.6rem 0;
    width: 100%;
}

.form-group>input,
.form-group>select,
.form-group>textarea,
.form-group>button,
.form-group>label{
    display: inline-block;
    vertical-align: middle;
}

.form-group + .form-group{
    margin-top: 2.4rem;
}



/*常に横並びフォームグループ*/
.form-group-inline{
    display: inline-block;
    margin: .8rem;
}

.form-group-inline>input,
.form-group-inline>select,
.form-group-inline>textarea,
.form-group-inline>button,
.form-group-inline>label{
    display: inline-block;
    vertical-align: top;
    margin-right: .4rem;
}

.form-group-inline>label{
    padding: .4rem;
}



/*フォーム項目に連動するラベル*/
.form-group>label,
.form-text-ellipsis,
.form-text{
    padding: .4rem .8rem;
}

/*ラベル以外のテキスト*/
.form-text{
    font-size: 1.4rem;
    line-height: 1.6;
}

/*ラベル以外のテキスト(太字)*/
.form-text-weight{
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: bold;
    padding: .2rem .4rem;
}
/*一定文字数以上は非表示されるフォーム内テキスト*/
.form-text-ellipsis{
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 15em;
}

/* =============================
    カラー選択フォーム
============================= */

.form-color-list{
    width: 100%;
    max-width: 960px;
    margin: 0 auto;

}

.form-color-heading{
    border-bottom:1px solid #eeeeee;
}

.form-color-list-item{
    display:table;
    width: 100%;
}

.form-color-label{
    display:table-cell;
    vertical-align: middle;

}
.form-color-label .form-text{
    display: inline-block;
    width: 9em;
}

.form-color-input{
    display: inline-block;
    width: 10em;
}
.form-color-label .form-color-picker{
    width:12rem;
    height: 3rem;
    padding: .5rem 1rem;
    border: 1px #000 solid;
    background: transparent;
    display: inline-block;
    vertical-align: middle;
}



/* ===============================================================
    ボタン
=============================================================== */
/* =============================
    通常ボタン
============================= */

/*ボタン基本設定*/

.button1,
.button2,
.button3,
.button4{
    border: none;
    border-radius: 4px;
    box-shadow: 0px 4px 8px 0px rgba(130,130,130,0.8);
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1.6rem;
    line-height: 1;
    overflow: hidden;
    padding: 1.2rem 2.4rem 1.2rem 1.6rem;
    position: relative;
    transition: all .1s ease-in;
    -webkit-transition: all .1s ease-in;
    text-align: left;
    text-decoration: none;
}

/*TODO: .buttonは.btnのマルチクラスに置き換える*/
.btn{
    border: none;
    border-radius: 4px;
    box-shadow: 0px 4px 8px 0px rgba(130,130,130,0.8);
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1.6rem;
    line-height: 1;
    overflow: hidden;
    padding: 1.2rem 1.6rem;
    position: relative;
    transition: all .1s ease-in;
    -webkit-transition: all .1s ease-in;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}
/*ボタン矢印*/
.button1:after,
.button2:after,
.button3:after,
.button4:after {
    border: 7px solid transparent;
    border-top-width: 5px;
    border-bottom-width: 5px;
    border-left-color: #fff;
    content: '';
    margin-top: -5px;
    position: absolute;
    right: .2em;
    top: 50%;
}
.button1:hover,
.button2:hover,
.button3:hover,
.button4:hover,
.btn:hover{
    box-shadow: 0px 8px 16px 0px rgba(130,130,130,0.6);
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}
/*ボタン内テキスト*/
.button1>span,
.button2>span,
.button3>span,
.button4>span,
.btn span,
.link-btn span{
    color: #fff;
    display: inline;
    line-height: 1;
    padding: 0 .4rem;
}
/*ボタン内アイコン*/
.btn .fa{
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1.6rem;
}

/* =============================
    通常ボタンバリエーション
============================= */

/*TODO: .buttonは[.btn .btn-xx]のマルチクラスに置き換える*/
/*サブ色ボタン*/
.button1,.btn-sub {
    background: #00ac97;
    font-size: 1.6rem;
}
/*メイン色ボタン*/
.button2,.btn-main {
    background: #0091d5;
    font-size: 1.6rem;
}
/*システム色ボタン*/
.button3,.btn-default {
    background: #4a4a4a;
    font-size: 1.6rem;
}

/*ログアウトボタン*/
.button4 {
    background: #878787;
    font-size: 1.2rem;
    padding: .8rem 2.4rem .8rem 1.2rem;
    vertical-align: top;
}



/* =============================
    リンク形式ボタン
============================= */

/*TODO: .small-buttonは[.link-btn .btn-xx]のマルチクラスに置き換える*/
.small-button {
    border: none;
    color: #0091d5;
    cursor: pointer;
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1;
    position: relative;
    padding: .4rem;
    text-align: left;
    transition: all .1s;
    -webkit-transition: all .1s;
    vertical-align: middle;
    text-decoration: none;
}

/*矢印*/
.small-button:after {
    border: 7px solid transparent;
    border-top-width: 3px;
    border-bottom-width: 3px;
    border-left-color: #0091d5;
    content: '';
    margin-top: -3px;
    position: absolute;
    right: 0;
    top: 50%;
    transition: all .1s;
    -webkit-transition: all .1s;
}
.small-button:hover {
    opacity: .7;
}
/*ボタン内テキスト*/
.small-button span {
    color: #0091d5;
    font-weight: bold;
    padding-right: 1.2rem;
    text-decoration: underline;
}
/* =============================
    小ボタン
============================= */

.small-button1,
.small-button2,
.btn-sm{
    border: none;
    border-radius: 4px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.6);
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1;
    padding: .8rem 1.6rem .8rem 1.2rem;
    position: relative;
    transition: all .1s;
    -webkit-transition: all .1s;
    text-align: left;
    text-decoration: none;
    vertical-align: middle;
}

.small-button2:after {
    border: 7px solid transparent;
    border-top-width: 4px;
    border-bottom-width: 4px;
    border-left-color: #fff;
    content: '';
    margin-top: -4px;
    position: absolute;
    right: -0.3em;
    top: 50%;
    transition: all .1s;
    -webkit-transition: all .1s;
}

/*ボタン内テキスト*/
.small-button1 span,
.small-button2 span {
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
}

/*システム色ボタン小*/
.small-button1 {
    background: #4a4a4a;
}

/*メイン色ボタン小*/
.small-button2 {
    background: #0091d5;
}

/* =============================
   リンク状ボタン（影無し）
============================= */
.link-btn{
    border-radius: 2px;
    box-shadow: 0px;
    cursor: pointer;
    color: #0091d5;
    display: inline-block;
    line-height: 1;
    padding: .4rem;
    position: relative;
    transition: all .1s;
    -webkit-transition: all .1s;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.link-btn:hover,
.link-btn.btn-border:hover{
    opacity: .7;
}


/*ボタン内アイコン*/
.link-btn .fa{
    color: #0091d5;
    cursor: pointer;
    display: inline-block;
    font-size: 1.6rem;
    padding: 0 .4rem;
}
/* =============================
   リンク状ボタンバリエーション
============================= */
.link-btn-lg{
    padding:1.0rem .4rem;
    font-size: 1.2rem;
    border-radius: 4px;
}

.link-btn-border{
    border:1px solid #0091d5;
    text-decoration: none;
    background: #fff;
}
/* =============================
    ボタングループ
============================= */
/*TODO: .button-groupは[.btn-group](Bootstrap記法)に置き換える*/
/*----- 一覧エリア -----*/

/*複数ボタン横並び配置*/
.button-group,
.btn-group{
    margin: 0 auto;
    padding: .8rem;
    text-align: center;
}

.btn-left{
    margin-left: 6rem !important;;
}

.button-group>a+a,
.button-group>input+input,
.button-group>button+button,
.btn-group>.btn+.btn{
    margin-left: 2.4rem;
}

.button-group-xs,
.btn-group-xs{
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.btn-group-label{
    display: inline-block;
    text-align: left;
    margin: .8rem;
    vertical-align:top;
}

/* ===============================================================
    タイポグラフィ
=============================================================== */

/* =============================
    テキスト要素
============================= */
/*----- 文章 -----*/
.sentence {
    margin: 0 auto 10px;
    width: 930px;
}

/*----- 罫線 -----*/
hr {
    border: none;
    border-top: 1px solid #bbbbbb;
    height: 0;
    margin: 0 auto 20px;
    overflow: hidden;
    padding: 0;
    width: 930px;
}

/* =============================
    サイトロゴ
============================= */
/*ロゴテキスト*/
.logo-text{
    font-size: 2.8rem;
    line-height: 1.4;
}
/* =============================
   ページタイトル
============================= */
.title-group {
    margin:1.6rem .8rem 0;
}

/*カテゴリ見出し*/
.title-group h2 {
    background: #00ac97;
    color: #fff;
    display: inline-block;
    font-weight: normal;
    line-height: 1;
    margin: 1.6rem .8rem 0;
    padding: .8rem 1.6rem;
}

/*ページ見出し*/
.title-group h3 {
    color: #00ac97;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1;
    margin:0 .8rem;
    padding: .8rem 0rem;
}

h4 {
    border-bottom: 2px solid #00ac97;
    font-size: 1.6rem;
    line-height: 1;
    margin:1.6rem 0 3.2rem;
    padding: 1.6rem .8rem .8rem;
    position: relative;
    width: 100%;
}

h4>span{
    position: absolute;
    right: .8rem;

}

.currentDateTime{
    font-size: 1.4rem;
    font-weight: bold;
}

.headline {
    font-size: 1.6rem;
    margin:1.6rem .8rem;
}



/* ===============================================================
    各種ナビゲーション
=============================================================== */

/* =============================
    ナビ基本設定
============================= */

.nav{
    width: 100%;
}

.nav:after{
    content: "";
    display: block;
    clear: both;
}

.nav>li{
    vertical-align: middle;
}

.nav>li>a{
    display: inline-block;
    position: relative;
    transition: all 0.1s ease;
    -webkit-transition: all 0.1s ease;
    text-decoration: none;
    width: 100%;
}

/* =============================
    ナビゲーションバー
============================= */
.navbar {
    background: #034bd2;
    border-radius: 6px;
    display: table;
    overflow: hidden;
}

.navbar>li {
    display: table-cell;
    font-size: 1.4rem;

}

.navbar>li> a {
    color: #fff;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    padding: 1.6rem;

}
/*ナビ項目2つ目以降の設定*/
.navbar>li+li{
    border-left: 1px solid #023087;
}

.navbar>li a:hover{
    background: #0091d5;
}

.navbar>li a.current {
    background: #023087;
}

/*サブメニューブロック*/
.navbar-contents {
    background: #eeeeee;
    border-radius: 4px;
    border: 1px solid #cccccc;
    margin:1.6rem 1.6rem;
    overflow: hidden;
    padding:.8rem 0;

}

/* ===============================================================
        各種リスト
=============================================================== */

/* テーブル状のテキストリンク */
.list-text-link-table{
    table-layout: auto;
    width: 100%;
}
.list-text-link-table td {
    font-size: 1.4rem;
    line-height: 1.2;
    padding:1.6rem .8rem;
    vertical-align: middle;
}
.list-text-link-table a{
    padding-left: 1.6rem;
    position: relative;
    text-decoration: none;
}

.list-text-link-table a:hover{
    text-decoration: underline;
}

/*矢印アイコン*/
.list-text-link-table a:before {
    border: 7px solid transparent;
    border-top-width: 5px;
    border-bottom-width: 5px;
    border-left-color: #0091d5;
    content: '';
    left: 0;
    margin-top: -5px;
    position: absolute;
    top: 50%;
    transition: all .1s;
    -webkit-transition: all .1s;
}

/* テキストリンク */
.list-text-link {
    width: 100%;
    display: block;
    margin: 0 5px;
}

ul.list-text-link li {
    display: block;
    float: left;
    padding: 10px;
    margin-right: 20px;
}

.list-text-link a{
    padding-left: 1.6rem;
    position: relative;
    text-decoration: none;
}

.list-text-link a:hover{
    text-decoration: underline;
}

/*矢印アイコン*/
.list-text-link a:before {
    border: 7px solid transparent;
    border-top-width: 5px;
    border-bottom-width: 5px;
    border-left-color: #0091d5;
    content: '';
    left: 0;
    margin-top: -5px;
    position: absolute;
    top: 50%;
    transition: all .1s;
    -webkit-transition: all .1s;
}

/* ===============================================================
        専用パーツ
=============================================================== */
/* =============================
   アカウント情報
============================= */
#accountInfo {
    display: inline-block;
    margin-right: 2.4rem;
}

#accountInfo a{
    font-weight: bold;
    text-decoration: none;
}

#accountInfo a:hover{
    font-weight: bold;
    opacity: .6;
    text-decoration: underline;
}

#accountInfo .accountInfoLabel {
    display: inline-block;
    font-weight: bold;
    margin-left: 1.6rem;
}

/* =============================
   おすすめラベル
============================= */
.merit-category {
    color: #000000;
    display: inline-block;
    padding: 2px 4px;
    width: 200px;
}
.merit {
    background-color: #cccccc;
    border-radius: 4px;
    color: #eeeeee;
    display: inline-block;
    font-size: 1.2rem;
    margin:.4rem;
    padding:.4rem .8rem;
    vertical-align: top;
}
.merit-selected {
    background-color: #00ac97;
    color: #fff;
}
/* =============================
　　日付検索フォーム
============================= */

.search-date{
    margin: 1.6rem 1.6rem 3.2rem;
}

.search-date select{
    display: inline-block;
    margin: 0 .8rem;
}

.search-date a{
    margin-left: 1.6rem;
}

/* =============================
    フォーム内画像
============================= */
.form-thumbnail{
    display: block;
    text-align: center;
}
.form-thumbnail figcaption{
    font-size: 1.4rem;
    margin: 1.6rem 1.6rem 1.6rem 0;
}
.form-thumbnail img{
    max-width: 30rem;
    text-align: center;
    margin: 0 auto;
}

/* =============================
    フォーム内フォルダツリー
============================= */
.form-tree-list{

    width: 65%;

    margin: 0 auto;
}

.form-tree-list >.files{
    border: 1px solid #cccccc;
}

.form-tree-list .breadcrumb{
    padding: 1.6rem;
    text-align: left;

}

.breadcrumb>li{
    text-align: left;
    display: inline-block;
    margin: 1.6rem 0;
    text-decoration: underline;
    color: #0091d5;
    font-size: 1.4rem;
}

.breadcrumb>li +li:before{
    content: "＞";
}

.breadcrumb>li:last-of-type,
.breadcrumb>li:last-of-type:hover{
    color: #1c1c1c;
    font-weight: bold;
    text-decoration: none;
}
.breadcrumb>li:hover{
    cursor: pointer;
    font-weight: bold;
}

.form-tree-folder{
    text-align: left;
    padding:.8rem 1.6rem;
}
.form-tree-link{
    text-align: left;
    text-decoration: underline;
    color: #0091d5;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;


}
.form-tree-folder .fa{
    width: 2em;
    color: #00ac97;

}
.form-tree-folder.is-folder-close{
    padding-left: 1.6rem;
}
.form-tree-folder.is-folder-open{

}
.form-tree-row{
    border-bottom: 1px solid #cccccc;
    padding:1.6rem 1.6rem;
}
.form-tree-row:nth-of-type(2n){
    background: #eee;
}
/* ===============================================================
    アップロードフォーム
=============================================================== */
.dir_path {
    color: #AAAAAA;
}

.label {
    font-size: 0.9em;
}

.label_success {
    background-color: #428BCA;
}

#uploadTargetDir {
    width: 520px;
}

.path_list_wrap {
    padding-top: 10px;
    color: #666666;
}

.path_list_wrap li {
    cursor: pointer;
}
/* ===============================================================
    カレンダー
=============================================================== */

/* =============================
  汎用カレンダーテーブル
============================= */

/*カレンダーテーブル基本設定*/
.calendar-table{
    font-size: 1.4rem;
    table-layout:fixed;
    vertical-align: middle;
    width:100%;
}

/* カレンダーテーブル年月*/
.calendar-table caption{
    color: inherit;
    font-size: 1.6rem;
    font-weight: bold;
    padding: .8rem;
    text-align: left;
}

.calendar-table caption>span{
    color: inherit;

}

.calendar-table caption>strong{
    color: inherit;
    font-size: 1.5em;
    padding: 0 .8rem;
}
/* カレンダーテーブル日付部*/
.calendar-table th,
.calendar-table td{
    text-align: center;

}
.calendar-table a{
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
    height: auto;
    padding: .8rem;
    line-height: 1;
}

.calendar-table th span,
.calendar-table td span
{
    color: inherit;
    display: block;
    width: 100%;
    height: auto;
    padding: .8rem;
    line-height: 1;
}

.calendar-table a:hover{
    opacity: 70%;
    background: lightgoldenrodyellow;
}
.calendar-div{
    height:270px;
}
/* =============================
  汎用カレンダー日付色
============================= */

.calendar-table .isToday{
    background:#D5FFEC;
}
.calendar-table .isSunday{
    background: #FFD5DE;
}
/*カレンダー土曜日*/
.calendar-table .isSaturday{
    background: #D5F6FF;
}
/*カレンダー祝日*/
.calendar-table .isHoliday{
    color: red;
    font-weight: bold;
}
.calendar-table-info{
    text-align: left;
}

.calendar-table-info-label{
    text-align: left;
    margin: 0;
    display: block;
    font-weight: bold;
}
.calendar-table-info textarea{
    display: block;
    width: calc(100% - 2rem);
    margin:0 auto;
    height: 4em;
    resize: none;
}
.calendar-table-info-caption{
    display: block;
    width:100%;
    margin:0 auto;
    padding: .8rem;
    background:#eee;
    line-height: 1.6;
     height: 6em;
     overflow-y: auto;
    word-wrap: break-word;
    word-break: break-all;
}

/*特殊ボタン色 別に使わなくてもよい*/
/*土曜日ボタン色*/
.btn-saturday{
    background:royalblue;
}

/*日曜日ボタン色*/
.btn-sunday{
    background:tomato;
}

/*祝日ボタン色*/
.btn-holiday{
    background:green;
}

/* =============================
カレンダーデザインバリエーション
============================= */

/*緑ベースのカレンダーデザイン*/
.theme-calendar01{
    width: 100%;
}

.theme-calendar01 caption{
    color:#00ac97;
}

.theme-calendar01 th,
.theme-calendar01 td{
    border: 1px solid #00ac97;
    color: #ccc;/*リンクなしのカラー*/
}
/*カレンダー日付基本色*/
.theme-calendar01 a{
    color:#1c1c1c;
}


.theme-calendar01 tbody td span{
    color: #1c1c1c;
}


.theme-calendar01 thead th{
    background:#00ac97;
    color: #fff;
}
.theme-calendar01 tfoot th,
.theme-calendar01 tfoot td{
    border: none;
}
/*カレンダー日曜日*/

.theme-calendar01 .isToday{
    background:#D5FFEC;
}
.theme-calendar01 .isSunday{
    background: #FFD5DE;
}
/*カレンダー土曜日*/
.theme-calendar01 .isSaturday{
    background: #D5F6FF;
}
/*カレンダー祝日*/
.theme-calendar01 .isHoliday{
    color: red;
    font-weight: bold;
}




/*グレー。白ベースのカレンダーデザイン*/
.theme-calendar02{
    width: 100%;
}

.theme-calendar02 caption{
    color:#1c1c1c;
    text-align: left;
    font-size: 2rem;
}
.theme-calendar02 caption strong{
    font-size: 1em;
}

.theme-calendar02 th,
.theme-calendar02 td{
    border: 1px solid #ccc;
    color: #ccc;/*リンクなしのカラー*/
}
/*カレンダー日付基本色*/
.theme-calendar02 a{
    color:#1c1c1c;
}

.theme-calendar02 tbody td span{
    color: #1c1c1c;
}

.theme-calendar02 thead th{
    background:gray;
    color: #fff;
}

.theme-calendar02 tfoot th,
.theme-calendar02 tfoot td{
    border: none;
}


.theme-calendar02 .isToday{
    background:#D5FFEC;
}

.theme-calendar02 .isSunday{
    background: none;
    color: red !important;
    font-weight: bold  !important;
}
/*カレンダー土曜日*/
.theme-calendar02 .isSaturday{
    background: none;
    color: #1c1c1c;
}
/*カレンダー祝日*/
.theme-calendar02 .isPublicHoliday{
    background: none;
    color: red !important;
    font-weight: bold  !important;
}
/*カレンダー休日*/
.theme-calendar02 .isDayOff{
    color: #1c1c1c;
    background: #dffffb !important;
}

/* ===============================================================
    セグメントマスタ
=============================================================== */
.segment-heading{
    border-bottom: 1px solid #cccccc;
    border-top: 1px solid #cccccc;
}
.segment-heading th{
    padding: 0.8rem 0.6rem;
    border: 1px solid #cccccc;
    font-size: 1.4rem;
    background: #eeeeee;
}
.segment-heading td{
    padding: 0.8rem 0.6rem;
    border: 1px solid #cccccc;
    font-size: 1.4rem;
}
td.break_all{
    word-break: break-all;
}
.segment_category{
    width: 475px;
    margin: 0 auto;
    padding: 5px 0;
    word-break: break-all;
}
.large_category{
    font-size: 2rem;
    line-height: 1.6;
    padding: 0.4rem .1rem;
}
/* ===============================================================
    ページング
=============================================================== */

/* =============================
   ページングを囲むlayout枠
============================= */

/*todo: 全ての.paging-areaを.l-list-pagingに統一したい*/
.paging-area,
.l-list-paging{
    text-align: center;
}
/*clearfix*/
.paging-area:after,
.l-list-paging:after{
    content: " ";
    clear: both;
    display: block;
}
/*ページングブロック内ボタン*/
.paging-area>.button-group,
.l-list-paging>.btn-group,
.l-list-paging>.form-group,
.l-list-paging>.form-group-inline{
    float: left;
    margin: 0;
    padding: 0;
    text-align: left;
    width: 30%;
}

.paging-area>.button-group>button + button,
.paging-area>.button-group>a + a,
.l-list-paging>.btn-group>.btn +.btn,
.l-list-paging>.btn-group>.link-btn +.link-btn{
    display: inline-block;
    margin-left: .8rem;
    text-align: left;
}

/* =============================
   ページングリスト本体
============================= */
.paging{
    float: right;
    margin: 0;
    padding:0;
    text-align: right;
    vertical-align: middle;
    width: 70%;

    /*inline-blockの隙間を埋める*/
    font-size:1px;
    letter-spacing: -1px;
    word-spacing: -1px;
}
/*ページング件数*/
.paging-count{
    display: inline-block;
    font-size: 1.4rem;
    margin: 0 1.6rem 0 0;
    padding: 0;
    text-align: right;

    /*inline-blockの隙間を埋める*/
    letter-spacing: normal;
    word-spacing: normal;
}

.paging-count>strong{
    color:#00ac97;
    font-weight: bold;
    font-size:1.6rem;
}

/*ページングリンク*/
.paging-arrow-first,.paging-arrow-last,.paging-num-link{
    border:1px solid #0091d5;
    color: #0091d5;
    display: inline-block;
    font-size: 1.4rem;
    position: relative;
    text-decoration: none;
    transition: all .3s;
    -webkit-transition: all .3s;

}
.paging-num-link{
    margin: 0 .4rem;
    padding: .8rem 0;
    text-align: center;
    width: 2em;
}

.paging-arrow-first{
    margin: 0 .8rem;
    padding: .8rem .8rem .8rem 1.6rem;
    position: relative;
}

/*矢印*/
.paging-arrow-first:before{
    border: 7px solid transparent;
    border-top-width: 3px;
    border-bottom-width: 3px;
    border-right-color: #0091d5;
    content: '';
    left: 0;
    margin-top: -3px;
    position: absolute;
    top: 50%;
    transition: all .1s;
    -webkit-transition: all .1s;
}


.paging-arrow-last{
    margin: 0 .8rem;
    padding: .8rem 1.6rem .8rem .8rem;
    position: relative;
}

/*矢印*/
.paging-arrow-last:after{
    border: 7px solid transparent;
    border-top-width: 3px;
    border-bottom-width: 3px;
    border-left-color: #0091d5;
    content: '';
    margin-top: -3px;
    position: absolute;
    right: 0;
    top: 50%;
    transition: all .1s;
    -webkit-transition: all .1s;
}

.paging a:hover{
    background: #0091d5;
    border:1px solid #0091d5;
    color: #fff;
}

/*ページング件数選択*/
.paging-num-current{
    background: #0091d5;
    border:1px solid #0091d5;
    color: #fff;
    display: inline-block;
    font-size: 1.4rem;
    margin: 0 .4rem;
    padding: .8rem;
}

.paging-num-select{
    display: inline-block;
    font-size: 1.4rem;
    margin: 0 0 1.6rem 1.6rem ;
    padding: 0;
}

.paging-num-select>select{
    font-size: 1.4rem;
    margin: 0 .8rem 0 .8rem ;
    padding:.8rem;
}

/* ===============================================================
    カード型グリッド
=============================================================== */
.card{
    width:auto;
    margin: 0;
    vertical-align: top;
}
.card-block{
    padding: 0 1.6rem;
    margin: .8rem 0;
    margin: 0;
}

.card-block img{
    width: 100%;
    max-width: 160px;
}


/* ===============================================================
    サムネイル用　カード型グリッド
=============================================================== */

.thumbnail-card-header{
    padding: .8rem 1.6rem;
}
.thumbnail-card-header input{
    margin:0 1.6rem;
}
.thumbnail-card-footer{
    padding: 1.6rem;
}

/* ===============================================================
    レイアウトグリッドテーブル
=============================================================== */
/*フォームや、詳細画面のテーブルレイアウト用汎用クラス
基本的にはテーブルにこのクラスをでつけてイアウトし、
微調整は別の.xxxx-tableクラスを追加すること*/


.l-grid-table{
    box-sizing: border-box;
    font-size: 1.4rem;
    table-layout: fixed;
    margin: .8rem auto;
}

.l-grid-table th,
.l-grid-table td {
    line-height: 1.4;
    word-wrap: break-word;
    word-break: break-all;
}

.l-grid-table th{
    padding: .4rem;
    font-weight: bold;
}
.l-grid-table td{
    padding: .4rem;
    text-align: left;
}
.l-grid-table img{
    max-width: 100%;
}

#label-content .l-grid-table {
	border: 1px solid #999999;
}
#label-content .l-grid-table th,
#label-content .l-grid-table td {
	border: 1px solid #999999;
	padding: 4px;
	line-height: 1.3em;
}
#label-content .l-grid-table th {
	background-color: #c1d7e6;
}
#label-content .l-grid-table th.title {
	background-color: #777777;
	color: #ffffff;
}

#label-content .l-grid-table th.navy {
	background-color: #223a70 !important;
}

#label-content td.label_textarea textarea{
    width: 480px;
    height: 70px;
}
#label-content .l-grid-table {
 margin-bottom: 1em;
}

/*デフォルト設定テーブル*/
.default-table{
    margin-left:auto;
    margin-right:auto;
    width: 100%;
    max-width: 720px;
}

.default-table thead th {
    text-align: left;
}
.default-table tbody th {
    text-align: left;
    width: 15em;
}
.default-table th.title{
    background: #00ac97;
    color: #fff;
    padding: .8rem;
}
/*フルサイズテーブル*/
.full-width-table{
    width:100%;
    margin:0;
}
.full-width-table tbody th {
    width: 15em;
    text-align: left;
}

/*ハーフサイズテーブル*/
.half-width-table{
    margin-left:auto;
    margin-right:auto;
    width:744px;
}
.half-width-table thead th {
    text-align: left;
}

.half-width-table tbody th {
    text-align: left;
    width:15em;
}

.half-width-table .title{
    background: #00ac97;
    color: #fff;
    padding: .8rem;
    text-align: left;
    font-weight: bold;
    font-size: 2rem;
}

/*ミニテーブル*/
.mini-table{
    margin-left:auto;
    margin-right:auto;
    width: 40%;
    max-width: 475px;
    margin-bottom: 10px;
}

/*テーブルサイズを広げる*/
.wide-table{
    max-width: 800px;
}

/*ヘッダー２つテーブル*/
.multi-th-table{
    margin-left:auto;
    margin-right:auto;
}

.multi-th-table thead th {
    text-align: left;
}

.multi-th-table tbody th {
    text-align: left;
}


/* ===============================================================
    入力フォームテーブル
=============================================================== */
/*TODO: [.input table]は[.form-table]に置き換える*/
/*----- 入力／詳細エリア -----*/
/*.input,*/

/*各種フォーム部品を格納し、編集可能なテーブル*/
.form-table{
    margin: 1.6rem auto;
    table-layout:fixed;
}
.form-table th{
    font-size: 1.4rem;
    padding: .8rem;
    text-align: left;
}

.form-table td{
    padding: .8rem;
}


/*.input table td textarea,*/
.form-table textarea{
    width: 80%;
}

/*情報を表示するためのテーブル*/
.detail-table {
    box-sizing: border-box;
    width: 100%;
    max-width:720px;
    margin: 0 auto;
    /*table-layout: fixed;*/
}
.detail-table th,
.detail-table td {
    line-height: 1.4;
}
.detail-table th {
    color: #1c1c1c;
    padding:1.6rem;
    width: 15em;
    text-align: left;
}

.detail-table body th{
    text-align: left;
}
.detail-table th.title,
.form-title{
    background: #00ac97;
    color: #fff;
    padding: .8rem;

}
.detail-table td{
    padding: 1.6rem;
}


td.label_textarea textarea{
    width: 670px;
    height: 70px;
}

/* ===============================================================
    新　検索結果リスト
=============================================================== */

/* =============================
  検索結果レイアウト
============================= */
.l-list{
    width: 100%;
    margin: 0 0 1.6rem;
    box-shadow: 0px 4px 16px 0px rgba(130, 130, 130, 0.7);
    background: #fff;
}

.l-list-header{
    padding: .8rem;
}

.l-list-body{
    padding: .8rem 0;
    position: relative;
}

.l-list-footer{
    padding: .8rem;
}

/* ===============================================================
    ページマネージャーリスト
=============================================================== */

/*page-manager → page-manager（URL名を基準に命名）*/
.page-manager{
    width: 100%;
    table-layout: fixed;
}
/*ページマネージャ行見出し*/
.page-manager-heading{
    border-bottom: 1px solid #cccccc;
    border-top: 1px solid #cccccc;
    margin: 0;
    background: #eeeeee;
    /*box-shadow: 0px 4px 8px 0px rgba(130, 130, 130, 0.7);*/
}

.page-manager-heading th{
    padding: .8rem 0;
    border: 1px solid #cccccc;
    font-size: 1.2rem;
}

/*ページマネージャリスト内*/
.page-manager-item{
    width: 100%;
}

.page-manager-item>tr{
    border-bottom: 1px solid #cccccc;
}
/*cleafix*/
.page-manager-item:after{
    content:"";
    display: block;
    clear: both;
}
.page-manager-item:hover{
}

/*ページマネージャチェックボックス枠*/
.page-manager-selector{
    text-align: center;
    vertical-align: middle;
}
/*ページマネージャリスト2列目*/
.page-manager-info{
    vertical-align: middle;
    text-align: left;
}
/*ページマネージャリストボタン列*/
.page-manager-action-horizontal{
    vertical-align: middle;
    text-align: left;
    padding: .8rem;
    border-left:1px solid #ccc;
    white-space: nowrap;
}

.page-manager-action-horizontal .link-btn+.link-btn{
    margin-left: 1.6rem;
}
/*ページマネージャリストボタン列*/
.page-manager-action{
    border-left:1px solid #ccc;
    padding:.8rem;
    vertical-align: middle;
    text-align: center;
}

.page-manager-action .link-btn+.link-btn{
    margin-top: 1.6rem;
}

/*ページマネージャリスト最終列*/
.page-manager-sub-info{
    border-left:1px solid #ccc;
    font-size: 1.6rem;
    vertical-align: middle;
    text-align: center;
}



/* ===============================================================
    ページマネージャーリスト内テキスト
=============================================================== */
/*ページマネージャリスト内ラベル*/
.page-manager-label{
    color:#fff;
    display:block;
    font-size: 1.2rem;
    padding:.4rem 0;
    line-height: 1;
    margin:.4rem auto;
    width: 5em;
    text-align: center;
}

/*ページマネージャリスト内ラベル状態*/
.is-label-default{
    background: #4a4a4a;
}

.is-label-main{
    background: #034bd2;
}
.is-label-sub{
    background: #00ac97;
}
/*ページマネージャリスト内チェックボックス*/
.page-manager-check{
    display:inline-block;
    vertical-align: middle;
    text-align: center;
    margin:.4rem auto;
}
/*ページマネージャリスト内タイトル*/
.page-manager-title{
    display: inline-block;
    font-size: 1.6rem;
    line-height: 1.4;
    margin:.4rem 0;
     padding:0 .8rem;
    text-align: left;
    /*break-wordには幅が必須*/
    word-wrap: break-word;
    width: 100%;


}
/*ページマネージャリスト内URL*/
.page-manager-url{
    font-size: 1.4rem;
    margin:.8rem 0;
    padding:0 .8rem;
    color: #878787;
    /*break-wordには幅が必須*/
    width: 100%;
    word-wrap: break-word;

}

.page-manager-url .fa{
    margin-left: .4rem;
    color: #0091d5;
    font-size: 1.6rem;
}

/*ページマネージャリスト内日付項目*/
.page-manager-date{
    font-size: 1.2rem;
    color: #878787;
    display: inline-block;
    padding: .8rem;
}

/*ページマネージャリスト内その他テキスト*/
.page-manager-sub-text{
    font-size: 1.2rem;
    color: #878787;
    padding: .8rem;
}
.page-manager-sub-text>b,
.page-manager-date>b{
    font-weight: bold;
    padding-right: 1rem;
    display: inline-block;
}
/* ===============================================================
        旧一覧リストテーブル
=============================================================== */

/*TODO:　[.list]は[.l-list-xx]に置き換える。*/
/*.list-wrapper>tableは[.list-result]に置き換える*/
/*----- 一覧エリア -----*/
.list {
    box-shadow: 0px 4px 16px 0px rgba(130, 130, 130, 0.7);
}

.list-wrapper {
    margin: 0 0 1.6rem;
    position: relative;
}

/*一覧リストテーブル*/
.list>.list-wrapper>table,
.list-table{
    border-bottom: 1px solid #cccccc;
    margin: 0 auto 2.4rem;
    table-layout: fixed;
    width: 100%;
}

.list>.list-wrapper>table tr:hover,
.list-table tr:hover{
    background: #dffffb;
}

.list>.list-wrapper>table th,
.list>.list-wrapper>table td,
.list-table th,
.list-table td {
    line-height: 1.2;
    word-wrap: break-word;
    word-break: break-all;

}

.list>.list-wrapper>table th,
.list-table th{
    background: #eeeeee;
    border: 1px solid  #fff;
    color:  #1c1c1c;
    font-size: 1.2rem;
    padding: .8rem;
    vertical-align: middle;
}

.list>.list-wrapper>table td,
.list-table td{
    font-size: 1.3rem;
    border-bottom: 1px solid #cccccc;
    padding: 1.6rem 0 2.4rem .8rem;
    vertical-align: middle;

}

.list>.list-wrapper>table tr:nth-child(2n) td,
.list-table tr:nth-child(2n) td{
    /*background: #eeeeee;*/
}

.list>.list-wrapper input[type="text"],
.list-table input[type="text"] {
    border: 1px solid #a7a6aa;
    padding: 3px;
    width: 95%;
}


.list>.list-wrapper tr.feature,
.list-table tr.feature{
    background: #eeeeee;
}

/*公開待ちフラグ*/
.list>.list-wrapper .is-list-standby,
.is-list-standby{
    background: #eeeeee;
}
/*編集中フラグ*/
.list>.list-wrapper .is-list-edit,
.is-list-edit{
    background: #cccccc;
}
/* ---------- 一覧並べ替え */
.list>.list-wrapper .titlesort,
.list-table .titlesort{
    margin: 0 auto;
    padding: 0;
    table-layout: fixed;
}

.list>.list-wrapper .titlesort tr:hover,
.list-table .titlesort tr:hover {
    background: transparent;
    color: transparent;
}

.list>.list-wrapper .titlesort a,
.list-table .titlesort a{
    text-decoration: none;
    padding:0 0 0 .8rem;
}

.list>.list-wrapper .titlesort td,
.list-table td{
    margin: 0;
    padding: 0;
    border: none;
}

.list>.list-wrapper .titleName,
.list-table .titleName{
    vertical-align: middle;
    width: auto;
    color:  #1c1c1c;
}

.list>.list-wrapper tr.closedStatus,
.list-table tr.closedStatus{
    background-color : #afafb0;
}


/*ソートアイコン縮小版*/

/* ---------- 一覧並べ替え */
/*dl.titlesort {
    margin: 0 auto;
    padding: 0;
    table-layout: fixed;
}
dl.titlesort a {
    text-decoration: none;
    padding:0 0 0 .8rem;
}

dl.titlesort dd {
    margin: 0;
    padding: 0;
    border: none;
}

dl.titlesort dt {
    vertical-align: middle;
    width: auto;
    color:  #1c1c1c;
}*/



/* ===============================================================
    データ集計・アクセス解析
=============================================================== */

.l-aggregate{
    box-shadow: 0px 1px 8px 0px rgba(130, 130, 130, 0.7);
    background: #fff;
    padding: 3.2rem 0;
    margin: 1.6rem auto 3.2rem;
}
.l-aggregate h4{
    margin: 1.6rem 1.6rem 2.4rem;
    width: auto;
}

/* ===============================================================
    データ集計ヘッダー部
=============================================================== */
/*集計ヘッダー*/
.l-aggregate-header{
    display: block;
    width: 100%;
}
.l-aggregate-header:after{
    content:" ";
    clear: both;
    display: block;
}

.l-aggregate-header>.search-date{
    float:left;
}
.l-aggregate-header>.btn-group{
    float: left;
    text-align: left;

}

.l-aggregate-header>.form-group{
    text-align: left;
    width: auto;
    margin: 1.6rem;
}

/*集計ヘッダー　小テーブル枠*/
.l-aggregate-header-summary{
    float: right;
    margin-right: 1.6rem;
}

/* ===============================================================
    データ集計本体
=============================================================== */
.l-aggregate-body{
    line-height: 1.4;
    margin: 1.6rem auto 3.2rem;
    padding: 1.6rem;
}

/*集計ブロック-通常テーブル枠*/
.l-aggregate-summary{
    margin: 1.6rem auto 3.2rem;
    text-align: center;
}

/*集計ブロック-スクロールテーブル最大枠*/
.l-aggregate-summary-scroll {
    margin: 1.6rem auto 3.2rem 9.0rem;
    text-align: center;
}
/*clearfix*/
.l-aggregate-summary-scroll:after{
    content: " ";
    clear: both;
    display: table;
}

/* =============================
   アクセス解析グラフ
============================= */
/* =============================
   アクセス解析グラフ本体
============================= */

#p_chart{
    border:2px solid #eeeeee;
    margin: 1.6rem auto 3.2rem;
    text-align: center;
    width: 85%;
}
svg#pieChart{
    height:350px;
    margin-left:350px;
    margin-top:30px;
    width:740px;
}
.pack{
    border:2px solid #cccccc;
}

/*円グラフ色基本*/
.pie{
    fill:#00ac97;
    stroke:none;
}

.total{
    font-size:14px;
    text-anchor:middle;
}

.pieNum{
    font-size:18px;text-anchor:middle;
    fill:white;
}

/*折れ線グラフ*/

.axis path,
.axis line {
    fill:none;
    stroke:#000;
    shape-rendering:crispEdges;
}
.x.axis path {
    display:none;
}

/*折れ線基本色*/
.line {
    fill:none;
    stroke-width:3px;
    stroke:#00ac97;
}

/*折れ線色1色目*/
.line:first-of-type {
    stroke:#E74C3C;
}
/*折れ線色2色目*/
.line:nth-of-type(2) {
    stroke:#0091d5;
}
text {
    font-size:14px;
}
.tick line{
    opacity: 0.2;
}

/* =============================
   アクセス解析データ表（固定）
============================= */

.data-summary-table{
    border-spacing: 0;
    box-sizing: border-box;
    font-size: 1.2rem;
    margin: 1.6rem auto;
    table-layout: fixed;
    width:auto;
    text-align: center;
}

.data-summary-table th,
.data-summary-table td{
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    padding:1.2rem 1.6rem;
}

.data-summary-table th{
    background: #034bd2;
    border: 1px solid #023087;
    color: #fff;
    font-weight:bold;
    text-align: center;
}

.data-summary-table td{
    border-bottom: 1px solid #cccccc;
    color: #1c1c1c;
    text-align: center;
}


/* =============================
   アクセス解析データ表（スクロール）
============================= */
.data-scroll-table {
    border-spacing: 0;
    width:100%;
}
.data-scroll-table:after{
    content: "";
    display: block;
    clear: both;
}

/* テーブルセル */
.data-scroll-table th,
.data-scroll-table td {
    text-align: center;
    white-space: nowrap; /* データの折り返しを防止 */
    padding: .8rem;
    display: table-cell;
}
/*テーブル見出し（固定）*/
.data-scroll-table>thead,
.data-scroll-table>tfoot{
    display: block;
    float: left;
    z-index:4;
}

.data-scroll-table>thead{
    box-shadow: -4px 2px 16px 0px rgba(0, 0, 0, 0.4);
}
.data-scroll-table th,
.data-scroll-table thead td{
    font-weight:bold;
    text-align: center;
    background: #034bd2;
    border-top: 1px solid #023087;
    border-left: 1px solid #023087;
    border-bottom: 1px solid #023087;
    color: #fff;
    padding: .8rem 1.6rem;
}

/*テーブル合計部分（固定）*/
.data-scroll-table>tfoot{
    border-left: 1px solid #cccccc;
    border-bottom: 1px solid #eeeeee;
    box-shadow: 4px 2px 16px 0px rgba(0, 0, 0, 0.4);
}

/*テーブルスクロール部分*/
.data-scroll-table>tbody{
    display: block;
    float: left;
    max-width: 70rem;/*この長さ以上のデータは隠す*/
    overflow-y: hidden; /* 縦スクロール非表示 */
    overflow-x: auto; /* 横スクロール */
    width: auto;
}

.data-scroll-table  tbody th{
    border-left: 1px solid #023087;
}

.data-scroll-table tbody td,
.data-scroll-table tfoot td{
    background: #fff;
    color: #1c1c1c;
    border-bottom: 1px solid #eeeeee;
}



/* ===============================================================
    エラーメッセージ
=============================================================== */
/*TODO:エラー項目クラスは.error-wrapperなのか.errorsなのか*/

/*----- エラーメッセージ -----*/
#error-wrapper {
    background: #ffe4e4;
    border: 1px solid #cfa4a4;
    border-radius: 5px;
    margin: 0 auto 20px;
    padding: 12px 20px;
    width: 888px;
}

#error-wrapper ul {
    margin-left: 15px;
    list-style: disc outside;
}

#error-wrapper ul li {
    color: #cb0000;
    font-weight: bold;
    line-height: 1.2;
    margin: 8px 0;
}

.errors li{
    color:red;
}


/*----- エラーメッセージ -----*/
.error_messages {
    margin: 0 auto 1.6rem;
    padding: 1.6rem 2.4rem;
    width:auto;

    /*    border: 1px solid #cfa4a4;
        border-radius: 4px;
        background: #ffe4e4;*/
}

.error_messages>p {
    color: #cb0000;
    font-weight: bold;
    margin: 8px 0;
    line-height: 1.2;
}

/* ===============================================================
    ポップアップ画面
=============================================================== */

/* ポップアップ画面 */
.popup {
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-shadow: 4px 12px 16px 0px rgba(130, 130, 130, 0.7);
    display: none;
    position: absolute;
    padding: 1.6rem;
    z-index: 10;
}
.popup .strong {
    color: red;
}
.popup .detail-table {
    margin: 1.6rem auto;
}
.popup .detail-table th,
.popup .detail-table td {
    border-bottom: 1px solid #eeeeee;
    line-height: 1.4em;
    padding: .8rem;
    vertical-align: middle;
}

.popup input[type="button"],
.popup input[type="submit"] {
}


/* =============================
  ポップアップ画面順序指定リスト
============================= */
.order_list {
    margin: 1.6rem auto;
}
.order_list:after{
    clear: both;
    content: "";
    display: block;
}

.order_list > .list {
    background-color: #DDDDDD;
    border: 1px #eeeeee solid;
    box-shadow: none;
    display:block;
    float: left;
    margin:0 .8rem 0 0;
    overflow-x:hidden;
    overflow-y: auto;
    width: 75%;

}

.order_list .order_elm {
    background-color: #FFF;
    padding: .8rem;
}

.order_list .order_elm.select {
    color: #FFF;
    background-color: #0091d5;
}

.order-button-group {
    display: block;
    float: left;
    font-size: 2.0rem;
    line-height: 1;
    width: 1em;
}

.order-button {
    display: block;
    margin: 0 auto .8rem;
    padding: 0;
    text-decoration: none;

}
.order-button>span{
    color: #0091d5;
}

.order_list .border{
    border-bottom: 1px solid #cccccc;
}



/* ===============================================================
        ページレイアウト
=============================================================== */

/* ===============================================================
        ページ全体
=============================================================== */
.l-site-wrapper {
    margin: 0 auto;
    width: 1200px;
    padding: 1.6rem 0 0;
    position: relative;
}

/*別ウィンドウで開いた場合のbody*/
.l-modal-window{
    background: #fff;
    width: 100%;

}

.l-modal-contents{
    border: 1px solid #cccccc;
    border-radius: 4px;
    padding: 1.6rem;
    width: 100%;
}


/* ===============================================================
        レイアウト分割グリッド
=============================================================== */
/*コンテンツを分割するグリッド*/
/*TODO:Bootstrapと同じ振る舞いにしたい*/

/*カラムのラッパー*/
.row{
    width:100%;
}
/*clearfix*/
.row:after{
    content: "";
    display: block;
    clear: both;
}
/*コンテンツをn/12分割するグリッド*/
.col-xs-6{
    padding-left: 1rem;
    padding-right: 1rem;
    float: left;
    width: 50%;
}
.col-xs-4{
    padding-left: 1rem;
    padding-right: 1rem;
    float: left;
    width: 33%;
}
.col-xs-3{
    padding-left: 1rem;
    padding-right: 1rem;
    float: left;
    width: 25%;
}
.col-xs-2{
    padding-left: 1rem;
    padding-right: 1rem;
    float: left;
    width: 12.5%;
}

/* ===============================================================
        上下均等配置グリッド
=============================================================== */
/*display:inline-blockで整列するグリッド*/
.row-inline-block{

}
.row-inline-block>[class^="col-"]{
    display: inline-block;
    float: none;
    vertical-align: top;
}



/* ===============================================================
        ページヘッダー領域
=============================================================== */
.l-site-header {
    background: #fff;
    border-radius: 2px;
    box-shadow: 0px 4px 16px 0px rgba(130, 130, 130, 0.7);
    margin: 0 auto;
    padding: 1.6rem;
    width: 100%;
}

.l-header-top{
    margin: 0 auto 1.6rem;
    width: 100%;
}

/*clearfix*/
.l-header-top:after{
    clear: both;
    content:" ";
    display: block;
}

.l-header-logo {
    float: left;
    width: 600px;
}

.l-header-logo a{
    color: #0091d5;
    text-decoration: none;
    position: relative;/*for amimation rendering*/
    /*at btn hover animation setting*/
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}
.l-header-logo a:hover{
    opacity: .6;
    text-decoration: none;
}


.l-header-account-info {
    float: right;
    text-align: right;
}

/*グローバルナビ枠*/
.l-header-navigation{
    margin: 0 0 1.6rem;
    padding: 0;
    width: 100%;
}

/* ===============================================================
        メイン領域
=============================================================== */
.l-site-container {
    margin: 0 auto;
    width: 100%;
}

#main-content{
    margin: 0;
    padding: 0;
}


/*clearfix*/
#main-content:after {
    clear: both;
    content: "";
    display: block;
}


/*コンテンツ左右中央領域*/
.left-cell,
.right-cell,
.full-cell {
    background: #fff;
    border-radius: 2px;
    margin: 0 auto 3.2rem;
    padding: .8rem;
    /*width: 1200px;*/
    width:100%;
}

.left-cell {
    clear: both;
    float: left;
    width: 466px;
}

.right-cell {
    clear: right;
    float: right;
    width: 466px;
}

.full-cell {
    clear: both;
}


/*----- 情報エリア -----*/
#main-content .information {
    background: #eeeeee;
}

#main-content .information table {
    margin: 0 auto;
}

#main-content .information table td {
    line-height: 1.2;
    word-wrap: break-word;
    word-break: break-all;
}

/* ===============================================================
        フォーム領域
=============================================================== */
.l-form{
    box-shadow: 0px 4px 16px 0px rgba(130, 130, 130, 0.7);
    margin: 0;
    padding: 0;
    background: #fff;
}


.l-form-header{
    margin: 0;
    padding: 0 0 .8rem;
}
.l-form .l-form-header{
    padding: .8rem
}

.l-form-header:after{
    clear: both;
    content: " ";
    display: block;
}
.l-form-header .button-group,
.l-form-header .btn-group{
    margin: 0;
    padding: 0;
    text-align: left;
}

/*フォームヘッダー2カラム時*/
.l-form-header-left{
    float: left;
}
.l-form-header-left>.btn-group{
    text-align: left;
}

.l-form-header-right{
    float: right;

}
.l-form-header-right>.btn-group{
    text-align: right;
}

.l-form-body{
    margin: .8rem auto;
}

.l-form-body>.l-form-title {
    text-align: center;
    font-size: 30px;
}

.l-form-body>.l-grid-table{
    margin: 0 auto;
}

/* ===============================================================
    検索フォーム下部
=============================================================== */
.search-button-area,
.l-form-footer{
    border-top: 1px solid #cccccc;
    margin: 0;
    padding: .8rem 0 0;
    text-align: center;
}
.l-form .l-form-footer{
    padding: .8rem
}
.l-form-footer .button-group,
.l-form-footer .btn-group{
    margin: 0;
    padding: 0;
}
.l-form-top{
    border-bottom: 1px solid #cccccc;
    margin-bottom: 0.8rem;
}
.l-form-top .button-group,
.l-form-top .btn-group{
    margin: 0;
    padding: 0;
}
/* ===============================================================
   入試ページフォーム
=============================================================== */

.box {
    display:inline-block;
}
/*未使用*/
#kiteiti_list ul li {
    display: inline-block;
    width: 70px;
}
/*未使用*/
#senkou_list ul li {
    display: inline-block;
    width: 110px;
}
/*未使用*/
#jyuken_ippan_list ul li {
    display: inline-block;
    width: 70px;
}
/*未使用*/
#jyuken_list ul li {
    display: inline-block;
    width: 80px;
}
/*未使用*/
#tokui_kyoka_list ul li {
    display: inline-block;
    width: 130px;
}
/*未使用*/
#suisen_list ul li {
    display: inline-block;
    font-size: 11px;
    width: 100px;
}
/*テキストボックス日付*/
.input_date {
    width: 70px;
}
/*テキストボックス名前*/
.input_nyushi_name {
    width: 700px;
}
/*テキストボックス配点*/
.input_haiten {
    width: 30px;
}


/*上部タブリスト*/
.link-list-tab {
    width:100%;
    padding: 0 1rem;
}
.link-list-tab:after{
    content: "";
    display: block;
    clear: both;
}
.link-list-tab>a {
    display: inline-block;
    padding: .8em 1em;
    margin-right: .5rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

#subject_tab>a{
    color: #0091d5;
    border-radius: 4px;
    border: 1px solid #0091d5;
}
#subject_tab>a:hover{
    background: #0091d5;
    color: #FFFFFF;
}

/*タグの中身が空で未使用*/
.nyushi_dai_search_title{
    width:50px;
}

.nyushi-subhead{
    font-size: 1.4rem;
    padding: 1rem;
    font-weight: bold;
}
/*入試ページ内テーブル*/
.nyushi-table{
    width:100%;
    margin-bottom:3rem;
    box-sizing: border-box;
}
.nyushi-table caption{
    border-bottom: 1px solid #00ac97;
    font-size: 1.8rem;
    padding: 1rem 1rem .5rem;
    color:#00ac97;
    font-weight: bold;
    text-align: left;
    margin-bottom: 2rem;
}
.nyushi-table th,
.nyushi-table td{
    padding: .5rem 1rem;
}
.nyushi-table tbody td{
}


.nyushi-table tbody th{
    background:#00ac97;
    font-size: 1.4rem;
    padding:1em .5em;
    color: #fff;
    text-align: left;
}

/*左側受験科目table縞模様設定*/
.kamoku_table tr:nth-child(even) ,.kyoka_table tr:nth-child(even){
    background: #DCDCDC;
}

.kamoku_table tr td.odd,.kyoka_table table tr td.odd{
    background: #FFFFFF;
}
.kamoku_table tr td.even,.kyoka_table table tr td.even{
    background: #DCDCDC;
}
/*検索項目内*/
.search > div {
    margin-bottom: 5px;
}
/*受験科目スクロール*/
.juken_scroll{
    box-sizing: border-box;
    width:900px;
    padding: 0;
    margin: 0;
    overflow-x: scroll;
    border: 1px solid #eee;
}
.juken_right{
    width: 1200px;
    box-sizing: border-box;
    margin: 0;
}
/*第一・二階層、理科注釈*/
.hissu_level1,.hissu_level2,.sentaku_level1,.sentaku_level2,cyusyaku_rika {
    font-size: 1.4rem;
    margin: 1rem;
    width: calc(100%-2rem);
}
/*table*/
.center_hissu_level1,.center_hissu_level2,.center_sentaku_level1,.center_sentaku_level2,cyusyaku_rika {
    font-size: 1.4rem;
    width: calc(100%-2rem);
}
/*th*/
.hissu_level1 tr th,.hissu_level2 tr th,.sentaku_level1 tr th,.sentaku_level2 tr th,
.center_hissu_level1 tr th,.center_hissu_level2 tr th,.center_sentaku_level1 tr th,.center_sentaku_level2 tr th{

    text-align: center;
    border: 1px solid #fff;
}

/*td*/
.hissu_level1 tr td,.hissu_level2 tr td,.sentaku_level1 tr td,.sentaku_level2 tr td,
.center_hissu_level1 tr td,.center_hissu_level2 tr td,.center_sentaku_level1 tr td,.center_sentaku_level2 tr td{
    text-align: center;
    border: 1px solid #eee;
}

/*選択科目第n階層*/
.level_td {
    vertical-align: middle;
    text-align: center;
    height: 20px !important;
}
/*必須チェックボックスのあるエリア*/
.kyoka_chk_area>td{
    height: 5rem;
    border:1px solid #eee;
    padding: 0;
}
.kyoka_chk_label{
    line-height: 1.2;
    font-size: 1.2rem;
    font-weight: bold;
}
/*JSで付与される必須チェックボックスの背景色*/
.kyoka_chk_back_color {
    background-color : #D5FFCB;
    display: block;

}

.kamoku_table td{
    height:5rem;
    border:1px solid #eee;
    padding: 0 1rem;
    vertical-align: middle;
}
.kamoku_table td>span{
    line-height: 1.2;
    font-size: 1.2rem;
    font-weight: bold;
}

.rowspan_header{
    border-right: 1px solid #eee;
}



/* ===============================================================
        ページフッター
=============================================================== */
.l-site-footer {
    bottom: 0;
    margin: 3rem auto;
    padding: 0;
    width: 100%;
}
.l-site-footer address{
    font-size: 1.2rem;
    font-weight: bold;
    padding:0;
    margin: 0;
    text-align: center;

}

/* ===============================================================
        ログインページ
=============================================================== */
/*TOPページテーブル*/
.l-login-window {
    background: #fff;
    box-shadow: 0px 4px 16px 0px rgba(130, 130, 130, 0.7);
    border-radius: 4px;
    margin:8rem auto 1.6rem;
    padding: 1.6rem;
    width: 60rem;
}

.l-login-window .errors{
    text-align: center;
}

.l-login-header {
    margin: 0;
    padding:1.6rem 0 2.4rem;

}

.l-login-header:after{
    clear: both;
    content: " ";
    display: block;
}
.l-login-header .button-group{
    text-align: left;
}

.l-login-header h2{
    border-bottom:2px solid  #00ac97;
    color: #00ac97;
    font-size: 2.8rem;
    padding:1.6rem .8rem;

}

.l-login-body{
    width: 70%;
    margin: 2.4rem auto;
}

.l-login-footer{
    border-top: 1px solid #cccccc;
    margin: 2.4rem auto;
    padding-top: 1.6rem;
    text-align: center;
}

.l-mail-resend {
    margin: 2.4rem auto;

}
.l-mail-resend-header{
    text-align: center;
}



.l-mail-resend-body{
    padding: 1.6rem 0;
    text-align: center;
}
/* ===============================================================
        TOPページダッシュボード
=============================================================== */

/*TOPページテーブル*/
.l-dashboard{
    box-shadow: 0px 4px 16px 0px rgba(130, 130, 130, 0.7);
    margin: 0;
    padding: 1.6rem;

}
.headline-table {
    box-sizing: border-box;
    width: 80%;
}
.headline-table th,
.headline-table td {
    border: 1px solid#cccccc;
    line-height: 1.4;
    padding:1.6rem;
}
.headline-table th {}

.l-dashboard .subhead {
    background-color: #00ac97;
    color: #fff;
    text-align: left;
    width:13em;
}

.l-dashboard .numberFormat {
    text-align: right;
    width:7em;
}


/* ===============================================================
マニュアルダウンロード
=============================================================== */

#manualDL-wrap{
    color: #333;
    font-family: Verdana,"MS PRゴシック",Arial,sans-serif;
    font-size: 12px;
    margin: 0 auto;
    width: 950px;
}
#manualDL-wrap table{
    border-collapse:collapse;
    border-spacing:0;
    border-top: 1px solid #000;
    margin-top: 15px;
    width: 950px;

}
#manualDL-wrap table tr{
    border-bottom: 1px solid #000;
}
#manualDL-wrap table tr th{
    border-left: 1px solid #000;
    background-color: #B1CCE8;
    font-weight: normal;
    padding: 2px 5px;
}
#manualDL-wrap table tr td{
    border-left: 1px solid #000;
    padding: 2px 5px;
}
#manualDL-wrap table tr td.center{
    text-align:center;
}
#manualDL-wrap table tr .td-left{
    border-left: none;
}
/* ===============================================================
メルマガ登録画面
=============================================================== */

#pro_code_box {
    background: #fff;
    width: 100%;
}
#pro_code_box .title {
    border-bottom:2px solid #00ac97;
    color: #00ac97;
    font-size: 1.4rem;
    text-align: left;
    font-weight: bold;
    margin: 1.6rem auto;
    padding: 1.6rem;
    width: 100%;
}
.pro_code_list {
    margin: 0;
    padding: 0;
    width: 100%;

    /*inline-blockの隙間を埋める*/
    font-size:1px;
    letter-spacing: -1px;
    word-spacing: -1px;

}
/*clearfix*/
.pro_code_list:after{
    clear: both;
    content: "";
    display: block;
}
.pro_code_detail {
    border: 1px solid #cccccc;
    display:inline-block;
    margin: .8rem;
    padding: 0;
    vertical-align: top;
    width: calc(25% - 1.6rem);

    /*inline-blockの隙間を埋める*/
    font-size:1px;
    letter-spacing: -1px;
    word-spacing: -1px;
}

/*プロモーションコードデータ入力時*/
.pro_code{
    margin:0 .8rem 1.6rem;
}
/*プロモーションコードデータ表示時*/
.pro_code_detail .pro_code {
    background: #eeeeee;
    border-right: 1px solid #cccccc;
    display: inline-block;
    font-size: 1.4rem;
    margin: 0;
    padding: 1.6rem .8rem;
    width: 50%;
    word-wrap:break-word;
}
#pro_code_box .pro_code_count {
    display: inline-block;
    font-size: 1.4rem;
    padding: 1.6rem .8rem;
    text-align: right;
    width: 50%;
}


/* ===============================================================
    ユーティリティクラス
=============================================================== */


/*強制的にドロップシャドウ*/
.bg-shadow{
    box-shadow: 0px 4px 16px 0px rgba(130, 130, 130, 0.7);
}

/*強制的に白背景*/
.bg-default{
    background: #fff;
}

/*TODO:
U-centerではなく
Bootstrapにならって
center-blockにしたい
*/
/*強制的に中央揃え*/
.u-center{
    margin-right:auto !important;
    margin-left:auto !important;
    text-align: center !important;
}
/*強制的に右揃え*/
.u-right{
    margin-right:0 !important;
    margin-left:auto !important;
    text-align: right !important;
}
/*強制的に左揃え*/
.u-left{
    margin-right:auto !important;
    margin-left:0 !important;
    text-align: left !important;
}
/*TODO:
テキストのみをそろえるということで
.text-center
にしたい。
*/

.u-text-center{
    text-align: center !important;
}
.u-text-right{
    text-align: right !important;
}
.u-text-left{
    text-align: left !important;
}
/*汎用コンテンツ横余白*/

/*
【注意！】1文字=1rem=10pxを
このサイト用の余白サイズ16px=1.6remに変更しています。
*/
/*padding-left,right*/
.gutter0{
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.gutter5{
    padding-left: .8rem !important;
    padding-right: .8rem !important;
}
.gutter10{
    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;
}

.gutter20{
    padding-left: 3.2rem !important;
    padding-right: 3.2rem !important;
}

/*汎用コンテンツ縦余白*/

/*
【注意！】1文字=1rem=10pxを
このサイト用の余白サイズ16px=1.6remに変更しています。
*/
/*margin-top*/
.m-t-0{margin-top:0 !important;}
.m-t-5{margin-top:.8rem !important;}
.m-t-10{margin-top:1.6rem !important;}
.m-t-15{margin-top:2.4rem !important;}
.m-t-20{margin-top:3.2rem !important;}
.m-t-30{margin-top:4.8rem !important;}
/*margin-bottom*/
.m-b-0{margin-bottom:0 !important;}
.m-b-5{margin-bottom:.8rem !important;}
.m-b-10{margin-bottom:1.6rem !important;}
.m-b-15{margin-bottom:2.4rem !important;}
.m-b-20{margin-bottom:3.2rem !important;}
.m-b-30{margin-bottom:4.8rem !important;}
/*padding-top*/
.p-t-0{padding-top:0 !important;}
.p-t-5{padding-top:.8rem !important;}
.p-t-10{padding-top:1.6rem !important;}
.p-t-15{padding-top:2.4rem !important;}
.p-t-20{padding-top:3.2rem !important;}
.p-t-30{padding-top:4.8rem !important;}

/*padding-bottom*/
.p-b-0{padding-bottom:0 !important;}
.p-b-5{padding-bottom:.8rem !important;}
.p-b-10{padding-bottom:1.6rem !important;}
.p-b-15{padding-bottom:2.4rem !important;}
.p-b-20{padding-bottom:3.2rem !important;}
.p-b-30{padding-bottom:4.8rem !important;}
.p-b-100{padding-bottom:16rem !important;}

/*テーブル縦揃え*/
.v-a-t{vertical-align: top !important;}
.v-a-m{vertical-align: middle !important;}
.v-a-b{vertical-align: bottom !important;}


/* =============================
    汎用サイズ（文字数ごと）
============================= */
.w-1em {width: 1em !important;}
.w-2em {width: 2em !important;}
.w-3em {width: 3em !important;}
.w-4em {width: 4em !important;}
.w-5em {width: 5em !important;}
.w-6em {width: 6em !important;}
.w-7em {width: 7em !important;}
.w-8em {width: 8em !important;}
.w-9em {width: 9em !important;}
.w-10em {width: 10em !important;}
.w-12em {width: 12em !important;}
.w-14em {width: 14em !important;}
.w-16em {width: 16em !important;}
.w-18em {width: 18em !important;}
.w-20em {width: 20em !important;}
.w-22em {width: 22em !important;}
.w-24em {width: 24em !important;}
.w-26em {width: 26em !important;}
.w-28em {width: 28em !important;}
.w-30em {width: 30em !important;}
.w-40em {width: 40em !important;}
.w-42em {width: 42em !important;}
.w-44em {width: 44em !important;}
.w-46em {width: 46em !important;}
.w-48em {width: 48em !important;}
.w-50em {width: 50em !important;}
.w-60em {width: 60em !important;}


/* =============================
    汎用サイズ（割合）
============================= */
.w-quarter {width: 25% !important;}
.w-half {width: 50% !important;}

.w-full {
    width: 100% !important;
    margin-left:0 !important;
    margin-right: 0 !important;
}

/* =============================
    汎用フォントサイズ（em）
============================= */
.fs-sm{font-size: .8em !important;}
.fs-md{font-size: 1em !important;}
.fs-lg{font-size: 1.2em !important;}
.fs-xl{font-size: 1.5em !important;}
.fs-2x{font-size: 2em !important;}
.fs-3x{font-size: 3em !important;}
.fs-4x{font-size: 4em !important;}


/* ==============================
     共通スペース（バナー、リスト）
================================*/

#html_space_edit_html_edit{
    width:100%;
}

/* ==============================
     ローディング画面
================================*/
#loading-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.62);
  z-index: 1;
}
#loading_main {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  text-align: center;
  color: #fff;
  z-index: 2;
}

/* ==============================
  ページマネージャ（雛形テンプレート）
================================*/
.html_template_form {
  letter-spacing: -.4em;
  margin: 0 auto;
  width:100%;
}
.html_template_form_left {
  width:65%;
  display:inline-block;
  vertical-align:top;
  letter-spacing: normal;
}
.html_template_form_right {
  width:35%;
  display:inline-block;
  vertical-align:top;
  letter-spacing: normal;
}
.html_template_contents {
  letter-spacing: -.4em;
  margin: 0 auto;
  width:100%;
}
.html_template_parts_area {
  width:90%;
  height:650px;
  /* display:inline-block;
  margin: 0.5em 0em 0.5em 1.5em;*/
  margin: 0.5em auto;
  overflow-y:scroll;
}
.html_template_parts_area .single_content{
  width:100%;
  border: 1px solid #cccccc;
  margin:auto;
  margin-bottom:0.4em;
  letter-spacing: normal;
  position: relative;
  cursor:move;
}
.html_template_parts_form {
  width:100%;
  height:500px;
  letter-spacing: -.4em;
  text-align:center;
  display:inline-block;
  overflow:scroll;
}
.html_template_parts_list {
  width:100%;
  height:20px;
  letter-spacing: -.4em;
  text-align:center;
  display:inline-block;
  padding-right:17px;
}
.html_template_parts_form div{
  width:10%;
  height:20px;
  display:inline-block;
  border: 1px solid #cccccc;
  letter-spacing: normal;
  vertical-align:top;
}
.html_template_parts_list div{
  width:10%;
  height:20px;
  display:inline-block;
  border: 1px solid #cccccc;
  line-height: 20px;
  letter-spacing: normal;
}
.html_template_parts_form input{
  display: inline-block;
  width:50%;
  height:100%;
  border: 1px solid #cccccc;
  line-height: 20px;
  letter-spacing:normal;
  padding: 0;
  margin:0;
  border-radius: 0px;
  border:none;
}
.template_field_id, .template_element_position{
    width: 10%;
    height: 20px;
    display: inline-block;
    border: 1px solid #cccccc;
    letter-spacing: normal;
    border-radius: 0px;
    padding: 0;
    margin: 0;
    vertical-align: top;
}
.html_template_field_list{
    height:470px;
    margin-top: 1.5em;
    overflow-y:scroll;
}
.html_template_field_list .html_template_field{
    border: 1px solid #cccccc;
    text-align:center;
    height:1.7em;
    width:334px;
    line-height:1.7em;
    margin-bottom:0.7em;
    margin-right:0.3em;
    cursor:move;
}
.html_template_parts_area .index{
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    margin:auto;
    width:200px;
    height:100px;
    font-size:2em;
    line-height: 100px;
    text-align: center;
}

/* ----------------------------------------------------------------------------------

　　　　　　　　　アクセス解析デザイン調整　

----------------------------------------------------------------------------------　*/
.l-aggregate select {
    padding: 1rem 0.8rem;
    text-align: left;
    -webkit-appearance: menulist-button;
}

.l-aggregate .btn:hover{
    box-shadow: 0px 6px 8px 0px rgba(130,130,130,0.3);
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

.l-aggregate {
    box-shadow: 0px 1px 8px 0px rgba(130, 130, 130, 0.7);
    background: #fff;
    padding: 3.2rem 5rem;
    margin: 1.6rem auto 3.2rem;
}
.l-aggregate-header {
    display: block;
    width: 100%;
    overflow: hidden;
}
.search-date, .search-url {
    margin: 1.6rem 1.2rem 3.2rem 0;
    float: left;
}

.l-aggregate-header>.btn-group {
    float: left;
    text-align: left;
    overflow: hidden;
}
.button-group, .btn-group {
    margin: 1.1rem auto;
    padding: 0.4rem .8rem;
    text-align: center;
}
.btn-group>.btn+.btn {
    margin-left: 1.4rem;
}
.l-aggregate-header-summary {
    float: none;
    margin: 0px 0px;
    clear: both;
}

.l-aggregate-header .data-summary-table {
    border-spacing: 0;
    box-sizing: border-box;
    font-size: 1.2rem;
    margin: 3.6rem auto 0;
    table-layout: fixed;
    width: auto;
    width: 100%;
    text-align: center;
}
.data-summary-table td {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.data-summary-table th {
    background: #d9d9d9;
    border: 1px solid #999;
    color: #333;
    font-weight: bold;
    text-align: center;
}

.data-summary-table th, .data-summary-table td {
    border-left: 1px solid #999;
    border-right: 1px solid #999;
    padding: 1.2rem 1.6rem;
}
.data-summary-table td {
    border-bottom: 1px solid #999;
    color: #1c1c1c;
    font-size: 1.5rem;
}
.l-aggregate-body {
    line-height: 1.4;
    margin: 1.6rem auto 0rem;
    padding: 0;
}

.l-aggregate h4 {
    margin: 5.6rem 0rem 3.4rem;
    width: auto;
    font-size: 1.6em;
    background: #e8f3f2;
    padding-left: 20px;
}

#barchart { margin: 0 auto !important;}
#line { margin: -20px 0 !important;}
#line g.legend:first-of-type {
    transform: translate(-60px,50px);
}
#line g.legend:nth-of-type(2) {
    transform: translate(-60px,85px);
}
#l_chart {}

#p_chart {
    border: 1px solid #ccc;
    margin: 1.6rem auto 4.2rem;
    text-align: center;
    width: 78%;
}
svg#pieChart {
    height: 350px;
    margin-left: 260px;
    margin-top: 30px;
    width: 740px;
}
#p_chart .legend:first-of-type {
    transform: translate(-70px,50px);
}
#p_chart .legend:nth-of-type(2) {
    transform: translate(-70px,85px);
}

.l-aggregate-summary-scroll {
    margin: 4.2rem auto 3.2rem;
    text-align: center;
        box-sizing: border-box;
}
.data-scroll-table {
    margin-bottom: 30px;
}
.data-scroll-table>thead {
    box-shadow: none;
}
.data-scroll-table tbody td, .data-scroll-table tfoot td {
    background: transparent;
    color: #1c1c1c;
    border-bottom: 1px solid #999;
    border-right: 1px solid #999;
    box-sizing: border-box;
}
.data-scroll-table>tfoot {
    border: none;
    box-shadow: none;
}
.data-scroll-table>tfoot td {
    border-left: 1px solid #999;
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
}

.data-scroll-table>tfoot th {
    border-left: 1px solid #ccc;
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
}

.data-scroll-table>tbody {
    display: block;
    float: left;
    max-width: 41.6%;
    overflow-y: hidden;
    overflow-x: auto;
    width: auto;
}

.data-scroll-table th, .data-scroll-table thead td {
    font-weight: bold;
    text-align: center;
    /* background: #0091d5; */
    background: #3498db;
    background: #00c6ac;
    border-top: 1px solid #00ac97;
    border-left: 1px solid #999;
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
    color: #fff;
    padding: .8rem 1.6rem;
}
.data-scroll-table th {
    border-right: 1px solid #ccc;
}

.data-scroll-table thead td {
    font-weight: bold;
    text-align: center;
    background: #d9d9d9;
    padding: .8rem 1.6rem;
    color: #1c1c1c;
}
.data-scroll-table td.color-01 {background: #ededed; font-weight: normal;}

.data-scroll-table tbody th {
    border-left: 1px solid #ccc;
}
.data-scroll-table tr {
    background-color: #fff;
    opacity: 1;
}
.data-scroll-table tr:nth-of-type(even) {
    /* background-color: #eafbf9; */
    background-color: #eafbf9;
    opacity: 1;
}

.table-striped tr {
    background-color: #fff;
    opacity: 1;
}

.table-striped tr:nth-of-type(even) {
    background-color: #eee;
    opacity: 1;
}

.line:first-of-type { stroke: #ff3673;}
.table02 tbody { max-width: 60%;}

div, table, .body-survey-result tbody, .body-survey-result tfoot, .body-survey-result thead, .body-survey-result tr, .body-survey-result th, .body-survey-result td, .body-survey-result article, .body-survey-result section {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit
}

body.body-survey-result {
  font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, "FOT-筑紫ゴシック Pr5 M", Osaka, "ＭＳ Ｐゴシック", 'MS PGothic', arial, helvetica, sans-serif;
  color: #2b2b2b;
  background-color: #fff;
  line-height: 1.87;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.body-survey-result.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

.body-survey-result blockquote, .body-survey-result q { quotes: none;}

.body-survey-result blockquote:before, .body-survey-result blockquote:after, .body-survey-result q:before, .body-survey-result q:after {
  content: "";
  content: none;
}

.body-survey-result table {
  border-collapse: collapse;
  border-spacing: 0;
}

.body-survey-result a {
  color: #3B56A9;
  text-decoration: none;
  -webkit-transition: color .2s ease-out;
  transition: color .2s ease-out;
}

.body-survey-result a:hover {
  color: #1976d2;
  text-decoration: none;
}

.body-survey-result a:focus { outline: none;}

.body-survey-result .block { display: block;}

#container { position: relative;}

.body-survey-result .contents {
  width: 1840px;
  padding:20px 3px;
  margin: 0px;
  overflow: hidden;
  position: relative;
  font-size: 1.8rem;
  line-height:1.6;
  box-sizing: content-box;
}

.body-survey-result header p { line-height: 1.8;}
.body-survey-result section p { margin-bottom: 16px; }

.body-survey-result header h1, .body-survey-result header h1 span, .body-survey-result header p, .body-survey-result span{
    font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, "FOT-筑紫ゴシック Pr5 M", Osaka, "ＭＳ Ｐゴシック", 'MS PGothic', arial, helvetica, sans-serif;
}
.body-survey-result header { position: relative;  }
.body-survey-result header h1 { font-size: 1rem; margin-bottom: 4px; position: relative; padding-left: 17px;color: #007b7a;}
.body-survey-result header h1:before {
    content: "";
    background: #007b7a;
    content: "";
    height: 6px;
    width: 6px;
    left: 0;
    position: absolute;
    top: 3px;
    left: 5px;
}

.comname { position: absolute; right: 0; top:5px; font-size: 0.8rem; width: 10%; text-align: right;}

.body-survey-result table { width: 100%;}
.body-survey-result table th,table td {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.Table-scl { box-sizing: border-box; margin-bottom: 10px; font-size: 0.8rem;}
.Table-scl th,.Table-scl td {
  border: 1px solid #007b7a;
  padding: 2px 10px;
 }
.Table-scl th { width: 6%; background: #ffffdd; color: #206a20; }

.Table-answer { box-sizing: border-box; width: 100%; table-layout: auto;}
.Table-answer th,.Table-answer td {
  border: 1px solid #007b7a;
  font-size: 0.7rem;
  line-height: 1.3;
  text-align: center;
  letter-spacing: -0.03em;
 }
.Table-answer th { background: #007b7a; color: #fff; line-height: 1;}
.Table-answer th.cell-times { border:none; background: #fff; color:#333; text-align: left; vertical-align: bottom; padding: 3px 0 10px; }
.Table-answer th.cell-times span { position: relative; top: 5px; padding-left: 12px; font-weight: normal; font-size: 0.8rem; color: #007b7a;}
.Table-answer th.cell-times span:before { 
    content: "";
    background: #007b7a;
    content: "";
    height: 4px;
    width: 4px;
    left: 5px;
    position: absolute;
    top: 2px;
}

.Table-answer tr:nth-of-type(even) { background: #ffffdd; }

.Table-answer tr:nth-of-type(n+4) td:nth-of-type(n+20) { text-align: left; line-height: 1.3; }
.Table-answer td { min-width: 10px; }

.Table-answer tr:nth-of-type(4) td:nth-child(n + 8){ min-width: 30px }


.Table-answer tr:nth-of-type(2) td { color: #206a20; }

.Table-answer tr.subcolumn { line-height: 0.6; }
.Table-answer th.w-year { width: 1.5%; } /* 学年 */
.Table-answer th.w-class { width: 2%; } /* 組 */
.Table-answer th.w-number { width: 1.5%; } /* 番号 */
.Table-answer th.w-department { width: 2.5%; } /* 学科 */
.Table-answer th.w-name { width: 4%; } /* 氏名 */
.Table-answer th.w-yomi { width: 4%; } /* ヨミガナ */
.Table-answer th.w-sex { width: 1.5%; } /* 性別 */

.Table-answer td.rank_info { width: 6.5%; } /* 人気ランキング調査、学校案内請求アンケート */

.Table-answer .answer_list td{ padding: 3px 1px;}


/* ==============================
     ローディング画面
================================*/

.nittei_wrap{
    position: relative;
}
.nittei_popup{
    display: none;
    position: absolute;
    z-index: 255;
    top: 45px;
    left: 50px;
    width: 130px;
    padding: 10px;
    border: 2px solid #4a4a4a;
    background: white;
}
.nittei:hover + .nittei_popup {
    display: block;
}
/*========== SP ==========*/
@media (max-width: 767px) {
  .l-site-wrapper {width: 100%;padding: 60px 20px;}
  .l-login-window {height: auto;width: auto;margin: 0;}
  .l-login-header {margin: 0;padding: 20px 0 20px;}
  .l-login-header h2 {font-size: 2.2rem;padding: 0 10px 10px;}
  .l-login-body {width: 100%;}
  input[type="text"], input[type="date"], input[type="password"], input[type="email"], input[type="number"] {height: auto; width: 100%;}

  input[type="text"],
  input[type="date"],
  input[type="password"],
  input[type="email"],
  input[type="number"],
  select,
  textarea{
      padding:.8rem 0;
  }


}
