@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');

/*--state--*/
.state_tag{
	display:block;
	border-radius: 10px;
	padding:3px;
	width:100%;
	text-align:center;
}
/* 幅を統一するために */
.w100{
	display:block;
	width:100px;
	text-align:center;
}
.w150{
	display:block;
	width:150px;
	text-align:center;
}
.w200{
	display:block;
	width:200px;
	text-align:center;
}

/* リスト要素をリセットする ---------------- */
dl,dt,dd,ol,ul,li	{
	list-style-position: outside;
	list-style-type: none;
}
/*box-sizingを全ブラウザに対応*/
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/* floatの解除 ------------- */
.fbox{
	clear:both;
	_display: inline-block;
	min-height: 1%;
}
.fbox:after {
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
	content: ".";
	line-height: 0;
}



/* ===================================================================

	スタイルの設定

=================================================================== */
html {
	font-size:16px;
}
body{
	color:#444444;
	line-height:1.5;
	margin:0;
	background:#ffffff;
	font-family: 'Noto Sans JP', sans-serif;
}
#contents {
	box-sizing: border-box;
}
#contents * {
	box-sizing: border-box;
}
img {
	max-width: 100%;
}



/* ---------------- 上書き ------------- */
strong {font-weight:bold;}
p,li,dl,dt,dd {line-height:1.5;}
.red{	color:#F40027;}
.red2{	color:#DC0000;}
.blue{	color:blue;}
.blue{	color:blue;}
.txt-left {	text-align:left;}
.txt-right {	text-align:right;}


.bg {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 888;
	background-color: rgba(51,51,51,0.7);
	display: none;
}

/* ===================================================================
	通常のリンク
=================================================================== */
a:link {
	color: #558BC6;
	text-decoration: none;
}
a:visited {
	color: #558BC6;
	text-decoration:none;
}
a:hover {
	color: #7BA8DB;
	text-decoration:none;
}
a:active {
	color: #7BA8DB;
	text-decoration:none;
}
/*
a {
	color: #0088cc;
	text-decoration: none;
}
a:hover {
	color: #005580;
	text-decoration: underline;
}*/


/* メインエリアはリンクにアンダーライン */
/*#main a{
	text-decoration:underline;
}*/

/* ===================================================================
	#header
	ヘッダー
=================================================================== */
header {
	height:59px;
	display: flex; 
	justify-content: space-between;
	align-items: center;
	background: #444;
	color: #FFF;
	position: fixed;
	width: 100%;
	z-index:999;
	transition:1s;
}

header.transform {
/*	background: rgba(255,197,21,0.8);*/
	background: rgba(68,68,68,0.9);
	height:32px;
}
header.transform span.gmenu_txt {
	display:none !important;
	transition:1s;
}/*NSD210711*/


header a {
	
}

/*	ロゴ
------------------------------------------------------------------ */
.header_logo {
	padding: 0 2%;
	line-height: 1;
	font-size: 1.2rem;
	font-weight: 700;
}
.header_logo a {
	color: #fff;
}

/*	グローバルメニュー
------------------------------------------------------------------ */
.header_gmenu ul {
	display: flex;
	justify-content: flex-end;
}
.header_gmenu ul li {
	border-left: 1px dotted rgba(255,255,255,0.5);
	width:90px;
}
.header_gmenu ul span {
	display: block;
	text-align: center;
	line-height: 1.2;
}
.header_gmenu ul span.gmenu_icon {
	font-size: 20px;
	margin-bottom: 5px;
/*	color: #abcefe;*/
}
.header_gmenu ul span.gmenu_txt {
	font-size: 11px;
}
.header_gmenu ul a {
	display: block;
	padding: 8px 15px;
	color: #fff;
}

.sp_close_btn,
.sp_menu_btn {
	display: none;
}


/* ===================================================================
	#footer
	フッター
=================================================================== */
footer {
}


/* -------------- address -------------- */
address {
	margin:0;
	padding: 20px 0;
	text-align:center;
	font-style: normal;
}







@media screen and (max-width: 1100px) {
	header {
	}
	.header_logo {
		padding: 0 2%;
	}
	/*
	.header_gmenu {
		display: none;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		background: #FFC515;
		color: #333;
	}
	.header_gmenu ul li {
		width: calc(100% / 4);
	}
	.header_gmenu ul li:first-child {
		border-left: none;
	}*/
	
	.header_gmenu {
		display: block;
		transition: all 0.2s;
		transform: translate(300px);
		width:300px;
		height:100%;
		background: #000000;
		position: fixed;
		top:0;
		right:0;
		z-index: 1000;
		color: #ffffff;
	}
	.header_gmenu a {
		color: #ffffff;
	}
	.header_gmenu.open {
		transform: translate(0);
	}
	.header_gmenu ul {
		display: block;
	}
	.header_gmenu ul li {
		display: block;
		width: auto;
		border-left: none;
		border-bottom: 1px dotted rgba(255,255,255,0.5);
	}
	.header_gmenu ul li a {
		display: flex;
		align-items: center;
	}
	.header_gmenu ul span {
	}
	.header_gmenu ul span.gmenu_icon {
		margin-right: 10px;
	}
	.header_gmenu ul span.gmenu_txt {
		text-align: left;
		font-size: 14px;
	}
	.gmenu_sp_close {
		padding: 10px 10px;
		text-align:right;
	}
	.sp_close_btn {
		text-align: right;
		padding: 10px;
		cursor: pointer;
	}
	.sp_close_btn i {
		margin-right: 5px;
	}
	
	.sp_menu_btn {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		align-self: stretch;
		padding: 5px 10px;
		cursor: pointer;
	}
	.sp_menu_btn span.gmenu_icon {
		font-size: 20px;
	}
	.sp_menu_btn span.gmenu_txt {
		font-size: 11px;
	}
}
/* スマホ用（縦） */
@media screen and (max-width: 480px) {
}









/* ===================================================================
	共通CSS
=================================================================== */
#main {
	padding: 59px 0 20px;
}
#mainarea {
	max-width: 1240px;
	width: 94%;
	margin: 0 auto;
	padding: 40px 0 0;
}
.sec {
	margin-bottom: 40px;
}
.sec_separator {
	padding-bottom: 20px;
	border-bottom: 1px dotted #ccc;
}


