/* #entryForm dt {
	margin: 1em 0 .25em;
}

#entryForm dd {
	margin: 0;
} */

/* #entryForm input[type="text"],
#entryForm select,
#entryForm textarea {
	border: 1px solid;
	background-color: #fff;
	padding: .5em;
	width: 30em;
	max-width: 100%;
	box-sizing: border-box;
	border-radius: 0;
} */

/* #entryForm input[required],
#entryForm select[required],
#entryForm textarea[required] {
	border: 2px solid red;
} */


#entryForm dt:has(+ dd *[required]) label::after {
	content: "\203B";
	color: var(--red);
	margin-left: 0.3em;
	font-size: 90%;
}

/* #entryForm button[type="submit"] {
	padding: 1em 2em;
	width: 30em;
	max-width: 100%;
} */


/* ==========================================================================
	フォーム
   ========================================================================== */

#entryForm input[type="text"],
#entryForm select,
#entryForm textarea {
	padding: .5em 1em;
	width: 610px;
	max-width: 100%;
	border-radius: var(--s1);
	border: 1px solid var(--line-grey);
	/* margin-bottom: var(--s2); */
	font-size: 16px;
}
#entryForm dt {
	margin-bottom: 16px;
	font-size: 16px;
}
#entryForm dt label {
	line-height: var(--lh-min);
	font-weight: bold;
}
#entryForm dt p._desc {
	font-size: 14px;
	display: inline-block;
}
#entryForm dt:not(:first-child) {
	margin-top: 40px;
}
#entryForm dd {
	margin-top: 16px;
	font-size: 16px;
}

#entryForm ._zip {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: var(--s1);
}
#entryForm ._zip input[type="text"] {
	width: 126px;
}
#entryForm ._zip i {
	width: 18px;
	border-bottom: 1px solid var(--line-grey);
}

#entryForm input[type="checkbox"] {
	margin-right: var(--s2);
	width: 20px;
	height: 20px;
	border: 1px solid var(--line-grey);
	border-radius: 0;
	vertical-align: middle;
	position: relative;
}
#entryForm input[type="checkbox"]:checked::after {
	background: var(--turq);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
	content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M20 7L10 17l-5-5'/%3E%3C/svg%3E");
}

#entryForm ._check {
	display: flex;
	/* flex-wrap: wrap; */
	align-items: center;
}

#entryForm .just-validate-error-field:not(input[type="checkbox"]) {
	border: 1px solid var(--red) !important;
}
#entryForm .just-validate-error-label {
	margin-top: var(--s1);
	color: var(--red) !important;
	width: 100%;
}
#entryForm .just-validate-error-label+.just-validate-error-label {
	display: none;
}


/* ==========================================================================
	確認画面
   ========================================================================== */

/* #confirmButton.-disable {
	background: #333;
	opacity: .4;
	pointer-events: none;
} */

#confirmPanel {
	opacity: 0;
	visibility: hidden;
	transition: 500ms;
	transition-property: opacity, visibility;
}
#confirmPanel.-show {
	opacity: 1;
	visibility: visible;
}

#confirmPanel {
	position: fixed;
	z-index: 2000;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, .8);
	display: flex;
	align-items: center;
}
#confirmPanel>._body {
	background: #fff;
	width: var(--inner-size);
	max-width: 95%;
	max-height: 95%;
	overflow-y: scroll;
	margin-inline: auto;
	padding: var(--s5);
	border-radius: var(--s1);
}

#confirmPanel dl {
	display: grid;
	row-gap: var(--s4);
}
#confirmPanel dt {
	font-weight: 700;
	margin-bottom: var(--s1);
}