@charset "utf-8";
/* CSS Document */
body {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #333333;
  line-height: 1.75;
  background-color: #fff;
}
img {
  max-width: 100%;
  object-fit: cover;
}
/*==================================タイトルここから================================================*/
.title{
	height: 300px;
	background-image: url("../images/contact.jpg");
	background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-shadow: 1px 1px 10px #333;
}
.title h2{
	font-family: sans-serif;
	font-weight: 700;
		font-size: 40px;
	letter-spacing: 0.2em;
}
/*==================================タイトルここまで================================================*/
/* お問い合わせフォームのスタイル */
.contact-form {
  max-width: 600px;
  margin: 20px auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
	margin-top: 30px;
}
.form-control {/* お問い合わせ内容入力欄 */
  width: 100%;
  padding: 0.3rem 1rem;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  box-sizing: border-box;
}
.form-control:focus {
  outline: none;
	  border-color: #009933;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
textarea.form-control {/* お問い合わせ内容入力欄 */
  resize: vertical;
  min-height: 250px;
}
.required {
  color: #dc3545;
		margin-left: 10px;
}
.discretionary {
  color: #666;
	margin-left: 10px;
}
.form-header {
  text-align: center;
  margin-bottom: 2rem;
}
.form-header p {
  color: #333;
  margin: 0;
}
/*==================================送信ボタンここから================================================*/
.btn-submit {/* 送信ボタン */
/*	 background: linear-gradient(135deg, #02bf02, #009900);*/
	background: #333;
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
	margin-top: 20px;
	text-align: center;
}
.btn-submit:hover {/* 送信ボタンのホバー */
 /* background: linear-gradient(135deg, #009900, #007e00);*/
	background: #009933;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}
/*==================================送信ボタンここまで================================================*/
/*==================================スマホここから================================================*/
/* レスポンシブ対応 */
@media (max-width: 800px) {
	.title{
	height: 260px;
}
	.title h1{
		font-size: 32px;
}
  .contact-form {
    margin: 1rem;
    padding: 1.5rem;
  }
  .form-control {/* お問い合わせ内容入力欄 */
    padding: 0.625rem 0.875rem;
  }
	textarea.form-control {/* お問い合わせ内容入力欄 */
  resize: vertical;
  min-height: 300px;
}
  .btn-submit {
    padding: 0.75rem 1.5rem;
  }
}