@charset "utf-8";

/*------------------------------------------------------------
レイアウト
------------------------------------------------------------*/


select {
	/* -webkit-appearance: none;
	-moz-appearance: none;
	appearance: none; */
	border: solid 1px #ccc;
	outline: none;
	background: transparent;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"] {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	background-image: none;
	border-radius: 0px;
	color: inherit;
	font-family: inherit;
	/* font-size: 1.2rem; */
	padding: 8px 10px 8px 10px;
	width: 100%;
	height: 5.83vh;
}

input[type="submit"] {
	cursor: pointer;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

input[type="submit"]:hover {
	opacity: 0.7;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus {
	box-shadow: none;
	outline: none;
}

textarea {
	border-bottom: 1px solid #000;
	border-radius: 0px;
	width: 100%;
	padding: 15px;
	line-height: 180%;
	height: 40vh;
}

input::placeholder {
	color: #cacaca;
}

/* IE */
input:-ms-input-placeholder {
	color: #cacaca;
}

/* Edge */
input::-ms-input-placeholder {
	color: #cacaca;
}

.select_n {
	overflow: hidden;
	width: 100%;
	position: relative;
	border-bottom: 1px solid #000;
	border-radius: 0px;
	background: transparent;
	height: 5.83vh;
	display: inline-block;
}

.select_n select {
	width: 100%;
	height: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}

.select_n select::-ms-expand {
	display: none;
}

.select_n::before {
	position: absolute;
	top: 1.5em;
	right: 0.9em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #666666;
	pointer-events: none;
}

.select_n select {
	padding: 8px 38px 8px 8px;
	color: #666666;
}

.select_row {
	display: flex;
	flex-wrap: wrap;
}

.select_row li {
	width: 30%;
	margin-right: 1.5%;
}

.w_full {
	width: 310px !important;
}

.w_half {
	width: calc(50% - 5px) !important;
}

.w_third {
	width: calc(33% - 5px) !important;
}

.w_short {
	width: 45% !important;
}

.w_shorter {
	width: 100px !important;
}

.w_search {
	width: calc(100% - 37px) !important;
}

input[type="radio"]:checked,
input[type="checkbox"]:checked {
	background-color: #000 !important;
}

input[type="radio"],
input[type="checkbox"],
input[type="check"] {
	padding: 5px;
	line-height: 1.5;
	margin-right: 0.5em;
}

input[type="radio"] {
	border-radius: 9px;
	-webkit-appearance: none;
	width: 18px;
	height: 18px;
	vertical-align: middle;
	border: solid 2px #ccc;
	margin: -3px 5px 0 0;
}

input[type="checkbox"] {
	border-radius: 2px;
	-webkit-appearance: none;
	width: 18px;
	height: 18px;
	vertical-align: middle;
	border: solid 2px #ccc;
	margin: -2px 5px 0 0;
}

.form_list dt,
.form_list_underline dt {
	font-weight: 700;
	margin-bottom: 5px;
}

.form_list dd {
	margin-bottom: 15px;
}

.form_list_underline dd {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: #e3e3e3 1px solid;
}

input.disabled_input {
	background-color: transparent !important;
	pointer-events: none;
}