@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Zen+Antique+Soft&display=swap');

/* =========================================================
* ページ全体の定義
* @ PAGE
* ====================================================== */
.wrapper{
  max-width: 480px;
  margin: 0 auto;
}
.conts_inner{
  margin: 20px 0 30px 0;
  padding: 0 10px;
}

*, * :after, * :before{
  box-sizing: border-box;
}
a{
  text-decoration: none;
  color: #666;
}
img{
  width: auto;
  max-width: 100%;
  vertical-align: bottom;
}
body{
  color: #6a6a6a;
  font-size: 20px;
  font-family: 'Noto Sans JP', sans-serif;
}
[v-cloak]{
  display:none;
}

.primary_ttl{
  text-align: center;
  font-size: 26px;
}

.primary_tbl{
  width: 100%;
}
.primary_tbl th,
.primary_tbl td{
  padding: 5px 15px;
  border: 1px solid #000;
}
.primary_tbl tbody th{
  background: #dfcdc5;
  color: #707070;
  font-weight: bold;
}


/* -----------------------------------------------
* フォーム関連
* -------------------------------------------- */

/* エラーメッセージ */
.error_area{
  margin: 14px 0;
  min-height: 20px;
  color: #b22222;
  font-size: 16px;
  font-weight: bold;
}

.error_list {
  margin-bottom: 20px;
  padding: 15px 15px 15px 35px;
  background-color: #f2dede;
  border: 1px solid #ebccd1;
  border-radius: 4px;
  color: #a94442;
  font-size: 14px;
}
.error_list li {
  margin-bottom: 3px;
  list-style-type: disc;
}

input{
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 1px solid #000;
  border-radius: 10px;
  color: #666;
  font-size: 16px;
}
input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s !important;
  -webkit-text-fill-color: #666;
}
:focus {
  outline: none;
}
textarea{
  font-size: 16px;
  font-family: Arial;
  color: #666;
}
select{
  color: #666;
}

/* チェックボックス装飾 */
input[type=checkbox] {
  position: absolute;
  height: auto;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
}
.check_area{
  position: relative;
  display: inline-block;
  margin: 15px 15px 0 0;
  padding: 0 0 0 20px;
}
.check_area .indicator{
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border: 1px solid #666;
}
.check_area .indicator::after{
  content:'';
  display:none;
  position:absolute;
}
.check_area input:checked ~ .indicator::after{
  display:block;
}
.check_area .indicator::after{
  top: calc(50% - 6px);
  left: 5px;
  transform: rotate(45deg);
  width: 5px;
  height: 8px;
  border: solid #666;
  border-width: 0 2px 2px 0;
}

.radio_area{
  position: relative;
  display: inline-block;
  margin: 15px 15px 0 0;
  padding: 0 0 0 25px;
}
.radio_area input[type="radio"]{
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: calc(0.5rem - 9px);
}

/* セレクトボックス装飾 */
select{
  width: 100%;
  height: 40px;
  padding: 5px 22px 5px 8px;
  border: 1px solid #a9a9a9;
  border-radius: 10px;
  background: #fff;
  font-size: 16px;
}
select {
  -webkit-appearance: none;
  appearance: none; /* デフォルトのスタイルを無効 */
}
select::-ms-expand {
  display: none; /* デフォルトのスタイルを無効(IE用) */
}
.select_box{
  position: relative;
}
.select_box::before {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  right: 8px;
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid black;
  pointer-events: none;
}

.indent_item{
  margin-left: 1em;
  max-width: calc(100% - 1em);
}

/* ボタンエリア */
.btn_box{
  margin: 30px 0 0;
  text-align: center;
}
.btn{
  display: inline-block;
  min-width: 100px;
  width: auto;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  background: #c06645;
  color: #fff;
  font-size: 20px;
  text-align: center;
}
.btn.is-disabled{
  pointer-events: none;
  background: #ccc;
}
.btn-close{
  background: #fff;
  color: #777;
  border: #aaa 2px solid;
  padding: 10px 5px;
  width: auto;
}
.btn span{
  pointer-events: none;
}
.btn-border{
  border: 2px solid #c06645;
  background: transparent;
  color: #6a6a6a;
}
.btn.logout{
  border: 1px solid #727171;
  background: #e1e1e1;
  color: #727171;
}
.btn.btn-sm{
  padding: 8px;
}

/* フォーム周り */
.form-group p{
  margin-top: 5px;
  font-size: 16px;
}

