/* ===============================================
   contact.css — お問い合わせページ固有スタイル
   =============================================== */

/* ===== Page header ===== */
.page-hdr {
  background: #0e2518;
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 14px;
}

.page-hdr .lbl {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #ead477;
  opacity: .7;
  margin-bottom: 6px;
}

.page-hdr h1 {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  letter-spacing: .04em;
}

/* パンくず */
.breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #ead477;
}

.breadcrumb span {
  color: rgba(255, 255, 255, .25);
}

/* ===== 2カラム ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 14px;
  align-items: start;
}

/* ===== フォームカード ===== */
.form-card {
  background: #0e2518;
  border-radius: 16px;
  padding: 36px 40px;
}

.form-card .card-title {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #ead477;
  opacity: .7;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 8px;
  letter-spacing: .04em;
}

.form-label .required {
  font-size: 10px;
  background: #ead477;
  color: #06170f;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: .04em;
}

.form-input,
.form-textarea {
  width: 100%;
  background: #06170f;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #ead477;
  box-shadow: 0 0 0 3px rgba(234, 212, 119, .12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, .2);
}

.form-textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.7;
}

/* 個人情報同意 */
.privacy-box {
  background: #0a1f14;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 22px;
}

.privacy-box p {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.8;
  margin-bottom: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
}

.checkbox-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(255, 255, 255, .3);
  border-radius: 4px;
  background: #06170f;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: border-color .2s, background .2s;
}

.checkbox-label input[type="checkbox"]:checked {
  background: #ead477;
  border-color: #ead477;
}

.checkbox-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: 2px solid #06170f;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

/* 送信ボタン */
.submit-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: #ead477;
  color: #06170f;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s, transform .1s;
}

.submit-btn:hover {
  background: #f0dc8a;
}

.submit-btn:active {
  transform: scale(.98);
}

/* ===== サイドバー ===== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.side-card {
  background: #0e2518;
  border-radius: 16px;
  padding: 24px;
}

.side-card .card-title {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #ead477;
  opacity: .7;
  margin-bottom: 16px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: .5px solid rgba(255, 255, 255, .07);
  padding: 14px 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-q {
  font-size: 12px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.6;
  margin-bottom: 6px;
  display: flex;
  gap: 8px;
}

.faq-q::before {
  content: 'Q';
  color: #ead477;
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

.faq-a {
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
  padding-left: 16px;
}

/* SNS */
.sns-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sns-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: opacity .2s;
}

.sns-btn:hover {
  opacity: .8;
}

.sns-btn.instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
}

.sns-btn.x {
  background: #000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .15);
}

.sns-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.sns-note {
  font-size: 11px;
  color: rgba(255, 255, 255, .35);
  margin-top: 10px;
  line-height: 1.7;
}

/* ===== 送信完了パネル ===== */
.success-card {
  display: none;
  background: #0e2518;
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
}

.success-card .check-icon {
  width: 56px;
  height: 56px;
  background: rgba(234, 212, 119, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-card .check-icon svg {
  width: 28px;
  height: 28px;
  stroke: #ead477;
  fill: none;
  stroke-width: 2.5;
}

.success-card h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

.success-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.8;
}

.success-card .back-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 32px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  font-size: 13px;
  transition: border-color .2s, color .2s;
}

.success-card .back-btn:hover {
  border-color: #ead477;
  color: #ead477;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .sidebar {
    order: 1;
  }
}

@media (max-width: 768px) {
  .form-card {
    padding: 24px 20px;
  }

  .page-hdr {
    padding: 20px;
  }

  .page-hdr h1 {
    font-size: 22px;
  }
}
