/* 共通CSS */

body{
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	/*font-family: 'Noto Sans JP', sans-serif;*/
	color: #000000;
	font-size:clamp(15px, 0.8vw, 25px);
}

a {
	transition: all .2s;
	-webkit-transition: all .2s;
}

/*ボタンの影表示を無くす*/
.btn-info, .btn-info.disabled,
.btn-primary, .btn-primary.disabled,
.btn-warning, .btn-warning.disabled,
.btn-secondary, .btn-secondary.disabled,
.btn-light, .btn-light.disabled,
.btn-danger, .btn-danger.disabled {
	box-shadow: none;
}

/*定義カラーを調整する*/
.btn-secondary {
	background-color: #949da5;
	border-color: #949da5;
	color: #fff;
}

/*太字をやめる*/
.section .section-title {
    font-weight: normal;
}

/**************************/
/* アイコン付きボタン表示
/**************************/
.icon-button {
	display:block;
	position:relative;
}
.icon-button i{
	position:absolute;
	top:50%;
	left:10px;
	margin-top:-0.5em;
	color:#FFFFFF;
}


/**************************/
/* フォントサイズ
/**************************/

.fz-s {
	font-size: 0.8em !important;
}
.fz-m {
	font-size: 1.0em !important;
}
.fz-l {
	font-size: 1.1em !important;
}
.fz-ll {
	font-size: 1.2em !important;
}

.fz-12 {
	font-size: 12px !important;
}
.fz-14 {
	font-size: 14px !important;
}
.fz-16 {
	font-size: 16px !important;
}



/**************************/
/* モーダルダイアログ設定
/**************************/

.modal-header {
	background-color: #1F2C5C;
	padding:16px 16px;
	color:#FFF;
	border-bottom:2px dashed #1F2C5C;
	font-size: large;
}

/* モーダルダイアログ設定 */
.modal-error .modal-header {
    background-color: #ef197d;
    border-bottom:2px dashed #ef197d;
}

/* モーダルダイアログ設定 */
.modal-confirm .modal-header {
	background-color: #f8c606;
	border-bottom:2px dashed #f8c606;
}

.modal-body {
	/*font-size: large;*/
}

.modal-body .error-detail-scroll {
	width: 100%;
	overflow-y: auto;
	overflow: scroll;
	height: 200px;
	border: 2px solid #ccc;
	font-size: 14px;
}

.modal-body .confirm-detail-scroll {
	width: 100%;
	overflow-y: auto;
	overflow: scroll;
	height: 200px;
	border: 2px solid #ccc;
	font-size: 14px;
}


#loading {
	display: table;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #000000;
	opacity: 0.5;
	z-index: 5;
}

#loading .loadingMsg {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}

#loading .loadingMsg .message  {
	margin-top: 10px;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 20px;
}

/**************************/
/* SELECT2のカスタムCSS
/**************************/

.select2-container .select2-selection--single .select2-selection__rendered {
	padding-top: 10px;  /* この値は高さに応じて調整 */
	padding-bottom: 10px;  /* この値は高さに応じて調整 */
	line-height: 1.5;
}

.select2-results__option--highlighted {
	background-color: #0071bb !important;
	color: white;  /* テキスト色 */
}

/*プルダウンメニューの枠の色を変更*/
.select2-dropdown {
	border-color: #aaa !important;  /* 枠の色 */
}

.select2-results__option {
	height: 40px;
	white-space: nowrap; /* テキストを折り返さないようにする */
	overflow: hidden; /* テキストがはみ出した場合には隠す */
	text-overflow: ellipsis; /* テキストがはみ出した場合には省略記号で表示 */
}

.select2-selection__placeholder {
	color: #ccc;
}

.select2-selection__choice {
	/*background-color: #007bff !important;*/
	/*border-color: #0056b3 !important;*/
	color: black !important;
	font-size: 12px;
}

.select2-selection__choice__remove {
	color: black !important;
}
.select2-container .select2-selection--single .select2-selection__clear {
	position: absolute;
	right: 40px; /* 矢印アイコンと重ならないように右側にスペースを確保 */
	top: 0.5rem; /* ボタンの縦位置を調整 */
	z-index: 2; /* 必要に応じてz-indexを調整 */
}
/**************************/
/* SELECT2のカスタムCSS ここまで
/**************************/
