@charset "UTF-8";
/**
 * PC時の実際の最大コンテンツ幅
 */
/**
 * ブレイクポイント
 */
/**
 * メディアクエリmixinのデフォルトブレイクポイント
 */
/**
 * フォント
 */
/**
 * アニメーション
 */
/**
 * カラー
 */
/**
 * display: flex
 */
/**
 * flex-direction
 */
/**
 * flex-wrap
 */
/**
 * justify-content
 */
/**
 * align-items
 */
/**
 * align-content
 */
/**
 * order
 */
/**
 * flex-basis
 */
/**
 * flex-grow
 */
/**
 * align-self
 */
/**
 * コンテンツ中央配置
 */
/**
 * 天地左右中央配置
 */
/**
 * 長文テキストを枠内に収める
 */
/**
 * メディアクエリ
 */
/**
 * PC表示時のみ適応するhover設定
 */
/**
 * background-imageを一枚画像のように配置する
 */
/**
 * background-atachment: fixed;を擬似要素で代替する
 * iOSのsafariやIEではbackground-atachment: fixed;が使用できないため
 * 元サイズのままタイル状にリピートしたい場合は、$sizeにnullを指定して$repeatにrepeatを渡す
 */
/**
 * backgroundの線形グラデーション
 * $angle : ex.180
 * $color : グラデーションの開始色(非対応ブラウザでは単色で表示される)
 * $color_to : グラデーションの終止色を指定する場合に使用
 * $amount : 色相を変化させる割合
 */
/**
 * backgroundの円形グラデーション
 * $inner_color : グラデーションの中心の色
 * $outer_color : 外側の色
 * $amount : 色相を変化させる割合
 */
/**
 * テキスト要素のグラデーション
 * $angle : ex.180
 * $color : グラデーションの開始色(非対応ブラウザでは単色で表示される)
 * $color_to : グラデーションの終止色を指定する場合に使用
 * $amount : 色相を変化させる割合
 */
/**
 * clearFix
 */
/**
 * フォームパーツのリセット
 */
/**
 * リンク要素のカラーを状態ごとに一括指定する
 */
/**
 * ベンダープレフィックスの一括付与
 */
/**
 * プレースホルダーに色やスタイルを指定
 */
/**
 * Material Iconを表示・または擬似要素に設定
 */
/**
 * font-awesome アイコンを表示
 */
/**
 * 疑似要素beforeに font-awesome アイコンを表示
 */
/**
 * 疑似要素afterに font-awesome アイコンを表示
 */
