/* 最小化できませんでした。最小化されていないコンテンツを返します。
(1140,50): run-time error CSS1030: Expected identifier, found '.'
(1140,62): run-time error CSS1031: Expected selector, found ')'
(1140,62): run-time error CSS1025: Expected comma or open brace, found ')'
(1145,50): run-time error CSS1030: Expected identifier, found '.'
(1145,62): run-time error CSS1031: Expected selector, found ')'
(1145,62): run-time error CSS1025: Expected comma or open brace, found ')'
(1149,50): run-time error CSS1030: Expected identifier, found '.'
(1149,62): run-time error CSS1031: Expected selector, found ')'
(1149,62): run-time error CSS1025: Expected comma or open brace, found ')'
(1153,50): run-time error CSS1030: Expected identifier, found '.'
(1153,62): run-time error CSS1031: Expected selector, found ')'
(1153,62): run-time error CSS1025: Expected comma or open brace, found ')'
(1157,50): run-time error CSS1030: Expected identifier, found '.'
(1157,62): run-time error CSS1031: Expected selector, found ')'
(1157,62): run-time error CSS1025: Expected comma or open brace, found ')'
(1161,50): run-time error CSS1030: Expected identifier, found '.'
(1161,62): run-time error CSS1031: Expected selector, found ')'
(1161,62): run-time error CSS1025: Expected comma or open brace, found ')'
(1165,50): run-time error CSS1030: Expected identifier, found '.'
(1165,62): run-time error CSS1031: Expected selector, found ')'
(1165,62): run-time error CSS1025: Expected comma or open brace, found ')'
(1169,50): run-time error CSS1030: Expected identifier, found '.'
(1169,62): run-time error CSS1031: Expected selector, found ')'
(1169,62): run-time error CSS1025: Expected comma or open brace, found ')'
(1173,50): run-time error CSS1030: Expected identifier, found '.'
(1173,62): run-time error CSS1031: Expected selector, found ')'
(1173,62): run-time error CSS1025: Expected comma or open brace, found ')'
(1211,29): run-time error CSS1030: Expected identifier, found '.'
(1211,52): run-time error CSS1031: Expected selector, found ')'
(1211,52): run-time error CSS1025: Expected comma or open brace, found ')'
 */
/* 
// 
// Tip: to integrate this plugin seamlessly into your application, use these styles as a starting 
// point to build your own stylish alerts and confirmations! 
// 
*/ 


/* Modal */ 
.alertable { 
     position: fixed; 
     z-index: 9999; 
     top: 38vh; 
     left: calc(50% - 150px); 
     width: 300px; 
     background: #fff; 
     border-radius: 4px; 
     border-color: #666; 
     border-style: solid; 
     border-width: 3px; 
     padding: 20px; 
     margin: 0 auto; 
 } 


/* Overlay */ 
.alertable-overlay { 
    position: fixed; 
    z-index: 9998; 
    top: 0; 
    right: 0; 
    bottom: 0; 
    left: 0; 
    background: rgba(0, 0, 0, 0); 
} 


/* Message */ 
.alertable-message { 
    margin-bottom: 20px; 
} 


/* Prompt */ 
.alertable-prompt { 
    margin-bottom: 20px; 
} 


.alertable-input { 
    width: 100%; 
    border-radius: 4px; 
    box-shadow: none; 
    border: solid 1px #ccc; 
    font-family: inherit; 
    font-size: inherit; 
    color: inherit; 
    padding: 6px 12px; 
    display: block; 
    box-sizing: border-box; 
    margin-bottom: 10px; 
} 


/* Button group */ 
.alertable-buttons { 
    text-align: right; 
} 


/* OK button */ 
.alertable-ok { 
    background: #09d; 
    border: solid 1px #0d9; 
    font-family: inherit; 
    font-size: inherit; 
    color: white; 
    border-radius: 4px; 
    padding: 6px 12px; 
    margin-left: 4px; 
    cursor: pointer; 
} 


.alertable-ok:hover, 
.alertable-ok:focus, 
.alertable-ok:active { 
    background-color: #0c8; 
} 


/* Cancel button */ 
.alertable-cancel { 
    border: solid 1px #ddd; 
    background: white; 
    font-family: inherit; 
    font-size: inherit; 
    color: #888; 
    border-radius: 4px; 
    padding: 6px 12px; 
    margin-left: 4px; 
    cursor: pointer; 
} 