.edit_heading{
  position: relative;
  margin-bottom: 10px;
  padding-left: 15px;
  font-size: 20px;
}
.edit_heading::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 5px;
  height: 1.3em;
  background: #c06645;
}
.edit_box{
  font-size: 16px;
}
.edit_ttl{
  color: #bc4e26;
  font-size: 20px;
  font-weight: bold;
}
.edit_box + .edit_box{
  margin-top: 10px;
}
.edit_box select{
  margin-top: 5px;
  font-size: 22px;
}
.edit_box select.font-sml{
  font-size: 16px;
}

.edit_box input{
  height: 40px;
  margin-top: 5px;
  padding: 5px 8px;
  border: 1px solid #a9a9a9;
  font-size: 22px;
}
.edit_box textarea{
  width: 100%;
  margin-top: 5px;
  padding: 5px 8px;
  border-radius: 10px;
  border: 1px solid #a9a9a9;
  font-size: 22px;
}
.edit_box input.price{
  width: 120px;
}
.edit_box .yen{
  font-size: 20px;
  margin-left: 5px;
}
.edit_box-time .select_box{
  display: inline-block;
}
.edit_box-time .select_box select{
  min-width: 70px;
}
.edit_box-time .select_box span{
  display: inline-block;
  margin: 0 8px;
}

#signature_box{
  width: 300px;
  height: 160px;
  margin: 0 auto;
}
.signature_area{
  margin-top: 10px!important;
  border: 1px solid #a9a9a9!important;
}
.signature_title{
  display: flex;
  justify-content: space-between;
}
.btn_clear_signature{
  display: flex;
  align-items: center;
  color: #dc0000;
  font-size: 16px;
  font-weight: bold;
}
.btn_clear_signature .fa{
  margin: 1px 5px 0 0;
  vertical-align:middle;
}
.btn_save_signature{
  text-align: center;
  margin: 10px 0 10px;
}
.btn_save_signature a{
  background: #33ccff;
  border: 1px solid #b0b0b0;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  padding: 5px 15px;
}

/* 見出し */
.panel {
  -webkit-box-shadow: 0 1px 2px rgb(0 0 0 / 5%);
  box-shadow: 0 1px 2px rgb(0 0 0 / 5%);
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
  box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel-body {
  padding: 15px;
}
.panel-danger {
  border-color: #ebccd1;
}
.panel-danger > .panel-heading{
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}



/* -----------------------------------------------
* ライセンス認証
* -------------------------------------------- */
.driver_card{
  position: relative;
  width: calc(100vw - 20px);
  height: calc((100vw - 20px) * 0.729);
  max-width: 394px;
  max-height: 287px;
  margin: 0 auto;
  background: url(/inc/img/driver_card.png) no-repeat top center / 100%;
}
.driver_card .card_inner{
  position: absolute;
  left: 0;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 11px 0 16px;
}
.driver_card .card_inner .driver_img{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35.5vw;
  max-width: 147px;
  height: 47.3vw;
  max-height: 196px;
}
.driver_card .card_inner .driver_img img{
  max-width: 100%;
  max-height: 100%;
}
.driver_card .card_inner .driver_name{
  width: calc(64.3vw - 29px);
  max-width: calc(100% - 145px);
  padding-bottom: 10px;
  color: #000;
  font-size: 19px;
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 413px){
  .driver_card .card_inner .driver_name{
    font-size: 4.4vw;
  }
}

.driver_tbl{
  margin-top: 30px;
  font-size: 15px;
}
.driver_tbl thead th{
  text-align: center;
}
.driver_tbl tbody th{
  width: 180px;
  padding: 5px 10px;
}



/* -----------------------------------------------
 * TOP マイページ
 * -------------------------------------------- */
.wrapper.mypage .btn_box{
  margin-top: 30px;
}

.mypage_top{
  text-align: center;
}

.mypage_achievement .achievement_block{
  margin-top: 30px;
  text-align: center;
}

.schedule_block{
  margin-top: 30px;
}
.schedule_list .list_item{
  font-size: 22px;
}
.schedule_list .list_item + .list_item{
  margin-top: 10px;
}
.schedule_list .list_item a{
  position: relative;
  display: block;
  padding: 15px 32px 15px 17px;
  border: 2px solid #bc4e25;
  border-radius: 10px;
}
.schedule_list .list_item a::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%)rotate(45deg);
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #bc4e25;
  border-right: 2px solid #bc4e25;
}
.schedule_list .list_item .item_detail .detail_time{
  display: inline-block;
  width: 150px;
}
.schedule_list .list_item .item_detail .detail_num{
  display: inline-block;
  margin-left: 10px;
}



/* -----------------------------------------------
 * 作業一覧
 * -------------------------------------------- */
