/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 07 2025 | 08:38:57 */
/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 24 2025 | 04:25:41 */
/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 23 2025 | 23:32:15 */
/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 24 2025 | 05:12:34 */
/************************************
** Contact form 7 CSSカスタマイズ
************************************/
@media screen and (min-width: 769px){
	.br_span{
		display: inline-block;
	}
	/* h2タグの装飾 */
	h2.contact_h2{
		font-weight: 500;
		color:#469fe3;
		font-size:32px;
	}
	/* pタグ余白削除 */
	table.CF7_table p {
		font-weight:600;
		font-size:20px;
		margin: 0 !important;
	}

	/* 入力欄全体の設定 */
	input[type="text"],input[type="password"],input[type="datetime"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],
	input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],select,textarea {
		display: block;
		width: 100%;
		height: 56px;
		margin-bottom: 0;
		padding: 0 12px;
		border: 0;
		/*     border-radius: 3px; */
		box-shadow: none;
		background-color: #F6F8F8;
		color: #5c6b80;
		font-size: 16px !important;
		vertical-align: middle;
		line-height: 56px;
		transition: background-color 0.24s ease-in-out;
	}
	/* テキストエリアの設定 */
	table.CF7_table textarea {
		resize: vertical;
		max-width: 100%;
		min-height: 300px;
		line-height: 1.5em;
		padding: 0.5em;
		overflow: auto;
	}
	/* 入力欄とテキストエリア共通 */
	.CF7_table input, .CF7_table select, .CF7_table textarea {
		border: 2px solid #469FE3;
		background-color:#FFF;
	}
	/* table */
	table.CF7_table {
		width: 100%;
		margin: 36px auto 0;
		border: none !important;
		table-layout: fixed;
		table-layout: fixed;
	}
	table.CF7_table tr {
		border-top: 1px solid #FFF;
	}
	table.CF7_table th {
		width: 25%;
		background-color: #FFF;
		font-size: 15px;
		vertical-align: middle;
	}
	/* 背景を削除 */
	table.CF7_table tr,
	table.CF7_table th,
	table.CF7_table td {
		/* 		padding: 0.75rem 0.75rem !important; */
		padding:16px 0 !important;
		background: none !important;
		border: none !important;

	}
	span.contact_text{
		font-weight:normal;
		font-size:14px;
	}
	.single .entry-content table.CF7_table,
	.page .entry-content table.CF7_table {
		display: table;
	}
	.CF7_table ::placeholder {
		color: #797979;
	}

	table.CF7_table th p{
		display:flex;
		justify-content: space-between;
		text-align:left;
		align-items:center;
		color:#434548;
	}
	/*「必須」文字*/
	.CF7_req{
		display: flex;
		align-items: center;
		padding: 4px 8px;
		background: #FF0000;
		color: #fff;
		height: 20px;
		/* border-radius: 3px; */
		margin-right: 1em;
		font-size:14px;
	}

	/*「任意」文字*/
	.CF7_unreq{
		display: flex;
		align-items: center;
		font-size: 10px;
		padding: 0 10px;
		background: #bdbdbd;
		color: #fff;
		height: 20px;
		/* 	border-radius: 3px; */
		margin-right:1em;
	}
	/* thの指定 */
	table.CF7_table .flex_column th p{
		flex-direction: column; /* 子要素を縦並び */
		align-items: flex-start;
	}
	.contact_text.br_span {
		display: block;
		font-size: 14px;
		font-weight: normal;
		margin-top: 4px;
	}

	/* tdの指定 */
	td.address_td {
		width: 100%;
	}
	td.address_td p{
		display: flex;
		gap: 12px;
		align-items: center;
	}

	td.address_td .address_num input{
		max-width:250px;
	}

	/* ラベル共通 */
	/* ラベル共通 */
	td.address_td p span.address_sub {
		width: 150px;       /* ラベル幅を固定 */
		font-size: 20px;
		color: #434548;
		flex-shrink: 0;
		text-align: right;  /* 右揃え */
		padding-right: 12px;
	}

	/* 入力欄 */
	td.address_td input {
		height: 56px;
		padding: 0 12px;
		border: 2px solid #469FE3;
		background-color: #FFF;
		box-sizing: border-box;
		text-align: left;
	}
	/* 郵便番号は短め */
	td.address_td .address_num input {
		width: 250px; 
		flex: none;     
		margin-bottom: 16px;
	}

	/* 以降の住所は幅いっぱい */
	td.address_td {
		width: 100%;
	}
	/*
	td.address_td .address_text {
	display: flex;
	flex: 1;
	width: 100%;
}*/
	td.address_td .address_text {
		display: flex;
		align-items: center;
		width: 100%;
	}
	td.address_td .address_text input {
		flex: 1;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}
}

