@charset "utf-8";
.abc{
	color:blue;
	text-align: end;
	padding:10px;
}
input, select {
	vertical-align:middle;
}
.profBox{
	padding:25px;
	width:94%;
	max-width:680px;
	margin-left:auto;
	margin-right:auto;
	margin-top:50px;
	margin-bottom:50px;
    position: relative;
    z-index: 0;
    background-color: var(--area-background-color); /* 薄いベージュ */
	background-position: center 20px;
	background-size: 80%;
	text-align: left;
}
.profBox::before {
    content: '';
    position: absolute;
    inset: 0; /* top, right, bottom, left を一括指定 */
    margin: 5px;
    border: 2px dashed #A7A297;
    border-radius: 10px;
    z-index: -1;
    display: block;
}

.profBox h1{
	background:#f2f2f2;
	padding:15px;
	margin-bottom:20px;
	margin-top:0px;
	font-size:1.1em;
}

.profBox dl dt{
	border-bottom:1px solid #ededed;
	padding-bottom:10px;
	margin-bottom:15px;
	font-weight:bold;
}

.profBox dl dd{
	margin-bottom:25px;	
	margin-left:0px;
}

.inputText{
	width:100%;
	padding:10px!important;
	font-size:1.1em;
	box-sizing: border-box;
	border-style: solid;
	border-width: 1px;
	border-color: #c0c0c0;
}

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

.select_form select {
	font-size:1.1em;
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	border: none;
	background:#fff;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}

.select_form.select_form_inner {
	position: relative;
	border: 1px solid #c0c0c0;
	border-radius: 2px;
	background: #ffffff;
}
.select_form.select_form_inner:before {
	content: "";
	display:block;
	position: absolute;
	top: 0.8em;
	right: 0.9em;
	width:10px;
	height:10px;
	border-left: 1px solid #c0c0c0;
	border-bottom: 1px solid #c0c0c0;
	pointer-events: none;
	transform: rotate(-45deg);
	margin-top:-3px;
}
.select_form.select_form_inner select {
	padding: 8px 38px 8px 8px;
	color: #c0c0c0;
}

.textboxdata{
	border: 1px solid #c0c0c0;
	width:100%;
	height:150px;
	padding:15px;
	font-size:1.1em;
	box-sizing: border-box;
}

.btnStyle1{
	background:var(--btn-background-color);
	color:var(--btn-text-color);
	width:250px;
	display:block;
	margin-left:auto;
	margin-right:auto;
	font-size:1em;
	padding:15px;
	border:none;
	border-radius: 5px;
}
.erroebox{
	color:#d91313;
	padding-top:10px;
}
.delatearea{
	position: absolute;
	left: -9999px;
}
.mgb10px{
	margin-bottom:10px;
}