	/* モーダルと背景の指定 */
#loading_work_modal	.modal{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		text-align: center;
		background: rgba(0,0,0,50%);
		padding: 40px 20px;
		overflow: auto;
		opacity: 0;
		visibility: hidden;
		transition: .3s;
		box-sizing: border-box;
	}

	/* モーダルの擬似要素の指定 */
#loading_work_modal	.modal:before{
		content: "";
		display: inline-block;
		vertical-align: middle;
		height: 100%;
		margin-left: -0.2em;
	}

	/* クラスが追加された時の指定 */
#loading_work_modal	.modal.is-active{
		opacity: 1;
		visibility: visible;
	}

	/* モーダル内側の指定 */
#loading_work_modal	.modal-container{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		width: 90%;
		max-width: 800px;
	}

	/* モーダルを閉じるボタンの指定 */
#loading_work_modal	.modal-close{
		position: absolute; 
		right: 10px;
		font-size: 2.5rem;
		font-weight: bold;
		cursor: pointer;
	}

	/* モーダルのコンテンツ部分の指定 */
#loading_work_modal	.modal-content{
		background: #fff;
		text-align: left;
		line-height: 1.8;
		overflow-y: auto !important;
		max-height: 80vh;
	}

/* 搬入作業選択ボタン */
#loading_work_modal_open_btn{
	border: 1px solid var(--FS_BTN_COLOR_1);
	color: var(--FS_BTN_COLOR_1);
	width: 100%;
	display: block;
	text-align: center;
	padding: 16px 0px 15px;
	cursor: pointer;
	font-size: 15px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}
#loading_work_modal_open_btn strong{
	display: inline-block;
	width: fit-content;
	color: var(--WHITE);
	background-color: var(--RED01);
	font-size: var(--FZ_12_CONST);
	border-radius: 5px;
	line-height: 1;
	padding: 5px 8px;
}
@media screen and (min-width: 768px){
	.modal-content{
		padding: 20px 35px;
	}
}
@media screen and (max-width: 767px){
	.modal-content{
		padding: 20px;
	}
}

/* 選択結果用エリア */
#loading_work_choice_result .loading_work_choice_result_title {
	background-color: #f7f7f7;
	font-size: 1.9rem;
	font-weight: bold;
	padding: 10px;
}

#loading_work_choice_result .loading_work_choice_result_area {
	background-color: #f7f7f7;
	display: flex;
	border-top: 1px solid #e2e2e2;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
}

#loading_work_choice_result .loading_work_choice_result_area .title {
	font-weight: bold;
}

#loading_work_choice_result .loading_work_choice_result_area .body {
	flex: 1;
}

#loading_work_choice_result .loading_work_choice_result_area .link {
	align-items: center;
	text-align: center;
	background-color: #fff;
	border: 1px solid #acacac;
	border-radius: 10px;
	cursor: pointer;
	padding: 5px 8px;
	font-size: 80%;
}





@media screen and (max-width:767px) {
#loading_work_choice_result .loading_work_choice_result_area .title {
  width: 142px;
}
#loading_work_choice_result .loading_work_choice_result_area .link {
  width: 66px;
}
}
@media screen and (min-width:768px) {
#loading_work_choice_result .loading_work_choice_result_area .title {
  width: 167px;
}
#loading_work_choice_result .loading_work_choice_result_area .link {
  width: 66px;
}
}

.d-none{
	display: none;
}

dt.fs-c-productOption__name:nth-child(2),
dd.fs-c-productOption__option:nth-child(3),
dt.fs-c-productOption__name:nth-child(5),
dd.fs-c-productOption__option:nth-child(6){
	display: none;
}


