@CHARSET "UTF-8";
/* ----------------------------------------
	アプリケーション共通cssファイル
 ---------------------------------------- */
/* 必須入力 */
.required:after {
	content: "※";
	color: #c7243a;
}
/* ボタン要素エリア */
.common-button-area {
	padding: 3rem 0 1rem 0;
	text-align: center;
	transition: 0.3s ease;
}
/* ボタン要素エリア（スクロールアウト時） */
.common-button-area.scroll-out {
	display: inline-block;
	max-width: 1024px;
	padding-left: 1rem;
	width: 100%;
}
/* ボタン要素エリア内のボタン */
.common-button-area > button {
	height: 3rem;
	min-width: 10rem;
    width: 15em;
    margin: 0;
}
/* テーブル用ボタン要素エリア */
.common-label-button-area {
	text-align: right;
	transition: 0.3s ease;
	height: 0;
}
/* ラベル横ボタン要素エリア直下の要素 */
.common-label-button-area  > * {
	position: relative;
	top: -2.5rem;
}
.common-label-button-area  > *:last-child {
	margin-right: 0;
}
/* ラベル横ボタン要素エリア直下のボタン */
.common-label-button-area  > button {
	min-width: 11rem;
}
/* 中央寄せエリア */
.common-centering-area {
	display: block;
	margin: 1rem auto;
	text-align: center;
}
/* 画面下部固定エリア */
.common-fixed-bottom {
	background-color: rgba(75, 117, 185, 0.5);
	bottom: 0;
	left: 0px;
	min-width: 910px;
	padding-right: 1rem;
	position: fixed;
	text-align: center;
	transition: 0.3s ease;
	width: 100%;
}
/* キーワード検索エリア */
.common-search-area {
	font-size: 0;
	padding-right: 10rem;
	position: relative;
	text-align: left;
}

/* キーワード検索エリア：検索キーワード */
.common-search-area > .search-keyword {
	vertical-align: middle;
	width: 50%;
}

/* キーワード検索エリア：ラベル */
.common-search-area > span {
	font-size: 1.25rem;
	padding: 0.5rem 1rem;
	vertical-align: middle;
}
/* キーワード検索エリア：ボタン */
.common-search-area > button {
	margin:0 0 0 1rem;
	min-width: 8rem;
	padding: 0 2rem;
	vertical-align: middle;
}
/* キーワード検索エリア：論理削除フラグ */
.common-search-area > .is-logical-delete + label {
	bottom: 0.25rem;
	position: absolute !important;
	right: 0;
}

/* 検索条件エリア（検索条件の下） */
.common-search-button-area {
	text-align: center;
	width: 100%;
}
/* 検索条件エリア（検索条件の下）：ボタン */
.common-search-button-area > button {
	min-width: 8rem;
	padding: 0 2rem;
}

/* 画面マスク用 */
.common-mask {
	background-color: rgba(0, 0, 0, 0.3);
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}

/* メニューボタン非表示用 */
.common_hide_menu_link {
	display: none;
}

/* ---------------------------------------- */
/*
*	件数表示
*/
/* 件数表示エリア */
.common-count-area {
	position: relative;
	width: 100%;
}
.common-count-area > .common-count-total {
	font-size: 0;
	right: 0;
	text-align: right;
}
/* 件数表示：共通 */
.common-count-total > span {
	border: 1px solid #A5A5A5;
	display: inline-block;
	height: 3rem;
	line-height: 2rem;
	padding: 0.5rem 0px;
}
/* 件数表示：ラベル */
.common-count-total > .count-label {
	background-color: #f5f5f5;
	text-align: center;
	width: 4rem;
}
/* 件数表示：値 */
.common-count-total > .count-value {
	margin-left: -1px;
	padding-right: 0.5rem;
	text-align: right;
	width: 7rem;
}
.common-count-total > .count-value::after {
	content: "件";
	margin-left: 5px;
}

/* ウィンドウを開く要素 */
.common-show-window {
	text-decoration: underline;
	width: fit-content;
}
.common-show-window:hover {
	cursor: pointer;
	text-decoration: underline;
}