section.mailform {
	> div {
		> form {
			> .input {
				> dl {
					margin-block: 10px;
					> dt {
						user-select: none;
						padding: 5px 2px;
						display: flex;
						justify-content: space-between;
						> .item {
							font-size: 1rem;
							line-height: 1.3;
							color: #fff;
						}
						> .require {
							font-size: 0.8rem;
							line-height: 1;
							color: #b7d13c;
							border: solid 1px currentColor;
							text-align: center;
							padding: 1px 5px 3px 5px;
							border-radius: 3px;
							white-space: nowrap;
							&:empty {
								border: none;
							}
						}
					}
					> dd {
						border-radius: 3px;
						margin-top: 3px;
						> .control {
							> div {
								position: relative;
								&.radio,
								&.checkbox {
									padding-right: 40px;
									width: 100%;
								}
								> div {
									input[type="text"],
									select,
									textarea {
										transition: 0.3s;
										font-family: inherit;
										width: 100%;
									}
									input[type="text"][name*="postal"] {
										width: 100%;
									}
								}
								> div[data-validate-mark] {
									position: absolute;
									top: 13px;
									right: 9px;
									width: 16px;
									height: 16px;
									background-image: url(../common/image/form_validate_none.svg);
									background-repeat: no-repeat;
									&[data-mark="ok"] {
										background-image: url(../common/image/form_validate_ok.svg);
									}
									&[data-mark="ng"] {
										background-image: url(../common/image/form_validate_ng.svg);
									}
									&[disabled="disabled"] {
										visibility: hidden;
									}
								}
							}
							> button {
								width: 100%;
								margin-bottom: 3px;
							}
						}
						> div[data-validate-error] {
							position: relative;
							> div {
								position: absolute;
								left: 10px;
								top: -15px;
								font-size: 0.9rem;
								line-height: 100%;
								color: #f04;
							}
						}
					}
				}
			}
			> .policy {
				max-width: 690px;
				margin: 30px auto 0 auto;
				> p {
					font-size: 0.8rem;
					line-height: 1.8;
					color: #333;
					padding-left: 1em;
					text-indent: -1em;
					> a {
						color: #00d;
						&:hover {
							opacity: 0.7;
						}
					}
				}
			}
			> .submit {
				margin-top: 15px;
				text-align: center;
			}
		}
	}
}
