/* ---------------------------------------------------------------------------------------------------------------- */
/*全ページに適用するCSS/*
/* ---------------------------------------------------------------------------------------------------------------- */
*{
  font-family: Arial,'ヒラギノ角ゴシック','Hiragino Sans','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','ヒラギノ角ゴ StdN','Hiragino Kaku Gothic StdN','Meiryo UI','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic','ＭＳ ゴシック',sans-serif;
}
html{
  font-feature-settings: "palt";/*自動文字詰めproperty*/
  font-size:62.5%;/*16px=1.6rem*/
  touch-action: manipulation;
}
/*全body設定----------------------------------------------------------------- */
body{
  background-color: #E6EBEE;/*背景グレー*/
  font-size: 1.2rem;/*基本文字サイズ*/
  line-height: 1.3;/*基本行間*/
  color: #212B32;
  letter-spacing: 0.15em;
  touch-action: manipulation;  
}
@media only screen and (max-width:1024px) {
  body{
    font-size: 1.3rem;/*基本文字サイズ*/
    line-height: 1.4;/*基本行間*/
	-webkit-touch-callout:none; /*リンク長押しのポップアップを無効化*/
	-webkit-user-select:none; /*テキスト長押しの選択ボックスを無効化*/
  }
}
/*type=numberの矢印を消す*/
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
input[type="number"] {
	-moz-appearance:textfield;
}
#body_wrap{
  margin-left: 25rem;
  width: calc(100% - 25rem) ;
  padding: 5rem 4rem 4rem;
  box-sizing: border-box;
}	
@media only screen and (max-width:1024px) {
  #body_wrap{
    margin-left: 0;
    width: 100%;
    padding: 5rem 4rem 4rem;
  }
}
#body_wrap_nomenu {
	margin-left: 0;
    width: 100%;
	padding: 5rem 4rem 4rem;
	box-sizing: border-box;
}
/*リンク設定*/
a{
  cursor: pointer;
  color: #3B82C5;
}
a:focus, *:focus {
  outline:none;
}

/*フォント設定--------------------------------------------------------------- */
.font-large{
  font-size: 120%;
}
.font-2large{
  font-size: 140%;
}
.font-3large{
  font-size: 160%;
}
/*（※）注意書き*/
.comment{
  margin: 0.3rem 0rem 0rem 0rem;
  font-size: 1.2rem;
}

/*見出し--------------------------------------------------------------------- */
/*サイトタイトル*/
h1 {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-top:1rem;
  font-weight: bold;
}
@media only screen and (max-width:1024px) {
  h1 {
    font-size: 1.6rem;
  }
}
/*ページタイトル*/
h2 {
  font-size: 2.2rem;
  font-weight: normal;
  letter-spacing: 1.2pt;
  margin: 0.5rem 2.5rem 0 0;
  word-break: keep-all;
}
@media only screen and (max-width:1024px){
  h2 {
    font-size: 2.8rem;
    letter-spacing: 0.5pt;
    margin-top: 0.3rem;
  }
}
/*黒帯タイトル*/
h3 {
  color: #FFF;
  background-color:#334149;
  padding: 0.4rem 0;
  font-size: 1.4rem;
  letter-spacing: 1.8pt;
  text-align: center;
}
@media only screen and (max-width:1024px){
  h3 {
    padding: 0.6rem 0;
  }
}
/*今月*/
h4{
  font-size: 2.2rem;
  margin: 0.6rem 1rem 0.5rem 0;
  word-break:  keep-all;
  font-weight: normal;
}
@media only screen and (max-width:1024px){
  h4 {
    margin-top: 0.8rem;
  }
}
/*見出し*/
h5 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}
@media only screen and (max-width:1024px){
  h5 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
}
h5 span{
  margin-left: 1rem;
  vertical-align: top;
  font-weight: normal;
}
/*小見出し*/
h6 {
  font-size: 1.2rem;
  margin: 0.3rem  0 0.3rem 0;
  color: #707F87;
}
@media only screen and (max-width:1024px){
  h6 {
    font-size: 1.4rem;
    margin: 0.3rem  0 0.7rem 0;
  }
}

/*基本枠----------------------------------------------------------------------*/
.main_wrap{
  background-color: #FFF;
  padding: 0.5rem 1.2rem;
}
.contents_area{
  margin: 0.5rem 0 0.5rem;
  line-height: 1;
}
/*先頭にボタンがある場合*/
.button_padding{
  padding: 1rem;
}
/*タイトル表示＆アクションボタンエリア*/
.title-button_wrap{
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap:wrap;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  vertical-align: baseline;
}
.title-button_wrap select{
  margin-left: 0.3rem;
}
.title-button_wrap .action_button{
  margin:0.2rem 1rem 0.4rem 0;
}
.title-button_wrap .flex_area_right ~ .action_button{
  margin:0.2rem 0 0.4rem 1rem;
}
/*アイコン--------------------------------------------------------------------*/
/*上三角*/
.angle-up_icon:before {
  content:"\f0d8";
  font-family: "FontAwesome";
}
/*下三角*/
.angle-down_icon:before {
  content:"\f0d7";
  font-family: "FontAwesome";
}
/*右三角*/
.angle-right_icon:before {
  content:"\f105";
  font-family: "FontAwesome";
}
/*左三角*/
.angle-left_icon:before {
  content:"\f104";
  font-family: "FontAwesome";
}
/*右二重三角*/
.angle-double_right_icon:before {
  content:"\f101";
  font-family: "FontAwesome";
}
/*左二重三角*/
.angle-double_left_icon:before {
  content:"\f100";
  font-family: "FontAwesome";
}
/*編集ボタン*/
.edit_icon:before{
  content:"\f044";
  font-family: "FontAwesome";
}
/*編集ボタン*/
.h3_button .edit_icon:before{
  margin-left: 0.5rem;
  padding-top: 1rem;
  font-size: 1.7rem;
  vertical-align: bottom;
}
/*プラスボタン*/
.plus_icon:before{
  content:"\f067";
  font-family: "FontAwesome";
}
/*丸プラスボタン*/
.circle_plus_icon:before{
  content:"\f055";
  font-family: "FontAwesome";
}
/*丸マイナスボタン*/
.circle_minus_icon:before{
  content:"\f056";
  font-family: "FontAwesome";
}
/*×ボタン*/
.close_icon:before{
  content:"\f2d3";
  font-family: "FontAwesome";
}
/*カレンダー*/
.calendar-icon:before {
  content:"\f133";
  font-family: "FontAwesome";
  font-size: 2.5rem;
  margin-left: 0.3rem;
  cursor: pointer;
}
button .calendar-icon:before {
  font-size: 1.7rem;
  font-weight: normal;
  margin-top: -0.3rem;
}
/*カレンダー ベタ塗*/
.calendar-icon:before {
  content:"\f133";
  font-family: "FontAwesome";
  font-size: 2.5rem;
  margin-left: 0.3rem;
  cursor: pointer;
}
/*ユーザー*/
.user-icon:before {
  content:"\f007";
  font-family: "FontAwesome";
}
/*鍵*/
.key_icon:before {
  content:"\f084";
  font-family: "FontAwesome";
}
/*（!）マーク*/
.exclamation_icon:before {
  content:"\f06a";
  font-family: "FontAwesome";
}
/*車*/
.car_icon:before {
  content:"\f1b9";
  font-family: "FontAwesome";
}
/*￥マーク*/
.yen_icon:before {
  content:"\f157";
  font-family: "FontAwesome";
  color: #FFF;
  margin: auto;
}
.yen_circle{
  display: block;
  height: 2rem;
  width: 2rem;
  padding: 0.2rem;
  background-color: #707F87;
  display: block;
  text-align: center;
  font-weight: normal;
  vertical-align: bottom;
  border-radius: 3rem;
  letter-spacing: 0;
}
/*レンチ*/
.wrench_icon:before {
  content:"\f0ad";
  font-family: "FontAwesome";
  margin-right: 0.2rem;
}
.h3_button .wrench_icon:before {
  position: relative;
  margin-left: 0.5rem;
  font-size: 1.7rem;
}
/*工場入庫*/
.factory-in_icon:before {
  content: "\e900";
  font-family: "icomoon";
}
/*工場出庫*/
.factory-out_icon:before {
  content: "\e901";
  font-family: "icomoon";
}
/*店舗*/
.shop_icon:before {
  content: "\e902";
  font-family: "icomoon";
}
/*見積*/
.estimate_icon:before {
  content: "\e903";
  font-family: "icomoon";
}
/*ペン*/
.memo_icon:before {
  content: "\e904";
  font-family: "icomoon";
}
/*エクセル*/
.excel_icon:before {
  content: "\e905";
  font-family: "icomoon";
  font-weight: normal;
  vertical-align: middle;
  font-size: 1.7rem;
  position: relative;
  top: -0.15rem;
  margin-right: 0.3rem;
}
/*PDF*/
.pdf_icon:before {
  content: "\e906";
  font-family: "icomoon";
  font-weight: normal;
  vertical-align: middle;
  margin-top: -0.1rem;
  font-size: 1.7rem;
  position: relative;
  top: -0.15rem;
  margin-right: 0.3rem;
}
/*CSV*/
.csv_icon:before {
  content: "\e907";
  font-family: "icomoon";
  font-weight: normal;
  vertical-align: middle;
  margin-top: -0.1rem;
  font-size: 1.7rem;
  position: relative;
  top: -0.15rem;
  margin-right: 0.3rem;
}
/*3点*/
.sms_icon:before {
  content: "\f27a";
  font-family: "FontAwesome";
}
/*メール*/
.mail_icon:before {
  content: "\f0e0";
  font-family: "FontAwesome";
}

/*フォント色--------------------------------------------------------------------- */
/*文字色(緑)　color_greenに統合したい*/
.main_color{
  color: #3FAB9B;
}
/*文字色(赤) color_redに統合したい */
.sub_color{
  color: #E9474D;
}
/*文字色(青) color_blueに統合したい */
.action_color{
  color: #3B82C5;
}
.color_gray{
  color:#707F87;
}
.color_red{
  color:#E9474D;
}
.color_blue{
  color:#3B82C5;
}
.color_cloudy-red{
  color:#B37893;
}
.color_cloudy-blue{
  color:#5D99B4;
}
.color_dark-red{
  color:#b81900;
}
.color_dark-blue{
  color:#005580;
}
.color_green{
  color:#3FAB9B;
}
.color_yellow{
  color: #FEDC5E;;
}
.color_purple{
  color: #A674B0;
}
.color_orange{
  color: #F08437;
}

/*背景色--------------------------------------------------------------------- */
/*背景色(緑)※別ページへの遷移などで使用　bg-color_greenにかえたい*/
.main_bg-color{
  background-color: #3FAB9B;
  color: #FFF;
}
/*背景色(黒)※グループヘッダーやthなどで使用　bg-color_blackにかえたい*/
.main_black-bg-color{
  background-color: #334149;
  color: #FFF;
}
/*背景色(グレー)※テーブルのサブヘッダーなどで使用　bg-color_grayにかえたい*/
.main_light-bg-color{
  background-color: #D8F0ED;
}
/*背景色(赤)※スクウェアボックスや必須などで使用　bg-color_redにかえたい*/
.sub_bg-color{
  background-color: #E9474D;
  color: #FFF;
}
/*背景色(青)※編集やページ内アクションなどで使用　bg-color_blueにかえたい*/
.action_bg-color{
  background-color: #3B82C5;
  color: #FFF;
}
.bg-color_white{
  background-color: #FFF;
}
.bg-color_light-gray{
  background-color: #E6EBEE;
}
.bg-color_gray{
  background-color: #D4D9DC;
}
.bg-color_dark-gray{
  background-color: #707F87;
}
.bg-color_red{
  background-color: #E9474D;
}
.bg-color_pdf-red{
  background-color:#E92316;
}
/* こうしてhtml内の記述を少しでも減らしたい.bg-color_pdf-red:hover{
  background-color:#E92316;
}
*/
.bg-color_blue{
  background-color: #3B82C5;
}
.bg-color_light-blue{
  background-color: #e6e6fa;
}
.bg-color_dark-red{
  color:#b81900;
}
.bg-color_dark-blue{
  color:#005580;
}
.bg-color_green{
  background-color: #3FAB9B;
}
.bg-color_excel-green{
  background-color: #398E5D;
}
.bg-color_purple{
  background-color: #A674B0;
}
.bg-color_light-yellow{
  background-color: #FAEE99;
}
.bg-color_yellow{
  background-color: #FEDC5E;;
}
.bg-color_pink{
  background-color: #F0759E;
}
.bg-color_light-pink{
  background-color: #FFC0CB;
}
.bg-color_light-pink2{
  background-color: #FFE8EC;
}
.bg-color_orange{
  background-color: #F08437;
}
.bg-color_lemonchiffon{
  background-color: #FFFACD;
}
.bg-color_cancel{
  background-color: #718CC7;
}

