@charset "UTF-8";
/*-----------------------------------------------
	form-block
-----------------------------------------------*/
.form-block {
  display: table;
  font-size: 1.6rem;
  width: 100%;
  border-top: 1px solid #009ce0;
}

.form-block .cell-w {
  display: table-cell;
  background: #dceffc;
  width: 280px;
  padding: 15px;
  border-left: 1px solid #009ce0;
  font-weight: bold;
  vertical-align: top;
}

.form-block .cell-s {
  display: table-cell;
  background: #dceffc;
  width: 140px;
  padding: 15px;
  border-right: 1px dotted #009ce0;
  border-left: 1px solid #009ce0;
  font-weight: bold;
  vertical-align: top;
}

.form-block .cell-r {
  display: table-cell;
  border-right: 1px solid #009ce0;
  vertical-align: top;
}

.form-block .cell-inner {
  padding: 15px;
}

.block-bottom {
  border-bottom: 1px solid #009ce0;
}

.form-block input,
.form-block select {
  margin-bottom: 10px;
}

.form-block-child {
  display: table;
  width: 100%;
  border-bottom: 1px dotted #009ce0;
}

.form-block-child:last-child {
  border-bottom: none;
}

.form-block-child dt {
  display: table-cell;
  background: #dceffc;
  width: 140px;
  padding: 15px;
  font-weight: bold;
  vertical-align: top;
}

.form-block-child dd {
  display: table-cell;
  padding: 15px;
  vertical-align: top;
}

@media only screen and (max-width: 767px) {
  .form-block {
    font-size: 1.4rem;
    display: block;
    border-top: 2px solid #009ce0;
  }
  .form-block .cell-w {
    display: block;
    background: #dceffc;
    width: 100%;
    padding: 10px;
    border-left: none;
  }
  .form-block .cell-s {
    display: block;
    background: #dceffc;
    width: 100%;
    padding: 10px;
    border-right: none;
    border-left: none;
    border-bottom: 2px solid #fff;
  }
  .form-block .cell-r {
    display: block;
    border-right: none;
  }
  .form-block .cell-inner {
    padding: 10px 0;
  }
  .form-block-child {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .form-block-child dt {
    display: block;
    width: 100%;
    padding: 10px;
  }
  .form-block-child dd {
    display: block;
    padding: 10px 0;
  }
}

/*-----------------------------------------------
	form parts
-----------------------------------------------*/
textarea {
  resize: none;
  height: 150px;
  font-size: 1.6rem;
}

.notice-box {
  background: #e6e6e7;
  border-radius: 5px;
  padding: 10px;
  font-size: 1.2rem;
  margin-top: 15px;
}

.form-block .err-txt {
  font-size: 1.2rem;
  color: #df0d0e;
}

.err-bg {
  background-color: #ffcccc !important;
}

.ok-bg {
  background-color: #faffbd !important;
}

.len-vshort {
  width: 80px;
}

.len-short {
  width: 100px;
}

.len-middle {
  width: 200px;
}

.len-long {
  width: 400px;
}

.len-wide {
  width: 100%;
}

.float-item {
  float: left;
  margin-right: 10px;
}

span.float-item,
label.float-item {
  margin-top: 5px;
}

input[type="radio"].float-item {
  margin-top: 10px;
  margin-right: 3px;
}
.picker__header select {
    border-radius: 2px;
    padding: 5px;
    font-size: 18px;
    margin: 0;
    height: 40px;
}

.necessary {
  display: block;
  float: right;
  background: #ff445a;
  color: #fff;
  font-size: 1.4rem;
  padding: 1px 4px;
  border-radius: 5px;
}
.pri-ttl{
  font-weight: bold;
}

.pri {
  background-color: #fff;
  height: 150px;
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 10px;
  font-size: 1.2rem;
  border: 1px solid #ddd;
  margin: 5px 0 20px;
}

.pri::-webkit-scrollbar {
  width: 6px;
}

.pri::-webkit-scrollbar-track {
  border-radius: 5px;
  background: #eee;
}

.pri::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #666;
}

.purposeDescription{
  font-size: 1.4rem;
}

