@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

/* 

基本
ボタンエリア
テキスト
ヘッダー
メイン
フッター
ボタン
ボタンエリア
テーブル
リスト
タブ分け
  
 */
 
/* ! ボディ・コンテナ ============================================================ */
html {
    min-height: 100vh;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

/* ボディ */
body {  
  display: -ms-grid; display: grid;
  -ms-grid-columns: 1fr; grid-template-columns: 1fr;/* 横方向 */
  -ms-grid-rows: auto 1fr auto; grid-template-rows: auto 1fr auto;/* 縦方向 */
  width: 100%;
  min-height: 100vh;
  -webkit-flex: 1 1 auto; flex: 1 1 auto;
  -webkit-font-smoothing: antialiased; font-smoothing: antialiased;
}
/* エリアの指定 */
header { 
    -ms-grid-column: 1;
    grid-column-start: 1;
    grid-column-end: 3;
    -ms-grid-column-span: 2;
    -ms-grid-row: 1;
    grid-row: 1;
}
main { 
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
    display: block;
}
footer { 
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 3;
    grid-row: 3;
}

.container {
  max-width: 1366px;
  min-width: 980px;
  width: 100%;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}

/*  */
.cut_2{
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
  -webkit-justify-content: center; justify-content: center;
  -webkit-align-items: stretch; align-items: stretch;
  margin: 10px;
}
.cut_2 > div{
  width: 50%;
  padding: 10px;
}
.cut_2 .body{
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column; flex-direction: column;
  flex: 1 1 auto;
}
.cut_2 .body ul{
  flex: 1 1 auto;
}
.cut_2 .flex{
  height: 100%;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}
.cut_2 .card{
  margin-bottom: 0;
}

/* nakami分割 */
.cut_2_inner{
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
}
.cut_2_inner > li{
  width: 50% !important;
  display: -webkit-flex;
  display: flex;
}


[class*="cut_2"] .form_box{
  -webkit-align-items: center; align-items: center;
  flex: 1 1 auto;
}

[class*="cut_2"] .form_ttl{
  background-color: #eee;
  padding: 10px 16px;
  height: 100%;
}
[class*="cut_2"] .form_cnt{
  min-height: 0;
  height: 100%;
  padding: 10px ;
}
[class*="cut_2"] li{
  padding: 0;
}
/*
[class*="list_form"][class*="200"].cut_2_inner.check:after{
    content: "";
    width: 200px;
    height: 100%;
    display: block;
    background: #eee;
    position: absolute;
    top: 0;
    left: 50%;
    }
    [class*="list_form"].cut_2_inner.check:after{
    content: "";
    width: 110px;
    height: 100%;
    display: block;
    background: #eee;
    position: absolute;
    top: 0;
    left: 50%;
    }
*/

.cut_2_inner .card{
  margin-bottom: 20px;
}
.cut_imgin{
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center; align-items: center;
}
.cut_imgin img{
  margin: 0 40px 0 0 ;
  max-width: 110px;
}
@media screen and (max-width: 786px){
  .cut_2_inner{
    -webkit-flex-direction:column; flex-direction:column;
    width: 100%;
  }
  .cut_2_inner > li{
    width: 100% !important;
  }
}
[class*="flex"][class*="_center"]{
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: space-between; justify-content: space-between;
}
.flex{
  display: -webkit-flex;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

/* ! テキスト ============================================================ */
a,button {
  text-decoration: none;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  cursor: pointer;
}
/*
.page_management a{
  color: #035 !important;
}
a:hover{
  text-decoration: none !important;
  color: #06a !important;
}
*/
p {
  font: 300 15px/1.3em 'noto sans japanese';
}
h2 {
  font: 600 32px/1em 'noto sans japanese';
  margin: 0 0 50px;
  display: -webkit-flex; display: flex;
  -webkit-flex-direction: column; flex-direction: column;
  -webkit-align-items: center; align-items: center;
}
h2.left {
  -webkit-align-items: flex-start; align-items: flex-start;
}
h2 span {
  color: #06a;
  font: 900 14px/1em 'noto sans japanese';
  margin: 12px 0 8px;
  letter-spacing: .1em;
}
h2.left {
  -webkit-align-items: flex-start; align-items: flex-start;
}
h3 {
  color: #357;
  font: 600 26px/1.2em 'noto sans japanese';
  margin: 60px 0 20px;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: space-between; justify-content: space-between;
}
h4 {
  color: #357;
  font: 700 20px/1em 'noto sans japanese';
  display: inline-block;
  margin: 60px 0 20px;
  padding: 0 .5em;
  border-left: 6px solid #357;
  border-right: 6px solid #357;
}
h5 {
  color: #357;
  font: 600 18px/1em 'noto sans japanese';
  margin: 40px 0 20px;
  padding: 0 0 0 20px;
  position: relative;
}
h5:before {
  content: "";
  display: block;
  width: 10px;
  height: 3px;
  background: #357;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.space_top_none {
  margin-top: 0 !important;
}

[class*="text_"][class*="center"]{
  text-align: center;
}

.ratearea{
  overflow: auto;
  height: 100px;
  border: 1px solid #035;
  padding: 2px 4px;
}

/* ! ヘッダー ============================================================ */
header .logo {
  max-width: 77px;
  width: 100%;
}
.navbar a{
  color: #fff !important;
}


/* ヘッダーメイン */
.header_main {
  height: 90px;
  padding: 0 40px;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
}
.header_main img {
  vertical-align: bottom;
}
.header_main [class*="btnarea"] {
  margin-left: auto;
}
.header_main [class*="btnarea"] a {
  text-align: center;
  width: 160px;
}
.header_main [class*="btnarea"] a.active{
  background: #035;
  cursor: default;
}
.header_main [class*="btnarea"] a.active:hover {
  color: #fff;
  border-color: #035;
}
.header_main [class*="btnarea"] a:not(.active) {
  color: #06a;
  border-color: #06a;
  background: #fff;
}
.header_main [class*="btnarea"] a:not(.active):hover {
}


/* 個別 */
.body_mypage .header_main [class*="btnarea"] {
  display: none;
}


/* box 会社 */
.box_company {
  margin: 0 0 0 60px;
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: nowrap; flex-wrap: nowrap;
  -webkit-align-items: center; align-items: center;
  max-width: 200px;
  width: 100%;
  position: relative;
}
.box_company:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/ico_times_navy.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: -36px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.box_company > a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.box_company .img {
  width: 60px;
  height: 60px;
  background-size: cover !important;
  border-radius: 50%;
  -webkit-flex: 0 0 60px; flex: 0 0 60px;
  margin: 0 10px 0 0;
  position: relative;
  display: -webkit-flex; display: flex;
  -webkit-align-items: flex-end; align-items: flex-end;
  -webkit-justify-content: flex-end; justify-content: flex-end;
  background-position: center !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}
.box_company .alert {
  color: #fff;
  font: 600 10px/1em 'noto sans japanese';
  text-align: center;
  min-width: 18px;
  display: inline-block;
  padding: 3px;
  border-radius: 100px;
  background: #b12;
  border: 1px solid #b12;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.box_company .alert:hover {
  color: #b12;
  background: #fff;
}
.box_company .text {
  color: #333;
  -webkit-flex: 1 1 auto; flex: 1 1 auto;
}
.box_company .group {
  font: 300 12px/1.2em 'noto sans japanese';
  margin: 0 0 5px;
}
.box_company .name {
  font: 600 16px/1.2em 'noto sans japanese';
}


/* ナビ */
header nav {
  color: #fff;
  background: #035;
  height: 50px;
  padding: 0 40px;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
}
header nav ul {
  margin: 0 auto;
  display: -webkit-flex; display: flex;
  width: 100%;
  max-width: 1366px;
  justify-content: flex-start;
}
header nav ul > li {
  padding: 0 20px;
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
  -webkit-align-items: center; align-items: center;
}
@media screen and (max-width: 1155px){
  header nav ul > li {
    padding: 0 5px;
  }
}
header nav p {
  font: 600 16px/1em 'noto sans japanese';
}
header nav [class*="btnarea"] {
  margin: 0 0 0 10px;
}
header nav a {
  color: #fff;
  font: 600 16px/1em 'noto sans japanese';
}
.beta{
  font-size: 12px;
  color: #333;
  text-align: right;
  transform: translate(-1px,-11px);
}
.beta1{
  font-size: 12px;
  color: #333;
  text-align: center;
  transform: translate(-1px,-11px);
  margin: 20px 0 -40px 0;
}


/* ! メイン ============================================================ */
main {
  padding: 80px 0 100px;
  position: relative;
}


/* ! フッター ============================================================ */
footer {
  color: #fff;
  background: #035;
}
footer h5 {
  color: #fff;
  font: 600 15px/1em 'noto sans japanese';
  margin: 0 0 20px;
  padding: 0;
}
footer h5:before {
  content: none;
}
.footer_main {
  max-width: 800px;
  margin: 0 auto;  
  padding: 40px 60px 60px;
}


/* フッターリスト */
.list_footer {
  margin: -7px;
}
.list_footer li {
  padding: 7px;
}
.list_footer a {
  color: #fff;
  font: 300 13px/1em 'noto sans japanese';
  display: block;
  padding: 0 0 0 20px;
  position: relative;
}
.list_footer a:before {
  content: "";
  display: block;
  width: 5px;
  height: 1px;
  background: rgba(255,255,255,.3);
  position: absolute;
  top: 50%;
  left: 2px;
}


/* コピーライト */
.copyright {
  font: 300 11px/1em 'noto sans japanese';
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.2);
}


/* ! ボタン ============================================================ */
body {
  color: #222;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}


/* ! ボタン ============================================================ */
[class*="btn_"] {
  color: #fff;
  font: 600 13px/1em 'noto sans japanese';
  display: inline-block;
  background: #06a;
  padding: 7px 16px;
  border-radius: 5px;
  border: 2px solid transparent;
  cursor: pointer;
}
[class*="btn_"]:hover {
  color: #06a;
  border-color: #06a;
  background: #fff;
  text-decoration: none;
}


/* disabled ディスエイブル */
[class*="btn_"]:disabled,
[class*="btn_"]:disabled:hover {
  background: #eee;
  border-color: #ccc;
  pointer-events: none;
  user-select: none;
} 

/* 色 */
[class*="btn_"][class*="white"] {
  background: #fff;
  color: #06a;
}
[class*="btn_"][class*="white"]:hover {
  color: #fff;
  background: #06a;
}
[class*="btn_"][class*="gray"] {
  background: #aaa;
}
[class*="btn_"][class*="gray"]:hover {
  color: #aaa;
  background: #fff;
  border-color: #aaa;
}
[class*="btn_"][class*="navy"]{
  background: #035;
}
[class*="btn_"][class*="navy"]:hover{
  background: white;
  border-color: #035;
  color: #035;
}

/* ライン */
[class*="btn_"][class*="line"] {
  background: #fff;
  color: #035;
  border-color: #035;
  border-width: 1px;
}
[class*="btn_"][class*="line"]:hover {
  color: #fff !important;
  background: #035;
}

[class*="btn_"][class*="line"][class*="tablelist"] {
  width: calc((100% - 6px) / 3);
  text-align: center;
  margin: 1px 0 0 0;
  }


/* ログアウト */
[class*="btn_"][class*="logout"]{
  background: transparent;
  color: #06a;
  border-color: transparent;
}
[class*="btn_"][class*="logout"]:hover{
  border: 2px solid #06a;
}


/* もっと見るボタン */
[class*="btn_"][class*="more"] {
  color: #333;
  font: 500 12px/1em 'noto sans japanese';
  padding: 5px 0;
  background: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid transparent;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  position: relative;
  z-index: 2;
}
[class*="btn_"][class*="more"]:hover {
  border-bottom-color: #000;
}
[class*="btn_"][class*="more"]:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url(../img/ico_right_black.svg) no-repeat center center;
  background-size: contain;
  margin: 0 0 0 5px;
}


/* 次へ戻る */
[class*="btn_next"],
[class*="btn_prev"] {
  display: flex;
  align-items: center;
}
[class*="btn_next"]:after,
[class*="btn_prev"]:before{
  content: '';
  width: 12px; height: 12px;
  background: url(../img/ico_prev_white.svg)no-repeat center;
  background-size: cover;
   margin: 0 5px 0 0;
}
[class*="btn_next"]:after{
  background: url(../img/ico_next_white.svg)no-repeat center;
  background-size: cover;
  margin: 0 0 0 5px;
}


/* ダウンロードボタン */
[class*="btn_"][class*="download"] {
  position: relative;
  padding-left: 40px;
  background: #035;
  border-color: #035;
}
[class*="btn_"][class*="download"]:hover {
  color: #035;
  background: #fff;
  border-color: #035;
}
[class*="btn_"][class*="download"]:before {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/ico_download_white.svg) no-repeat center center;
  background-size: contain !important;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
[class*="btn_"][class*="download"]:hover:before {
  background: url(../img/ico_download_navy.svg) no-repeat center center;
}

.status_pendding:after {
    content: "";
    width: 14px;
    height: 14px;
    background: url(../img/loading.gif) no-repeat center center;
    background-size: contain !important;
    position: absolute;
    top: 50%;
    left: 25px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.status_pendding:hover{
  cursor: auto;
  background: #035 !important;
  border-color: #035 !important;
  color: #fff !important;
}
.status_pendding:hover:before {
  background: url(../img/ico_download_white.svg) no-repeat center center !important;
}

/*  */
[class*="btn_"][class*="download"][class*="tablelist"] {
  width: 100%;
  text-align: center;
  margin: 0 0 1px 0;
}



.sort_item{display: -webkit-flex;
display: flex;
align-items: baseline;}





.management input:not([type="checkbox"]){
    min-width: 379px !important;
    }
.management .form_sort {
    width: auto;
    -webkit-justify-content: center; justify-content: center;
    padding: 0;
}

.form_sort > ul > li {
min-width: 450px;
}

.management .body {
  -webkit-justify-content: center; justify-content: center;
}
.management .form_sort .width100{
  width: 100%;
}
.management .form_sort .input_wrap{
  margin: 5px 0;
}
.management .sort_item .search{
  min-width: 60px;
}

/* アップロード */
[class*="btn_"][class*="download"][class*="upload"]:before {
  background: url(../img/ico_upload_white.svg) no-repeat center center;
}
[class*="btn_"][class*="download"][class*="upload"]:hover:before {
  background: url(../img/ico_upload_navy.svg) no-repeat center center;
}


/* サイズ */
[class*="btn_"][class*="small"] {
  font-size: 12px;
  border-radius: 3px;
}
[class*="btn_"][class*="large"] {
  font-size: 16px;
}


/* 高さ */
[class*="btn_"][class*="thin"] {
  padding-top: 5px;
  padding-bottom: 5px;
}
[class*="btn_"][class*="thick"] {
  padding-top: 12px;
  padding-bottom: 12px;
}


/* 横幅 */
[class*="btn_"][class*="narrow"] {
  padding-right: 8px;
  padding-left: 8px;
}
[class*="btn_"][class*="wide"] {
  padding-right: 36px;
  padding-left: 36px;
}
[class*="btn_"][class*="full"] {
  width: 100%;
  text-align: center;
}


/* テキスト */
[class*="btn_"][class*="text"]{
  color: #06a;
  background: transparent;
  padding: 5px 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid transparent;
}
[class*="btn_"][class*="text"]:hover {
  border-color: #06a;
}
[class*="btn_"][class*="text"][class*="black"] {
  color: #222;
  font-weight: 300;
}
[class*="btn_"][class*="text"][class*="black"]:hover {
  border-color: #222;
}


/* 横幅 */
[class*="btn_"][class*="full"] {
  text-align: center;
  width: 100%;
}


/* ! ボタンエリア ============================================================ */
[class*="btnarea_"][class*="center"] {
  text-align: center;
}
[class*="btnarea_"][class*="right"] {
  text-align: right;
}
/*
[class*="btnarea_"][class*="right"][class*="padding"]{
  padding: 0 30px 0 0;
  
}
*/
[class*="btnarea_"][class*="top"] {
  border-top: 1px dotted #035;
  padding: 40px 0 0;
  margin: 60px 0 0;
}
[class*="btnarea_"][class*="marginright"]{
  margin: 0 33px 0 0;
}


/* アカウント停止ボタンに使用 */
[class*="btnarea_"][class*="space"] {
  margin-top: 40px;
}
/* メッセージ投稿ボタンに使用 */
[class*="btnarea_"][class*="space"][class*="min"] {
  margin-top: 20px !important;
}
/* メッセージ投稿ボタンに使用 */
[class*="btnarea_"][class*="space"][class*="minimum"] {
  margin-top: 10px !important;
}

[class*="btnarea_"][class*="bottom"] {
  margin: 0 0 20px;
}
[class*="btnarea_"][class*="bottomline"]{
  border-bottom: 1px dotted ;
  padding: 0 0 20px;
  margin:  0 0 30px;
}


/* ! テーブル ============================================================ */
table {
  width: 100%;
}
th {
  color: #035;
  font: 700 13px/1.2em 'noto sans japanese';
  padding: 14px 7px;
}
td {
  font: 400 13px/1.2em 'noto sans japanese';
  padding: 8px 7px;
}
thead{
  border-top: 2px solid #035;
  border-bottom: 2px solid #035;
}
tbody {
  border-bottom: 1px solid #eee;
}
tbody tr + tr {
  border-top: 1px dotted #eee;  
}

/* ステータス */
td.status {
  width: 100px;
}
td.status span {
  color: #e90;
  font: 600 12px/1em 'noto sans japanese';
  text-align: center;
  display: block;
  padding: 3px 0;
  border: 1px solid #e90; 
}


/* テーブルに配置するボタン */
table [class*="btnarea"] {
  text-align: right;
  min-width: 100px;
}
table [class*="btn_"] {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 2px;
}

/* デザイン変更 */
table.table_dot tbody {
  border-top: 1px dotted #eee;
  border-bottom: 1px dotted #eee;
}
.table_dot .strong,
.table_dot .strong label {
  font: 700 14px/1em 'noto sans japanese';
}


/* テーブル内タグ */
[class*="tag_status"] {
  color: #fff;
  font: 600 12px/1em 'noto sans japanese';
  text-align: center;
  width: 50px;
  display: inline-block;
  border: 1px solid transparent;
  background: #ccc;
  padding: 3px 0;
}
.tag_status_reject {
  background: #ccc;
}
.tag_status_save {
  background: #06a;
}
.tag_status_post {
  background: #003355;
}
.tag_status_approval {
  background: #d33c44;
}


/* ! 検索条件 ============================================================ */
.form_search {
  margin: 0 0 20px;
  display: -webkit-flex; display: flex;
  -webkit-justify-content: flex-start; justify-content: flex-start;
  -webkit-align-items: center; align-items: center;
}
.form_search .btnarea {
  margin: 0 0 0 10px;
}
.box_search {
  background: #f3f3f3;
  padding: 40px;
  display: none;
}


/* ! ページング ============================================================ */
.paging {
  margin: 30px auto 0;
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
}
.paging > p{
  margin: 0;
}
.paging ul {
  margin: -2px auto;
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
}
.paging li {
  padding: 2px;
}
.paging li:first-child{
  margin: 0 0 0 15px;
}
.paging a {
  color: #fff;
  font: 600 15px/1em 'noto sans japanese';
  background: #ccc;
  width: 35px;
  height: 35px;
  border-radius: 2px;
  border: 1px solid transparent;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
} 
.paging a:hover {
  color: #035;
  background: #fff;
  border-color: #035
}
.paging .current a,
.paging .active a{
  background: #035;
  cursor: default;
}
.paging .current a:hover,
.paging .active a:hover {
  color: #fff;
}
.paging .prev a,
.paging .next a {
  width: 40px;
  margin: 0 5px;
}
.paging .off a {
  background: #eee;
  pointer-events: none;
}


/* ! メッセージ ================================================== */
.box_message {
  max-width: 640px;
  margin: 0 auto;
}
.message_wrap {
  padding: 40px 20px;
  height: 400px;
  overflow: auto;
}
.box_message p {
  font: 400 14px/1.7em 'noto sans japanese';
}

/* アップロード */
.box_message article + article.file_attached {
  margin: 6px 0 0;
}
.box_message article.file_attached .img{
  opacity: 0;
}
.box_message article.file_attached .message_main:before {
  border: none;
}
.box_message a {
  color: #fff;
  font: 600 11px/1.2em 'noto sans japanese';
  display: block;
  padding-left: 32px;
  position: relative;
}
.box_message a:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: #fff url(../img/ico_download_navy.svg) ;
  background-repeat: no-repeat !important;
  background-position: top 3px center !important;
  background-size: 12px 12px !important;
  border: 1px solid #fff;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.box_message a:hover {
  text-decoration: underline;
}
.box_message a:hover:before {
  background: #035 url(../img/ico_download_white.svg) ;
}
.box_message article.you a {
  color: #035;
}
.box_message article.you a:before {
  background: #035 url(../img/ico_download_white.svg) ;
  border-color: #035;
}
.box_message article.you a:hover:before {
  background: url(../img/ico_download_navy.svg) ;
}



.box_message article {
  padding: 0 100px 0 0;
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: nowrap; flex-wrap: nowrap;
}
.box_message article + article {
  margin: 20px 0 0;
}
.box_message .img {
  color: #fff;
  font: 800 28px/1em 'noto sans japanese';
  display: block;
  width: 40px;;
  height: 40px;
  border-radius: 50%;
  background-size: cover !important;
  -webkit-flex: 0 0 40px; flex: 0 0 40px;
  margin: 0 20px 0 0;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
}
.box_message .message_main{
  border-radius: 5px;
  background: #f5f5f5;
  padding: 15px 20px;
  width: 100%;
  position: relative;
}
.box_message .message_main:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 12px 8px 0;
  border-color: transparent #f5f5f5 transparent transparent;
  position: absolute;
  top: 12px;
  left: -8px;
}
.box_message .date {
  color: #bbb;
  font: 300 11px/1em 'noto sans japanese';
  margin: 10px 0 0;
}


