

/***********
entryHeading
************/

.entryHeading {
  padding-bottom: 5em;
}
.entryHeading-title {
  font-size: 170%;
  font-weight: 600;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  padding-bottom: 1.5em;
}
.entryHeading-text {
  font-size: 116%;
  line-height: 2;
}

@media screen and (max-width:834px) {


  .entryHeading {
    padding-bottom: 3em;
  }
  .entryHeading-title {
    font-size: 139%;
  }
  .entryHeading-text {
      font-size: 100%;
      line-height: 1.8;
  }

}


/***********
entry
************/

.entry{
}

.entry-table,
.entry-table thead,
.entry-table tbody,
.entry-table tfoot,
.entry-table tr,
.entry-table th,
.entry-table td {
  display: block;
  width: 100%;
}
.entry-table tr {
  padding-bottom: 3em;
}

.entry-table th {
  text-align: left;
  vertical-align: top;
  font-size: 1.24rem;
  padding-bottom: 10px;
  position: relative;
}

.entry-table td {
  font-size: 1.16rem;
  text-align: left;
}

.entry-submit {
  text-align: center;
  padding-top: 4em;
  padding-bottom: 0;
}


.entry-flex {
  display: flex;
}
.entry-flex-item:not(:last-child) {
  padding-right: 1em;
}

.entry-tips {
  font-size: 85%;
  color: #888;
  padding-top: 0.5em;
}

.entry-submit-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  display: block;
  width: 260px;
  background-color: #000;
  color: #fff;
  padding: 1.2em 1em;
  border-radius: 100em;
  text-decoration: none;
  text-align: center;
  font-size: 124%;
  font-weight: 600;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  position: relative;
  cursor: pointer;
}
.entry-submit-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
body.is-pc .entry-submit-btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}



.entry-address {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -3em;
}
.entry-address-box {
  margin-right: 3em;
  margin-bottom: 3em;
  width: 100%;
}
.entry-address-title {
  text-align: left;
  vertical-align: top;
  font-size: 1.24rem;
  font-weight: 600;
  padding-bottom: 10px;
  position: relative;
}
.entry-address-box01 {
  max-width: 25em;
}
.entry-address-box02 {
  max-width: 25em;
}
.entry-address-box03 {
  max-width: 40em;
}
.entry-address-box04 {
  max-width: 20em;
}
.entry-address-box05 {
  max-width: 25em;
}




.entry-submit-btn-back{
  background-color: #eee;
  color: #aaa;
}
.entry-submit-btn-back:hover{
  background-color: #ddd;
  color: #888;
}
.entry-submit-btn-back::after{
  right: auto;
  left: 15px;
  border-color: #aaa;
  transform: rotate(225deg);
}

@media screen and (max-width:834px) {

  .entry-table tr {
    padding-bottom: 2em;
  }

  .entry-table th {
    font-size: 1.08rem;
    padding-bottom: 4px;
  }

  .entry-table td {
    font-size: 1rem;
  }



  .entry-address {
    display: block;
    margin-bottom: -2em;
  }
  .entry-address-box {
    margin-right: 0;
    margin-bottom: 2em;
    width: 100%;
  }
  .entry-address-title {
    font-size: 1rem;
      padding-bottom: 4px;
  }
  .entry-address-box01 ,
  .entry-address-box02 ,
  .entry-address-box03 ,
  .entry-address-box04 ,
  .entry-address-box05 {
    max-width: initial;
  }





  .entry-submit {
    padding-top: 2em;
  }
  .entry-flex {
    display: flex;
  }
  .entry-flex-item:not(:last-child) {
    padding-right: 0.5em;
  }

  .entry-submit-btn {
    margin: 0 auto;
  }

}


/***********
input
************/

.input-icon {
  display: inline-block;
  width: 4em;
  padding: 5px 0px;
  margin-left: 30px;
  transform: translateY(-0.2em);
  font-size: 11px;
  border-radius: 10vw;
  line-height: 1;
  text-align: center;
}

.input-icon.input-icon-required {
  background-color: #F8A912;
  color: #fff;
}

.input-icon.input-icon-option {
  background-color: #ddd;
}
.is-completed .input-icon {
  background-color: #00e852;
  color: #fff;
}