/**
 * ボックスシャドウ
 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style-type: none;
}

a {
  text-decoration: none;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

body {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: "Noto Sans JP", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  position: relative;
}

span.required::after {
  content: "*";
  color: #e83032;
  margin-left: 3px;
}

.error_text,
.txt_error {
  display: block;
  color: #e83032;
  font-size: 0.8rem;
  margin-top: 3px;
}

.hidden,
.default_row,
.dlg_source {
  display: none;
}

.center {
  text-align: center;
}

.width100per {
  width: 100%;
}

.ui-widget button {
  font-size: 0.8rem;
}
.ui-widget select {
  font-size: 0.9rem;
}

.txt_red {
  color: #e83032;
}

.bg_red {
  background-color: #e83032;
}

.bg_light_red {
  background-color: #ffd6d6;
}

.bg_yellow {
  background-color: #ffff00;
}

input[type=text] ::placeholder,
input[type=password] ::placeholder,
input[type=email] ::placeholder,
input[type=url] ::placeholder,
input[type=search] ::placeholder,
input[type=tel] ::placeholder,
input[type=number] ::placeholder {
  color: #ccc;
}

input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=number]:focus,
textarea:focus {
  color: #131416;
}

textarea {
  resize: none;
}
textarea ::placeholder {
  color: #ccc;
}

input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=tel],
textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 3px;
  background-color: #fff;
  padding: 5px 10px;
}

input[type=time],
input[type=month],
input[type=date] {
  border: 1px solid #ddd;
  border-radius: 3px;
  background-color: #fff;
  padding: 5px 10px;
}

select {
  width: 180px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background-color: #fff;
  padding: 5px 35px 5px 10px;
  overflow: hidden;
  background-image: linear-gradient(45deg, transparent 50%, #2e80ca 50%), linear-gradient(135deg, #2e80ca 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 16px) calc(1em - 2px), calc(100% - 11px) calc(1em - 2px), 101% 0;
  background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
  background-repeat: no-repeat;
}
select:placeholder-shown {
  color: #ccc;
}
select::-webkit-input-placeholder {
  color: #ccc;
}
select:-moz-placeholder {
  opacity: 1;
  color: #ccc;
}
select::-moz-placeholder {
  opacity: 1;
  color: #ccc;
}
select:-ms-input-placeholder {
  color: #ccc;
}

.radio_wrapper {
  display: inline-block;
  margin-right: 15px;
  font-size: 0.9rem;
}
.radio_wrapper:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .radio_wrapper {
    display: block;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .radio_wrapper:last-of-type {
    margin-bottom: 0;
  }
}
.radio_wrapper input[type=radio] {
  display: none;
}
.radio_wrapper input[type=radio] + label {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.radio_wrapper input[type=radio] + label::before {
  font-family: "Material Icons";
  content: "\e836";
  color: #131416;
  margin-right: 3px;
}
.radio_wrapper input[type=radio]:checked + label::before {
  font-family: "Material Icons";
  content: "\e837";
  color: #2e80ca;
}

.checkbox_wrapper {
  display: inline-block;
  margin-right: 15px;
}
.checkbox_wrapper:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .checkbox_wrapper {
    display: block;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .checkbox_wrapper:last-of-type {
    margin-bottom: 0;
  }
}
.checkbox_wrapper input[type=checkbox] {
  display: none;
}
.checkbox_wrapper input[type=checkbox] + label {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.checkbox_wrapper input[type=checkbox] + label::before {
  font-family: "Material Icons";
  content: "\e835";
  color: #131416;
  margin-right: 5px;
}
.checkbox_wrapper input[type=checkbox]:checked + label::before {
  font-family: "Material Icons";
  content: "\e834";
  color: #2e80ca;
}

button,
a.btn,
input[type=submit],
input[type=button],
input[type=reset] {
  font-family: "Noto Sans JP", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  border: 1px solid #2e80ca;
  border-radius: 2px;
  background-color: #2e80ca;
  color: #fff;
  padding: 5px 15px;
  display: inline-block;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -ms-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}
@media screen and (min-width: 769px) {
  button:hover,
  a.btn:hover,
  input[type=submit]:hover,
  input[type=button]:hover,
  input[type=reset]:hover {
    opacity: 0.8;
    background-color: #fff;
    color: #2e80ca;
  }
}
button.round,
a.btn.round,
input[type=submit].round,
input[type=button].round,
input[type=reset].round {
  border-radius: 100px;
}
button.white,
a.btn.white,
input[type=submit].white,
input[type=button].white,
input[type=reset].white {
  background-color: #fff;
  color: #2e80ca;
}
@media screen and (min-width: 769px) {
  button.white:hover,
  a.btn.white:hover,
  input[type=submit].white:hover,
  input[type=button].white:hover,
  input[type=reset].white:hover {
    opacity: 0.8;
    background-color: #2e80ca;
    color: #fff;
  }
}
button.important,
a.btn.important,
input[type=submit].important,
input[type=button].important,
input[type=reset].important {
  border-color: #e83032;
  background-color: #e83032;
  color: #fff;
}
@media screen and (min-width: 769px) {
  button.important:hover,
  a.btn.important:hover,
  input[type=submit].important:hover,
  input[type=button].important:hover,
  input[type=reset].important:hover {
    opacity: 0.8;
    background-color: #fff;
    color: #e83032;
  }
}
button[disabled],
a.btn[disabled],
input[type=submit][disabled],
input[type=button][disabled],
input[type=reset][disabled] {
  border-color: #ccc;
  background-color: #ccc;
  color: #fff;
}
@media screen and (min-width: 769px) {
  button[disabled]:hover,
  a.btn[disabled]:hover,
  input[type=submit][disabled]:hover,
  input[type=button][disabled]:hover,
  input[type=reset][disabled]:hover {
    opacity: 1;
  }
}
button.cancel,
a.btn.cancel,
input[type=submit].cancel,
input[type=button].cancel,
input[type=reset].cancel {
  border-color: #333436;
  background-color: #333436;
  color: #fff;
}
@media screen and (min-width: 769px) {
  button.cancel:hover,
  a.btn.cancel:hover,
  input[type=submit].cancel:hover,
  input[type=button].cancel:hover,
  input[type=reset].cancel:hover {
    opacity: 0.8;
  }
}

table {
  border-collapse: collapse;
  width: 100%;
}
table th,
table td {
  padding: 7px 15px;
  font-weight: normal;
  font-size: 14px;
}
table th {
  background-color: #eee;
  border: 1px solid #ccc;
  border-right: 1px solid #fff;
  color: #999;
}
table th:last-child {
  border-right: 1px solid #ccc;
}
table td {
  background-color: #fff;
  border: 1px solid #ccc;
}
table.table_in_table th,
table.table_in_table td {
  font-size: 12px;
  padding: 3px 10px;
  border: 1px solid #dfdfdf;
}
table.table_in_table th {
  background-color: #eff1f4;
}
table td.sortable {
  cursor: move;
}

.icon.icon_burger::before {
  font-family: "Material Icons";
  content: "\e5d2";
  cursor: pointer;
}
.icon.icon_mail::before {
  font-family: "Material Icons";
  content: "\e0be";
  font-size: 2rem;
  cursor: pointer;
}

header {
  width: 100%;
  height: 50px;
  min-width: 1200px;
  position: fixed;
  top: 0;
  z-index: 1000;
  background-color: #333436;
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header .header_container {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
header .header_container .logo_box {
  margin-left: 15px;
}
header .header_container .logo_box .logo {
  color: #fff;
}
header .header_container .personal_menu_box .personal_menu {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header .header_container .personal_menu_box .personal_menu li {
  border-left: 1px solid #676767;
  background-color: #545454;
}
header .header_container .personal_menu_box .personal_menu li a {
  display: block;
  width: 50px;
  padding: 10px;
}
header .header_container .personal_menu_box .personal_menu li a img {
  display: block;
  width: 100%;
}

footer {
  width: 100%;
  min-width: 1200px;
  margin-top: auto;
  padding: 20px 0 10px;
}

#pageWrapper {
  min-height: 100vh;
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#contentsWrapper {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

main {
  display: block;
  width: calc(100% - 240px);
  box-sizing: border-box;
  position: absolute;
  top: 50px;
  left: 240px;
  padding-top: 40px;
}
main .main_contents_area {
  padding: 20px 30px 30px;
}

aside {
  background-color: #f6f6f6;
  border-right: 1px solid #ccc;
  width: 240px;
  height: calc(100vh - 50px);
  position: fixed;
  top: 50px;
  left: 0;
  z-index: 50;
  overflow-y: auto;
}
aside .sidebar_label {
  padding: 8px;
  display: block;
}
aside .sidebar_label::before {
  font-family: "Font Awesome 5 Free";
  content: "\f3fd";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
  margin-right: 8px;
  position: relative;
  top: -1px;
}
aside .menu_box {
  border-top: 1px solid #ccc;
  font-size: 0.9rem;
}
aside .menu_box ul li {
  border-bottom: 1px solid #dcdcdc;
}
aside .menu_box ul li.toggle_accordion, aside .menu_box ul li.link {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px;
  cursor: pointer;
  color: #333436;
  font-weight: normal;
}
aside .menu_box ul li.toggle_accordion.current, aside .menu_box ul li.link.current {
  color: #2e80ca;
  font-weight: bold;
}
aside .menu_box ul li.toggle_accordion.current::before, aside .menu_box ul li.link.current::before {
  color: #2e80ca;
}
aside .menu_box ul li.toggle_accordion .label, aside .menu_box ul li.link .label {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
aside .menu_box ul li.toggle_accordion .label::before, aside .menu_box ul li.link .label::before {
  margin-right: 10px;
}
aside .menu_box ul li.toggle_accordion .label.account::before, aside .menu_box ul li.link .label.account::before {
  font-family: "Font Awesome 5 Free";
  content: "\f2bd";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
aside .menu_box ul li.toggle_accordion .label.company::before, aside .menu_box ul li.link .label.company::before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ad";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
aside .menu_box ul li.toggle_accordion .label.subject::before, aside .menu_box ul li.link .label.subject::before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ea";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
aside .menu_box ul li.toggle_accordion .label.test::before, aside .menu_box ul li.link .label.test::before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ea";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
aside .menu_box ul li.toggle_accordion .label.history::before, aside .menu_box ul li.link .label.history::before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ea";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
aside .menu_box ul li.toggle_accordion .label.notification::before, aside .menu_box ul li.link .label.notification::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0f3";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
aside .menu_box ul li.toggle_accordion .label.system::before, aside .menu_box ul li.link .label.system::before {
  font-family: "Font Awesome 5 Free";
  content: "\f108";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
aside .menu_box ul li.toggle_accordion .icon_folder::before, aside .menu_box ul li.link .icon_folder::before {
  font-family: "Font Awesome 5 Free";
  content: "\f07b";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
aside .menu_box ul li.toggle_accordion .icon_link::before, aside .menu_box ul li.link .icon_link::before {
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
aside .menu_box ul li.toggle_accordion.open, aside .menu_box ul li.link.open {
  color: #2e80ca;
  font-weight: bold;
}
aside .menu_box ul li.toggle_accordion.open .label::before, aside .menu_box ul li.link.open .label::before {
  color: #2e80ca;
}
aside .menu_box ul li.toggle_accordion.open .icon_folder::before, aside .menu_box ul li.link.open .icon_folder::before {
  font-family: "Font Awesome 5 Free";
  content: "\f07c";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
  color: #2e80ca;
}
aside .menu_box ul li a {
  color: #333436;
  display: block;
  padding: 10px 5px;
}
aside .menu_box ul li.link a {
  padding: 0;
}
aside .menu_box ul li.toggle_child {
  display: none;
}
aside .menu_box ul.child {
  background-color: #fff;
}
aside .menu_box ul.child > li {
  text-indent: 2rem;
}
aside .menu_box ul.child > li:last-of-type {
  border: none;
}
aside .menu_box ul.child > li.current {
  background-color: #e9f0f8;
}
aside .menu_box ul.child > li a {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
aside .menu_box ul.child > li a::before {
  margin-right: 10px;
  width: 42px;
}
aside .menu_box ul.child > li a.check::before {
  font-family: "Font Awesome 5 Free";
  content: "\f46c";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
aside .menu_box ul.child > li a.list::before {
  font-family: "Font Awesome 5 Free";
  content: "\f03a";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
aside .menu_box ul.child > li a.create::before {
  font-family: "Font Awesome 5 Free";
  content: "\f15b";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
aside .menu_box ul.child > li a.bulk::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ce";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
aside .menu_box ul.child > li a.setting::before {
  font-family: "Font Awesome 5 Free";
  content: "\f013";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
aside .menu_box ul.child > li a.excel::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ce";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
aside .menu_box ul.child > li a .menu_name {
  text-indent: 1rem;
}

/**
 * モーダル全体の共通スタイル
 */
