@charset "utf-8";

/* ==========================================================================
   BFC株式会社様 シーフードショー2026 特設エリア専用CSS（余白修正・ゆっくり版）
   ========================================================================== */

.bfc-sf2026-container {
    max-width: 1000px;
    margin: 30px auto; /* 60pxから30pxに縮小 */
    padding: 0 20px 30px 20px;
    box-sizing: border-box;
    overflow-x: hidden; /* 横スクロールバーの発生を防止 */
}

.bfc-sf2026-container * {
    box-sizing: border-box;
}

/* ★ 変なスペースの元凶：WordPressが勝手に作る空のpタグを強制非表示にする ★ */
.bfc-sf2026-container p:empty,
.bfc-sf2026-container p br:only-child {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.bfc-sf2026-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px; /* 50pxから縮小 */
}

.bfc-sf2026-flex-layout {
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
    gap: 40px; /* 50pxから縮小 */
    margin-bottom: 40px; /* 60pxから縮小 */
    width: 100%;
}

.bfc-sf2026-text-block {
    flex: 1 1 300px;
}

.bfc-sf2026-text-block h3 {
    font-size: 1.6rem;
    font-weight: bold;
    color: #005bac;
    margin-top: 0;
    margin-bottom: 20px;
    border-left: 4px solid #00d2ff;
    padding-left: 15px;
    line-height: 1.4;
}

.bfc-sf2026-text-block p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.bfc-sf2026-image-block {
    flex: 1 1 300px;
}

.bfc-sf2026-img-frame {
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 91, 172, 0.15);
    border-radius: 4px;
    overflow: hidden;
}

.bfc-sf2026-img-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.bfc-sf2026-table-heading {
    font-size: 1.3rem;
    color: #005bac;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: center;
}

.bfc-sf2026-btn-area {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.bfc-sf2026-action-button {
    display: inline-block;
    padding: 15px 45px;
    background: linear-gradient(90deg, #005bac, #004485);
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: bold;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 91, 172, 0.3);
    transition: all 0.3s ease;
}

.bfc-sf2026-action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 91, 172, 0.5);
    opacity: 0.9;
}

/* --------------------------------------------------------------------------
   CSSアニメーション（ゆっくり動くように 1.2s → 2.0s に変更）
   -------------------------------------------------------------------------- */

.bfc-motion-fade-up {
    animation: bfcFadeUp 2.0s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.bfc-motion-slide-left {
    animation: bfcSlideLeft 2.0s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.bfc-motion-slide-right {
    animation: bfcSlideRight 2.0s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.bfc-motion-fade-up-delay {
    animation: bfcFadeUp 2.0s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

@keyframes bfcFadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes bfcSlideLeft {
    0% { opacity: 0; transform: translateX(-80px); }
    100% { opacity: 1; transform: translateX(0); }
}
@keyframes bfcSlideRight {
    0% { opacity: 0; transform: translateX(80px); }
    100% { opacity: 1; transform: translateX(0); }
}

@media (max-width: 768px) {
    .bfc-sf2026-flex-layout {
        flex-direction: column-reverse;
        gap: 30px;
    }
    @keyframes bfcSlideLeft {
        0% { opacity: 0; transform: translateY(30px); }
        100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes bfcSlideRight {
        0% { opacity: 0; transform: translateY(30px); }
        100% { opacity: 1; transform: translateY(0); }
    }
}