/* レスポンシブ */
@media screen and (max-width: 768px){
	.br_span{
		display: inline-block;
	}
	/* h2タグの装飾 */
	h2.contact_h2{
		font-weight: 500;
		color:#469fe3;
		font-size:32px;
	}
	/* pタグ余白削除 */
	table.CF7_table p {
		font-weight:600;
		font-size:20px;
		margin: 0 !important;
	}

	/* 入力欄全体の設定 */
	input[type="text"],input[type="password"],input[type="datetime"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],
	input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],select,textarea {
		display: block;
		width: 100%;
		height: 56px;
		margin-bottom: 0;
		padding: 0 12px;
		border: 0;
		/*     border-radius: 3px; */
		box-shadow: none;
		background-color: #F6F8F8;
		color: #5c6b80;
		font-size: 16px !important;
		vertical-align: middle;
		line-height: 56px;
		transition: background-color 0.24s ease-in-out;
	}
	/* テキストエリアの設定 */
	table.CF7_table textarea {
		resize: vertical;
		max-width: 100%;
		min-height: 300px;
		line-height: 1.5em;
		padding: 0.5em;
		overflow: auto;
	}
	/* 入力欄とテキストエリア共通 */
	.CF7_table input, .CF7_table select, .CF7_table textarea {
		border: 2px solid #469FE3;
		background-color:#FFF;
	}
	/* table */
	table.CF7_table {
		width: 100%;
		margin: 36px auto 0;
		border: none !important;
		table-layout: fixed;
		table-layout: fixed;
	}
	table.CF7_table tr {
		border-top: 1px solid #FFF;
	}
	table.CF7_table th {
		width: 25%;
		background-color: #FFF;
		font-size: 15px;
		vertical-align: middle;
	}
	/* 背景を削除 */
	table.CF7_table tr,
	table.CF7_table th,
	table.CF7_table td {
		/* 		padding: 0.75rem 0.75rem !important; */
		padding:16px 0 !important;
		background: none !important;
		border: none !important;

	}
	span.contact_text{
		font-weight:normal;
		font-size:14px;
	}
	.single .entry-content table.CF7_table,
	.page .entry-content table.CF7_table {
		display: table;
	}
	.CF7_table ::placeholder {
		color: #797979;
	}

	table.CF7_table th p{
		display:flex;
		justify-content: space-between;
		text-align:left;
		align-items:center;
		color:#434548;
	}
	/*「必須」文字*/
	.CF7_req{
		display: flex;
		align-items: center;
		padding: 4px 8px;
		background: #FF0000;
		color: #fff;
		height: 20px;
		/* border-radius: 3px; */
		margin-right: 1em;
		font-size:14px;
	}

	/*「任意」文字*/
	.CF7_unreq{
		display: flex;
		align-items: center;
		font-size: 10px;
		padding: 0 10px;
		background: #bdbdbd;
		color: #fff;
		height: 20px;
		/* 	border-radius: 3px; */
		margin-right:1em;
	}
	/* thの指定 */
	table.CF7_table .flex_column th p{
		flex-direction: column; /* 子要素を縦並び */
		align-items: flex-start;
	}
	.contact_text.br_span {
		display: block;
		font-size: 14px;
		font-weight: normal;
		margin-top: 4px;
	}

	/* tdの指定 */
	td.address_td {
		width: 100%;
	}

	/* ラベル共通 */
	td.address_td p span {
		width:100%;
		font-size: 20px;
		color: #434548;
	}





	table.CF7_table{
		width: 100%;
	}

	table.CF7_table p {
/* 		font-size:16px !important; */
	}

	table.CF7_table th p{
		margin-top:20px !important;
		margin-bottom:8px !important;
	}

	table.CF7_table tr,
	table.CF7_table th,
	table.CF7_table td {
		padding:0 !important;
		background: none !important;
		border: none !important;
	}

	.CF7_table tr, .CF7_table td, .CF7_table th{
		display: block;
		width: 100% !important;
		line-height: 2.5em;
	}
	.CF7_table th{
		background-color: #F6F8F8;
	}
}
span.add_text{
	color:#434548;
}
/* 説明とチェックボックス */
p.check_info{
	text-align:center;
	font-size:16px;
	color:#434548;
}
p.check_info a{
	color:#469fe3;
}
/* 「送信する」ボタン */
.wpcf7 input.wpcf7-submit {
	background-color: #434548;
	border:none;
	color:#fff;
	font-size:20px;
	font-weight: bold;
	margin: 0 auto;
	padding: 15px 30px;
	transition: all 0.5s 0s ease;
	border-radius:0;
}
.wpcf7 input.wpcf7-submit:hover {
	background: #fff;
	color: #000;
}
.CF7_btn{
	text-align: center;
	margin: 20px;
}
.wpcf7-spinner{
	width:0;
	margin:0;
}
/* ************************************
************************************ */