@charset "utf-8";

.required::after{
	margin-left:5px;
	color:#f00;
	content:"※"
}

/******************* ヘッダー *******************/
header{
	margin-top:150px;
	padding:50px 10px;
	background:#f2f8f8;
	text-align:center;
}

header h3{
	font-weight:900;
}


/******************* 各セクション *******************/
#sec01{
	width:90%;
	max-width:1000px;
	margin:10px auto 0;
}

#sec01 .detail{
	margin-bottom:100px;
}

#sec02{
	width:90%;
	max-width:1000px;
	margin:0 auto;
}

#sec02 .table{
	row-gap:30px;
}

#sec02 .table dl:not(:first-child):not(dl:has(textarea)){
	align-items:center;
}

#sec02 .table .inquiry{
	flex-direction:column;
	row-gap:20px;
}

#sec02 .table .inquiry .item{
	align-items:center;
	column-gap:10px;
}

#sec02 .table .inquiry .item input[type="radio"]{
	width:18px;
	height:18px;
	position:relative;
	top:-1px;
}

#sec02 .table .inquiry .item label{
	font-weight:bold;
}

#sec02 .table dt{
	width:30%;
}

#sec02 .table dd{
	width:70%;
}

#sec02 .table dd input:not([type="radio"]){
	width:100%;
	padding:8px 16px;
	font-size:var(--sm-font-size-16px);
	border:solid 2px #c9c9c9;
	border-radius:999px;
	outline:none;
}

#sec02 .table dd textarea{
	width:100%;
	padding:10px;
	font-size:var(--sm-font-size-16px);
	border:solid 2px #c9c9c9;
	border-radius:20px;
	outline:none;
}

#sec02 .table p.tips{
	text-align:center;
	line-height:1.75;
}

#sec02 .table p.tips a{
	border-bottom:dashed 1px #41a664;
}

#sec02 .table div.button{
	width:90%;
	max-width:300px;
	margin:0 auto;
}

#sec02 .table div.button button{
	width:100%;
	padding:10px;
	color:#fff;
	background:#EF5B5B;
	font-size:var(--sm-font-size-18px);
	font-weight:900;
	border:none;
	border-radius:999px;
	cursor:pointer;
	position:relative;
	transition:.3s;
}

#sec02 .table div.button button:hover{
	opacity:.7;
}

#sec02 .table div.button button::after{
	position:absolute;
	right:16px;
	content:"\f061";
}

@media (max-width:767px){
	#sec02 .table dl{
		flex-direction:column;
		row-gap:15px;
	}

	#sec02 .table dt,#sec02 .table dd{
		width:100%;
	}

	#sec02 .table dt{
		font-size:1.1em;
		font-weight:900;
	}

	#sec02 .table div.button button::after{
		font-size:1.75em;
		font-weight:900;
		line-height:1;
		position:absolute;
		right:8px;
		content:"・";
	}
}