/* アップロードリスト */
.list_upload_message {
  margin: 10px 0 0;
}
.list_upload_message a {
  color: #035;
  font: 300 12px/1.2em 'noto sans japanese';
  display: inline-block;
  padding: 2px 8px;
  border: 1px solid #fff;
  border-radius: 3px;
  background: #fff;
}
.list_upload_message a:hover {
  color: #fff;
  background: transparent;
}


/* アップロード箇所 */
#file_target_field {
  display: block;
  padding: 8px 0 0;
}
#file_target_field .input_wrap {
  border: none;
  padding: 0 0 0;
}



/* 自分 */
.box_message article.me {
  padding: 0 0 0 100px;
  -webkit-flex-direction: row-reverse; flex-direction: row-reverse;
}
.box_message .me .img {
  margin: 0 0 0 20px;
}
.box_message .me .message_main {
  color: #fff;
  background: #035;
}
.box_message .me .message_main:before {
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #035;

  left: auto;
  right: -8px;
}

/* 投稿要素 */
.box_message .input_wrap {
  border-top: 1px solid #035;
  padding: 30px 0 0;
}
.box_message [class*="btnarea"] {
  border-color: transparent;
  margin: 0;
}



/* ! タブ分け ================================================== */
.tab_wrap {
  width: 100%;
}
.tab_nav {
  position: relative;
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
}
.tab_nav li {
  max-width: 200px;
  width: 100%;
  overflow: hidden;
}
.tab_min .tab_nav li {
  max-width: 160px;
}
.tab_nav li + li {
  margin: 0 0 0 5px;
}
.tab_nav span,
.tab_nav a {
  color: #035;
  font: 600 15px/1em 'noto sans japanese';
  text-align: center;
  background: #f3f3f3;
  padding: 10px 0;
  border: 2px solid transparent;
  border-bottom: 0;
  display: -webkit-flex; display: flex;
  -webkit-justify-content: center; justify-content: center;
  cursor: pointer;
}
.tab_min .tab_nav span,
.tab_min .tab_nav a {
  font-size: 13px;
  padding: 5px 0;
}
.tab_nav li.current span:hover,
.tab_nav li.current a:hover{
  cursor: default;
}
.tab_nav li:not(.current) span:hover,
.tab_nav li:not(.current) a:hover {
  border-color: #035;
}
.tab_nav .current span,
.tab_nav .current a {
  color: #fff;
  background: #035;
  position: relative;
}
/*
.tab_nav .current span:before {
  content: "";
  display: block;
  width: -webkit-calc((100% + 2px));
  width: calc((100% + 2px));
  height: 2px;
  background: #333;
  position: absolute;
  top: -1px;
  left: -1px;
}
*/
.tab_cnt {
  background: #fff;
  border: 2px solid #035 ;
  padding: 30px;
  display: none;
}
.tab_cnt.current {
  display: block;
  clear: both;
  font: 400 17px/1em 'noto sans japanese';
}
.tab_min .tab_cnt {
  border: none;
  padding: 0;
}


