#mailform_head {
	margin-top: 10rem;
	margin-bottom: 8rem;

	& img {
		@media screen and ( max-width:600px ) {
			width: 34rem;
			max-width: 100%;
		}
	}
}


.ステップ----------{}
.step {
	display: flex;
	justify-content: space-between;
	margin-bottom: 5rem;

	
	@media screen and ( max-width:600px ) {
		justify-content: center;
		flex-wrap: wrap;
		row-gap: 2rem;
	}
}

.step_icon {
	width: 32%;
	height: 3em;
	
	@media screen and ( max-width:600px ) {
		width: 70%;
	}
	
	font-size: 2.0rem;
	font-weight: bold;
	line-height: 1;
	color: #232846;
	padding-bottom: 0.1em;/*ちょっと上に微調整*/
	
	border: 0.15em solid #232846;
	background-color: #fff;
	border-radius: 1.5em;

	display: flex;
	justify-content: center;
	align-items: center;
}

.word_step {
	font-size: 1.8rem;
	margin-right: 0.5rem;
}

.word_no {
	font-size: 2.9rem;
	margin-right: 2.0rem;
}

.active {
	background-color: #232846;
	color: #fff;

}

.※マーク----------{}


.kome {
	font-size: 1.8rem;
	margin-bottom: 6rem;
	
	@media screen and ( max-width:600px ) {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
}




.---------- メールフォーム ----------{}

.レイアウト----------{}

.table_form {
	width: 100%;
	font-size: 2.0rem;
	line-height: 1.6;
	text-align: left;
	
	@media screen and ( max-width:600px ) {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
}

.table_form .table_row {
	width: 100%;
	display: flex;
	
	padding: 2em 0;	/*上下・左右*/
	border-bottom: 1px dotted #000000;
	
	
	@media screen and ( max-width:600px ) {
		flex-direction: column;
	}
}

.table_form .table_row:last-of-type,
.table_form .table_row:nth-last-of-type(2) {
	border-style: none;
}


.table_form .table_head {
	width: 300px;
	font-weight: bold;
	
	@media screen and ( max-width:600px ) {
		width: 100%;
		margin-bottom: 2rem;
	}
}

.table_form .table_data {
	width: calc(100% - 300px);
	
	@media screen and ( max-width:600px ) {
		width: 100%;
	}
}

.hissu {
	display: flex;
	justify-content: space-between;
	padding-right: 3rem;
	@media screen and ( max-width:600px ) {
		justify-content: flex-start;
		padding-right: 0rem;
		column-gap: 2rem;
	}
}

.hissu_icom {
	background-color: #232846;
	color: #fff;
	font-weight: normal;
	/*サイズと位置調整*/
	font-size: 0.7em;
	width: 3.7em;
	height: 2.0em;
	border-radius: 1.6rem;
	margin-top: 0.3em;
	padding-bottom: 0.1em;
	/*天地左右センター*/
	display: flex;
	justify-content: center;
	align-items: center;
}


/*メールフォームエラー*/
.mailform_error {
	color: #D9090D;
}

/*フッターとのスペース*/
#mailform_input,
#mailform_check {
	margin-bottom: 12rem;
}

/*送信、確認ボタンの上を広めに空ける*/
.button_padding_top {
	margin-top: 2em;
	
	@media screen and ( max-width:600px ) {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		row-gap: 2rem;
	}
}

/*ありがとうございました*/
#thanks {
	padding-top: 6rem;
	line-height: 1.8;
}

#thanks p {
	width: 80%;
	text-align: left;
	margin-bottom: 2em;
	margin-right: auto;
	margin-left: auto;
}




.フォームのスタイル----------{}

input[type="text"],
input[type="email"], 
textarea,
select {
	vertical-align:middle;
	width: 100%;
	height:4rem;
	max-width:90%;
	line-height:3rem;
	padding:0.1rem 0.5rem;
	border:0.1rem solid #d4d4d7;
	border-radius:0.3rem;
	font-size:90%;
	color:#555;
	background:#ffffff;
}

.post_no input,
#select_ken {
	width: 12rem;
}

textarea{
	width: 100%;
	height:20rem;
	line-height:1.8;
}


input[type='submit']{
	width: 40rem;
	max-width: 90%;
	min-width: 26rem;
	height: 3em;
	margin: 0 auto;	/*ボタンをセンターに*/
	
	background-color: #232846;
	border-radius: 1.5em;
	
	/*文字*/
	color: #fff;
	font-size: 2.0rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0.2em;
	
	/*文字を中央に*/
	display: flex;
	justify-content: center;
	align-items: center;
	appearance: none;
	cursor: pointer;
	text-align: center;
	padding-bottom: 0.1em;/*ちょっと上に微調整*/
}

/*input[type='submit']{
	border: none;
	letter-spacing: 0.3rem;
	display: inline-block;
	width: 300px;
	height: 50px;
	padding: 10px;
	border-radius: 25px;
	background-color: #232846;
	color: #fff;
	font-weight: bold;
	
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
	margin: 0 auto;
}
*/


input[type="radio"],
input[type="checkbox"]{
  appearance: auto;	/*リセットCSSで none の為 表示させる*/
  position: relative;
  top: -0.1em;
}