/*ホバー色----------------------------------------------------------------------*/
/*ホバー背景色(緑)※工場カレンダーの車両選択ホバーで使用　bg-color_hover_greenにかえたい*/
.main_bg-color_hover:hover{
  background-color: #3FAB9B;
  color: #FFF;
}
/*ホバー背景色(黄色)※ボタンが赤い時に使用　bg-color_hover_yellowにかえたい*/
.yellow_bg-color_hover:hover{
  background-color: #FEDC5E;
}

/*flexレイアウト------------------------------------------------------------- */
.flex_area{
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
.flex_area_wrap{
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap:wrap;
}
/*週別カレンダーで使用*/
.flex_area_column{
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
}
/*高さセンター*/
.flex_center{
  display: flex;
  display: -webkit-flex;
  align-items: center;
}
.flex_center p{
  margin-top: -0.6rem;
}
/*右隅へ*/
.flex_area_right{
  margin-left: auto;
}
/*下隅へ*/
.flex_area_bottom{
  margin-top: auto;
}
/*中央配置*/
.flex_center{
  -webkit-align-items: center; /* Safari */
  align-items: center;
}
@media only screen and (max-width:1024px){
  .flex_area_tablet-flex{
    display: flex;
  }
}
.flex_area_tablet-block{
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width:1024px){
  .flex_area_tablet-block{
    display:  block;
  }
}
.flex_div div{
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}

/*表示切り替え----------------------------------------------------------------*/
.block_1366px{
  display: none;
}
@media only screen and (max-width:1366px){
  .block_1366px{
    display: block;
  }
}

/*ボタン設定----------------------------------------------------------------- */
button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  word-break: keep-all;
  color: #FFF;
  letter-spacing: 0.15em;
}
/*クラス未指定のボタンホバー(赤) */
button:hover{
  background-color: #E9474D;
  transition: 0.3s;
}
button:disabled{
	background-color: #A6A6A6;
	color: #212B32;
	cursor: default;
}
/*共通アクションボタン*/
.action_button{
  padding: 0 1.5rem;
  height: 3.5rem;
  font-weight: bold;
  font-size: 1.3rem;
  border-radius: 3rem;
}
/*共通削除・キャンセルボタン*/
.cancel_button{
  padding: 0 1.5rem;
  height: 3.5rem;
  font-weight: bold;
  font-size: 1.3rem;
  background-color: #718CC7;
  margin-right: 1.3rem;
  display: block;
  border-radius: 3rem;
}
@media only screen and (max-width:1024px){
  .action_button,
  .cancel_button{
    height:4rem;
  }
}

/*編集ボタン----------------------------------------------------------------- */
.h3_button {
  position: relative;
}
.h3_button button{
  /*width: 3rem;*/
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  color: #FFF;
  padding-right: 0.5rem;
}
@media only screen and (max-width:1024px){
  .h3_button button{
    /*width: 3rem;*/
  }
}

/*四角背景ボックス ※案件一覧や色をつけて強調させたい箇所に使用。色は別途指定　square_boxにしたい */
.bg_text{
  padding: 0.3rem;
  color: #FFF;
  font-weight: bold;
}

/*バッジボックス　※必須表示などで使用  badge_boxにしたい*/
.square_box{
  padding: 0.2rem 0.4rem;
  color: #FFF;
  font-size: 85%;
  font-weight: bold;
  vertical-align: text-top;
  border-radius: 0.3rem;
  margin-left: 1rem;
}
@media only screen and (max-width:1024px){
  .square_box{
    padding: 0.1rem 0.2rem;
  }
}
/*テーブル内四角ボタン--------------------------------------------------------*/
.square_button{
  border-radius: 0.3rem;
  height: 2.5rem;
  font-weight: bold;
  padding: 0.3rem 1rem;
  word-break: keep-all;
  text-decoration: none;
  color: #FFF;
}
@media only screen and (max-width:1024px){
  .square_button{
    border-radius: 0.3rem;
    height: 4rem;
    font-weight: bold;
    padding: 0.7rem 1rem;
    word-break: keep-all;
    text-decoration: none;
    color: #FFF;
  }
}
/*有効バッチなど ※ｈ3黒帯に右端配置する際に使用*/
.h3_box{
  color: #FFF;
  font-weight: bold;
  background-color: #E9474D;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2rem;
  height: 100%;
  line-height: 2.3;
  padding: 0 0.5rem;
}

/*テキストボックス設定--------------------------------------------------------*/
input[type="text"], 
input[type="number"], 
input[type="email"],
input[type="url"],
input[type="tel"]{
  border: 0.1rem solid #9EACB4;
  padding: 0.2rem 0.5rem;
  box-sizing: border-box;
  font-size: 1.3rem;
  letter-spacing: 1pt;
  border-radius: 0.5rem;
  height: 3.5rem;
}
input[type="text"]:active,
input[type="number"]:active,
input[type="email"]:active,
input[type="url"]:active,
input[type="tel"]:active{
  border: 0.1rem solid #3FAB9B;
}
label input[type="text"],
label input[type="number"],
label input[type="email"],
label input[type="url"],
label input[type="tel"]{
  width: 15rem;
}
@media only screen and (max-width:1024px){
  height: 4rem;
  padding: 0.5rem 0.8rem;
}

/*テキストエリア*/
textarea{
  width: 100%;
  min-height: 5rem;
  font-size: 1.3rem;
  letter-spacing: 0.4pt;
  border: 0.1rem solid #9EACB4;
  border-radius: 0.5rem;
}

/*セレクトボックス設定------------------------------------------------------- */
select{
  background-color: #FFF;
  border: #9EACB4 solid 0.1rem;
  padding: 0.2rem 0.5rem;
  padding-right: 0.5rem;
  cursor: pointer;
  border-radius: 0.3rem;
  height: 3.5rem;
}
select:disabled{
	background-color: #E6EBEE;
}	
@media only screen and (max-width:1024px){
  select{
    height: 4rem;
    padding: 0.5rem 0.8rem;
  }
}
/*セレクトボックス設定 フラット版------------------------------------------------------- */
/*判定を残して上層に。背景を透明にてボタンを見せる*/
/*select{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  position: relative;
  z-index: 1;
  border: none;
  height: 4rem;
  font-size: 1.4rem;
  background:transparent;透明
  padding: 0.5rem 3.5rem 0.5rem 0.5rem;
  cursor: pointer;
}*/
/*selectに擬似要素が通らないため*/
/*.select_wrapに::before/::after指定*/
/*.select_wrap{
  position: relative;
  display: inline-block;
  background: #FFF;
  border: #9EACB4 solid 0.1rem;
  border-radius: 0.3rem;
}*/
/*ボタン*/
/*.select_wrap::before{
  content: '';
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  background: #334149;
  height: 100%;
  width: 3rem;
}*/
/*矢印*/
/*.select_wrap::after{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 1rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.5rem 0.5rem 0 0.5rem;
  border-color: #fff transparent transparent transparent;
}*/


/* チェックボックス-----------------------------------------------------------*/
input[type='checkbox']{
  display: none;
  padding-bottom: 1.2rem;
}

.checkbox span{
  padding-left: 2.5rem;
  margin-right: 1rem;
  position:relative;
  font-size: 1.4rem;
  cursor: pointer;
  padding-bottom: 2rem;
}
.checkbox span::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.75rem;
  height: 1.75rem;
  border: 0.1rem solid #999;
  border-radius: 0.4rem;
}
input[type='checkbox']:checked + .checkbox span{
  color: #3FAB9B;
}
input[type='checkbox']:checked + span::after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0.6rem;
  width: 0.4rem;
  height: 1.3rem;
  transform: rotate(40deg);
  border-bottom: 0.4rem solid #3FAB9B;
  border-right: 0.4rem solid #3FAB9B;
}
@media only screen and (max-width:1024px){
  .checkbox_text{
    height: 100rem;
    border: sandybrown 0.4rem;
  }
}

/*ラジオボタン*/
input[type='radio']{
  cursor: pointer;
  vertical-align: middle;
  cursor: pointer;
}

/*ラジオボタンフラット版*/
.radio input{
  display: none;
}
.radio input + label{
  padding-left: 2.1rem;
  position:relative;
  margin-right: 1rem;
  cursor: pointer;
  font-size: 1.4rem;
}
.radio input + label::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  border: 0.1rem solid #999;
  border-radius: 50%;
}
.radio input:checked + label{
  color: #3FAB9B;
}
.radio input:checked + label::after{
  content: "";
  display: block;
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  width: 1rem;
  height: 1rem;
  background: #3FAB9B;
  border-radius: 50%;
}

/*ラジオボタン切替ボックス*/
.radio_option input{
  display: none;
}
.radio_option label{
  display: block;
  float: left;
  cursor: pointer;
  width: 7rem;
  margin: 0;
  padding: 1.2rem 0.5rem;
  border-right: 0.1prem solid #3FAB9B;
  background: #FFF;
  color: #3FAB9B;
  border: #3FAB9B solid 0.2rem;
  border-left: none;
  text-align: center;
  line-height: 1;
  transition: 0.3s;
  font-weight: bold;
}
.radio_option label:first-of-type{
  border-left: #3FAB9B solid 0.2rem;
  border-radius: 0.3rem 0 0 0.3rem;
}
.radio_option label:last-of-type{
  border-radius: 0 0.3rem 0.3rem 0;
}
.radio_option input[type="radio"]:checked + label {
  background-color: #3FAB9B;
  color: #FFF;
}
.estimate_table .radio_option label{
  width: 5rem;
  padding: 1.1rem 0;
}
.schedule_time .radio_option label{
  width: 5rem;
  padding: 1.1rem 0;
}
.schedule_price .radio_option label{
  width: 3.8rem;
  padding: 1.1rem 0;
}

/*画像アップロードボタン*/
input[type="file"]{
  margin: 0.5rem 0.5rem 1rem 0;
}
@media only screen and (max-width:1024px){
  input[type="file"]{
    height: 4rem;
  }
}

/*リスト設定*/
ul{
  list-style: none;
}

ol {
  list-style: none;
  counter-reset: ol_li; /* ol_li カウンタをセットする(値もリセット) */
}
ol li:before {
  margin-right: 0.5em;
  counter-increment: ol_li; /* ol_li カウンタの値に1加える */
  content: counter(ol_li)"."; /* before擬似要素のcontentで出力 */
  font-weight: bold;
}



/*テーブル関連設定------------------------------------------------------------*/
table {
  width: 100%;
}
table thead th{
	font-size: 1.3rem;/*基本文字サイズ*/
    line-height: 1.4;/*基本行間*/
  padding: 0.4rem 0;
  letter-spacing: 1.2pt;
  text-align: center;
  border-right: #84959F 0.1rem solid;
  background-color: #334149;
  color: #FFF;
  white-space: nowrap;
}
.table_block table thead th{
  border-right: #84959F 0.1rem solid;
  background-color: #BDC6CB;
  color: #212B32;
  padding: 0.2rem;
}
.table_block .table_tittle th{
  padding: 0.4rem;
  font-size: 1.4rem;
  color: #FFF;
  background-color: #334149;
}
table th{
  word-break: keep-all;
  text-align: left;
  border-bottom: 0.1rem solid #9EACB4;
  padding: 0.4rem 0;
}
table tbody td{
  padding: 0.4rem 1rem;
  border-right: 0.1rem solid #9EACB4;
  border-bottom: 0.1rem solid #9EACB4;
  line-height: 1.3;
  vertical-align: middle;
  background-color: #FFF;
}
/*最後の行右線をなし*/
table thead th:last-child,
table tbody td:last-child{
  border-right: none;
}
/*最後の行下線をなし*/
table tbody tr:last-child th,
table tbody tr:last-child td {
  border-bottom: none;
}
/*ダイアログ内テーブル設定*/
.dialog_overlay table th{
  padding: 0.4rem 0.6rem;
}
.dialog_overlay table td{
  padding: 0.6rem;
}
.last-td_border td{
  border-bottom: 0.1rem solid #9EACB4;
}
/*テーブル内に使用する画像の高さ*/
.table_car-image{
  height: 3rem;
}
@media only screen and (max-width:1024px){
  .table_car-image{
    height: 5rem;
  }
}
/*テーブル文字揃え方向指定*/
.align-center,
.align-center td{
  text-align: center;
}
.align-left,
.align-left td{
  text-align: left;
}
.align-right,
.align-right td{
  text-align: right;
}

/*2列表示のテーブル設定*/
.half_table{
  width: -webkit-calc(50% - 1rem);
  width: calc(50% - 1rem);
  font-size: 1.2rem;
}
@media only screen and (max-width:1366px){
  .half_table{
    width: 100%;
    margin-bottom: 2rem;
  }
}
.half_table .table_box tbody th{
  background-color: #FFF;
}
.half_table input[type="text"]{
  width: 100%;
}

