@charset "UTF-8";

.modal-content {
	position: fixed;
	display: none;
	width: 734px;
	min-height: 474px;
	padding: 0;
	margin: 0;
	background: url("../img/modal-background.png") no-repeat center top;
	box-sizing: border-box;
	z-index: 101;
}

.modal-inner {
	height: 366px;
	padding: 46px 77px;
}

.modal-title {
	position: absolute;
	top: -50px;
	width: 100%;
}
.modal-title p {
	border-radius: 6px;
	border: 3px solid #a37e0e;
	color: #fffab6;
	line-height: 1.5;
	font-weight: bold;
	text-align: center;
	width: 70%;
	padding: 10px 20px;
	margin: 0 auto;
	background-color: rgba(0,0,0,0.4);
	box-shadow: 0 0 10px rgba(0,0,0,.5);
}
.cx_smartphoneview .modal-title {
	top: -66px;
}
.cx_smartphoneview .modal-title p {
	font-size: 22px;
}

.modal-text-content {
	height: 365px;
	padding: 20px;
	background-color: #fff;
	box-sizing: border-box;
	overflow-y: auto;
}
.modal-text-content::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}
.modal-text-content::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.25);
    box-shadow: 0 0 1px rgba(255,255,255,.5);
}
.modal-text-content p {
	line-height: 1.5;
	margin-bottom: 1.6em;
}
.modal-text-content img.img-left {
	float: left;
	padding: 0 20px 20px 0;
}
.modal-text-content img.img-right {
	float: right;
	padding: 0 0 20px 20px;
}

.modal-close {
	position: absolute;
	bottom: 8px;
	left: 50%;
	margin-left: -62px;
	cursor: pointer;
}
.modal-close img {
	transition: .3s;
}
.modal-close:hover img {
	opacity: .7;
}

#modal-overlay {
	z-index: 100;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%;
	background-color: rgba( 0,0,0, 0.6);
}