.wrapper.work{
  max-width: 100%;
}
.wrapper.work .conts_inner{
  padding: 0;
}
.work_date{
  display: flex;
  align-content: center;
  justify-content: center;
}
.work_date .date_arw{
  display: inline-block;
  height: 28px;
}
.work_date .date_arw::before{
  content: "";
  display: inline-block;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}
.work_date .date_arw-prev::before{
  border-right: 24px solid #a5a5a5;
}
.work_date .date_arw-next::before{
  border-left: 24px solid #a5a5a5;
}
.work_date .date_num{
  display: inline-block;
  width: 130px;
  font-size: 24px;
  line-height: 1;
  text-align: center;
}

.work_list{
  counter-reset: my-counter;
  margin: 20px 0 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.work_list-no_list{
  padding: 30px 10px;
  text-align: center;
}
.work_list .list_item + .list_item{
  border-top: 1px solid #000;
}
.work_list .list_item .item_inner{
  display: flex;
  align-items: stretch;
  padding: 10px 30px 10px 10px;
  border-radius: 10px;
  font-size: 16px;
}
.work_list .list_item .item_link{
  position: relative;
}
.work_list .list_item .item_link::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%)rotate(45deg);
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}
.work_list .list_item .item_num{
  display: flex;
  align-items: center;
}
.work_list .list_item .item_num span{
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #666;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
}
.work_list .list_item .item_num span::before{
  content: counter(my-counter);
  counter-increment: my-counter;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  font-size: 13px;
}
.work_list .list_item .item_detail{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(100% - 30px);
  min-height: 40px;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 10px solid #33ccff;
}
.work_list .list_item.is-progress .item_detail{
  border-left-color: #ffc000;
}
.work_list .list_item.is-finish .item_detail{
  border-left-color: #7f7f7f;
}
.work_list .list_item .item_detail .detail_box{
  display: flex;
}
.work_list .list_item .item_detail .detail_box > span.time{
  display: inline-block;
  width: 50px;
}
.work_list .list_item .item_detail .detail_box .box_txts{
  width: calc(100% - 50px);
}
.work_list .list_item .item_detail .detail_box .box_txts p span{
  margin-right: .5em;
}
.work_list .list_item .item_detail .detail_box-type{
  display: block;
}
.omit_txt{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.back_to_mypage_area{
  margin-top: 20px;
  text-align: center;
}
.back_to_mypage_area a{
  text-decoration: underline;
}
.work_list .list_item .item_type{
  display: flex;
  justify-content: center;
  width: 20px;
  writing-mode: vertical-rl;
}
.work.detail .work_list .list_item .item_inner{
  padding: 10px;
}
.work.detail .work_list .list_item .item_detail{
  display: flex;
  justify-content: center;
  width: calc(100% - 80px);
  padding-right: 10px;
}

.work.detail .work_list .list_item .item_detail p>span:first-child{
  position: relative;
  display: inline-block;
  padding-right: 1em;
}
.work.detail .work_list .list_item .item_detail p>span:first-child::after{
  content: "：";
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
}

.photo-list-area{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 5px;
}
.photo-list-area p{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 0 0 5px;
}
.photo-list-area p img{
  max-width: 100%;
  max-height: 100%;
}
.photo-list-area > div + div{
  margin-left: 5px;
}
.photo-list-area p + p{
  margin-left: 15px;
}
.photo-list-area .photo-thumbnail:last-of-type{
  margin-right: 30px;
}
.close_btn{
  position: absolute;
  top: -4px;
  right: 0;
  display: inline-block;
  width: 16 px;
  height: 16  px;
  border-radius: 50%;
  background: #dc0000;
}
.close_btn .icon_close{
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
}
.close_btn .icon_close::before,
.close_btn .icon_close::after{
  content: "";
  position: absolute;
  top: 50%;
  right: calc(50% - 2px);
  width: 2px;
  height: 10px;
  background: #fff;
}
.close_btn .icon_close::before{
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.close_btn .icon_close::after{
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.photo-list-area p .fa-times-circle{
  position: absolute;
  right: -5px;
  top: -5px;
  color: #dc0000;
  font-size: 18px;
}

#photo-list-area-wrap{
  margin-top: 10px;
}

.photo-list-area .sign_input{
  margin-left: 10px;
  padding-top: 5px;
}
.photo-list-area .photo_input input[type="file"] {
  display: none;
}
.photo-list-area .photo_input .fa,
.photo-list-area .sign_input .fa{
  font-size: 36px;
}

.upload_form{
  display: flex;
  align-items: center;
  margin: 0 0 5px;
}

/* 署名 */
#sign_canvas_area{
  margin-top: 10px;
  display: none;
}
#sign_canvas{
  margin-top:10px;
  border: 1px solid #a9a9a9;
  padding: 5px;
  border-radius: 10px;
}