/*1/3表示のテーブル　簡易見積一括登録に使用(デザインのhtmlでしか使用していない)*/
.one-third_table{
  width: -webkit-calc(33% - 1rem);
  width: calc(33% - 1rem);
}
.one-third_table input[type="text"]{
  width: 100%;
}
.one-third_table:nth-child(n+2){
  margin-left: 1rem;
}
.one-third_table th:first-child{
  width:3rem;
}
.one-third_table tbody th{
  background-color: #D4D9DC;
  border-right: 0.1rem solid #9EACB4;
  text-align: center;
  font-weight: normal;
  color: #485B65
}
.one-third_table th:nth-child(n+3){
  width:6rem;
}
.one-third_table td{
  text-align: right;
}

/*枠で囲んだテーブル*/
.table_box{
  border-bottom: 0.1rem solid #9EACB4;
  border-collapse: collapse;
}
.table_box thead th{
  border-bottom: none;
  padding: 0.4rem;
  font-size: 1.3rem;
}
.table_box thead th:first-child{
  border-left: 0.1rem solid #334149;
}
.table_box thead th:last-child{
  border-left: 0.1rem solid #334149;
}
.table_box tbody th{
  border-right:0.1rem solid #9EACB4;
  border-left: 0.1rem solid #9EACB4;
  padding: 0.1rem 1rem;
  background-color: #E6EBEE;
}
.table_box td{
  padding: 0.5rem 1rem;
}
.table_box td:first-child{
  border-left: 0.1rem solid #9EACB4
}
.table_box td:last-child{
  border-right: 0.1rem solid #9EACB4;
}
.table_box .table_car-image{
  height: 3rem;
}
@media only screen and (max-width:1024px){
  .table_box .table_car-image{
    height: 5rem;
  }
}

/*ワンポイント見出し ---------------------------------------------------------*/
.point-coler{
  position: relative;
  padding: 0 2rem;
  font-size: 1.6rem;
  margin: 0.7rem 0;
}
.point-coler:before{
  content: '';
  position: absolute;
  top: 45%;
  display: inline-block;
  width: 1.5rem;
  height: 0.3rem;
  left:0;
}
/*main_wrap内※補足情報などで使用*/
.comment_container{

}
.comment_container ul{
  margin-top: -0.5rem;
  border-top: 0.1rem solid #9EACB4;
  padding: 0.3rem 1rem 0.5rem;
}
.comment_container li{
  padding-top: 0.5rem;
  padding-left: 1rem;
  text-indent: -1.4rem;
}
/*カレンダー(datepicker)デザイン----------------------------------------------*/
.ui-widget {
  font-family: 'ヒラギノ角ゴシック','Hiragino Sans','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','ヒラギノ角ゴ StdN','Hiragino Kaku Gothic StdN','Meiryo UI','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic','ＭＳ ゴシック',sans-serif;
}
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
  font-family: 'ヒラギノ角ゴシック','Hiragino Sans','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','ヒラギノ角ゴ StdN','Hiragino Kaku Gothic StdN','Meiryo UI','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic','ＭＳ ゴシック',sans-serif;
}

/* jquery ui dialog のタイトルバー非表示 */
.no-titlebar, .ui-dialog-titlebar {
  display: none;
}

.dlg_trans.ui-widget.ui-widget-content {
  border: none;
  background-color: transparent;
}

/* カレンダー 100にしないと前面に出ない */
.ui-datepicker { font-size: 150%; z-index: 101 !important; }
.ui-datepicker .ui-datepicker-header { font-size: 1.6rem; }
.ui-datepicker table { font-size: 1.5rem; }
.ui-datepicker td { font-size: 1.5rem; }
.ui-datepicker .ui-datepicker-buttonpane { font-size: 1.5rem; }
.ui-datepicker .ui-delete-date {
	background-color: #E9474D !important;
	color: #fff !important;
}

.ui-tpicker-grid-label { width: 190px !important; margin-left: -5% !important; }
.ui-tpicker-grid-label td { font-size: 1.3rem; }
.ui-timepicker-div dl dd {
  margin: 0 10px 10px 20%;
}
.ui-datepicker .ui-icon {
  left: 1em;
  top: 1.2em;
}

/*見出し*/
.ui-widget-header {
  color: white;
  background: #334149;
}
/*移動ボタン*/
.ui-datepicker .ui-datepicker-next ,
.ui-datepicker .ui-datepicker-prev{
  background-color: #E6EBEE;
}
.ui-datepicker .ui-datepicker-next:hover ,
.ui-datepicker .ui-datepicker-prev:hover{
  border: 0;
}
/*曜日*/
.ui-datepicker th{
  background-color: #E6EBEE;
  color: #212B32;
}
/* 日曜日のカラー設定 */
.ui-datepicker-calendar tr td:first-child a{
  color: #E9474D;
}
.ui-datepicker th:first-child{
  color: #E9474D;
}
/* 土曜日のカラー設定 */
.ui-datepicker-calendar tr td:last-child a{
  color: #3B82C5;
}
.ui-datepicker th:last-child{
  color: #3B82C5;
}
/*年月は文字色変えない用*/
.ui-priority-secondary {
	color: #333 !important; 
}
/*今日*/
.ui-widget-content
.ui-state-highlight{
  background-color: #FEDC5E;
  color: #212B32
}
.ui-state-active, .ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active, a.ui-button:active,
.ui-button:active, .ui-button.ui-state-active:hover{
  background: #EC7AA1;
}

/*顧客＆車両情報テキスト*/
.user-car_text{
  font-size: 1.4rem;
  letter-spacing: 1pt;
  color: #334149;
  word-break: keep-all;
  font-weight: bold;
}
.user-car_text div{
  display: flex;
}
.user-car_text p{
  word-break: keep-all;
}
.user-car_text .car_icon{
  color: #3B82C5;
  margin-right: 0.3rem;
  font-size: 1.4rem;
}
.user-car_text .shop_icon{
  color: #3B82C5;
  font-size: 1.6rem;
  margin-right: 0.4rem;
}
/* ---------------------------------------------------------------------------------------------------------------- */
/*ログイン画面*/
/* ---------------------------------------------------------------------------------------------------------------- */
/*背景----------------------------------------------------------------------- */
.login_bg{
  background-color: #334149;
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}
.login_item_wrap{
  width:35rem;
  margin: auto;
  text-align: center;
  position: relative;
  top: 45%;
  /*子要素の高さの半分を引き戻す*/
  -webkit-transform: translateY(-45%);
  transform: translateY(-45%);
}
/*ロゴ----------------------------------------------------------------------- */
.login_logo{
  height: 11rem;
  margin-bottom: 6rem;
}
/*エラーメッセージ*/
.login_item_wrap .exclamation_icon{
  margin-right: 0.5rem;
  font-size: 1.8rem;
}
.login_comment{
  margin-right: 0.5rem;
  font-weight: bold;
  color: #FEDC5E;
  margin-bottom: 1rem;
  text-align: left;
  padding-left: 0.8rem;
  font-size: 1.4rem;
}

/*テキストボックス*/
.login_text{
  margin-bottom: 3rem;
}
.login_text:nth-child(3){
  margin-bottom:  6rem;
}
.login_text input{
  font-size: 1.4rem;
  font-weight: bold;
  box-sizing: border-box;
  width: 34rem;
  height: 5rem;
  padding: 0.5rem 0 0.5rem 3.7rem;
  letter-spacing: 1pt;
  color:#334149;
  border: none;
  border-radius: 0.5rem;
}
.login_text input[type='text']:focus{
  border: none;
}
/*ユーザー*/
.login_text .user_icon:before {
  content:"\f007";
  font-family: "FontAwesome";
  font-size: 2rem;
  padding: 1.1rem 0.5rem 0.5rem 1.2rem;
  color: #9EACB4;
  position: absolute;
  z-index: 1;
}
/*アイコン*/
/*鍵*/
.login_text .key_icon:before {
  content:"\f084";
  font-family: "FontAwesome";
  font-size: 2rem;
  padding: 1.1rem 0.5rem 0.5rem 1rem;
  color: #9EACB4;
  position: absolute;
  z-index: 1;
}
.login_item_wrap .checkbox span{
  color: #FFF;
}
.login_item_wrap .checkbox span::before{
  background-color: #FFF;
}
/*ログインボタン*/
.login_item_wrap button{
  letter-spacing: 0.2em;
  display: block;
  margin:2.5rem auto;
  font-weight: bold;
  width: 20rem;
  padding: 1rem 1rem;
  height: 5.5rem;
  font-size: 1.6rem;
  border-radius: 4rem;
  border: none;
  color: #FFF;
  cursor: pointer;
  background-color: #3FAB9B;
}
.login_item_wrap button:hover{
  transition:0.3s;
  background-color: #FEDC5E;
}
/*コピーライト*/
.login_copyright{
  color: #FFF;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.5pt;
  margin-top: 7rem;
}

/* ---------------------------------------------------------------------------------------------------------------- */
/*ヘッダーに適用するCSS/*
/* ---------------------------------------------------------------------------------------------------------------- */
/*ヘッダーバー--------------------------------------------------------------- */
#header_wrap{
  padding: 1.1rem 2rem 1rem;
  box-sizing: border-box;
  color: #FFF;
  position: fixed;
  width: 100%;
  z-index: 1;
}
/*ロゴ----------------------------------------------------------------------- */
#header_logo{
  height: 4rem;
  margin-right: 1rem;
  transform: none;
}
@media only screen and (max-width:1024px){
  #header_logo{
    margin-left: 6rem;
  }
}
/*ヘッダー/ログインユーザアイコン---------------------------------------------*/
#header_wrap .user-icon:before {
  content:"\f007";
  font-family: "FontAwesome";
  margin-right: 0.8rem;
  line-height: 2.2;
  font-size: 1.7rem;
  color: #FFF;
}
/*ヘッダーユーザー情報------------------------------------------------------- */
#header_user-name{
  color: #FFF;
  font-size: 1.2rem;
  margin-right: 2rem;
  padding-bottom: 0rem;
  line-height: 1.5;
  font-weight: bold;
  word-break: keep-all;
}
/*ログアウトボタン----------------------------------------------------------- */
.log-out_button{
  padding: 0 2rem;
  height: 4rem;
  background-color: #334149;
  font-size: 1.3rem;
  display: block;
  font-weight: bold;
  border-radius: 3rem;
}
.log-out_button:hover{
  background-color: #FFF;
}

/*サイドメニュー------------------------------------------------------------- */
#side-menu_wrap{
  background-color: #334149;
  width: 25rem;
  min-height: -webkit-calc(100vh - 6rem);
  min-height: calc(100vh - 6rem);
  height: calc(100% - 6rem);
  margin-top: 6.1rem;
  position: fixed;
  overflow: auto;
  z-index: 100;
  font-weight: bold;
}
/*ボタン非表示*/
#main_menu-button_wrap{
  display: none;
}
/*小さめのデスクトップサイズでボタン表示*/
@media only screen and (max-width:1024px){
  #main_menu-button_wrap{
    display: block;
  }
}
/*小さめのデスクトップサイズでメニューを左に隠す*/
@media only screen and (max-width:1024px){
  #side-menu_wrap{
    left: -25rem;
    transition: 0.3s;
  }
}
/*ボタンクリックでメニューを元の位置に移動*/
@media only screen and (max-width:1024px){
  #side-menu_wrap.open{
    left: 0;
    transition: 0.3s;
  }
}

#log_out-menu_wrap{
	background-color: #334149;
	width: 30rem;
	/*
	min-height: -webkit-calc(100vh - 6rem);
	min-height: calc(100vh - 6rem);
	height: calc(100% - 6rem);
	*/
	margin-top: 6.1rem;
	position: fixed;
	overflow: auto;
	z-index: 100;
	font-weight: bold;
	display: none;
	right: 0;
	transition: 0.3s;	
}
#log_out-menu_wrap.open{
	display: block;
}



