@charset "UTF-8";

/***** デフォルトはスマートフォン *****/
.cont_inner {
	width: 98%;
	margin: auto;
}

.cont_h2 {
	width: 98%;
	padding: 20px;
	font-size: 2vw;
	font-weight: 900;
	color: #fff;
	background: #003255;
	border-radius: 5px;
	margin: auto;
	text-align: center;
}

.cont_table {
	width: 98%;
	margin: auto;
	border-collapse: collapse;
	border: #003255 solid 2px;
}

.cont_table th,
td {
	display: block;
	width: 100%;
}

.cont_td_left {
	background: #003255;
	color: #fff;
	padding: 10px;
	align-items: center;
}

.cont_td_right {
	border: #003255 solid 2px;
}

.require {
	color: yellow;
	float: right;
}

.wpcf7-form input[type="submit"] {
	background-color: #003255;
	/* ブルー */
	color: white;
	cursor: pointer;
	transition: background-color 0.3s ease;
	border: none;
	padding: 15px;
	font-size: 18px;
	border-radius: 5px;
}

.wpcf7-form input[type="submit"]:hover {
	background-color: #0056b3;
	/* 濃いブルー */
}

.wpcf7-spinner {
	display: none;
}

.wpcf7-textarea {
	width: 100%;
	height: 100%;
	border: none;
	font-size: 16px;
	background-color: #ffffff;
	padding: 15px 0;
	/* 白 */
}

.wpcf7-text {
	width: 100%;
	height: 100%;
	border: none;
	font-size: 16px;
	background-color: #ffffff;
	padding: 15px 0;
	/* 白 */
}

/* テキストエリアのスタイル */
.wpcf7-form textarea {
	height: 150px;
	resize: vertical;
}

.con_submit {
	margin: 20px auto 20px 20px;
}
.con_hr{
	margin: 20px auto;
}
.con_text_inner{
	margin: auto;
}
/**==================================================**/
/**=          画面サイズ768px以上の指定              **/
/**==================================================**/
@media screen and (min-width:768px) {}

/**==================================================**/
/**=          画面サイズ960px以上の指定              **/
/**==================================================**/
@media screen and (min-width:960px) {
	.cont_inner {
		width: 90%;
		margin: auto;
	}

	.cont_h2 {
		width: 25%;
		padding: 20px;
		font-size: 1vw;
		font-weight: 900;
		color: #fff;
		background: #003255;
		border-radius: 5px;
		margin: auto;
		text-align: center;
	}

	.cont_table {
		display: table;
		border-collapse: collapse;
	}

	.cont_table th,
	td {
		display: table-cell;
		border-collapse: collapse;
	}

	.cont_table th {
		text-align: left;
		width: 20%;
		border: #bdbdbd solid 2px;
	}



}