﻿#buttons {
	margin: 20px 0 0;
	text-align: center;
}

#buttons button {
	display: inline-block;
	margin: 4px;
	min-width: 100px;
}

#buttons button.pure-button {
	border-radius: 3px;
	min-width: 200px;
	background: #e6e6e6;
	font-size: 18px;
	font-size: 1.6rem;
}

#buttons button.pure-button-primary {
	background: #565656;
}

.pure-button:hover,
.pure-button:focus {
	opacity: .85;
}


form {
	margin: 20px 0 0;
	padding: 0 0 20px;
}


.pure-form label {
	display: inline-block !important;
}


.field {
	padding: 20px 10px;
	border-bottom: 1px dashed #c0c0c0;
}

.field:first-child {
	border-top: 1px dashed #c0c0c0;
}

.field.error {
	background: #f1f1f1;
}

.field.error input,
.field.error select,
.field.error textarea {
	background: #fee;
}

.field .title {
	display: table;
	position: relative;
	margin-bottom: 10px;
	padding-left: 15px;
	width: 100%;
	font-weight: bold;
}

.field .title:before {
	display: table-cell;
	position: absolute;
	left: 0;
	top: 5%;
	border-radius: 10px;
	width: 7px;
	height: 90%;
	background: #b3b3b3;
	content: "";
}

.field .title>span {
	display: inline-block;
}

.field.required .title:after {
	margin-left: 5px;
	line-height: 1.6;
	font-size: 18px;
	font-size: 1.8rem;
	color: #dc143c;
	content: "※";
}

.field .label {
	display: block !important;
	margin-right: 10px;
	line-height: 1.6;
	font-size: 18px;
	font-size: 1.8rem;
}

.field .rule {
	display: inline-block;
	color: #666;
}

.field .input {
	margin-bottom: 10px;
	font-size: 14px;
	font-size: 1.4rem;
}

.field .error-msg {
	font-weight: bold;
	color: #dc143c;
}



.input input[type="text"] {
	width: 100%;
}

.input textarea {
	width: 100%;
}

.input select {
	padding: 1px;
}

.input input[type=checkbox],
.input input[type=radio] {
	margin-right: 4px;
}


.input.name input {
	display: inline-block !important;
	max-width: 49%;
}


.input.cid input {
	display: inline-block !important;
	max-width: 22%;
}


.input.tel {
	max-width: 640px;
}

.input.tel input {
	display: inline-block !important;
	margin: 0 2px;
	max-width: 30%;
}


.input.zip {
	max-width: 640px;
}

.input.zip input {
	display: inline-block !important;
	margin: 0 2px;
	max-width: 30%;
}


.input span.checkbox {
	display: inline-block;
}


.confirm .input {
	margin-bottom: 0;
}

.imageView img {
	max-width: 100%;
}

.required-color::after {
	margin-left: 5px;
	line-height: 1.6;
	font-size: 22px;
	
	color: #dc143c;
	content: "※";
}

.field .radioOther {
	margin-left: 10px;
	width: 300px !important;
	background-color: white;
}

.field input,
.field textarea,
.field select {
	font-size: 1.6rem !important;
}

.hide {
	display: none;
}

.label {
	display: block !important;
	margin-bottom: 5px;
	padding: 1px 4px;
}

.mr-4 {
	margin-right: 4px;
}

.mr-10 {
	margin-right: 10px;
}

.field .inline-block {
	display: inline-block !important;
}

.dialog-wrapper {
	display: none;
	overflow: auto;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 3000;
	margin: 0;
	background-color: rgba(0, 0, 0, .4);
}

.dialog-box {
	position: relative;
	top: 50%;
	box-sizing: border-box;
	margin: 0 auto 50px;
	border-radius: 2px;
	width: 80%;
	max-width: 800px;
	background: #fff;
	box-shadow: 0 1px 3px rgb(0 0 0 / 30%);
	transform: translate(0, -50%);
}

.dialog-box .dialog-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 20px 10px;
}

.dialog-box .dialog-header span:nth-child(1) {
	flex: 1;
}

.dialog-box .dialog-header .close-btn {
	align-self: flex-start;
	margin-left: 20px;
	cursor: pointer;
}

.dialog-box .dialog-content {
	padding: 30px 20px;
	min-height: 200px;
	font-size: 14px;
	color: #606266;
	word-break: break-all;
}

.dialog-box .dialog-footer {
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	padding: 10px 20px 20px;
}

.justify-between {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.justify-around {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.wd-20 {
	width: 20%;
}

.wd-33 {
	width: 33%;
}

.form-container {
	margin: 0 auto;
	
}

.notice-ul {
	padding-left: 20px;
}

.notice-ul li {
	list-style-type: disc;
}

.notice-ul .font {
	color: rgba(0, 0, 0, .5);
}