﻿@charset "utf-8";

/*----modal----*/
.modalBtn {
	cursor: pointer;
}
.modalBox .bg {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0,0,0,0.4);
	z-index: 1000;
}

.modalBox .closeBtn {
	position: relative;
	width: 20px;
	height: 20px;
	margin: 0 10px 0 auto;
	cursor: pointer;
}

.modalBox .closeBtn::before,
.modalBox .closeBtn::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 2px);
	right: 0;
	width: 25px;
	height: 2px;
	background: #989898;
}

.modalBox .closeBtn::before {
	transform:rotate(45deg);
}

.modalBox .closeBtn::after {
	transform:rotate(-45deg);
}

.modalBox .modalCnt {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	padding: 15px 5px 35px 15px;
	width: 100%;
	max-height: 70vh;
	background: #fff;
	box-shadow: 0 5px 15px rgb(0 0 0 / 50%);
	border-radius: 6px;
	z-index: 10000;
}

.modalBox.show .modalCnt {
	display: block;
}

.modalBox .inr {
	padding: 0 10px 5px 0;
	margin-top: 10px;
	overflow-y: auto;
	max-height: calc(70vh - 80px);
}

@media (max-width: 640px) {
	.mvArea .mvBlock {
		text-align: left;
		position: relative;
		background: url(/carduse/misappropriate/img/index_ttl_001_sp.jpg) 0 0/contain no-repeat;
		width: 100%;
		height: 0;
		padding-top: 25.33%;
	}
	.mvArea .mvBlock .mvTitle {
		width: 92%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		font-size: 16px;
	}
	.anchorBlk01 {
		margin-top: 10px;
		padding: 10px;
		background: url(/carduse/misappropriate/img/index_bg_001.gif) 0 0 repeat;
	}
	.anchorBlk01 .contents {
		padding: 12px 3.5% 17px;
		background: #fdfdfd;
	}
	.anchorBlk01 .anchorItem:first-child {
		width: 100%;
	}
	.anchorBlk01 .anchorItem:last-child {
		width: 100%;
		margin-top: 10px;
	}
	.anchorBlk01 .anchorItem .ttl {
		width: 62%;
		margin: 0 auto;
	}
	.anchorBlk01 .anchorGroup {
		margin-top: 3px;
	}
	.anchorBlk01 .anchorBtn {
		width: 63%;
		margin: 0 auto;
	}
	.anchorBlk01 .anchorItem:last-child .anchorBtn:first-child {
		float: left;
		width: 50%;
	}
	.anchorBlk01 .anchorItem:last-child .anchorBtn:last-child {
		float: right;
		width: 50%;
	}
	.anchorBlk02 {
		margin-top: 20px;
	}
	.anchorBlk02 .anchorItem .ttl {
		width: 45%;
		margin: 0 auto;
	}
	.anchorBlk02 .anchorGroup {
		margin-top: 5px;
	}
	.clear:before, .clear:after {
		content: " ";
		display: table;
	}
	.clear:after {
		clear: both;
	}

	/* モーダル調整 */
.misappropriateModal .modalContent.modalL {
    top: 0;
    transform: translateY(0);
}

}