/*
Theme Name: web-catalog
Author: SOFT EASA Inc.
Description: 
Version: 1.04
*/

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #777;
}

#site-header {
    height: 50px;
    background-color: #fff;
    width: 100%;
    display: flex;
    justify-content: center; /* 水平方向にセンタリング */
    align-items: center; /* 垂直方向にセンタリング */
    text-align: center; /* テキストを中央揃えにする */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* ヘッダーの下に影を追加 */
}

.header-title {
    margin: 0;
    font-size: 1em;
    color:#333;
}

#flipbook-content.flipbook-fullscreen {
    flex-grow: 1;
    width: 100%;
    height: 100vh; /* ヘッダー分を引いた高さに調整 */
    overflow: hidden; /* コンテンツがはみ出さないようにする */
    display: flex;
    flex-direction: column;
}

.flipbook-container {
    flex-grow: 1; /* 残りの高さをコンテンツに割り当てる */
    overflow: auto; /* 必要に応じてスクロールを許可 */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 404ページのスタイル */
.error-404 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    text-align: center;
    color: #333;
}

.error-container {
    max-width: 600px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.error-title {
    font-size: 96px;
    font-weight: bold;
    color: #e74c3c;
}

.error-message {
    font-size: 24px;
    margin-bottom: 20px;
}