/* ! バックグラウンド ================================================== */
.bg_gray {
  background: #f3f3f3;
}

#table_detail .btnarea:hover
{
 cursor:pointer;
}
#table_detail .hidden_row
{
 display:none;
}



/* ! トグルボタン ================================================== */

.toggle_cnt {
      display: table-row;
    }
    .toggle_cnt.off {
      display: none;
    }
/*
    .toggle_cnt a{
      position: absolute;
      right: -150px;
    }
*/
    
    .toggle_cnt ul{
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-around; justify-content: space-around;
      padding: 10px 0;
      position: relative;
    }
    .toggle_cnt p{
      font: 400 12px/1.2em 'noto sans japanese';
    }
    .toggle_cnt p.ttl{
      font: 600 13px/1.2em 'noto sans japanese';
      margin: 0 0 5px 0;
    }
    .toggle_button{
      position: relative;
      padding: 4px 20px 4px 10px !important;
    }
    .toggle_button:before{
      content: "\f107";
    font: normal 13px/1em 'fontawesome';
    position: absolute;
    top: 50%;
    right: 5px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: .3s;
    }
    .toggle_button.current.current:before{
      -moz-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    top:18%;
    transition: .3s;
    }
    
    .button_flex{
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center; align-items: center;
      justify-content: flex-end;
    }
    .button_flex > div:nth-of-type(2){
      margin-left: 5px;
    }
    
