/* 必須マーク */
.must{
	color: #fff;
	margin-right: 10px;
	padding: 4px 8px;
	background: #F92931;
	border-radius: 20px;
}

/* 任意マーク */
.free {
	color: #fff;
	margin-right: 10px;
	padding: 4px 8px;
	background: #424242;
	border-radius: 20px;
}

/* 前編マーク */
.zenpen {
	color: #fff;
	margin-right: 10px;
	padding: 4px 8px;
	background: #191970;
	border-radius: 20px;
}

/* 後編マーク */
.kouhen {
	color: #fff;
	margin-right: 10px;
	padding: 4px 8px;
	background: #197019;
	border-radius: 20px;
}

/* 項目名を太字にする */
/*form p {font-weight: 600;}*/
/* 入力項目を見やすくする */
.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"],
.wpcf7 textarea,
.wpcf7 select
{
	width: 100%;
	padding: px 15px;
	margin-right: 10px;
	margin-top: 10px;
	border: 1px solid #d0d5d8;
	border-radius: 5px;
}
textarea {
	height: 200px;
}
select {
	height: 30px
}

/* 必須項目の入力欄を黄色にする */
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
	background: rgba(255, 255, 142, 0.46);
}

/* 送信ボタンを見やすくする */
.wpcf7-form input[type=submit] {
	width: 100%;
	height: 80px;
	background: #27c008;
	color: #fff;
	font-size: 20px;
	font-weight: 600;
}
/* エラーメッセージを見やすくする */
span.wpcf7-not-valid-tip,
.wpcf7-response-output.wpcf7-validation-errors {
	color: red;
	font-weight: 600;
}


/*ラジオボタン余白*/
.wpcf7-radio .wpcf7-list-item {
    margin-top:10px;
}


/* Contact Form 7のラジオボタンとチェックボックスを縦並びに */
.wpcf7-radio .wpcf7-list-item {
    margin-top:10px;
    display: block;
}
.wpcf7-checkbox .wpcf7-list-item {
    margin-top:10px;
    display: block;
}

/* マーカー線・赤 */
.marker-red{
background:linear-gradient(transparent 75%, #ffc1e0 75%);
font-weight:bold; 
}
/* マーカー線・緑 */
.marker-green{
background:linear-gradient(transparent 75%, #b2ffb2 75%);
font-weight:bold; 
}
/* マーカー線・青 */
.marker-blue{
 background: linear-gradient(transparent 75%, #c1e0ff 75%);
font-weight: bold; 
}

/* マーカー線・赤・太帯 */
.marker-red-band{
line-height: 1.4em;
padding: 5px;
background: #f19cbb 100%;
font-weight:bold; 
}