@charset "UTF-8";

.item_modal.remodal{
	background: #ff8d01;
	margin: 30px auto;
    padding: 30px;
    max-width: 800px;
}
.item_modal.remodal img{
	max-width: 100%;
}

.item_modal .remodal-close{
	border: none;
	border-radius: 0px;
	top: 10px;
	right: 10px;
    width: 35px;
    height: 35px;
    transition: all .2s;
}
.item_modal .remodal-close:before{
	width: 35px;
	line-height: 35px;
	font-size: 28px;
}
.item_modal .remodal-close:hover{
	background: #fff;
}
.item_modal .remodal-close:hover:before{
	color: #000;
}

.item_modal .remodal-contents{
	display: flex;
	/*align-items: center;*/
}
.item_modal .modal-note{
	font-size: 12px;
	margin-top: 1em;
	text-align: left;
}

.item_modal .modal-image,
.item_modal .modal-view{
	width: 50%;
}

.modal-view .view_inner{
  position: relative;
  width: 100%;
  padding-top: 66.5%;
  z-index: 1;
}
.modal-view .view_inner iframe{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.modal-info{
	margin-top: 2em;
}
.item_modal .modal-textswrap{
	width: 50%;
	padding-left: 30px;
	text-align: left;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.item_modal .modal-textswrap .modal-texts{
	margin-bottom: 3em;
    font-weight: bold;
    line-height: 1.5;
}
.item_modal .modal-textswrap .modal-brand{
    font-size: 18px;
}
.item_modal .modal-textswrap .modal-name{
    font-size: 20px;
}

.item_modal .modal-textswrap dt{
    display: inline-block;
    padding: 3px 20px;
    margin-bottom: 10px;
	background: #000;
    color: #fff;
    font-size: 13px;
    text-align: center;
    min-width: 5em;
}
.item_modal .modal-textswrap dd{
	margin-left: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

.item_modal .modal-textswrap .modal-link{
	position: relative;
	display: block;
	padding: 15px 20px;
	margin-top: 3em;
	background: #000;
	color: #fff;
	text-align: center;
	font-weight: bold;
    transition: all .2s;
}
.item_modal .modal-textswrap .modal-link:after {
    content: '＞';
    color: #fff;
    font-size: 14px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
.item_modal .modal-textswrap .modal-link:hover{
	background: #fff;
	color: #000;
}
.item_modal .modal-textswrap .modal-link:hover:after{
	color: #000;
}
.item_modal .modal-view .multiviewCol .reelImg.reel-overlay.active {
    cursor: grab;
    display: flex;
    justify-content: center;
    width: auto;
    height: auto;
}
.item_modal .modal-view .multiviewCol .reel {
    height: 523px;
    width: auto;
}
@media screen and (max-width: 767px){
	.item_modal.remodal{
		padding: 20px;
	}
	.item_modal .remodal-close{
		top: -20px;
    	right: -5px;
	}
	.item_modal .remodal-contents{
		display: block;
	}

	.item_modal .modal-image,
	.item_modal .modal-view{
		width: 100%;
	}
	.item_modal .modal-textswrap{
		display: block;
		width: 100%;
		padding-left: 0;
		margin-top: 30px;
	}
	.item_modal .modal-textswrap .modal-texts{
		margin-bottom: 1em;
	}
	.item_modal .modal-textswrap .modal-link{
		margin-top: 1em;
	}
	.item_modal .modal-view .multiviewCol img.reelImg.reel {
		height: 36%;
		width: auto;
	}
}