/* ------------------------
	背景（TOPページ踏襲）
--------------------------*/
body {
	background-color: #032250;
	background-image:
		url('../img/pattern2-l_pc.png'),
		url('../img/pattern2-r_pc.png'),
		url('../img/bg-nv.jpg');
	background-repeat: repeat-y,repeat-y, no-repeat;
	background-position:
		top left,
		top right,
		center;
	background-size:
		min(40%, 576px) auto,
		min(40%, 576px) auto,
		cover;
	background-attachment: scroll, scroll, fixed;
	min-height: 100vh;
}

@media (max-width: 950px) {
	body {
		background-image:
			url('../img/pattern2-l_sp.png'),
			url('../img/pattern2-r_sp.png'),
			url('../img/bg-nv.jpg');
		background-repeat: repeat-y,repeat-y, no-repeat;
		background-position:
			top left,
			top right,
			center;
		background-size:
			min(40%, 340px) auto,
			min(40%, 340px) auto,
			cover;
		background-attachment: scroll, scroll, fixed;
	}
}

/* ------------------------
	全体
--------------------------*/
.form_contents {
	position: relative;
	padding: 80px 0;
	width: 95%;
	max-width: 800px;
	margin-right: auto;
	margin-left: auto;
	font-family: 'Noto Sans JP', sans-serif;
}

/* ------------------------
	ヘッダー（番組ロゴ＋タイトル）
--------------------------*/
.form_header {
	text-align: center;
}

.form_logo {
	max-width: 460px;
	height: auto;
}

.form_subttl {
	margin: 4px 0 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 28px;
	letter-spacing: 0.08em;
	background: linear-gradient(90deg, #006AFF 0%, #9B54FF 50%, #FF00D1 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

@media (max-width: 950px) {
	.form_logo {
		max-width: 68%;
	}
	.form_subttl {
		font-size: 5.3vw;
	}
}

.form_body {
	margin-top: 60px;
}

/* ------------------------
	項目
--------------------------*/
.form_item {
	position: relative;
	margin-bottom: 50px;
}

.form_item dt {
	font-weight: bold;
	font-size: 22px;
}
.form_item dt label {
	display: block;
	padding-left: 5px;
	margin-bottom: 10px;
}

.form_item dd {
	position: relative;
	margin: 12px 0;
	padding: 10px;
	text-align: center;
}

@media (max-width: 950px) {
	.form_item dt {
		font-size: 20px;
	}
	.form_item dt label {
		margin-bottom: 0px;
	}
}

/* ------------------------
	フォーム項目
--------------------------*/

/** お名前 */
input#name {
	padding: 10px;
	width: 100%;
	border: 0;
	max-width: 500px;
	border-radius: 5px;
	box-sizing: border-box;
}
@media (max-width: 950px) {
	input#name {
		font-size: 16px;
	}
}

/** コーナー選択 */
select#corner {
	width: 100%;
	max-width: 520px;
	padding: 10px;
	font-family: 'Noto Sans JP', sans-serif;
	box-sizing: border-box;
	color: #000;
}
@media (max-width: 950px) {
	select#corner {
		height: 45px;
	}
}

/** おたよりを入力 */
textarea#message {
	padding: 10px;
	width: 100%;
	min-height: 100px;
	max-width: 500px;
	border: 0;
	border-radius: 5px;
	box-sizing: border-box;
}
@media (max-width: 950px) {
	textarea#message {
		font-size: 16px;
	}
}
/* ------------------------
	送信
--------------------------*/
.form_submit {
	margin-top: 40px;
	text-align: center;
}
.form_submit_btn {
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	width: 300px;
	height: 60px;
	background: linear-gradient(
		90deg,
		rgba(202, 239, 255, 1) 0%,
		rgba(218, 205, 255, 1) 50%,
		rgba(255, 194, 244, 1) 100%
	);
	border: 0px;
	color: #000;
	font-size: 18px;
	font-weight: bold;
	border-radius: 30px;
	cursor: pointer;
	font-family: 'Noto Sans JP', sans-serif;
}

/* ------------------------
	ホームに戻る
--------------------------*/
.return {
	margin-top: 25px;
	text-align: center;
}

.return_link {
	font-weight: bold;
	color: #fff;
	text-decoration: underline;
	font-family: 'Noto Sans JP', sans-serif;
}

/* ------------------------
	thanks
--------------------------*/
.thanks {
	padding: 80px 0 40px;
	text-align: center;
	font-weight: bold;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 20px;
}