.alertable-cancel:hover, 
.alertable-cancel:focus, 
.alertable-cancel:active { 
    background-color: #f2f2f2; 
}

@charset "UTF-8";

/*------------------------------------------------------------
	メッセージ
------------------------------------------------------------*/

.modal-content-errmsg{
    position:fixed; 
    display:none; 
    z-index:2; 
    width:auto; 
    margin:0; 
    padding:10px 20px; 
    border:2px solid #aaa; 
    background:#fff; 
}

.modal-content-errmsg p{ 
    margin:0; 
    padding:0; 
}

.modal-overlay-errmsg{ 
    z-index:1; 
    display:none; 
    position:fixed; 
    top:0; 
    left:0; 
    width:100%; 
    height:100%; 
    background-color:rgba(0,0,0,0); 
}

.modal-open-errmsg { 
} 

.modal-open-errmsg:hover { 
} 

.modal-close-errmsg { 
} 

.modal-close-errmsg:hover { 
}


/*------------------------------------------------------------
	オプション画面
------------------------------------------------------------*/

.modal-content-option{
    position:fixed; 
    display:none; 
    z-index:2; 
    width:80%; 
    margin:0; 
    padding:10px 20px; 
    border:2px solid #aaa; 
    background:#fff; 
}

.modal-content-option p{ 
    margin:0; 
    padding:0; 
}

.modal-overlay-option{ 
    z-index:1; 
    display:none; 
    position:fixed; 
    top:0; 
    left:0; 
    width:100%; 
    height:120%; 
    background-color:rgba(0,0,0,0.25); 
}

.modal-open-option { 
    color:#333; 
    text-decoration:none; 
} 

.modal-open-option:hover { 
    cursor:pointer; 
//    color:#f00; 
} 

.modal-close-option { 
//    color:#00f; 
//    text-decoration:underline; 
} 

.modal-close-option:hover { 
//    cursor:pointer; 
//    color:#f00; 
}

/*------------------------------------------------------------
	ご注文内容登録
------------------------------------------------------------*/

.modal-content-chutouroku{
    position:fixed; 
    display:none; 
    z-index:2; 
    width:90%; 
    margin:0; 
    padding:10px 20px; 
    border:2px solid #aaa; 
    background:#fff; 
}

.modal-content-chutouroku p{ 
    margin:0; 
    padding:0; 
}

.modal-overlay-chutouroku{ 
    z-index:1; 
    display:none; 
    position:fixed; 
    top:0; 
    left:0; 
    width:100%; 
    height:120%; 
    background-color:rgba(0,0,0,0.25); 
}

.modal-open-chutouroku { 
//    color:#00f; 
//    text-decoration:underline; 
} 

.modal-open-chutouroku:hover { 
//    cursor:pointer; 
//    color:#f00; 
} 

.modal-close-chutouroku { 
//    color:#00f; 
//    text-decoration:underline; 
} 

.modal-close-chutouroku:hover { 
//    cursor:pointer; 
//    color:#f00; 
}

/*------------------------------------------------------------
	ご注文内容確定
------------------------------------------------------------*/

.modal-content-chukakutei{
    position:fixed; 
    display:none; 
    z-index:2; 
    width:90%; 
    margin:0; 
    padding:10px 20px; 
    border:2px solid #aaa; 
    background:#fff; 
}

.modal-content-chukakutei p{ 
    margin:0; 
    padding:0; 
}

.modal-overlay-chukakutei{ 
    z-index:1; 
    display:none; 
    position:fixed; 
    top:0; 
    left:0; 
    width:100%; 
    height:120%; 
    background-color:rgba(0,0,0,0.25); 
}

.modal-open-chukakutei { 
//    color:#00f; 
//    text-decoration:underline; 
} 

.modal-open-chukakutei:hover { 
//    cursor:pointer; 
//    color:#f00; 
} 

.modal-close-chukakutei { 
//    color:#00f; 
//    text-decoration:underline; 
} 

.modal-close-chukakutei:hover { 
//    cursor:pointer; 
//    color:#f00; 
}

/*------------------------------------------------------------
	ミルシート送付区分
------------------------------------------------------------*/

.modal-content-millsheet{
    position:fixed; 
    display:none; 
    z-index:2; 
    width:20%; 
    margin:0; 
    padding:10px 20px; 
    border:2px solid #aaa; 
    background:#fff; 
}

