.from_name {
  display: flex;
  flex-wrap: wrap;
}

.item-box {
  flex: 1;
  margin: 0 10px;
  max-width: 300px; /* 任意の値 */
  width: calc(50% - 20px);
  box-sizing: border-box;
}

/* 最初の.item-box要素を左寄せに配置 */
.item-box:first-child {
  margin-left: 0;
}
body {
	font-family: Arial, sans-serif;
	background-color: #f7f7f7;
}

.item-box, .postal-code {
	display: flex;
	flex-direction: column;
	margin-bottom: 15px;
}

.item-box p, .postal-code label {
	margin: 0;
}
span.hurigana {
        font-size: 0.8em; 

    }

label {
	font-weight: bold;
	color: #333;
	margin-bottom: 5px;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="date"], textarea {
	width: 100%;
	padding: 10px;
	margin: 5px 0 10px 0;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="date"]:focus, textarea:focus {
	border-color: #00aaff;
}

input[type="radio"] {
	margin-right: 10px;
}
.postal-code {
	display: flex;
	flex-direction: column;
	margin-bottom: 10px; /* 住所検索ボタンとの間隔を狭くする */
}

#address-search {
	margin-top: 5px; /* ボタンの上のマージンを狭くする */
	padding: 10px 15px;
	background-color: #00aaff;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

#address-search:hover {
	background-color: #007acc;
}

.postal-code + label {
	margin-top: 20px; /* 住所入力フィールドとの間隔を広くする */
}

[submit] {
	background-color: #00aaff;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

[submit]:hover {
	background-color: #007acc;
}

.from_name {
	display: flex;
	justify-content: space-between;
}

.item-box {
	flex: 1;
	margin-right: 10px;
}

.item-box:last-child {
	margin-right: 0;
}

input[type="date"] {
	min-width: 200px;
}
.description {
        font-weight: normal;
        font-size: 0.8em; /* フォントサイズを小さくする */
        color: #666; /* 薄いグレーで色付け */
    }
