        /* 基本的なリセットとフォント設定 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Noto Sans JP', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff; /* 基本は白背景 */
            scroll-behavior: smooth;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #1A263D; /* ブルー系のアクセントカラー */
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }

        /* テーマカラー定義 */
        :root {
            --primary-blue: #1A263D; /* メインのブルー */
            --dark-blue: #ff69b4;    /* 濃いブルー */
            --light-blue: #e0f2f7;   /* 薄いブルー */
            --peperoncino-red: #d9534f; /* ペペロンチーノの赤 */
            --white: #ffffff;
            --light-gray: #f8f8f8;
            --dark-gray: #333333;
        }

        /* ヘッダー */
        .header {
            background-color: #333;
            background-color: var(--white);
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        .logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-blue);
        }
        .logo span {
            font-size: 1rem;
            font-weight: 400;
            display: block;
            margin-top: -5px;
            color: var(--dark-gray);
        }
        .nav ul {
            list-style: none;
            display: flex;
        }
        .nav ul li {
            margin-left: 30px;
        }
        .nav ul li a {
            font-weight: 700;
            color: var(--dark-gray);
            transition: color 0.3s ease;
        }
        .nav ul li a:hover {
            color: var(--primary-blue);
        }

        /* メインビジュアル */
        .hero {
            background-image: url("./DSCF1527.JPG");
            background-position: bottom right;
            background-size: 100% auto;
            background-repeat: no-repeat;
            color: var(--white);
            text-align: center;
            padding: 150px 20px 100px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 600px;
        }
        .hero h1 {
            font-size: 3.8rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.6rem;
            max-width: 900px;
            margin-bottom: 40px;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
        }
        .btn {
            display: inline-block;
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 15px 35px;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 700;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        .btn:hover {
            background-color: var(--dark-blue);
            transform: translateY(-3px);
            text-decoration: none;
        }

        /* セクション共通 */
        .section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        .section:nth-of-type(even) { /* 奇数番目のセクションは薄い青背景 */
            background-color: var(--light-gray);
        }
        .section h2 {
            font-size: 2.8rem;
            margin-bottom: 40px;
            color: var(--primary-blue);
            position: relative;
            display: inline-block;
        }
        .section h2::after {
            content: '';
            display: block;
            width: 100px;
            height: 5px;
            background-color: var(--light-blue);
            margin: 15px auto 0;
            border-radius: 3px;
        }
        .section p {
            font-size: 1.15rem;
            margin-bottom: 20px;
        }

        /* 事業内容グリッド */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        .service-item {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--light-blue); /* 薄い青のボーダー */
        }
        .service-item:hover {
            transform: translateY(-7px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }
        .service-item img {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
        }
        .service-item h3 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--dark-gray);
        }
        .service-item p {
            font-size: 1.05rem;
            color: #666;
            margin-bottom: 0;
        }

        /* ペペロンチーノセクション */
        .peperoncino-section {
            background-color: var(--light-blue); /* 薄いブルー背景 */
            color: var(--dark-gray);
            padding: 80px 20px;
            text-align: center;
        }
        .peperoncino-section h2 {
            color: var(--dark-blue); /* 濃いブルー */
        }
        .peperoncino-content {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
        }
        .peperoncino-text {
            text-align: left;
            flex: 2;
        }
        .peperoncino-image {
            flex: 1;
        }
        .peperoncino-image img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            max-width: 400px;
            width: 100%;
        }
        .peperoncino-tag {
            display: inline-block;
            background-color: var(--peperoncino-red); /* ペペロンチーノの赤 */
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-top: 10px;
        }
        @media (min-width: 768px) {
            .peperoncino-content {
                flex-direction: row;
            }
            .peperoncino-image {
                order: 2;
            }
            .peperoncino-text {
                margin-right: 40px;
            }
        }

        /* ニュース */
        .news-list {
            list-style: none;
            text-align: left;
            margin-top: 50px;
        }
        .news-item {
            background-color: var(--white);
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 25px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            border: 1px solid var(--light-gray);
        }
        .news-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        }
        .news-date {
            font-weight: 700;
            color: var(--primary-blue);
            min-width: 100px;
            font-size: 1.05rem;
        }
        .news-title a {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--dark-gray);
        }
        .news-title a:hover {
            color: var(--dark-blue);
        }

        /* お問い合わせ */
        .contact-form {
            background-color: var(--white);
            padding: 50px;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            max-width: 700px;
            margin: 50px auto 0;
            text-align: left;
            border: 1px solid var(--light-blue);
        }
        .contact-form label {
            display: block;
            margin-bottom: 10px;
            font-weight: 700;
            color: #555;
            font-size: 1.1rem;
        }
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 15px;
            margin-bottom: 25px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1.05rem;
            font-family: 'Noto Sans JP', sans-serif;
        }
        .contact-form textarea {
            min-height: 180px;
            resize: vertical;
        }
        .contact-form button {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
            display: block;
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }
        .contact-form button:hover {
            background-color: var(--dark-blue);
            transform: translateY(-3px);
        }

        /* フッター */
        .footer {
            background-color: #1A263D; /* 濃いブルーのフッター */
            color: var(--white);
            text-align: center;
            padding: 50px 20px;
            font-size: 0.95rem;
        }
        .footer-nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }
        .footer-nav ul li {
            margin: 0 20px;
        }
        .footer-nav ul li a {
            color: var(--white);
            transition: color 0.3s ease;
        }
        .footer-nav ul li a:hover {
            color: var(--light-blue);
        }
        .footer p {
            margin-bottom: 10px;
        }
  /* ハンバーガーアイコンのスタイル */
  .hamburger-menu {
    display: none; /* 初期は非表示 */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001; /* ナビより手前に表示 */
  }

  .hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #1A263D;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  /* ハンバーガーアイコンのアニメーション（開閉時） */
  .hamburger-menu.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
  }

  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
  }

  /* モバイルナビゲーションのスタイル */
  .nav-mobile {
    display: none; /* 初期は非表示 */
    position: fixed;
    top: 0;
    right: -100%; /* 画面外に配置 */
    width: 70%; /* 画面幅の70% */
    max-width: 300px; /* 最大幅 */
    height: 100%;
    background-color: #333;
    box-shadow: -2px 0 10px rgba(0,0,0,0.3);
    padding-top: 80px; /* ヘッダーの高さ分スペース */
    transition: right 0.4s ease-in-out;
    z-index: 1000;
  }

  .nav-mobile.open {
    right: 0; /* 画面内に表示 */
  }

  .nav-mobile ul {
    flex-direction: column;
    text-align: center;
  }

  .nav-mobile li {
    margin: 0;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-mobile li:last-child {
    border-bottom: none;
  }

  .nav-mobile a {
    display: block;
    color: white;
    font-size: 1.2em;
    padding: 10px;
    transition: background-color 0.3s ease;
  }

  .nav-mobile a:hover {
    background-color: #555;
  }

  /* オーバーレイ（モバイルナビ開閉時） */
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  /* レスポンシブデザイン */
  @media (max-width: 768px) {
    .nav {
      display: none; /* PC版ナビを非表示 */
    }

    .hamburger-menu {
      display: flex; /* ハンバーガーアイコンを表示 */
    }
    
    .nav-mobile {
      display: block; /* モバイルナビをブロック要素にする */
    }
    .hero {
        margin-top: 0; /* スマートフォンではマージンをなくす */
    }
    .footer-nav ul {
        flex-direction: column; /* リストアイテムを縦並びにする */
        align-items: center; /* 縦並びにした際に中央揃えにする */
    }

    .footer-nav li {
        margin: 10px 0; /* 縦並びになった際の上下の余白 */
    }
  }
  @media (max-width: 565px) {
    .nav {
      display: none; /* PC版ナビを非表示 */
    }

    .hamburger-menu {
      display: flex; /* ハンバーガーアイコンを表示 */
    }
    
    .nav-mobile {
      display: block; /* モバイルナビをブロック要素にする */
    }
    .hero {
        padding: 110px 20px 60px; /* スマートフォン用にパディングを小さくする */
        min-height: 600px; /* スマートフォン用に最小高さを調整する (vhを使うのも有効) */
        /* background-position や background-size も調整可能 */
        background-position: center; /* スマートフォンでは画像を中央に配置 */
        background-size: cover; /* スマートフォンでは画面いっぱいに表示 */
        margin-top: 0; /* 上部のマージンをなくす */
    }
  }
