@charset "UTF-8";
/* 基本的なリセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: #f8f8f8;
  color: #333;
  line-height: 1.6;
}

/* タイトルのデザイン */
.customer-form-title {
  margin: 0% 5%;
  text-align: center;
  padding: 20px;
  font-size: 1rem;
  font-weight: bold;
  background: linear-gradient(to bottom, #003366, #005599); /* 上から下にネイビーのグラデーション */
  color: white;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

/* タイトルの余白調整 */
.customer-form-titlesec {
  margin-bottom: 5px;
}

/* フォームのスタイル */
form {
  max-width: 90%;
  margin: 20px auto;
  padding: 20px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
}

label {
  width: 40%;
  font-weight: bold;
  font-size: 1rem;
  display: block;
  margin-top: 10px;
  color: #003366;
  white-space: nowrap;
}

input, select {
  display: block;
  height: 40px;
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 2px solid #ccc;
  border-radius: 3px;
  font-size: 1rem;
}

.customer-form-birth {
  display: flex;
  justify-content: space-between; /* 要素間の間隔を均等に */
  align-items: center;
  gap: 5px; /* 要素同士の間隔 */
}

.customer-form-birth2 {
  display: flex;
  justify-content: space-between; /* 要素間の間隔を均等に */
  align-items: center;
  gap: 5px; /* 要素同士の間隔 */
}

.customer-form-headersec {
  margin-bottom: 10%;
}

.customer-form-com {
  width: 100%;
  text-align: center;
  white-space: nowrap;
}
.customer-form-com .customer-form-res {
  display: flex;
  width: 95%;
}
.customer-form-com .customer-form-date {
  display: flex;
  width: 95%;
}

.sector-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列 */
  gap: 5px; /* 列間の余白 */
  margin: 5px;
  max-width: 100%;
}
.sector-options label {
  display: flex;
  align-items: center;
  gap: 5px; /* チェックボックスとラベルの間隔 */
  font-size: 0.8rem;
  white-space: nowrap;
}
.sector-options input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; /* デフォルトのスタイルをリセット */
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  /* チェックされたときのデザイン */
}
.sector-options input[type=checkbox]:checked {
  background-color: #003366;
  border-color: #003366;
}
.sector-options input[type=checkbox]:checked::after {
  content: "✔";
  font-size: 14px;
  color: white;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

button {
  background-color: #003366;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  margin-top: 20px;
}

button:hover {
  background-color: #001a33;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .customer-form-headersec, .customer-form-postal, .customer-form-address {
    flex-wrap: nowrap;
  }
}/*# sourceMappingURL=customer-form.css.map */