.work.detail .work_list .list_item .edit_box{
  display: flex;
  align-items: center;
}
.work.detail .work_list .list_item .edit_btn{
  display: inline-block;
  padding: 8px 10px;
  border: 1px solid #b0b0b097;
  border-radius: 10px;
  background: #33ccff;
  color: #fff;
  font-size: 14px;
  text-align: center;
}
.work.detail .work_list .list_item .edit_btn.is-disabled{
  pointer-events: none;
  background: #e1e1e1;
  color: #999;
  display: none;/* どちらにしよう */
}

.btn_box-backBtn{
  position: relative;
  margin: 55px 0 50px;
  min-height: 28px;
}
.back_btn{
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  display: inline-block;
  height: 28px;
}
.back_btn::before{
  content: "";
  display: inline-block;
  border-top: 14px solid transparent;
  border-right: 24px solid #a5a5a5;
  border-bottom: 14px solid transparent;
}

.work_data{
  padding: 0 10px;
  font-size: 16px;
}
.work_data .data_top{
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.work_data .data_top .top_date{
  font-weight: bold;
  font-size: 18px;
}
.work_data .data_btm{
  padding-left: 1rem;
}
.work_data .data_btm .btm_item{
  margin-left: 5.3rem;
  text-indent: -5.3rem;
}
.work_data .data_btm .btm_item span + a{
  margin-left: 5px;
}
.work_data .data_btm .btm_item a{
  display: inline-block;
  border: 1px solid #4caf50;
  border-radius: 5px;
  margin: 3px 0 0 5px;
  padding: 3px 10px 5px;
  color: #4caf50;
  text-indent: 0;
  line-height: 1;
}
.work_data .data_btm .btm_item a .fa{
  margin: 0 5px 0 0;
}



/* -----------------------------------------------
 * ポップアップ
 * -------------------------------------------- */
#cboxContent{
  background: transparent;
}
#cboxLoadedContent{
  padding: 15px 10px;
  border: none;
  border-radius: 10px;
}
#cboxClose{
  display: none;
}
.btn_close{
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: 1px solid #888;
  border-radius: 50%;
  background: #fff;
  z-index: 10;
}
.btn_close span{
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.btn_close span::after,
.btn_close span::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 16px;
  height: 2px;
  background: #000;
}
.btn_close span::after{
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.btn_close span::before{
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
#cboxLoadedContent .edit_ttl{
  font-size: 16px;
}
#cboxLoadedContent .btn_box{
  margin-top: 25px;
}



/* -----------------------------------------------
 * マニュアル
 * -------------------------------------------- */

.manual_list .list_item + .list_item{
  margin-top: 20px;
}

/* 詳細ページ */
.wrapper.manual.detail{
  max-width: 100%;
}
.manual.detail .conts_inner{
  margin: 40px 0;
}
.manual_top,
.manual_btm{
  display: flex;
  justify-content: space-between;
  padding: 15px 10px;
}
.manual_top{
  border-bottom: 1px solid #ccc;
}
.manual_btm{
  border-top: 1px solid #ccc;
}
.manual.detail .manual_arw{
  display: inline-block;
  width: 24px;
  height: 28px;
}
.manual.detail .manual_arw::before{
  content: "";
  display: inline-block;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}
.manual.detail .manual_arw-prev::before{
  border-right: 24px solid #a5a5a5;
}
.manual.detail .manual_arw-next::before{
  border-left: 24px solid #a5a5a5;
}
.manual_ttl{
  width: calc(100% - 48px);
  text-align: center;
}

.manual_detail{
  max-width: 480px;
  margin: 0 auto;
}
.manual_img{
  width: 80%;
  margin: 0 auto;
}
.manual_img img{
  border: 1px solid #ccc;
}
.manual_img + .manual_img{
  margin-top: 30px;
}

.manual.detail .manual_list{
  margin: 30px 10px 0;
  font-size: 16px;
}
.manual.detail .manual_list .list_item{
  margin-left: 1em;
  text-indent: -1em;
}
.manual.detail .manual_list .list_item::before{
  content: "・";
}
.manual.detail .manual_list .list_item + .list_item{
  margin-top: 10px;
}






/* -----------------------------------------------
 * 緊急連絡先
 * -------------------------------------------- */
.contact_list dt{
  margin-top: 30px;
  text-align: center;
}
.contact_list dd{
  margin-top: 10px;
}
.contact_list dd .btn{
  font-size: 20px;
  text-decoration: underline;
}

