hr.dotted {
	border-top: 1px dotted #8c8b8b;
opacity: 0.7;
}
hr.solid {
	border-top: 1px solid #fff;
opacity: 0.4;
}
::placeholder {
  color: #fff;
opacity: 0.5;
}
/* 旧Edge対応 */
::-ms-input-placeholder {
  color: #fff;
}


/* ---------------- リセット -----------------*/



form,dl,dt,dd{
  margin: 0;
  padding: 0;
}

/* テキストボックス*/

.textbox {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 0.4em 0.8em;
  width: 70%;
  font-size: 16px;
}
.textbox2 {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 0.4em 0.8em;
  width: 2em;
  font-size: 16px;
  margin-right: 1em;
}
.textbox4 {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 0.4em 0.8em;
  width: 4em;
  font-size: 16px;
  margin-left: 1em;
  text-align: center;
}
.textbox10 {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 0.4em 0.8em;
  width: 10em;
  font-size: 16px;
  margin-left: 1em;
}

/* テキストエリア */
.textarea{
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  height: 100px;
  padding: 0.4em 0.8em;
  width: 100%;
  margin-top:10px;
}


/* ラジオボタン */

.radio {
  display: none;
}

.radio + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.2em;
  position: relative;
}

.radio + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  content: "";
  display: block;
  height: 16px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
}

.radio + span::after {
  -webkit-transform: translateY(-50%);
  background:#3B69FF;
  border: 1px solid transparent;
  border-radius: 50%;
  content: "";
  height: 5px;
  left: 4px;
  opacity: 0;
  padding: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
  width: 5px;
}

.radio:checked + span::after {
  opacity: 1;
}


/* チェックボックス */
.checkbox {
  display: none;
}

.checkbox + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 35px;
  position: relative;
}

.checkbox + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 2px;
  content: "";
  display: block;
  height: 1em;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
}

.checkbox + span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid #3B69FF;
  border-left: 3px solid #3B69FF;
  content: "";
  display: block;
  height: 0.4em;
  left: 0.2em;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: .7em;
}

.checkbox:checked + span::after {
  opacity: 1;
}

/* セレクトボックス */

.select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent url(arrow.png) no-repeat center right 8px/16px 16px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
  padding: 5px 20px;
  width: 100%;
}

.select::-ms-expand {
  display: none;
}

.select:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}



/* ボタン */

.submit {
  -webkit-appearance: none;
  background-color: rgba(0, 0, 0, 0.32);
  background-image: none;
  border: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  margin: 0 0 1em;
  padding: 0.6em 2em;
  text-decoration: none;
}

.submit:hover,
.submit:focus {
  outline: none;
}

.submit::-moz-foucus-inner {
  border: none;
  padding: 0;
}





/* フォーム________________ */



.form-wrapper{
  margin:0 auto;
  padding:20px;
  width: 87%;
}
.form{
  max-width:100%;
}

.form dl{
  width: 100%;
}
.form dl dt{
margin-top: 1.6em;
  clear: both;
	width: 260px;
  max-width:100%;
  display: inline-block;

  vertical-align:middle;
  position:relative;
text-align: right;
}

.form dl dd {
margin-top: 1.6em;
	width: calc( 100% -  270px);
  display: inline-block;
text-align: left;
  vertical-align:middle;
}
.required{
  background-color: #FF4646;
  border-radius:3px;
  color:#fff;
  padding:2px 11px;
  display: inline-block;
  position:absolute;
  top: 0;
  font-size: 0.7em;
  margin-left: 4px;
}
.message{

  margin-top:40px;
}

.privacy{
  margin-top:30px
}



.submit{
  background-color: #333;
  border-radius:10px;
  box-shadow:rgba(0,0,0,.2) 0 3px 5px;
  padding:14px 50px;
  margin-top:30px;
}




/* メディアクエリ */


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

  .form-wrapper{
  width: 90%;
  max-width:100%;
  margin:0 auto;
}


}

@media screen and (max-width: 750px) {
.textbox , .textarea{
  padding: 0.4em 0.8em;
  width: 80%;
}
.form-wrapper{
  width: 100%;
    max-width:100%;
    padding: 0;
}
.form{
  padding:0;
}
.form dl{
  width: 100%;
}
.form dl dt{
  margin-top:40px;
  display: block;
	width: 100%;
  vertical-align:middle;
  font-weight: bold;
  background-color: #93ce3e;
  padding: 1.5px;
text-align: center;

}

 .form dl dd {
  margin-top:20px;
	width: 100%;
  display: block;
  vertical-align:middle;
text-align: center;
}
  .required{
  background-color: #FF4646;
  border-radius:3px;
  color:#fff;
  padding:2px 11px;
  display: inline-block;
  font-size: 0.7em;
}
.message{

  margin-top:40px;
}

.privacy{
  margin-top:30px
}


}

input{ font-size:16px; }

.font-small{
  font-size: 0.7em;
}

.clear{
clear: both;
height: 1px;
}
.clear30{
clear: both;
height: 30px;
}
