@charset "UTF-8";
.code__button button {
  border-radius: 0;
}

.form__button .button {
  border-radius: 0;
}

/* ===== ラジオボタン（reset.cssのdisplay:noneを上書き） ===== */
.form__right.radio input[type=radio] {
  display: block !important;
  position: absolute;
  opacity: 0;
}

/* プライバシーチェックボックスも同様 */
.form__privacy input[type=checkbox] {
  display: block !important;
  position: absolute;
  opacity: 0;
}

/* ===== 日付入力（style-basic.cssの上書きをリセット） ===== */
input[type=date] {
  padding: 8px 12px;
  text-align: left;
  font-size: 16px;
  border: 1px solid #ccc;
  background-color: #fff;
  position: relative;
}
input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
}
input[type=date]::-webkit-datetime-edit {
  color: inherit;
  font-weight: 400;
}

/* ===== セレクトボックス ===== */
.select__wrap {
  display: flex;
  gap: 12px;
  align-items: center;
}
.select__wrap select {
  padding: 8px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 0;
  background-color: #fff;
  min-width: 100px;
}

/* ===== 条件表示セクション ===== */
.form__section {
  margin-top: 40px;
  padding: 30px 0 0;
  border-top: 2px solid #0A2140;
}

.form__section-title {
  margin-bottom: 20px;
}
.form__section-title h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0A2140;
}

/* ===== 注意書き ===== */
.form__note {
  margin-top: 16px;
}
.form__note p {
  font-size: 14px;
  line-height: 1.8;
  color: #D90A0A;
}

@media (max-width: 768px) {
  .select__wrap select {
    min-width: 80px;
  }
}
/*# sourceMappingURL=owner-form.css.map */