.modal_wrapper {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.modal_wrapper .overlay {
  position: absolute;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
}
.modal_wrapper .modal {
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 30px;
  border-radius: 20px;
}
.modal_wrapper .modal .title {
  text-align: center;
  color: #2e80ca;
  font-weight: bold;
  margin-bottom: 10px;
}
.modal_wrapper .modal .title.red {
  color: #e83032;
}
.modal_wrapper .modal .explain {
  text-align: center;
  font-size: 0.9rem;
}
.modal_wrapper .modal .notice {
  text-align: center;
  font-size: 0.9rem;
}
.modal_wrapper .modal .modal_main {
  margin-top: 40px;
}
.modal_wrapper .modal .table_box {
  width: 100%;
}
.modal_wrapper .modal .table_box table {
  width: 100%;
}
.modal_wrapper .modal .btn_box {
  margin-top: 30px;
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
}
.modal_wrapper .modal .btn_box button {
  margin: 0 10px;
}
.modal_wrapper .modal.preview {
  width: 700px;
  max-height: 90vh;
  overflow-y: auto;
}
.modal_wrapper .modal.preview .table_box {
  word-break: break-word;
}
.modal_wrapper .modal.preview .table_box .photo_list {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  margin-bottom: 20px;
}
.modal_wrapper .modal.preview .table_box .photo_list .photo_item {
  width: 130px;
  height: 130px;
}
.modal_wrapper .modal.preview .table_box .photo_list .photo_item .image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 130px;
  height: 130px;
}
.modal_wrapper .modal.preview .table_box table {
  max-width: 600px;
}
.modal_wrapper .modal.preview .table_box table tr th {
  width: 120px;
  font-size: 0.8rem;
}
.modal_wrapper .modal.preview .table_box table tr td pre {
  white-space: pre-line;
}
.modal_wrapper .modal.preview .table_box table tr td .tag {
  display: inline-block;
  font-size: 0.7rem;
  margin-right: 5px;
  margin-bottom: 5px;
  background-color: #2e80ca;
  color: #fff;
  padding: 2px 5px;
  border-radius: 3px;
}

.not_logged {
  background-color: #efefef;
}
.not_logged main {
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.not_logged main .main_contents_area .form_box {
  background-color: #fff;
  padding: 30px;
  width: 500px;
  border-radius: 3px;
  margin: 80px auto 10px auto;
}
.not_logged main .main_contents_area .form_box h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.not_logged main .main_contents_area .form_box .txt_description {
  margin-bottom: 2rem;
}
.not_logged main .main_contents_area .form_box dl dt {
  font-weight: bold;
  line-height: 2rem;
}
.not_logged main .main_contents_area .form_box dl dd {
  margin-bottom: 15px;
}
.not_logged main .main_contents_area .form_box .checkbox_wrapper {
  margin-bottom: 15px;
}
.not_logged main .main_contents_area .form_box .submit_btn_box {
  text-align: center;
}
.not_logged main .main_contents_area .form_box .txt_error {
  color: #e83032;
  margin-top: 5px;
  font-size: 0.8rem;
}
.not_logged main .main_contents_area .form_box .is-invalid {
  border-color: #e83032;
  background: #ffd6d6;
}
.not_logged main .sub_contents_area {
  width: 500px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp {
    display: inherit !important;
  }
}

.page_headline_box {
  position: fixed;
  top: 50px;
  width: 100%;
  padding: 8px;
  background-color: #e9f0f8;
  border-left: 1px solid #eaeaea;
  z-index: 100;
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page_headline_box .headline {
  font-weight: 500;
  color: #333436;
  font-size: 1rem;
}
.page_headline_box .form_btn_box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 280px;
}
.page_headline_box .form_btn_box input,
.page_headline_box .form_btn_box button {
  padding: 2px 10px;
  font-size: 0.7rem;
  width: 100px;
}
.page_headline_box .form_btn_box input:last-of-type,
.page_headline_box .form_btn_box button:last-of-type {
  margin-left: 20px;
}
.page_headline_box .link_box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 280px;
}
.page_headline_box .link_box a {
  padding: 2px 10px;
  font-size: 0.7rem;
  width: 100px;
  border-radius: 3px;
  border: 1px solid #2e80ca;
  background-color: #2e80ca;
  color: #fff;
}
.page_headline_box .link_box a.edit {
  border: 1px solid #2e80ca;
  background-color: #fff;
  color: #2e80ca;
}
.page_headline_box .link_box a.delete {
  border: 1px solid #131416;
  background-color: #131416;
  color: #fff;
}
.page_headline_box .link_box a:last-of-type {
  margin-left: 20px;
}
.page_headline_box .link_box span.disabled {
  padding: 2px 10px;
  font-size: 0.7rem;
  width: 100px;
  border-radius: 3px;
  border: 1px solid #ccc;
  background-color: #ccc;
  color: #fff;
}

