@charset "UTF-8";

/* --- 1. 共通設定 --- */
body {
  background-color: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: #111;
}

/* イントロダクション */
.intro-summary {
  padding: 100px 0 60px;
  text-align: center;
  background: #fff;
}
.goukai-lead {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 30px;
  color: var(--dark);
}
.mark-yellow {
  background: linear-gradient(transparent 60%, var(--primary) 60%);
  display: inline-block;
  padding: 0 10px;
}
.contact-lead-text {
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  color: #333;
}


/* --- 2. フォームエリア --- */
.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px;
border: 1px solid #9e9e9e;
  box-shadow: 20px 20px 0 var(--gray); /* 影 */
  background: #fff;
}

/* フォームの行 */
.form-row {
  margin-bottom: 40px;
}

/* 2カラムレイアウト用 */
.split-row {
  display: flex;
  gap: 30px;
}
.split-row .col {
  width: 50%;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 10px;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}

/* 必須・任意バッジ */
.required {
  background: #000;
  color: var(--primary); /* 黒背景に黄色の文字 */
  font-size: 11px;
  padding: 2px 8px;
  font-weight: bold;
}
.any {
  background: #ccc;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  font-weight: bold;
}

/* 入力フィールド共通 */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 15px 20px;
  background: #f9f9f9;
  border: 2px solid #ddd; /* 通常時は少し太めのグレー */
  border-radius: 0; /* 角丸なしで無骨に */
  font-size: 16px;
  font-family: inherit;
  transition: 0.3s;
  outline: none;
  font-weight: 500;
  color: #000;
}

/* フォーカス時の動き（黄色く光る） */
input:focus,
textarea:focus,
select:focus {
  background: #fff;
  border-color: #000;
  box-shadow: 5px 5px 0 var(--primary);
}

textarea {
  height: 200px;
  resize: vertical;
}

/* セレクトボックスの矢印カスタマイズ */
.select-wrap {
  position: relative;
}
.select-wrap::after {
  content: '▼';
  font-size: 12px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #000;
}
select {
  appearance: none;
  cursor: pointer;
}


/* 送信ボタン */
.submit-area {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #eee;
}

.submit-btn {
  background: #000;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  padding: 20px 0;
  width: 100%;
  max-width: 400px;
  border: 2px solid #000;
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: 0.3s;
  font-family: "Oswald", sans-serif;
}

.submit-btn:hover {
  background: var(--primary);
  color: #000;
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 #000;
}


/* --- スマホ対応 --- */
@media (max-width: 768px) {
  .contact-form-container { padding: 30px 20px; box-shadow: 10px 10px 0 var(--gray); }
  .split-row { flex-direction: column; gap: 40px; }
  .split-row .col { width: 100%; }
  
  .submit-btn { width: 100%; max-width: none; }
}