/*タブレットメインメニュー--------------------------------------------------- */
/*ボタン外枠*/
#main_menu-button{
  display: inline-block;
  position: absolute;
  width: 6rem;
  height: 100%;
  margin: -1.1rem -2rem;
  padding-right: 2rem;
  box-sizing: border-box;
  cursor: pointer;
  background-color: #334149;
}
#log_out-button{
  display: inline-block;
  position: absolute;
  width: 6rem;
  height: 100%;
  margin: -1.1rem -4rem;
  padding-right: 2rem;
  box-sizing: border-box;
  cursor: pointer;
  background-color: #334149;
}
/*タブレットメインメニューアイコン*/
#main_menu-button_line, #log_out-button_line{
  position: absolute;
  top: 47%;
  left: 25%;
  width: 3rem;
  height: 0.3rem;
  background-color: #FFF;
}
#main_menu-button_line:before,
#main_menu-button_line:after,
#log_out-button_line:before,
#log_out-button_line:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 3rem;
  height: 0.3rem;
  background-color: #FFF;
  transition: .3s;
}
#main_menu-button_line:before,
#log_out-button_line:before {
  margin-top: -1.3rem;
}
#main_menu-button_line:after,
#log_out-button_line:after {
  margin-top: 1.1rem;
}
/*×を作る設定*/
#main_menu-button .close, #log_out-button .close {
  background: transparent;/*透過*/
}
#main_menu-button .close:before,
#main_menu-button .close:after,
#log_out-button .close:before,
#log_out-button .close:after {
  margin-top: 0;
}
#main_menu-button .close:before,
#log_out-button .close:before {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
#main_menu-button .close:after,
#log_out-button .close:after {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

