@charset "UTF-8";

/** 読み込み時GIF **/
div.loader {
	background: #fff;
	opacity: 0.85;
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 10;
}

div.loader img {
	height: 10%;
	width: auto;
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 10;
}

/** 折り返し禁止指定クラスCSS ************************/
.nowrap {
	white-space: nowrap;
}

/** エラー文言表示CSS ************************/
/* divタグhidden */
div.hidden {
	display: none;
}

/* エラー文言太文字 */
div.alert-danger {
	font-weight: bold;
	text-align: center;
}

.alert-danger {
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
}

.alert {
	position: relative;
	padding: 0.75rem 1.25rem;
	margin-bottom: 1rem;
	border: 1px solid transparent;
	border-radius: 0.25rem;
}

.margin_top_32 {
	margin-top: 32px;
}

.margin_bottom_64 {
	margin-bottom: 64px;
}

/**
 * テキストカラー：青
 * 提案 並行状況テキスト表示で使用
 **/
.txt-color-blue {
	color: #2477BF;
}

/**
 * テキストカラー：緑
 * 提案 並行状況テキスト表示で使用
 **/
.txt-color-green {
	color: #24BF6B;
}

/**
 * テキストカラー：黒
 * 提案 並行状況テキスト表示で使用
 **/
.txt-color-black {
	color: #333;
}

/**
 * 背景カラー：黒
 * 提案 並行状況テキスト表示で使用
 **/
.bg-color-black {
	background-color: #888 !important;
}

/* ホバーコメントで使用（親要素につける） */
.hover_parent {
	position: relative;
}

/* ホバーコメントで使用（p要素（コメント）につける） */
.hover_tip {
	display: none;
	position: absolute;
	padding: 6px 8px;
	font-size: 12px;
	font-weight: 400;
	background-color: #2477bf;
	border: 1px solid #fff;
	border-radius: 5px;
	color: #fff;
	line-height: 15px;
	left: -10px;
	bottom: 100%;
	/* 折り返し設定 */
	min-width: 120px;
	/* ★ 最低これだけは確保 */
	max-width: 320px;
	width: max-content;
	/* ★ 中身に合わせて広げる */
	white-space: normal;
	/* 折り返しON */
	word-break: break-word;
	/* 長い英数字も折る */
}

.hover_tip:before {
	position: absolute;
	left: 44px;
	top: 100%;
	content: " ";
	height: 0;
	width: 0;
	border-style: solid;
	border-width: 0 5px 8px 5px;
	border-color: transparent transparent #2477bf transparent;
	border: 1px solid #fff;
	transform: rotate(180deg);
}

/* セル内に保持している元データは画面に見せない */
.memo_hover_tip {
	display: none;
}

/* hover対象セル */
.memo_hover_contens {
	cursor: pointer;
}

/* 画面上に別レイヤーで表示するツールチップ本体 */
.global_tooltip {
	display: none;
	position: fixed;
	z-index: 9999;
	padding: 6px 8px;
	font-size: 12px;
	font-weight: 400;
	background-color: #2477bf;
	border: 1px solid #fff;
	border-radius: 5px;
	color: #fff;
	line-height: 15px;
	min-width: 120px;
	max-width: 320px;
	width: max-content;
	white-space: normal;
	word-break: break-word;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* 上に表示する時の矢印 */
.global_tooltip::before {
	position: absolute;
	left: 20px;
	top: 100%;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 5px 0 5px;
	border-color: #2477bf transparent transparent transparent;
}

/* 画面上部に入りきらない時だけ下に表示 */
.global_tooltip.is-bottom::before {
	top: auto;
	bottom: 100%;
	border-width: 0 5px 8px 5px;
	border-color: transparent transparent #2477bf transparent;
}