@charset "utf-8";
/*------------------------------------------------------------
レイアウト
------------------------------------------------------------*/
input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
  }
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	outline: none;
	background: transparent;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"]
{
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #FFFFFF;
	background-image: none;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 5px;
	color: inherit;
	font-family: inherit;
	font-size: 1.3rem;
	padding: 8px 10px;
	width: 100%;
	height: 42px;
}
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
{
	border: 1px solid rgba(0, 110, 255, 0.753);
	box-shadow: none;
	outline: none;
}
textarea {
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 5px;
	width: 100%;
	padding: 15px;
	line-height: 180%;
	max-height: 400px;
}
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: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 5px;
	background: #ffffff;
	height: 42px;
	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: 21%;
    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: 185px !important;
}
.w_shorter {
	width: 100px !important;
}
.w_search {
	width: 310px !important;
}

input[type="radio"]:checked, input[type="checkbox"]:checked {
    background-color: #333 !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: 8px;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    border: solid 2px #ccc;
    margin: -3px 5px 0 0;
}
input[type="checkbox"] {
    border-radius: 2px;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    border: solid 2px #ccc;
    margin: -2px 5px 0 0;
}

.form_list dt,
.form_list_underline dt {
	font-weight: 700;
	margin-bottom: 3px;
}
.form_list dd {
	margin-bottom: 20px;
}
.form_list_mypage {
	padding:30px 40px 0 40px;
}
#window_area .form_list_mypage {
	padding:50px 40px 0 40px;
}
.form_list_mypage dd {
	margin-bottom: 30px;
	margin-top: -32px;
    padding-left: 170px;
}
.form_list_mypage .form_list_mypage_less_pd {
	margin-top: -24px;
}
.form_list_underline dd {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: #e3e3e3 1px solid;
}
input.disabled_input {
    background-color: #D1D1D1 !important;
    pointer-events: none;
}