/* ===========================================
 * contact use css
=========================================== */

#contact_main{
	padding: 100px 0;
	border-bottom: 1px solid #707070;
}
#contact_main h2{
	font-size: 30px;
	text-align: center;
}
#contact_main p{
	font-size: 15px;
	text-align: center;
	margin: 40px 0;
}
.contact_flow ul{
	display: flex;
	justify-content: center;
	column-gap: 20px;
}
.contact_flow ul li{
	width: 210px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 15px;
	background: #E3E3E3
}
.contact_flow ul li.active{
	background: #393939;
	color: #fff;
}

.form{
}
.form table{
	width: 1000px;
	margin: 80px 0;
	border-collapse: separate;
	border-spacing: 0 20px;
}
.form table tr{}
.form table tr th{
	text-align: left;
	width: 200px;
	padding: 20px 0;
	font-size: 15px;
}
.form table tr th span.hissu{
	color: #AC0000;
	font-size: 15px;
}
.form table tr th span{
	font-size: 12px;
}
.form table tr td{
	width: 800px;
	font-size: 15px;
	box-sizing: border-box;
	border-radius: 4px;
}
.form table tr td span{
	font-size: 13px;
	margin-left: 20px;
}
.form table tr td.check{
	background: #F7F7F7;
	padding: 20px;
	
}
.form table tr td.check label{
	margin-right: 20px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea{
	width:100%;
	padding: 20px;
	border: 1px solid #EFEFEF;
	background: #F7F7F7;
	box-sizing: border-box;
	border-radius: 4px;
}

td.check input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;

  width: 16px;
  height: 16px;
  margin: -3px 5px 0 0;

  border: 1px solid #333;
  border-radius: 50%;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
}

/* チェック状態 */
td.check input[type="radio"]:checked::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #333;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
td.check input[type="checkbox"],
.privacy_check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;

  width: 16px;
  height: 16px;
  margin: -3px 5px 0 0;

  border: 1px solid #333;
  border-radius: 4px;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
}

/* チェックマーク */
td.check input[type="checkbox"]:checked::after,
.privacy_check input[type="checkbox"]:checked::after {
  content: "";
  width: 4px;
  height: 8px;
  border: solid #333;
  border-width: 0 2px 2px 0;
  position: absolute;
  top: 1px;
  left: 4px;
  transform: rotate(45deg);
}

.form h3{
	font-size: 15px;
	text-align: center;
}
.form .privacy_box{
	border: 1px solid #707070;
	padding: 30px;
	box-sizing: border-box;
	margin: 40px 0;
}
#contact_main .form .privacy_box p{
	text-align: left;
	font-size: 15px;
	margin: 0;
}
.privacy_check{
	display: block;
	text-align: center;
}
.submit_btn{
	width: 410px;
	height: 66px;
	border: 1px solid #393939;
	display: block;
	margin: 80px auto;
	text-align: center;
	cursor: pointer;
	background: #fff;
	position: relative;
	font-size: 15px;
}
.submit_btn::after {
	content: url(../../img/common/btn_arrow_b.svg);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}

#contact_main .form p.note{
	text-align:left;
}

@media screen and (max-width:640px){
	
	#contact_main{
		padding: 100px 0;
		border-bottom: 1px solid #707070;
	}
	#contact_main h2{
		font-size: 40px;
		text-align: center;
	}
	#contact_main p{
		font-size: 24px;
		text-align: center;
		margin: 40px 0;
	}
	.contact_flow ul{
		display: block;
		justify-content: center;
		column-gap: 20px;
	}
	.contact_flow ul li{
		width: 580px;
		height: 40px;
		line-height: 40px;
		text-align: center;
		font-size: 24px;
		background: #E3E3E3;
		margin-bottom: 20px;
	}
	.contact_flow ul li.active{
		background: #393939;
		color: #fff;
	}

	.form{
	}
	.form table{
		width: 580px;
		margin: 80px 0;
		border-collapse: separate;
		border-spacing: 0 20px;
	}
	.form table tr{}
	.form table tr th{
		text-align: left;
		width: 580px;
		padding: 20px 0 0;
		font-size: 24px;
		display: block;
	}
	.form table tr th span.hissu{
		color: #AC0000;
		font-size: 24px;
	}
	.form table tr th span{
		font-size: 20px;
	}
	.form table tr td{
		width: 580px;
		box-sizing: border-box;
		border-radius: 4px;
		font-size: 24px;
		display: block;
	}
	.form table tr td span{
		font-size: 20px;
		margin-left: 0;
		display: block;
	}
	.form table tr td.check{
		background: #F7F7F7;
		padding: 20px;

	}
	.form table tr td.check label{
		margin-right: 10px;
		display: block;
		font-size: 24px;
	}
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	textarea{
		width:100%;
		padding: 20px;
		border: 1px solid #EFEFEF;
		background: #F7F7F7;
		box-sizing: border-box;
		border-radius: 4px;
	}

	td.check input[type="radio"] {
	  appearance: none;
	  -webkit-appearance: none;

	  width: 24px;
	  height: 24px;
	  margin: -3px 5px 0 0;

	  border: 1px solid #333;
	  border-radius: 50%;
	  position: relative;
	  vertical-align: middle;
	  cursor: pointer;
	}

	/* チェック状態 */
	td.check input[type="radio"]:checked::after {
	  content: "";
	  width: 12px;
	  height: 12px;
	  background: #333;
	  border-radius: 50%;
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%, -50%);
	}
	td.check input[type="checkbox"],
	.privacy_check input[type="checkbox"] {
	  appearance: none;
	  -webkit-appearance: none;

	  width: 24px;
	  height: 24px;
	  margin: -3px 5px 0 0;

	  border: 1px solid #333;
	  border-radius: 4px;
	  position: relative;
	  vertical-align: middle;
	  cursor: pointer;
	}

	/* チェックマーク */
	td.check input[type="checkbox"]:checked::after,
	.privacy_check input[type="checkbox"]:checked::after {
	  content: "";
	  width: 7px;
	  height: 14px;
	  border: solid #333;
	  border-width: 0 2px 2px 0;
	  position: absolute;
	  top: 0px;
	  left: 6px;
	  transform: rotate(45deg);
	}


	.form h3{
		font-size: 24px;
		text-align: center;
	}
	.form .privacy_box{
		border: 1px solid #707070;
		padding: 30px;
		box-sizing: border-box;
		margin: 40px 0;
	}
	#contact_main .form .privacy_box p{
		text-align: left;
		font-size: 20px;
		margin: 0;
	}
	.privacy_check{
		display: block;
		text-align: center;
		font-size: 24px;
	}
	.submit_btn{
		width: 580px;
		height: 80px;
		border: 1px solid #393939;
		display: block;
		margin: 80px auto;
		text-align: center;
		cursor: pointer;
		background: #fff;
		font-size: 22px;
		position: relative;
	}
	.submit_btn::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        width: 50px;
        height: 20px;
        background-color: #000;
        mask-image: url(../../img/common/btn_arrow_b.svg);
        mask-size: contain;
        mask-repeat: no-repeat;
    }
	#contact_main .form p.note{
		text-align:left;
	}
	

	
}

