@charset "utf-8";
/* CSS Document */

#contents {
	font-size:16px;
}
#contents p {
	font-size:14px;
	padding-left:0.5em;
	line-height:150%;
}

table#koza_info {
	margin:20px 0;
	padding:0;
	border-collapse:collapse;
	width:100%;
}
table#koza_info th, table#koza_info td {
	padding:15px 10px;
	border:1px solid #ccc;
	font-size:12px;
}
table#koza_info th {
	text-align:left;
	background-color:#E7F0CE;
	white-space:nowrap;
	width:225px;
}
input[type="submit"] {
    display: block;
    border-radius: 5px;
    font-size: 11pt;
    text-align: center;
    cursor: pointer;
    padding: 10px 31px;
    background: #006699;
    color: #ffffff;
    line-height: 1em;
    /* transition: .1s; */
    box-shadow: 2px 2px #a7a7a7;
    border: 1px solid #0f4e6d;
    text-decoration: none;
    margin: 0 auto;
}
.koza_submit_btn p {
    text-align: center;
}


/* =========================
   モーダル
========================= */
.confirm-modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
}
.confirm-modal {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
    width: 640px;
	max-width: 90%;
	border-radius: 6px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	z-index: 1000;
}
#confirmModal img {
    position: absolute;
    top: -40px;
    right: -40px;
}
.confirm-modal__inner {
	padding: 20px;
}
#contents .confirm-modal p {
	margin-bottom: 15px;
	font-size: 14px;
}
#contents .confirm-modal p.f20 {
    font-size: 20px;
}
ul.list_inner_modal li:last-child {
    list-style: "※ ";
}
.confirm-modal label {
	display: inline-block;
	margin-bottom: 20px;
	font-size: 14px;
	cursor: pointer;
}
.confirm-modal input[type="checkbox"] {
	margin-right: 6px;
}
.confirm-modal__buttons {
	display: flex;
	justify-content: center;
	gap: 10px;
}
.confirm-modal__buttons button {
	min-width: 100px;
	padding: 8px 12px;
	font-size: 14px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}
#confirmBackBtn {
	background: #ccc;
	color: #333;
}
#confirmSubmitBtn {
	background: #007bff;
	color: #fff;
}
#confirmSubmitBtn:disabled {
	background: #aaa;
	cursor: not-allowed;
	opacity: 0.6;
}
body.is-confirm-modal-open {
	overflow: hidden;
}