.modal-content-millsheet p{ 
    margin:0; 
    padding:0; 
}

.modal-overlay-millsheet{ 
    z-index:1; 
    display:none; 
    position:fixed; 
    top:0; 
    left:0; 
    width:100%; 
    height:120%; 
    background-color:rgba(0,0,0,0.25); 
}

.modal-open-millsheet { 
//    color:#00f; 
//    text-decoration:underline; 
} 

.modal-open-millsheet:hover { 
//    cursor:pointer; 
//    color:#f00; 
} 

.modal-close-millsheet { 
//    color:#00f; 
//    text-decoration:underline; 
} 

.modal-close-millsheet:hover { 
//    cursor:pointer; 
//    color:#f00; 
}


/*
body {
    padding-top: 50px;
    padding-bottom: 20px;
}
*/
/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
/*input,
select,
textarea {
    max-width: 280px;
}*/

.field-validation-error
{
  color: #ff0000;
}

.field-validation-valid
{
  display: none;
}

.input-validation-error
{
  border: 1px solid #ff0000;
  background-color: #ffeeee;
}

.validation-summary-errors
{
  font-weight: bold;
  color: #ff0000;
}

.validation-summary-valid
{
  display: none;
}

/* 制御用クラス */
.ime_disabled {
  ime-mode: disabled; 
}

.hidden {
    display: none;
}

.meisai_row_enabled {
    background-color: #ffffff;
}
.meisai_row_disabled {
    background-color: #c6fbd3;
}

.num_only {
    ime-mode: disabled;
}
.num_all {
    ime-mode: disabled;
}
.num_plus {
    ime-mode: disabled;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    td {
        padding: 0;
        margin: 0;
    }
}
@charset "UTF-8";

/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, figure, img, fieldset,
a, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, small, strong, dl, dt, dd, ol, ul, li,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin:0;
	padding:0;
	border:none;
	outline:none;
	/*-webkit-margin-before: 0;
	-webkit-margin-after: 0;
	-webkit-margin-start: 0;
	-webkit-margin-end: 0;
	-webkit-padding-start: 0;*/
}

header,hgroup,nav,article,section{
	display:block;
}

ol, ul{
	list-style: none;  
}

