@charset "utf-8";
/*リセット・ページ共通部品*/
/*==================================================

リセット

==================================================*/
/*メインカラー
#efc130;ロゴオレンジ
#fbbc3b;ボタンオレンジ
#f0f4f6;薄いグレー
#cbd3d7;グレー
#546e7a;中グレー
#505050;濃いグレー
#50648c;濃いブルー
#546e7a;汎用ボタンhover
#978d61;ボタンhoverカーキ色
#6ed6d6;明るいグリーン
#A9B6BC;disabled文字
#ed1c24;赤文字
*/
html {
  position: relative;
  box-sizing: border-box;
  min-height: 100%;
  padding-bottom: 50px;
  font-size: 62.5%;
}
body {
  min-width: 960px;
  background: #fff;
  font-family: "メイリオ", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #505050;
  font-size: 1.6rem;
  line-height: 1.7;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  overflow: visible;
}
h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
}
img {
  border: none;
  vertical-align: bottom;
  font-size: 0;
}
a {
  color: #505050;
}
strong, b {
  font-weight: bold;
}
i {
  font-style: italic;
}
sup {
  vertical-align: text-top;
  font-size: 70%;
}
sub {
  vertical-align: text-bottom;
  font-size: 70%;
}

/*ページのタイトル*/
.ttl-main {
  margin-bottom: 15px;
  padding-left: 15px;
  border-left: solid 3px #505050;
  font-size: 1.9rem;
  font-weight: bold;
}
.ttl-sub {
  position: relative;
  display: inline-block;
  margin: 0px 0 15px 0;
  padding: 5px 5px 5px 20px;
  font-size: 1.7rem;
  font-weight: bold;
}
.ttl-sub::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #efc130;
}
input, textarea, select, option {
  appearance: none;
  font-family: inherit;
  font-size: 1.5rem;
  vertical-align: middle;
}
input[type="checkbox"], input[type="radio"] {
  font-size: 1.5rem;
  cursor: pointer;
}
input [type="file"] {
  display: none;
}
.input-text-50p {
  width: 50%;
  /*height: 100%;*/
  padding: 10px;
  border: solid 1px #f0f0f0;
  font-size: 1.5rem;
  word-wrap: break-word;
}
.input-text-100p {
  width: 100%;
  /*height: 100%;*/
  padding: 10px;
  border: solid 1px #f0f0f0;
  font-size: 1.5rem;
}
textarea {
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 100px;
  padding: 10px;
  border: solid 1px #f0f0f0;
  font-size: 1.5rem;
  word-wrap: break-word;
}
textarea[name="mail_body_rireki"],
textarea[name="genkou_naiyou"],
textarea[name="syuusei_naiyou"],
textarea[name="comment"],
textarea.overflow_auto{
  overflow: auto;
}
button, submit {
  margin: 0;
  border: none;
  outline: none;
  appearance: none;
  font-family: inherit;
  font-size: 1.4rem;
}
input::placeholder {
  color: #a9a9a9;
}
label {
  appearance: none;
  font-family: inherit;
  cursor: pointer;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
ul, ol {
  list-style-type: none;
}
hr {
  width: 100%;
  height: 1px;
  background-color: #546e7a;
  border: none;
}
/*--------------------------------------------
共通ボタン
--------------------------------------------*/
/*汎用ボタン*/
.btn {
  display: inline-block;
  padding: 6px 10px;
  border: solid 1px #546e7a;
  border-radius: 3px;
  background: #f0f4f6;
  font-size: 14px;
  color: #546e7a;
  text-align: center;
  line-height: 1;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  transition: 0.2s;
}
.btn:hover,
.btn:focus {
  background-color: #546e7a;
  border-color: #546e7a;
  color: #fff;
}
.is-active {
  background-color: #546e7a;
  border-color: #546e7a;
  color: #fff;
}
/*オレンジ色のボタン*/
.btn-sp {
  background: #fbbc3b;
}
.btn-sp:hover,
.btn-sp:focus {
  background-color: #978d61;
  color: #fff;
}
/*背の高いボタン*/
.btn-heigh {
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 1.6rem;
}
/*キャンセルボタンなど色が違う*/
.btn-02 {
  background-color: #dde2e4;
}
.btn-shadow {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}
/*ボタン無効*/
.btn-disabled {
  pointer-events: none;
  color: #A9B6BC;
}
/*btn-box ボタンの並んでいるbox*/
.btn-rows li {
  display: inline-block;
}
.btn-rows li:not(:last-child) {
  margin-right: 15px;
}
/*横並びのbox*/
.flex-box {
  display: flex;
  align-items: center;
}
/*右寄せのボタン*/
.right_btn {
  position: absolute;
  right: 0;
  top: 0;
}
/*--------------------------------------------------
ラジオボタン
--------------------------------------------------*/
.radio-input {
  display: none;
}
.radio-input + label {
  position: relative;
  margin-right: 20px;
  padding-left: 30px;
  font-size: 1.5rem;
}
.radio-input + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #999;
  border-radius: 50%;
}
.radio-input:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #6ed6d6;
}
/*--------------------------------------------------
チェックボックス
--------------------------------------------------*/
.checkbox-input {
  display: none;
}
.checkbox-parts {
  position: relative;
  margin-right: 20px;
  padding-left: 30px;
  font-size: 1.5rem;
}
.checkbox-parts::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 4px;
}
.checkbox-input:checked + .checkbox-parts::after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 5px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #6ed6d6;
  border-right: 3px solid #6ed6d6;
}
/*--------------------------------------------
select
--------------------------------------------*/
.select {
  overflow: hidden;
  /* width: 450px;*/ /*幅はhtmlの.slectにクラスで直接指定（ｗ450）*/
  height: 35px;
}
.select select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: #f0f4f6;
  background: #fff;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
