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

.estimate-order {
	margin: 20px auto 0;
}

.order_top .title {
	width: 80%;
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
}

.order_top .orderfree_icon {
  width: 75px;
  height: 75px;
  background: #eec50b;
  color: #ffff;
  border-radius: 100px;
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 22px;
  line-height: 3.5;
  margin: 3px 10px 0 0;
}

.order_top h1 {
  font-size: 30px;
  margin: 14px 0 6px;
  font-weight: bold;
  color: #048479;
}

.flow_step {
	width: 80%;
	margin: 0 auto;
}

.flow_step ol {
  margin: 10px 0 20px;
  display: flex;
  justify-content: space-between;
}

.flow_step li {
  width: 14.5%;
  background: #e4eddc;
  color: #048479;
  height: 40px;
  padding: 5px 0 5px 0;
  position: relative;
  font-size: 16px;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  -webkit-transition: all .3s linear 0s;
	transition: all .3s linear 0s;
}

.flow_step li::after{
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  border-width: 20px 15px;
  border-color: transparent transparent transparent #e4eddc;
  border-style: solid;
}

.flow_step li br {
  display: none;
}

.flow_step .active {
  background: #048479;
  color: #fff;
}

.flow_step .active::after {
  border-left-color: #048479;
}

.flow_step li:last-child::after {
  border: none;
}

.step_comment {
  margin: 10px 0 10px;
  padding: 15px 35px 15px;
  font-weight: bold;
  font-size: 22px;
  border: 3px solid #e5e5e0;
  border-radius: 10px;
  position: relative;
}

.step_comment::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
	left: -15px;
	top: 12px;
  border-right: 15px solid #e5e5e0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