html{
    font:12px/1.5  Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

body{
	background:#FFF;
	width:100%;
	color:#333333;
}

hr{
	height: 1px;
	background-color:#00c365;
	border: none;
	background-color:#00c365;
}

a img {outline:none;}

input,
select,
textarea {
    box-sizing: border-box;
}


input:focus,
select:focus {
    /*background-color: #f8e352;*/
    background-color: #f7f06e;
    color: #000000;
    /*outline: none;
    color: initial;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: start;
    margin: 0em 0em 0em 0em;*/
    /*-webkit-border-radius: 0;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);*/
    border: 1px solid #666666;
    outline: none;
}
imput[type="checkbox"] :disabled {
    color: black;
    background-color: white;
    border: thin solid #666666;
}

imput:disabled,
select:disabled {
    color: black;
    background-color: white;
    border: thin solid #666666;
}
input[type="text"]:disabled {
    color: black;
    background: #DCDCDC;
    border: thin solid #aaaaaa;
}


.btn {
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    background: #86bf95;
    border-top: 1px solid #666;
    border-left: 1px solid #666;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
}



.cont{
	margin-left:10px;
	margin-right:10px;
	margin-top:10px;
    width:1240px;
}

.cent{
	margin-top:10px;
	text-align:center;
}

.spacer{
	height: 12px;
}

.m_w20{
	margin: 0px 20px;
}

.m_w40{
	margin: 0px 40px;
}

.m_w80{
	margin: 0px 80px;
}

.m_h10{
	margin: 10px 0px;
}

._right{
	text-align: right;
}

._left{
	text-align: left;
}

._top{
	vertical-align: top;
}

._bottom{
	vertical-align: bottom;
}


._inline{
	display:inline-block;
}


div.block_l_w60 {
   float: left;
   width: 60%;
}

div.block_l_w950px {
   float: left;
   width: 950px;
}

div.block_r {
margin-left: auto;
margin-right: auto;
}
div.block_c {
   clear: both;
}

.header-produced-note {
   position: absolute;
   top: 2px;
   right: 0;
   text-align: right;
   font-size: 10px;
   line-height: 1.1;
   color: #444;
}

.header-produced-note__line {
   display: block;
}

._meisaigyo{
	padding:4px 0px 4px 0px;
}

.h20{
	height: 20px;
}




/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/

h1{
	background:#3F6;
	color:#FFF;
	font-size: 28px;
	text-align: center;
	vertical-align: middle;
	height: 60px;
	line-height:60px;
}

h2 {
    background: #3F6;
    color: #FFF;
    font-size: 20px;
    text-align: center;
    line-height: 48px;
    height: 48px;
    width: 180px;
    border-radius: 8px;
}


/*------------------------------------------------------------
	テーブル
------------------------------------------------------------*/
table{
	border-collapse: collapse;
}

.idx {
    /*background-color:#3f8abf;*/
    /*background-color: #40a0c0;*/
    background-color: #1f7d61;
    color: #ffffff;
    border: solid 1px;
    border-color: #4fbd91;
}


td {
    padding: 2px;
    text-align: center;
}

.nopadding{
	padding: 0px;
}

.border {
    border: solid 1px;
    border-color: #568f73;
}

.meisaiborder {
    border: solid 1px;
    border-color: #1f7d57;
    border-collapse: collapse;
}

.itemborder {
    border: solid 1px;
    border-color: #4fbd7f;
}

.noborder{
	border: none;
}

.td_left{
	text-align: left;
}

.td_center {
    text-align: center;
}

.td_right {
    text-align: right;
}

.td_top{
	vertical-align: top;
}
._contents {
    background-color: #f1fff8;
    width: auto;
}
.nowrap{
    white-space: nowrap;
}

.tbl_login{
    border: none;
    margin-left: auto;
    margin-right: auto;
	width : 400px;
	height : 120px;
	top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}


.midashi {
    width: 1240px;
}

.footer_button
{
    width : 1240px;
}

/*------------------------------------------------------------
	ボタン
------------------------------------------------------------*/


.btn_top {
    width: 68px;
    padding: 6px 6px;
    font-size: 10px;
    background-color: #00c365;
    box-shadow: 2px 2px 1px #1f7d54;
    color: #fff;
    border-top: 0px solid #666;
    border-left: 0px solid #666;
    border-right: 0px solid #333;
    border-bottom: 0px solid #333;
}

.btn_logout {
    background: #ff0000;
    color: #fff;
    border: 1px;
    padding: 10px 10px;
    font-size: 16px;
    box-shadow: 3px 3px 1px #bf3f5f;
}

.btn_menu{
	height: 36px;
	/*border: 1px solid #AAA;*/
	border: none;
	font-size: 12px;
	/* display: inline-block; */
	width: 160px;
	padding: 0px;
}

.btn_menu_sel{
	background-image:url('../img/menu_select_1.png');
	color: #FFFFFF;
}

.btn_menu_nosel{
	background-image:url('../img/menu_noselect.png');
	color: #333333;
}

.btn_help_placeholder {
    height: 28px;
    min-width: 72px;
    padding: 0 12px;
    font-size: 11px;
    font-weight: bold;
    color: #333333;
    background: #f7e55a;
    border: 2px solid #222222;
    border-radius: 4px;
    box-shadow: 1px 1px 0 #666666;
    cursor: default;
}

.menu_border{
	background-color:#1f7d54;
	width:100%;
	height:6px;
}

.cont > hr,
.container.body-content > hr{
    width:1240px;
    margin-left:0;
    border:0;
    border-top:1px solid #00c365;
}

.btn_meisai {
    background-color: #1f7d54;
    color: #ffffff;
    display: inline-block;
    padding: 2px 2px;
    font-size: 10px;
}

.btn_submit {
    border-top: 0px solid #666;
    border-left: 0px solid #666;
    border-right: 0px solid #333;
    border-bottom: 0px solid #333;
    /*background-color:#bf9f3f;*/
    position: relative;
    width: 200px;
    height: 30px;
    font-size: 14px;
    color: #fff;
    font-weight: bolder;
    background-color: #1f7d54;
    /*border-radius: 4px;*/
    color: #fff;
    /*line-height: 52px;*/
    -webkit-transition: none;
    transition: none;
    box-shadow: 4px 4px 2px #000033;
    margin-bottom: 5px;
    /*text-shadow: 0 1px 1px rgba(0, 0, 0, .3);*/
}

    .btn_submit:focus {
        background-color: #f7f06e;
        color: #000000;
        box-shadow: 4px 4px 2px #b0b000;
        border-top: 1px solid #b0b000;
        border-left: 1px solid #b0b000;
        border-right: 1px solid #b0b000;
        border-bottom: 1px solid #b0b000;
    }

    .btn_submit:disabled {
        background-color: #666666;
        color: #000000;
        box-shadow: 4px 4px 2px #333;
        border-top: 1px solid #333;
        border-left: 1px solid #333;
        border-right: 1px solid #333;
        border-bottom: 1px solid #333;
    }

.btn21 {
    position: relative;
    vertical-align: middle;
    text-decoration: none;
    text-align: center;
    background: #AAA;
    border-top: 1px solid #333;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    width: 200px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    color: #333;
    font-weight: lighter;
    box-shadow: 4px 4px 2px #333;
    margin-bottom:5px;
}

.btn_subchumon{
	background-color:#ee3300;
}

.btn_submit:hover {
    /*background-color:#399ebf;
	color: #333333;*/
    background-color: #00c365;
    box-shadow: 4px 4px 2px #1f7d54;
    color: #fff;
}

.btn_option {
    border-top: 0px solid #666;
    border-left: 0px solid #666;
    border-right: 0px solid #333;
    border-bottom: 0px solid #333;
    background-color: #00c365;
    color: #fff;
    box-shadow: 4px 4px 2px #1f7d54;
}

.btn_search {
    border-top: 0px solid #666;
    border-left: 0px solid #666;
    border-right: 0px solid #333;
    border-bottom: 0px solid #333;
    background-color: #00c365;
    color: #fff;
    box-shadow: 4px 4px 2px #1f7d54;
}

/*.btn_option:hover{
	background-color:#f1f6ff;
	color: #333333;
}*/

/*ID照会*/
.btn_mail {
    width: 50px;
    height: 30px;
    font-size: 12px;
    color: #333;
    font-weight: bolder;
}


.btn_kakaku {
    width: 140px;
    padding: 6px 6px;
    font-size: 11px;
    background-color: #00c365;
    box-shadow: 2px 2px 1px #1f7d54;
    color: #fff;
    border-top: 0px solid #666;
    border-left: 0px solid #666;
    border-right: 0px solid #333;
    border-bottom: 0px solid #333;
}


/*------------------------------------------------------------
	テキストボックス
------------------------------------------------------------*/
.cyokusetu{
	width:50px;
}

.txt_chk {
    width: 10px;
    ime-mode: disabled;
}

.txt_meisho {
    width: 240px;
}

/*------------------------------------------------------------
	セレクトボックス
------------------------------------------------------------*/

/*------------------------------------------------------------
	フッタースペース
------------------------------------------------------------*/

/*============================================================
	項目依存
============================================================*/

.nohinsaki{
	/*display: inline-block;*/
	width: 240px;
	height: 20px;
}

.shimukesaki{
	/*display: inline-block;*/
	width: 240px;
	height: 20px;
}

/*ID照会*/
.mailform {
    width: 340px;
    height: 20px;
}

.servicename {
    font-size: 26px;
    text-align: left;
}

.screen_title {
    font-size: 26px;
    text-align: center;
}

.num{
	text-align:right;
}

.kako{
	width:106px;
}

.zaishitsu{
	width:106px;
}

.sunpo {
    width: 60px;
    text-align: right;
}

.inzu {
    width: 40px;
    text-align: right;
}

.mentori{
	width:40px;
}

.td_mentori{
	width:96px;
	/*height:30px;*/
}

.op_mentori{
	width:40px;
	/*height:30px;*/
}

.op_tekiyo{
	width:150px;
}

.chuban{
	width:120px;
}

.td_sunpo{
	width:69px;
}

.kakokasho-input{
    width:28px !important;
    min-width:28px;
    max-width:28px;
    height:20px;
    padding:0 2px;
    text-align:center;
    box-sizing:border-box;
}

.td_copy{
	width:40px;
}

.td_no{
	width:24px;
}

.td_kako{
	width:112px;
}
.td_zaishitsu{
	width:112px;
}

.td_zaishitsu_shohin{
	width:200px;
}

.td_inzu{
	width:46px;
}

.td_kingaku{
	width:86px;
}
.td_chuban{
	width:124px;
}

.td_del{
	width:36px;
}

.td_noki{
	width:124px;
}

.estimate-result-table{
    border-collapse: collapse;
}

.estimate-result-table td{
    empty-cells: show;
}

.estimate-result-table td.td_noki{
    white-space: nowrap;
}

/* W002000 detail header widths: keep the header columns aligned with the detail inputs */
td.nopadding > table[style*="height:61px"]:has(td.td_kako.idx) {
    width: auto;
    table-layout: fixed;
}

td.nopadding > table[style*="height:61px"]:has(td.td_kako.idx) td.td_kako.idx {
    width: 112px;
}

td.nopadding > table[style*="height:61px"]:has(td.td_kako.idx) td.td_zaishitsu.idx {
    width: 112px;
}

td.nopadding > table[style*="height:61px"]:has(td.td_kako.idx) td.td_inzu.idx {
    width: 46px;
}

td.nopadding > table[style*="height:61px"]:has(td.td_kako.idx) td.td_mentori.idx {
    width: 96px;
}

td.nopadding > table[style*="height:61px"]:has(td.td_kako.idx) td.td_sunpo.idx {
    width: 62px;
}

td.nopadding > table[style*="height:61px"]:has(td.td_kako.idx) td.idx[colspan="3"] {
    width: 235px;
}

td.nopadding > table[style*="height:61px"]:has(td.td_kako.idx) td.idx[colspan="2"] {
    width: 190px;
}

td.nopadding > table[style*="height:61px"]:has(td.td_kako.idx) td.idx[rowspan="2"]:last-child {
    width: 240px;
}

.td_kibonoki {
    width: 124px;
}

.td_syuka{
	width:58px;
}

.td_op{
	width:169px;
}

.kingaku{ 
	width:74px;
}

.estimate-result-table td.td_weight_value{
    text-align:right;
    padding-right:6px;
}

.estimate-result-table td.td_weight_value .kingaku{
    display:block;
    width:100%;
    text-align:right;
}

.w002000-footer-line{
    width:1240px;
    margin:0;
    border:0;
    border-top:1px solid #00c365;
}

.container.body-content:has(.w002000-summary-layout) > hr{
    width:1240px;
    margin-left:0;
    border:0;
    border-top:1px solid #00c365;
}

.company_kabu{ 
	font-size:18px;
}
.company_name{ 
	font-size:18px;
}

.goukei{
	width:120px;
	height:20px;
	text-align:right;
	font-size:14px;
}

.dentatsu {
    width: 920px;
    margin-bottom: -1px;
}
#goukei{
	font-size:18px;
}

