/* カスタムCSS */

/* ナビゲーションバーのロゴ */
.navbar-brand .logo {
    height: 50px;
  }
  
  /* ヒーローセクション */
  .jumbotron {
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 0;
    color: white;
    text-shadow: 3px 3px 3px rgba(0,0,0,0.8);
  }
  
  .jumbotron::after {
    content: "";
    background-color: rgba(0,0,0,0.6);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  .jumbotron .container {
    position: relative;
    z-index: 2;
  }
  
  /* セクションのタイトル */
  section h2 {
    margin-bottom: 40px;
  }
  
  /* セールスキャッチコピー */
  #catchphrase {
    background-color: #f8f9fa;
  }
  
  #catchphrase h2 {
    font-size: 2em;
    font-weight: bold;
  }
  
  #catchphrase p {
    font-size: 1.2em;
  }
  
  /* 製品紹介セクション */
  #product {
    background-size: cover;
    background-position: center;
    position: relative;
    color: #333;
  }
  
  #product::after {
    content: "";
    background-color: rgba(255,255,255,0.8);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  #product .container {
    position: relative;
    z-index: 2;
  }
  
  #product h2, #product p, #product h5, #product p {
    color: #333;
  }
  
  /* 製品画像 */
  #product .img-fluid {
    width: auto; /* 画像の最大幅を80%に設定 */
    height: 150px;
    border-radius: 10px;
    display: block; /* ブロック要素として扱う */
    margin: 0 auto; /* 左右のマージンを自動にして中央揃え */
  }
  
  #product h5 {
    margin-top: 15px;
  }
  
  /* お問い合わせフォームセクション */
  .contact-bg {
    background-color: #6b6b6b;
    border-radius: 15px;
    padding: 40px;
    color: white;
  }
  .contact-brand .logo {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    display: block; /* ブロック要素として扱う */
    margin: 0 auto; /* 左右のマージンを自動にして中央揃え */
    margin-bottom: 25px;
  }
  /* お問い合わせフォーム */
  #contact form {
    max-width: 800px;
    margin: 0 auto;
  }
  
  #contact .form-control {
    border-radius: 30px;
  }
  
  #contact .btn-primary {
    border-radius: 30px;
    background-color: #007bff;
    border-color: #007bff;
  }
  
  #contact .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
  }
  
  /* フッター */
  footer {
    background-color: #000000;
    color: white;
  }

  .footer-brand .logo {
    width: 250px;
    height: auto;
    border-radius: 10px;
  }
  
  footer p {
    margin: 0;
  }
  
  footer .row > div {
    margin-bottom: 10px;
  }
  