/* ベーススタイル */
body {
    margin: 0;
    padding: 0;
    font-family: "MS PGothic", "Osaka", sans-serif;
    
    /* 背景画像の設定 */
    background-image: url('../img/index/ent_bg2.jpg');
    background-repeat: no-repeat;
    background-position: center center; /* まずは中央に配置 */
    background-size: contain; /* 画像全体が見えるように調整 */
    background-attachment: fixed; /* スクロールしても背景を固定する（推奨） */
    
    color: #333;
    text-align: center;
}

.wrapper {
    width: 950px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.7); /* コンテンツを見やすくするため少し白背景を透過 */
    padding: 20px;
}

header h1 {
    font-size: 18px;
    color: #008eb0;
    margin-bottom: 5px;
}

.sub-text {
    font-size: 12px;
    margin-bottom: 20px;
}

/* メイン画像エリア */
.main-visual {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 30px;
}

.main-visual img {
    width: 280px;
    height: auto;
    border: 1px solid #ccc;
}

/* 中段レイアウト */
.content-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.contact-info .qr-image {
    width: 250px;
}

.fav-btn {
    background-color: #008eb0;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

.entry-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    display: block;
    width: 200px;
    padding: 10px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    border-radius: 5px;
}

.btn.pink {
    background-color: #ff69b4;
}

.btn.gray {
    background-color: #888;
}

/* 説明文 */
.description {
    text-align: left;
    font-size: 13px;
    line-height: 1.6;
    margin: 40px 0;
    padding: 20px;
    border-top: 1px solid #008eb0;
}

/* フッター全体のコンテナ */
.site-footer {
    width: 100%;
    background-color: #fff; /* 背景を白にして清潔感を出す */
    padding: 30px 0 10px;
    margin-top: 50px;
    border-top: 1px solid #eee;
    text-align: center;
}

.footer-inner {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ナビゲーションリンク */
.footer-nav {
    font-size: 12px;
    line-height: 2; /* 2行になった時の間隔を確保 */
    margin-bottom: 20px;
    color: #008eb0; /* リンクの区切り線「｜」の色 */
}

.footer-nav a {
    text-decoration: none;
    color: #008eb0; /* サイトカラーの水色 */
    margin: 0 2px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #ff69b4; /* ホバー時にピンクにする */
    text-decoration: underline;
}

/* フッターロゴ */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px; /* ロゴのサイズは適宜調整してください */
    width: auto;
    opacity: 0.8;
}

/* コピーライト（一番下の黒いバー） */
.copyright-bar {
    background-color: #333; /* 暗めのグレー/黒 */
    color: #fff;
    font-size: 10px;
    padding: 10px 0;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* レスポンシブ対応：画面が狭い時 */
@media (max-width: 768px) {
    .footer-nav {
        font-size: 11px;
    }
}