/* 
これはコンポーネントのＣＳＳです。 */

.map-area {
	width: 100%;
	text-align: center;
}

/* wrap-drop-file-zone */

.wrap-drop-file-zone .image-input {
	display: none;
}

.wrap-drop-file-zone .drop-file-zone {
	background-color: #EEE;
	border: #999 5px dashed;
}

.wrap-drop-file-zone .drop-file-zone img {
	height: 100%;
	width: 100%;
	display: block;
	margin-left: auto;
	margin-right: auto;
	object-fit: contain;
	object-position: center;
}

.wrap-drop-file-zone .wrap-image {
	height: 100%;
}

.wrap-drop-file-zone .remove-button {
	border-radius: 8px !important;
	margin-top: 5px;
}

.wrap-drop-file-zone .drop-file-zone.file-image-common{
	width: 310px;
	height: 210px;
	object-fit: contain;
}

.wrap-drop-file-zone .wrap-btn {
	position: absolute;
	transform: translateY(-100%);
}

.file-image-common img {
	width: 300px;
	height: 200px;
	object-fit: contain;
}

.maker-confirm .file-image-common img {
	border: 1px solid #ddd;
}

.wrap-drop-file-zone p#image-text {
	margin-bottom: 0;
}

.wrap-drop-file-zone #file-text {
	max-width: inherit;
	line-height: 20px;
	text-align: center;
	max-height: 65px;
	font-size: 12px;
}

.list-image-item #file-text{
	line-height: 12px;
	font-size: 8px;
}
/* Steps breadcumb
------------------------------------------------------------------------- */

.steps-breadcumb .title {
	color: var(--active-bg-color);
	font-weight: 500;
}

.steps-breadcumb .wrap-item {
	list-style: none;
	padding-left: 0;
}

.steps-breadcumb li {
	width: calc(100%/3);
}

.steps-breadcumb {
	padding-right: 20px;
	position: relative;
	z-index: 0;
}

/* z-index to make sure the buttons stack from left to right */

.steps-breadcumb li {
	float: left;
	position: relative;
	z-index: 3;
}

.steps-breadcumb li:first-child {
	border-radius: 0;
}

.steps-breadcumb li:nth-child(1) {
	border-left: 1px solid var(--active-bg-color);
}

.steps-breadcumb li:nth-child(2) {
	z-index: 1;
}

.steps-breadcumb li:nth-child(3) {
	z-index: 0;
}

/* step links */

.steps-breadcumb a,
.steps-breadcumb a:visited {
	width: 100%;
	padding: 0 0 0 25px;
	color: var(--inactive-txt-color);
	text-align: center;
	line-height: 40px;
	height: 40px;
	white-space: nowrap;
	border-top: 1px solid var(--active-bg-color);
	border-bottom: 1px solid var(--active-bg-color);
	text-decoration: none;
	border-right: 0;
	background-color: var(--inactive-bg-color);
	float: left;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: left;
	padding-left: 40px;
}

.steps-breadcumb li:first-child a {
	padding-left: 12px;
	border-radius: 0;
}

.steps-breadcumb a:before {
	content: "";
	width: 28px;
	height: 28px;
	border-right: 1px solid var(--active-bg-color);
	border-bottom: 1px solid var(--active-bg-color);
	background-color: var(--inactive-bg-color);
	display: block;
	position: absolute;
	top: 5px;
	right: -14px;
	z-index: -1;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* selected */

.steps-breadcumb li.active {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.steps-breadcumb li.active a,
.steps-breadcumb li.active a:before {
	background: var(--active-bg-color);
	color: var(--active-txt-color);
}

.steps-breadcumb li a:before {
	border-right: 1px solid var(--active-bg-color);
	border-bottom: 1px solid var(--active-bg-color);
}