@charset "UTF-8";
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

    body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #F3F7FA;
      color: #333;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 20px;
    }

    header {
      background-color: #2C3E50;
      color: #fff;
      text-align: center;
      padding: 3rem 0;
    }

    section {
      padding: 1rem 0;
    }

    h1, h2 {
      margin-bottom: 1.5rem;
      font-weight: 600;
    }
    /* 他のセクションのh2のスタイル */
h2 {
	text-align:left;
    font-size: 1.5rem;
    font-weight: 600;
}

/* お問い合わせセクションのh2だけをターゲットにする */
 h2.contact {
    text-align: center;
}

.contact-form + h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: #2C3E50;
}

    p {
      font-size: 1rem;
      line-height: 1.6;
      color: #555;
    }

    .intro {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }

    .intro-text {
      flex: 1;
    }

    .intro-image {
      flex: 1;
    }

    .intro-image img {
      max-width: 100%;
      border-radius: 10px;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
      margin-top:30px;
    }

    .contact-form {
      max-width: 600px;
      margin: 0 auto;
      background-color: #ffffff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 500;
    }

    input[type="text"], input[type="email"], textarea {
      width: 100%;
      padding: 12px 15px;
      margin-bottom: 20px;
      border: 1px solid #B2BEC3;
      border-radius: 5px;
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
      border-color: #2C3E50;
      box-shadow: 0 0 0 2px rgba(44, 62, 80, 0.1);
    }

    button {
      padding: 10px 20px;
      background-color: #2C3E50;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s, transform 0.3s;
      font-weight: 500;
    }

    button:hover {
      background-color: #1A242F;
      transform: translateY(-2px);
    }

    footer {
      background-color: #2C3E50;
      color: #fff;
      text-align: center;
      padding: 2rem 0;
    }

    .footer-content {
  padding: 20px 0;
  text-align: center;
}

.footer-menu {
  list-style-type: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-menu li {
  display: inline;
}

.footer-menu a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: #4CAF50; /* 任意の色に変更可能 */
}