/*aタグ設定*/
#side-menu_wrap a,
#log_out-menu_wrap a {
  text-decoration: none;
  outline: none;
  color: #FFF;
}
nav ul{
  cursor: pointer;
  font-size: 1.2rem;
}
nav ul li{
  padding: 1.3rem 0 1.3rem 2.5rem;
  border-bottom: 0.1rem solid #9EACB4;
}
.border_top_hover:hover{
  border-top:0.1rem solid #FFF;
}
.menu_border-top{
  border-top: 0.1rem solid #334149;
}
.menu_border-top:hover{
  border-top: 0.1rem solid #E6EBEE;
}
@media only screen and (max-width:1024px){
  nav ul li{
    padding: 1.7rem 0 1.7rem 1.7rem;
  }
}
/*コピーライト*/
.copyright{
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-size: 1rem;
  color: #FFF;
}
@media only screen and (max-height:768px){
  .copyright{
    display: none;
  }
}
/* ---------------------------------------------------------------------------------------------------------------- */
/*ロード画面CSS*/
/* ---------------------------------------------------------------------------------------------------------------- */
/*大枠*/
.load_wrap{
  width: 100%;
  height: 100vh;
  position: relative;
}
/*配置*/
.load_container{
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateY(-45%) translateX(-50%);
  -webkit-transform: translateY(-45%) translateX(-50%);
  text-align: center;
}
/*車画像*/
.load_img{
  width: 25rem;
}
/*テキスト*/
.load-text {
  margin-top: -0.2rem;
  font-size: 2.5rem;
  font-weight: bold;
  position:relative;
}
.load-text span {
  position:relative;
  text-align: center;
  margin-left: -0.8rem;
  visibility:hidden;
  opacity:0;
  animation:load 5s ease-in-out;
  animation-iteration-count:infinite;
}
.load-text span:nth-of-type(1) {
  animation-delay:0s;
  margin-left: 0.3rem;
}
.load-text span:nth-of-type(2) {
  animation-delay:0.1s;
}
.load-text span:nth-of-type(3) {
  animation-delay:0.2s;
}
.load-text span:nth-of-type(4) {
  animation-delay:0.3s;
  margin-left: 0.3rem;
}
.load-text span:nth-of-type(5) {
  animation-delay:0.4s;
}
.load-text span:nth-of-type(6) {
  animation-delay:0.5s;
}
.load-text span:nth-of-type(7) {
  animation-delay:0.6s;
}
.load-text span:nth-of-type(8) {
  animation-delay:0.7s;
}
.load-text span:nth-of-type(9) {
  animation-delay:0.8s;
}
.load-text span:nth-of-type(10) {
  animation-delay:0.9s;
}
.load-text span:nth-of-type(11) {
  animation-delay:1s;
}
@keyframes load {
  0% {visibility:visible; opacity:1;}
  50% {visibility:hidden; opacity:0;}
  100% {visibility:hidden; opacity:0;}
}
#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-color: white;
  z-index: 200;
}
#loader {
  display: none;
  position: fixed;
  top: 45%;
  left: 50%;
  width: 200px;
  margin-top: -100px;
  margin-left: -100px;
  text-align: center;
  color: white;
  z-index: 201;
}
#load_img{
  width: 200px;
}
.load_wrap {
  display: none;
  position: fixed;
  z-index: 200;
  top: 0px;
  left: 0px;
  background-color: #E6EBEE;
}
.load_container { z-index: 201; }
/* ---------------------------------------------------------------------------------------------------------------- */
/*ダイアログ設定*/
/* ---------------------------------------------------------------------------------------------------------------- */
/*オーバーレイ表示時スクロール非表示（JQ切替）-------------------------------- */
.overflow_hidden{
	height: 100%;
  overflow: hidden;
}
.dialog_overlay{
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /*  overflow: auto;*/
  background: rgba(10,10,10, 0.8);
  z-index: 1;
}
.dialog_white_space{
  background-color: #FFF;
  width: 75rem;
  height: 90vh;
  position: relative;
  top: 5vh;
  margin: auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.dialog_transparent_space{
  width: 75rem;
  height: 90vh;
  position: relative;
  top: 5vh;
  margin: 0 auto;
  overflow: auto;
}
.dialog_transparent_space img{
  width: 100%;
  margin-top: 1rem;
}
.dlg_no-scroll{
  height: auto;
  top: 45%;
  /*子要素の高さの半分を引き戻す*/
  -webkit-transform: translateY(-45%);
  transform: translateY(-45%);
}

/* ---------------------------------------------------------------------------------------------------------------- */
/*ダイアログ内コンテンツ基本*/
/* ---------------------------------------------------------------------------------------------------------------- */
.dialog_wrap{
  padding: 0 3rem 3rem;
}
/*フォーム*/
.dialog_item_area{
  padding: 0.5rem 1rem 1.5rem 1rem;
  margin-top: 1rem;
  border-bottom: 0.1rem solid #9EACB4;
  word-break: keep-all;
  position: relative;
}
.dialog_item_area:last-child{
  padding: 0 1rem 0 1rem;;
  border-bottom: none;
}
/*フォームサイズ*/
.dialog_item_area input[type="text"]{
  width: 20rem;
  margin-right: 2rem;
}
.dialog_item_area .width_full{
  width: 66rem;
}
.dialog_item_area select{
  min-width: 12rem;
  margin-right: 2rem;
}
.dialog_item_group input[type="text"]{
  margin-right: 0.8rem;
}
.dialog_item_group select{
  margin-right: 0.8rem;
}
.datepicker input[type="text"]{
  margin-right: 0;
}
.datepicker{
  color: #398E5D;
}
/* ---------------------------------------------------------------------------------------------------------------- */
/*ダイアログ-案件情報*/
/* ---------------------------------------------------------------------------------------------------------------- */
.dig_result_radio{
  padding-right: 1.2rem;
}
.dig_result_radio div{
  margin: 0.3rem 0;
}
.dig_result_radio h5{
  margin: 1.2rem 1rem 0 0;
}
.contract{
  margin-top: 5rem;
}
.contract div{
  padding-top: 0.6rem;
}
.contract h5{
  margin: 1.2rem 1rem 0 0;
}
/* ---------------------------------------------------------------------------------------------------------------- */
/*ダイアログ-顧客情報*/
/* ---------------------------------------------------------------------------------------------------------------- */
/*郵便番号*/
.dialog_address .postal_code span{
  font-weight: bold;
  font-size: 1.7rem;
  margin-right: -0.5rem;
}
.dialog_address .postal_code input{
  width: 7rem;
  margin:0 0.5rem;
}
/*メールアドレス*/
.a-mark{
  margin: 0.8rem 1.5rem 0 -1.5rem;
  font-size: 1.7rem;
  font-weight: bold;
}
/*キャリア携帯ドメインボタン*/
.domain{
  margin-left: -1rem;
}
.domain input[type="text"]{
  width: 15rem;
  margin-right: 0.3rem;
}
.domain button{
  padding: 0 1.5rem;
  height: 3.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 2rem;
}
@media only screen and (max-width:1024px){
  height: 4rem;
}
/*登録番号*/
.license_number select{
  margin-right: 0.5rem;
}
.license_number input[type="text"]{
  width: 5rem;
  margin-right: 0.5rem;
}
.car{
  margin: 0 0 0 3rem;
}
.car input[type="text"]{
  width: 20rem;
  margin-right: 0;
}
/* ---------------------------------------------------------------------------------------------------------------- */
/*ダイアログ-見積*/
/* ---------------------------------------------------------------------------------------------------------------- */
/*料金合計*/
.total td{
  text-align: center;
  border: none;
  height: 2rem;
  font-weight: bold;
}
.total td:last-child{
  text-align: left;
  border-bottom: 0.1rem solid #9EACB4;
  height: 2rem;
}
.grid-table{
  margin-bottom: 3rem;
}
.grid-table th{
  width: 6rem;
  border-right: none;
  background: #E6EBEE;
}
.grid-table td{
  width: 8rem;
}
.grid-table tr:last-child th,
.grid-table tr:last-child td{
  border-bottom: 0.1rem solid #9EACB4;
}
/* ---------------------------------------------------------------------------------------------------------------- */
/*ダイアログ-車両写真*/
/* ---------------------------------------------------------------------------------------------------------------- */
.dlg_estimate_car-img img{
  width:100%;
}
.dlg_estimate_car-img img:hover{
  opacity: 0.8;
  cursor: pointer;
  transition: 0.3s;
}
.dlg_estimate_car-img button{
  margin: 0.8rem 0 ;
  text-align: center;
  width: 100%;
}
/*基本画像エリア*/
.dlg_estimate_car-img .main_area div{
  width:33%;
  margin: 0.5rem 1rem 0 0;
}
.dlg_estimate_car-img p{
  font-weight: bold;
  margin: 0.3rem;
  font-size: 1.4rem;
}
/*予備画像エリア*/
.dlg_estimate_car-img .other_area div{
  width:15.4%;
  margin-top: 0.5rem;
  margin-right: 1rem;
}
/*右端の右マージン0*/
.dlg_estimate_car-img .main_area div:nth-child(3),
.dlg_estimate_car-img .other_area div:nth-child(6),
.dlg_estimate_car-img .other_area div:nth-child(12){
  margin-right: 0;
}
/* ---------------------------------------------------------------------------------------------------------------- */
/*ダイアログ-工場スケジュール登録*/
/* ---------------------------------------------------------------------------------------------------------------- */

/*日付金額表示-タイトル下-----------------------------------------------------*/
.dlg_schedule_area{
  margin: 0.5rem 0 0;
  padding-bottom: 0.8rem;
  font-weight: bold;
}
.dlg_schedule_area p{
  font-size: 3.2rem;
}
.dlg_schedule_area p span{
  font-size: 70%;
}
.dlg_schedule_area .day_change button{
  margin: 0.3rem 1rem 0 0.6rem;
}
.dlg_schedule_area .day_change button:first-child{
  margin-left: 0;
}
/*アイコン設定*/
.dlg_schedule_area .yen_circle{
  margin: 1rem 0.5rem 0 0.5rem;
  position: relative;
}
.dlg_schedule_area .yen_icon{
  top: 0.55rem;
  left: 0.9rem;
  position: absolute;
}
.dlg_schedule_area .car_icon{
  font-size: 1.9rem;
  color: #707F87;
  margin: 1rem 0.5rem 0 1.5rem;
}
/*日付金額表示-タイトル上-----------------------------------------------------*/
.title-button_wrap .dlg_schedule_area{
  margin: 0;
  border: none;
  padding-bottom: 0;
}
.other-day_wrap{
  border-top: solid 0.1rem #9EACB4;
  border-bottom: solid 0.1rem #9EACB4;
  background-color: #F2F5F7;
}
.other_money{
  padding: 0.4rem;
  padding-left: 2rem;
}
.other_money li{
  list-style: disc;
  margin-right: 2rem;
  color: #3FAB9B;
  font-weight: bold;
}
.other_money li span{
  color: #212B32;
  font-size: 1.1rem;
}
/*アイコン設定----------------------------------------------------------------*/
.other_money .yen_circle{
  margin-right: 0.5rem;
}
.other_money .yen_icon:before{
  font-size: 1.2rem;
}
.regist_table {
  margin-top: 2rem;
}
.dialog_overlay .regist_table th{
  font-size: 1.5rem;
  text-align: left;
  padding: 1.5rem 0;
}
/*登録フォーム----------------------------------------------------------------*/
.regist_container h5{
  font-size: 1.5rem;
  padding: 1.2rem 0;
  margin-right: 0.5rem;
  width: 7.5rem;
}
.regist_container select{
  min-width: 5rem;
}
.regist_container p{
  margin-top: 1rem;
  margin-left: 0.5rem;
  font-size: 1.5rem;
}
.regist_container textarea{
  width:32rem;
}
/*参照リスト------------------------------------------------------------------*/
.reference_area{
  margin-top: 0.75rem;
  margin-bottom: 3rem;
}
.reference_area img{
  width: 18.5rem;
  margin-top: 0.7rem;
}
.reference_area table{
  width: 23.5rem;
  margin-left: 1.5rem;
  text-align: left;
}
.reference_area table td{
  height: 1.6rem;
}
/*下線------------------------------------------------------------------------*/
.dialog_overlay .reference_area table th{
  width: 2rem;
  border-bottom: 0.1rem solid #9EACB4;
}
.reference_area table:last-child th,
.reference_area table td:last-child{
  border-bottom: 0.1rem solid #9EACB4;
}
.memo{
  margin: 1.25rem 0 3rem;
  text-align: left;
  line-height: 0.5;
}

/* ---------------------------------------------------------------------------------------------------------------- */
/*ダイアログ-修理事例車両写真*/
/* ---------------------------------------------------------------------------------------------------------------- */
/*画像選択エリア*/
.dlg_repair_car-img  .square_box {
  float: right;
  margin-right: 5rem;
  margin-bottom: 0.5rem;
}
.dlg_repair_car-img div{
  margin-top: 1rem;
  width:17rem;
}
.dlg_repair_car-img img{
  width:100%;
}
.dlg_repair_car-img img:hover{
  opacity: 0.8;
  cursor: pointer;
  transition: 0.3s;
}
.dlg_repair_car-img button{
  margin: 0.8rem 0 ;
  text-align: center;
  width:100%;
  display: block;
}
/*登録フォーム*/
.dig_repair_container{
  margin-top: 2.5rem;
}
.dig_repair_container .flex_div div{
  margin-top: 0.5rem;
}
.dig_repair_container h5{
  font-size: 1.4rem;
  padding: 1.2rem 0;
  width: 15rem;
}
.dig_repair_container input[type="text"]{
  width:15rem;
}
.dig_repair_container .datepicker input[type="text"]{
  width:15rem;
}
.dig_repair_container textarea{
  width:33rem;
  min-height: 10rem;
}
.dig_repair_container span{
  float: right;
  margin-right: 1rem;
}
/* ---------------------------------------------------------------------------------------------------------------- */
/*店舗トップページ*/
/* ---------------------------------------------------------------------------------------------------------------- */
.index_news{
  margin-bottom: 2rem;
}
.index_newstd{
  font-size: 1.3rem;
}
.index_news table{
  width: 100%;
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;

}
.index_news th{
  font-size: 1.4rem;
  width: 9rem;
  padding: 1rem 0.7rem;;
  border-bottom: 0.1rem solid #9EACB4;
}


/*横50％コンテナ--------------------------------------------------------------*/
.half_list_column{
  width: -webkit-calc(50% - 1rem);
  width: calc(50% - 1rem);
  text-align: left;
  word-break: normal;
  margin-right: 2rem;
  background-color: #FFF;
}
.half_list_column:last-child{
  margin-right: 0;
}

/*横60％コンテナ--------------------------------------------------------------*/
.sixty_list_column{
  width: -webkit-calc(60% - 1rem);
  width: calc(60% - 1rem);
  text-align: left;
  word-break: normal;
}

/*横40％コンテナ--------------------------------------------------------------*/
.forty_list_column{
  width: -webkit-calc(40% - 1rem);
  width: calc(40% - 1rem);
  text-align: left;
  word-break: normal;
}


/*スケジュール----------------------------------------------------------------*/
@media only screen and (max-width:1366px){
  .index_schedule{
    flex-direction: column;
  }
  .list_area .index_schedule table{
    width: 100%;
  }
  .index_schedule table thead th{
    text-align: left;
  }
  .index_schedule table:last-child{
    margin-top:1rem;
  }
}
@media only screen and (max-width:1024px){
  .index_schedule{
    flex-direction: row;
  }
  .list_area .index_schedule table{
    width: 50%;
  }
  .index_schedule table thead th{
    text-align: center;
  }
  .index_schedule table:last-child{
    margin-top:0;
  }
}
@media only screen and (max-width:920px){
  .index_schedule{
    flex-direction: column;
  }
  .list_area .index_schedule table{
    width: 100%;
  }
  .index_schedule table thead th{
    text-align: left;
  }
  .index_schedule table:last-child{
    margin-top:1rem;
  }
}
.half_list_column label input[type="text"]{
  width: 13.5rem;
}
/*活動報告--------------------------------------------------------------------*/
.index_schedule thead th{
  background-color: #FFF;
  color: #212B32;
}
.list_area .index_schedule tbody th{
  background-color: #FFF;
  width: 10.5rem;
}
.index_schedule tbody td{
  background-color: #FFF;
  height: 2.3rem;
}
.index_schedule .bg_text{
  padding: 0.25rem;
  margin-left: 0.5rem;
  margin-right: 1rem;
  width: 3rem;
  text-align: center;
  display: inline-block;
}
/*見積件数登録----------------------------------------------------------------*/
.index_estimate{
  border-top: 0.1rem solid #9EACB4;
}

.index_estimate div{
  margin-top: 1.5rem;
  margin-right: 1.5rem;
}
.index_estimate div input[type="text"]{
  width:5rem;
  margin-left: 0.5rem;
}
.index_estimate p{
  font-size: 1.5rem;
  margin-left: 0.5rem;
}
.index_estimate button{
  margin-top: 1.5rem;
  margin-right: 3rem;
  margin-left: -0.5rem;
}

/*未入力ボタン----------------------------------------------------------------*/
.list_area .button_table{
  padding-top: 0.3rem;
  border-top: 0.1rem solid #9EACB4;
  width: 100%;
}
.list_area button{
  margin-left: 2rem;
}
/* ---------------------------------------------------------------------------------------------------------------- */
/*管理店トップページ*/
/* ---------------------------------------------------------------------------------------------------------------- */
.supporter_store_table{
  margin-top: 2rem;
  font-size: 1.2rem;
}
.supporter_store_table th{
  word-break: normal;
}
.supporter_store_table .table_box tbody th{
  background-color: #FFF;
}
.bg-color_light-gray td{
  background-color: #E6EBEE;
}
.supporter_store_table td{
  padding:0.5rem;
}
.supporter_store_table div{
  margin-bottom: 0.5rem;
  word-break: keep-all;
}
.br-block{
  display: none;
}
@media only screen and (max-width:1366px){
  .br-block{
    display: block;
  }
}

/* ---------------------------------------------------------------------------------------------------------------- */
/*情報ページ-案件詳細*/
/* ---------------------------------------------------------------------------------------------------------------- */
/*2カラムリストを並列に-------------------------------------------------------*/
/*1366pxでflexをblockに切替*/
.two-column_container{
  width: 100%;
  word-break: break-all;
  display: flex;
}
@media only screen and (max-width:1366px){
  .two-column_container{
    margin-right: 2rem;
    display: block;
    width: -webkit-calc(70% - 2rem);
    width: calc(70% - 2rem);
  }
}
/*2カラムリスト---------------------------------------------------------------*/
/*1920px=50% ➜1366px=70％ ➜ 1024px=100%)*/
.two-column_list{
  width: 100%;
  margin-right: 2rem;
  background: #FFF;
}
.two-column_list:last-child{
  margin-right: 0;
}
@media only screen and (max-width:1366px){
  .two-column_list:last-child{
    margin-top: 2rem;
  }
}
@media only screen and (max-width:1024px){
  .two-column_container{
    width: 100%;
  }
}
/*1カラムリスト内ボタン*/
.two-column_button{
  margin: 1rem 0 1rem 0;
  padding-top: 1.8rem;
  border-top: 0.1rem solid #9EACB4;
}
.two-column_list .memo{
  width: 100%;
  padding-top: 1rem;
  text-align: left;
  border-top: 0.1rem solid #9EACB4;
  line-height: 0.5;
}
/*1カラムリスト---------------------------------------------------------------*/
/*1920px=30% ➜1366px=30％ ➜ 1024px=100%)*/
.one-column_list{
  width: 30%;
  margin-right: 2rem;
  margin-top:2rem;
}

@media only screen and (max-width:1366px){
  .one-column_list{
    width: 30%;
    margin-right: 0;
    margin-top:0;
  }
}
@media only screen and (max-width:1024px){
  .one-column_list{
    width: 100%;
    margin-top:2rem;
  }
}
/*1カラムリスト内ボタン*/
.one-column_button{
  text-align: center;
  margin: 1rem 0 1rem 0;
  padding-top: 1.8rem;
  border-top: 0.1rem solid #9EACB4;
}
@media only screen and (max-width:1024px){
  .one-column_button{
    text-align: left;
  }
}
/*テーブル表リスト------------------------------------------------------------*/
/*1920px=70% ➜1366px=100％ ➜ 1024px=100%)*/
.list-table_container{
  width: -webkit-calc(70% - 2rem);
  width: calc(70% - 2rem);
  margin-top:2rem
}
@media only screen and (max-width:1366px){
  .list-table_container{
    width:100%;
  }
}
/*情報テーブル設定------------------------------------------------------------*/
.list_area table{
  width: 48%;
  text-align: left;
}
.list_area table:first-child{
  padding-right: 2%;
}
.list_area table th{
  font-size: 1.3rem;
  border-bottom: 0.1rem solid #9EACB4;
  width: 8rem;
  min-width: 8rem;
}
.list_area td{
  font-size: 1.2rem;
  border-bottom: 0.1rem solid #9EACB4;
}
/*テーブル表リスト設定*/
.one-column_list table{
  text-align: left;
  background: #FFF;
}
.one-column_list th{
  font-size: 1.3rem;
  border-bottom: 0.1rem solid #9EACB4;
  padding: 0.7rem 0 1rem 0.5rem;
  width: 8rem;
  min-width: 6rem;
}
.one-column_list td{
  font-size: 1.2rem;
  border-bottom: 0.1rem solid #9EACB4;
}
@media only screen and (max-width:1024px){
  .one-column_list table{
    text-align: left;
    width: 46%;
  }
}
/*情報ページ住所項目設定*/
.address_list{
  padding: 1.2rem;
}
.address_list p{
  padding: 0.1rem;
}
/*案件車両画像*/
.result_car-image{
  width:	70px;
  margin-right: 1rem;
}
@media only screen and (max-width:1024px){
  .result_car-image{
    height: 5rem;
  }
}
/*作業履歴--------------------------------------------------------------------*/
.work_history{
  margin-top: 2rem;
}
.work_history table{
  width: auto;
}
.work_history th{
  padding: 0.2rem 2rem !important;;
}
.work_history td{
  text-align: center;
}
.work_history td:first-child{
  text-align: left;
}
.work_history td:last-child{
  text-align: right;
}

/* ---------------------------------------------------------------------------------------------------------------- */
/*情報ページ-新規見積登録*/
/* ---------------------------------------------------------------------------------------------------------------- */
.half_list{
  width: -webkit-calc(50% - 1rem);
  width: calc(50% - 1rem);
  background-color: #FFF;
  text-align: left;
  word-break: normal;
}
.half_list table:last-child{
  margin-left: auto;
}
.half_list th{
  width:1rem;
  color: #707F87;
}
.half_list td{
  border-bottom: 0.1rem solid #9EACB4;;
}

/*見積もり＆車両写真 テーブル*/
.bottom_area{
  margin-top: 2rem;
}
/*カレンダー*/
.half_list .calendar-icon:before {
  font-size: 1.2rem;
  margin-left:0;
  cursor:  auto;
}
.ui-datepicker-trigger{
  color: #3FAB9B;
  border:none;
  background:none;
  font-size: 2.2rem !important;
  float: right;
  line-height: 3rem;
  height: 3rem;
  margin-top: 0.2rem;
  width: auto !important;
}

.ui-datepicker-trigger:hover {
  background-color: transparent;
}
/*カレンダー*/
.half_list .car_icon:before {
  font-size: 1.2rem;
  margin-left:-0.2rem;
  cursor:  auto;
}
/*見積情報*/
.half_estimate table{
  word-break: normal;
  width: -webkit-calc(100% - 23rem);
  width: calc(100% - 23rem);
}

@media only screen and (max-width:1366px){
  .half_estimate table{
    margin-top: 2rem;
    width: 100%;
  }
}
@media only screen and (max-width:1024px){
  .half_estimate table{
    margin-top: 0;
    width: -webkit-calc(100% - 23rem);
    width: calc(100% - 23rem);
  }
}
@media only screen and (max-width:920px){
  .half_estimate table{
    margin-top: 2rem;
    width: 100%;
  }
}

.half_estimate img{
  width:23rem;
  height: 23rem;
}

/*料金表示*/
.estimate_span {
	margin-left: 1rem;
}
@media only screen and (max-width:1024px){
	.estimate_span{
		margin-left: 0;	
	}
	.estimate_span::before{
		content: "\A" ;
		white-space: pre ;
	}
}

/*修理箇所*/
.repair_point ol{
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap:wrap;
}
/*IE8〜11*/
@media screen\0 {
  .repair_point ol{
    display: inline-block;
  }
  .repair_point li{
    display: inline-block;
  }
}
.repair_point li{
  margin-right: 1rem;
  min-width: 9rem
}
/*車両写真配置*/
.estimate_car-img{
  margin: 0.75rem 0;
}
.estimate_car-img img{
  width: 100%;
}
.estimate_car-img a,
.estimate_car-img div{
  width: -webkit-calc(20% - 0.5rem);
  width: calc(20% - 0.5rem);
  height: 100%;
  margin:0.25rem;
  overflow: hidden;	/*拡大時にはみ出た部分を隠す*/
  display: block;
  position: relative;
}
@media only screen and (max-width:1366px){
  .estimate_car-img a,
  .estimate_car-img div{
    width: -webkit-calc(33.3% - 0.5rem);
    width: calc(33.3% - 0.5rem);
  }
}
@media only screen and (max-width:1024px){
  .estimate_car-img a,
  .estimate_car-img div{
    width: -webkit-calc(20% - 0.5rem);
    width: calc(20% - 0.5rem);
  }
}
@media only screen and (max-width:920px){
  .estimate_car-img a,
  .estimate_car-img div{
    width: -webkit-calc(33.3% - 0.5rem);
    width: calc(33.3% - 0.5rem);
  }
}
.estimate_car-img a img:hover{
  opacity: 0.8;
  transform: scale(1.15);	/*画像の拡大率*/
  cursor: pointer;
  transition: 0.3s;
}
/**************************************/
/* 見積詳細の画像塗りつぶし */
/**************************************/
#car_parts_select { position: relative; }
#car_parts_select img { position: absolute; z-index: 1; }
#car_parts_select img.parts_paint { z-index: 2; }

/* 画像位置 */
/* 1 */
#car_parts_select img#cm01{
  top:23px;
  left:134px;
  width: 41px;
  height: 22px;
}
/* 2 */
#car_parts_select img#cm02{
  top:10px;
  left:94px;
  width: 43px;
  height: 35px;
}
/* 3 */
#car_parts_select img#cm03{
  top:10px;
  left:58px;
  width: 39px;
  height: 34px;
}
/* 4 */
#car_parts_select img#cm04{
  top:9px;
  left:23px;
  width: 53px;
  height: 36px;
}
/* 5 */
#car_parts_select img#cm05{
  top:93px;
  left:23px;
  width: 40px;
  height: 21px;
}
/* 6 */
#car_parts_select img#cm06{
  top:79px;
  left:60px;
  width: 43px;
  height: 35px;
}
/* 7 */
#car_parts_select img#cm07{
  top:79px;
  left:100px;
  width: 40px;
  height: 35px;
}
/* 8 */
#car_parts_select img#cm08{
  top:78px;
  left:120px;
  width: 56px;
  height: 37px;
}
/* 9-1 */
#car_parts_select img#cm09{
  top:40px;
  left:165px;
  width: 10px;
  height: 10px;
}
/* 9-2 */
#car_parts_select img#cm10{
  top:109px;
  left:23px;
  width: 10px;
  height: 10px;
}
/* 9-3 */
#car_parts_select img#cm11{
  top:177px;
  left:8px;
  width: 64px;
  height: 15px;
}
/* 10-1 */
#car_parts_select img#cm12{
  top:40px;
  left:22px;
  width: 25px;
  height: 11px;
}
/* 10-2 */
#car_parts_select img#cm13{
  top:109px;
  left:149px;
  width: 26px;
  height: 12px;
}
/* 10-3 */
#car_parts_select img#cm14{
  top:207px;
  left:8px;
  width: 65px;
  height: 17px;
}
/* 11 */
#car_parts_select img#cm15{
  top:150px;
  left:114px;
  width: 73px;
  height: 66px;
}
/* 12 */
#car_parts_select img#cm16{
  top:45px;
  left:70px;
  width: 74px;
  height: 6px;
}
/* 13 */
#car_parts_select img#cm17{
  top:115px;
  left:55px;
  width: 72px;
  height: 6px;
}
/* 14 */
#car_parts_select img#cm18{
  top:144px;
  left:10px;
  width: 23px;
  height: 13px;
}
/* 15 */
#car_parts_select img#cm19{
  top:144px;
  left:49px;
  width: 23px;
  height: 13px;
}
/**************************************/
/* 見積設定の画像りつぶし・リンクボタン */
/**************************************/
#car_parts_area_dlg {
  position: absolute;
  width: 60rem;
  height: 60rem;
  text-align:center;
  background-color: #fff;
  border:#999999 solid 1px;
  -moz-border-radius: 10px; /* Firefox */
  -webkit-border-radius: 10px; /* Safari and Chrome */
  border-radius: 10px;
  behavior: url(border-radius.htc); /* IE */
  display: none;
  top: 90px;
  left: 10rem;
  z-index: 99;
}

