@charset "utf-8";
/* CSS Document */


#contact main > .section .flex {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
#contact main > .section h3 {
  letter-spacing: .4em;
  padding-left: .4em;
}

/* header block */
#contact .header_block {
  width: 100%;
  position: relative;
  background: #FFF;
  padding: 100px 0 60px;
}
@media (max-width: 767px) {
  #contact .header_block {
    padding: 40px 0 20px;
  }
}
#contact .header_block h2 {
  margin-bottom: 30px;
  font-size: 40px;
}
@media (max-width: 767px) {
  #contact .header_block h2 {
    font-size: 20px;
  }
}
#contact .header_block p {
  text-align: center;
}
@media (min-width: 768px) {
  #contact .header_block p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  #contact .header_block p {
    padding: 0 10px;
  }
}
#contact .header_block img {
  display: block;
}



.privacyCheck {
	text-align: center;
}
.privacyCheck a {
	background: linear-gradient(transparent 50%, rgba(255,198,0,0.6) 50%, rgba(255,198,0,0.6) 85%, transparent 85%, transparent);
}
.privacyCheck p {
	font-size: 2.0rem;
	font-weight: 600;
}



/*-------------------------------------------
	common
------------------------------------------*/
.container table {
	margin-bottom: 40px;
	width: 100%;
	border-top: 1px solid #a9a9a9;
	border-spacing: 0;
	empty-cells: show;
	border-collapse: collapse;
}
.container th {
	font-size: 16px;
	margin: 0;
	width: 30%;
	border-bottom: 1px solid #a9a9a9;
	background: #eeeeee;
	padding: 12px 20px;
	color: #555555;
}

.container td {
  font-size: 16px;
  margin: 0;
  width: 70%;
  border-bottom: 1px solid #a9a9a9;
  padding: 8px 20px;
}
.container td span {
	margin: 0 0 0 20px;
	display: inline-block;
}

@media (max-width: 780px) {
  .container th, .container td {
  	width: 100%;
    font-size: 14px;
    line-height: 1.4;
	display: block;
	box-sizing: border-box;
  }
}

.container form { margin: 30px 0; }


.container .sentBtn, .container .submitBox {
	margin: 40px auto;
	width: 95%;
	text-align: center;
}

/* ボタン */
.formBtn { float: left; }
.btnBackBox { float: right;}


@media (max-width: 780px) {
	.formBtn { float: none; }
	.btnBackBox { margin: 40px 0 0;float: none;}
}


.btn_dlSubmit {
	width: 313px;
	height: 51px;
	background: url(../img/form/btn_sent.png) no-repeat 0 0;
}

.btn_dlBack {
	width: 313px;
	height: 51px;
	background: url(../img/form/btn_back.png) no-repeat 0 0;
}




/*-------------------------------------------
	contact
------------------------------------------*/
em {
	margin: 0 0 0 5px;
	padding: 5px 10px;
	color: #FFFFFF;
	font-weight: 600;
	display: inline-block;
	background: #dc143c;
	border-radius: 5px;
}


/* formパーツスタイル */
input, button, textarea {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
textarea {
	padding: 5px;
	outline: none;
	border: 1px solid #aaa;
	-webkit-transition: all .3s;
	transition: all .3s;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
textarea:focus {
	box-shadow: 0 0 7px #cd853f;
	border: 1px solid #cd853f;
}

input[type="text"],input[type="email"] {
	margin-right: 0;
	width: 60%;
}
input[type="text"].address { width: 90%; }

textarea {
	width: 90%;
}
@media (max-width: 780px) {
	input[type="text"],
	input[type="tel"],
	input[type="email"],
	input[type="number"] {
		margin-right: 20px;
		width: 80%;
	}
}

input[type="image"] {
	max-width: 100%;
	width: auto;
}
input[type="image"]:hover { opacity: 0.6;}

/* ラジオボタン */
input[type="radio"] {
	display: none;
}
label.radio {
	margin-right: 20px;
	position: relative;
	display: inline-block;
	padding: 3px 3px 3px 20px;
	cursor: pointer;
}
label.radio::before,
label.radio::after {
	position: absolute;
	content: '';
	top: 50%;
	border-radius: 100%;
	-webkit-transition: all .2s;
	transition: all .2s;
}
label.radio::before {
	left: 0;
	width: 14px;
	height: 14px;
	margin-top: -7px;
	margin-right: 3px;
	background: #f3f3f3;
	border: 1px solid #ccc;
}
label.radio:hover::before {
	background: #fff;
}
label.radio::after {
	opacity: 0;
	left: 3px;
	width: 10px;
	height: 10px;
	margin-top: -4px;
	background: #a0522d;
	-webkit-transform: scale(2);
	transform: scale(2);
}
input[type="radio"]:checked + label.radio::before {
	background: #fff;
	border: 1px solid #a0522d;
}
input[type="radio"]:checked + label.radio::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}


/* セレクトボックス */
select, option {
	padding: 5px 10px;
}


/* チェックボックス */
input[type="checkbox"] {
	display: none;
}
label.check {
	margin-right: 20px;
	position: relative;
	display: inline-block;
	padding: 3px 3px 3px 22px;
	cursor: pointer;
	-webkit-transition: all .2s;
	transition: all .2s;
}
label.check::before,
label.check::after {
	position: absolute;
	content: '';
	-webkit-transition: all .2s;
	transition: all .2s;
}
label.check::before {
	top: 50%;
	left: 0;
	width: 14px;
	height: 14px;
	margin-top: -8px;
	background: #f4f4f4;
	border: 1px solid #ccc;
	border-radius: 3px;
}
label.check::after {
	opacity: 0;
	top: 50%;
	left: 3px;
	width: 8px;
	height: 4px;
	margin-top: -4px;
	border-left: 2px solid #a0522d;
	border-bottom: 2px solid #a0522d;
	-webkit-transform: rotate(-45deg) scale(.5);
	transform: rotate(-45deg) scale(.5);
}
label.check:hover::before {
	background: #fff;
}
input[type="checkbox"]:checked + label.check::before {
	background: #fff;
	border: 1px solid #a0522d;
}
input[type="checkbox"]:checked + label.check::after {
	opacity: 1;
	-webkit-transform: rotate(-45deg) scale(1);
	transform: rotate(-45deg) scale(1);
}



