/* お問い合わせ - contact.css */
.header-contact-inner {
  background: linear-gradient(90deg, #ffe2cf 10%, #fb5f00 65%);
  box-shadow: 0 2px 4px rgba(0,0,0,0.25);
}
.header-contact-top .header-phone { color: #fff; }
.header-contact-top .btn-login,
.header-contact-top .btn-cart-nav {
  background: #000;
  color: #fff;
  padding: 7px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 17px;
}
.main-nav-contact { background: #fff; border-bottom: 1px solid #ddd; }
.nav-list-contact .nav-item a.active { border-bottom: 4px solid #fb5f00; }

.contact-main {
  position: relative;
  min-height: 100vh;
  padding: 40px 0 80px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.contact-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}
.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.8);
}

.contact-form-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 40px;
}

.contact-form {
  background: #fff;
  box-shadow: 0 5px 5px rgba(0,0,0,0.1);
  padding: 40px;
  max-width: 788px;
  width: 100%;
  border-radius: 8px;
}

.contact-title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0 0 16px;
}
.contact-intro {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 30px;
}

.form-row {
  margin-bottom: 20px;
}
.form-row label {
  display: block;
  font-size: 12px;
  color: #000;
  margin-bottom: 6px;
}
.form-row .required { color: #bc261a; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #bfbfbf;
  border-radius: 5px;
  background: #f5f5f5;
  font-size: 14px;
  font-family: inherit;
}
.form-row select {
  max-width: 269px;
  cursor: pointer;
}
.form-row textarea {
  min-height: 200px;
  resize: vertical;
}
.form-row.form-checkbox {
  margin-bottom: 24px;
}
.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.checkbox-label input { width: auto; }
.checkbox-label a { color: #fb5f00; text-decoration: underline; }

.form-submit {
  text-align: center;
  margin-top: 24px;
}
.btn-submit {
  background: #fb5f00;
  color: #fff;
  border: none;
  padding: 12px 80px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 99px;
  cursor: pointer;
}
.btn-submit:hover { opacity: 0.9; }