.select select::-ms-expand {
  display: none;
}
.select {
  position: relative;
  border: 1px solid #546e7a;
  border-radius: 1px;
  background: #fff;
}
.select::before {
  position: absolute;
  z-index: 2;
  top: 0.7em;
  right: 0.7em;
  width: 10px;
  height: 10px;
  padding: 0;
  content: '';
  border-right: 2px solid #546e7a;
  border-bottom: 2px solid #546e7a;
  transform: rotate(45deg);
  pointer-events: none;
}
.select::after {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: 0;
  width: 35px;
  height: 35px;
  content: '';
  border: 1px solid #546e7a;
  background: #f0f4f6;
  pointer-events: none;
}
.select select {
  padding: 7px 35px 6px 8px;
  color: #505050;
}
/*--------------------------------------------------
.file-reference 参照ファイル
--------------------------------------------------*/
.input-group input[type="file"] {
  display: none;
}
.input-group label {
  display: inline-block;
  position: relative;
  width: 68px;
  height: 28px;
  margin-bottom: 10px;
  line-height: 28px;
  border: solid 1px #50648c;
  border-radius: 3px;
  background: #6ed6d6;
  color: #50648c;
  font-size: 1.4rem;
  text-align: center;
  cursor: pointer;
}
.input-group label::after {
  content: "選択されていません";
  font-size: 14px;
  height: 20px;
  line-height: 20px;
  position: absolute;
  left: calc(100% + 10px);
  right: -140px;
  top: calc(50% - 10px);
  text-align: left;
}
.input-group label.changed::after {
  content: "";
}
.filename {
  font-size: 12px;
  margin-left: 10px;
}
/*--------------------------------------------
縦のテーブル
--------------------------------------------*/
/*縦のtableの見出し*/
.col-table-head ul {
  letter-spacing: -.4em;
}
.col-table-head li {
  display: inline-block;
  height: 40px;
  padding: 10px 0;
  margin-bottom: 5px;
  letter-spacing: normal;
  vertical-align: middle;
  background: #f0f4f6;
  color: #546e7a;
  font-size: 1.3rem;
  text-align: center;
}
.col-table-head .th-line {
  display: inline-block;
  width: 100%;
  height: 20px;
  border-left: solid 1px #546e7a;
  vertical-align: middle;
}
.col-table-head li:last-child .th-line {
  border-right: solid 1px #546e7a;
}
.col-table-head .th-line > span {
  display: inline-block;
  font-size: 1.3rem;
  margin-top: -14px;
}
/*縦テーブル*/
.col-table {
  overflow: hidden;
  table-layout: fixed;
  border-collapse: separate;
  height: 100%;
  padding-bottom: 30px;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: #fff;
}
.col-table tr:first-child {
  border-radius: 12px 12px 0 0;
}
.col-table tr:first-child td:first-child {
  border-radius: 12px 0 0 0;
}
.col-table tr:first-child td:last-child {
  border-radius: 0 12px 0 0;
}
.col-table tr {
  background: #fff;
}
.col-table tr:nth-child(even) {
  background: #f0f4f6;
}
.col-table td {
  padding: 10px 15px;
  border-bottom: 1px solid #c8c8c8;
  vertical-align: middle;
  word-break: break-all;
}
/*--------------------------------------------
横のテーブル
--------------------------------------------*/
.row-table {
  overflow: hidden;
  table-layout: fixed;
  border-collapse: separate;
  height: 100%;
  margin-top: 20px;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: #fff;
}
.row-table tr:first-child {
  border-radius: 12px 12px 0 0;
}
.row-table tr:first-child th:first-child {
  border-radius: 12px 0 0 0;
}
.row-table tr:first-child td:last-child {
  border-radius: 0 12px 0 0;
}
.row-table tr:last-child {
  border-radius: 0 0 12px 12px;
}
.row-table tr:last-child th:first-child {
  border-radius: 0 0 0 12px;
}
.row-table tr:last-child td:last-child {
  border-radius: 0 0 12px 0;
}
.row-table tr:first-child:last-child th:first-child {
  border-radius: 12px 0 0 12px;
}
.row-table th {
  /* width: 230px;*/
  padding: 15px 15px;
  background: #dde2e4;
  text-align: left;
  font-size: 1.6rem;
}
.row-table tr:not(:last-child) th {
  border-bottom: solid 1px #fff;
}
.row-table td {
  padding: 15px 20px;
  font-size: 1.5rem;
}
.row-table tr:not(:last-child) td {
  border-bottom: solid 1px #546e7a;
}
.row-table tr td.mailTo {
  padding: 15px 20px 0;
  border-bottom: none;
}
.row-table tr td.mailTo::before{
    display:block;
    content: '[TO]';
}
.row-table tr td.mailCc {
  padding: 5px 20px 15px;
}
.row-table tr td.mailCc::before{
    display:block;
    content: '[CC]';
}

