@charset "utf-8";
/* CSS Document */

/*---- reset ----*/

input[type="text"],
input[type="number"],
input[type="date"] ,
input[type="tel"],
input[type="time"],
input[type="reset"],
input[type="submit"],
select,
textarea{
  -webkit-appearance: none;
  appearance: none;
}
button[type="button"],
input[type="reset"],
input[type="submit"]{
	border: none;
	background: transparent;
    cursor:pointer;
}

/*基本設定*/
input,
select,
textarea{
  border: 1px solid var(--gray2);
  border-radius: 0px;
}
select {
    padding: 1rem 3.5rem 1rem 1rem;
    width: 100%;
    color: var(--gray);
    background: #fff url("../img/arrow01.svg") no-repeat right 1rem center;
    background-size: 20px;
    font-family: inherit;
    font-size: 1rem;
}

input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="file"],
input[type="date"] ,
input[type="time"] {
	font-size: 1rem;
	width: 100%;
    padding: 1rem;
    background: transparent;
}

input[type="date"],
input[type="time"] {
    font-family: inherit;
    font-size: 0.8rem;
    padding:1rem;
    color: var(--main);
}

@media screen and (max-width: 959px){
input[type="date"],
input[type="time"] {
    text-align: left;
}
}
    
input[type="radio"] {
    margin-right: 0.5rem;
}

textarea{
    width: 100%;
    padding: 0.5rem;
    font-family: inherit;
	font-size: 1rem;
}



input[readonly] {
	background-color: var(--gray3);
	border: 1px solid var(--gray2);
	cursor: not-allowed;
	color: var(--main);
}

#contents .form_err {
	color: var(--red);
	font-weight: bold;
	font-size: 0.8rem;
    margin-bottom: 0;
}



.checkbox{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.p_input::placeholder {
	color: var(--gray);
	opacity: 1; 
}

.form_list dt{
	color: var(--green);
}
.form_list dd{
	margin-bottom: 1rem;
}

/*送信ボタン*/
.submit_btn{
	display: flex;
	justify-content: center;
	gap:1rem;
	margin-bottom: 3rem;
}
input[type="button"],
button[type="button"],
input[type="reset"],
input[type="submit"]{
    padding: 1rem 3rem;
    border-radius: 30px;
}
input[type="button"],
button[type="button"],
input[type="reset"]{background: var(--gray2);color: var(--main);}
input[type="submit"]{background: var(--red);color: var(--white);}



@media screen and (max-width: 959px){

	
}

.note{
	margin-top: 1.5rem;
}
