/*メインヘッダー*/
        .battery-landing {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
        }

        .battery-landing * {
            box-sizing: border-box;
        }

        .battery-container {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        /* メインコンテンツ */
        .battery-content {
            flex: 1;
            padding-top: 0px;
        }

        .battery-hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 2rem 0 2em;
            position: relative;
			margin: -5px 0 0 0;
        }

        .battery-hero-inner {
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .battery-text-content {
            opacity: 0;
            transform: translateY(50px);
            animation: batteryFadeInUp 1s ease-out 0.5s forwards;
        }

        .battery-text-content h1 {
            font-size: 3rem;
            font-weight: 700;
            color: white;
            margin: 0 0 1rem 0;
            line-height: 1.2;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .battery-text-content .battery-subtitle {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            font-weight: 400;
        }

        .battery-text-content p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .battery-cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .battery-cta-button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .battery-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .battery-cta-button:hover::before {
            left: 100%;
        }

        /* 商品表示エリア */
        .battery-product-showcase {
            position: relative;
            perspective: 1000px;
        }

        .battery-product-container {
            position: relative;
            width: 100%;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* 商品切り替えタブ */
        .battery-product-switcher {
            width: 100%;
            max-width: 500px;
        }

        .battery-product-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .battery-tab-button {
            padding: 0.75rem 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            font-weight: 500;
            font-size: 0.9rem;
        }

        .battery-tab-button:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .battery-tab-button.active {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .battery-product-display {
            position: relative;
            height: 500px;
        }

        .battery-product-card {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            opacity: 0;
            transform: scale(0.9) translateY(20px);
            transition: all 0.5s ease;
            pointer-events: none;
        }

        .battery-product-card.active {
            opacity: 1;
            transform: scale(1) translateY(0);
            pointer-events: auto;
        }

        .battery-product-card .battery-product-image {
            width: 350px;
            height: 350px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            margin-bottom: 1.5rem;
        }

        .battery-product-card .battery-product-image::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: rotate(-45deg);
            animation: batteryShine 3s ease-in-out infinite;
        }

        .battery-product-card .battery-product-placeholder {
            width: 280px;
            height: 280px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            text-align: center;
            padding: 1rem;
        }

        .battery-product-info {
            text-align: center;
            color: white;
            max-width: 400px;
        }

        .battery-product-info h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }

        .battery-product-info p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .battery-product-card .battery-product-image:hover {
            transform: scale(1.05) rotateY(-5deg);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
        }

        /* フローティング要素 */
        .battery-floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .battery-floating-element {
            position: absolute;
            width: 20px;
            height: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: batteryFloat 2s ease-in-out infinite;
        }

        .battery-floating-element:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .battery-floating-element:nth-child(2) {
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }

        .battery-floating-element:nth-child(3) {
            top: 80%;
            left: 20%;
            animation-delay: 4s;
        }

        /* パーティクル効果 */
        .battery-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
        }

        .battery-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            animation: batteryParticleFloat 8s linear infinite;
        }

        /* アニメーション */
        @keyframes batteryFadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes batteryShine {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(-45deg);
            }
            50% {
                transform: translateX(100%) translateY(100%) rotate(-45deg);
            }
            100% {
                transform: translateX(-100%) translateY(-100%) rotate(-45deg);
            }
        }

        @keyframes batteryFloat {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.7;
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
                opacity: 1;
            }
        }

        @keyframes batteryParticleFloat {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* レスポンシブデザイン */
        @media (max-width: 768px) {
            .battery-hero-inner {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .battery-text-content h1 {
                font-size: 254%;
            }

            .battery-product-tabs {
                flex-direction: column;
                gap: 0.5rem;
            }

            .battery-tab-button {
                font-size: 0.8rem;
                padding: 0.5rem 1rem;
            }

            .battery-product-card .battery-product-image {
                width: 280px;
                height: 280px;
            }

            .battery-product-card .battery-product-placeholder {
                width: 220px;
                height: 220px;
                font-size: 1rem;
            }

            .battery-nav-links {
                display: none;
            }
        }
		}
		@media (max-width: 427px) {
		    .battery-text-content h1 {
                font-size: 214%;
            }

		}
/*利用シーン*/
		#scene {
			background: #2aabe1;
			padding: 13px 0 38px 0;
			margin: 0 0 0 0;
			color: #fff;
			border-radius: 50px;
		}
