@charset "utf-8";


/* ---------------------------

dl,dt,dd

--------------------------- */
.dl dt {
    float: left;
    font-weight: 400;
    font-size: 1.6rem;
    text-align: right;
    width: 165px;
    padding-right: 30px;
    position: relative;
}
#modalFolderShare .dl dt {
	width: 140px;
}
.dl dt.need::after {
	content: '*';
	color: red;
	position: absolute;
	top: 0;
}
.dl dd {
    margin-bottom: 10px;
}
.dl dd:last-of-type {
    margin-bottom: 0px;
}

.dl2 {
    padding-left: 165px;
}
.dl2 dt {
    width: 120px;
}
.dl2 dd {
    margin-bottom: 5px;
}



.dl3 dt {
	width: 60px;
	font-size: 1.2rem;
	font-weight: 400;
	text-align: left;
	padding-right: 0;
	letter-spacing: 0;
	line-height: 1.5;
}
.dl3 dd {
	margin-bottom: 5px;
	letter-spacing: 0;
	line-height: 1.5;
}
.dl3 .dd-span {
	padding-left: 60px;
	display: block;
	width: 100%;
	font-size: 1.2rem;
}

.dl4 dt {
	float: none;
	text-align: left;
	width: inherit;
	padding-right: 0;
	padding-top: 15px;
	font-size: 1.4rem;
	font-weight: 700;
}
.dl4 dd {
	padding-bottom: 15px;
	margin-bottom: 0;
	font-size: 1.4rem;
	font-weight: 400;
}
.dl4 dt.annotation {
	position: relative;
}
.dl4 dt.annotation::after {
	content: '*1';
	color: #A2A2A2;
	font-size: 1.1rem;
	font-weight: 400;
	position: absolute;
}

.span-annotation {
	font-size: 1.2rem;
	color: #969696;
	font-weight: 400;
	line-height: 1.5;
	display: inline-block;
}

/* ---------------------------

モーダル

--------------------------- */
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,70%);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	/* transition: .3s; */
	box-sizing: border-box;
	min-width: 1260px;
}
	/*モーダル本体の擬似要素の指定*/
	.modal-container:before {
		content: "";
		display: inline-block;
		vertical-align: middle;
		height: 100%;
	}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
	opacity: 1;
	visibility: visible;
    z-index: 999;
}
#message.active {
	z-index: 1000;
}
#message2.active {
	z-index: 1000;
}
#modalConfirm.active {
    z-index: 1000;
}
/*モーダルを閉じるボタンの指定*/
.modal-close {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: -40px;
	right: -40px;
	width: 40px;
	height: 40px;
	font-size: 40px;
	color: #fff;
	cursor: pointer;
}
.modal-close:hover {
	opacity: 0.8;
}
/*モーダル枠の指定*/
.modal-body {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 90%;
}
/*モーダル内のコンテンツの指定*/
.modal-content {
	background: #fff;
	text-align: left;
	padding: 30px;
	overflow-x: auto;
}

.modal-content .h4 {
    padding: 10px 0;
    border-bottom: 1px solid #CCCCCC;
    margin-bottom: 20px;
}

#message span {
	padding: 0 20px;
	overflow-wrap: break-word;
}


/* ---------------------------

テーブル

--------------------------- */
.table {
	border-collapse: collapse;
	border-spacing: 0;
}

	.table,
	.table tr,
	.table tbody,
	.table thead {
		display: block;
		width: 100%;
	}

		.table tr {
			white-space: nowrap;
			display: flex;
		}

		.table thead th,
		.table tbody td {
			white-space: initial;
			/* background-color:red; */
		}

		.table tr {
			border-bottom: 1px solid #A5A5A5;
		}

		.table th, table td, .table td a {
			line-height: 1.25;
			word-break: break-all;
			font-size: 1.3rem;
		}

		.table th {
			padding: 5px 10px;
		}

		.table td {
			padding: 8px 12px;
		}

		.table tr:last-of-type td {
			border-bottom: none;
		}

		.table thead {
			background-color: #EDEDED;
			display: block;
		}

		.table tbody {
			/*overflow-y: scroll;*/
			overflow-y: auto;
			display: block;
			/*-ms-overflow-style: none;*/
		}

			.table tbody tr {
				cursor: pointer;
/*				align-items: center;*/
			}

				.table tbody tr:hover {
					background-color: rgba(239, 245, 255, 0.6);
				}

			.table tbody::-webkit-scrollbar {
				/*display: none;*/
			}

