/*
******************************/
/** コンタクトフォームの装飾 **/
/******************************/
/* 必須・任意 */
.d{} /* 消さないでね。なぜかこれがないとCSS反映しない */
.wpcf7 {
	background-color: #f8f8f8;
	padding: 40px;
	border-radius: 25px;
	margin: auto;
}
@media screen and (max-width: 991px) {
	.wpcf7 {;
		border-radius: 10px;
		padding: 20px;
	}
}
/* ラベルのスタイル radio checkboxでは使えない */
.wpcf7-form label {
	display: block;
	margin-bottom: 0px;
	font-size: 16px;
	color: #333333; /* ダークグレー */
}
.cf7__box {
	display: block;
	margin-bottom: 10px;
	font-size: 16px;
	color: #333333; /* ダークグレー */
}
.cf7__font {
/* 	font-weight: 600; */
}
/* 必須フィールドのラベルスタイル */
.wpcf7-form .required {
	background-color: #ff0000; /* レッド */
	color: white;
	padding: 2px 5px;
	border-radius: 25px;
	margin-left: 10px;
	font-size: 12px;
}
/* インプットフィールドのスタイル */
.wpcf7-form textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #cccccc; /* ライトグレー */
	border-radius: 5px;
	margin-bottom: 20px;
	font-size: 16px;
	background-color: #ffffff; /* 白 */
}
/* テキストエリアのスタイル */
.wpcf7-form textarea {
	height: 150px;
	resize: vertical;
}
/* 送信ボタンのスタイル */
.wpcf7-form input[type="submit"] {
	width: 100%;
	background-color: #ff600a;
	color: #FFF;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
	border: none;
	border-radius: 45px;
}
.wpcf7-form input[type="submit"]:hover {
	background-color: #f37d3d;
}
/* エラーメッセージと成功メッセージのスタイル */
.wpcf7-form .wpcf7-not-valid-tip {
	color: red;
	font-size: 14px;
}
.wpcf7-form .wpcf7-mail-sent-ok {
	color: green;
	font-size: 16px;
	margin-bottom: 20px;
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item {
	display: block;
}
.cf7__required::after {
	content: "*";
	margin-left: 10px;
	padding: 0 7px;
	color: red;
	font-weight: 600;
	font-size: x-large;
}
.cf7__optional::after {
	content: " ";
	font-size: x-large;
}
.required-announce {
	text-align: center;
}
.cf7__link {
	text-align: center;
}
.cf7__button {
	margin-top: 20px;
	text-align: center;
}
.cf7__select {
	position: relative;
}
.cf7__select:before {
    position: absolute;
	top: 65%;
	right: 20px;
	z-index: 10;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 8px solid grey;
	border-right: 6px solid transparent;
	border-left: 6px solid transparent;
	pointer-events: none;
	content: '';
}
.cf7__select select {
	width: 100%;
	padding: 5px 5px;
	background: #fff;
	color: #000000;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px #ccc solid;
	border-radius: 3px;
}
.cf7__box a {
	font-weight: 600;
	text-decoration: underline;
}
.wrap {
	flex 1 1 auto;
	width: 100%;
}
.post-content ul {
	margin: 0;
	padding: 10px 30px;
}
@media screen and (max-width: 991px) {
	.post-content ul {
		padding: 10px 20px;
	}
}
figure {
	padding: 0;
	background: transparent;
}