/*20221017 価格情報*/
ul.kakaku-meisai {
    text-align: left;
    padding: 0 0.5em;
    margin-top: 2em;
    overflow: auto;
    height: 500px;
    font-size: 20px;
    width: 55%;
    left: 6%
}

ul.kakaku-meisai-tuika {
    text-align: center;
    padding: 0 0.5em;
    margin-top: 2em;
    overflow: auto;
    height: 150px;
    font-size: 20px;
    width: 55%;
    left: 6%
}

div.kakaku-meisai2 {
    text-align:center;
    margin-top: 2em;
    font-size: 20px;
    height: 100px;
}

    ul.kakaku-meisai::-webkit-scrollbar {
        display: none;
    }

    ul.kakaku-meisai::after {
        position: absolute;
        content: attr(title);
        padding: 1px 7px;
        letter-spacing: 0.05em;
        font-weight: bold;
        font-size: .8em;
        background: #00796B;
        color: #fff;
        bottom: 100%;
        left: 150px;
        border-radius: 4px 4px 0px 0px;
    }

    ul.kakaku-meisai li {
        line-height: 1.5;
        padding: 0.5em 0 0.5em 1.4em;
        border-bottom: dotted 3px #8effa1;
    }

        ul.kakaku-meisai li::before {
            position: absolute;
            content: ""
        }
        ul.kakaku-meisai { 
            position: relative; padding: 0 0.5em;
            margin-top: 2em;
            list-style-type: none;
        }

