/* pc.css - 768px以上の画面で適用 */

/* 全体レイアウト */
.wrapper {
    display: flex;
}

.main-content {
    width: calc(100% - 400px);
}

/* サイドバー */
.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

/* SP用コンポーネントは非表示 */
.sp-apply-button,
.sp-form-modal {
    display: none !important;
}

/* ヒーローセクション PC調整 */
.hero-section {
    padding: 40px 0;
}

.hero-online-badge {
    font-size: 24px;
    padding: 15px 0;
}

.hero-content {
    gap: 10px;
    margin-top: 30px;
}

.hero-speakers-area {
    gap: 10px;
}

.hero-speakers-img {
    max-width: 100%;
    height: auto;
}

.hero-speakers-pc {
    display: block;
    max-width: 700px;
    max-height: 900px;
}

.hero-speakers-sp {
    display: none;
}

/* セクション調整 */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    margin-bottom: 60px;
}

/* 概要テーブル PC調整 */
.overview-row {
    display: flex;
}

.overview-label {
    width: 200px;
    padding: 25px;
}

.overview-content {
    padding: 25px;
}

/* ターゲットカード PC調整 */
.target-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.target-card {
    padding: 50px 40px;
}

.target-image {
    height: 140px;
}

/* プログラム PC調整 */
.topic-item {
    padding: 40px;
}

.topic-number {
    width: 70px;
    height: 70px;
    font-size: 24px;
    margin-right: 30px;
}

.topic-title {
    font-size: 22px;
}

/* 登壇者 PC調整 */
.speaker-card {
    display: flex;
}

.speaker-info {
    flex: 1;
    padding: 50px;
}

.speaker-name {
    font-size: 32px;
}

.speaker-photo {
    width: 250px;
    padding: 0;
    height: auto;
}

.speaker-photo .speaker-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* フォーム PC調整 */
.sidebar-title {
    font-size: 26px;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-input {
    padding: 18px;
    font-size: 16px;
}

.form-submit {
    padding: 20px;
    font-size: 20px;
    margin-top: 20px;
}