@charset "utf-8";

#form {
	background: linear-gradient(90deg, rgba(240,251,252,1) 0%, rgba(227,237,255,1) 100%);
	padding: 50px 0 100px 0;
	margin: 100px 0 -100px 0;
}
#form form {
	max-width: 800px;
	width: 90%;
	margin: 50px auto;
}
#form .flex div {
	width: 390px;
}
#form span {
	display: block;
	padding: 20px 0 5px 0;
}
input[type=text],
input[type=date],
input[type=tel],
input[type=email],
textarea,
select {
	width: 100%;
	padding: 10px 20px;
	font-size: 1.3rem;
	background: none;
	border: 1px solid;
	height: 50px;
}

textarea{
	height: 200px;
	resize: vertical;
	
}
.kakunin_p{
	font-size: 20px;
}
.radio label {
	padding: 10px 0;
	width: 33.33%;
}
#form .button {
	margin-top: 50px;
	transition: 0.2s ease-in-out;
	font-size: 1.2rem;
}
#form .button:hover {
	background-color:  rgba(0,169,255,1);
}


input[type=date]{   
    position: relative;
}
input[type=date]::-webkit-calendar-picker-indicator {
    position: absolute;
    width: 100%;
    height: 100%;
opacity: 0;
}

/*----エラーリスト-----*/
.error_list{
	width: 550px;
	margin: 0 auto 30px auto;
	padding: 10px 30px;
	color: #ff2e5a;
	font-size: 20px;
	text-align: left;
	border: 1px solid #ff2e5a;
	border-radius: 5px;
}
.error_list li{
	margin-left: 20px;
}

/*-------完了画面ここから-------*/
.arigatou .title{
	font-size: 40px;
	text-align: center;
	font-family: "font_EB";
}
.arigatou p{
	font-size: 25px;
	text-align: center;
	font-family: "font_B";
}
#bikou_p span{
	font-size: 20px;
}
/*--------ボタンデザイン-------*/
.kaku_flex{	
	display: flex;
	width: 600px;
	justify-content: space-between;
	margin: auto;
}

input[name=kakunin],input[name=modoru],input[name=sousin]{
	cursor: pointer;
	display: block;
	margin: 30px auto;
	width: 45%;
}
input[name=kakunin]:hover,input[name=modoru]:hover,
input[name=sousin]:hover{
	background:#fff;
}
input[name=sousin]{
	background: rgba(0,191,119,1);
	border:rgba(0,191,119,1) solid 1px;
	color: #fff;
}
input[name=modoru]:hover{
	border:rgba(0,169,255,1) solid 1px;
	background-color: rgba(0,169,255,1);
	color: #fff;
}
.kakunin_p{
	font-size: 23px;
}
.kakunin_p span{
	font-size: 19px;
}
/*------レスポンシブ-------*/
@media screen and (max-width: 1100px){
  /*--ここにスマホに適したCSSを記述します*/
	#form{
	font-size: 1.2rem;
}
	input[type=checkbox],
	input[type=radio]{
  -ms-transform: scale(1.5, 1.5);
  -webkit-transform: scale(1.5, 1.5);
	transform: scale(1.5, 1.5);
}

	#form .flex div {
	width: 100%;
}	
}