/* Apple風ロゴスタイル */

/* 鳩アイコン */
.logo-image-left, .logo-image-right {
    width: 50px;
    height: auto;
    vertical-align: middle;
    opacity: 0.9;
}

.logo-image-left {
    margin-right: 12px;
}

.logo-image-right {
    margin-left: 12px;
}

/* サイトロゴ全体 */
.site-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

/* Apple風タイトル - 洗練されたゴシック体 */
.site-logo h1 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 2rem;
    font-weight: 300;
    font-family: -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'M PLUS 1p', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.15em;
    margin: 0;
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.4),
        0 0 60px rgba(150, 180, 255, 0.2);
    transition: all 0.4s ease;
}

/* ホバー時 - 微かに光る */
.site-logo h1:hover {
    text-shadow: 
        0 0 40px rgba(255, 255, 255, 0.6),
        0 0 80px rgba(150, 180, 255, 0.3);
}

/* スマホ表示 */
@media screen and (max-width: 768px) {
    .logo-image-left, .logo-image-right {
        width: 36px;
        flex-shrink: 0;
    }
    
    .site-logo {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 10px;
    }
    
    .site-logo h1 {
        font-size: 1.3rem;
        letter-spacing: 0.1em;
        word-break: keep-all;
    }
}
