@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
#contact  {
  	width:90%;
	max-width:1000px;
	margin:0 auto;
	background:#fff;
	padding:20px;
}
#contact h1{
	font-weight:100;
	margin-bottom:50px;
	font-size:1.2rem;
	margin:20px auto 40px;
	text-align:center;
}
.form_area  {
	max-width: 800px;
	width:96%;
	margin: 0 auto;
}
.form_area  h2{
	font-weight:100;
}
.form_area > h1{
	font-weight:100;
	margin-bottom:30px;
}
.input_group {
  display: block;
  justify-content: space-between;
  padding:30px 0;
  border-bottom: 1px #CCC solid;
}
.input_group:last-child {
  border: none;
	margin-bottom:40px;
}
.input_title {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
	font-size:1.05rem;
	border-left:5px solid #6a5d52;
	padding-left:10px;
  padding-right:50px;
}
.input_area  {
	width: 100%;
	margin:0;
}

.required:before {
	background: #662313;
	color: #FFF;
	content: "必須";
	font-size: 12px;
	position: absolute;
	right: 0;
	text-align: center;
	padding: 6px 10px;
	border-radius: 2px;
	line-height:1em;
}
.any:before {
	background:#FFF;
	color: #666;
	content: "任意";
	font-size: 12px;
	position: absolute;
	right: 0;
	text-align: center;
	padding: 6px 10px;
	border-radius: 2px;
	line-height:1em;
	border:1px solid #ccc;
}

.form_area input[type="text"],
.form_area input[type="email"],
.form_area input[type="tel"]  {
  width: 100%;
  box-sizing: border-box;
  line-height: 2.2;
  background: #EFEFEF;
  border: 1px solid #999;
  border-radius: 0;
  box-shadow: none;
  padding: 0.3em;
  margin-left: -0.25%;
  font-size: 16px;
}

.form_area input[type="date"]  {
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  line-height: 2;
  background: #EFEFEF;
  border: 1px solid #CCC;
  border-radius: 0;
  box-shadow: none;
  padding: 0.3em;
  margin-left: -0.25%;
  position: relative;
  border: 1px solid #999;
}

.form_area input[type="date"]::-webkit-inner-spin-button{
  -webkit-appearance: none;
}
.form_area input[type="date"]::-webkit-clear-button{
  -webkit-appearance: none;
}
.form_area input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
}
.form_area input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.form_area select  {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0px;
  padding: 14px 30px 14px 8px;
  background: #EFEFEF;
  border: 1px solid #CCC;
  background-image: url(../img/select-arrow.svg);
  background-position: calc(100% - 0.5em) 50%;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  border: 1px solid #999;
  font-size: 16px;
}

.form_area textarea {
  width:100%;
  background: #EFEFEF;
  border: 1px solid #999;
  padding: 0.4em;
  line-height: 1.6;
  font-weight: 400;
  font-size: 16px;
}

input[type=checkbox] {
  display: none;
}
.checkbox_item {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 10px 5px 30px;
  position: relative;
  width: auto;
  line-height: 1.6;
}
.tandem .checkbox_item {
  width: 100%;
}
.checkbox_item::before {
  background: #EFEFEF;
  border: 1px solid #CCC;
  content: '';
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 16px;
  width: 16px;
}
input[type=checkbox]:checked + .checkbox_item::before {
  background: #0070BD;
  border: #0070BD 1px solid;
}
.checkbox_item::after {
  opacity: 0;
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  content: '';
  display: block;
  height: 9px;
  left: 10px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 16px;
  transform: rotate(45deg);
  width: 5px;
}

input[type=checkbox]:checked + .checkbox_item::after {
  opacity: 1;
}

.error_msg-top {
margin:20px 0;
color:#d8401a;
}
.error_msg {
	margin-top:20px;
	color:#d8401a;
}
.consent_box .error_msg{
  position:absolute;
  bottom:-2.5em;
}
.error_msg::before {
font-family: "Font Awesome 5 Free";
font-weight: 600;
font-size: 16px;
content: "\f06a";
margin: 0 5px 0 0;
}