ul.kakaku-meisai-tuika::-webkit-scrollbar {
    display: none;
}

    ul.kakaku-meisai::after {
        position: absolute;
        content: attr(title);
        padding: 1px 7px;
        letter-spacing: 0.05em;
        font-weight: bold;
        font-size: .8em;
        background: #00796B;
        color: #fff;
        bottom: 100%;
        left: -2px;
        border-radius: 4px 4px 0px 0px;
    }

ul.kakaku-meisai li {
    line-height: 1.5;
    padding: 0.5em 0 0.5em 1.4em;
    border-bottom: dotted 3px #8effa1;
}

    ul.kakaku-meisai li:last-of-type {
        border-bottom: dotted 3px #8effa1;
    }


    ul.kakaku-meisai li:last-of-type {
        border-bottom: dotted 3px #8effa1;
    }

            ul.kakaku-meisai::-webkit-scrollbar {
                display: none;
            }

            ul.kakaku-meisai::after {
                position: absolute;
                content: attr(title);
                padding: 1px 7px;
                letter-spacing: 0.05em;
                font-weight: bold;
                font-size: .8em;
                background: #00796B;
                color: #fff;
                bottom: 100%;
                left: 150px;
                border-radius: 4px 4px 0px 0px;
            }

ul.kakaku-meisai li {
    line-height: 1.5;
    padding: 0.5em 0 0.5em 1.4em;
    border-bottom: dotted 3px #8effa1;
}

                ul.kakaku-meisai li::before {
                    position: absolute;
                    content: ""
                }

