@charset "utf-8";
/* -------------------------------------------------------------------------- */

/*	19. event form
/* -------------------------------------------------------------------------- */
.formItemWrap .formTable input[type="text"],
.formItemWrap .formTable input[type="email"],
.formItemWrap .formTable input[type="date"],
.formItemWrap .formTable input[type="number"],
.formItemWrap .formTable input[type="tel"]{
  font-size: 1rem;
  padding: 0.5em 1em;
}
.formItemWrap .formTable textarea {
  font-size: 1rem;
  padding:1em;
}
.formItemWrap .formTable select {
  -webkit-appearance: none;
  appearance: none;
  font-size: 1rem;
  padding: 0.5em 1.8em 0.5em 0.5em;
  background: url("../images/common/arrow_blk_btm.svg") #fff no-repeat right 0.6em top 50% / 0.5em auto;
  border: #dcd7ca solid 1px;
  color: #000;
}
.formItemWrap .errMsg {
  color: #d93b27;
  font-size: .875rem;
  font-weight: 700;
  margin: 0.5em 0 0 0;
}
.formItemWrap .inqIcon {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  padding: 0.2em;
  background: #d93b27;
  border-radius: 3px;
  line-height: 1;
  margin-left: 0.5em;
  color: #fff;
}
.formItemWrap .formTable {
  border-color: #86d19c;
}
.formItemWrap .formTable label {
  font-size: 1rem;
  margin: 0;
}
.formItemWrap .formTable th {
  background: #e9feec;
  border-color: #86d19c;
}
.formItemWrap .formTable td {
  border-color: #86d19c;
}
.formItemWrap .formTable .name_tr td > div label{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.formItemWrap .formTable .name_tr td > div label span {
  display: inline-block;
  width: 3em;
}
.formItemWrap .formTable .tel_tr td > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.formItemWrap .formTable .select_tr td > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1em;
}
.formItemWrap .formTable .address_tr td > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 1em;
}
.formItemWrap .formTable  [name="zip1"], table.formTable [name="zip2"] {
  width: 5em;
}
.formItemWrap .formTable [name="address2"] {
  width: 100%;
}
.formItemWrap .btnArea {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1em;
  margin-top: 20px;
  padding-bottom: 1em;
}
.formItemWrap .btnArea button,
.formItemWrap .btnArea a{
  font-family: inherit;
  display: block;
  padding: 1em 2em;
  font-size: 1rem;
  color: #027659;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(240, 238, 238, 1) 50%, rgba(255, 255, 255, 1) 51%);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
  border: rgba(0, 0, 0, 0.1) solid 1px;
  margin-top: 5px;
}
.formItemWrap .btnArea button.moreBtn {
  color: #fff;
  background: linear-gradient(0deg, #027659 0%, #015347 50%, #027659 51%);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
  min-width: 12em;
}
.formItemWrap .deadlineText{
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  margin: 2em 0 1em 0;
}
.formItemWrap .compList{
  margin: 0;
}
.formItemWrap .compList li:first-of-type {
  margin-top: 0;
}
.formItemWrap .noSendBox{
  background: #e9feec;
  padding: 1em 1.2em;
  margin-top: 2em;
}
.formItemWrap .noSendBox .compOthers{
  margin: 0;
}
@media only screen and (min-width:481px){ /* for PC + Tab */
  .formItemWrap .formTable th {
    width: 13em;
    padding: 1em;
  }
  .formItemWrap .formTable td {
    padding: 1em 1.5em;
  }
  .formItemWrap .formTable .name_tr td > div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
  }
  .formItemWrap .formTable .name_tr input[type="text"] {
    width: 12em;
  }
  .formItemWrap .formTable .tel_tr td > div {
    gap: 0.5em;
  }
  .formItemWrap .formTable [name="tel1"], .formItemWrap .formTable [name="tel2"], .formItemWrap .formTable [name="tel3"]{
    width: 7em;
  }
  .formItemWrap .formTable [name="email"] {
    width: 25em;
  }
  .formItemWrap .btnArea button {
     transition: all 0.3s ease;
  }
  .formItemWrap .btnArea button:hover {
    opacity: 0.7;
  }
}

@media only screen and (max-width:480px){ /* for SP */
  .formItemWrap .formTable th {
    display: block;
    width: 100%;
  }
  .formItemWrap .formTable th br{
    display: none;
  }
  .formItemWrap .formTable td {
    display: block;
    width: 100%;
    padding: 1em 1em 1.5em 1em;
  }
  .formItemWrap .formTable .name_tr input[type="text"] {
    flex: 1;
  }
  .formItemWrap .formTable .name_tr td > div label + label {
    margin-top: 1em;
  }
  .formItemWrap .formTable .tel_tr td > div {
      column-gap: 2%;
  }
  .formItemWrap .formTable [name="tel1"], .formItemWrap .formTable [name="tel2"], .formItemWrap .formTable [name="tel3"]{
    width: 28%;
  }
  .formItemWrap .formTable [name="email"] {
    width: 100%;
  }
  .formItemWrap .btnArea {
    margin-bottom: 5vw;
    flex-flow: column;
    gap: 0.8em;
  }
  .formItemWrap .btnArea button.moreBtn {
    order: 1;
    width: 80%;
  }
  .formItemWrap .btnArea button.backBtn {
    order: 2;
    width: 60%;
  }
}

