.seminar-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: flex-start; /* 左寄せに変更 */
    align-items: center;
    gap: 16px; /* ロゴとテキストの間隔 */
}

.seminar-header-title {
    font-size: 1rem;
    font-weight: bold;
    color: #2a7b3f;
}
/* --- レイアウト全体 --- */
.seminar-lp-main {
    max-width: 1100px;
    margin: 40px auto 100px auto; /* 下に100px追加 */
    padding: 0 20px;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* --- メイン見出し（帯） --- */
.section-title-bar {
    background-color: #2a7b3f; /* 濃いグリーン */
    color: #fff;
    padding: 12px 20px;
    margin-bottom: 40px;
    border-radius: 4px;
}

.section-title-bar h2 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.4;
    text-align: left;
}

/* --- ターゲット誘導テキスト --- */
.target-text {
    color: #d32f2f; /* 赤色 */
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

/* 吹き出し全体のコンテナ */
.target-bubble {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.target-bubble span {
    position: relative;
    display: inline-block;
    color: #fff; /* 文字は白 */
    font-size: 1.1rem;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 50px;
    /* ぴょこぴょこ動かすアニメーション */
    animation: bounce-y 2s infinite;
}

/* 吹き出しの「しっぽ（三角）」部分 */
.target-bubble span::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 12px 10px 0 10px;
    border-style: solid;
    /* 色は個別設定で上書きするため、ここでは透明 */
}

/* --- 建築編：グリーン --- */
.column-kenchiku .target-bubble span {
    background-color: #2a7b3f; /* 建築編のグリーン */
    box-shadow: 0 4px 10px rgba(42, 123, 63, 0.3);
}

/* しっぽの色をグリーンに */
.column-kenchiku .target-bubble span::after {
    border-color: #2a7b3f transparent transparent transparent;
}

/* --- 土木編：オレンジ --- */
.column-doboku .target-bubble span {
    background-color: #ef8200; /* 土木編のオレンジ */
    box-shadow: 0 4px 10px rgba(239, 130, 0, 0.3);
}

/* しっぽの色をオレンジに */
.column-doboku .target-bubble span::after {
    border-color: #ef8200 transparent transparent transparent;
}

/* --- アニメーション設定 --- */
@keyframes bounce-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* --- グリッドレイアウト --- */
.seminar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* --- カード共通設定 --- */
.seminar-card {
    border-width: 1px;
    border-style: solid;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seminar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-inner {
    padding: 20px 20px 12px 20px; /* 下だけ12pxに縮小 */
}


.seminar-image img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

/* --- カード別の配色 --- */
.card-kenchiku {
    background-color: #f0f9f4; /* ごく薄い緑 */
    border-color: #2a7b3f;
}

.card-doboku {
    background-color: #fffaf0; /* ごく薄いオレンジ */
    border-color: #ef8200;
}

/* --- カテゴリと日付 --- */
.category-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.category-tag {
    color: #fff;
    padding: 3px 12px;
    font-size: 0.85rem;
    font-weight: bold;
    border-radius: 3px;
}

.tag-kenchiku { background-color: #2a7b3f; }
.tag-doboku { background-color: #ef8200; }

.seminar-date-top {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
}

/* --- セミナー詳細 --- */
.seminar-title {
    font-size: 1.15rem;
    font-weight: bold;
    margin: 0 0 15px 0;
    line-height: 1.4;
    min-height: 3em; /* 高さを揃えるため */
}

.description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #444;
}

/* --- 申し込みボタン --- */
.seminar__button a {
    display: block;
    background-color: #2a7b3f;
    color: #ffffff !important;
    border: 2px solid #2a7b3f;
    padding: 14px;
    text-align: center;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}

.seminar__button a::after {
    content: '▶';
    position: absolute;
    right: 20px;
}

.seminar__button a:hover {
    background-color: #ffffff;
    color: #2a7b3f !important;
}

/* 土木編のボタン色調整（通常時） */
.card-doboku .seminar__button a {
    background-color: #ef8200 !important; /* オレンジを強制 */
    border-color: #ef8200 !important;
}

/* 土木編：ホバー時の背景白・枠とテキストをオレンジにする */
.card-doboku .seminar__button a:hover {
    background-color: #ffffff !important;
    color: #ef8200 !important;
    border-color: #ef8200 !important;
}



/* --- レスポンシブ --- */
@media (max-width: 768px) {
    .seminar-grid {
        grid-template-columns: 1fr;
    }
    .seminar-title {
        min-height: auto;
    }
    /* 追加 */
    .seminar-column + .seminar-column .target-bubble {
        margin-top: 60px;
    }
}