@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/


/*
Theme Name: Hitoiki Header Footer
Description: ひといきカウンセリング用ヘッダー・フッタースタイル（SWELL用）
Version: 1.0
*/

/* ===========================================
   ヘッダースタイル
   =========================================== */

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

/* ヘッダー */
.hitoiki-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hitoiki-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.hitoiki-logo {
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    display: block;
}

.hitoiki-logo:hover {
    color: white;
    opacity: 0.9;
}

.hitoiki-logo-sub {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    opacity: 0.85;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.hitoiki-logo-main {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.hitoiki-nav-links {
    display: flex;
    gap: 0.25rem;
    list-style: none;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
}

.hitoiki-nav-links > li {
    position: relative;
}

.hitoiki-nav-links a {
    color: white;
    text-decoration: none;
    transition: background 0.2s;
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
    font-size: 0.92rem;
    display: block;
    white-space: nowrap;
}

.hitoiki-nav-links a:hover {
    background: rgba(255,255,255,0.18);
    color: white;
}

.hitoiki-nav-btn-register {
    background: white !important;
    color: #667eea !important;
    font-weight: bold;
    border-radius: 6px;
    padding: 0.4rem 0.85rem;
}

.hitoiki-nav-btn-register:hover {
    background: #f0f4ff !important;
    color: #667eea !important;
}

/* ハンバーガーメニュー */
.hitoiki-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hitoiki-hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: 0.3s;
}

.hitoiki-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hitoiki-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hitoiki-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    .hitoiki-hamburger {
        display: flex;
    }
    
    .hitoiki-nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 60px);
        background: #1a1a2e;
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        transition: left 0.3s;
        overflow-y: auto;
        z-index: 999;
    }
    
    .hitoiki-nav-links.active {
        left: 0;
    }
    
    .hitoiki-nav-links > li {
        width: 100%;
    }
    
    .hitoiki-nav-links a {
        width: 100%;
        text-align: left;
        padding: 0.75rem 1rem;
        border-radius: 6px;
    }
}

/* ===========================================
   フッタースタイル
   =========================================== */

.hitoiki-footer {
    background: #2d3748;
    color: #e2e8f0;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.hitoiki-footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hitoiki-footer-brand-sub {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-bottom: 0.2rem;
    letter-spacing: 0.05em;
}

.hitoiki-footer-brand-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.hitoiki-footer-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    opacity: 0.8;
    margin: 0;
}

.hitoiki-footer-col-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #cbd5e0;
}

.hitoiki-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hitoiki-footer-links li {
    margin-bottom: 0.6rem;
}

.hitoiki-footer-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.88rem;
    opacity: 0.8;
    transition: opacity 0.2s, color 0.2s;
}

.hitoiki-footer-links a:hover {
    opacity: 1;
    color: #cbd5e0;
}

.hitoiki-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
}

.hitoiki-footer-bottom p {
    margin: 0;
}

.hitoiki-footer-bottom-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.hitoiki-footer-bottom-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.hitoiki-footer-bottom-links a:hover {
    color: #cbd5e0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hitoiki-footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hitoiki-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hitoiki-footer-bottom-links {
        justify-content: center;
    }
}