/*導入事例*/
        .data-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 30px;
            text-align: center;
        }

        .header h1 {
            color:#fff;
            font-size: 2.5rem;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .filter-section {
            padding: 30px;
            background: #f8f9fa;
            border-bottom: 1px solid #e9ecef;
        }

        .filter-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .filter-tab {
            padding: 12px 24px;
            background: #e9ecef;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
            font-weight: 500;
        }

        .filter-tab.active {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

        .search-controls {
            display: flex;
            gap: 15px;
            align-items: center;
            flex-wrap: wrap;
        }
        .search-input {
            display: none !important;
         }   
        .search-input {
            flex: 1;
            min-width: 250px;
            padding: 12px 20px;
            border: 2px solid #e9ecef;
            border-radius: 25px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            border-color: #667eea;
        }

        .filter-select {
            padding: 12px 20px;
            border: 2px solid #e9ecef;
            border-radius: 25px;
            font-size: 1rem;
            background: white;
            min-width: 150px;
        }

        .content1 {
            padding: 10px;
        }

        .data-grid {
            display: grid;
            gap: 20px;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        }

        .data-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }

        .data-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .card-header {
            display: flex;
            justify-content: between;
            align-items: center;
            margin-bottom: 20px;
        }

        .card-type {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .card-type.purchase {
            background: #e8f5e8;
            color: #2e7d32;
        }

        .card-type.rental {
            background: #e3f2fd;
            color: #1976d2;
        }

        .card-field {
            margin-bottom: 15px;
        }

        .field-label {
            font-weight: 600;
            color: #495057;
            margin-bottom: 5px;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .field-value {
            color: #212529;
            font-size: 1rem;
            line-height: 1.4;
        }

        .field-value.highlight {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }

        .no-results {
            text-align: center;
            padding: 60px 20px;
            color: #6c757d;
        }

        .no-results h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }

            .filter-section {
                padding: 20px;
            }

            .search-controls {
                flex-direction: column;
                align-items: stretch;
            }

            .search-input {
                min-width: auto;
            }

            .content1 {
                padding: 0px;
            }

            .data-grid {
                padding-left: 15px; 
               padding-right: 15px; 
           }
            .data-card {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {


            .header {
                padding: 20px;
            }

            .header h1 {
                font-size: 1.8rem;
            }

            .filter-tabs {
                justify-content: center;
            }

            .filter-tab {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }

        /* アニメーション */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .data-card {
            animation: fadeIn 0.5s ease-out;
        }

/*商品ラインナップ*/
        .specs-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .specs-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .specs-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .specs-subtitle {
            font-size: 1.1rem;
            color: #7f8c8d;
            margin-bottom: 30px;
        }

        .filter-section {
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }

        .filter-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .filter-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .filter-btn {
            padding: 8px 16px;
            border: 2px solid #3498db;
            background: white;
            color: #3498db;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .filter-btn:hover {
            background: #3498db;
            color: white;
            transform: translateY(-2px);
        }

        .filter-btn.active {
            background: #3498db;
            color: white;
        }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .product-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        /* 商品画像の設定 - 以下に各商品の画像パスを設定してください */
        .product-image[data-product="PGJ2600PROMAX"] {
            background-image: url('https://energy-i-sta.com/wp/wp-content/uploads/2025/07/PGJ2600PROMAX.jpg');
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
        }

        .product-image[data-product="DELTA Pro"] {
            background-image: url('https://energy-i-sta.com/wp/wp-content/uploads/2025/07/DELTAPro.jpg');
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
        }

        .product-image[data-product="POWER YIILE 3"] {
            background-image: url('https://energy-i-sta.com/wp/wp-content/uploads/2025/07/POWERYIILE3.jpg');
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
        }

        .product-image[data-product="PR-HUG-5100BK"] {
            background-image: url('https://energy-i-sta.com/wp/wp-content/uploads/2025/07/PR-HUG-5100BK.jpg');
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
        }

        .product-image[data-product="PGJ5200PRO（EP500PRO）"] {
            background-image: url('https://energy-i-sta.com/wp/wp-content/uploads/2025/07/PGJ5200PRO.jpg');
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
        }

        .product-image[data-product="PGJ4000WPRO"] {
            background-image: url('https://energy-i-sta.com/wp/wp-content/uploads/2025/07/PGJ4000WPRO.jpg');
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
        }

        .product-image[data-product="PGJ7000WPRO"] {
            background-image: url('https://energy-i-sta.com/wp/wp-content/uploads/2025/07/PGJ4000WPRO.jpg');
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
        }

        .product-image[data-product="P5000(Pro)"] {
            background-image: url('https://energy-i-sta.com/wp/wp-content/uploads/2025/07/P5000Pro.jpg');
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
        }

        .product-image[data-product="PVS-6000"] {
            background-image: url('https://energy-i-sta.com/wp/wp-content/uploads/2025/07/PVS-6000.jpg');
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
        }

        .product-image[data-product="YETI 6000X 120V BT224"] {
            background-image: url('https://energy-i-sta.com/wp/wp-content/uploads/2025/07/YETI6000X120V　BT224.jpg');
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* 画像が設定されている場合はテキストを非表示に */
        .product-image[data-product]:not([data-product=""]) span {
            display: none;
        }

        .product-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .product-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

        .product-name {
            background: #2c3e50;
            color: white;
            padding: 15px 20px;
            font-size: 1.2rem;
            font-weight: 600;
            text-align: center;
        }

        .product-specs {
            padding: 20px;
        }

        .spec-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #f1f3f4;
        }

        .spec-row:last-child {
            border-bottom: none;
        }

        .spec-label {
            font-weight: 600;
            color: #2c3e50;
            font-size: 0.9rem;
        }

        .spec-value {
            font-weight: 500;
            color: #34495e;
            font-size: 0.9rem;
            text-align: right;
        }

        .capacity-highlight {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .solar-support {
            color: #27ae60;
            font-weight: 600;
        }

        .mobile-table {
            display: none;
        }

        @media (max-width: 768px) {
            .specs-title {
                font-size: 2rem;
            }

            .specs-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .product-card {
                margin: 0 10px;
            }

            .filter-buttons {
                justify-content: center;
            }

            .filter-btn {
                font-size: 0.8rem;
                padding: 6px 12px;
            }

            .mobile-table {
                display: block;
                background: white;
                border-radius: 12px;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
                overflow: hidden;
                margin: 10px;
            }

            .mobile-table-header {
                background: #2c3e50;
                color: white;
                padding: 15px;
                text-align: center;
                font-weight: 600;
            }

            .mobile-table-body {
                padding: 15px;
            }

            .mobile-spec-row {
                display: flex;
                justify-content: space-between;
                padding: 8px 0;
                border-bottom: 1px solid #f1f3f4;
            }

            .mobile-spec-row:last-child {
                border-bottom: none;
            }
        }

        @media (max-width: 480px) {
            .specs-wrapper {
                padding: 15px;
            }

            .specs-title {
                font-size: 1.8rem;
            }

            .filter-section {
                padding: 15px;
            }

            .product-image {
                height: 150px;
                font-size: 1rem;
            }

            .spec-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }

            .spec-value {
                text-align: left;
            }
        }

        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .loading {
            text-align: center;
            padding: 40px;
            color: #7f8c8d;
        }

/*問い合わせボタンなど*/
        .button-container {
            display: flex;
            gap: 20px;
            max-width: 600px;
            width: 100%;
            justify-content: center;
            margin: 0 auto;
        }

        .contact-button {
            flex: 1;
            background: #48b6af;
            color: white;
            border: none;
            padding: 18px 24px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(72, 182, 175, 0.4);
            position: relative;
            overflow: hidden;
        }

        .contact-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .contact-button:hover::before {
            left: 100%;
        }

        .contact-button:hover {
            background: #3da39c;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(72, 182, 175, 0.6);
        }

        .contact-button:active {
            transform: translateY(0);
            box-shadow: 0 4px 15px rgba(72, 182, 175, 0.4);
        }
        .contact-button span {
            color: #fff;
        }
        .button-icon {
            width: 20px;
            height: 20px;
            fill: #fff;
            transition: transform 0.3s ease;
        }

        .contact-button:hover .button-icon {
            transform: scale(1.1);
        }

        .info-icon {
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #48b6af;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        .info-icon span {
            color: #fff;
        }
        .contact-button:hover .info-icon {
            background: #f0f0f0;
            transform: scale(1.1);
        }

        /* スマホ対応 */
        @media (max-width: 600px) {
            .button-container {
                flex-direction: row;
                gap: 15px;
                justify-content: center;
            }
            
            .contact-button {
                padding: 16px 20px;
                font-size: 15px;
            }
        }

        @media (max-width: 400px) {
            .contact-button {
                padding: 14px 18px;
                font-size: 14px;
            }
            
            .button-icon {
                width: 18px;
                height: 18px;
            }
            
            .info-icon {
                width: 18px;
                height: 18px;
                font-size: 12px;
            }
        }

        /* アニメーション */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .button-container {
            animation: fadeInUp 0.6s ease-out;
        }

        .contact-button:nth-child(1) {
            animation-delay: 0.1s;
        }

        .contact-button:nth-child(2) {
            animation-delay: 0.2s;
        }

/*Q&A*/
        .qa-wrapper {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        .qa-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .qa-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .qa-subtitle {
			font-size: 1.1rem;
			color: #7f8c8d;
			margin-bottom: 30px;
        }

        .qa-search {
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }

        .search-input {
            width: 100%;
            padding: 15px 20px;
            font-size: 1rem;
            border: 2px solid #e9ecef;
            border-radius: 25px;
            outline: none;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
        }

        .qa-container {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .qa-item {
            border-bottom: 1px solid #f1f3f4;
            transition: all 0.3s ease;
        }

        .qa-item:last-child {
            border-bottom: none;
        }

        .qa-item.hidden {
            display: none;
        }

        .qa-question {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            transition: all 0.3s ease;
            position: relative;
        }

        .qa-question:hover {
            background: #f8f9fa;
        }

        .qa-question.active {
            background: #3498db;
            color: white;
        }

        .question-text {
            font-size: 1.1rem;
            font-weight: 600;
            flex: 1;
            padding-right: 15px;
        }

        .qa-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 700;
            color: #6c757d;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .qa-question.active .qa-icon {
            background: white;
            color: #3498db;
            transform: rotate(45deg);
        }

        .qa-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }

        .qa-answer.active {
            max-height: 500px;
            padding: 25px;
        }

        .answer-text {
            font-size: 1rem;
            line-height: 1.7;
            color: #495057;
        }

        .answer-text ul {
            margin: 15px 0;
            padding-left: 20px;
        }

        .answer-text li {
            margin-bottom: 8px;
        }

        .answer-text strong {
            color: #2c3e50;
        }

        .category-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 25px;
        }

        .category-tag {
            padding: 8px 16px;
            background: #e9ecef;
            border-radius: 20px;
            font-size: 0.9rem;
            color: #6c757d;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .category-tag:hover {
            background: #3498db;
            color: white;
        }

        .category-tag.active {
            background: #3498db;
            color: white;
        }

        .no-results {
            text-align: center;
            padding: 40px;
            color: #7f8c8d;
            font-size: 1.1rem;
        }

        .no-results.hidden {
            display: none;
        }

        @media (max-width: 768px) {
            .qa-wrapper {
                padding: 15px;
            }

            .qa-title {
                font-size: 2rem;
            }

            .qa-question {
                padding: 15px 20px;
            }

            .question-text {
                font-size: 1rem;
            }

            .qa-answer.active {
                padding: 20px;
            }

            .category-tags {
                justify-content: center;
            }

            .category-tag {
                font-size: 0.8rem;
                padding: 6px 12px;
            }
        }

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

            .qa-question {
                padding: 12px 15px;
            }

            .question-text {
                font-size: 0.9rem;
            }

            .qa-answer.active {
                padding: 15px;
            }

            .answer-text {
                font-size: 0.9rem;
            }
        }

        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

/*その他*/
.html_header_top.html_header_sticky #main {
     padding-top: 0; 
}
.wat{
	font-size: 1.4em;
  color: #000;
  font-weight: bold;
}

#top .av-section-tab-title {
    padding: 0 10px 0px 10px !important;
}
select {
    width: 100%;
    max-width: 480px;
    margin: 0 auto 20px !important;
    display: block;
    border-radius: 6px;
    border: 1px solid #ccc;
    color: #000000 !important;
}
.point {
    width: 60%;
    margin: 0 auto;
}

 .experience_h2{
	margin: 0 0 -43px 0;
}