.section_headline_box .headline {
  font-weight: 500;
  color: #333436;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.section_headline_box .headline .count_text {
  font-size: 0.8rem;
  margin-left: 10px;
}
.section_headline_box .headline .row_color_description {
  font-size: 0.8rem;
  margin-left: 10px;
  font-weight: bold;
}
.section_headline_box .headline .row_color_description .notice {
  color: rgb(255, 206.28, 52);
  margin-right: 10px;
}
.section_headline_box .headline .row_color_description .warning {
  color: rgb(225.2127659574, 84.7872340426, 97.5531914894);
  margin-right: 10px;
}
.section_headline_box .headline .row_color_description .gray_out {
  color: rgb(144.4210526316, 159.5, 174.5789473684);
  margin-right: 10px;
}
.section_headline_box .headline .update_summary_area {
  font-size: 0.8rem;
  margin-left: 10px;
}
.section_headline_box .headline.search::before {
  font-family: "Font Awesome 5 Free";
  content: "\f002";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
  margin-right: 8px;
  position: relative;
  top: -2px;
}
.section_headline_box .headline.list::before {
  font-family: "Font Awesome 5 Free";
  content: "\f03a";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
  margin-right: 8px;
  position: relative;
  top: -2px;
}
.section_headline_box .headline.bulk::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ce";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
  margin-right: 8px;
  position: relative;
  top: -2px;
}
.section_headline_box .headline.result::before {
  font-family: "Font Awesome 5 Free";
  content: "\f681";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
  margin-right: 8px;
  position: relative;
  top: -2px;
}

.search_form_box {
  margin-bottom: 60px;
}
.search_form_box form table {
  max-width: 1200px;
  margin-bottom: 20px;
}
.search_form_box form table tr th {
  width: 180px;
  font-size: 0.9rem;
}
.search_form_box form table tr td input[type=text] {
  width: 100%;
}
.search_form_box form .form_btn_box input {
  width: 120px;
}
.search_form_box form .form_btn_box input:first-of-type {
  margin-right: 15px;
}