#car_parts_select_dlg { position: relative; }
#car_parts_select_dlg img { position: absolute; }
#car_parts_select_dlg img.parts_all { top: 0; left: 35px; width: 55rem; height: 55rem; z-index: 100; }
#car_parts_select_dlg img.parts_paint { z-index: 101; }
#car_parts_select_dlg button {
  position: absolute;
  display: block;
  z-index: 102;
  background-color: #000;
  opacity: 0;
}

/* 画像位置・ボタン位置 */
/* 1 */
#car_parts_select_dlg img#cm01{
  top:55px;
  left:355px;
  width: 97px;
  height: 53px;
}
#car_parts_select_dlg button#at01 {
  top: 55px;
  left: 355px;
  width: 97px;
  height: 53px;
}
/* 2 */
#car_parts_select_dlg img#cm02{
  top:22px;
  left:261px;
  width: 101px;
  height: 86px;
}
#car_parts_select_dlg button#at02 {
  top:22px;
  left:261px;
  width: 101px;
  height: 86px;
}
/* 3 */
#car_parts_select_dlg img#cm03{
  top:21px;
  left:173px;
  width: 95px;
  height: 88px;
}
#car_parts_select_dlg button#at03 {
  top:21px;
  left:173px;
  width: 95px;
  height: 88px;
}
/* 4 */
#car_parts_select_dlg img#cm04{
  top:19px;
  left:89px;
  width: 128px;
  height: 88px;
}
#car_parts_select_dlg button#at04 {
  top:19px;
  left:89px;
  width: 128px;
  height: 88px;
}
/* 5 */
#car_parts_select_dlg img#cm05{
  top:221px;
  left:88px;
  width: 100px;
  height: 54px;
}
#car_parts_select_dlg button#at05 {
  top:221px;
  left:88px;
  width: 100px;
  height: 54px;
}
/* 6 */
#car_parts_select_dlg img#cm06{
  top:187px;
  left:178px;
  width: 105px;
  height: 87px;
}
#car_parts_select_dlg button#at06 {
  top:187px;
  left:178px;
  width: 105px;
  height: 87px;
}
/* 7 */
#car_parts_select_dlg img#cm07{
  top:188px;
  left:272px;
  width: 98px;
  height: 86px;
}
#car_parts_select_dlg button#at07 {
  top:188px;
  left:272px;
  width: 98px;
  height: 86px;
}
/* 8 */
#car_parts_select_dlg img#cm08{
  top:185px;
  left:325px;
  width: 130px;
  height: 89px;
}
#car_parts_select_dlg button#at08 {
  top:185px;
  left:325px;
  width: 130px;
  height: 89px;
}
/* 9-1 */
#car_parts_select_dlg img#cm09{
  top:94px;
  left:430px;
  width: 23px;
  height: 23px;
}
#car_parts_select_dlg button#at09 {
  top:94px;
  left:430px;
  width: 80px; /* 領域狭いとクリックしづらいので塗りつぶしよりも大きめに設定 */
  height: 50px;
}
/* 9-2 */
#car_parts_select_dlg img#cm10{
  top:260px;
  left:89px;
  width: 23px;
  height: 23px;
}
#car_parts_select_dlg button#at10 {
  top:260px;
  left:32px;
  width: 80px; /* 領域狭いとクリックしづらいので塗りつぶしよりも大きめに設定 */
  height: 50px;
}
/* 9-3 */
#car_parts_select_dlg img#cm11{
  top:421px;
  left:52px;
  width: 155px;
  height: 37px;
}
#car_parts_select_dlg button#at11 {
  top:421px;
  left:52px;
  width: 155px;
  height: 37px;
}
/* 10-1 */
#car_parts_select_dlg img#cm12{
  top:95px;
  left:87px;
  width: 61px;
  height: 28px;
}
#car_parts_select_dlg button#at12 {
  top:95px;
  left:68px;
  width: 80px; /* 領域狭いとクリックしづらいので塗りつぶしよりも大きめに設定 */
  height: 50px;
}
/* 10-2 */
#car_parts_select_dlg img#cm13{
  top:261px;
  left:392px;
  width: 62px;
  height: 29px;
}
#car_parts_select_dlg button#at13 {
  top:261px;
  left:392px;
  width: 80px; /* 領域狭いとクリックしづらいので塗りつぶしよりも大きめに設定 */
  height: 50px;
}
/* 10-3 */
#car_parts_select_dlg img#cm14{
  top:495px;
  left:54px;
  width: 154px;
  height: 41px;
}
#car_parts_select_dlg button#at14 {
  top:495px;
  left:54px;
  width: 154px;
  height: 41px;
}
/* 11 */
#car_parts_select_dlg img#cm15{
  top:358px;
  left:307px;
  width: 177px;
  height: 160px;
}
#car_parts_select_dlg button#at15 {
  top:358px;
  left:307px;
  width: 177px;
  height: 160px;
}
/* 12 */
#car_parts_select_dlg img#cm16{
  top:106px;
  left:202px;
  width: 175px;
  height: 18px;
}
#car_parts_select_dlg button#at16 {
  top:106px;
  left:202px;
  width: 175px;
  height: 40px; /* 領域狭いとクリックしづらいので塗りつぶしよりも大きめに設定 */
}
/* 13 */
#car_parts_select_dlg img#cm17{
  top:272px;
  left:164px;
  width: 175px;
  height: 18px;
}
#car_parts_select_dlg button#at17 {
  top:272px;
  left:164px;
  width: 175px;
  height: 40px; /* 領域狭いとクリックしづらいので塗りつぶしよりも大きめに設定 */
}
/* 14 */
#car_parts_select_dlg img#cm18{
  top:343px;
  left:60px;
  width: 54px;
  height: 33px;
}
#car_parts_select_dlg button#at18 {
  top:335px;
  left:52px;
  width: 70px; /* 領域狭いとクリックしづらいので塗りつぶしよりも大きめに設定 */
  height: 49px;
}
/* 15 */
#car_parts_select_dlg img#cm19{
  top:343px;
  left:152px;
  width: 52px;
  height: 31px;
}
#car_parts_select_dlg button#at19 {
  top:335px;
  left:144px;
  width: 68px;
  height: 47px;
}
/* 見積設定画面のキズの大きさ選択ダイアログ */
#parts_size {
  position: absolute;
  width:540px;
  text-align:center;
  background-color: #fff;
  border:#999999 solid 1px;
  -moz-border-radius: 10px; /* Firefox */
  -webkit-border-radius: 10px; /* Safari and Chrome */
  border-radius: 10px;
  behavior: url(border-radius.htc); /* IE */
  display: none;
  top: 0;
  left: 0;
  z-index: 99;
}

#parts_size a:link {
  color: #0000FF;
  text-decoration: underline;
}
#parts_size a:visited {
  color: #0000FF;
  text-decoration: underline;
}
#parts_size a:hover {
  color: #FF0000;
  text-decoration: underline;
}
#parts_size a:active {
  color: #0000FF;
  text-decoration: underline;
}

ol li.other_detail:before {
  content: "\4ED6.";
}
/* ---------------------------------------------------------------------------------------------------------------- */
/*検索ページ*/
/* ---------------------------------------------------------------------------------------------------------------- */
/*検索フォーム--------------------------------------------------------------------*/
.search_container{
  padding: 1rem 0 0;
  position: relative;
}
.search_area input[type="text"]{
  width: 18.5rem;
  margin: 0 1rem 1rem 1rem;
}
@media only screen and (max-width:1024px){
  .search_area input[type="text"]{
    width: 20.8rem;
  }
}
@media only screen and (max-width:768px){
  .search_area input[type="text"]{
    width: 14.4rem;
  }
}
.search_area .action_button{
  width: 10rem;
  margin:0 1rem 1rem 1rem;
}
.search_area h5{
  margin-left: 1rem;
}
.search_area select{
  margin: 0 1rem 1rem 1rem;
}
/*デートピッカー*/
.search_area label input[type="text"]{
  width: 11rem;
}
.search_area .calendar-icon:before {
  margin-left: -0.8rem;
}

