@charset "UTF-8";
/*------------------------------------------------------------
	サイト幅でセンタリング
------------------------------------------------------------*/
/*------------------------------------------------------------
	breakpoint
------------------------------------------------------------*/
/*------------------------------------------------------------
	フォント
------------------------------------------------------------*/
/*------------------------------------------------------------
	clearfix
------------------------------------------------------------*/
/*------------------------------------------------------------
	flex
------------------------------------------------------------*/
/*------------------------------------------------------------
	Other
------------------------------------------------------------*/
/*------------------------------------------------------------
	お問い合わせページ
------------------------------------------------------------*/
#contact {
  max-width: 800px;
  margin: 0 auto;
  padding: 13.4rem 20px 40px;
}
@media screen and (max-width: 850px) {
  #contact {
    padding: 10rem 15px 20px;
  }
}

.page_title {
  text-align: center;
  margin-bottom: 40px;
}
.page_title h1 {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
@media screen and (max-width: 850px) {
  .page_title h1 {
    font-size: 24px;
  }
}

.page_description {
  font-size: 16px;
  color: #666;
}
@media screen and (max-width: 850px) {
  .page_description {
    font-size: 14px;
  }
}

.contact_content {
  background: white;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 850px) {
  .contact_content {
    padding: 24px 20px;
  }
}

.contact_form {
  max-width: 600px;
  margin: 0 auto;
}

.form_group {
  margin-bottom: 24px;
}

.form_label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
  font-size: 16px;
}

.required {
  color: #e74c3c;
}

.form_input, .form_textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form_input:focus, .form_textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form_textarea {
  resize: vertical;
}

.form_submit {
  text-align: center;
  margin-top: 32px;
}

.submit_button {
  padding: 14px 48px;
  background: #3498db;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}
.submit_button:hover {
  background: #2980b9;
}
@media screen and (max-width: 850px) {
  .submit_button {
    padding: 12px 32px;
    font-size: 16px;
  }
}

.error_message {
  background: #fee;
  color: #c33;
  padding: 12px;
  border-radius: 4px;
  margin-bottom: 20px;
  text-align: center;
}

/*------------------------------------------------------------
	お問い合わせ完了ページ
------------------------------------------------------------*/
#contact_complete {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 20px;
}
@media screen and (max-width: 850px) {
  #contact_complete {
    padding: 40px 15px;
  }
}

.complete_content {
  text-align: center;
  background: white;
  border-radius: 8px;
  padding: 60px 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 850px) {
  .complete_content {
    padding: 40px 24px;
  }
}

.complete_icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: #3498db;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
}
@media screen and (max-width: 850px) {
  .complete_icon {
    width: 60px;
    height: 60px;
    font-size: 36px;
  }
}

.complete_content h1 {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}
@media screen and (max-width: 850px) {
  .complete_content h1 {
    font-size: 24px;
  }
}

.complete_message {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 24px;
}

.complete_note {
  font-size: 14px;
  color: #999;
  line-height: 1.6;
  margin-bottom: 32px;
  padding: 16px;
  background: #f9f9f9;
  border-radius: 4px;
}

.complete_actions {
  margin-top: 32px;
}

.back_button {
  display: inline-block;
  padding: 14px 48px;
  background: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  transition: background 0.3s;
}
.back_button:hover {
  background: #2980b9;
}/*# sourceMappingURL=contact.css.map */