@charset "UTF-8";
/*-------------------------------------
00 additional reset
--------------------------------------*/
button {
	background: none;
	border: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
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: Arial, "ヒラギノ角ゴ Pro", Hiragino Kaku Gothic Pro, "メイリオ", Meiryo, Osaka, " ＭＳ Ｐゴシック", MS PGothic, "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;
  }
  /* a:link {
  
  } */
  /* a:hover,
  a:active,
  a:focus {
    color: #;
  } */
  p {
    line-height: 1.75;
  }

/*-------------------------------------
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 #3DA4EB;
  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: 35px;
  margin-right: 20px;
}
.header_inner span {
  display: inline-block;
  margin-top: 7px;
}
/*-------------------------------------
02 flow & bnr
--------------------------------------*/
.flow {
  margin: 10px 0 0;
    display: flex;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
}
.flow .step1,
.flow .step2 {
  border: 1px solid #3DA4EB;
    border-radius: 4px;
    width: 450px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3DA4EB;
    position: relative;
    margin-right: 50px;
}
.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 #AAEAFA;
right: -30px;
top: 50%;
transform: translateY(-50%);
}
.flow .step3 {
  border: 1px solid #F7931E;
    border-radius: 4px;
    width: 450px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #F7931E;
}
.tx_step {
  font-family: 'Philosopher', sans-serif;
  font-size: 18px;
}
.flow .step1.is_selected,
.flow .step2.is_selected {
  background-color: #3DA4EB;
  color: #fff;
}
.is_selected .tx_step {
  color: #FCEE00;
}

.flow .step3.is_selected {
  background-color: #F7931E;
  color: #fff;
}
.form_bnr {
  width: 1000px;
  height: auto;
}
/*-------------------------------------
03 form
--------------------------------------*/

.form_title_l {
  font-size: 2rem;
  background: #D7F3FA;
  border-bottom: 2px solid #5AC9EA;
  width: 100%;
  height: 48px;
  padding-left: 20px;
  line-height: 48px;
  margin-top: 20px;

}
p {
  font-size: 1.6rem;
  padding: 1rem;
}
.form_title_m {
  font-size: 1.8rem;
  background: #D7F3FA;
  border-bottom: 2px solid #5AC9EA;
  width: 100%;
  height: 46px;
  padding-left: 20px;
  line-height: 46px;
}
.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 th {
  width: 168px;
  background: #F6F6F6;
  border-bottom: 1px solid #CCCCCC;
  height: 60px !important;
  padding-left: 5px;
  font-size: 1.4rem;
  font-weight: bold;
  vertical-align: top;
  padding-top: 25px;
}
.form_table th.higher {
  height: 93px;
}
.form_table td {
  padding: 10px 0 10px 10px;
  border-bottom: 1px solid #CCCCCC;
  vertical-align: top;
}
.form .must {
  display: inline-block;
  background: #E88231;
  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 .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 input {
  border: 1px solid #b3b3b3;
  padding: 12px;
  border-radius: 4px;
  font-size: 15px;
  width: 290px;
  height: 42px;

}
.form textarea {
  border: 1px solid #b3b3b3;
  padding: 12px;
  border-radius: 4px;
  font-size: 15px;
  width: 666px;
  height: 64px;
  margin: 10px;
}
.form input::placeholder,
.form textarea::placeholder {
  color: #999999;
}
.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;

}
/*追加CSS*/
.fukidashi {
  margin-bottom: 0.5em;
  display: inline-block;
  position: relative;
  color: #fff;
  background: #FD7373;
  font-size: 13px;
  font-weight: normal;
  width: 230px;
  left: 0;
  text-align: center;
  padding: 0.25em 0.5em;
  line-height: 1;
}
.fukidashi:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top: 5px solid #FD7373;
}
.select-wrap {
  display: flex;
  align-items: center;
}
select {
  padding: 10px;
  border-radius: 4px;
  font-size: 1.6rem;
  margin: 1px 3px;
  background-color: #FFF9D9;
}
.btn-plus{
  margin: 0 5px;
}

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

.form input: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;
}
.form_table th{
  vertical-align: middle;
  padding-top: 0;
}