#top .iconbox_content_container p {
    font-size: 1.4em;
}
@media only screen and (max-width: 767px) {
	 .guidelineImg{
		width: 100%;
	}
	.iconbox .iconbox_content .iconbox_content_title {
		font-size: 1.5em;
	}
	#top .iconbox_content_container p {
		font-size: 1.3em;
	}
	.point {
		width: 100% !important;
		margin: 0 auto;
	}
}
#after_grid_row_2{
	border: none;
}

.power-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
}
.power-card {
  flex: 1 1 200px;
  max-width: 250px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
}
.power-card img {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}
.power-card b {
  font-size: 1.2em;
  color: #333;
}
.power-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
}
.power-card {
  flex: 1 1 200px;
  max-width: 250px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
}
.power-card img {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}
.power-card b {
  font-size: 1.2em;
  color: #333;
}

/* --- スライド全体の余白調整＆中央寄せ --- */
.avia-content-slider-element-container {
  padding: 0 15px 50px; /* 下にナビ用のスペース確保 */
  max-width: 1200px;
  margin: 0 auto;
}

/* --- 各スライド（カード）全体の見た目 --- */
.avia-content-slider .slide-entry {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100% !important;
}

/* --- 見出し調整 --- */
.avia-content-slider .slide-entry-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

/* --- 画像サイズ：レスポンシブ対応で大きめに --- */
.avia-content-slider .slide-entry img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: contain;
  margin: 0 auto 15px;
}