::placeholder {
color: #999;
}
input[type=checkbox] {
	-moz-transform:		scale(1.6);
	-webkit-transform:	scale(1.6);
	transform:		scale(1.6);
}
.checkbox_list {
	width:50%;
	text-align:center;
	margin:auto;
}
.input_supplement {
  margin-bottom:10px;
  font-size: 90%;;
  color:#666;
	line-height:1.7em
}
.consent_box{
	display:flex;
	justify-content:space-between;
	align-items:center;
	border:1px solid #ccc;
	padding:0em 0;
	background:#fff5;
	position:relative;
}
.input-link  {
  margin:0px 0;
	text-align:center;
	width:50%;
	border-right:1px solid #ccc;
	background:#e9e5e2;
}
.input-link a{
	color:#000;
	text-decoration:none;
}

.input-link a[target="_blank"]:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 16px;
  content: "\f35d";
  margin: 0 0 0 10px;
}
.form_btn  {
  margin:0  0 30px 0;
  text-align: center;
}

.contact_btn  {
  background:#6a5d52;
  color:#FFF;
  padding:14px;
  width: 400px;
  font-size: 16px;
  border-radius: 4px;
  border: none;
  transition: .3s;
}
@media (hover: hover) and (pointer: fine) {
  .contact_btn:hover  {
    opacity: .8;
    transition: .3s;
  }
}
@media screen and (max-width: 767px) {
  .contact_btn  {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
	.consent_box{
		display:block;
		justify-content:unset;
		padding:0 0px;
		box-sizing:border-box;
	}
	.input-link  {
	  margin:0px 0;
		text-align:center;
		width:100%;
		border-bottom:1px solid #ccc;
		border-right:unset;
		padding:0px 0;
	}
	.checkbox_list {
		width:100%;
		text-align:center;
		padding:10px 0;
	}
}

/************************************
thanks.html
************************************/
.contact_thanks {
  padding:10px;
}
.contact_thanks  {
  max-width: 600px;
  margin: 0 auto;
}
.thanks_title {
	font-size: 18px;
	text-align: center;
	margin-bottom:30px;
	font-weight:100;
}
.thanks_text  {
  text-align: center;
  margin-bottom: 30px;
}
.toplink  {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .thanks_text  {
    text-align: left;
  }
}


.input_date {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.date-calendar  {
  width:200px;
}

.input_name {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.name-text {
  width: 240px;
}
.address_area {
  margin-bottom: 30px;
}
.zip-text {
  width: 140px;
  margin-bottom: 10px;
}
.pref-text {
  width: 500px;
}
.mail-text {
  width: 500px;
}
.tel-text {
  width: 500px;
}
@media screen and (max-width: 767px) {
  .name-text,
  .zip-text,
  .pref-text,
  .mail-text,
  .tel-text,
  .date-calendar,
  .time-select,
  .reform_any_full_text {
    width: 100%;
  }
  .form_area select {
    width: 100%;
  }
}

.step_bar {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.step_bar .step_item {
	position: relative;
	width: 33%;
	text-align: center;
	position: relative;
	align-items: center;
	justify-content: center;
	padding: 16px 0;
	line-height: 1.5;
	background: #F5F5F5;
	color: #999999;
}

.step_bar .step_item:not(:last-child)::before,
.step_bar .step_item:not(:last-child)::after {
	position: absolute;
	z-index: 2;
	top: 0;
	bottom: 0;
	left: 100%;
	content: '';
	border: 37px solid transparent;
	border-left: 20px solid #F5F5F5;
	margin: auto;
}

.step_bar .step_item:not(:last-child)::before {
	margin-left: 1px;
	border-left-color: #FFF;
}

/* active */
.step_bar .step_item.active {
	z-index: 1;
	background: #6a5d52;
	color: #FFF;
}

.step_bar .step_item.active:not(:last-child)::after {
	border-left-color: #6a5d52;
}

.step_bar .step_item.active:not(:last-child)::before {
	border-left: none;
}

.form_subtitle  {
  margin-bottom: 30px;
}
.toplink  {
  margin-top: 30px;
  text-align: center;
}
.toplink a{
	text-decoration:none;
	color:#000;
}