.input-text,
.input-textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  padding: 0 20px;
  min-height: 50px;
  border: none;
  border-radius: 5px;
  box-sizing: border-box;
  border: 1px solid #aaa;
  background-color: #fff;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
.input-text{
  line-height: 50px;
}
.input-textarea{
  padding: 5px 10px;
  line-height: 1.3;
  height: 8em;
}

.input-text:focus,
.input-textarea:focus {
  box-shadow: 0 0 6px #09f;
}

.input-file{
  padding: 15px 20px;
  border: 1px solid #aaa;
}

.input-select {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../../img/select_arrow.png) no-repeat right center;
  font-size: 16px;
  padding: 0 25px 0 15px;
  min-height: 50px;
  line-height: 50px;
  border-radius: 5px;
  box-sizing: border-box;
  border: 1px solid #aaa;
  background-color: #fff;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

.input-full {
  width: 100%;
  box-sizing: border-box;
}

.input-half {
  width: 100%;
  max-width: 30em;
  box-sizing: border-box;
}

.input-xsmall {
  width: 100px;
  box-sizing: border-box;
}




.input-choice {
}
.input-choice .wpcf7-form-control-wrap {
  display: block;
}
.input-choice .wpcf7-form-control {
  display: block;
}
.input-choice label{
  display: block;
  width: 100%;
  border: 1px solid #aaa;
  font-size: 1.24rem;
  margin-bottom: 0.5em;
  margin-right: 0.5em;
  padding: 15px 15px;
  border-radius: 5px;
}
.input-choice .wpcf7-radio{
}
.input-choice .wpcf7-list-item {
  width: 100%;
  margin-left: 0;
  margin-right: 1em;
}
.input-choice.is-half .wpcf7-list-item  {
  max-width: 40em;
}
.input-choice.is-flex .wpcf7-radio,
.input-choice.is-flex .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
}
.input-choice.is-flex .wpcf7-radio .wpcf7-list-item,
.input-choice.is-flex .wpcf7-checkbox .wpcf7-list-item {
  display: inline-block;
  max-width: 14em;
}

.input-choice input[type="radio"],
.input-choice input[type="checkbox"] {
  margin-right: 1em;
}




.input-heading{
  display: block;
  background-color: #ccc;
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: absolute;
  margin: 2px 0 0 2px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #888;
  z-index: 9;
}
.input-zip{
  width: 200px;
  padding-left: 65px;
}

.input-zip-btn{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  height: 42px;
  line-height: 40px;
  margin: 0;
  padding: 0 20px;
  border: 1px solid #ccc;
  background-color: #eee;
  font-size: 16px;
  font-weight: bold;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #000;
  text-decoration: none;
  vertical-align: middle;
  margin-left: 10px;
  cursor: pointer;
}
.input-zip-btn:hover{
  background-color: #ddd;
}



@media screen and (max-width:834px) {

  .input-icon {
    padding: 3px 0px;
    margin-left: 10px;
  }

  .input-text,
  .input-textarea {
    font-size: 16px;
    min-height: 44px;
  }
  .input-text{
    line-height: 1.5;
  }
  .input-textarea{
  }

  .input-select {
    min-height: 44px;
    line-height: 44px;
    padding-left: 5px;
    padding-right: 10px;
  }

  .input-full {
    width: 100%;
  }

  .input-half {
    width: 100%;
  }

  .input-xsmall {
    width: 4em;
  }

  .input-small {
  }





  .input-choice label{
    font-size: 1rem;
    padding: 10px 10px;
  }


  .input-heading{
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
  }
  .input-zip{
    width: 180px;
    padding-left: 50px;
  }

  .input-zip-btn{
    padding: 0 15px;
  }

}

/***********
entryHeading
************/


.wpcf7-response-output {
  border-color: #f8a912 !important;
  padding: 2em 4em !important;
  margin-top: 0 !important;
  font-size: 139% !important;
  font-weight: bold !important;
  line-height: 2 !important;
  word-break: break-all !important;
}


@media screen and (max-width:834px) {

  .wpcf7-response-output {
    padding: 2em 5% !important;
    font-size: 116% !important;
  }

}