.pagination_box.top {
  margin-bottom: 10px;
}
.pagination_box.bottom {
  margin-top: 10px;
}
.pagination_box ul {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pagination_box ul li a,
.pagination_box ul li span {
  padding: 5px 10px;
  background-color: #f6f6f6;
  border: 1px solid #ccc;
  border-right: none;
  font-size: 0.8rem;
}
.pagination_box ul li a {
  color: #2e80ca;
  text-decoration: underline;
}
.pagination_box ul li:last-of-type a,
.pagination_box ul li:last-of-type span {
  border-right: 1px solid #ccc;
}

.record_list_box {
  margin-bottom: 40px;
}
.record_list_box .pagination_box ul {
  justify-content: end;
  -ms-justify-content: end;
  -webkit-justify-content: flex-end;
}
.record_list_box .table_box table {
  width: 100%;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.record_list_box .table_box table thead {
  /* 縦スクロール時に固定する */
  position: -webkit-sticky;
  position: sticky;
  top: 89px;
  /* tbody内のセルより手前に表示する */
  z-index: 1;
}
.record_list_box .table_box table tr.success td {
  background-color: #d1e7dd;
}
.record_list_box .table_box table tr.notice td {
  background-color: #fff3cd;
}
.record_list_box .table_box table tr.warning td {
  background-color: #f8d7da;
}
.record_list_box .table_box table tr.gray_out td {
  background-color: #e9ecef;
}
.record_list_box .table_box table tr.black_out td {
  background-color: black;
  color: white;
}
.record_list_box .table_box table tr th,
.record_list_box .table_box table tr td {
  text-align: center;
}
.record_list_box .table_box table tr th {
  border-right: 1px solid #ccc;
  padding: 3px 15px;
  font-size: 0.9rem;
}
.record_list_box .table_box table tr th.id {
  width: 90px;
}
.record_list_box .table_box table tr th.user_id {
  width: 180px;
}
.record_list_box .table_box table tr th.name {
  width: 180px;
}
.record_list_box .table_box table tr th.title {
  max-width: 500px;
}
.record_list_box .table_box table tr th.address {
  width: 300px;
}
.record_list_box .table_box table tr th.phone {
  width: 130px;
}
.record_list_box .table_box table tr th.control {
  width: 160px;
}
.record_list_box .table_box table tr td {
  padding: 3px 15px;
  font-size: 0.9rem;
}
.record_list_box .table_box table tr td a:not(.control_action) {
  color: #2e80ca;
  text-decoration: underline;
}
.record_list_box .table_box table tr td a:not(.control_action):visited {
  color: #ca782e;
}
.record_list_box .table_box table tr td.subject_title {
  max-width: 500px;
  white-space: pre-wrap;
}
.record_list_box .table_box table tr td .control_action {
  padding: 10px;
}
.record_list_box .table_box table tr td .control_action.show::before {
  font-family: "Font Awesome 5 Free";
  content: "\f06e";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
.record_list_box .table_box table tr td .control_action.edit::before {
  font-family: "Font Awesome 5 Free";
  content: "\f044";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
.record_list_box .table_box table tr td .control_action.delete::before {
  font-family: "Font Awesome 5 Free";
  content: "\f2ed";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
.record_list_box .table_box table tr td .control_action.approve::before {
  font-family: "Font Awesome 5 Free";
  content: "\f560";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
.record_list_box .table_box table tr td .control_action.list::before {
  font-family: "Font Awesome 5 Free";
  content: "\f022";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
.record_list_box .table_box table tr td .control_action.download::before {
  font-family: "Font Awesome 5 Free";
  content: "\f019";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
.record_list_box .table_box table tr td .control_action.disabled::before {
  color: #ddd !important;
}

table.data_list {
  width: 100%;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
table.data_list thead {
  /* 縦スクロール時に固定する */
  position: -webkit-sticky;
  position: sticky;
}
table.data_list tr.success td {
  background-color: #d1e7dd;
}
table.data_list tr.notice td {
  background-color: #fff3cd;
}
table.data_list tr.warning td {
  background-color: #f8d7da;
}
table.data_list tr.gray_out td {
  background-color: #e9ecef;
}
table.data_list tr.black_out td {
  background-color: black;
  color: white;
}
table.data_list tr th,
table.data_list tr td {
  text-align: center;
}
table.data_list tr th {
  border-right: 1px solid #ccc;
  padding: 3px 15px;
  font-size: 0.9rem;
}
table.data_list tr th.id {
  width: 90px;
}
table.data_list tr th.user_id {
  width: 180px;
}
table.data_list tr th.name {
  width: 180px;
}
table.data_list tr th.title {
  max-width: 500px;
}
table.data_list tr th.address {
  width: 300px;
}
table.data_list tr th.phone {
  width: 130px;
}
table.data_list tr th.control {
  width: 160px;
}
table.data_list tr td {
  padding: 3px 15px;
  font-size: 0.9rem;
}
table.data_list tr td a:not(.control_action) {
  color: #2e80ca;
  text-decoration: underline;
}
table.data_list tr td a:not(.control_action):visited {
  color: #ca782e;
}
table.data_list tr td.subject_title {
  max-width: 500px;
  white-space: pre-wrap;
}
table.data_list tr td .control_action {
  padding: 10px;
}
table.data_list tr td .control_action.show::before {
  font-family: "Font Awesome 5 Free";
  content: "\f06e";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
table.data_list tr td .control_action.edit::before {
  font-family: "Font Awesome 5 Free";
  content: "\f044";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
table.data_list tr td .control_action.delete::before {
  font-family: "Font Awesome 5 Free";
  content: "\f2ed";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
table.data_list tr td .control_action.approve::before {
  font-family: "Font Awesome 5 Free";
  content: "\f560";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
table.data_list tr td .control_action.list::before {
  font-family: "Font Awesome 5 Free";
  content: "\f022";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
table.data_list tr td .control_action.download::before {
  font-family: "Font Awesome 5 Free";
  content: "\f019";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
table.data_list tr td .control_action.disabled::before {
  color: #ddd !important;
}

.register_form_box form .table_box table {
  width: 1000px;
}
.register_form_box form .table_box table tr th,
.register_form_box form .table_box table tr td {
  border: none;
  background-color: inherit;
  text-align: left;
  padding-top: 12px;
  padding-bottom: 12px;
}
.register_form_box form .table_box table tr th {
  max-width: 150px;
  font-size: 0.9rem;
  vertical-align: top;
}
.register_form_box form .table_box table tr td input[type=text],
.register_form_box form .table_box table tr td input[type=tel],
.register_form_box form .table_box table tr td input[type=email],
.register_form_box form .table_box table tr td input[type=password],
.register_form_box form .table_box table tr td input[type=number] {
  width: 250px;
  max-width: 650px;
}
.register_form_box form .table_box table tr td input[type=text].xs,
.register_form_box form .table_box table tr td input[type=tel].xs,
.register_form_box form .table_box table tr td input[type=email].xs,
.register_form_box form .table_box table tr td input[type=password].xs,
.register_form_box form .table_box table tr td input[type=number].xs {
  width: 80px;
}
.register_form_box form .table_box table tr td input[type=text].s,
.register_form_box form .table_box table tr td input[type=tel].s,
.register_form_box form .table_box table tr td input[type=email].s,
.register_form_box form .table_box table tr td input[type=password].s,
.register_form_box form .table_box table tr td input[type=number].s {
  width: 150px;
}
.register_form_box form .table_box table tr td input[type=text].l,
.register_form_box form .table_box table tr td input[type=tel].l,
.register_form_box form .table_box table tr td input[type=email].l,
.register_form_box form .table_box table tr td input[type=password].l,
.register_form_box form .table_box table tr td input[type=number].l {
  width: 350px;
}
.register_form_box form .table_box table tr td input[type=text].xl,
.register_form_box form .table_box table tr td input[type=tel].xl,
.register_form_box form .table_box table tr td input[type=email].xl,
.register_form_box form .table_box table tr td input[type=password].xl,
.register_form_box form .table_box table tr td input[type=number].xl {
  width: 100%;
}
.register_form_box form .table_box table tr td textarea {
  max-width: 650px;
}
.register_form_box form .table_box table tr td .drag_and_drop_box {
  max-width: 650px;
}
.register_form_box form .table_box table tr td .important_point_text {
  font-size: 0.7rem;
  margin-top: 5px;
}
.register_form_box form .table_box table tr td .tag_list {
  max-width: 650px;
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  margin-top: 15px;
}
.register_form_box form .table_box table tr td .tag_list .tag_item {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #2e80ca;
  border-radius: 100px;
  color: #fff;
  padding: 2px 5px 2px 10px;
  margin-right: 8px;
  margin-bottom: 8px;
}
.register_form_box form .table_box table tr td .tag_list .tag_item span {
  font-size: 0.8rem;
}
.register_form_box form .table_box table tr td .tag_list .tag_item button {
  display: block;
  width: 25px;
  height: 25px;
  padding: 0;
  border-radius: 50%;
  background-color: #fff;
  color: #2e80ca;
  margin-left: 10px;
}
.register_form_box form .table_box table tr td .form_btn_box {
  margin-top: 30px;
}
.register_form_box form .table_box table tr td .form_btn_box input,
.register_form_box form .table_box table tr td .form_btn_box button {
  width: 120px;
}
.register_form_box form .table_box table tr td .form_btn_box input:first-of-type,
.register_form_box form .table_box table tr td .form_btn_box button:first-of-type {
  margin-right: 20px;
}

.photo_select_box .preview_list_box .preview_list {
  width: 100%;
  margin-bottom: 15px;
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
}
.photo_select_box .preview_list_box .preview_list li {
  position: relative;
  margin-right: 10px;
}
.photo_select_box .preview_list_box .preview_list li button.delete_box {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  z-index: 100;
  background-color: #000;
  border-color: #000;
  border-radius: 100px;
  padding: 0;
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
}
.photo_select_box .preview_list_box .preview_list li button.delete_box .icon_delete {
  width: 10px;
}
.photo_select_box .preview_list_box .preview_list li:first-of-type::before {
  content: "メイン";
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 100;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 3px;
  padding: 0 2px;
  font-size: 0.7rem;
}
.photo_select_box .preview_list_box .preview_list li .image_box {
  box-sizing: content-box;
  position: relative;
  z-index: 20;
}
.photo_select_box .preview_list_box .preview_list li .image_box.drag_over {
  border-left: 10px solid #e87575;
  padding-left: 5px;
}
.photo_select_box .preview_list_box .preview_list li .image_box .image {
  width: 90px;
  height: 90px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.photo_select_box .preview_list_box .preview_list .dummy_image_box {
  width: 80px;
  height: 90px;
  margin-left: 8px;
}
.photo_select_box .drag_and_drop_box {
  width: 100%;
  padding: 30px;
  text-align: center;
  border: 3px dashed #ccc;
  border-radius: 3px;
  color: #bbb;
}
.photo_select_box .drag_and_drop_box p {
  margin-bottom: 1rem;
}

.bulk_form_box {
  margin-bottom: 60px;
}
.bulk_form_box .explain_text {
  margin-bottom: 20px;
}
.bulk_form_box .download_btn_box {
  margin-bottom: 30px;
}
.bulk_form_box .download_btn_box a {
  display: inline-block;
  margin-right: 20px;
  padding: 5px 10px;
  border-radius: 3px;
  background-color: #131416;
  color: #fff;
  font-size: 0.7rem;
}
.bulk_form_box form table th {
  font-size: 0.8rem;
}
.bulk_form_box form .form_btn_box {
  margin-top: 30px;
}
.bulk_form_box form .form_btn_box input {
  width: 120px;
}
.bulk_form_box form .form_btn_box input:first-of-type {
  margin-right: 15px;
}

.bulk_result_box dl {
  background-color: #eee;
  padding: 20px;
}
.bulk_result_box dl dt {
  margin-bottom: 3px;
}
.bulk_result_box dl dt::before {
  position: relative;
  top: -2px;
  margin-right: 7px;
}
.bulk_result_box dl dt.success::before {
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
  color: #28a745;
}
.bulk_result_box dl dt.failed::before {
  font-family: "Font Awesome 5 Free";
  content: "\f057";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
  color: #dc3545;
}
.bulk_result_box dl dt.list::before {
  font-family: "Font Awesome 5 Free";
  content: "\f03a";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
  color: #17a2b8;
}
.bulk_result_box dl dt.remarks::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0eb";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
  color: #ffc107;
}
.bulk_result_box dl dd {
  margin-bottom: 30px;
}
.bulk_result_box dl dd:last-of-type {
  margin-bottom: 0;
}

.bulk_validation_box table {
  display: block;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.bulk_validation_box table tr th,
.bulk_validation_box table tr td {
  text-align: center;
}
.bulk_validation_box table tr th {
  border-right: 1px solid #ccc;
  padding: 3px 15px;
  font-size: 0.9rem;
}
.bulk_validation_box table tr td {
  padding: 3px 15px;
  font-size: 0.9rem;
  white-space: pre-wrap;
}
.bulk_validation_box table tr td a:not(.control_action) {
  color: #2e80ca;
  text-decoration: underline;
}
.bulk_validation_box table tr td a:not(.control_action):visited {
  color: #ca782e;
}

.selected_suggest_item {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.selected_suggest_item .delete_suggest_item {
  width: 25px;
  height: 25px;
  background-color: inherit;
  border: none;
  padding: 0;
  margin-left: 15px;
}
.selected_suggest_item .delete_suggest_item img {
  display: block;
  width: 100%;
}

.loading {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  margin: -200px 0 0 -200px;
  z-index: 9998;
}

.removal_list {
  margin-top: 10px;
}
.removal_list li {
  background-color: #e9f0f8;
  font-size: 0.8rem;
  color: black;
  border-radius: 3px;
  padding: 3px 8px;
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 5px;
}
.removal_list li .removal_list_item_box .icon_remove {
  position: relative;
  top: -2px;
  margin-left: 8px;
}
.removal_list li .removal_list_item_box .icon_remove::before {
  font-family: "Font Awesome 5 Free";
  content: "\f056";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
  color: #e83032;
  font-size: 1rem;
}

.detail_box table {
  max-width: 980px;
}

#pageAdmin.exception .main_contents_area .exception_code_box {
  margin-bottom: 20px;
}
#pageAdmin.exception .main_contents_area .exception_code_box .exception_code .code {
  font-size: 2rem;
}
#pageAdmin.top .alert_area .alert_list_box, #pageAdmin.top .alert_area .alert_invoice_list_box {
  background-color: #fad6d6;
  padding: 20px;
}
#pageAdmin.top .alert_area .alert_list_box .alert_list, #pageAdmin.top .alert_area .alert_invoice_list_box .alert_list {
  list-style-type: disc;
  padding-left: 1.5em;
}
#pageAdmin.top .alert_area .alert_list_box .alert_list .alert_list_item, #pageAdmin.top .alert_area .alert_invoice_list_box .alert_list .alert_list_item {
  color: #e83032;
}
#pageAdmin.top .alert_area .alert_list_box .alert_list .alert_list_item a,
#pageAdmin.top .alert_area .alert_list_box .alert_list .alert_list_item span, #pageAdmin.top .alert_area .alert_invoice_list_box .alert_list .alert_list_item a,
#pageAdmin.top .alert_area .alert_invoice_list_box .alert_list .alert_list_item span {
  color: #e83032;
  font-size: 14px;
}
#pageAdmin.top .alert_area .alert_list_box .alert_list .alert_list_item a, #pageAdmin.top .alert_area .alert_invoice_list_box .alert_list .alert_list_item a {
  text-decoration: underline;
}
#pageAdmin.top .alert_area .msg_list_box, #pageAdmin.top .alert_area .msg_invoice_list_box {
  background-color: #d8f5f6;
  padding: 20px;
  font-size: 14px;
  font-weight: normal;
}
#pageAdmin.top .summary_table_area {
  margin-bottom: 50px;
}
#pageAdmin.top .summary_table_area table tr th {
  width: 160px;
}
#pageAdmin.top .summary_table_area table tr td {
  width: 120px;
  text-align: right;
}
#pageAdmin.top .summary_table_area table tr td a {
  color: #2e80ca;
  text-decoration: underline;
}

#pageAdmin.login main {
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: #efefef;
}
#pageAdmin.login main .main_contents_area .form_box {
  background-color: #fff;
  padding: 30px;
  width: 350px;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#pageAdmin.login main .main_contents_area .form_box dl dd {
  margin-bottom: 15px;
}
#pageAdmin.login main .main_contents_area .form_box .checkbox_wrapper {
  margin-bottom: 15px;
}
#pageAdmin.login main .main_contents_area .form_box .submit_btn_box {
  text-align: center;
}
#pageAdmin.login main .main_contents_area .form_box .txt_error {
  color: #e83032;
  margin-top: 5px;
  font-size: 0.8rem;
}

