@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/



        /* 全体のスタイル */
        .footer-wrapper {
            background: linear-gradient(135deg, #4e96c6 0%, #5cbacf 100%);
            color: #fff;
            font-family: 'Noto Sans JP', sans-serif;
            padding: 30px 0;
            margin-top: 40px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        /* サイトマップのスタイル */
        .footer-section {
            width: 23%;
            margin-bottom: 20px;
            min-width: 200px;
        }
        
        .footer-section h3 {
            font-size: 18px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.3);
            padding-bottom: 10px;
            margin-bottom: 15px;
            font-weight: 500;
        }
        
        .footer-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-section ul li {
            margin-bottom: 8px;
        }
        
        .footer-section ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            transition: opacity 0.3s;
            display: block;
            padding: 3px 0;
        }
        
        .footer-section ul li a:hover {
            opacity: 0.7;
        }
        
        .footer-section ul li a::before {
            content: "▶";
            font-size: 10px;
            margin-right: 5px;
            opacity: 0.7;
        }
        
        /* 会社情報のスタイル */
        .company-info {
            width: 100%;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 20px;
            padding-top: 20px;
            text-align: center;
            font-size: 14px;
        }
        
        .company-info p {
            margin: 5px 0;
        }
        
        .company-logo {
            max-width: 200px;
            margin-bottom: 15px;
        }
        
        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .footer-section {
                width: 48%;
            }
        }
        
        @media (max-width: 576px) {
            .footer-section {
                width: 100%;
            }
        }