@charset "UTF-8";
/*-------------------------------------
00 additional reset
--------------------------------------*/
button {
	background: none;
	border: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type="button"] {
	border: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
  appearance: none;
  cursor: pointer;
    }
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* .form input {   フォーカス時のアウトラインを消す
  outline: 0;
  } */
/*-------------------------------------
00 setup 
--------------------------------------*/
*, *::before, *::after{
  box-sizing: border-box;
  }
  html {
    -webkit-text-size-adjust: none;
    font-size: 62.5%;/*10px*/
    box-sizing: border-box;
  }
  body {
    width: 100%;
    height: 100%;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "sans-serif";
    color: #333;
    background: #fff;
    /* overflow: hidden; */

    text-align: justify;
    letter-spacing: 0.05em;
    line-height: 1;
  }
  img {
    max-width: 100%;
  }
  a {
    text-decoration: none;
    outline: none;
  }
  /* a:link {
  
  } */
  /* a:hover,
  a:active,
  a:focus {
    color: #;
  } */
  p {
    line-height: 1.75;
  }
  input, textarea {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "sans-serif";

  }

/*-------------------------------------
00 layout
--------------------------------------*/
.header, .main, .footer {
  width: 100%;
}


.header_inner, .main_inner {
  width: 1000px;
  margin: 0 auto;

}
/*-------------------------------------
01 header
--------------------------------------*/
.header {
  height: 54px;
  border-top: 4px solid #23537D;
  border-bottom: 1px solid #EEEEEE;
}

.header_inner {
  height: 49px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}
.header_inner img {
  display: inline-block;
  height: 30px;
  margin-right: 20px;
}
.header_inner span {
  display: inline-block;
  margin-top: 7px;
}
/*-------------------------------------
02 flow & bnr
--------------------------------------*/
.flow {
  margin: 20px 0 0;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: bold;
}
.flow .step1,
.flow .step2 {
  border: 1px solid #0C6AC4;
  border-radius: 4px;
  width: 300px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0C6AC4;
  position: relative;
}
.flow .step1:after,
.flow .step2:after {
  content: '';
  position: absolute;
  width: 0;
height: 0;
border-style: solid;
border-width: 8px 0 8px 14px;
border-color: transparent transparent transparent #182987;
right: -35px;
top: 50%;
transform: translateY(-50%);
}
.flow .step3 {
  border: 1px solid #FD6D03;
  border-radius: 4px;
  width: 300px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FD6D03;
}
.tx_step {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 18px;
}
.flow .step1.is_selected,
.flow .step2.is_selected {
  background-color: #0C6AC4;
  color: #fff;
}
.is_selected .tx_step {
  color: #FCEE00;
}

.flow .step3.is_selected {
  background-color: #FD6D03;
  color: #fff;
}
.form_bnr {
  width: 1000px;
  height: auto;
}


/*-------------------------------------
add flow2
--------------------------------------*/
.flow2 {
  margin: 20px 0 0;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: bold;
}
.flow2 .step1 {
  border: 1px solid #2373B0;
  border-radius: 4px;
  width: 470px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2373B0;
  position: relative;
}
.flow2 .step1:after {
  content: '';
  position: absolute;
  width: 0;
height: 0;
border-style: solid;
border-width: 8px 0 8px 14px;
border-color: transparent transparent transparent #B0B0B0;
right: -40px;
top: 50%;
transform: translateY(-50%);
}
.flow2 .step2 {
  border: 1px solid #FD6D03;
  border-radius: 4px;
  width: 470px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FD6D03;
}
.flow2 .tx_step {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 18px;
}
.flow2 .step1.is_selected {
  background-color: #2373B0;
  color: #fff;
}
.flow2 .is_selected .tx_step {
  color: #FCEE00;
}

.flow2 .step2.is_selected {
  background-color: #FD6D03;
  color: #fff;
}

/*-------------------------------------
03 form
--------------------------------------*/

.form_title_l {
  font-size: 2rem;
  background: #23537D;
  width: 100%;
  height: 48px;
  padding-left: 20px;
  line-height: 48px;
  margin-top: 20px;
  color: #fff;
}
p {
  font-size: 1.6rem;
  padding: 1.6rem;
}
.form_title_m {
  font-size: 1.8rem;
  background: #23537D;
  width: 100%;
  height: 46px;
  padding-left: 20px;
  line-height: 46px;
  margin-top: 15px;
  color: #fff;
}
.form_title_m.other {
  margin-top: 0;
}
.form table {
  letter-spacing: normal;
  text-align: left;
}
.info_wrap {
  display: flex;
  justify-content: space-between;

}
.customer, .travel {
  width: 480px;
}
.form_table {
  width: 480px;
}
.form_table.other {
  /* height: 100%; */
}

.form_table th {
  width: 168px;
  background: #F6F6F6;
  border-bottom: 1px solid #CCCCCC;
  min-height: 50px;
  font-size: 1.4rem;
  font-weight: bold;
  vertical-align: top;
  padding: 17px 0 10px 10px;
  line-height: 1.7;
}
.form_table th.higher {
  /* height: 80px; */
}
.form_table td {
  padding: 10px 0 10px 10px;
  border-bottom: 1px solid #CCCCCC;
  vertical-align: top;
  font-size: 15px;
}
.form .must {
  display: inline-block;
  background: #F64A49;
  color: #fff;
  font-size: 12px;
  width: 36px;
  height: 19px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  margin-left: 7px;
  font-weight: normal;
  padding-top: 1px;
}
.form .optional {
  display: inline-block;
  background: #999999;
  color: #fff;
  font-size: 12px;
  width: 36px;
  height: 19px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  margin-left: 7px;
  font-weight: normal;
  padding-top: 1px;
}
.form .ml0{
  margin-left: 0;
}
.radio_wrap {
  height: 95px;
}
.radio_wrap label{
  display: inline-block;
  height: 30px;
  font-size: 1.6rem;
  line-height: 30px;
}


