@charset "utf-8";

.form {
	max-width:960px;
	margin:0 auto;
	font-size:14px;
}
.form input.req, .form select.req {
	background:#ffeeee;
}
.form .input_ja {
	ime-mode: active;
}
.form .input_alpnum {
	ime-mode: inactive;
}
.form .input_only_alpnum {
	ime-mode: disabled;
}
::-webkit-input-placeholder {
	color:#b3b3b3;
	font-weight: normal;
}
::-moz-placeholder {
	color:#b3b3b3;
	font-weight: normal;
}
:-ms-input-placeholder {
	color:#b3b3b3;
	font-weight: normal;
}
.form .f_cap {
	font-size:12px;
	display:block;
}


.form dl {
	width:100%;
	display:flex;
	justify-content: space-between;
	margin-bottom:10px;
}
.form dl dt {
	width:220px;
	padding:10px 60px 10px 10px;
	box-sizing:border-box;
	font-weight:bold;
	position:relative;
	border-right:1px solid #ccc;
}
.form dl dt.req:after {
	content:"【必須】";
	position:absolute;
	right:2px;
	top:10px;
	color:#ff0000;
}
.form dl dd {
	width:calc(100% - 220px);
	padding:10px;
	box-sizing:border-box;
	background:#fff;
}
.form dl dd.req {
	background:#ffeeee;
}
.form dl dd.req2 {
	background:#ffeeee;
}

.form .two {
	display:flex;
	justify-content: start;
	align-items: center;
}
.form .two li:nth-child(1) {
	margin:0 10px 0 0; 
}
.form .addr {
	display:flex;
	justify-content: start;
	align-items: stretch;
}
.form .addr li:nth-child(1) {
	width:120px;
}
.form .addr li:nth-child(2) {
	width:calc(100% - 120px);
}

.form .mult {
	display:flex;
	justify-content: start;
	align-items: center;
	flex-wrap: wrap;
	margin:0 0 -10px;
}
.form .mult li {
	margin:0 10px 10px 0;
}


.form input[type="text"], .form input[type="email"] {
	border:1px solid #999;
	padding:5px;
	max-width:100%;
	font-size:16px;
}
.form select {
	border:1px solid #999;
	padding:3px;
}
.form textarea {
	border:1px solid #999;
	padding:10px;
	font-size:14px;
	width:100%;
	box-sizing:border-box;
}

.radio_input input[type="radio"] {
	display:none;
}
.radio_input label {
	position:relative;
	display:flex;
	justify-content:start;
	align-items: center;
	cursor:pointer;
}
.radio_input label:before{
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  border-radius: 50%;
  background:#fff;
  margin:-2px 5px 0 0;
}
.radio_input label.checked:after{
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: #000;
  border-radius: 50%;
}

.chk_input input[type="checkbox"] {
	display:none;
}
.chk_input label {
	position:relative;
	display:flex;
	justify-content:start;
	align-items: center;
	cursor:pointer;
}
.chk_input label:before{
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  border-radius: 4px;
  background:#fff;
  margin:-2px 5px 0 0;
}
.chk_input label.checked:after{
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: 7px;
  width: 10px;
  height: 20px;
  transform: rotate(40deg);
  border-bottom: 3px solid #000;
  border-right: 3px solid #000;
}

small#error {
	color:#ff0000;
	display:block;
}

.form .btn_col {
	max-width:300px;
	margin:0 auto;
	display:flex;
	justify-content: center;
}
.form .btn_col li:nth-child(2) {
	margin:0 0 0 20px;
}
.form .btn {
	width:130px;
	border:1px solid #3ec9b3;
	background:#3ec9b3;
	text-align:center;
	padding:10px;
	box-sizing:border-box;
	border-radius: 4px;
	cursor:pointer;
	transition: all 0.3s ease-in-out 0s;
	color:#fff;
	font-size:15px;
}
.form .btn:hover {
	background:#fff;
	color:#000;
}
.form .b_btn {
	background:#ccc;
	border:1px solid #ccc;
}


@media (max-width: 767px) {

	.form dl {
		display:block;
	}
	.form dl dt {
		width:100%;
		border-right:0px;
	}
	.form dl dd {
		width:100%;
	}

	.form .two {
		display:block;
	}
	.form .two li:nth-child(1) {
		margin:0 0 10px 0; 
	}

	.form .addr {
		display:block;
		margin:0 0 10px;
	}
	.form .addr li:nth-child(1) {
		width:100%;
	}
	.form .addr li:nth-child(2) {
		width:100%;
	}
}