@media only screen and (max-width: 767px) {
  textarea {
    height: 100px;
  }
  .len-long {
    width: 100%;
  }
}

/*-----------------------------------------------
	button
-----------------------------------------------*/
#stepLast {
  background: #f5f5f5;
  padding: 15px;
  border-radius: 5px;
  position: relative;
}

#stepLast p {
  text-align: center;
  margin-bottom: 5px;
  font-size: 12px;
}

.btn-next,
.btn-unanswered,
.btn-send {
  letter-spacing: 2px;
  font-weight: bold;
  border-radius: 5px;
  display: block;
  padding: 15px;
  position: relative;
  font-size: 2.0rem;
  cursor: pointer;
}

.btn-next {
  background-color: #f2780c;
  border-bottom: 2px solid #bc6530;
  background-image: linear-gradient(to bottom, #ff8500, #f2780c);
  width: 400px;
  margin: 0 auto;
  color: #fff;
}

.btn-next:hover {
  opacity: 0.7;
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .btn-next:hover {
    opacity: 1.0;
  }
}

.btn-unanswered {
  background-color: #ffeff1;
  border: 2px solid #ff445a;
  width: 400px;
  margin: 0 auto;
  color: #ff445a;
}

.btn-send {
  background-color: #f2780c;
  border-bottom: 2px solid #bc6530;
  background-image: linear-gradient(to bottom, #ff8500, #f2780c);
  width: 400px;
  margin: 0 auto;
  color: #fff;
}

.btn-send:hover {
  opacity: 0.7;
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .btn-send:hover {
    opacity: 1.0;
  }
}

.btn-back {
  letter-spacing: 3px;
  font-weight: bold;
  border-radius: 5px;
  display: block;
  position: relative;
  font-size: 1.6rem;
  background-color: #fff;
  border: 1px solid #dfdfdf;
  border-bottom: 2px solid #bbb;
  width: 150px;
  height: 50px;
  margin: 0 auto;
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
}

.btn-back:hover {
  opacity: 0.7;
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .btn-back:hover {
    opacity: 1.0;
  }
}

@media only screen and (max-width: 767px) {
  .btn-next,
  .btn-unanswered,
  .btn-send {
    width: 100%;
  }
  .btn-back {
    position: static;
    margin-top: 20px;
  }
}

/*-----------------------------------------------
	STEP
-----------------------------------------------*/
.form-flow {
  margin: 0 auto;
  width: 720px;
  display: table;
}
.form-flow li {
  width: 240px;
  display: table-cell;
  text-align: center;
  font-weight: bold;
  padding: 4px 0 6px;
  position: relative;
  color: #009ce0;
  line-height: 1.4;
}
.form-flow li:nth-child(1) {
  border-top: solid 2px #009ce0;
  border-left: solid 2px #009ce0;
  border-bottom: solid 2px #009ce0;
  border-radius: 4px 0 0 4px;
}
.form-flow li:nth-child(2) {
  border-top: solid 2px #009ce0;
  border-bottom: solid 2px #009ce0;
}
.form-flow li:nth-child(3) {
  border-top: solid 2px #009ce0;
  border-right: solid 2px #009ce0;
  border-bottom: solid 2px #009ce0;
  border-radius: 0 4px 4px 0;
}
.form-flow li:nth-child(1):before,
.form-flow li:nth-child(2):before {
  position: absolute;
  margin: auto;
  content: "";
  width: 0;
  height: 100%;
  border-right: 2px solid #009ce0;
  top: 0;
  bottom: 0;
  right: -2px;
  z-index: 10;
}
.form-flow li:nth-child(1):after,
.form-flow li:nth-child(2):after {
  position: absolute;
  margin: auto;
  content: "";
  width: 15px;
  height: 15px;
  border-top: 2px solid #009ce0;
  border-right: 2px solid #009ce0;
  background: #fff;
  top: 0;
  bottom: 0;
  right: -9px;
  transform: rotate(45deg);
  z-index: 20;
}
.form-flow li.current {
  color: #fff;
  background: #009ce0;
}
.form-flow li.current:after {
  background: #009ce0;
}
.form-flow li span {
  font-size: 2.0rem;
  vertical-align: -1px;
}

@media only screen and (max-width: 767px) {
  .form-flow {
    width: 60%;
    min-width: 300px;
  }
  .form-flow li {
    width: 33%;
    text-align: left;
    line-height: 1.2;
  }
  .form-flow li:nth-child(1) { padding: 3px 10px 5px 10px; }
  .form-flow li:nth-child(2) { padding: 3px 10px 5px 20px; }
  .form-flow li:nth-child(3) { padding: 3px 10px 5px 20px; }
  .form-flow li:nth-child(1):after,
  .form-flow li:nth-child(2):after {
    width: 12px;
    height: 12px;
    right: -8px;
  }
  .form-flow li span {
    font-size: 1.8rem;
    vertical-align: 0;
  }
}

/*-----------------------------------------------
	thanks
-----------------------------------------------*/
.thanks-box {
  border: 2px solid #c2cad3;
  padding: 40px 0;
  text-align: center;
  width: 720px;
  margin: 20px auto;
}

.thanks-box .thanks-ttl {
  color: #009ce0;
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.thanks-box .thanks-link {
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .thanks-box {
    width: 100%;
    padding: 15px 10px;
    margin: 20px auto;
  }
  .thanks-box .thanks-ttl {
    color: #009ce0;
    font-size: 1.6rem;
  }
  .thanks-box .thanks-link {
    margin-top: 10px;
  }
}

/*-----------------------------------------------
  仮申込フォーム
-----------------------------------------------*/
.block-form-caution{
  border: 2px solid #cc0022;
  margin: 0 0 20px 0;
}
.form-caution-ttl{
  background: #cc0022;
  color: #fff;
  padding: 5px 20px;
}
.form-caution-txt{
  padding: 20px;
}


.block-sim-plan{
  border: 1px solid #ddd;
  padding: 20px;
  margin: 0 0 20px 0;
}
.txt-sim-inner{
  color: #cc0022;
  font-weight: bold;
}
.txt-sim-inner span{
  font-size: 2.4rem;
}

.plan-title {
  margin: 10px 0 20px 0;
}


@media only screen and (max-width: 767px) {
  .block-form-caution{
    margin: 0 0 10px 0;
  }
  .form-caution-ttl{
    padding: 5px 10px;
  }
  .form-caution-txt{
    padding: 10px;
  }
  .block-sim-plan{
    border: 5px solid #e1eef5;
    padding: 10px;
    margin: 0 0 10px 0;
  }
  .txt-sim-inner span{
    font-size: 2.0rem;
  }
}

/*----カレンダーカスタム----*/

.picker__frame {
  max-width: 400px!important;
  display: none!important;
}
.picker--opened .picker__frame{
  display: block!important;
}
.picker__frame .picker__select--year,
.picker__frame .picker__select--month{
  font-size: 15px;
  position: relative;
  line-height: 1;
  padding: 0 20px;
  border-radius: 5px;
  border: 1px solid #bbb;
  text-align: center;
  appearance: auto;
}
.picker__frame .picker__day{
  font-size: 15px;
  padding: 8px;
  border: none;
}
.picker--focused .picker__day--selected.picker__day--highlighted,
.picker__frame .picker__day--selected,
.picker__frame .picker--focused .picker__day--selected.picker__day--selected,
.picker__frame .picker__day--infocus.picker__day--selected:hover{
  background: #3d7999!important;
}
.picker--focused .picker__day--highlighted{
  background: none!important;
}
.picker__frame .picker__day--highlighted:hover,
.picker__frame .picker__day--infocus:hover,
.picker__frame .picker__day--outfocus:hover{
  background: #edf4f7!important;
}
.picker__frame .picker__day--infocus.picker__day--disabled:hover,
.picker__frame .picker__day--outfocus.picker__day--disabled:hover,
.picker--focused .picker__day--highlighted.picker__day--infocus.picker__day--disabled{
  background: #f5f5f5!important;
}
.picker__frame .picker__day--today:before{
  border-top: 0.5em solid #cc0022;
}
.picker__frame .picker__button--today:before{
  border-top: 0.66em solid #cc0022;
}
.picker__frame .picker__table{
  border-left: 1px solid #bbb;
  margin: 10px 0;
  table-layout: fixed;
}
.picker__frame .picker__table th{
  padding: 8px 0;
}
.picker__frame .picker__box{
  padding: 20px;
}
.picker__frame .picker__header{
  margin-top: 0;
}
.picker__frame .picker__table tr th{
  background-color: #edf4f7;
  color: #3d7999;
  font-size: 15px;
}
.picker__frame .picker__table tr th,
.picker__frame .picker__table tr td{
  border-bottom: 1px solid #bbb;
  border-top: 1px solid #bbb;
  border-right: 1px solid #bbb;
}
.picker__frame .picker__table tr td{
  padding: 0!important;
}
.picker__frame .picker__nav--next{
  right: 0;
  top: 2px;
  border-radius: 5px;
  padding: 5px 10px 5px 18px;
  width: 25px;
}
.picker__frame .picker__nav--prev{
  left: 0;
  top: 2px;
  border-radius: 5px;
  padding: 5px 18px 5px 10px;
  width: 25px;
}
.picker__frame .picker__nav--prev:before{
  border-right: 20px solid #3d7999;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
.picker__frame .picker__nav--next:before{
  border-left: 20px solid #3d7999;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
.picker__frame .picker__nav--next:hover,
.picker__frame .picker__nav--prev:hover{
  background-color: #fff;
}
.picker__frame .picker__nav--prev:hover:before{
  opacity: 0.8;
}
.picker__frame .picker__nav--next:hover:before{
  opacity: 0.8;
}
.picker--opened .picker__holder{
  background: rgba(0, 0, 0, 0)!important;
}
.picker--opened .picker__holder .picker__box{
  border: 1px solid #ccc;
  box-shadow: 0 4px 15px 3px rgb(0 0 0 / 20%);
}
.picker__frame .picker__button--today,
.picker__frame .picker__button--clear,
.picker__frame .picker__button--close{
  font-size: 14px;
  font-weight: normal;
  background-color: #f2f2f2;
  color: #333;
  border-radius: 5px;
  border: 1px solid #bbb;
  width: 49%;
  padding: 7px;
}
.picker__frame .picker__button--today:hover,
.picker__frame .picker__button--clear:hover,
.picker__frame .picker__button--close:hover{
  background-color: #f7f7f7;
  color: #333;
  background: #f7f7f7;
  border-bottom-color: #ccc;
}
.picker__frame .picker__button--clear{
  display: none;
}
.picker__frame .picker__button--today{
  margin-right: 2%;
}

@media only screen and (max-width: 767px){
  .picker__frame{
    padding: 0 10px;
  }
  .picker--opened .picker__frame{
    margin-bottom: 10px;
  }
  .picker__frame .picker__select--year,
  .picker__frame .picker__select--month,
  .picker__frame .picker__day,
  .picker__frame .picker__table tr th{
    font-size: 14px;
  }
  .picker__frame .picker__select--year,
  .picker__frame .picker__select--month{
    padding: 0 16px;
    height: 2.6rem;
  }
  .picker__frame .picker__day{
    padding: 8px 0;
  }
  .picker__frame .picker__nav--next{
    right: 0;
    top: 2px;
    border-radius: 5px;
    padding: 5px 15px 5px 23px;
    width: 25px;
  }
  .picker__frame .picker__nav--next{
    padding: 5px 0 5px 20px;
    width: 20px;
  }
  .picker__frame .picker__nav--prev{
    padding: 5px 20px 5px 0;
    width: 20px;
  }
  .picker__frame .picker__button--today,
  .picker__frame .picker__button--clear,
  .picker__frame .picker__button--close{
    padding: 10px 5px;
  }
}


/* 渡航期間自動補完ボタン */
#complement {
  padding: 7px;
  margin: 0 0 0 32px;
  cursor: pointer;
  text-align: center;
  border: #999 1px solid;
  border-radius: 3px;
  border-width: 1px 2px 2px 1px;
  background: #f5f5f5;
  color: #333;
}
#complement:active {
  border-width: 2px 1px 1px 2px;
}
@media screen and (min-width: 641px) {
  #complement {
    margin: 0 0 0 10px;
  }
}















