@charset "utf-8";
body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #f9fafc;
    color: #333;
    margin: 0;
    padding: 40px 20px;
  }
  
  .contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  }
  
  .contact-wrapper h1 {
    font-size: 1.8em;
    color: #005bab; /* 青系本舗カラー */
    margin-bottom: 24px;
    border-left: 6px solid #005bab;
    padding-left: 12px;
  }
  
  .form-group {
    margin-bottom: 24px;
  }
  
  label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    transition: border-color 0.3s ease;
  }
  
  input:focus,
  textarea:focus,
  select:focus {
    border-color: #005bab;
    outline: none;
  }
  
  textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .required {
    color: #e53935;
    font-weight: bold;
    margin-left: 4px;
  }
  
  .submit-buttons {
    display: flex;
    gap: 16px;
  }
  
  button[type="submit"],
  button[type="reset"] {
    background-color: #005bab;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button[type="submit"]:hover,
  button[type="reset"]:hover {
    background-color: #004080;
  }


  .contact-wrapper {
    max-width: 600px;
    margin: 80px auto 0;  /* ← ここで上部に80pxの空白を追加 */
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  }

  .contact-callout {
    max-width: 600px;
    margin: 60px auto 20px;
    padding: 20px 24px;
    background-color: #eaf4ff;
    border-left: 6px solid #005bab;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    color: #333;
  }
  
  .contact-callout p {
    margin: 0.5em 0;
  }
  
  .contact-callout .call-number {
    font-size: 1.4em;
    font-weight: bold;
    color: #005bab;
  }
  
  .contact-callout .call-number a {
    color: #005bab;
    text-decoration: none;
  }
  
  .contact-callout .call-number a:hover {
    text-decoration: underline;
  }
  
  