.list-style .tbody tr {
	height: 125px;
}

.tr-selected {
	outline: 3px solid #C61C1C;
	outline-offset: -3px;
}

.table .th-td-edit {
	text-align: center;
}


.table-check tbody tr.selected {
	/*background-color: #FFF89F;*/
	background-color: #FFFFCF;
}

.table .wd70 {
	width: 7%;
	max-width: 60px;
}

.table .wd140 {
	width: 14%;
	max-width: 160px
}

.table .wd200 {
	width: 20%;
	max-width: 250px
}

.table .wd100p {
	width: 25%;
	max-width: 250px
}

/* テーブルヘッダーのソートアイコン */
.table th.angle_down {
	position: relative;
}

	.table th.angle_down:after {
		position: absolute;
		font-family: "Font Awesome 6 Free";
		content: '\f107';
		font-weight: 900;
		font-size: 1.1rem;
		top: 50%;
		transform: translateY(-50%);
		padding: 5px;
		padding-top: 6px;
		color: #969696;
	}

	.table th.angle_down.sup:after {
		top: 30%;
	}

	.table th.angle_down:hover:after {
		color: #222;
	}

.table th.angle_up {
	position: relative;
}

	.table th.angle_up:after {
		position: absolute;
		font-family: "Font Awesome 6 Free";
		content: '\f106';
		font-weight: 900;
		font-size: 1.1rem;
		top: 50%;
		transform: translateY(-50%);
		padding: 5px;
		padding-top: 6px;
		color: #969696;
	}

	.table th.angle_up.sup:after {
		top: 30%;
	}

	.table th.angle_up:hover:after {
		color: #222;
	}

/* ---------------------------

ページャー

--------------------------- */ 
.page-side-bar-wrapper {
	background-color: #F8F8F8;
	border-bottom: 1px solid #ccc;
}
.page-side-bar-wrapper .side-bar-icon-box {
	border-bottom: none;
}
.pager_wrapper {
	height: 32px;
	position: relative;
	display: inherit;
	text-align: center;
}
.pager_container {
	display: inline-block;
	margin-right: 5px;
}
.pager {
	margin: 3px;
	font-weight: 400;
	text-align: center;
	display: inline-block;
	font-size: 1.2rem;
	width: 12px;
	color: #0066CC;
	text-decoration: underline;
	min-width: 12px;
	width: initial;
}

	.pager .fas,
	.pager .fa-solid {
		text-decoration: underline;
		font-size: 1.1rem;
	}

.pager_point {
	font-weight: 500;
	text-align: center;
	display: inline-block;
	font-size: 1.2rem;
	width: auto;
	margin: 0;
}

.pager:hover {
	cursor: pointer;
	opacity: 0.6;
}

.pager.current {
	color: #222;
	text-decoration: none;
	font-weight: 500;
	/* font-size: 1.4rem; */
}

	.pager.current:hover {
		cursor: default;
		opacity: 1;
	}

/*---------- 件数表示 ----------*/
.number_files {
	font-weight: 400;
	font-size: 1rem;
/*	margin-right: 8px;*/
}

	.number_files span {
		font-size: 1.2rem;
		padding: 0 2px;
		font-weight: 500;
	}

/* ---------------------------

ファイレンジャーについて

--------------------------- */
#about_filenger .modal-content .h4 {
	margin-bottom: 18px;
}

#about_filenger .modal-content .content {
	padding-right: 20px;
	padding-left: 20px;
}

#about_filenger .modal-content .about_filenger_box:not(:last-of-type) {
	margin-bottom: 20px;
}

#about_filenger .modal-content p {
	font-size: 1.3rem;
	color: #555;
}

#about_filenger .modal-content li {
	line-height: 1;
}

#about_filenger .modal-content a {
	font-size: 1.3rem;
	color: #555;
	text-decoration: underline;
	position: relative;
}

	#about_filenger .modal-content a::before {
		position: absolute;
		display: inline-block;
		font-family: "Font Awesome 6 Free";
		font-weight: 900;
		content: "\f105";
		padding-right: 10px;
		top: -1px;
		left: -12px;
	}

#about_filenger .jiima_logo {
	width: 100px;
	margin: 12px 0 12px;
}

	#about_filenger .jiima_logo:first-of-type {
		margin-right: 10px;
	}