/*
Theme Name: super-awa grinder-man v202505
Theme URL: http://1kc.jp
Author: Hitoshi Taguchi
Version: 1.0
*/


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Helvetica Neue', Arial, 'Noto Sans JP', 'Hiragino Sans', Meiryo, sans-serif;
            background-color: #f2f1ec;
            color: #000;
            line-height: 1.6;
        }

        /* ヒーローセクション */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

        .logo-container {
            /* ギミック関連のスタイルを削除 */
            position: relative;
            z-index: 1;
        }

        .logo {
            width: 60vw;
            height: auto;
            max-width: 800px;
            min-width: 300px;
        }

        .logo .st0 {
            fill: #ffffff;
        }

        /* コンテンツセクション */
        .section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

        .section:last-of-type {
            border-bottom: none;
        }

        .section h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
            text-align: center;
            font-weight: 300;
        }

        .company-description {
            font-size: 1.2rem;
            text-align: left;
            line-height: 1.8;
            margin-bottom: 60px;
        }

        .company-description h3,
        .company-description h4,
        .company-description h5,
        .company-description p {
            text-align: left;
        }

        .contact-info {
            text-align: center;
            font-size: 1.2rem;
        }

        .contact-info h3 {
            margin-bottom: 20px;
            font-size: 1.5rem;
            font-weight: 500;
            display: none;
        }

     

        .company-info {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 20px;
            margin-top: 40px;
        }

        .company-info dt {
            font-weight: bold;
            padding: 15px 30px 0px 0;
            text-align: right;
        
        }

        .company-info dd {
            padding: 15px 0;
        }
        .contact-email{
            text-align: center !important;
            text-decoration: underline;
            font-weight: 500;
        }
        /* フッター */
        footer {
            padding: 60px 20px 40px;
			background-color: #000000;
			color: #ffffff;
			position: relative;
			overflow: hidden;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .footer-links a {
			color:rgb(175, 175, 175);
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s ease;
        }

        .footer-links a:hover {
            opacity: 0.7;
        }

        .language-selector {
            margin: 30px 0;
        }

        .language-selector a {
            color: #ffffff;
            text-decoration: none;
            margin: 0 15px;
            font-weight: 500;
            transition: opacity 0.3s ease;
        }

        .language-selector a:hover,
        .language-selector a.active {
            opacity: 0.7;
            text-decoration: underline;
        }

        .copyright {
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* レスポンシブ */
        @media (max-width: 768px) {
            .section {
                padding: 60px 20px;
            }

            .section h2 {
                font-size: 2rem;
            }

            .company-info {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .footer-links {
                flex-direction: column;
                gap: 20px;
                display: none;
            }

            .logo {
                width: 80vw;
                min-width: 250px;
                height: auto;
            }
            .company-info dt {
                padding: 15px 0 15px 0;
                text-align: left;
            }
            .company-info dd {
                padding: 0 15px 15px 0;
            }
        }

        @media (max-width: 480px) {
            .section h2 {
                font-size: 1.8rem;
            }

            .company-description {
                font-size: 1.1rem;
            }

            .logo {
                width: 60vw;
                min-width: 200px;
                height: auto;
            }
        }
