/* ----------------------------------------
  　お問い合わせ
---------------------------------------- */
.contact-form {
  width: 60%;
  margin: 50px auto;
  background-color: white;
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.form-description {
  text-align: left;
  margin: 20px 0;
  color: #666;
  font-size: 0.9em;
  line-height: 1.6;
}
.form-divider {
  border: none;
  border-top: 2px dotted #666;
  margin: 20px 0;
}
.form-group {
  text-align: left;
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #555;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}
.form-group textarea {
  height: 200px;
}
.form-contact-info {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.form-contact-info .form-group {
  flex: 1;
}
.submit-btn {
  background-color: #80cccc;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  white-space: nowrap;
}
.submit-btn:hover {
  background-color: #45a049;
}
/* 必須マークのスタイル */
.required-mark {
  background-color: #80cccc;
  color: white;
  font-size: 0.7em;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 10px;
  vertical-align: baseline;
}

/* -------- 電話でのお問い合わせセクション -------- */
.phone-contact {
  width: 60%;
  margin: 50px auto 0;
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  text-align: center;
}
.phone-contact h3 {
  margin-bottom: 15px;
  color: #333;
}
.phone-number-contact {
  font-size: 2.5em; /* フォントサイズを大きく変更 */
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.phone-hours {
  color: #666;
  font-size: 0.9em;
}
.phone-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

/* モバイルデバイス用のスタイル */
@media screen and (max-width: 768px) {
  .contact-form,
  .phone-contact {
    width: 90%;
  }
  .form-contact-info {
    flex-direction: column;
    gap: 15px;
  }

  .form-contact-info .form-group {
    width: 100%;
  }
}
