/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 11 2026 | 15:33:40 */
/* --- 盤戸建築デザインシステム (hil-based) --- */
:root {
    --bd-sand: #f6ecd8;
    --bd-red: #c63d2b;
    --bd-text: #333333;
}

.bd-template {
    background: #fff;
    color: var(--bd-text);
    line-height: 1.8;
    font-family: "Noto Sans JP", sans-serif;
}

/* メインビジュアル */
.bd-mv {
    position: relative;
    width: 100%;
    height: 85vh;
}
.bd-mv-img { width: 100%; height: 100%; }
.bd-mv-img img { width: 100%; height: 100%; object-fit: cover; }
.bd-mv-box {
    position: absolute;
    bottom: 8%;
    left: 5%;
    background: rgba(255, 255, 255, 0.98);
    padding: 50px;
    max-width: 600px;
    box-shadow: 20px 20px 0px var(--bd-sand); /* hilスタイルの影 */
    z-index: 5;
}

/* セクション共通 */
.bd-section { padding: 120px 0; }
.bd-bg-sand { background-color: var(--bd-sand); }
.bd-container { max-width: 1100px; margin: 0 auto; padding: 0 30px; }

/* ラベル・見出し */
.bd-eng-label, .bd-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.4em;
    color: var(--bd-red);
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.bd-title-large { font-size: 32px; font-weight: bold; line-height: 1.4; margin-bottom: 20px; }
.bd-title-medium { font-size: 28px; font-weight: bold; margin-bottom: 30px; line-height: 1.4; }
.bd-center { text-align: center; }

/* レイアウト */
.bd-flex { display: flex; align-items: center; gap: 60px; }
.bd-reverse { flex-direction: row-reverse; }
.bd-text-col, .bd-img-col { flex: 1; }
.bd-img-col img { width: 100%; height: auto; display: block; }

.bd-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.bd-card { background: #fff; padding: 30px; text-align: center; border: 1px solid rgba(0,0,0,0.05); }
.bd-card img { width: 100%; margin-bottom: 20px; }
.bd-card h3 { font-size: 18px; font-weight: bold; margin-bottom: 15px; }

/* スマホ対応 */
@media (max-width: 768px) {
    .bd-mv { height: 65vh; }
    .bd-mv-box { left: 15px; right: 15px; padding: 30px; bottom: 30px; }
    .bd-title-large { font-size: 24px; }
    .bd-section { padding: 70px 0; }
    .bd-flex { flex-direction: column; gap: 40px; }
    .bd-grid-3 { grid-template-columns: 1fr; }
}