@charset "utf-8";


body {
	overflow-y: scroll; /* あってもなくてもどちらでも可 */
}


div#confirm_field {
}

div#confirm_field {
	display: none;
}

div#confirm_field h2 {
	width: 90%;
	margin: 0 auto 20px;
	font-weight: bold;
	text-align: center;
}

div#confirm_field dl {
	width: 90%;
	margin: 0 auto;
	overflow: hidden;
}

div#confirm_field dl dt {
	clear: both;
	width: 30%;
	float: left;
	border-top: 1px dashed #cccccc;
	padding: 20px 0;
	text-align: right;
    color: #fff;
}

div#confirm_field dl dd {
	width: 65%;
	float: right;
	border-top: 1px dashed #cccccc;
	padding: 20px 0 20px 5%;
    color: #fff;
}

div#confirm_field p#confirm_submit {
    display: flex;
    justify-content: center;
	width: 90%;
	margin: 0 auto;
	padding: 80px 0 50px;
}

div#confirm_field input[type="button"] {
	margin: 0 10px;
	padding: .5em 3em;
	border-radius: 50px;
    border: none;
	background: var(--red);
	font-size: 20px;
	color: #fff;
	font-family: inherit;
	-webkit-appearance: none;
    cursor: pointer;
    transition: all .3s;
}

form#confirm_field input[type="button"]:hover {
    filter: brightness(1.2);
}

div#confirm_field input#confirm_cancel_button {
	background: #999;
}






/* -- responsive ----------------------------------------------------------------------------------------------------------------- */

/* 1000pixel start */
@media screen and ( max-width: 960px ) {

div#confirm_field {
	width: 100%;
    padding: 20px 0;
}

div#confirm_field h2 {
    margin: 0 0 20px;
	text-align: left;
}

div#confirm_field dl {
    width: 100%;
	overflow: visible;
}

div#confirm_field dl dt {
	width: auto;
	float: none;
    margin-bottom: 10px;
	padding: 20px 0 0 0;
    font-size: 14px;
	text-align: left;
    opacity: .5;
}

div#confirm_field dl dd {
    padding: 0 0 20px;
    width: 100%;
    float: none;
    border-top: none;
}

div#confirm_field p#confirm_submit {
    width: 100%;
    padding: 25px 0;
}

div#confirm_field input[type="button"] {
    margin: 0 5px;
	padding: .5em 2em;
	font-size: 16px;
}


}
/* 1000pixel end */




