@charset "UTF-8";
/* CSS Document */

/* 基本設定 */
body {
    font-family: 'Noto Sans JP', sans-serif;
    scroll-behavior: smooth;
}

        /* --- External Style Sheet Simulation (CSS Section) --- */
        body {
            font-family: 'Noto Sans JP', sans-serif;
            scroll-behavior: smooth;
        }

        /* Hero Section Styling */
        .hero-gradient {
            background: linear-gradient(rgba(0, 50, 100, 0.4), rgba(0, 50, 100, 0.4)), 
                        url('../img/photo-1486006920555-c77dcf18193c.avif');
            background-size: cover;
            background-position: center;
        }

        .section-padding {
            padding: 80px 20px;
        }

        /* Map responsive container */
        .map-container {
            position: relative;
            padding-bottom: 75%; /* 4:3 Aspect Ratio */
            height: 0;
            overflow: hidden;
            border-radius: 1.5rem;
        }
        
        .map-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* Custom UI Elements */
        .strength-card {
            transition: all 0.3s ease;
        }
        
        .strength-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
        }