ul.kakaku-meisai-tuika {
    position: relative;
    padding: 0 0.5em;
    margin-top: 2em;
    list-style-type: none;
}

    ul.kakaku-meisai-tuika::after {
        position: absolute;
        content: attr(title);
        padding: 1px 7px;
        letter-spacing: 0.05em;
        font-weight: bold;
        font-size: .8em;
        background: #00796B;
        color: #fff;
        bottom: 100%;
        left: -2px;
        border-radius: 4px 4px 0px 0px;
    }

    ul.kakaku-meisai-tuika li {
        line-height: 1.5;
        padding: 0.5em 0 0.5em 1.4em;
        border-bottom: dotted 3px #8effa1;
    }

        ul.kakaku-meisai-tuika li:last-of-type {
            border-bottom: dotted 3px #8effa1;
        }


        ul.kakaku-meisai-tuika li:last-of-type {
            border-bottom: dotted 3px #8effa1;
        }

.screen_title_kakaku {
    font-size: 28px;
    text-align: center;
    width: 60%
}

.screen_title_kakaku2 {
    font-size: 26px;
    text-align: center;
    width: 60%
}

.screen_title_kakakusub {
    font-size: 22px;
    text-align: center;
    width: 60%;
}


.screen_title_kakakusub_mt {
    font-size: 22px;
    width: 60%;
text-align:center
}
.kakaku_line {
    border-bottom: 1px solid;
    height: 1px;
    background-color: #00c365;
    border: none;
    background-color: #00c365;
    width: 60%
}


.btn_submit_kakaku {
    border-top: 0px solid #666;
    border-left: 0px solid #666;
    border-right: 0px solid #333;
    border-bottom: 0px solid #333;
    /*background-color:#bf9f3f;*/
    text-align:center;
    width: 200px;
    height: 30px;
    font-size: 14px;
    color: #fff;
    font-weight: bolder;
    background-color: #1f7d54;
    /*border-radius: 4px;*/
    color: #fff;
    /*line-height: 52px;*/
    -webkit-transition: none;
    transition: none;
    box-shadow: 4px 4px 2px #003300;
    margin-bottom: 5px;
    /*text-shadow: 0 1px 1px rgba(0, 0, 0, .3);*/
}
/*20221017 価格情報*/
/*------------------------------------------------------------
	エラーメッセージ
------------------------------------------------------------*/
            .err_msg{
	font-size: 24px;
	color: #ff0000;
}
/*------------------------------------------------------------
	フッタースペース
------------------------------------------------------------*/
.bottom{
	height: 2000px;
}

.bottom_syukko{
	height: 80px;
}

.bottom_zanzai{
	height: 60px;
}
/*------------------------------------------------------------
	autocomplete用
------------------------------------------------------------*/
.ui-autocomplete {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 20px;
    position: absolute; 
    cursor: default;
    z-index:1 !important;
}
#jquery-ui-autocomplete label {
    float: left;
    margin-right: 0.5em;
    color: black;
    font-size: 15px;
}
/* Chromeのdatepickerを無効にする
input::-webkit-calendar-picker-indicator {
    display: none;
}
input[type="date"]::-webkit-input-placeholder {
    visibility: hidden !important;
}
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
} */

