section.mailform {
	> div {
		> form {
			> .input {
				max-width: 700px;
				margin: 0 auto;
				> .section {
					background-color: #becbe9;
					font-size: 1.2rem;
					line-height: 1.2;
					color: #222;
					font-weight: 700;
					padding: 10px;
					text-align: center;
					margin-block: 20px 0;
				}
				> dl {
					margin: 5px 0;
					display: flex;
					flex-direction: column;
					> dt {
						user-select: none;
						padding: 5px 8px;
						display: flex;
						align-items: flex-start;
						justify-content: space-between;
						background-color: #dddfe4;
						padding: 5px 5px;
						> .item {
							font-size: 1rem;
							line-height: 1.3;
							color: #333;
						}
						> .require {
							font-size: 0.8rem;
							line-height: 1;
							color: #d00;
							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;
						&:has(> .control.wide) {
							width: 100%;
						}
						> .control {
							display: flex;
							flex-direction: column-reverse;
							> div {
								position: relative;
								&.radio {
									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: 200px;
								margin-bottom: 3px;
							}
							&.wide > div {
								&.radio {
									width: 100%;
									padding-right: 40px;
								}
								> div {
									> textarea {
										width: 100%;
										padding-right: 30px;
									}
								}
							}
						}
						> div[data-validate-error] {
							position: relative;
							> div {
								position: absolute;
								left: 10px;
								top: -15px;
								font-size: 0.8rem;
								line-height: 1;
								color: #f20;
							}
						}
					}
				}
			}
			> .policy {
				max-width: 690px;
				margin: 30px auto 0 auto;
				> p {
					font-size: 1rem;
					line-height: 1.8;
					color: #333;
					padding-left: 1em;
					text-indent: -1em;
					> a {
						color: #00d;
						&:hover {
							opacity: 0.7;
						}
					}
				}
			}
			> .submit {
				margin-top: 20px;
				text-align: center;
			}
		}
	}
}
