@charset "utf-8";
main{
	padding-top: 150px;
}
.common_inner input,
.common_inner textarea,
.common_inner label {
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
}
.common_inner .title{
	margin-bottom: 100px;
}
:root {

}
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
line-height: 3rem;
}

textarea {
  resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

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

label {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 60px 0 0;
}
.form_required {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 30px;
  background-color: #2764EF;
  color: #fff;
  margin: 0 10px 0 0;
}
input:not([type="submit"]),textarea {
  border-bottom: 1px solid #5E5E5E;
  width: 100%;
  padding: 10px 0;
  margin: 10px 0 0;
}
input#fname,input#lname {
  width: 46%;
}
input#fname {
  margin: 0 7% 0 0;
}
input[type="submit"] {
  display: flex;
  justify-content: center;
  width: 300px;
  height: 60px;
  margin: 80px auto;
  background-color: #2764EF;
  color: #fff;
  transition: .3s;
	border-radius: 30px;
}
input[type="submit"]:hover {
  border: 2px solid  #2764EF;
  background-color: #fff;
  color: #2764EF;
	box-shadow: 0px 10px 20px 0px rgb(43 10 23 / 23%);
}
.common_inner{
	max-width: 960px;
	margin: auto;
}

.alert {
  height: 20px;
  color: #ff0000;
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
}

/*-----ipad　縦------*/
@media screen and (max-width: 821px) {
	.sp_only {
		display: block;
	}
	.pc_only {
		display: none;
	}
	.common_inner {
		max-width: 90%;
	}
	input#fname, input#lname {
		width: 45%;
	}
	input#fname {
		margin: 0 8% 0 0;
	}
}
