@charset "UTF-8";


main{
	width: 1000px;
	margin: 0 auto;
	margin-bottom: 32px;
}

*{
	box-sizing: border-box;
}

.prvBlk {
	width: 100%;
	font-size: 12px;
	height: 240px; /* 高さを指定しないとスクロールは発生しません */
	overflow-y: auto; /* 縦スクロールを有効に */
	border: 1px solid #ccc; /* 境界を分かりやすく */
	padding: 10px;
	
}

.font_18{
	font-size: 18px;
}

.prvCol h2{
	text-align: center;
}
.prvBlk p,.prvBlk ul{
	margin: 0;
}

.prvBlk li{
	list-style: disc !important;
}

.prvBlk table{
	border-spacing: 0;
	border-collapse:collapse;
}
.prvBlk th,.prvBlk td{
	border: solid 1px black;
	border-spacing: 0;
	border-collapse: collapse;
	width: 24%;
}
.prvBlk thead{
	background-color: #CCCCCC;
}

.righttxt{
	text-align: right;
}

.caution{
	text-align: center;
	margin-top: 18px;
	color: red;
}
label:has(input[name="pvcy"]){
	display: block;
	width: 100%;
	margin-top: 18px;
	text-align: center;
}

.notice{
	margin-top: 32px;
}

.notice >p:first-child{
	font-weight: 700;
}

.detailsEvent p{
	margin: 12px;
}

table.frmBlock{
	border-spacing: 0;
	border-collapse:collapse;
	width: 100%;
	margin: 0 auto;
	border: solid 1px black;
}
table.frmBlock td{
	border: solid 1px black;
	border-spacing: 0;
	border-collapse: collapse;
	padding: 8px 0;
	padding-left: 18px;
}
table.frmBlock th{
	width: 38%;
	background-color: #CCCCCC;
	border-top: solid 1px black;
	
	span{
		background-color: red;
		color: white;
		font-weight: 700;
		padding: 0 12px;
		margin-left: 12px;
		border-radius: 2px
	}
}
table.frmBlock th.detailHead{
	border: none;
}


.btnBox {
	text-align: center;
	margin-top: 18px;
	display: flex;
	justify-content: space-around;
	
	
	input{
		width: 320px;
		font-size: 23px;
		line-height: 1;
		font-weight: 700;
		color: red;
	}
}

table.frmBlock textarea{
	width: 80%;
	height: 48px;
}

table.frmBlock input[type="text"]{
	width: 60%;
}

.form_message{
	margin: 18px auto;
}
.margin_bottom_32{
	margin-bottom: 32px;
}


/*****************************************************************************************/
/*****************************************************************************************/
/* ########### hoverが効かないスマホ等用 ########### */
/*****************************************************************************************/
/*****************************************************************************************/
@media (any-hover: none) or (max-width: 767px) {

	main{
		width: 98%;
	}
	header h1.content_title{
		height: 54px;
	}
	table *{
		box-sizing: border-box;
	}
	table.frmBlock th, table.frmBlock td{
		font-size: 14px;
		font-weight: 400;
		width: 48%;
	}
	

	table.frmBlock th{

		span{
			font-size: 10px;
			font-weight: 400;
			padding: 0 4px;
			margin-left: 6px;
		}
	}
	table.frmBlock td{
		padding-left: 8px;
	}
	
	.btnBox input[type="submit"]{
		margin-bottom: 16px;
	}
	table.frmBlock input[type="text"]{
		width: 80%;
	}
	
	#trigger{
		font-size: 11px;
	}
}