#pageAdmin.password main {
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: #efefef;
}
#pageAdmin.password main .main_contents_area .form_box {
  background-color: #fff;
  padding: 30px;
  width: 500px;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#pageAdmin.password main .main_contents_area .form_box dl dd {
  margin-bottom: 15px;
}
#pageAdmin.password main .main_contents_area .form_box .checkbox_wrapper {
  margin-bottom: 15px;
}
#pageAdmin.password main .main_contents_area .form_box .submit_btn_box {
  text-align: center;
}
#pageAdmin.password main .main_contents_area .form_box .txt_error {
  color: #e83032;
  margin-top: 5px;
  font-size: 0.8rem;
}

#pageUser .search_form_box span.checkbox {
  font-size: 0.9rem;
}
#pageUser .search_form_box #selectGroupRoleMethod {
  width: 100px;
}
#pageUser #frmUpload .table_box table {
  width: 100%;
}
#pageUser #manageDepartment {
  width: auto;
  overflow-y: auto;
  background-image: none;
}

#pageCompany .pref_column {
  width: 100px;
}
#pageCompany .users_num_column,
#pageCompany .use_point_column {
  width: 80px;
}
#pageCompany .csv_buttons_area {
  margin-top: 10px;
}

#pageSubject .search_form_box input[type=month] {
  width: auto;
}
#pageSubject .question_wrapper {
  margin-bottom: 10px;
}
#pageSubject .question_wrapper table tr th {
  width: 170px;
}
#pageSubject #movieWrapper {
  display: flex;
  flex-direction: column;
}
#pageSubject #movieWrapper div {
  padding: 5px;
}
#pageSubject .is_view_only_notification_box {
  margin-bottom: 20px;
  font-size: 0.8rem;
  background-color: #ffdcdc;
  padding: 10px;
}
#pageSubject .is_view_only_notification_box .is_view_only_notification_text {
  color: #e83032;
}
#pageSubject .is_view_only_notification_box .is_view_only_notification_text::before {
  font-family: "Font Awesome 5 Free";
  content: "\f06a";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
  color: #e83032;
  margin-right: 10px;
}
#pageSubject .is_view_only_notification_box ul {
  color: #e83032;
  margin-top: 10px;
  list-style-type: disc;
  padding-left: 1.5em;
}
#pageSubject table td.default_radio div.radio_wrapper {
  margin-left: 30%;
}
#pageSubject table td select[name=summary],
#pageSubject table td select[name=manager_no],
#pageSubject table td select[name=place_no] {
  width: 250px;
}
#pageSubject table .question_table {
  width: 100%;
}
#pageSubject .file_wrapper {
  font-size: 0.9rem;
}
#pageSubject #timePerPage {
  width: 60px;
}
#pageSubject .exam_setting_table {
  font-size: 14px;
}
#pageSubject .exam_setting_table select {
  font-size: 12px;
}
#pageSubject .exam_setting_table select.company_name {
  width: 100%;
}
#pageSubject .exam_setting_table select.instructor_name {
  width: 160px;
}
#pageSubject .exam_setting_table select.place_name {
  width: 160px;
}
#pageSubject .csv_buttons_area {
  margin-bottom: 5px;
}

