/* 不動産会 専用ページ CSS (本体style.cssの後に読み込まれる) */

/* ===== ヒーロー(不動産用) ===== */
.hero-fudosan {
    background:
        linear-gradient(135deg, rgba(15, 25, 35, 0.85), rgba(26, 42, 58, 0.78) 50%, rgba(44, 62, 80, 0.72)),
        url('/images/fudosan-hero-bg.jpg') center/cover no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 100vh;
    padding-top: 130px;
    padding-bottom: 70px;
    box-sizing: border-box;
}

/* ===== カテゴリページ全体のサイズ縮小 (本体style.cssの section を上書き) ===== */
/* fudosan-kai/style.css は4ページとも読み込むが、本会TOPは読み込まないので、ここの上書きは category pages 限定で安全 */
body .section {
    padding: 56px 0;
}
body .section-header {
    margin-bottom: 28px;
}
body .section-title {
    font-size: 26px;
    margin-bottom: 10px;
}
body .section-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    margin-bottom: 4px;
}
body .section-description {
    font-size: 13px;
    margin-top: 4px;
}
@media (max-width: 700px) {
    body .section {
        padding: 44px 0;
    }
    body .section-title {
        font-size: 22px;
    }
}
.hero-fudosan::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(197, 165, 114, 0.22), transparent 60%);
    pointer-events: none;
}
.hero-fudosan .hero-overlay {
    display: none;
}
.hero-fudosan .hero-content {
    position: relative;
    z-index: 1;
}
.fudosan-hero-badge {
    display: inline-block;
    padding: 6px 18px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--accent-gold), #B8935A);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(197, 165, 114, 0.4);
}

/* ===== なぜ不動産会か ===== */
.fudosan-why-content {
    max-width: 1080px;
    margin: 0 auto;
}
.fudosan-lead {
    text-align: center;
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    max-width: 820px;
    margin: 0 auto 48px;
}
.fudosan-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.fudosan-why-card {
    padding: 32px 24px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fudosan-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.fudosan-why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50, #1a2a3a);
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
}
.fudosan-why-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #1a2a3a;
}
.fudosan-why-card p {
    font-size: 13px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* ===== 共同主催 ===== */
.fudosan-host {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.fudosan-host-photo {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border: 4px solid var(--accent-gold);
}
.fudosan-host-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fudosan-host-info {
    flex: 1;
}
.fudosan-host-name {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #1a2a3a;
}
.fudosan-host-title {
    font-size: 14px;
    color: var(--accent-gold);
    font-weight: 600;
    margin: 0 0 16px;
}
.fudosan-host-bio {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin: 0;
}
@media (max-width: 700px) {
    .fudosan-host {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }
    .fudosan-host-photo {
        width: 140px;
        height: 140px;
    }
}

/* ===== 対象者 ===== */
.fudosan-target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
}
.fudosan-target-group {
    background: #fff;
    border-radius: 12px;
    padding: 24px 22px;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.fudosan-target-group h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(197, 165, 114, 0.25);
}
.fudosan-target-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.fudosan-target-group li {
    position: relative;
    padding: 4px 0 4px 18px;
    font-size: 13px;
    color: #333;
    line-height: 1.7;
}
.fudosan-target-group li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 13px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-gold);
}

/* ===== ビジネス成果 (merits) ===== */
.fudosan-merit-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.fudosan-merit {
    display: flex;
    gap: 24px;
    padding: 28px 28px;
    background: #fff;
    border-left: 4px solid var(--accent-gold);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.fudosan-merit-number {
    flex-shrink: 0;
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-gold);
    line-height: 1;
    letter-spacing: 0.05em;
    font-family: 'Noto Serif JP', serif;
}
.fudosan-merit-body h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1a2a3a;
}
.fudosan-merit-body p {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin: 0;
}