/* --- テキスト調整 --- */
.avia-content-slider .slide-entry-excerpt p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin: 0 auto 10px auto;
	max-width: 500px;
	text-align: left;
}

/* --- 各スライドラッパーの高さ揃え --- */
.avia-content-slider .slide-entry-wrap {
  min-height: 550px;
  display: flex;
  align-items: stretch;
}

/* --- ドットナビゲーションの位置変更（下に固定） --- */
.avia-content-slider-element-container .avia-slideshow-dots {
  position: absolute !important;
  bottom: 10px !important;
  left: 0 !important;
  width: 100% !important;
  text-align: center !important;
  z-index: 5;
}

/* --- ドットの見た目微調整 --- */
.avia-slideshow-dots .goto-slide {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  border-radius: 50%;
  background: #ccc;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 990px) {
.avia-content-slider-element-container.av-mctzhyk1-3dbfdcca1252df644c3b05456fb682be .slide-entry {
        margin: 0 auto;
    }
}
.avia-slideshow-dots .goto-slide.active {
  background: #0073aa;
}

/* --- レスポンシブ：スマホ用調整 --- */
@media screen and (max-width: 768px) {
  .avia-content-slider .slide-entry {
    padding: 15px;
  }

  .avia-content-slider .slide-entry-title {
    font-size: 1.8em;
  }

  .avia-content-slider .slide-entry-excerpt p {
    font-size: 14px;
  }

  .avia-content-slider .slide-entry img {
    max-height: 310px;
  }

  .avia-content-slider .slide-entry-wrap {
    min-height: auto;
  }
}
@media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .container {
        width: 95%;
        max-width: 95%;
    }
}
.introductionTitle {
  font-size: 1.5em;
  font-weight: 700;
  color: #222;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 15px;
  line-height: 1.3;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}
/* アイコングリッド回転禁止 */

/* カラフルなアンダーライン */
.introductionTitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 400px;
  background: linear-gradient(to right, #0073aa, #00b7ff);
  border-radius: 2px;
}

.p-bnr__img{
    margin: 0px auto -3px auto;
    display: block;
}

#example{
	max-width: 600px;
	margin: 0 auto;
}

.content{
    padding: 0 0 20px 0;
}

.formTitle{
	background: #b4b4b4;
	padding: 3px 0 3px 5px;
	color: #fff;
}
.wpcf7-select{
	margin: 1px 0 0 0 !important;
}

#pulldown select{
	padding: 20px 0px 20px 13px !important;
	font-size: 1.2rem !important;
	background-color: #dff1ff !important;
	width: 83%;
}