/* プレースホルダー画像のスタイル */
.image-placeholder {
    background-color: #cccccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    font-size: 14px;
    border: 1px solid #999999;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
    line-height: 1.3;
    padding: 5px;
}

.placeholder-logo {
    width: 50px;
    height: 50px;
    font-size: 8px;
}

.placeholder-logo-white {
    width: 100px;
    height: 100px;
    background-color: #333333;
    color: #ffffff;
    font-size: 12px;
}

.placeholder-hero {
    width: 100%;
    height: 600px;
}

.placeholder-cta-background {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.placeholder-president {
    width: 100%;
    height: 400px;
}

.placeholder-member {
    width: 100%;
    height: 200px;
}

.placeholder-gallery {
    width: 100%;
    height: 300px;
}

/* 特定ページのヘッダー画像プレースホルダー */
.placeholder-header {
    width: 100%;
    height: 300px;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
    .image-placeholder {
        font-size: 12px;
    }
    
    .placeholder-hero {
        height: 400px;
    }
    
    .placeholder-president {
        height: 300px;
    }
}