    /* --- 1. 基本設定と変数 --- */
    :root {
        --primary-navy: #003366;
        /* メインの濃いネイビー */
        --section-green: #00a582;
        /* サステナビリティの緑 */
        --accent-blue: #2d8fb8;
        /* アクセントの水色 */
        --text-main: #333333;
        --text-light: #666666;
        --bg-light: #f5f5f7;
        --white: #ffffff;
        --card-radius: 20px;
        /* カードの角丸具合 */
        --primary-blue: #004098;
        /* 個人のお客様の青 */
        --primary-green: #4CAF50;
        /* 法人の緑 */
        --primary-orange: #E67E22;
        /* 協力業者のオレンジ */
        --line-green: #06C755;
        /* LINEの緑 */
        --text-color: #333;
        --bg-color: #fff;
    }

    body {
        font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
        margin: 0;
        padding: 0;
        color: var(--text-main);
        background-color: var(--bg-light);
        line-height: 1.6;
        overflow-x: hidden;
        padding-bottom: 70px;
        /* フッターの高さ分空ける */
    }

    main {
        max-width: 650px;
        margin: 0 auto;
    }

    .item1 {
        display: none;
    }

    .item3 {
        display: none;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    img {
        max-width: 100%;
        display: block;
    }

    ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    /* --- 2. アニメーション用クラス --- */
    /* スクロールしたらふわっと出る */
    .fade-up {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* --- ヘッダー (固定) --- */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background-color: #fff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
        box-sizing: border-box;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        /* 他の要素より手前に表示 */
    }

    /* --- ヘッダーの調整（ど真ん中配置） --- */
    header {
        background-color: var(--white);
        padding: 10px 20px;
        height: 85px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    /* メニューボタンの見た目調整 */
    .menu-btn {
        background: var(--primary-navy);
        color: white;
        border-radius: 50%;
        width: 45px;
        /* 少し大きく */
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 1.4rem;
        border: none;
        transition: 0.3s;
        z-index: 1001;
        /* メニューより手前に */
    }

    .menu-btn:hover {
        transform: scale(1.1);
        /* ホバーで少し膨らむ */
    }

    /* --- 全画面メニューのアニメーション --- */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 51, 102, 0.95);
        /* 濃いネイビー（少し透ける） */
        z-index: 2000;

        /* 初期状態：隠す */
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease-in-out;

        /* 中身をど真ん中にする設定 */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* クラスがついたら表示（アニメーション発火） */
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* メニューの中身 */
    .nav-content {
        text-align: left;
        transform: translateY(20px);
        /* 最初は少し下に */
        transition: transform 0.4s ease;
    }

    /* 表示された時の動き */
    .nav-overlay.active .nav-content {
        transform: translateY(0);
        /* ふわっと定位置に */
    }
.nav-relative{
    position: relative;
}
    /* 閉じるボタン */
    .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 3rem;
        color: white;
        cursor: pointer;
        font-family: sans-serif;
        font-weight: 100;
        line-height: 1;
    }

    /* メニューリスト */
    .nav-list li {
        margin: 30px 0;
        opacity: 0;
        transform: translateY(10px);
        transition: 0.3s;
    }

    /* リンクの文字 */
    .nav-list a {
        color: white;
        font-size: 1.5rem;
        font-weight: bold;
        position: relative;
    }

    /* リンクの下線アニメーション */
    .nav-list a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        background: var(--accent-blue);
        bottom: -5px;
        left: 0;
        transition: 0.3s;
    }

    .nav-list a:hover::after {
        width: 100%;
    }

    /* メニューが開いた時に、リストを順番に表示する遅延アニメーション */
    .nav-overlay.active .nav-list li:nth-child(1) {
        transition-delay: 0.1s;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-overlay.active .nav-list li:nth-child(2) {
        transition-delay: 0.2s;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-overlay.active .nav-list li:nth-child(3) {
        transition-delay: 0.3s;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-overlay.active .nav-list li:nth-child(4) {
        transition-delay: 0.4s;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-overlay.active .nav-list li:nth-child(5) {
        transition-delay: 0.5s;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-overlay.active .nav-list li:nth-child(6) {
        transition-delay: 0.6s;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-overlay.active .nav-list li:nth-child(7) {
        transition-delay: 0.7s;
        opacity: 1;
        transform: translateY(0);
    }




    



    /* --- ヘッダーロゴ画像のスタイル（新規追加） --- */
    .logo-container {
        display: flex;
        align-items: center;
        height: 100%;
        /* ヘッダーの高さに合わせる */
    }

    .logo-img {
        /* ロゴの高さ（大きさ）をここで調整します */
        height: 85px;
        /* 例: 40pxくらいがちょうど良いバランスです */
        width: auto;
        /* 横幅は自動調整 */
        display: block;

        /* 任意：もしロゴの余白が気になる場合はマイナスマージンで調整 */
        /*margin-left: -5px; */
        margin: -10px;
    }

    .header-icons {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .icon-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #f0f0f0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        cursor: pointer;
    }

    .menu-btn {
        background: var(--primary-navy);
        color: white;
    }


    /* --- フッター --- */
    footer {
        background: #222;
        color: #999;
        padding: 40px 0;
        text-align: center;
        font-size: 0.8rem;
    }


    @media (min-width: 768px) {
        .hero {
            height: 70vh;
        }

        .news-item {
            flex-direction: row;
            align-items: center;
        }

        .news-meta {
            width: 200px;
        }

        .container,
        .about-container {
            max-width: 900px;
            margin: 0 auto;
        }
    }

    /* --- 固定フッター (LINE/電話) --- */
    .fixed-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        display: flex;
        z-index: 1000;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    }

    .footer-btn {
        flex: 1;
        /* 幅を50%ずつに */
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 0.9rem;
        gap: 8px;
        transition: opacity 0.2s;
    }

    .footer-btn:active {
        opacity: 0.8;
    }

    .btn-line {
        background-color: var(--line-green);
    }

    .btn-phone {
        background-color: var(--primary-blue);
    }

    /* アイコン用SVGスタイル */
    .icon-svg {
        width: 24px;
        height: 24px;
        fill: white;
    }



    /* スクリーンサイズが1000px以上の場合に適用 */
    @media screen and (min-width: 1000px) {
        .flex-container {
            display: flex;
            /* justify-content: space-between; */
        }

        main {
            border-right: 3px solid #003366;
            width: 50%;
            margin-left: 5%;

        }
    }

    @media screen and (min-width: 1000px) {
        .item3 {
            position: fixed;
            top: 75px;
            left: 75%;
            display: block;
            width: 45%;
            max-height: 70vh;
            align-items: center;
            margin: 0 auto;
            /* margin-bottom:60px; */
            background-color: white;
            /* text-align: center; */
            transform: translate(-43%, 0%);
            z-index:2;
        }
    }

    @media screen and (min-width: 1000px) {
        :root {
            --text-color: #333;
            --accent-orange: #cf8d3c;
            /* チラシや価格の色 */
            --accent-blue: #1b3666;
            /* リンクやボタンの色 */
            --bg-gray: #f4f4f4;
        }

        .body {
            font-family: 'Noto Sans JP', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #eee;
            color: var(--text-color);
        }
    }

    @media screen and (min-width: 1000px) {
        .container-item3 {
            margin: 0 auto;
            background-color: #fff;
            padding: 20px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            width: 100%;
        }
    }

    /* --- 上部：最新チラシ --- */
    @media screen and (min-width: 1000px) {
        .top-banner {
            text-align: center;
            padding: 15px 0;
            font-weight: bold;
            color: #888;
            font-size: 1.1rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }
    }

    @media screen and (min-width: 1000px) {
        .top-banner a {
            color: var(--accent-orange);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
        }
    }

    @media screen and (min-width: 1000px) {
        .top-banner .lines {
            color: var(--accent-orange);
            font-weight: normal;
            font-size: 1.5rem;
        }

        .divider {
            border: none;
            border-top: 1px solid #333;
            margin: 10px 0 20px 0;
        }
    }

    /* --- 特徴リスト --- */
    @media screen and (min-width: 1000px) {
        .feature-list {
            list-style: none;
            padding: 0;
            width: 60%;
            margin: 0 auto;
            line-height: 1;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
    }

    @media screen and (min-width: 1000px) {
        .feature-icon {
            width: 50px;
            text-align: center;
            font-size: 2rem;
            margin-right: 15px;
            color: #444;
        }

        .feature-text {
            display: flex;
            flex-direction: column;
        }
    }

    @media screen and (min-width: 1000px) {
        .feature-sub {
            font-size: 0.85rem;
            font-weight: bold;
            color: #444;
        }

        .feature-main {
            font-size: 1.1rem;
            font-weight: bold;
            color: #222;
        }
    }

    @media screen and (min-width: 1000px) {
        .orange-text {
            color: var(--accent-orange);
        }
    }

    /* --- ナビゲーションボタン --- */
    @media screen and (min-width: 1000px) {
        .body .nav-buttons {
            display: flex;
            justify-content: space-around;
            margin: 30px 0;
        }

        .body .nav-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: var(--accent-blue);
            font-weight: bold;
            font-size: 1.1rem;
        }

        .nav-btn i {
            font-size: 1.5rem;
        }
    }

    @media screen and (min-width: 1000px) {

        /* --- 下部：悩み訴求セクション --- */
        .concern-section {
            position: relative;
            margin-top: 60px;
            /* 吹き出し用のスペース */
            padding-bottom: 20px;
        }

        /* 吹き出し部分 */
        .speech-bubble {
            position: absolute;
            top: -45px;
            left: 50%;
            transform: translateX(-50%);
            background: #fff;
            border: 2px solid #000;
            border-radius: 50px;
            padding: 10px 20px;
            font-weight: bold;
            font-size: 0.95rem;
            text-align: center;
            z-index: 10;
            white-space: nowrap;
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
        }
    }

    @media screen and (min-width: 1000px) {

        /* 吹き出しのしっぽ */
        .speech-bubble::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 40%;
            border-width: 10px 10px 0;
            border-style: solid;
            border-color: #000 transparent;
            display: block;
            width: 0;
        }

        /* 女性スタッフ画像 (位置調整) */
        .staff-image {
            position: absolute;
            top: 35px;
            right: 50px;
            width: 140px;
            /* 画像サイズ */
            z-index: 5;
        }
    }

    @media screen and (min-width: 1000px) {

        /* コンテンツボックス */
        .concern-box {
            border: 2px solid var(--accent-blue);
            border-radius: 20px;
            background-color: #eef2f6;
            /* 薄いグレー/ブルーの背景 */
            padding: 40px 20px 20px 20px;
            position: relative;
            z-index: 1;
        }
    }

    @media screen and (min-width: 1000px) {
        .concern-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .concern-list li {
            position: relative;
            padding-left: 15px;
            margin-bottom: 12px;
            font-weight: bold;
            color: var(--accent-blue);
            font-size: 1rem;
        }

        .concern-list li::before {
            content: '・';
            position: absolute;
            left: 0;
        }
    }

    @media screen and (min-width: 1000px) {
        .concern-sub {
            display: block;
            font-size: 0.85rem;
            color: #888;
            margin-left: 15px;
            margin-top: -8px;
            margin-bottom: 12px;
            font-weight: normal;
        }

        footer {
            width: 50%;
            max-width:650px;
            margin-left: 5%;
            border-right: 4px solid #003366;
            /* z-index: -2; */
        }
    }

    @media screen and (min-width:1427px) {
        .flex-container {
            justify-content: center;
        }

        main {
            width: 50%;
            margin: auto;
            align-items: center;
            border-right: 4px solid #003366;
            border-left: 4px solid #003366;
        }
    }

    @media screen and (min-width:1427px) {
        .item1 {
            position: fixed;
            width: 27%;
            top: 40%;
            left: 0%;
            /* transform: translate(-25%, -10%); */
            align-items: center;
            /* box-sizing: border-box; */
            display: block;
            margin: auto;
            justify-content: center;
            z-index: 2;
        }
    }

    @media screen and (min-width:1427px) {
        .item3 {
            width: 25%;
            left: 84%;
        }
            .feature-list {
            width: 75%;
        }
            .staff-image {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 80px;
    }

    @media screen and (min-width:1427px) {
        footer {
            /* width: 36%; */
            margin: auto;
            align-items: center;
            /* padding: 20px; */
            border-left: 4px solid #003366;
    }
}
}




/* お知らせと＋ボタンを横並びにする */
.menu-row {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 15px; /* 文字とボタンの間隔 */
  position: relative;
}

/* ＋ボタンのデザイン */
.submenu-btn {
display: inline-flex;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
border: 1px solid rgba(255,255,255,0.5); /* 薄い白い枠線 */
border-radius: 50%;
color: white;
font-size: 1.2rem;
cursor: pointer;
transition: transform 0.3s ease; /* 回転アニメーション用 */
margin-left:2rem;
}

/* 開いた時に＋ボタンを×（45度回転）にする */
.submenu-btn.open {
  transform: rotate(45deg);
  background-color: rgba(255,255,255,0.1);
}

/* サブメニューの初期状態（閉じた状態） */
.submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0; /* 高さを0にして隠す */
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
}

/* サブメニューが開いた時の状態 */
.submenu.open {
  max-height: 300px; /* 十分な高さを確保 */
  opacity: 1;
  margin-top: 15px; /* 親メニューとの隙間 */
}

/* サブメニュー内のリストスタイル上書き */
.submenu li {
  margin: 10px 0 !important; /* 親のmargin設定を上書きして少し狭く */
  opacity: 1 !important;     /* 親のアニメーション設定による透明化を解除 */
  transform: none !important; /* 親のアニメーション設定による移動を解除 */
}

/* サブメニュー内のリンク文字サイズ */
.submenu a {
  font-size: 1.1rem; /* 親メニューより少し小さく */
  font-weight: normal;
  color: #ddd; /* 少しグレーにして階層感を出す */
}