/*	見出し
------------------------------------------------------------------ */
h1 {
	margin: 0;
	padding: 1em 0.5em;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
	background: #efefef;
	color: #333;
}

h1.top {

	width: 100%;
	padding: 0.25em 0.5em;
	position: fixed;
	z-index: 9999;

}


h2 {
	margin: 20px 0 10px;
	font-size: 1.3rem;
	font-weight: 700;
	color: #333;
}
h2:first-of-type {
	margin-top: 0;
}

h3 {
	margin: 20px 0 10px;
	font-size: 1.1rem;
	font-weight: 700;
	color: #333;
}
h3:first-of-type {
	margin-top: 0;
}


/*	フォーム関連
------------------------------------------------------------------ */
.form_box {
	display: flex;
	margin-bottom: 1.5em;
}
.form_box dt {
	width: 8em;
	margin-right: 1em;
	font-weight: 500;
	flex-shrink: 0;
	flex-grow: 0;
}
.form_box dd {
	flex-shrink: 1;
	flex-grow: 1;
}

.form_box .form_box_wrap {
	display: flex;
	flex-wrap: wrap;
}
.form_box .form_box_wrap > div {
	margin-right: 0.2em;
}

.hissu {
	margin-left: .5em;
	color: #ff1d25;
	font-weight: 500;
}
/* ボタン */
.form_btn {
	margin:20px auto;
	text-align: center;
}
.form_btn_footer {
	padding: 10px;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.5);
}

.btn,
a.btn,
.form_btn .btn,
.form_btn a.btn {
	display: inline-block;
	width: 11em;
	margin: 0 .5em;
	padding: 0.8em;
	/*
	background: #E98500;
	color: #ffffff;*/
	background: #FFC515;
	color: #333;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	text-decoration: none;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-family: 'Noto Sans JP', sans-serif;
}
.form_btn .btn_close ,
.form_btn a.btn_close,
.btn_close {
	background: #ccc;
}


.btn_area_syushi  .btn,
.btn_area_syushi a.btn {
	display: inline-block;
	width: auto;
	padding: 0.5em 1em;
}