/* !  ================================================== */    
    .fixed.hide {
    transform: translate(0,100%);
    opacity: 1;
}

    .fixed {
    position: fixed;
    bottom: 0;
    z-index: 100;
    left: 0;
    width: 100%;
    color: #fff;
    background-color: #035;
    background-size: auto 100%;
    border-top: 4px solid #035;
    border-bottom: 4px solid #035;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center; align-items: center;
    -webkit-justify-content: space-between; justify-content: space-between;
    transition: all .7s ease;
    -webkit-transition: all .7s ease;
    text-align: center;
    font: 600 15px/1.3em 'noto sans japanese';
    transform: translate(0,0);
}
.fixed ul{
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
  width: 100%;
  padding: 10px 100px;
  border-bottom: 3px solid #fff;
  border-top: 3px solid #fff;
}
.fixed ul li{
  width: 12.5%;
  text-align: left;
  position: relative;
}
.fixed ul li:before{
  content: "";
  height: 34px;
  width: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.fixed ul li p{
  padding: 2px 3px 2px 14px;;
  font: 500 16px/1.3em 'noto sans japanese';
}
.fixed li .ttl{
  font: 600 12px/1.3em 'noto sans japanese';
}

@media screen and (max-width: 940px){
  .fixed ul li{
    width: 25%;
    margin: 3px 0;
  }
}

.scroll_box{
  max-height: 115px;
  overflow: auto;
}

.scroll_box.detail{
  max-height: 300px;
}

/* ! エラー ================================================== */
.error_excel h3{
  padding: 0 0 0 14px;
  border-left: 6px solid #06a;
  color: #06a;
  margin: 0 0 20px;
}
.error_excel span.red{
  font: 500 12px/1.3em 'noto sans japanese';
/*   display: block; */
  padding: 3px 20px 0 ;
  color: #df1a1a;
}
.error_excel p{
  font: 500 16px/1.3em 'noto sans japanese';
  padding: 5px 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.error_excel > div{
  margin: 15px 20px;
}
span.triangle {
  display: inline-block;
  border: 6px solid transparent;
  border-left-color: #06a;
  margin: 0 0 0 20px;
}
.error_excel{
    background: #eff1fb;
    padding: 40px 30px;
    margin: 0 0 80px;
}
.error_excel .btnarea_center_top{
  margin: 30px 0 0 ;
  padding: 30px 0 0;
}


/* ! チェックボックス ================================================== */
.table_sticky .wrap_checkbox input[type="checkbox"] + label{
  display: flex;
  align-items: center;
  padding: 3px 5px;
  background: #ebeff1;
  width: 97px;
  height: auto;
  border-radius: 4px;
  margin: auto;
  position: relative;
  border: solid 1px #035;
  cursor: pointer;
}
.table_sticky .wrap_checkbox input[type="checkbox"] + label:before,
.table_sticky .wrap_checkbox input[type="checkbox"] + label:after{
  width: 10px; height: 10px;
  position: initial;
  margin: 0 4px 0 0;
}
.table_sticky .wrap_checkbox input[type="checkbox"] + label:after{
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translate(0,-49%);
  margin: 0;
}
.table_sticky .wrap_checkbox input[type="checkbox"] + label span{
  font-size: 11px;
}
.table_sticky .wrap_checkbox input[type="checkbox"]:checked + label{
  background: #003355;
}
.table_sticky .wrap_checkbox input[type="checkbox"]:checked + label:before{
  background: white;
  border-color: #035;
}
.table_sticky .wrap_checkbox input[type="checkbox"]:checked + label span{
  color: white;
}

.target_id,
.target_or_cu,
.target_fr_cu,
.target_de_cu{
  width: 80px !important;
}
.target_se_fr_mon{
  width: 40px !important;
}

thead tr:nth-child(2) th.target_su_ra_rala[rowspan="2"],
thead tr:nth-child(3) th.target_su_ra_rala {
  background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);
  background-repeat: no-repeat;
  background-position: center right;
  padding: 4px 18px 4px 4px;
  white-space: normal;
  cursor: pointer;
}
thead tr:nth-child(2) th.target_su_ra_rala[rowspan="2"].asc,
thead tr:nth-child(3) th.target_su_ra_rala.asc{
  background-color: #9fbfdf;
  background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7);
}
thead tr:nth-child(2) th.target_su_ra_rala[rowspan="2"].desc,
thead tr:nth-child(3) th.target_su_ra_rala.desc{
  background-color: #8cb3d9;
  background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7);
}