#pageExamHistory.page_list .table_box table {
  white-space: nowrap;
}
#pageExamHistory .order_wrapper {
  color: #999;
}
#pageExamHistory .question_wrapper {
  margin-bottom: 10px;
}
#pageExamHistory .question_wrapper table tr th {
  width: 170px;
}
#pageExamHistory span.checkbox {
  font-size: 0.9rem;
}

#pageExamReport .register_form_box .explain_box {
  background-color: #f6f6f6;
  padding: 20px;
  margin-bottom: 30px;
}
#pageExamReport .register_form_box .explain_box .explain_text {
  font-size: 0.9rem;
}
#pageExamReport .register_form_box .explain_box .process_list_box {
  margin-top: 20px;
  font-size: 0.8rem;
}
#pageExamReport .register_form_box .explain_box .process_list_box ul {
  list-style: decimal;
  padding-left: 20px;
}
#pageExamReport .register_form_box .table_box h3 {
  font-size: 16px;
  color: #2e80ca;
  margin-bottom: 20px;
}
#pageExamReport .register_form_box .table_box h3.education_detail_headline {
  margin-top: 50px;
}
#pageExamReport .register_form_box .table_box .second_table_box {
  display: none;
  margin-top: 35px;
}
#pageExamReport .register_form_box .table_box table tr th {
  max-width: inherit;
  width: 165px;
}
#pageExamReport .register_form_box .table_box table tr td select {
  width: 250px;
}
#pageExamReport .register_form_box .table_box table tr td select[name="actual_vehicle_guidance_type[]"] {
  width: 200px;
}
#pageExamReport .register_form_box .table_box table tr td textarea[name=detail] {
  resize: vertical;
}
#pageExamReport .register_form_box .table_box table tr td .passed_exam_list_box .no_result {
  font-size: 0.8rem;
  color: #e83032;
}
#pageExamReport .register_form_box .table_box table tr td .passed_exam_list_box ul {
  background-color: #e9f0f8;
  padding: 10px;
  font-size: 0.8rem;
}
#pageExamReport .register_form_box .table_box table tr td .reset_condition.reset_condition {
  background-color: #fff;
  color: #2e80ca;
}
#pageExamReport .register_form_box .table_box table tr td .subject_type_box {
  margin-bottom: 10px;
}
#pageExamReport .register_form_box .actual_vehicle_guidance_box .flex_box,
#pageExamReport .register_form_box .personal_lesson_box .flex_box {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#pageExamReport .register_form_box .actual_vehicle_guidance_box .date_time_input_box,
#pageExamReport .register_form_box .personal_lesson_box .date_time_input_box {
  margin-top: 8px;
}
#pageExamReport .register_form_box .actual_vehicle_guidance_box .date_time_input_box input[type=date],
#pageExamReport .register_form_box .personal_lesson_box .date_time_input_box input[type=date] {
  margin-right: 15px;
}
#pageExamReport .register_form_box .actual_vehicle_guidance_box {
  margin-bottom: 20px;
}
#pageExamReport .register_form_box .personal_lesson_box {
  margin-bottom: 20px;
}
#pageExamReport .register_form_box .personal_lesson_box .input_box .text_input_box {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#pageExamReport .register_form_box .personal_lesson_box .input_box .text_input_box .personal_lesson_detail {
  width: 360px;
}
#pageExamReport .register_form_box .additional_user_box {
  margin-bottom: 20px;
}
#pageExamReport .register_form_box .additional_user_box .flex_box {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#pageExamReport .register_form_box .additional_user_box .flex_box .input_box {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#pageExamReport .register_form_box .additional_user_box .flex_box .input_box .date_time_input_box {
  margin-left: 10px;
}
#pageExamReport .register_form_box .add_user_btn,
#pageExamReport .register_form_box .add_row_btn {
  font-size: 0.7rem;
  padding: 3px 5px;
}
#pageExamReport .register_form_box .icon_remove {
  position: relative;
  top: -2px;
  margin-left: 15px;
}
#pageExamReport .register_form_box .icon_remove::before {
  font-family: "Font Awesome 5 Free";
  content: "\f056";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
  color: #e83032;
  font-size: 1rem;
}
#pageExamReport .register_form_box .form_parts_label {
  font-size: 0.8rem;
  color: #aaa;
  margin-right: 10px;
}
#pageExamReport .register_form_box .th_notice {
  font-size: 0.7rem;
  margin-left: 5px;
}
#pageExamReport .register_form_box .company_selector_box {
  margin-bottom: 10px;
}
#pageExamReport .register_form_box .period_area {
  display: inline-block;
}
#pageExamReport .register_form_box .period_area .period_box {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#pageExamReport .register_form_box .period_area .period_box .separator {
  margin: 0 10px;
}