/*検索結果エリア------------------------------------------------------------- */
.result_wrap select{
  margin-right: 0.5rem;
  width: 6rem;
}
@media only screen and (max-width:1024px){
  .result_wrap select{
    margin-top: -0.5rem;
  }
}
.result_wrap p{
  margin: 0 0.5rem 0 0.5rem;
}
.result_text .large-number{
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: 0.8pt;
  margin: -1.75rem 0.1rem 0 0.3rem;
}
.result_text{
  margin-top:1rem;
}
.result_text p{
  font-size: 1.7rem;
}
.result_text .display{
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.5pt;
  margin-top: -0.2rem;
}
/*ページ移動ボタン----------------------------------------------------------- */
.move_button button{
  background-color: #FFF;
  border: #9EACB4 solid 0.1rem;
  color: #334149;
  width: 4rem;
  height: 4rem;
  margin-right: 0.5rem;
  margin-top: -1.5rem;
  border-radius: 3rem;
  font-size: 1.5rem
}
.move_button button:hover{
  color: #FFF;
  background-color: #E9474D;
  border: none;
}
.move_button button.mini{
	width: 3rem;
	height: 3rem;
}
.move_button button.nohover{
	color: #334149;
	background-color: #dcdcdc;
	border: #9EACB4 solid 0.1rem;
	cursor: default;
}
.move_button div.page_count{
	font-size: 1.7rem;
	margin-right: 1rem;
}	
.move_button div.page_count:first-child{
	margin-left: 0.5rem;
}	
.angle-right_icon,
.angle-double_right_icon{
  font-size: 1.7rem;
  margin-left: 0.5rem;
}
.angle-left_icon,
.angle-double_left_icon{
  font-size: 1.7rem;
}
/* ---------------------------------------------------------------------------------------------------------------- */
/*カレンダーのデザイン基本/*
/* ---------------------------------------------------------------------------------------------------------------- */
.calendar_wrap table{
  text-align: center;
  vertical-align: middle;
  margin-bottom:3rem;
  width: 100%;
  font-weight: bold;
}
.calendar_wrap th{
  border-right: 0.1rem solid #9EACB4;
  padding:0.5rem;
  min-width: 5rem;
}
.calendar_wrap td{
  border-right:0.1rem solid #9EACB4;
  border-bottom: 0.1rem solid #9EACB4;
  padding:0.5rem;
  vertical-align: top;
}
.calendar_wrap a{
  color: #485B65;
}
/*カレンダーボタン*/
.calendar_wrap button{
  margin-top: -0.2rem;
  margin-left: auto;
  height: 3.5rem;
  width: 3.5rem;
  letter-spacing: 0;
  font-size: 1.4rem;
  font-weight: normal;
  border-radius: 4rem;
}
.badgearea{
	height: 2.5rem;
}	
.badgearea button.badge, .badgearea button.cancel{
	border-radius: 0.3rem;
	height: 2.5rem;
	width: auto;
	font-size: 1.5rem;
	font-weight: bold;
	padding: 0.2rem 1rem;
	word-break: keep-all;
	text-decoration: none;
	color: #FFF;
	margin: 0 0 0 2rem;
}
.badgearea button.badge:hover{
	/*background-color: #F08437;*/
}	
.badgelbl {
	height: 2.1rem;
	line-height: 2.1rem;
	vertical-align: middle;
	width: auto;
	font-size: 1.5rem;
	font-weight: bold;
	padding: 0.2rem 1rem;
	word-break: keep-all;
	text-decoration: none;
	color: #FFF;
	margin: 0 0 0 2rem;
}
.badgemsg {
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0 0 0 1rem;
}
.button_day {
	border-radius: 1rem;
	width: 5rem;
	background-color: #ebe0e9;
	cursor: pointer;
}
.month_work {
	width: 100%;
	color: #fff;
	padding: 0.2rem;
}
.month_work p {
	height: 2.5rem;
	line-height: 2.5rem;
	vertical-align: middle;
	margin: 0 0 0 1rem;
}
.month_work p.factory {
	height: 2rem;
	line-height: 2rem;
	color: #fff;
}	

/*週月移動丸ボタン*/
.day_change button{
  margin:0 0.2rem 0 0.2rem;
  height: 4rem;
  width: 4rem;
  letter-spacing: 0;
  font-weight: normal;
  border-radius: 4rem
}
.day_change button:first-child{
  margin-left: 1rem;
}
.day_change button:last-child{
  margin-right: 2rem;
}
@media only screen and (max-width:1024px){
  .day_change button:last-child{
    margin-right:  2rem;
  }
}
.day_change .angle-left_icon,
.day_change .angle-right_icon{
  font-size: 2.5rem;
}
/*編集アイコン*/
.calendar_wrap .edit_icon:before{
  font-size: 1.8rem;
  margin-left: 0.3rem;
}
/*￥マークアイコン*/
.calendar_wrap .yen_circle_area{
  float: left;
  margin: 0.3rem 0.3rem 0 0.3rem;
}
.calendar_wrap .yen_circle{
  display: block;
  height: 1.5rem;
  width: 1.5rem;
  padding: 0.2rem;
  background-color: #707F87;
  display: block;
  text-align: center;
  font-weight: normal;
  border-radius: 3rem
}
.calendar-text {
  display: inline-block;
  width: 18.5rem;
  font-size: 1.3rem;
  line-height: 3.5rem;
  height: 3.5rem;
  padding: 0 0.5rem;
  border: 0.1rem solid #9EACB4;
  border-radius: 5px;
  background-color: #FFF;
  vertical-align: middle;
}

.calendar-text-search {
	width: 17.3rem;
	margin: 0 1rem 1rem 1rem;
}	

.calendar-text-ym {
  width: 14rem;
}

.calendar-text-ymdhi {
  width: 18rem;
}

