/*
Theme Name: Cleaning Elementor Base
Theme URI: 
Author: AI Assistant
Description: 究極にシンプルなElementor専用ベーステーマ（エラー回避用軽量版）
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cleaning-elementor
*/

/* Elementorのスタイルを優先するため、テーマ側のCSSは最小限にします */
:root {
    --color-base: #FFFFFF;
    --color-base-light: #F8F9FA;
    --color-accent-navy: #1B365D;
    --color-accent-green: #2ECC71;
    --color-accent-green-dark: #27AE60;
    --color-text-main: #333333;
    --color-text-muted: #666666;
    --color-border: #E5E5E5;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
    background-color: var(--color-base);
    color: var(--color-text-main);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#content {
    flex-grow: 1;
}

/* ヘッダーのミニマルスタイル */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-branding a {
    text-decoration: none;
    color: #0056b3;
    font-size: 24px;
    font-weight: bold;
}

.header-contact {
    font-weight: bold;
    color: #0056b3;
    font-size: 1.1em;
}

/* ナビゲーションのミニマルスタイル */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-navigation li {
    margin-left: 20px;
}

.main-navigation a {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
}

.main-navigation a:hover {
    color: #0056b3;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
    .site-header {
        flex-direction: column;
        text-align: center;
    }

    .site-branding {
        margin-bottom: 10px;
    }

    .main-navigation {
        width: 100%;
        margin-top: 10px;
    }

    .main-navigation ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    .main-navigation li {
        margin: 5px 10px;
    }
}

/* フッターのミニマルスタイル */
.site-footer {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eaeaea;
    font-size: 14px;
    color: #666666;
}

/* PC用メニュー：幅が768px以下になったら隠す */
.pc-menu {
    display: flex;
}

@media screen and (max-width: 768px) {
    .pc-menu {
        display: none; /* 重なる原因のメニューを非表示に */
    }
    .sp-menu-icon {
        display: block; /* 代わりにスマホ用アイコンを表示 */
    }
}