@charset "UTF-8";
#mailform dt{
	margin-top: 10px;
}
#mailform .list {
  padding: 10px 2.5%;
  border: solid 4px #a88ec5;
}
.placeholder,
.required,
.optional{
	margin-left: 10px;
}
.required,
.optional{
	color: #fff;
	display: inline-block;
	padding: 2px 5px 4px;
	border-radius: 5px;
	line-height: 1.0;
}
.required{
	background: #00258f;
	
}
.optional{
	background: #a0a0a0;
}
@media screen and (max-width:740px){
	.required{
		font-size: 12px;
	}
}
/*-----------------------------------
input
-----------------------------------*/
#mailform input[type="text"], 
#mailform input[type="email"], 
#mailform input[type="tel"], 
#mailform input[type="address"],
#mailform textarea {
    font-size: 2.1rem;
    background: #f8f8f8;
	color: #555;
	margin-top: 8px;
	padding: 6px 12px;
    border: solid 1px #b5b5b5;
    border-radius: 10px;
	box-sizing: border-box;
}
#mailform form input[type="text"], 
#mailform form input[type="email"], 
#mailform form input[type="tel"] {
	width: 80%;
    height: 50px;
}
#mailform textarea {
    width: 100%;
    height: 200px;
    padding: 6px 12px;
}
#mailform input:focus,
#mailform textarea:focus{
	border-color: none;
	box-shadow: none;
	outline:none;
}
::-webkit-input-placeholder {color:#ccc;}
:-ms-input-placeholder {color:#ccc;}
::placeholder{color:#ccc}
@media screen and (max-width:740px){
	#mailform input[type="text"], 
	#mailform input[type="email"], 
	#mailform input[type="tel"], 
	#mailform input[type="address"],
	#mailform textarea {
		font-size: 1.6rem;
	}
}

/*-----------------------------------
checkbox
-----------------------------------*/

.check {
	width: auto;
    display: inline-block;
    padding-left: 50px;
    position: relative;
    box-sizing: border-box;
    cursor: pointer;
}
.check::before {
	content: '';
	width: 25px;
	height: 25px;
    display: block;
    background: #eaeaea;
    border: 2px solid #0f0f0f;
	position: absolute;
    top: 0;
	left: 5px;
}
.check::after {
	content: '';
	width: 9px;
	height: 20px;
	display: block;
    margin-top: -16px;
    border-right: 6px solid #00258f;
    border-bottom: 6px solid #00258f;
    position: absolute;
    top: 50%;
	left: 15px;
    transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
    transition: transform .2s ease-in-out, opacity .2s ease-in-out;
    opacity: 0;
}
input[type=checkbox] {
    display: none;
}
input[type=checkbox]:checked + .check::after {
    opacity: 1;
    transform: rotate(45deg) scale3d(1,1,1);
}
@media screen and (max-width:740px){
	.check_wrap li {
	  margin-top: 15px;
	}
	.check {
	  padding-left: 40px;
	}
	.check::before {
	  width: 20px;
	  height: 20px;
	}
	.check::after {
		width: 5px;
		height: 15px;
   
	}
}
/*-----------------------------------
send_btn
----------------------------------*/
.send_btn {
	padding: 0;
}
.send_btn input,
.reset_btn input{
	width: 100%;
	height: 100%;
	font-weight: 700;
	letter-spacing: 0.2rem;
	font-family: 'Noto Sans JP', sans-serif;
	color: #fff !important;
	display: inline-block !important;
	background: none;
	border: none;
	margin: 0 auto;
	cursor: pointer;
	text-align: center;
	padding: 25px 2.5%;
}
.send_btn input{
	font-size: 2.1rem;
}

@media screen and (max-width:740px){
	.send_btn input{
		font-size: 1.8rem;
	}
	.reset_btn input{
		font-size: 1.6rem;
	}
}
/*-----------------------------------
alert/error
-----------------------------------*/
.alert {
    color: #C60000;
    border: 1px solid #C60000;
    background-color: #F7E6E6;
    margin: 10px 0;
    padding: 15px 15px;
}
.error {
    color: #C60000;
}
/*-----------------------------------
complete
-----------------------------------*/
#complete .img{
	width: 30%;
	max-width: 100px;
	margin: 0 auto;
}
