

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */


/* ==================================================================
【Contact】ヘッダー下の文章
================================================================== */
.contact-intro-text-1 {
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 20px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  max-width: 1125px;       
  margin: 100px auto 60px;    
  font-size: 14px;
  line-height: 1.6;

  text-align: center; 

  opacity: 0;
  transition: opacity 2s ease;

}

/* 表示状態 */
.contact-intro-text-1.show {
  opacity: 1;
}

.contact-intro-text-1 h2 {
  font-size: 25px;
  margin: 10px 0px 20px 0px;
  color: #5C4433;
}

.contact-intro-text-1 p {
  margin: 6px 0;
}
@media (max-width: 768px) {
  .contact-intro-text-1 {
    position: relative;
    top: -90px;
    width: 90%; 
    margin: 130px auto 0px;
  }
  .contact-intro-text-1 h2 {
    font-size: 18px;
  }
}
@media (min-width: 769px) {
  .contact-intro-text-1 {
    position: relative;
    top: -30px;
    width: 800px;   /* ← 好きな幅に（これが線の長さ） */
  }
}


/* ==================================================================
【Contact】タイトル
================================================================== */
.contact-title-1 {
  max-width: 1125px;
  margin: 90px auto 65px;
  text-align: center;
  font-weight: bold;
}
.contact-title-1 p {
  font-size: 28px;  
}
@media (max-width: 768px) {
  .contact-title-1 {
    margin: -50px auto 65px;
  }
}




/* ==================================================================
【Contact】
================================================================== */
.contact-section {
  /* background-color: #f3f3f2; */
  /* background-color: #f5f4ef; */
  padding: 100px 20px;
}

.contact-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* タイトル */
.contact-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  color: #666;
  border-bottom: 1px solid #ccc;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 30px;
}

.contact-title {
  font-size: 28px;
  margin-bottom: 50px;
  font-weight: 500;
}

/* フォーム */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* 各項目 */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-size: 14px;

}

/* 必須バッジ */
.required {
  background: #b92c2c;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  margin-left: 10px;
}

/* 入力欄 */
input,
textarea {
  width: 100%;
  padding: 18px;
  border: none;
  background: #e9e9e9;
  font-size: 14px;
  box-sizing: border-box;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-check {
  display: flex;
  justify-content: center; /* ←中央にまとめる */
  align-items: center;
  gap: 8px;
  font-size: 13px;
  width: 100%;
}

.form-check label {
  margin: 0;
  display: inline-block; /* ←これ重要 */
}

.form-check input {
  margin: 0;
  width: auto; /* ←変な伸び防止 */
}



.form-check a {
  color: #333;
  text-decoration: underline;   /* ← 常に下線あり */
  transition: opacity 0.2s ease;
}

.form-check a:hover {
  opacity: 0.6;                 /* ← フッターと同じホバー */
}





/* ボタン */
.submit-btn {
  display: block;
  margin: 40px auto 0;
  padding: 16px 40px;
  background: #333;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;

  text-decoration: none !important;
  border-bottom: none !important;

}

.submit-btn:hover {
  background: #555;
}


.submit-btn:disabled {
  background: #aaa;
  cursor: not-allowed;
}





/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */





























