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

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

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

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

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

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

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

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

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

.form-block-child dt {
  display: table-cell;
  background: #e3f4fc;
  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 #001871;
  }
  .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;
}

.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;
}

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

.pri {
  background-color: #fff;
  height: 150px;
  border-radius: 5px;
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 10px;
  font-size: 1.2rem;
}

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

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

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

.picker__header select {
    border-radius: 2px;
    padding: 5px;
    font-size: 18px;
    height: 40px;
}


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

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

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

.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: 100px;
  height: 40px;
  margin: 0 auto;
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.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 {
  line-height: 1.2;
  margin: 0 auto;
  width: 720px;
}

.form-flow::after {
  content: "";
  display: block;
  clear: both;
}

.form-flow li {
  width: 240px;
  text-align: center;
  float: left;
  font-weight: bold;
  vertical-align: middle;
  height: 50px;
  padding-top: 8px;
  position: relative;
}

.form-flow li:nth-child(1) {
  border-top: solid 3px #c2cad3;
  border-left: solid 3px #c2cad3;
  border-bottom: solid 3px #c2cad3;
  border-radius: 5px 0 0 5px;
}

.form-flow li:nth-child(1):before {
  position: absolute;
  margin: auto;
  content: "";
  width: 0;
  height: 50px;
  border-right: 3px solid #c2cad3;
  top: 0;
  bottom: 0;
  right: -3px;
  z-index: 10;
}

.form-flow li:nth-child(1):after {
  position: absolute;
  margin: auto;
  content: "";
  background: #fff;
  width: 15px;
  height: 15px;
  border-top: 3px solid #c2cad3;
  border-right: 3px solid #c2cad3;
  top: 0;
  bottom: 0;
  right: -11px;
  transform: rotate(45deg);
  z-index: 20;
}

.form-flow li:nth-child(2) {
  border-top: solid 3px #c2cad3;
  border-bottom: solid 3px #c2cad3;
}

.form-flow li:nth-child(2):before {
  position: absolute;
  margin: auto;
  content: "";
  width: 0;
  height: 50px;
  border-right: 3px solid #c2cad3;
  top: 0;
  bottom: 0;
  right: -3px;
  z-index: 10;
}

.form-flow li:nth-child(2):after {
  position: absolute;
  margin: auto;
  content: "";
  background: #fff;
  width: 15px;
  height: 15px;
  border-top: 3px solid #c2cad3;
  border-right: 3px solid #c2cad3;
  top: 0;
  bottom: 0;
  right: -11px;
  transform: rotate(45deg);
  z-index: 20;
}

.form-flow li:nth-child(3) {
  border-top: solid 3px #c2cad3;
  border-right: solid 3px #c2cad3;
  border-bottom: solid 3px #c2cad3;
  border-radius: 0 5px 5px 0;
}

.form-flow li.current {
  border-color: #001871;
  color: #001871;
}

.form-flow li.arrow-current:after {
  border-color: #001871;
}

.form-flow li.arrow-current:before {
  border-color: #001871;
}

.form-flow li span {
  font-size: 2.0rem;
  vertical-align: -1px;
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .form-flow {
    width: 60%;
    min-width: 300px;
  }
  .form-flow li {
    height: 70px;
    width: 33%;
    text-align: left;
  }
  .form-flow li:nth-child(1) {
    padding: 3px 10px 0 10px;
  }
  .form-flow li:nth-child(1):before {
    height: 70px;
  }
  .form-flow li:nth-child(1):after {
    width: 12px;
    height: 12px;
    right: -10px;
  }
  .form-flow li:nth-child(2) {
    padding: 3px 10px 0 20px;
  }
  .form-flow li:nth-child(2):before {
    height: 70px;
  }
  .form-flow li:nth-child(2):after {
    width: 12px;
    height: 12px;
    right: -10px;
  }
  .form-flow li:nth-child(3) {
    padding: 3px 10px 0 20px;
  }
  .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: #001871;
  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: #001871;
    font-size: 1.6rem;
  }
  .thanks-box .thanks-link {
    margin-top: 10px;
  }
}

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

.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: #001871!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: #dceffc!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 #ff445a;
}
.picker__frame .picker__button--today:before{
  border-top: 0.66em solid #ff445a;
}
.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: #777;
  color: #fff;
  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 #777;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
.picker__frame .picker__nav--next:before{
  border-left: 20px solid #777;
  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%;
}
.picker__frame .picker__button--close:before{
  top: 0;
  vertical-align: baseline;
}

@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;
  }
}

/*----チェックボックスやラジオボタンの色変更----*/
input[type="radio"] {
  accent-color: #001871;
}
input[type="checkbox"] {
  accent-color: #001871 !important;
}
