/* テキストボックス */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"]{
	width:100%;
	height:64px;
	padding:0 1em;
	font-size:18px;
	background-color:#fff;
	border:1px solid #222;
  border-radius:0.7em;
	outline:none;
}

@media screen and (max-width:768px){
  input[type="text"],
  input[type="email"],
  input[type="url"],
  input[type="tel"]{
    height:54px;
    font-size:16px;
  }
}

input[type="text"].short,
input[type="email"].short,
input[type="url"].short,
input[type="tel"].sshort{
	width:40%;
}

@media screen and (max-width:768px){
  input[type="text"].short,
  input[type="email"].short,
  input[type="url"].short,
  input[type="tel"].sshort{
    width:70%;
  }
}


/* セレクトボックス */
select{
	width:100%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	height:50px;
	padding: 0 1em;
	border-radius:0px;
	font-size:18px;
	background:#fff url(select_arrow.svg)no-repeat right 1em center;
	background-size:16px auto;
	border:1px solid #C6C6C6;
	outline:none;
}
select::-ms-expand {
    display: none;
}
select option,
select optgroup{
	background:#fff;
}
@media screen and (max-width:768px){
	select{
		height:45px;
    font-size:16px;
	}
}


/* ラジオボタン */
input[type="radio"] {
  width:1em;
	opacity:0;
}
input[type="radio"]  + span{
	padding-left:30px;
	font-size:18px;
  font-weight:bold;
	display:inline-block;
	vertical-align:middle;
	position: relative;
}
input[type="radio"]  + span:before{
	content: "";
	display:inline-block;
	width:22px;
	height: 22px;
	margin-right:10px;
  margin-left:-15px;
	background-color: #FFFFFF;
	border: 1px solid #222;
	border-radius:  50%;
	-webkit-box-shadow: inset 3px 3px 8px rgba(0,0,0,0.1);
	box-shadow: inset 3px 3px 8px rgba(0,0,0,0.1);
	cursor: pointer;
	outline : none;
	position:absolute;
	top:50%;
	left:0;
	transform:translateY(-50%);
}
input[type="radio"]:checked + span:after {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	background: #000;
	position: absolute;
	top: 50%;
	left: -9px;
	transform:translateY(-50%);
	border-radius: 50%;
}

@media screen and (max-width:768px){
  input[type="radio"]  + span{
    font-size:16px;
  }
}

/* チェックボックス */
input[type="checkbox"] {
  width:1em;
	opacity:0;
}
input[type="checkbox"] + span{
	display:inline-block;
	vertical-align:middle;
	position: relative;
  margin-left:-15px;
	font-size:18px;
	font-weight:bold;
}
input[type="checkbox"] + span:before{
	content:'';
	display:inline-block;
	width: 22px;
	height: 22px;
	margin-right:10px;
	background-color: #FFFFFF;
	border: 1px solid #222;
	-webkit-box-shadow: inset 3px 3px 8px rgba(0,0,0,0.1);
	box-shadow: inset 3px 3px 8px rgba(0,0,0,0.1);
	vertical-align: middle;
	border-radius:0px;
	cursor: pointer;
	outline : none;
}
input[type="checkbox"]:checked + span:after {
	content:'';
	display: block;
	width: 16px;
	height: 10px;
	border-left:3px solid #f00;
	border-bottom:3px solid #f00;
	transform:rotate(-45deg);
	position: absolute;
	top: calc(50% - 8px);
	left: 3px;
	content: '' !impotant;
}

@media screen and (max-width:768px){
  input[type="checkbox"] + span{
    font-size:16px;
  }
}


/* テキストエリア */
textarea{
	width:100%;
	min-height: 217px;
	padding:10px 1em;
	background-color:#fff;
	border:1px solid #222;
  border-radius:0.8em;
	line-height:1.5;
	font-size:18px;
	vertical-align:bottom;
	outline:none;
}
@media screen and (max-width:768px){
	textarea{
		min-height: 150px;
		font-size:16px;
	}
}

/* ボタン */
#contact button,
#contact input.wpcf7-submit.has-spinner{/*20240520追加*/
	display:inline-block;
	width:458px !important;
	line-height:1.8;
	margin:25px auto 0;
	display:block;
	font-size:37px;
	font-weight:900;
	color:#fff !important;
  	text-shadow:0 3px 0 rgba(0,0,0,0.1);
	border-radius:0.5em;
	background:#ff6c00 url(/sale/wp-content/themes/item-lp/images/lp/btn_arrow.png)no-repeat right 0.5em center;
	background-size:0.7em auto;
	box-shadow:0 4px 0 #b54d00;
	border:none;
	cursor:pointer;
}

@media screen and (max-width:768px){
#contact button{
    width:94% !important;
    margin:9% auto 0;
    font-size:24px;
  }
  #contact button,
#contact input.wpcf7-submit.has-spinner{/*20240520追加*/
	width:90%!important;
}
}


/* プレイスホルダー */
input::placeholder,
textarea::placeholder{
  font-family: "Noto Sans JP", sans-serif;
  color:#999999;
}
input:-ms-input-placeholder,
textarea::placeholder{
  font-family: "Noto Sans JP", sans-serif;
  color:#999999;
}
input::-ms-input-placeholder,
textarea::placeholder{
  font-family: "Noto Sans JP", sans-serif;
  color:#999999;
}

/*20240530追加*/
td.short p {
	width: 40%;
}
#autozip {
	display: none!important;
}
@media screen and (max-width:768px){
	td.short p {
		width: 70%;
	}
}