/*今日------------------------------------------------------------------------*/
.today{
  position: relative;
}
/*下線*/
.under-score{
  position: relative;
}
/*土日で色変更*/
.week_area  .cloudy-red{
  color: #A674B0;
}
.week_area .cloudy-blue{
  color: #5D99B4;
}
.today .color_cloudy-red{
  color: #E9474D;
}
.today .color_cloudy-blue{
  color: #3B82C5;
}
/* ---------------------------------------------------------------------------------------------------------------- */
/*週別カレンダー設定/*
/* ---------------------------------------------------------------------------------------------------------------- */
.week_table th{
  background-color: #FFF;
  color: #707F87;
  padding: 0.7rem 1rem 1.5rem;
  border-bottom: none;
}
.week_table td{
  color: #FFF;
}
/*曜日と新規追加ボタン*/
.week_area div{
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
/*曜日*/
.week_area p{
  font-size: 2rem;
  font-weight: bold;
  margin-right: 0.5rem;
}
/*日付*/
.week_day{
  border-bottom: 0.1rem solid #9EACB4;
}
.week_day th{
  border-bottom: 0.1rem solid #9EACB4;
  padding: 0;
}
.week_day p{
  font-size: 5rem;
  font-weight: bold;
  margin-top: -2.5rem;
  margin-bottom: 0.3rem;
}
@media only screen and (max-width:1366px){
  .week_day p{
    font-size: 4rem;
    margin-top: -2rem;
  }
}
@media only screen and (max-width:1024px){
  .week_day p{
    font-size: 3.5rem;
    margin-top: -2rem;
  }
}
/*今日の場合*/
.week_table .today p{
  color: #212B32;
  padding-bottom: 0;
}
/*車両台数*/
.car_number th{
  padding: 0;
  padding-bottom: 0.5rem;
  font-size: 2.7rem;
  font-weight: bold;
  border-bottom: 0.1rem solid #9EACB4;
}
.car_number th span{
  font-size: 1.8rem;
}
/*週別工場スケジュール*/
.align_center{
  text-align: center;
}
/*縦組みフレックス*/
.flex_column div.flex_column_div{
  display: flex;
  flex-direction: column;
  height: 100%;
  padding:0.5rem;
  font-size: 1.1rem;
  border-bottom: 0.1rem solid #FFF;
}
@media only screen and (max-width:1024px) {
  .flex_column div.flex_column_div{
    font-size: 1rem;
  }
}
.flex_column div.flex_column_div:last-child{
  border-bottom: none;
}
.calendar_wrap .flex_column{
  padding: 0;
}

/*週カレンダー色設定----------------------------------------------------------------*/
/*今日*/
.week_table .today div{
  width: 60%;
  left: 20%;
  height: 0.7rem;
  position: absolute;
  text-align: center;
  bottom: 0;
  background-color: #3FAB9B;
}
/*ホバーで色変え*/
.main_bg-color_hover{
  background-color: #3FAB9B !important;
}
.main_bg-color_hover .factory_item_area p{
  color: #FFF;
}
.main_bg-color_hover .factory_item_area p span{
  color: #FFF;
}
/*￥*/
.main_bg-color_hover .factory_item_area .yen_icon:before{
  color: #FFF;
}
.main_bg-color_hover button{
  background-color: #FFF;
  color: #3FAB9B;
}
.main_bg-color_hover button:hover{
  background-color: #E9474D;
  color: #FFF;
}
.main_bg-color_hover .factory_item_area div{
  color: #FEDC5E;
}
.factory_item_area_hover{
  background-color: #FEDC5E !important;
}

/* ---------------------------------------------------------------------------------------------------------------- */
/*月別カレンダー設定/**/
/* ---------------------------------------------------------------------------------------------------------------- */
/*テーブル*/
.month_table{
  text-align: left;
}
.month_table thead th{
  font-size: 1.5rem;
  padding: 0.3rem;
  font-weight: bold;
}
.month_table thead th:first-child{
  background-color: #E9474D;
}
.month_table thead th:last-child{
  background-color: #3B82C5;
}
.month_table td{
  color: #485B65;
  max-width:0;
  font-weight: bold;
}
/*日付*/
.month_day{
  font-size: 2.3rem;
  font-weight: bold;
  letter-spacing: 0.1pt;
  margin-left: 0.3rem;
  margin-top: -0.3rem;
}
.month_day span{
  font-size: 1.5rem;
}
/*土日日付色替え*/
.san .month_day{
  color: #E9474D;
}
.sat .month_day{
  color: #3B82C5;
}

/*車アイコン*/
.month_table .car_icon{
  margin: 0.1rem 0 0 0.35rem;
  font-size: 1.5rem;
  color: #707F87;
}
/*￥アイコン*/
.month_table .yen_icon{
  vertical-align: top;
  font-size: 1.2rem;
}
/*表示フォント設定*/
/*全体*/
.month_container{
  margin-left: 0.2rem;
}
/*大文字*/
.month_container p{
  font-size: 2.5rem;
  letter-spacing: 0;
  line-height: 0.8;
}
/*小文字*/
.month_container span{
  font-size: 1.5rem;
  margin-top: 0.2rem;
  letter-spacing: 0.1pt;
}
@media only screen and (max-width:1366px){
  .month_container p{
    font-size: 1.7rem;
    margin-top: 0.7rem;
    line-height: 0.6;
  }
  .month_container span{
    font-size: 1.1rem;
    margin-top: 0.5rem;
  }
}
.month_chedule_padding{
  padding-top: 0.5rem;
}

/*簡易見積り一括登録など月別ページにテキストボックスがあるページに使用*/
.month_item_wrap{
  text-align: left;
  font-size: 1.2rem;
  text-align: center;
}
.month_item_wrap p{
  text-align: right;
  width: 7.8rem;
  margin-top: 0.8rem;
}
.month_item_wrap .flex-wrap_item{
  margin-left: 0.3rem;
  width: -webkit-calc(100% - 8.3rem);
  width: calc(100% - 8.3rem);
  line-height: 2.7;
  text-align: right;
  background-color: transparent;
  border: none;
}
.month_item_wrap .flex_item{
  margin-left: 0.3rem;
  width: -webkit-calc(100% - 8.3rem);
  width: calc(100% - 8.3rem);
  height: 3rem;
  text-align: right !important;
  ime-mode: disabled;
  text-align: left;
}
@media only screen and (max-width:1366px){
  .month_item_wrap p{
    text-align: left;
    margin-bottom: 0.2rem;
  }
  .month_item_wrap .flex-wrap_item{
    width: 30%;
    margin-left: 0;
  }
  .month_item_wrap .flex_item{
    width: 100%;
    margin-left: 0;
  }
}

/*月カレンダー-色設定---------------------------------------------------------------*/
.today .month_day{
  color: #3FAB9B;
}
/*下線*/
.month_table .today .under-score div{
  width: 95%;
  height: 0.3rem;
  bottom: 0.3rem;
  position: absolute;
  left: 8%;
  background-color: #079783;
}
/*土日で色変更*/
.san .today .under-score div{
  background-color:#b81900;
}
.sat .today .under-score div{
  background-color: #005580;
}
/*車両満車&半分埋まっている場合設定*/
/*今日の場合*/
.month_table .full .today .month_day,
.month_table .half .today .month_day{
  color: #079783;/*濃いメインカラー*/
}

/*今日------------------------------------------------------------------------*/
.today .month_container{
  color:  #212B32;
}
/*アイコンカラー*/
.month_table .today .car_icon:before{
  color: #212B32;
}
.month_table .today .yen_circle{
  background-color: #212B32;
}
.month_table .today .yen_icon:before{
  color: #FFF;
}
/*土日で色変更*/
.san .today .month_day{
  color: #b81900;
}
.sat .today .month_day{
  color: #005580;
}

/*車両満車&半分埋まっている場合設定-------------------------------------------*/
/*満車------------------------------------------------------------------------*/
.full{
  background-color: #F6B2B4;
}
.full .month_container{
  color: #E9474D;
}
/*文字色*/
.full .month_day{
  color: #E9474D;
}
/*アイコンカラー*/
.full .car_icon:before{
  color: #E9474D;
}
.full .yen_circle{
  background-color: #E9474D;
}
.full .yen_icon:before{
  color: #FFF;
}
/*今日------------------------------------------------------------------------*/
.full .today .month_container{
  color: #b81900;
}
/*文字色*/
.full .today .month_day{
  color: #b81900;
}
/*アイコンカラー*/
.full .today .car_icon:before{
  color: #b81900;
}
.full .today .yen_circle{
  background-color: #b81900;
}
.full .today .yen_icon:before{
  color: #FFF;
}

/*半分------------------------------------------------------------------------*/
.half{
  background-color: #FEDC5E;
}
.half .today .month_container{
  color: #212B32;
}

/* ---------------------------------------------------------------------------------------------------------------- */
/*週別工場スケジュール*/
/* ---------------------------------------------------------------------------------------------------------------- */
.factory_tabele .factory_item-container{
  font-size: 1rem;
  min-width: 9rem;
  position:relative;
  text-align: left;
  cursor: pointer;
  background: #FFF;
}
/*アイコン*/
.factory_item_area{
  padding-right: 0.2rem;
}
/*文字*/
.factory_item_area p{
  padding-left: 2em;
  text-indent: -2em;
  color: #334149;
}
/*メモ*/
.factory_item_area div{
  margin-left: 0.2rem;
  color: #E9474D;
}
.factory_item_area p span{
  padding: 0.3rem;
  color: #707F87;
}
/*枠内ボタン配置*/
.factory_tabele td button{	
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}
/*アイコン設定----------------------------------------------------------------*/
/*見積*/
.factory_item-container .estimate_icon:before{
  font-size: 2.2rem;
  margin-left: 0.3rem;
  vertical-align: top;
}
/*車*/
.factory_item-container .car_icon:before{
  margin-left: -0.1rem;
}
/*店舗*/
.factory_item-container .shop_icon:before{
  margin-left: -0.2rem;
}
/*レンチ*/
.factory_item-container .wrench_icon:before{
  margin-right: 0.15rem;
}
/*入庫出庫*/
.factory_item-container .factory-in_icon:before,
.factory_item-container .factory-out_icon:before{
  font-size: 1.1rem;
  margin-left: -0.1rem;
}
/*￥*/
.factory_item-container .yen_icon:before{
  font-size: 1.1rem;
  margin-left: 0.1rem;
  margin-right: 0.4rem;
  font-weight: normal;
  color: #707F87;
}

/* ---------------------------------------------------------------------------------------------------------------- */
/*週別工場スケジュール*/
/* ---------------------------------------------------------------------------------------------------------------- */
.week_table .first-item th:first-child,
.week_table .first-item td:first-child{
  color: #212B32;
  font-size: 1.3rem;
  vertical-align: middle;
  width: 1%;
  padding: 1rem 0;
  text-align: center;
  font-weight: bold;
}
.tr_gray td{
  background-color: #D4D9DC;
}

/* ---------------------------------------------------------------------------------------------------------------- */
/*ダイアログ-修理事例車両写真*/
/* ---------------------------------------------------------------------------------------------------------------- */
/*画像選択エリア--------------------------------------------------------------*/
.repair_car-img div{
  margin-top: 1rem;
  width:17rem;
}
.repair_car-img img{
  width:100%;
}
.repair_car-img img:hover{
  opacity: 0.8;
  cursor: pointer;
  transition: 0.3s;
}
.repair_car-img button{
  margin: 0.8rem 0 ;
  text-align: center;
  width:100%;
  display: block;
}
/*登録フォーム----------------------------------------------------------------*/
.repair_container{
  margin-top: 2.5rem;
}
.repair_container .flex_div div{
  margin-top: 0.5rem;
}
.repair_container h5{
  font-size: 1.4rem;
  padding: 1.2rem 0;
  margin-right: 0.5rem;
  width: 9rem;
}
.repair_container input[type="text"]{
  width:38rem;
}
.repair_container .datepicker input[type="text"]{
  width:20rem;
}
.repair_container textarea{
  width:38rem;
  min-height: 17rem;
}
/* ---------------------------------------------------------------------------------------------------------------- */
/*ダイアログ-ブログ画像*/
/* ---------------------------------------------------------------------------------------------------------------- */
.dlg_blog-img img:hover{
  opacity: 0.8;
  cursor: pointer;
  transition: 0.3s;
}

/*ボタン横の注意文*/
.caution {
	margin-top: 1.2rem;
	word-break: keep-all;
}

/*Jqueryオートコンプリート設定*/
.ui-state-focus {
	background: #EC7AA1 !important;
	color: #ffffff !important;
}
.ui-autocomplete {
    max-height: 300px;
    overflow-y: scroll;
    overflow-x: hidden;
}

/*公式サイトボタン*/
.site_o {
	width: 45rem;
	height: 20rem;
	line-height: 20rem;
	border-radius: 10px;		
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	margin: 0 auto;
	color: #fff;
	background-color: #E9474D;
	/*border: 3px solid #15aeec;*/
	font-size: 5rem;
	font-weight: bold;
}
.site_o:hover {
	background-color: #cb181f;
}

/*個店サイトボタン*/
.site_s {
	width: 45rem;
	height: 20rem;
	line-height: 20rem;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	margin: 0 auto;
	color: #fff;
	background-color: #3B82C5;
	/*border: 3px solid #91b41a;*/
	font-size: 5rem;
	font-weight: bold;
}
.site_s:hover {
	background-color: #295b8b;
}

/*グーピット予約ボタン*/
.site_g {
	width: 45rem;
	height: 20rem;
	line-height: 20rem;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	margin: 0 auto;
	color: #fff;
	background-color: #ffa500;
	/*border: 3px solid #91b41a;*/
	font-size: 5rem;
	font-weight: bold;
}
.site_g:hover {
	background-color: #f5c101;
}

@media only screen and (max-width:1750px){
	.site_o {
		width: 33rem;
		height: 14rem;
		line-height: 14rem;
		font-size: 4rem;
	}
	.site_s {
		width: 33rem;
		height: 14rem;
		line-height: 14rem;
		font-size: 4rem;
	}
	.site_g {
		width: 33rem;
		height: 14rem;
		line-height: 14rem;
		font-size: 4rem;
	}
}

@media only screen and (max-width:1366px){
	.site_o {
		width: 25rem;
		height: 11rem;
		line-height: 11rem;
		font-size: 3.5rem;
	}
	.site_s {
		width: 25rem;
		height: 11rem;
		line-height: 11rem;
		font-size: 3.5rem;
	}
	.site_g {
		width: 25rem;
		height: 11rem;
		line-height: 11rem;
		font-size: 3.5rem;
	}
}

/*キャンペーンボタン*/
.site_c { 
	width: auto;
	height: 15rem;
	line-height: 5rem;	
	font-size: 4rem;
	margin: 2rem 3rem 0;
}
.site_c_disabled { 
	background-color: #D4D9DC;
	cursor: default; 
}	
.site_c_disabled:hover {
	background-color: #D4D9DC;
}

/*borderなしテーブル*/
table.tbl_border_not {
	border: none;
}
table.tbl_border_not th {
	border: none;
}
table.tbl_border_not td {
	border: none;
}

/*画面小さい時のみテーブルに下線*/
@media only screen and (max-width:1024px) {
	table.bottom-border {
		border-bottom: 0.1rem solid #9EACB4;
	}
}

/*店舗リストヘッダー(コールセンター権限店舗検索)*/
h3.l_store {
	padding: 0.5rem;
	text-align: left;
}

/*フォーム*/
.customer_item_area{
  padding: 0.5rem 1rem 1.5rem 1rem;
  margin-top: 1rem;
  border-bottom: 0.1rem solid #9EACB4;
  word-break: keep-all;
  position: relative;
}
.customer_item_area:last-child{
  padding: 0 1rem 0 1rem;;
  border-bottom: none;
}
/*フォームサイズ*/
.customer_item_area input[type="text"],
.customer_item_area input[type="number"],
.customer_item_area input[type="email"],
.customer_item_area input[type="url"],
.customer_item_area input[type="tel"]{
  width: 30rem;
  margin-right: 2rem;
}
.customer_item_area .postal_code input {
    width: 7rem;
    margin: 0 0.5rem;
        margin-right: 0.5rem;
}
.customer_item_area select{
  width: 22rem;
  margin-right: 2rem;
}

.customer_confirm_text {
	text-align: center;
	padding: 1.5rem;
	background-color: #718CC7;
	color: #fff;	
	font-size: 1.7rem;
	font-weight: bold;
	height: 10rem;
	line-height: 5rem;
}

.kana_button.nohover{
	color: #334149;
	background-color: #dcdcdc;
	border: #9EACB4 solid 0.1rem;
	cursor: default;
}

.system_button {
	border-radius: 0.3rem;
	width: 27rem;
    height: 4rem;
    font-weight: bold;
    padding: 0.7rem 1rem;
	margin: 0 2rem 1rem 0;
    word-break: keep-all;
    text-decoration: none;
    color: #FFF;
	background-color: #334149;
}

/*トップページテロップ用*/
.ticker {
	margin: 0 auto;
	padding: 10px 0;
	/*width: 600px;*/
	text-align: left;
	/*
	border: #ccc 1px solid;
	background-color: #f6f6f6;
	*/	
	position: relative;
	overflow: hidden;
}

.ticker ul {
	width: 100%;
	position: relative;
}

.ticker ul li {
	width: 100%;
	display: none;
}

/* 請求管理 */
.w_claimname {
	width: 40rem;
}
.w_claimitem {
	width: 10rem;
}
@media only screen and (max-width:1366px){
	.w_claimname {
		width: 25rem;
	}
	.w_claimitem {
		width: 6rem;
	}
	.claim_span::before {
		content: "\A" ;
		white-space: pre ;
	}
}

/* 請求重複 */
.w_claim_dupli_name {
	width: 40rem;
}
.w_claim_dupli_item1 {
	width: 12rem;
}
.w_claim_dupli_item2 {
	width: 8rem;
}
@media only screen and (max-width:1440px){
	.w_claim_dupli_name {
		width: 18rem;
	}
	.w_claim_dupli_item1 {
		width: 7rem;
	}	
	.w_claim_dupli_item2 {
		width: 4rem;
	}
}	


/* トップお知らせ */
.info_msg {
	width: 80rem;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
@media only screen and (max-width:1366px) {
	.info_msg {
		width: 55rem;	
	}	
}	

.factory_button_area {
	border: 0.1rem solid #9EACB4;
	border-radius: 0.5rem;
	margin: 1rem 0;
	padding: 1rem;
	font-size: 1.3rem;
	font-weight: bold;
	background-color: #fff;
}

.factory_car_memo {
	height: 5rem;
}
.factory_car_image {
	position: absolute; 
	bottom: 0.5rem; 
	right: 0.5rem;	
	width: calc(100% - 25rem);
	max-width: 15rem;
	min-width: 6.5rem;
}
@media only screen and (max-width:1366px) {
	.factory_car_memo {
		height: auto;
	}
}	

.est_list_date_l {
	display: inline;
}
.est_list_date_s {
	display: none;
}
.est_list_name {
	min-width: 10rem;
}
.est_list_car {
	width: 18rem;
	min-width: 8rem;
}
@media only screen and (max-width:1024px) {
	.est_list_mini {
		padding: 0.4rem 0.4rem;
	}
	.est_list_date_l {
		display: none;
	}
	.est_list_date_s {
		display: inline;
	}
	.est_list_car {
		width: 10rem;
	}
}