/*--------------------------------------------
ページネーション
--------------------------------------------*/
.pagination {
  float: right;
  padding: 3px;
  background: #fff;
  border-radius: 10px;
  font-size: 1.1rem;
}
.pagination li {
  display: inline-block;
  width: 18px;
  margin: 0 1px;
  line-height: 1;
}
.pagination a {
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 18px;
  border-radius: 6px;
  color: #546e7a;
  font-size: 1.1rem;
  /* text-decoration: none; */
  text-align: center;
  vertical-align: middle;
}
.pagination a:hover {
  text-decoration: underline;
}
.pagination .prev a {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 10px 0 0 10px;
  background: #f0f4f6;
}
.pagination .prev a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 9px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #546e7a;
  border-left: 1px solid #546e7a;
  transform: rotate(-45deg) translateY(-50%);
}
.pagination .next a {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 0 10px 10px 0;
  background: #f0f4f6;
}
.pagination .next a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 9px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #546e7a;
  border-right: 1px solid #546e7a;
  transform: rotate(45deg) translateY(-50%);
}
.pagination-current a {
  background: #ffc107;
  pointer-events: none;
}
/*--------------------------------------------
pagetopボタン
--------------------------------------------*/
.pagetop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  margin-top: 5px;
  padding-top: 17px;
  border-radius: 3px;
  background: url("../img/ico_top_btn.png") no-repeat center center #efc130;
  opacity: 0.8;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  cursor: pointer;
}

/*--------------------------------------------
  Add
--------------------------------------------*/
/* 一覧 */
.search-btn-area .btn {
  padding: 9px 10px;
}
.col-table-head ul {
  width: 100%;
}
.col-table .btn-td {
  line-height: 2em;
}
.pagination a,
.pagination span{
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 18px;
  border-radius: 6px;
  color: #546e7a;
  font-size: 1.1rem;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
}
.pagination .page-item.active span {
  background: #ffc107;
  pointer-events: none;
}
@font-face{
  font-family: 'fontello';
  src: url('./font/fontello.eot?86297438');
  src: url('./font/fontello.eot?86297438#iefix') format('embedded-opentype'),
       url('./font/fontello.woff2?86297438') format('woff2'),
       url('./font/fontello.woff?86297438') format('woff'),
       url('./font/fontello.ttf?86297438') format('truetype'),
       url('./font/fontello.svg?86297438#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}
.row-table .ui-datepicker-trigger{
	font-family: "fontello";
	font-style: normal;
	font-weight: normal;
	display: inline-block;
	text-decoration: inherit;
	cursor: pointer;
  /* color: #3456ff; */
  vertical-align: middle;
  font-size: 30px;
  margin-left: 10px;
  background-color: rgba(0,0,0,0);
  border: none;
}

/* プロジェクト管理 担当者 追加/更新 */
.checkbox-parts.in-list {
  margin-right: 0;
  padding-left: 15px;
}