/* ========================================
   伊藤農園 自社サイト フッター
   ======================================== */
   
@charset "UTF-8";


        .it-footer {
            background: #fff;
            border-top: 1px solid #eee;
            margin: 40px 0;
        }

        .it-footer__main {
            padding: 30px 0 30px 30px;
        }

        .it-footer__grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
        }

        .it-footer__logo {
            margin-bottom: 25px;
        }

        .it-footer__address {
            font-size: 13px;
            font-style: normal;
            line-height: 1.8;
            color: #666;
            margin-bottom: 25px;
        }

        .it-footer__sns {
            display: flex;
            gap: 15px;
        }

        .it-footer__sns a {
            color: #333;
            transition: color 0.3s ease;
        }

        .it-footer__sns a:hover {
            color: var(--it-color-primary);
        }

        .it-footer__nav-title {
            font-size: 15px;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .it-footer__nav-title::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--it-color-primary);
        }

        .it-footer__nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .it-footer__nav-list li {
            margin-bottom: 12px;
        }

        .it-footer__nav-list li a {
            font-size: 13px;
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .it-footer__nav-list li a:hover {
            color: var(--it-color-primary);
            text-decoration: underline;
        }

        .it-footer__bottom {
            background: #fdfdfd;
            border-top: 1px solid #f0f0f0;
            padding: 20px 30px;
        }

        .it-footer__bottom-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .it-footer__legal {
            display: flex;
            gap: 25px;
        }

        .it-footer__legal a {
            font-size: 12px;
            color: #888;
            text-decoration: none;
        }

        .it-footer__legal a:hover {
            text-decoration: underline;
        }

        .it-footer__copyright {
            font-size: 11px;
            color: #aaa;
            margin: 0;
        }

        @media (max-width: 992px) {
            .it-footer__grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px 20px;
            }
        }

        @media (max-width: 576px) {
            .it-footer__grid {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .it-footer__info {
                margin-bottom: 30px;
            }

            .it-footer__nav {
                border-top: 1px solid #eee;
            }

            .it-footer__nav:last-child {
                border-bottom: 1px solid #eee;
                margin-bottom: 20px;
            }

            .it-footer__nav-title {
                cursor: pointer;
                padding: 15px 30px 15px 0;
                margin-bottom: 0;
            }

            .it-footer__nav-title::before {
                display: none;
            }

            .it-footer__nav-title::after {
                content: '';
                position: absolute;
                right: 10px;
                top: 50%;
                transform: translateY(-50%) rotate(45deg);
                width: 8px;
                height: 8px;
                border-right: 2px solid #333;
                border-bottom: 2px solid #333;
                transition: transform 0.3s ease;
            }

            .it-footer__nav-title.is-open::after {
                transform: translateY(-50%) rotate(225deg);
            }

            .it-footer__nav-list {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease, padding-bottom 0.3s ease;
            }

            .it-footer__bottom-inner {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .it-footer__legal {
                justify-content: center;
            }
        }
