/* ============================================================
   camp.css — 一泊二日集中セミナーページ固有スタイル
   common.css + column-v2.css の後に読み込む
   ============================================================ */

/* --- Content width consistency --- */
.container > .article__body {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Billboard offset fix (service page: 5.7) --- */
@media (min-width: 1200px) {
    .article-header__inner {
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- Section 4: 5ステップ (phase-card) --- */
.phase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.phase-card {
    background: var(--color-white, #fff);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.phase-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.phase-card__thumb img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.phase-card__body {
    padding: 20px;
}

.phase-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--color-vivid-blue, #2563EB);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    margin-bottom: 10px;
}

.phase-card__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-navy, #0F2440);
    margin-bottom: 8px;
}

.phase-card__text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-medium-gray, #6B7280);
}

@media (min-width: 768px) {
    .phase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Section 5: 成果物 --- */
.camp-deliverable__image {
    margin-top: 2em;
    border-radius: 12px;
    overflow: hidden;
}

.camp-deliverable__image img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

/* --- Section 6: 料金・定員・会場 --- */
.camp-details {
    max-width: 780px;
    margin: 0 auto;
}

.camp-details .styled-table td:first-child {
    font-weight: 600;
    white-space: nowrap;
    width: 140px;
}

/* --- Section 7: 開催日程 --- */
.camp-schedule {
    max-width: 780px;
    margin: 0 auto;
}

/* --- Section 8: 参加者のその後 --- */
.camp-stories {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.camp-stories__item {
    background: var(--color-white, #fff);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--color-vivid-blue, #2563EB);
    display: flex;
    align-items: stretch;
}

.camp-stories__image {
    flex-shrink: 0;
    width: 240px;
}

.camp-stories__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.camp-stories__body {
    padding: 28px;
    font-size: 15px;
    line-height: 2;
}

.camp-stories__body p {
    margin-bottom: 1em;
}

.camp-stories__body p:last-child {
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .camp-stories__body {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .camp-stories__item {
        flex-direction: column;
    }
    .camp-stories__image {
        width: 100%;
        aspect-ratio: 16/9;
    }
}

/* --- Section 9: これまでの歩み --- */
.camp-record {
    text-align: center;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.camp-record__stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 24px;
}

.camp-record__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.camp-record__unit {
    font-size: 16px;
    font-weight: 600;
}

.camp-record__text {
    font-size: 15px;
    color: var(--color-medium-gray, #6B7280);
    margin-bottom: 32px;
}

.camp-record__image {
    max-width: 780px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.camp-record__image img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

@media (max-width: 767px) {
    .camp-record__stats {
        gap: 32px;
    }
}

@media (min-width: 1024px) {
    .camp-record__text {
        font-size: 16px;
    }
}
