.autohide{
	display:none;
}
#maskA1{
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 9999;
    background-color: rgba(0,0,0,0.5);
}
#dialogA1Box{
    position: fixed;
    width: 80vw;
    height: 80vh;
    z-index: 10000;
    background: #374e79;
    color: white;
    top: 50%;
    padding: 20px;
    text-anchor: end;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 1200px;
}
#dialogA1Box.errorDisp{
	background: #fff2bc;
	color:black;
}

.LIKEHEADINSIDE{
	font-size: 2em;
	color: #a5a5a5;
	border-bottom: 2px solid #a5a5a5;
	line-height: 31px;
}

.input-box_sp{
	width: min(calc(100% - 4rem), calc(600px - 4rem));
	margin: 2rem auto .5rem auto;
	padding: 2rem;
	background: #DEDEDE;
}

#confirm{
	display: none;
}
.div_fields_list{
	display: flex;
	justify-content: space-between;
	padding-top: 1rem;
}
.field_name_div{
	font-size: 1rem;
	line-height: 1.2;
	color: #FFF;
	width: 9.5rem;
	min-height: 2.2rem;
	padding: 0 .5rem;
	border: solid 1px #999;
	border-radius: .5rem 0 0 .5rem;
	background: #999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.input_div{
	width: calc(100% - 9.5rem);
	line-height: 1.2;
	min-height: 2.2rem;
}

.input_div input[type=text] {
	font-size: 1rem;
	line-height: 1.2;
	width: calc(100% - .8rem);
	min-height: 2.2rem;
	margin: 0;
	padding: 0 .4rem;
	border: solid 1px #999;
	border-radius: 0 .5rem .5rem 0;
	display: flex;
	align-items: center;
}

.radius_upper{
	border-radius: 0 .5rem 0 0!important;
}
.radius_lower{
	border-radius: 0 0 .5rem 0!important;
}


.div_enq_box .input_div{
	background: white;
	border: solid 1px #999;
	border-radius: 0 .5rem .5rem 0;
}
.tedq{
	padding: 0.5rem 0.5rem 0.5rem 23px !important;
    text-indent: -21px;
}

input[type="button"]:disabled {
	cursor: not-allowed!important;
	opacity: 0.6; /* お好みで */
}

.p_error_text{
	position: relative;
    padding-left: 1.6em;
    color: #333;
    font-size: .9rem;
    line-height: 1.5;
	text-align: left !important;
	font-weight: 600;
    padding-top: 3px;
}

.p_error_text::before{
    content: "⚠";
    position: absolute;
    left: 0;
    top: 0.3em;   /* 微調整 */
    color: #d32f2f;
    font-size: 1.3em;
    line-height: 1;
}

input.error,
input.error:-webkit-autofill{
	border: 2px solid #ff6464 !important;
	background: #fffafa !important;
	-webkit-box-shadow: 0 0 0 1000px #fffafa inset !important;
	box-shadow: 0 0 0 1000px #fffafa inset !important;
	-webkit-text-fill-color: #000 !important;
}

.error{
	border: 2px solid #ff6464 !important;
	background: #fffafa !important;
}

#TX001:disabled{
	background: #cdcdcd;
}


/***  CONFIRM　ここから ***/
#confirm{
	margin: 15px auto 0;
    display: block;
    width: min(calc(100% - 2rem), calc(630px - 2rem));
}
.conf_div_fields_list{
	display: flex;
	justify-content: space-between;
	padding-top: 1rem;
}
.confirm_field_name_div{
	width: 13rem;
	font-size: 1rem;
	line-height: 1.2;
	min-height: 2.2rem;
	padding: 0 .5rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.confirmedDispFieldTextArea{
	width: calc(100% - 13rem);
	font-size: 1rem;
	line-height: 1.2;
	min-height: 2.2rem;
	padding: 0 .5rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.button_sty{
	font-size: 1rem;
	line-height: 1.2;
	text-align: center;
	color: #04A;
	width: 12rem;
	padding: .5em 0;
	border-style: none;
	border: solid 1px #04A;
	border-radius: .6em;
	background: #FFF;
	display: block;
	transition: .3s;
	cursor: pointer;
}
.button_sty:not(:disabled):hover {
	color: #FFF;
	background: #04A;
}

#confirm_btn_box{
	display: flex;
	justify-content: space-around;
	margin: 30px auto 10px;
}

@media only screen and (max-width: 520px) {
	.div_fields_list, .conf_div_fields_list{
		flex-direction: column;
	}
	.field_name_div{
		width: calc(100% - .7rem);
		min-height: auto;
		padding: .5rem .3rem;
		border-radius: .5rem .5rem 0 0;
	}
	.confirm_field_name_div{
		width: calc(100% - .7rem);
		min-height: auto;
		padding: .5rem .3rem;
		background: #999;
		color: #FFF;
	}
	
	.confirmedDispFieldTextArea{
		width: 100%;
		padding: .5rem .3rem;
	}
	.input_div{
		width: 100%;
	}
	.input_div input[type=text]{
		width: calc(100% - .8rem - 2px);
		border-radius: 0 0 .5rem .5rem;
	}
	.radius_upper{
		border-radius: 0!important;
	}
	.radius_lower{
		border-radius: 0 0 .5rem .5rem!important;
	}
	.div_enq_box .input_div{
		width: calc(100% - .1rem);
		border-radius: 0 0 .5rem .5rem;
	}
}




#confirmModal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:10000;
    justify-content:center;
    align-items:center;
}

.confirmBox{
	width: 400px;
    background: #fff;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
    text-align: center;
}

.confirmBox h3{
    margin-top:0;
}

.btnArea{
    margin-top:25px;
    display: flex;
    justify-content: space-around;
    gap:12px;
}

.btnArea button{
    min-width:120px;
	padding:10px 20px;
    border:none;
    border-radius:6px;
    font-size:15px;
    font-weight:bold;
    cursor:pointer;
    transition:all .2s;
    background: rgba(255, 255, 255, 1);
    text-align: center;
}

/*　myページで使用　*/
#btnYes{
    background:#04A;
    color:#fff;
}

#btnYes:hover{
    background:#023c92;
}

/* キャンセルボタン */
#btnNo{
    background:#f3f3f3;
    color:#333;
    border:1px solid #bbb;
}

#btnNo:hover{
    background:#e5e5e5;
}