/* ===== 参加フロー ===== */
.fudosan-flow {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}
.fudosan-flow-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 22px 24px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    position: relative;
}
.fudosan-flow-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-gold), #B8935A);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}
.fudosan-flow-text h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #1a2a3a;
}
.fudosan-flow-text p {
    font-size: 13px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* ===== ヒーロー文字色オーバーライド ===== */
.hero-fudosan .hero-title,
.hero-fudosan .hero-subtitle {
    color: #fff;
}
.hero-fudosan .hero-scroll {
    color: rgba(255,255,255,0.7);
}
.hero-fudosan .hero-scroll-line {
    background: rgba(255,255,255,0.5);
}

/* ===== 対象者: 優先業種(★) ===== */
.fudosan-target-priority {
    max-width: 1080px;
    margin: 0 auto 32px;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(197, 165, 114, 0.10), rgba(197, 165, 114, 0.03));
    border: 2px solid var(--accent-gold);
    border-radius: 16px;
    position: relative;
}
.fudosan-target-priority-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.fudosan-target-star {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent-gold), #B8935A);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.fudosan-target-priority-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a2a3a;
    margin: 0;
    line-height: 1.4;
}
.fudosan-target-priority-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.fudosan-target-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid var(--accent-gold);
    color: #1a2a3a;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(197, 165, 114, 0.15);
}
.fudosan-target-chip::before {
    content: '★';
    color: var(--accent-gold);
    margin-right: 6px;
    font-size: 13px;
}
@media (max-width: 600px) {
    .fudosan-target-priority {
        padding: 22px 18px;
    }
    .fudosan-target-priority-header h3 {
        font-size: 14px;
    }
    .fudosan-target-chip {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* ===== 共同主催 名前のローマ字表記 ===== */
.fudosan-host-en {
    font-size: 13px;
    font-weight: 500;
    color: #999;
    letter-spacing: 0.05em;
    margin-left: 8px;
}

/* ===== 共同主催 経歴メタ情報 ===== */
.fudosan-host-meta {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fudosan-host-meta-item {
    display: flex;
    gap: 14px;
    font-size: 13px;
    line-height: 1.6;
}
.fudosan-host-meta-label {
    flex-shrink: 0;
    width: 80px;
    color: var(--accent-gold);
    font-weight: 700;
}
.fudosan-host-meta-value {
    color: #444;
    flex: 1;
}
@media (max-width: 600px) {
    .fudosan-host-meta-item {
        flex-direction: column;
        gap: 2px;
    }
    .fudosan-host-meta-label {
        width: auto;
    }
}

/* ===== 経歴本文の強調 ===== */
.fudosan-host-bio strong {
    color: #1a2a3a;
    font-weight: 700;
}

/* ===== 過去開催ギャラリー ===== */
.fudosan-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1080px;
    margin: 0 auto;
}
.fudosan-gallery-item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    cursor: zoom-in;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fudosan-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}
.fudosan-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.fudosan-gallery-item:hover img {
    transform: scale(1.05);
}
@media (max-width: 700px) {
    .fudosan-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
@media (max-width: 420px) {
    .fudosan-gallery {
        grid-template-columns: 1fr;
    }
}

/* ===== ヒーロー上部 開催日ピル (全カテゴリページ共通、スリム1行型) ===== */
.hero-event-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: fit-content;
    margin: 0 auto 40px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.fudosan-hero-badge {
    margin-bottom: 26px !important;
}
.hero-event-date-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hero-event-date-text strong {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--accent-gold);
}
.hero-event-date-text small {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.9;
}
.hero-event-time-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-left: 14px;
    border-left: 1px solid rgba(255,255,255,0.32);
    opacity: 0.95;
}
.hero-event-card i {
    opacity: 0.7;
    font-size: 12px;
}

@media (max-width: 500px) {
    .hero-event-card {
        font-size: 12px;
        padding: 7px 16px;
        gap: 10px;
    }
    .hero-event-date-text strong {
        font-size: 15px;
    }
    .hero-event-date-text small {
        font-size: 11px;
    }
    .hero-event-time-text {
        padding-left: 10px;
    }
}