/* 画面の説明 */
.explanation_area {
	margin: 0 auto 20px;
}
.explanation_area ul li {
	padding: 0 0 0 12px;
	margin: 3px 0;
	position: relative;
}
.explanation_area ul li::before {
	display: block;
	content: '';
	position: absolute;
	top: .5em;
	left: 0;
	width: 6px;
	height: 6px;
	background-color: #FFC515;
	border-radius: 100%;
}



/* サーチパネル */
.sec_search {
	margin-top: 20px;
	border: 1px solid #ccc;
}
.sec_search_btm {
	padding: 15px;
}
.sec_search h2 {
	margin: 0;
	padding: 0.5em 1em;
	font-size: .9rem;
	font-weight: 500;
	color: #fff;
	background: #444;
}

.sec_search .form_box {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.sec_search .form_box dt {
	margin: 0 1em 0 0;
	width: 5em;
	text-align: right;
}
.sec_search .form_box dd {
	flex-grow: 1;
}

.search_clm2 {
	display: flex;
	justify-content: space-between;
}
.search_clm2 .form_box {
	width: 48%;
}

.sec_search_btm .input.text label{
	margin-right: 0.5em;
}

/*	フォーム関連
------------------------------------------------------------------ */
button, select, input, textarea {
	outline: none;
}
input[type="text"],
input[type="number"],
input[type="tel"],
input[type="password"],
input[type="email"],
input[type="date"],
input[type="time"] {
	width: 100%;
	height: 2.4em;
	border: 1px solid #CAD3DA;
	padding: 0 0.5em;
	line-height: 2.4em;
}
input[type="date"] {
	width: auto;
}
input[type="time"] {
	width: auto;
}
label {
	cursor:pointer;
}
input[type="checkbox"] {
	margin-right: 0.2em;
	cursor:pointer;
}
input[type="radio"] {
	margin-right: 0.2em;
}

label:has(:disabled) {
	color: #ccc;
	cursor:not-allowed;
}
input[type="checkbox"]:disabled {
	cursor:not-allowed;
}


/* 各ベンダープレフィックスが取れた標準版！！(http://caniuse.com/#search=placeholder-shown) */
:placeholder-shown,
::-webkit-input-placeholder {
	color: #949DA6;
}
:-moz-placeholder ,
::-moz-placeholder {
	color: #949DA6; opacity: 1;
}
:-ms-input-placeholder {
	color: #949DA6; }
::-ms-input-placeholder {
  color: #949DA6;
}
::placeholder{
	color:#949DA6;
}
input[type="tel"].form_2em,
input[type="text"].form_2em {

	width: 2.5em;
}

input[type="tel"].form_5em,
input[type="text"].form_5em {
	width: 5em;
}
input[type="tel"].form_10em,
input[type="text"].form_10em {
	width: 10em;
}
input[type="tel"].form_15em,
input[type="text"].form_15em {
	width: 15em;
}
input[type="tel"].form_20em,
input[type="text"].form_20em {
	width: 20em;
}
input[type="tel"].form_25em,
input[type="text"].form_25em {
	width: 25em;
}
input[type="tel"].form_30em,
input[type="text"].form_30em {
	width: 30em;
}

.input_icon {
	display: inline-block;
	border: 1px solid #CAD3DA;
	border-left: none;
	background: #f0f3f5;
	padding: 0 1em;
	height: 2.3em;
	line-height: 2.3em;
	font-size: 1rem;
	vertical-align: middle;
}

textarea {
	width: 100%;
	height: 150px;
	border: 1px solid #CAD3DA;
	padding: 0.5em;
	font-family: 'Noto Sans JP', sans-serif;
}
textarea.mini {
	height: 6em;
}

select {
	width: 100%;
	height: 2.4em;
	border: 1px solid #CAD3DA;
	padding: 0 0.2em;
	line-height: 2.4em;
	background: #fff;
	border: 1px solid #CAD3DA;
	border-radius: 2px;
}
select.mini {
	width: auto;
}
select option {
	background: #fff;
}

.form_ex {
	margin-top: 0.5em;
	font-size: .9rem;
	color: #888;
}


.estimate_info_box select {
	width: auto;
}



/*	テーブル
------------------------------------------------------------------ */
table {
	width:100%;
	margin:0;
	border-collapse: collapse;
	border-spacing: 0;
	border: none;
	clear:both;
}
table th ,
table td {
	padding: 5px;
	border: 1px solid #ccc;
	text-align: center;
	vertical-align: middle;
	font-size: 0.9rem;
	/*white-space: nowrap;*//**画面を小さくしたときにtableがそれに合わせて折りたたまれない*/
}
table th {
	background: #F1F1F1;
}
table td {
	text-align: left;
	background: #fff;
}
table td.actions {
	text-align:center;
}


table td.actions a {
	display: inline-block;
	margin: 0.3em 0.2em;
	padding: 0.4em 0.8em;
	background: #558bc6;
	color: #fff;
	border-radius: 5px;
}

table td.actions a.hide{
	display:none;
}


table td.actions a.del {
	background: #ff1d25;
}
table td.actions a.btn_link {
	background: #ffb01d;
}
table td.actions a.btn_pdf {
	color: #fff!important;
	background: #e63f0c;
	font-weight: 400;
}
table td.actions a i {
	margin-right: 0.2em;
}
table td.txt_r {
	text-align: right;
}


table .sat td {
	background: #eef3f9;
}
table .sun td {
	background: #fff8f8;
}


.progress {
	width: 1000px;
	max-height: 400px;
	overflow-y: auto;
}

.fixed01,
.fixed02{
	position: sticky;
	top: 0;
	left: 0;
}
.fixed01:before,
.fixed02:before {
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	width: calc(100% + 2 );
	height: calc(100% + 2 );
	border: 1px solid #ccc;
}
th.fixed02:before {
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	width: calc(100% + 2 );
	height: calc(100% + 2 );
	border: 1px solid #ccc;
}
.fixed01{
	z-index: 2;
}
.fixed02{
	z-index: 1;
}




.ex_txt {
	margin-bottom: 30px;
}


.top_btn_area {
	margin-bottom: 20px;
	text-align: right;
}

.mi {
	color: #E60006;
}


/* ステータスアイコン */

.icon {
	display: inline-block;
	margin: 0.3em 0;
	padding: 0.25em 0.4em;
	font-size: .9rem;
	font-weight: 500;
	line-height: 1;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
}
.icon_active {
	background-color: #79c447;
}
.icon_inactive {
	background-color: #818a91;
}
.icon_banned {
	background-color: #ff5454;
}

small {
	font-size: .8rem;
}


/* 収支テーブル */



td.sub_total,
.sub_total td,
.sales_total td {
	background: #eef3f9;
}
td.total {
	background: #f4fcf8;
}
.cumulative_total td {
	background: #fff8e1;
}


/*  昇順・降順*/
.asc::after,
.desc::after {
	display: inline;
	margin-left: .3em;
	color: #333;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	line-height: 1;
}
.asc::after {
	content: '\f0d7';
}
.desc::after {
	content: '\f0d8';
}

/*	ログイン
------------------------------------------------------------------ */

.pass_forget {
	margin: 30px 0 0;
	text-align: center;
}

/* ログインエラー */
.login_error {
	margin: 10vh 0;
	padding: 1em;
	font-size: 120%;
	font-weight: 700;
	text-align: center;
	border: 2px solid #ff9194;
}


.txt_basic {
	margin: 20px auto;
	padding: 20px;
	font-size: 1.2rem;
	border: 2px solid #eee;
	text-align: center;
}


/*	ログイン後トップ
------------------------------------------------------------------ */
.sec_home {
	display: flex;
	justify-content: space-between;
}

.home_main {
	width: calc(100% - 240px);
}

.home_side {
	width: 200px;
}
.home_side h2 {
	margin-bottom: 0;
	padding: 0;
	background: linear-gradient(transparent 70%,rgba(255,197,21,.5) 70%);
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5;
}

.side_news_list {
	margin-bottom: 30px;
}
.side_news_list li {
	padding: 0.8em 0;
	border-bottom: 1px dotted #ccc;
	font-size: .9rem;
	font-weight: 300;
}
.side_news_list li .date,
.side_news_list li .title {
	display: block;
	margin-bottom: 0.2em;
	font-weight: 700;
	color: #FFC515;
	color: #999;
}
.side_news_list li .title_red {
	color: #fe6064;
}
.side_news_list li .title_blue {
	color: #558bc6;
}

.menu_list {
	margin-bottom: 40px;
	display: flex;
	flex-wrap: wrap;

}
/* 2カラム */
.menu_list.clm_two li {
	width: 48%;
	margin-right: 4%;
	margin-bottom: 4%;
}
.menu_list.clm_two li:nth-child(even) {
	margin-right: 0;
}
/* 3カラム */
.menu_list.clm_three li {
	width: 31%;
	margin-right: 3.5%;
	margin-bottom: 3.5%;
}
.menu_list.clm_three li:nth-child(3n) {
	margin-right: 0;
}

.menu_list a {
	height:100%;
	display: block;
	padding: 20px;
	background: #f6f6f6;
	border-radius: 5px;
	box-shadow: 0 3px 0 rgba(0,0,0,0.1);
	text-align: center;
}

.menu_list a .menu_name {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.menu_list a .menu_icon {
	display: block;
	width: 1.5em;
	margin-right: 10px;
	font-size: 40px;
	color: #FFC515;
/*	text-align: center;*/
}
.menu_list a .menu_txt {
	display: block;
	font-size: 18px;
	color: #333;
	font-weight: 500;
}
.menu_list a .menu_ex {
	color: #666;
	text-align: left;
	font-size: .8rem;
}



/* タブレット */
@media ( max-width : 960px ){
}
/* スマホ（横） */
@media screen and (max-width: 600px) {
	.sec_home {
		display: block;
	}
	.home_main {
		width: auto;
		margin: 0 0 40px;
	}
	.home_side {
		width: auto;
	}
}
/* スマホ用（縦） */
@media screen and (max-width: 480px) {
}





/*	打刻エリア
------------------------------------------------------------------ */

#dakoku {
	max-width: 600px;
	margin: 0 auto 20px;
	/* background: #eff6ff;
	border: 1px solid #cde2ff; */
	text-align: center;
	background: #FFC515;
	color: #333;
	border-radius: 10px;
}
h2.dakoku_title {
	margin: 0;
	padding: 0.5em;
/*	background: #cde2ff;
	color: #FFC515;*/
	color: #333;
}
.dakoku_inner {
	padding: 5%;
}
.dakoku_date {
	font-size: 1.3rem;
}
.dakoku_time {
	margin-bottom: 20px;
	font-size: 3rem;
	font-weight: 500;
	line-height: 1.2;
}
.dakoku_btn {
	display: flex;
	justify-content: space-between;
}

.btn_syukkin,
.btn_taikin {
	display: block;
	width: 47%;
	padding: 1.5em 1em;
	border: none;
	background: #ccc;
	border-radius: 5px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	font-family: 'Noto Sans JP', sans-serif;
	color: #333;
}
.btn_syukkin {
/*	background: #E98500;*/
	background: #f69c2f;
}
.btn_taikin {
/*	background: #0255C8;*/
	background: #ffffff;
	color: #444;
}
.btn_syukkin:disabled,
.btn_taikin:disabled {
	background:#aaa;
	color: #eee;
}

.dakoku_end_txt {
	font-size: 1.2rem;
}




/*	お知らせ
------------------------------------------------------------------ */
.news_list li {
	padding: 5px;
	border-bottom: 1px dotted #ccc;
	display: flex;
}
.news_list li .news_date {
	width: 6em;
	flex-shrink: 0;
	flex-grow: 0;
}
.news_list li a {
/*	color: #838280;*/
}

.news_link {
	margin-top: 10px;
	text-align: right;
}


/*	お知らせ一覧・詳細
------------------------------------------------------------------ */
.info_detail {
	padding: 10px 0;
	border-top: 1px dotted #ccc;
}





/*	有給申請
------------------------------------------------------------------ */
.sec_shinsei {}

.syonin {
	color: #E91100;
}
.hinin {
	color: #0255C8;
}


/* タイムカード */
.tab_menu {
	max-width: 960px;
	width: 94%;
	margin: 20px auto;
	border-bottom: 1px solid #efefef;
}

.sec .tab_menu {
	width: auto;
	max-width: inherit;
	margin-bottom: 20px;
/*	background: #F1F1F1;*/
}

.tab_menu ul {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.tab_menu ul li {
	margin: 0 3px;
}
.tab_menu ul li a {
	display: block;
	padding: 8px 20px;
	text-decoration: none;
	background: #efefef;
	color: #333;
	border-radius: 5px 5px 0 0;
	font-weight: 500;
}
.tab_menu ul li a.current {
	background: #ffc515;
/*	border-bottom: 3px solid #8DC21F;*/
}
.tab_menu ul li a:hover {
	background: #ffc515;
/*	border-bottom: 3px solid #8DC21F;*/
}

/* 年度切り替え */
.change_box {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-end;
}

.change_year {
	margin-right:10px;
	font-size: 1.4rem;
}
.change_year span.year {
	padding: 0 5px;
}
.change_year a {
	padding: 2px 8px;
}
.change_year i {
	font-size: 1.6rem;
}


.sticky_tbl_box {
	width: 100%;
	height: 200px;
	margin-top: 10px;

	overflow: scroll;
}
.sticky_tbl {
	width: 100%;
}
.sticky_tbl td {
	background-color: #333;
}
.sticky_tbl thead th {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 1;
	background-color: #F1F1F1;
}
.sticky_tbl tbody th {
	position: -webkit-sticky;
	position: sticky;
	background-color: #333;
	left: 0;
}
.sticky_tbl tbody th.fixed01 {
	left: 0;
}

.sticky_tbl thead th.blank {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 3;
}


/* ===================================================================
	レスポンシブ対応用
=================================================================== */
/* タブレット */
@media ( max-width : 960px ){
}
/* スマホ（横） */
@media screen and (max-width: 600px) {
}
/* スマホ用（縦） */
@media screen and (max-width: 480px) {
	.menu_list a .menu_name {
		display: block;
	}
	.menu_list a .menu_icon {
		width: auto;
		margin: 0 0 10px;
	}
}


/*
追加分
*/

ul { padding: 0; }
.add_area {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 10px;
}
.add_area h2 {
	margin: 0;
}


.page_counter span {
	font-weight: 700;
}

.add_area input,
.add_area a {
	margin: 0 0.2em;
}
.btn_add_area {
	display: flex;
	justify-content: flex-end;
	text-align: right;
}
.head_add {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 20px;
}
.sec .head_add .tab_menu {
	margin: 0;
}
.btn_add,
a.btn_add {
	text-align: center;
	display: inline-block;
/*	width: 30%;*/
	padding: 0.8em 1em;
	border: none;
	background: #ccc;
	border-radius: 5px;
	font-size: 1rem;
	font-weight: 700;
	font-family: 'Noto Sans JP', sans-serif;
	color: #333!important;
	background: #ffc515;
}
.btn_add i {
	margin-right: 0.2em;
}
.btn_csv {
	text-align: center;
	display: inline-block;
/*	width: 30%;*/
	padding: 0.4em 1em;
	border: none;
	background: #ccc;
	border-radius: 5px;
	font-weight: 700;
	font-family: 'Noto Sans JP', sans-serif;
	color: #fff!important;
	background: #13b604;
	margin-bottom: 10px;
	cursor: pointer;
}
.btn_pdf {
	text-align: center;
	display: inline-block;
/*	width: 30%;*/
	padding: 0.4em 1em;
	border: none;
	background: #ccc;
	border-radius: 5px;
	font-weight: 700;
	font-family: 'Noto Sans JP', sans-serif;
	color: #fff!important;
	background: #e63f0c;
	margin-bottom: 10px;
	margin-right: 10px;
	cursor: pointer;
}

table td.actions a.btn_pdf_seikyusyo,
table td.actions a.btn_pdf_nouhinsyo,
table td.actions a.btn_pdf_ryousyusyo,
table td.actions a.btn_pdf_mitsumorisyo {
	background-color: #e5e1e0;
	color: #333!important;
	border: 1px solid #837a77;
}
.btn_pdf_seikyusyo i {
	color: #558bc6;
}
.btn_pdf_nouhinsyo i{
	color: #e63f0c;
}
.btn_pdf_mitsumorisyo i{
	color: #e63f0c;
}
.btn_pdf_ryousyusyo i {
	color: #21B255;
}


.btn_add i,
.btn_csv i,
.btn_pdf i {
	margin-right: 0.2em;
}



.pagination {
	height: 36px;
	margin: 18px 0;
}
.pagination ul {
	display: inline-block;
	*display: inline;
	/* IE7 inline-block hack */
  
	*zoom: 1;
	margin-left: 0;
	margin-bottom: 0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.pagination li {
	display: inline;
}
.pagination a {
	float: left;
	padding: 0 14px;
	line-height: 34px;
	text-decoration: none;
	border: 1px solid #ddd;
	border-left-width: 0;
}
.pagination a:hover,
.pagination .active a {
	background-color: #f5f5f5;
}
.pagination .active a {
	color: #999999;
	cursor: default;
}
.pagination .disabled span,
.pagination .disabled a,
.pagination .disabled a:hover {
	color: #999999;
	background-color: transparent;
	cursor: default;
}
.pagination li:first-child a {
	border-left-width: 1px;
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
}
.pagination li:last-child a {
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
}
.pagination-centered {
	text-align: center;
}
.pagination-right {
	text-align: right;
}
.pager {
	margin-left: 0;
	margin-bottom: 18px;
	list-style: none;
	text-align: center;
	*zoom: 1;
}
.pager:before,
.pager:after {
	display: table;
	content: "";
}
.pager:after {
	clear: both;
}
.pager li {
	display: inline;
}
.pager a {
	display: inline-block;
	padding: 5px 14px;
	background-color: #333;
	border: 1px solid #ddd;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}
.pager a:hover {
	text-decoration: none;
	background-color: #f5f5f5;
}
.pager .next a {
	float: right;
}
.pager .previous a {
	float: left;
}
.pager .disabled a,
.pager .disabled a:hover {
	color: #999999;
	background-color: #333;
	cursor: default;
}
input[type="tel"].hasDatepicker,
input[type="text"].hasDatepicker{
	width: 100px;
	height: 2.4em;
	border: 1px solid #CAD3DA;
	padding: 0 0.2em;
	line-height: 2.4em;
}






.message {
	padding: 10px;
	background: #fefefe;
	font-weight: 600;
	color: #fff;
}
.message.success {
	background: #79c447;
}
.message.error {
	background: #ff5454;
}
.message.info {
	background: #19a3e7;
}


/* フォームのエラー 20220418_kusa */
.error-message {
	margin-top: 0.3em;
	padding: .5em;
	background: #ffeded;
	color: #ff5454;
	font-weight: 500;
}




/* モーダル */
.modal_base {
	position: relative;
}
.modal_base .close {
	position: absolute;
	top: -1em;
	right: -1em;
	position: absolute;
/*	top: 10px;
	right: 20px;
	width: 2em;
	height: 2em;*/
	line-height: 2em;
	border-radius: 1em;
/*	background: #fff;*/
	background: none;
}
.close a {
	display: block;
	width: 2em;
	height: 2em;
	line-height: 2em;
	text-align: center;
	background: #ffc515;
	font-size: 20px;
	border-radius: 1em;
	cursor: pointer;
	color: #444;
	font-weight: bold;
}

.iziModal-navigate > button {
	opacity: .5!important;
}

.iziModal .iziModal-button {
	opacity: .6!important;
}
.iziModal .iziModal-button:hover {
	opacity: 1!important;
}



/* お知らせモーダル */
.info_area {
	padding: 20px;
}




/*	ここから追加 mitumori.html
------------------------------------------------------------------ */
.form_attention {
	padding: 20px;
	background: #ffe9ea;
}

.form_attention_title {
	color: #FF1D25!important;
}
.attention_list {
}
.attention_list li {
	margin-bottom: 0.5em;
}
.attention_list dl dt {
	font-weight: 700;
}
.attention_list dl dd {
	padding-left: 1em;
}


.estimate_info_box {
	display: flex;
	justify-content: space-between;
}
.estimate_info_box dl {
	width: calc(65% - 2em);
}
.estimate_info_box dl:nth-child(2n) {
	width: calc(35% - 2em);
}


table th.col_border_none,
table td.col_border_none {
	border: none;
	background: none;
}
table td.num {
	text-align: center;
}
table select {
	width: 100%;
}

.btn_del {
	background: #f2f4f6;
	border: 1px solid #CAD3DA;
	border-radius: 4px;
	font-weight: 700;
	cursor: pointer;
}
.btn_del:hover {
	background: #dee4e8;
}

.btn_estimate_sousa {
	margin: 10px 0;
}
.btn_estimate_row {
	margin-right: 0.5em;
	padding: 0.2em 1em;
	border: none;
	font-weight: 700;
	cursor: pointer;
	background: #f2f4f6;
	border: 1px solid #CAD3DA;
	border-radius: 4px;
}
.btn_estimate_row:hover {
	background: #dee4e8;
}
.btn_estimate_row i {
	margin-right: 0.3em;
	color: #558BC6;
}

.btn_calc {
	width: auto;
	margin: 0;
	padding: 0.6em 1em;
	line-height: 1;
	border: 1px solid #CAD3DA;
	background: #f2f4f6;
}
.btn_calc:hover {
	background: #dee4e8;
}

.estimate_total {
	margin-bottom: 20px;
	display: flex;
	justify-content: flex-end;
}
.tbl_goukei {
	width: auto;
}
.tbl_goukei td {
	
	border: none;
}

/*
article {
	width: 76%;
	margin: 0 auto;
	padding: 20px 0;
}
h2 {
	text-align: center;
}
.basic_information {
	border: #949DA6 2px solid;
	padding: 20px;
}
.info_box {
	display: flex;
	justify-content: space-between;
}
.calculation_wrap {
	display: flex;
	justify-content: space-between;
	padding: 30px;
}
.calculation_box,.tax,.tax_rate,.piece_01,.calculation_box02,.button {
	display: flex;
}
.select_box {
	width: 100px;
	height: 30px;
}
dl {
	display: flex;
	padding: 10px;
}
dt {
	width: 100px;
	padding: 0 30px 0 10px;
	border-left: #014199 3px solid;
}
#company,#charge,#delivery,#hinnmei {
	width: 300px;
	padding: 10px;
}
#tanni {
	padding: 10px;
}
.addition,.insert {
	border: #949DA6 2px solid;
	border-radius: 10px;
	background-color: #CAD3DA;
	padding: 5px 10px;
	margin: 10px;
}
i {
	padding-right: 10px;
}
.button a:link {
	color: #000;
}
.button a:visited {
	color: #000;
}
.button a:hover {
	color: #000;
}
.button a:active {
	color: #000;
}
.piece_01{
	padding-bottom: 10px;
}
.calculation_box {
	padding-right: 10px;
}
.calculation_box p {
	width: 105px;
	padding-right: 10px;
}
.ritu {
	width: 50px;
	text-align: center;
}
.tax,.tax_rate {
	width: 100px;
}
.tax input {
	width: 50px;
}
#percent {
	margin-left: 5px;
}
.calculation_box02 p {
	margin-left: 10px;
	border: #014199 2px solid;
	padding: 5px;
}
.calculation_box02 a:link {
	color: #000;
}
.calculation_box02 a:visited {
	color: #000;
}
.calculation_box02 a:hover {
	color: #000;
}
.calculation_box02 a:active {
	color: #000;
}
h3 {
	font-size: 20px;
	color: #DC0000;
	text-decoration: underline;
}
.caution {
	color: #0255C8;
}
.btn_close {
	display: inline-block;
	width: 12em;
	margin: 0 1em;
	padding: 0.8em;
	background: #f5f5f5;
	color: #000;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	text-decoration: none;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-family: 'Noto Sans JP', sans-serif;
}

*/

/*	mitumori_02.html
------------------------------------------------------------------ */
/*
.form_box01 dd{
	display: flex;
	height: 39px;
}
.form_box01 p {
	padding: 10px 0 0 10px;

}
.form_box02 #charge {
	width: 150px;
	margin-right: 5px;
}
.charge_text {
	margin-right: 5px;
}

.pay {
	padding: 0 15px 0 10px;
}

*/


/* フォーカスを持つ <input> 要素を選択 */
input:focus {
  background: #DDFFFF;
}


