/*
Theme Name: Lightning Child
Theme URI: 
Template: lightning
Description: 
Author: 
Tags: 
Version: 0.6.0
*/

/* ヘッダーを強制表示 */
#site-header,
.site-header,
header.site-header,
header#site-header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ヘッダー背景色の統一 */
.site-header {
    background-color: #ffffff !important;
}

/* スクロール時のヘッダー色も統一 */
.header_scrolled .site-header {
    background-color: #ffffff !important;
}

/* モバイルヘッダーのロゴサイズ調整（修正版） */
@media (max-width: 991.98px) {
    .site-header-logo img {
        max-height: 30px !important;
        width: auto !important;
    }
}

/* issues container h2のモバイル時の幅調整 */
@media (max-width: 768px) {
    .issues .container h2 {
        width: 270px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/*
page-service.php styles
*/

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    background-color: #fff;
    padding: 3rem 2rem;
    border-radius: 8px;
}

.hero {
    background: none;
    box-shadow: none;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: #888;
    text-transform: uppercase;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.issues h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #007bff;
    padding-left: 1rem;
}

.issues p {
    max-width: 800px;
    margin: 1rem 1rem;
}

/* Services Section */
.services h2 {
    margin-bottom: 0.5rem;
}

.service-category {
    margin-bottom: 3rem;
}

.service-category > h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    background-color: #fdfdfd;
}

.service-card h4 {
    font-size: 1.1rem;
    color: #555;
}

.service-card .service-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    flex-grow: 1;
    margin-top: 0;
}

/* Basic service-link styles - lower specificity to allow page-service.css to override */
.service-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-align: center;
    transition: background-color 0.2s, color 0.2s;
    /* Removed border and color definitions to allow page-specific CSS to take precedence */
}

/* Removed hover styles to prevent conflicts with page-service.css */

/* ハンバーガーメニューボタンの開いた状態のスタイル */
.vk-mobile-nav-menu-btn.menu-open {
    background: var(--vk-mobile-nav-menu-btn-close-bg-src) center 50% no-repeat rgba(255, 255, 255);
    }