.loading{
  position: relative;
}
.loading .head{
  display: flex;
}
.loading img{
  width: auto;
  height: 20px;
  margin: 2px 12px 0 0;
}
#PassSec{
  position: absolute;
  margin: auto;
  top: 35px;
  bottom: 0;
  right: 0;
  left: 0;
}

.gray.nohover:hover{
  background: #aaa;
  color: #fff;
  cursor: auto;
}

#loader-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.9);
  z-index: 5;
}
.loading{
  position: fixed;
  top: 50%;
  left: 50%;
  color: #fff;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
  transform: translate(-50%, -100px);
}
.loading > div{
  flex: 1 1 50%;
  padding: 20px;
}
.loading .ttl{
  margin: 0 0 10px;
  font: 500 15px/1.3em 'noto sans japanese',sans-serif;
}
.loading > .ttl{
  width: 100%;
  text-align: center;
  font: 600 24px/1.3em 'noto sans japanese',sans-serif;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.progress_line{
  padding: 3px;
  border: solid 1px #77b7b1;
  border-radius: 100px;
  overflow: hidden;
}
.progress_wrap {
  width: 100%;
  border-radius: 100px;
  overflow: hidden;
}
.total_finished{
  text-align: right;
  margin: 5px 0 0px;
  padding: 0 10px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.total_finished p{ 
  font: 600 15px/1.3em 'noto sans japanese',sans-serif;
}
.total_finished .total{
  display: flex;
  align-items: flex-end;
  margin: 0 0 0 5px;
}
.total_finished .total:before {
  content: '/';
  padding: 0 6px 0 0;
}
.total_finished .total:after{
  content: attr(data-unit-after);
  padding: 0 0 0 3px;
}
.progress_bar{
  background: #035;
}
[id*=progress][value] {
  appearance: none;
  border-radius: 20px;
  color: #77b7b1; /* IE */
  height: 20px;
  background: none;
  display: block;
  width: 100%;
}
/* chrome */
[id*=progress][value]::-webkit-progress-bar {
  background: none
}
[id*=progress][value]::-webkit-progress-value {
  background: linear-gradient(to right, #093010 0%,#77b7b1 100%);
}
/* firefox */
[id*=progress][value]::-moz-progress-bar {
  background: linear-gradient(to right, #093010 0%,#77b7b1 100%);
}