.form input[type='text'],
.form input[type='email'],
.form input[type='tel'],
.form input[type='url'],
.form input[type='number'],
select{
  border: 1px solid #b3b3b3;
  padding: 12px;
  border-radius: 4px;
  font-size: 15px;
  width: 290px;
  height: 42px;

}
.form input.input-half {
  width: 100px;
}
input:focus,
select:focus,
textarea:focus{outline:0;}
.form textarea {
  border: 1px solid #b3b3b3;
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 15px;
  width: 290px;
  height: 70px;
}
.form input::placeholder,
.form textarea::placeholder {
  color: #999999;
  font-weight: normal !important;
}
.inquiry_wrap {
  display: flex;
 border-top: 1px solid #CCCCCC;
 border-bottom: 1px solid #CCCCCC;
 margin-top: 10px;
}
.inquiry_wrap label {
  width: 310px;
  display: block;
  background-color: #F6F6F6;
  font-size: 1.4rem;
  padding: 25px 10px;
  font-weight: bold;
}
.form_btn {
  width: 400px;
height: 60px;
background: #F7931E 0% 0% no-repeat padding-box;
box-shadow: 0px 4px 0px #C47418;
border-radius: 4px;
text-align: center;
font-size: 16px;
color: #FFFFFF;
font-weight: 600;
display: block;
margin: 15px auto;
}
.form_btn:hover {
  opacity: .8;
  /* color: #FCEE00; */
  transition: .5s;

}

/*---------------- EFO関連操作 -----------------------*/

.form input:required,
.form select:required {
  background-color: #FFF9D9;
}
.form .ok {
  display: inline-block;
  background: #1FA232;
  color: #fff;
  font-size: 12px;
  width: 36px;
  height: 19px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  margin-left: 7px;
  position: relative;
  z-index: 99999;
  padding-top: 1px;
}
.form .ok:after {
  position: absolute;
  font-family: 'Font Awesome 5 Free';
  content: '\f00c';
  right: -22px;
  color: #1FA232;
  font-size: 16px;
  font-weight: 900;
}

.form .error {
  background: #FFD3CF;
}
.form .error p {
  margin: 0;
  padding: 0;
  padding-top: 5px;
  text-align: left;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0;
  color: #FA1B00;
}
/*-------------------------------------
04 footer
--------------------------------------*/
.footer {
  text-align: center;
  font-size: 1.2rem;
  border-top: 1px solid #EEEEEE;
  margin-top: 20px;
  padding: 10px;
}
/*-------------------------------------
05 form confirm thanks
--------------------------------------*/

#formWrap2 h4, #formWrap2 p, #formWrap2 a {
			font-size: 20px;
			margin-top: 50px;
			margin-bottom: 50px;
			line-height: 1.75;
		}
.btn_go_forward {
  width: 400px;
height: 60px;
background: #F7931E 0% 0% no-repeat padding-box;
box-shadow: 0px 4px 0px #C47418;
border-radius: 4px;
text-align: center;
font-size: 16px;
color: #FFFFFF;
font-weight: 600;
display: block;
margin: 15px auto;
padding-top: 15px;
}
.btn_go_forward:hover {
  opacity: .8;
  transition: .5s;
}
.btn_go_backward {
  width: 400px;
height: 60px;
background: #F7931E 0% 0% no-repeat padding-box;
box-shadow: 0px 4px 0px #C47418;
border-radius: 4px;
text-align: center;
font-size: 16px;
color: #FFFFFF;
font-weight: 600;
display: block;
margin: 15px auto;

}
.btn_go_backward:hover {
  opacity: .8;
  transition: .5s;
}
/*-------------------------------------
06 others
--------------------------------------*/
.mb10 {margin-bottom: 10px;}
.ml10 {margin-left: 10px;}
.flex-label {display: inline-flex;
align-items: center;}
.radio-tx {
  display: inline-block;
  padding-left: 10px;
  margin-right: 2em;
}
.privacy_link {
  font-size: 13px;
  text-align: center;
  padding-top: 1em;
  margin-bottom: 0.7em;
  text-decoration: underline;
}
.privacy_link a[target="_blank"] {
  position: relative;
}
.privacy_link a[target="_blank"]::after {
  position: absolute;
  content: '';
  display: inline-block;
  background: url(../../assets/img/external-link.svg) center center no-repeat;
  background-size: contain;
  width: 14px;
  height: 15px;
  top: -1px;
  right: -20px;
  margin-left: 5px;
}
/*-------------------------------------
07 index form thanks responsive
--------------------------------------*/
@media screen and (max-width: 900px) {
  .form_thanks_responsive .header_inner,
  .wrap.form_thanks_responsive,
  .form_thanks_responsive .main_inner
   {
    width: 100%;
  }
  .form_thanks_responsive .main_inner
   {
    padding: 1em;
  }
  .form_thanks_responsive .header_inner > img{
    margin-left: 0.5em;
  }
  .form_thanks_responsive .btn_go_backward,
  .form_thanks_responsive .btn_go_forward
   {
    width: 100%;
  }
}
