@charset "utf-8";
/* CSS Document */
/* form.css */

.contactform {
  box-sizing: border-box;
  margin: calc( 40 / 750 * 100%) auto;
  width: calc(670 / 750 * 100%);
  
}
.contactform__item {
  margin: 0 auto 1em;
  display: block;
  width: 100%;
  position: relative;
}
.accept__checkbox--lock:after {
content: "";
  display: block;
  width: 100%;
  height: 100%;
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
}

.contactform__label {
  font-size: calc( 26 / 28 * 1rem);
  font-weight: bold;
  line-height: 1.5em;
}
.contactform__inputbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.contactform__inputitem {
  width: 100%;
  display: block;
  margin: .3em auto 0;
}
.contactform__inputitem--half {
  width: calc(50% - 0.5em);
  display: block;
}
.contactform__inputitem input {
  box-sizing: border-box;
  font-family: 'Noto Sans JP','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ','Mayryo','ＭＳ Ｐゴシック','MS PGothic',sans-serif;
  margin: 0;
  padding: 1em;
  background: var(--c-white);
  border: none;
  border-radius: 0;
  outline: none;
  width: 100%;
  font-size: calc(24 / 28 * 1rem);
  border-radius:calc(30 / 28 * 1rem); 
}
.contactform__inputitem textarea {
  box-sizing: border-box;
  font-family: 'Noto Sans JP','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ','Mayryo','ＭＳ Ｐゴシック','MS PGothic',sans-serif;
  margin: 0;
  padding: 1em;
  background: var(--c-white);
  border: none;
  border-radius: 0;
  outline: none;
  width: 100%;
  font-size: calc(24 / 28 * 1rem);
  border-radius:calc(30 / 28 * 1rem); 
}
.contactform__inputitem select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  box-sizing: border-box;
  font-family: 'Noto Sans JP','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ','Mayryo','ＭＳ Ｐゴシック','MS PGothic',sans-serif;
  color: var(--c-black);
  margin: 0;
  padding: 1em;
  min-height: 2em;
  border: none;
  border-radius: 0;
  outline: none;
  width: 100%;
  font-size: calc(24 / 28 * 1rem);
  border-radius:calc(30 / 28 * 1rem); 
  display: block;
  position: relative;
  background: var(--c-white) url(../img/ar_bk_vl.png) no-repeat 95% 50%;
  -webkit-background-size: .6em auto;
  background-size: .6em auto ;
  cursor: pointer;
}
.contactform__inputerror span {
  display: inline-block;
  padding: 0 .3em;
  background-color: #a00;
  font-weight: bold;
  color: var(--c-white);
  font-size: calc(24 / 28 * 1rem);
}
.ppcheck {
  margin: 2em auto;
  line-height: 2em;
}
.ppcheck input {
width: 2em;
height: 2em;
vertical-align: middle;
margin-bottom: .5em;
}
.button__box--form .button--black {
  width: 70%;
}
#gformSubmit {
  cursor: pointer;
}
#contactform__text {
  box-sizing: border-box;
  padding: 0 calc(40 / 750 * 100%);
}
#contactform__btn--back {
  margin-top: 2em;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: .3em;
}
.accept__checkbox--lock input ,
.accept__checkbox--lock select ,
.accept__checkbox--lock textarea {
  background: none;
}