#pageExamStatus select {
  width: 250px;
}
#pageExamStatus .table_box .department_column, #pageExamStatus .table_box .student_column {
  width: 100px;
}
#pageExamStatus .table_box .status_column {
  width: 80px;
}

#pageNotification {
  max-width: 100% !important;
  background-image: none !important;
}
#pageNotification .search_form_box [name=title] {
  width: 300px;
}
#pageNotification .search_form_box [name=company_name] {
  margin-left: 10px;
}
#pageNotification .search_form_box .company_box {
  display: flex;
}
#pageNotification .record_list_box tr th.type {
  width: 150px;
}
#pageNotification .record_list_box tr th.status {
  width: 140px;
}
#pageNotification .record_list_box tr th.created_at {
  width: 120px;
}
#pageNotification .record_list_box tr th.title {
  width: 250px;
}
#pageNotification .record_list_box tr th.push {
  width: 140px;
}
#pageNotification .record_list_box tr td .push_history_btn,
#pageNotification .record_list_box tr td .push_btn {
  font-size: 0.7rem;
  padding: 1px 10px;
}
#pageNotification .record_list_box tr td .push_history_btn {
  display: inline-block;
  background-color: black;
  color: white;
  text-decoration: none;
  border: 1px solid black;
  border-radius: 2px;
  transition: 300ms;
}
@media screen and (min-width: 769px) {
  #pageNotification .record_list_box tr td .push_history_btn:hover {
    background-color: white;
    color: black;
  }
}
#pageNotification .record_list_box tr td .push_btn {
  margin-left: 8px;
}
#pageNotification .push_dlg_contents_area {
  padding: 20px 0;
}
#pageNotification .push_dlg_contents_area .description_area {
  margin-bottom: 25px;
}
#pageNotification .push_dlg_contents_area .description_area .title_text .target_notification_title {
  color: #2e80ca;
}
#pageNotification .push_dlg_contents_area .description_area .description_text {
  margin-top: 15px;
  font-size: 0.9rem;
}
#pageNotification .push_dlg_contents_area .row {
  margin-bottom: 25px;
}
#pageNotification .push_dlg_contents_area .row .label_box {
  margin-bottom: 5px;
}
#pageNotification .push_dlg_contents_area .row .label_box .label_text {
  font-size: 0.9rem;
}
#pageNotification .push_dlg_contents_area .row .label_box .label_text .annotation {
  font-size: 0.8rem;
  margin-left: 5px;
  color: #aaa;
}
#pageNotification .push_dlg_contents_area .row .label_box .description_text {
  font-size: 0.8rem;
  color: #2e80ca;
}
#pageNotification .push_dlg_contents_area .row .form_parts select {
  width: 250px;
}
#pageNotification .push_dlg_contents_area .row .form_parts [name=user_name] {
  width: 250px;
}
#pageNotification .push_dlg_contents_area .row .form_parts .suggest_list_box {
  width: 250px;
  max-height: 100px;
  overflow: auto;
  border: 1px solid #ccc;
}
#pageNotification .push_dlg_contents_area .row .form_parts .suggest_list_box .suggest_item:nth-of-type(even) {
  background-color: #eee;
}
#pageNotification .push_dlg_contents_area .row .form_parts .suggest_list_box .suggest_item a {
  display: block;
}
#pageNotification .disp_error {
  font-size: 0.8rem;
  color: #e83032;
  margin-top: 5px;
  display: inherit;
}
#pageNotification .success_message {
  font-size: 0.8rem;
  color: #2e80ca;
  margin-top: 5px;
  display: inherit;
}
#pageNotification .data_area .detail_box table tr th {
  width: 150px;
}
#pageNotification .data_area .detail_box table tr td pre {
  max-width: 770px;
  white-space: pre-wrap;
}
#pageNotification .data_area .detail_box table tr td pre img {
  max-width: 100%;
  height: auto;
}
#pageNotification .push_history_area {
  margin-top: 80px;
}
#pageNotification .push_history_area .push_history_list_box .push_history_list tr.warning td {
  background-color: #f8d7da;
}
#pageNotification .push_history_area .push_history_list_box .push_history_list tr th,
#pageNotification .push_history_area .push_history_list_box .push_history_list tr td {
  font-size: 0.8rem;
  text-align: center;
}
#pageNotification .push_history_area .push_history_list_box .push_history_list tr th {
  border-right: 1px solid #ccc;
}
#pageNotification .push_history_area .push_history_list_box .push_history_list tr th.target_type {
  width: 250px;
}
#pageNotification .push_history_area .push_history_list_box .push_history_list tr th.message {
  width: 500px;
}
#pageNotification .register_form_box select[name=type], #pageNotification .register_form_box select[name=subject_no], #pageNotification .register_form_box select[name=company_no] {
  width: 250px;
}
#pageNotification .register_form_box [name=title] {
  width: 650px;
}
#pageNotification .register_form_box .th_notice {
  font-size: 0.7rem;
  margin-left: 5px;
}
#pageNotification .register_form_box .company_selector_box {
  margin-bottom: 10px;
}

#pageInvoiceCondition .company_selector_box,
#pageInvoiceCondition .department_select_box {
  display: block;
  margin-bottom: 5px;
}
#pageInvoiceCondition .company_selector_box .select_item select,
#pageInvoiceCondition .department_select_box .select_item select {
  margin-bottom: 1px;
}
#pageInvoiceCondition .company_selector_box .select_item .delete_select_item_btn,
#pageInvoiceCondition .department_select_box .select_item .delete_select_item_btn {
  margin-left: 5px;
}
#pageInvoiceCondition .company_selector_box .select_item .delete_select_item_btn::before,
#pageInvoiceCondition .department_select_box .select_item .delete_select_item_btn::before {
  font-family: "Font Awesome 5 Free";
  content: "\f2ed";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}
#pageInvoiceCondition .gray {
  color: #858688;
}

#pageInvoiceExcludeCondition .user_name_box {
  display: block;
  margin-bottom: 5px;
}
#pageInvoiceExcludeCondition .user_name_box input {
  margin-bottom: 1px;
}
#pageInvoiceExcludeCondition .user_name_box .user_name_item {
  display: flex;
}
#pageInvoiceExcludeCondition .user_name_box .user_name_item .delete_user_btn {
  margin-left: 5px;
}
#pageInvoiceExcludeCondition .user_name_box .user_name_item .delete_user_btn::before {
  font-family: "Font Awesome 5 Free";
  content: "\f2ed";
  font-weight: 900;
  vertical-align: middle;
  color: #333436;
}/*# sourceMappingURL=admin.css.map */