﻿@charset "UTF-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

/* 共通 */
body {
    color: #000000;
    background-color:#fafcfa;
    font-family: NotoSansCJKjp;
    width:100%;
    /*font-family: 'Hiragino Kaku Gothic ProN","メイリオ", sans-serif, "Noto Sans Japanese';*/
}
*, *::before, *::after {
    box-sizing: border-box;
}
a:link, a:visited, a:hover, a:active {
    text-decoration: none;
    color: #333333;
}
a:hover {
    opacity: 0.7;
}
.a_block {
    position: relative;
}

.a_block:hover {
    opacity: 0.7;
}

/* 部品 */
.clearfix::after {
    content: "";
    display: block;
    height: 0px;
    width: 0px;
    clear: both;
}
.hidden {
    display: none;
}

@-ms-viewport {
    width: auto;
    /*    initial-scale: 1;*//*20230518 マイグレ対応 Hojo*/
}
/*@viewport {
    width: device-width;
    initial-scale: 1;
}*//*20230518 マイグレ対応 Hojo*/

.ime_disabled {
    /*ime-mode:disabled;*//*20230518 マイグレ対応 Hojo*/
}

.ime_active {
    /*ime-mode:active;*//*20230518 マイグレ対応 Hojo*/
}

.require::after {
    content:"*";
    color:#ff0000;
    margin-left:5px;
}

.contents {
  /*padding-bottom: 3rem;
  padding-top: 3.125rem;*/
  text-align: center;
  background-color:#fafcfa;
  padding-bottom:15px;
}

/* 画面タイトル */
.title_area {
    position: relative;
    height: 35px;
    width: 98%;
    margin:0 auto;
    -webkit-text-size-adjust: 100%;
}

.title_area .title_area_icon {
    position: absolute;
    top: 15px;
    left: 0px;
    width: 18px;
    height: 18px;
    /*background-color: #82bb1b;
    background-color: var(--sickly-green);*/
}

.title_area .title_area_title {
    position: absolute;
    top: 15px;
    left: 27px;
    width: auto; /* 72px ⇒ 100px */
    height: 18px;
    font-size: 16px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.17;
    letter-spacing: 0.2px;
    text-align: left;
    color: #333333;
}
.title_area .title_area_discription {
    position: absolute;
    top: 15px;
    left: 204px;
    width: 260px; /* 245px ⇒ 260px */
    height: 14px;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: 0.1px;
    text-align: left;
    color: #666666;
    /*color: var(--brownish-grey);*/    
}

/* もとのページに戻る */
footer .pagetop {
    float: right;
    /*margin: 7px 13px 13px 87px;*/
    top:0px;
    /*left:calc(50% - 82px);*/
    width: 163px;
    height: 33px;
    border-radius: 17px;
    background-color: #eeeeee;
    position: relative;
}

.title_area .pagetop {
    float: right;
    margin: 7px 13px 13px 87px;
    /*top:9px;
    right:7px;*/
    width: 163px;
    height: 33px;
    border-radius: 17px;
    background-color: #eeeeee;
    position: relative;
}

.pagetop .pagetop_image {
    position: absolute;
    top: 10px;
    left: 18px;
    width: 14px;
    height: 13px;
    /* background-color: #a4a4a4; */
}

.pagetop .pagetop_desc {
    position: absolute;
    top: 10px;
    left: 42px;
    width: 110px; /* 108px ⇒ 110px */
    height: 11px;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: 0.1px;
    text-align: left;
    color: #003399;
}

.pagetop .pagetop_link {
    position: absolute;
    top: 26px;
    left: 42px;
    width: 110px; /* 108px ⇒ 110px */   /* 2021.8.16 FAE)mentaki 修正漏れと想定される。上に合わせて110pxに修正 */
    height: 1px;
    background-color: #003399;
}

/* テキストボックス */
input[type="text"],
input[type="number"],
input[type="password"],
.text_label
{
	text-indent: 0.5em;
	height: 30px;
	border-radius: 4px;
	background-color: #eeeeee;
	border: solid 2px #cccccc;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.31;
    letter-spacing: 0.2px;
    text-align: left;
    color: #333333; /* #333333 ⇒ #808080 */
    background: #ffffff;
}
input[type="text"]:disabled,
input[type="number"]:disabled,
input[type="password"]:disabled
{
	text-indent: 0.5em;
	height: 30px;
	border-radius: 4px;
	border: solid 2px #e8e8e8;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.31;
    letter-spacing: 0.2px;
    text-align: left;
    color: #999999; /* #333333 ⇒ #808080 */
    background: #ffffff;
}

