@charset "utf-8";
/* CSS Document */
/* @media に統一性がありません。ごめんなさい！*/

section.contact {
	padding-left: 1%;
	padding-right: 1%;
}

p.notice {
    border: #bf0000 8px solid;
    width: 85%;
    margin: 50px auto 65px;
    padding: 15px;
    font-size: 15px;
    text-decoration: underline;
}

.form form input, .form form button, .form form textarea, .form form select, .form form radio {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
/*	-moz-appearance: none;
	appearance: none;*/
}

.form {
	width:100%;
	/*border:1px solid #cccccc;*/
	border-radius:4px;
	background-color:#ffffff;
	margin-bottom:20px;
}


/* input type="submit" */
.form form input[type="submit"] {
	property: value;
}

/* input type */
.form form input[type="text"],
.form form input[type="tel"],
.form form input[type="email"],
.form form input[type="number"],
.form form input[type="radio"]  {
	property: value;
	border-bottom:1px solid #aaa;
	height:1.8em;
	background-color:#FFFFFF;
	box-sizing: border-box;
	padding:4px;
	margin-left:30px;
}

.form form input[type="radio"],
.form form input[type="checkbox"] {
	height:1.5em;
	width:1.5em;
	margin-bottom:0.5em;
	padding:4px;
	vertical-align:middle;
}

.form form label {
	height:2em;
	font-size:16px;
	padding:4px;
	margin-bottom:1em;
	vertical-align:middle;
	color:#000;
}

.form form textarea,
.form form telarea,
.form form emailarea,
.form form numberarea,
.form form radio {
	outline: none;
	border: 1px solid #aaa;
	-webkit-transition: all .3s;
	transition: all .3s;
	border-radius:4px;
	padding:3px;
	box-sizing: border-box;
	/*box-shadow: -999px 5px 0px #ccc;*/
	-webkit-transition: all 500ms;
	transition: all 500ms;
}

.form form input[type="text"]:focus,
.form form textarea:focus,
.form form input[type="tel"]:focus,
.form form telarea:focus,
.form form input[type="email"]:focus,
.form form emailarea:focus,
.form form input[type="number"]:focus,
.form form numberarea:focus,
.form form radio:focus {
	box-shadow: 0 0 7px #ae7f46;
	border: 1px solid #ae7f46;
	box-shadow: 0px 5px 0px #ae7f46;
    -webkit-transition: all 500ms;
    transition: all 500ms;
}

.form form input::-ms-clear {
	visibility: hidden;
}


/* セレクトボックス */
.form form .select-box01 select {
	padding: 10px;
	padding-right:25px;
	font-size:16px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #999;
	background: #eee;
	background: url(https://tosato.itembox.design/item/img/form_arrow.png) right 50% no-repeat, -webkit-linear-gradient(top, #fff 0%,#fff 100%);
	background: url(https://tosato.itembox.design/item/img/form_arrow.png) right 50% no-repeat, linear-gradient(to bottom, #fff 0%,#fff 100%);
	/*background-size: 20px, 100%;*/
	margin-left:30px;
}

.form form .select-box01 label {
	position: relative;
}
 
.form form .select-box01 label::after {
	display: block;
	content: " ";
	position: absolute;
	top: 50%;
	right: 20px;
	width: 20px;
	height: 20px;
	margin-top: -8px;
	background: url(https://tosato.itembox.design/item/img/form_arrow.png) 0 0 no-repeat;
	background-size: 20px;
	pointer-events: none;
}

/* 送信ボタン */
.form form input.form_btn {
    background-color: #000833;
	text-align: center;
    color: #fff;
    padding: 30px;
    width: 57%;
    margin: 10px 0 30px 0px;
    box-shadow: 2px 2px 1px #ccc;
    font-size: 16px;
    letter-spacing: 0.2em;
	cursor:pointer;
}

.form form input.form_btn:hover {
	background-color: #7b3c00;
}

.form form input.marlt {
	margin-left: 50px;
}

.form form input.form_text {
		box-sizing:border-box;
		color:#454545;
		padding: .25em 0 .25em .75em;
		border-left: 6px solid #ccc;
		margin-top:30px;
		margin-left:10px;
		font-size: 16px;
}

.form form p > .form_address {
		box-sizing:border-box;
		color:#454545;
		padding: .25em 0 .25em .75em;
		border-left: 6px solid #f00;
		margin-top:30px;
		margin-left:10px;
		font-size: 16px;
}

.form form p > .must {
		border-radius: 6px;
		background-color:#000833;
		color:#fff;
		padding:2px 8px;
		margin-left: 8px;
		line-height:1.5em;
}

/*input number の矢印消す*/
/*Chrome Safari*/
.form form input[type="number"]::-webkit-outer-spin-button,
.form form input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*FF IE*/
.form input[type="number"] {
    -moz-appearance:textfield;
}


/**** class ****/
.form .name {
	width:30%;
	font-size:16px;
}

.form .email { width:95%; }
.form .zip { width:20%; }
.form .address { 
	width:80%;
	font-size: 16px;
}
.form .tel { width: 25%; }
.form .comment { width:99%;}
.form .choices { 
	max-height: 2em;
	max-width: 50%;
}

p > input.email {
    margin-bottom: 10px;
}

@media(min-width: 769px){ 
	.form .email { width:50%; }
	.form .zip,.form .tel { width:15%; }
	.form .address { width:65%; }
	.form .comment { 
		width:90%; 
		margin-left:30px;
	}
	}

.form > form > section { margin-bottom: 25px; }

.form > form > section.sendbtn { text-align: center;}


/*SP*/
@media screen and (max-width: 767px) {
	.form form input, .form form button, .form form textarea, .form form select {
		-webkit-appearance: none;
	}

	.form form input, .form form button,  .form form select {
		height:2.5em;
	}

	.form form input[type="text"],
	.form form input[type="tel"],
	.form form input[type="email"],
	.form form input[type="number"],
	.form form input[type="radio"]{
		margin-left:5px;
		/*font-size: 12px;*/
	}

	.form form .select-box01 select	{ margin-left:5px; }

	.form form input.form_btn {
		width: 100%;
		height: 6em;
		letter-spacing:normal;
		margin: 20px auto;
		padding: 0px;
	}

	.form form .form_text{
		margin-left:0px;
		margin-bottom:15px;
	}
	.form form p > .must {
		padding:3px 8px;
		margin-left:8px;
	}
}