.step_comment::after{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
	left: -11px;
	top: 12px;
  border-right: 15px solid #fff;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

.step_comment p {
	margin: 0;
	display: inline-block;
	vertical-align: middle;
}

.order_operator {
	margin: 0 0 0 -50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order_operator img {
  margin: 0 18px 0 0;
  display: block;
}

.order_type {
  margin: 10px 0 40px;
  text-align: center;
}

.order_type input[type=number] {
  width: 250px;
  padding: 10px;
  font-size: 18px!important;
  border: 2px solid #d0d0d0;
	border-radius: 5px;
}

.no-spin::-webkit-inner-spin-button,
.no-spin::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance:textfield;
}

.order_type select {
	width: 280px;
  padding: 10px;
  font-size: 18px;
	border: 2px solid #d0d0d0;
	border-radius: 5px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.select_wrap {
	position: relative;
	display: inline-block;
}

.select_wrap:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #656565;
  border-left: 2px solid #656565;
  transform: translateY(-50%) rotate( -135deg);
  font-size: 20px;
  pointer-events: none;
}

.order_type .form_info {
  text-align: left;
	margin: 20px 0 0;
}

.order_type .form_info input::placeholder,.order_type .kw::placeholder {
	color: #b9b9b9;
}

.radio_list {
  list-style: none;
  display: flex;
	justify-content: center;
}

.radio_list li {
  width: 130px;
	margin: 0 10px 0;
}

.radio_list img {
  width: 42px;
  display: block;
  margin: 9px auto 12px;
}

.radio_list label {
  width: 100%;
	margin: 0;
}

.radio_style {
  background: #FFF;
  display: flex;
  flex-direction: column;
  height: 100px;
  padding: 34px 0 5px;
  box-shadow: 0 -2px 0 0 #f1f1f1 inset;
  box-sizing: border-box;
  position: relative;
  text-align: center;
  font-weight: normal;
  font-size: 17px;
  border: 2px solid #d0d0d0;
  border-radius: 8px;
}

.radio_style::before {
  background: #fff;
  border: 1px solid #c9c9c9;
  border-radius: 50%;
  content: '';
  display: block;
	width: 23px;
  height: 22px;
  margin-top: -8px;
  position: absolute;
  left: 73px;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
}

.radio_style::after {
	background: #048479;
	border-radius: 50%;
	content: '';
	display: block;
	margin-top: -3px;
	opacity: 0;
	position: absolute;
	transform: scale3d(.3,.3,1);
	transition: transform .2s ease-in-out, opacity .2s ease-in-out;
  width: 14px;
  height: 14px;
  left: 66px;
}

.radio_list input[type=radio]:checked + .radio_style::before {
	border-color: #c9c9c9;
}

.radio_list input[type=radio]:checked + .radio_style::after {
  opacity: 1;
  transform: scale3d(1,1,1);
}

.radio_list input[type=radio]:checked + .radio_style {
  background: #e4eddc;
  box-shadow: none;
	border: 3px solid #048479;
	color: #048479;
}

.radio_list input[type=radio] {
  width: 100%;
	height: 100%;
  display: none;
}

.list_4 {
	margin-top: 20px;
}

.list_4 li {
	width: 150px;
}

.list_4 .radio_style {
	height: 150px;
	font-size: 15px;
	line-height: 1.3;
}

.list_4 .radio_style::before {
	margin-top: -25px;
}

.list_4 .radio_style::after {
	margin-top: -21px;
}

.list_2 .radio_style {
	padding: 53px 0 5px;
}

.list_2 .radio_style::before {
	top: 26px;
	left: 62px;
}

.list_2 .radio_style::after {
	top: 26px;
	margin-top: -4px;
	left: 55px;
}

.step_comment .color {
  color: #fe9030;
	font-size: 25px;
	margin: 0 2px 0 2px;
}

.step_comment .gray_bg {
	float: none;
	margin: 0 10px 0 0;
	vertical-align: middle;
}

.message_before,.message_after {
  width: 70%;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
	font-size: 15px;
}

.message_before {
  background: #ffe6e6;
  color: #FF0004;
}

.message_after {
  /*background: #eaf6e0;*/
	background: #fff9ce;
}

.message_before i {
	margin: 0 3px 0 0;
}

.message_after i {
	margin: 0 3px 0 0;
	color: #fe9030;
	font-size: 18px;
}

.order_btn {
	margin: 40px 0 10px;
  text-align: center;
}

.order_btn_form {
  margin: 20px 0 0;
}

.order_btn ul {
  width: 70%;
	height: 70px;
  margin: 0 auto;
	position: relative;
}

.order_btn li {
  list-style: none;
}

.btn_return,.btn_next,.btn_next_disabled,.btn_submit {
  margin: 0 auto 30px;
  border-radius: 50px;
}

.btn_return {
	width: 130px;
	height: 60px;
  background: #f8f8f8;
  border: 1px solid #c6c6c6;
  font-weight: normal;
	font-size: 18px;
	position: relative;
	padding: 0 12px 0 19px;
	float: left;
}

.btn_next_disabled,.btn_next,.btn_submit {
  font-size: 20px;
  width: 300px;
	height: 60px;
  font-weight: bold;
  border: none;
  position: absolute;
	padding: 0 12px 0 17px;
	clear: both;
	left: 0;
  right: 0;
}

.btn_next_disabled {
  background: #e0e0e0;
  pointer-events: none;
}

.btn_next {
  background: #fe9030;
  color: #fff;
  font-weight: bold;
}

.btn_return::before,.btn_return::after {
  position: absolute;
  top: -2px;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.btn_return::before {
  left: -64px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #8c8c8c;
  border-right: 1px solid #8c8c8c;
  -webkit-transform: rotate(-130deg);
  transform: rotate(-130deg);
}

.btn_next_disabled::before,.btn_next::before,
.btn_next_disabled::after,.btn_next::after{
  position: absolute;
  top: -2px;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.btn_next_disabled::before,.btn_next::before {
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn_next_disabled::before {
  border-top: 1px solid #a5a5a5;
  border-right: 1px solid #a5a5a5;
}

.btn_next::before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.btn_submit {
	width: 350px;
  background: #104ba9;
  color: #fff;
  font-weight: bold;
	border-bottom: 5px solid #02378c;
}


.order_type .form_info {
	width: 80%;
	margin: 0 auto;
}

.order_type .form_info th {
  width: 260px;
	padding: 20px 20px 20px 20px;
}

.order_type .form_info .form_nametext {
  width: 170px;
}

.consent {
	text-align: center;
	margin: -10px 0 50px;
}

.button-open {
  color: #0073aa;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
}

.modal-window {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 95%;
  background-color: #fff;
  border-radius: 5px;
  z-index: 11;
  padding: 2rem;
	max-height: 95%;
	overflow-y: scroll;
}

.button-close {
  width: 150px;
  padding: 1em;
  background-color: #048479;
  color: #eaeaea;
  border-radius: 20rem;
  cursor: pointer;
  margin: 30px auto 30px;
  display: block;
	border: none;
}

.button-close-top {
	font-size: 15px;
  right: 13px;
  top: 13px;
  position: absolute;
  margin: 0 0 50px;
  display: block;
  background-color: #eee;
  background: #f8f8f8;
  border: 1px solid #c6c6c6;
  border-radius: 3px;
	width: 30px;
  height: 30px;
	text-align: center;
}

.button-close-top i {
	display: block;
	margin: 0 auto;
	line-height: 0;
	position: absolute;
	left: 0;
	right: 0;
}

.modal-window .main {
	width: 700px;
	box-shadow: none;
}

.modal-window .rule,.modal-window .privacy-policy {
	margin: 20px 0 0;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 10;
}

.no_scroll {
  overflow: hidden;
}

.not_comment {
  text-align: center;
  margin: 40px 0 5px;
  font-weight: bold;
  font-size: 24px;
}
.order_operator2 img {
  display: block;
  margin: 0 auto 15px;
}
.order_type2 {
  width: 645px;
  margin: 10px auto 20px;
  text-align: center;
}
.order_type2 p {
  font-size: 15px;
  margin: 0 0 15px;
}
.order_type2 .bold {
  font-weight: bold;
}
.order_type2 h2 {
  font-size: 16px;
  font-weight: bold;
  margin: 31px 0 10px;
}
.order_type2 h2 .bold {
  color: #fe9030;
}
.order_type2 h2 br {
  display: none;
}
.move_btn {
  display: block;
  margin: auto;
  width: 430px;
  height: 70px;
  border-radius: 35px;
  background: linear-gradient(45deg, #FFC107 0%, #ff8b5f 100%);
  font-size: 25px;
  font-weight: bold;
  border: none;
  position: relative;
  overflow: hidden;
}
.move_btn::before {
  margin: auto;
  font-family: "FontAwesome";
  content: "\f138";
  width: 35px;
  height: 35px;
  display: block;
  position: absolute;
  top: -6.5px;
  right: 20px;
  bottom: 0;
  color: #FFFFFF;
  z-index: 2;
}
.move_btn::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 35px;
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0,1);
  transform: scale(0,1);
  transition: transform .3s,-webkit-transform .3s;
  z-index: 1;
}
.move_btn:hover button {color: #ff8b07;}
.move_btn:hover button {border: 1px solid #ff8b07;}
.move_btn:hover::before {color: #ff8b07;}
.move_btn:hover::after {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1,1);
  transform: scale(1,1)
}
.move_btn button {
  padding: 0 0 0;
  width: 430px;
  height: 70px;
  color: #fff;
  border-radius: 35px;
  border: none;
  background: none;
  -webkit-transition: .3s;
  transition: .3s;
  cursor: pointer;
  z-index: 2;
  position: relative;
}

.order_btn_form .move_btn,.order_btn_form .move_btn button {
  height: 60px;
}
.form_start {
  margin: 0 50px 0 0;
}
.last_attention {
  width: 869px;
  margin: 25px auto 10px;
  background: #fcf8d9;
  border-radius: 5px;
  padding: 10px;
}
.last_attention {
  padding: 20px 15px 10px;
}
.last_attention p {
  margin: 0 0 5px;
  font-weight: bold;
  font-size: 17px;
}
.last_attention ul{
  font: 14px/1.6 'arial narrow', sans-serif;
  list-style: none;
  margin: 0;
}
.last_attention li{
  position: relative;
  line-height: 30px;
  padding-left: 20px;
  font-weight: bold;
}
.last_attention li:before{
  content: "・";
  position: absolute;
  left: 0px;
}

.simple_form_btn .btn_submit {
  position: inherit;
  margin: 0 auto;
}

@media (max-width: 1080px) {
	.flow_step, .order_top .title, .message_before, .message_after ,.order_btn ,.order_btn ul ,.order_btn_form, .form_start ,.order_type .form_info,.last_attention {
		width: 100%;
	}
	.flow_step li {
		width: 14%;
		font-size: 15px;
	}
	.order_type .form_info .seimei label {
		display: block;
	}
	.order_type .name_mei, .order_type .name_kana {
		margin: 7px 0 3px;
	}
  .last_attention {
    margin: 20px auto 10px;
  }
}

@media (max-width: 991px) {
	.order_top .title {
    width: 100%;
	}
	.flow_step {
		width: 100%;
		font-weight: bold;
	}
	.order_type .form_info .form_nametext {
    width: 120px;
	}
	.last_bnr img {
		width: 100%;
	}
}

@media (max-width: 767px) {

	.flow_step li {
		width: 13.5%;
		height: 50px;
		padding: 5px 0 5px 0;
		font-size: 13px;
	}
	
	.flow_step li br {
		display: block;
	}
	
	.flow_step li::after{
		border-width: 25px 15px;
	}

	.order_operator {
		margin: 0 0 20px;
	}
	
	.order_operator img {
		width: 16%;
	}
	
	.order_type {
    margin: 10px 0 50px;
	}
	
	.step_comment {
		margin: 10px 0 0;
		padding: 13px 20px 10px;
    line-height: 1.4;
	}

	.list_4 {
		flex-wrap: wrap;
		justify-content: center;
		margin: 20px 0 -15px;
	}

	.list_4 li {
    width: 140px;
		margin: 0 10px 15px;
	}
	
	.list_4 .radio_style {
		height: 136px;
	}

	.radio_style::before {
		width: 20px;
    height: 19px;
		left: 68px;
	}
	
	.radio_style::after {
	  width: 12px;
    height: 11px;
    left: 62px;
	}
	
	.list_2 .radio_style::after {
		left: 56px;
	}
	
	.radio_list img {
    width: 35px;
    display: block;
    margin: 4px auto 8px;
	}
	
	.message_before,.message_after {
		width: 100%;
		padding: 10px 10px;
	}
	
	.btn_return {
    width: 110px;
	}
	
  .btn_next_disabled,.btn_next,.btn_submit {
		font-size: 17px;
	}
	
	.order_type .form_info {
		margin: 0 0 -20px;
	}
	
	.order_type .form_info th {
		width: 100%;
	}
	.last_bnr img {
		margin: 0px auto 15px;
	}
	
	.modal-window .main {
		width: 500px;
	}
  .order_type2 {
    width: 100%;
  }
  .not_comment {
    margin: 25px 0 5px;
    font-size: 23px;
  }
  .order_operator2 img {
    width: 27%;
  }
  .order_type2 h2 {
    font-size: 15px;
    margin: 21px 0 8px;
    line-height: 1.3;
  }
  .order_type2 h2 br {
    display: block;
  }
  .move_btn {
    width: 100%;
    height: 60px;
    font-size: 18px;
  }
  .move_btn button {
    width: 100%;
    height: 60px;
  }
  .move_btn::before {
    top: 8.5px;
    right: 10px;
  }
  .order_btn_form {
    display: flex;
    justify-content: space-between;
    margin: 10px 0 -15px;
  }
  .order_btn_form .return {
    width: 23%;
  }
  .form_start {
    width: 74%;
    margin: 0;
  }
}

@media (max-width: 650px) {

	.estimate-order {
		margin: 12px auto 0;
	}

	.order_top h1 {
    font-size: 21px;
	}
	
	.order_top .orderfree_icon {
    width: 65px;
    height: 65px;
		font-size: 19px;
	}
	
	.order_operator {
		margin: 0 0 20px;
	}
	
	.order_operator img {
		width: 20%;
	}
	
	.step_comment {
		display: flex;
	}
	
	.step_comment .gray_bg {
		height: 27px;
    width: 57px;
		text-align: center;
	}
	
	.order_type {
    margin: 10px 0 30px;
	}
	
	.list_4 {
		width: 320px;
		margin: 0px auto -15px;
	}
	
	.radio_style {
		font-size: 15px;
	}

	.order_btn {
		margin: 35px 0 10px;
	}
	
	.order_btn ul {
		display: flex;
		justify-content: space-between;
	}
  
	.order_btn ul.firsr_btn_list {
		display: block;
		text-align: center;
	}
	
	.order_btn .firsr_btn_list li {
		width: 70%;
		margin: 0 auto;
	}
	
	.order_btn .return {
		width: 23%;
	}
	
	.order_btn li:last-child {
		width: 74%;
	}
	
	.btn_return {
		width: 100%;
		float: none;
		font-size: 16px;
		border-radius: 10px;
	}
	
	.btn_next_disabled, .btn_next, .btn_submit {
		width: 100%;
		position: relative;
		font-size: 18px;
	}
	
	.order_type .form_info {
    margin: 0 0 -5px;
	}
	
	.modal-window .main {
		width: 420px;
	}

  .simple_form_btn .btn_submit {
    width: 90%;
  }

}

@media (max-width: 480px) {

	.order_top .orderfree_icon {
    width: 50px;
    height: 50px;
    margin: 3px 6px 0 -2px;
    font-size: 16px;
    line-height: 3.3;
	}
	
	.order_top h1 {
    font-size: 18px;
	}
	
	.flow_step ol {
		margin: 5px 0 20px;
	}

	.flow_step li {
		font-size: 11px;
	}

	.flow_step li::after {
		border-width: 25px 12px;
		top: 0px;
    right: -24px;
	}
	
	.order_operator {
		margin: 0px 0 25px;
	}
	
	.step_comment {
		padding: 13px 10px 10px 15px;
		font-size: 18px;
	}
	
	.step_comment .gray_bg {
		width: 68px;
		margin: 0 7px 0 0;
		text-align: center;
	}
	
	.step_comment .color {
		font-size: 23px;
	}
	
	.radio_style {
		font-size: 15px;
	}
	
	.message_before, .message_after {
		font-size: 13px;
	}
	
	.message_after i {
		font-size: 16px;
	}
	
	.order_btn {
    margin: 30px 0 10px;
	}

	.btn_return::before, .btn_return::after {
		right: -20px;
	}
	
	.order_type .form_info th {
		padding: 15px 15px 15px 15px;
	}
	
	.order_type .form_info .form_nametext {
		font-size: 17px;
		width: 150px;
	}
	.modal-window .main {
		width: 300px;
	}
}

@media (max-width: 380px) {
  .order_btn_form .return {
    width: 22%;
  }
  .form_start {
    width: 76%;
  }
  .move_btn button {
    padding: 0 10px 0 0;
  }
}

@media (max-width: 360px) {
	.order_top h1 {
    font-size: 17px;
	}
	.list_4 li {
		width: 140px;
	}
	.step_comment .color {
		font-size: 23px;
	}

}