/* コンボボックス */
select {
    height: 30px;
    /*border: none;*/
    border-radius: 4px;
	border: solid 2px #cccccc;
    padding: 0px 0px 0px 2px;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.31;
    letter-spacing: 0.2px;
    text-align: left;
    background: #ffffff;
    color: #000000; /* 2021.8.16 FAE)mentaki iPadOS15対応 Add */
    /*
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    */
}

select :disabled{
    height: 30px;
    /*border: none;*/
    border-radius: 4px;
	border: solid 2px #e8e8e8;
    padding: 0px 0px 0px 2px;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.31;
    letter-spacing: 0.2px;
    text-align: left;
    background: #cccccc;
    /*
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    */
}

select[class~="aspNetDisabled"]{
    color: #696969; /* 2021.8.16 FAE)mentaki iPadOS15対応 Add */
    height: 30px;
    /*border: none;*/
    border-radius: 4px;
	border: solid 2px #e8e8e8;
    padding: 0px 0px 0px 2px;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.31;
    letter-spacing: 0.2px;
    text-align: left;
}

/* ラベル */
label {
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    height: 30px;
    vertical-align:middle;
    line-height: 1.31;
    letter-spacing: 0.2px;
    color:#333333;
    background: transparent;
}

/* 検索ボタン */
.search_button {
    position: relative;
    top: -2px;
    /*width: 140px;
    height: 30px;*/
    width: 8.75em;
    height: 1.8em;
    font-size: 16px;
    border-radius: 8px;
    background: linear-gradient(to bottom, #11b95f,#059449);
    box-shadow: 0px 2px 0 0 #16541f;
    border:none;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: 0.2px;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
}
.search_button:active{
    top:-1px;
    box-shadow: 0px 1px 0 0 #16541f;
}

/* CSV出力 */
.csv_button {
    position: relative;
    top:-2px;
    width: 140px;
    height: 30px;
    font-size: 14px;
    border-radius: 17px;
    box-shadow: 0px 2px 0 0 #d3d3d3;
    background-image: linear-gradient(#f7f7f7, #f7f7f7), linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, #000000);
    border: solid 1px #d3d3d3;
    font-family:NotoSansCJKjp;  /* 2020.9.18 FAE)mentaki Add */
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: 0.2px;
    text-align: center;
    color: #333333;
    vertical-align:middle;
    line-height:100%;
    cursor:pointer;
}

.csv_button:active {
    box-shadow: 0px 1px 0 0 #d3d3d3;
    top:-1px;
}

/* CSV取込 */
.csv_in_button {
    position: relative;
    display:block;
    top:-2px;
    width: 140px;
    height: 30px;
    font-size: 14px;
    border-radius: 17px;
    box-shadow: 0px 2px 0 0 #d3d3d3;
    background-image: linear-gradient(#f7f7f7, #f7f7f7), linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, #000000);
    border: solid 1px #d3d3d3;
    font-family:NotoSansCJKjp;  /* reset定義が不十分で、運送業者SCV出力のフォントが変わってしまうので、直接指定 */
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: 0.2px;
    text-align: center;
    color: #333333;
    vertical-align:middle;
    line-height:200%;
    cursor: pointer; 
    float: right;
}

.csv_in_button:active {
    box-shadow: 0px 1px 0 0 #d3d3d3;
    top:-1px;
}

/* 2024.07.26 FJ)shimasato 予約状況照会の印刷 Add Start */
/* 印刷ボタン */
.print_out_button {
    position: relative;
    top: -2px;
    width: 140px;
    height: 30px;
    font-size: 14px;
    border-radius: 17px;
    box-shadow: 0px 2px 0 0 #d3d3d3;
    background-image: linear-gradient(#f7f7f7, #f7f7f7), linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, #000000);
    border: solid 1px #d3d3d3;
    font-family: NotoSansCJKjp;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: 0.2px;
    text-align: center;
    color: #333333;
    vertical-align: middle;
    line-height: 100%;
    cursor: pointer;
}

.print_out_button:active {
    box-shadow: 0px 1px 0 0 #d3d3d3;
    top: -1px;
}

.print_out_button:disabled {
    position: relative;
    color: darkgray !important;
    background: lightgray !important;
    border-color: lightgray !important;
    cursor: default;
}
/* 2024.07.26 FJ)shimasato 予約状況照会の印刷 Add End */

/* ライン */
.line {
    margin:30px auto 30px auto;
    width: 90%;
    height: 1px;
    background-color: #eeeeee;
}

/* 予約一覧などのリピーター */
.list_item {
    position: relative;
    margin: 25px auto 25px auto;
    width: 99%;
    height: 142px;
    border-radius: 10px;
    background-color: #ffffff;
    /*background-color: var(--white);*/
    box-shadow: 0px 2px 10px 0 rgba(0, 0, 0, 0.4);
    text-align:left;
}
.calendar-button
{
	border: 0px;
	width: 24px;
	height:24px;
	/*
	vertical-align:0px;
	*/
	background: url(../../images/common/icon-svg/action/icon_calendar.svg) left top no-repeat;
}

/* フッターボタン */
.footer_button {
    bottom: 10px;
    left: 0;
    height: 3rem;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin:15px 0 0 0;
}

.footer_button > div {
    height: 100%;
    margin:0 auto;
    display: table;
    table-layout: fixed;
    padding: 0;
    /*background-color: #eff1f0;*/
    width: 98%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.footer_item {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.footer_item input {
    letter-spacing: 0.2px;
    text-align: center;
    border-radius:10px;
    overflow: hidden;
    width: 99%;
    height: 3rem;
    background: linear-gradient(to bottom, #eeeeee,#bbbbbb);
    border:1px solid #bbbbbb;
    border-top:none;
    box-shadow: 0px 2px 0px 0 #999999;
    padding: 0 .313rem;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: 0.2px;
    font-size: 16px;
    font-weight: bold;
    color:#444444;
    /*font-weight:bold;*/
}

.footer_item input:active {
    -ms-transform: translateY(2px);
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
    box-shadow: none;
    /*font-weight:bold;*/
}

.footer_item input:disabled {
    letter-spacing: 0.2px;
    text-align: center;
    border-radius:16px;
    overflow: hidden;
    width: 100%;
    height: 3rem;
    background-image: linear-gradient(#eeeeee, #eeeeee), linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, #000000);
    border: solid 1px #d3d3d3;
    padding: 0 .313rem;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: 0.2px;
    font-size: 16px;
    font-weight: bold;
    color:#444444;
}

/* 入力画面 */
.input {
    width: 98%;
    margin: 15px auto 15px auto;
    line-height: 0.9;
    padding: 0px 0;
    border: solid 2px #cccccc;
    box-shadow: 0px 2px 10px 0 rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    text-align: left;
}

.input .input_item {
    display: block;
    margin: 0px auto 0px auto;
    width: 88%;
    min-height:38px;
}

.input .first {
    margin-top:30px;
}

.input .last {
    margin-bottom:30px;
}

.input_item .item_name {
    width: 200px;
    display: inline-block;
    font-weight: bold;
    line-height: 185%;
}

.input .half{
    width:44%;
    margin-left:6%;
    float:left;
}

.input .sub_wrapper,
.condition .sub_wrapper  {
    padding: 15px;
    border: 2px solid #cccccc;
    border-radius: 12px;
}


.input .comments,
.condition .comments  {
    font-size:14px;
    font-weight:normal;
    font-stretch:normal;
    font-style:normal;
    color:#666666;
    letter-spacing:1.4px;
    max-width:100%;
}

.input .under_comments {
    font-size:12px;
    font-weight:normal;
    font-stretch:normal;
    font-style:normal;
    color:#666666;
    letter-spacing:1.4px;
    max-width:100%;
    display:block;
    margin:5px 0 0 204px
}

.input .work_time {
    display:inline-block;
}

/* 検索条件 */
.condition {
    width: 98%;
    margin: 15px auto 10px auto;
    border-radius: 10px;
    background-color: #ffffff;
    background-color: var(--white);
    box-shadow: 0px 2px 10px 0 rgba(0, 0, 0, 0.4);
    min-width:320px;
}

.condition_item {
    display: inline-block;
    margin: 0px 20px 10px 0;
}

/* 検索条件ラベル */
.condition_item .item_name{
     margin: 0 10px 0 0;
}

.condition_item .item_name::after{
    margin-left: 7px;
    content: "：";
}


/* チェックボックス・ラジオボタン共通 */
.check_radio_wrapper {
   position: relative;
   display: inline-block;
}

.check_radio_wrapper input[type="radio"],
.check_radio_wrapper input[type="checkbox"] {
    display: none;
}

.check_radio_wrapper input[type="radio"] + label,
.check_radio_wrapper input[type="checkbox"] + label {
    padding-left: 26px;
    margin-right: 20px;
    letter-spacing:1.3px;
}

/* チェックボックス */
.check_radio_wrapper input[type="checkbox"] + label::before{
    content: "";
    display: block;
    position:absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 2px;
    background-color: #fafcfd;
    border: solid 2px #cccccc;
}

.check_radio_wrapper input[type="checkbox"]:checked + label::after{
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 6px;
    width: 7px;
    height: 10px;
    transform: rotate(45deg);
    border-bottom: 3px solid #003399;
    border-right: 3px solid #003399;
}

/* ラジオボタン */
.check_radio_wrapper input[type="radio"] + label::before {
    content: "";
    display:block;
    position:absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 18px;
    background-color: #fafcfd;
    border: solid 2px #cccccc;
}

.check_radio_wrapper input[type="radio"]:checked + label::after{
    content: "";
    display:block;
    position: absolute;
    top: 4px;
    left: 4px;
    /*transform: rotate(45deg);
    border-bottom: 3px solid #003399;
    border-right: 3px solid #003399;*/
    border-radius: 10px;
    width: 10px;
    height: 10px;
    border: 5px solid #003399;

}

/* 20200421 TAKANO ADD START */
.check_radio_wrapper input[type="radio"] + label.radio_disabled::before {
    content: "";
    display:block;
    position:absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 18px;
    background-color: #cccccc;
    border: solid 2px #cccccc;
}

.check_radio_wrapper input[type="radio"]:checked + label.radio_disabled::after{
    content: "";
    display:block;
    position: absolute;
    top: 4px;
    left: 4px;
    /*transform: rotate(45deg);
    border-bottom: 3px solid #003399;
    border-right: 3px solid #003399;*/
    border-radius: 10px;
    width: 10px;
    height: 10px;
    border: 5px solid #808080;

}
/* 20200421 TAKANO ADD END */

/* ～ */
.tilde {
    display:inline-block;
    margin:0 10px;
}

/* 日付テキスト*/
.datetime::-moz-placeholder,
.datetime:-ms-input-placeholder,
.datetime::placeholder
{
    color:#cccccc;
}

/* ダミーSubmitボタン */
.dummy_submit {
    display:none;
}

.align_center {
    text-align:center;
}

/* 2020.9.18 FAE)mentaki Add Start */
@media screen and (max-device-width:1024px) {
    input[type="text"]:disabled,
    input[type="number"]:disabled,
    input[type="password"]:disabled {
        color: #000000; /* iPadでは文字色が薄くなるので黒にする */
    }
    /* 2021.4.23 FAE)mentaki 日次処理画面のタイトル文字切れ修正 Add Start */
    .title_area .daily_title {
        font-size: 12px;
    }
    /* 2021.4.23 FAE)mentaki 日次処理画面のタイトル文字切れ修正 Add End   */
}
/* 2020.9.18 FAE)mentaki Add End   */

@media screen and (max-width:860px) {
    .input .half{
        width:88%;
        margin:16px auto;
        float:none;
    }
    /* 2021.9.21 FAE)mentaki 構内・構外待機対応 Add Start */
    .input .mobilenone {
        width: 0px;
        height: 0px;
        margin: 0px 0px;
        min-height: 0px;
    }
    /* 2021.9.21 FAE)mentaki 構内・構外待機対応 Add End   */
}

@media screen and (max-width:500px) {
    .input_item .under_comments {
        width: 100%;
        margin-left:0px;
    }

    .search_button {
        margin-top:5px;
    }

    .condition_item .item_name {
        display:inline-block;
        width:100%;
        height:21px;
    }

    .footer_button {
        position: static;
        /*bottom: 10px;*/
        left: 0;
        height: 3rem;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        margin:15px 0 0 0;
    }

    /* 画面タイトル */
    .title_area {
        height: 60px;
    }
    /* もとのページに戻る */
    .title_area .pagetop {
        margin:0;
        margin-right:7px;
        top:36px;
        /*left: calc(50% - 82px);*/
    
    }
    /* 2020.12.18 FAE)mentaki 「ログイン画面へ」ボタンが文字切れするので修正 Add Start */
    .footer_item input {
        font-size: 15px;
    }
    .footer_item input:disabled {
        font-size: 15px;
    }
    /* 2020.12.18 FAE)mentaki 「ログイン画面へ」ボタンが文字切れするので修正 Add End */
    /* 2021.4.23 FAE)mentaki 日次処理画面のタイトル文字切れ修正 Add Start */
    .title_area .daily_title {
        font-size: 9px;
    }
    /* 2021.4.23 FAE)mentaki 日次処理画面のタイトル文字切れ修正 Add End   */
}
