@charset "UTF-8";

/* ==========================================================================
   共通・ベーススタイル設定
   ========================================================================== */
.container_inner {
    width: 90%;
    max-width: 1000px; /* コンテンツが横に広がりすぎない読みやすい幅 */
    margin: 0 auto;
}

.section_title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #003366; /* アプライド様のテーマカラー */
    margin-bottom: 30px;
}

/* ==========================================================================
   1. ヒーローエリア（動画背景）
   ========================================================================== */
.hero_video_section {
    width: 100%;
    overflow: hidden;
    background: #000;
}

.hero_video_wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 5; /* パソコン用の横長比率 */
    line-height: 0;
}

.hero_video_wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   2. 学会出展のお知らせ・文章エリア
   ========================================================================== */
.notice_section {
    width: 100%;
    padding: 60px 0;
    background-color: #f4f7fa; /* 清潔感のある薄いグレー背景 */
}

.notice_title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #003366;
    margin-bottom: 30px;
    border-left: 5px solid #003366; /* 左側のアクセント縦線 */
    padding-left: 15px;
}

.notice_body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333333;
}

.notice_body p {
    margin-bottom: 20px;
}

.notice_body p:last-child {
    margin-bottom: 0;
}

.notice_link {
    font-weight: bold;
}

.notice_link a {
    color: #0066cc;
    text-decoration: underline;
}

.notice_link a:hover {
    text-decoration: none;
}

/* ==========================================================================
   3. 講演会概要セクション（テーブル・マップ・チラシ）
   ========================================================================== */
.overview_section {
    width: 100%;
    padding: 60px 0;
    background-color: #f4f7fa;
}

.overview_white_box {
    background-color: #ffffff; /* 内側を白ボックスに */
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.overview_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px; /* 行ごとの上下の隙間 */
    margin-bottom: 40px;
}

/* パソコン用見出し：左グラデーション */
.overview_table th {
    width: 20%;
    padding: 12px 12px;
    background: linear-gradient(to right, #0056b3 0%, #f0f7ff 100%);
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    font-size: 1.05rem;
    vertical-align: middle;
}

.overview_table td {
    width: 80%;
    padding: 15px 20px;
    color: #333333;
    font-size: 1.05rem;
    line-height: 1.6;
    vertical-align: middle;
    border-bottom: 1px solid #e0e0e0;
}

.map_wrapper {
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.flyer_area {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eeeeee;
}

.flyer_link {
    display: inline-block;
    text-decoration: none;
    color: #333333;
    transition: opacity 0.2s;
}

.flyer_link:hover {
    opacity: 0.8;
}

.flyer_img {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.flyer_caption {
    display: block;
    font-size: 0.95rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.flyer_source {
    font-size: 0.8rem;
    color: #666666;
    margin-top: 5px;
}

/* ==========================================================================
   4. 講演プログラム・イベント情報セクション（背景画像付き）
   ========================================================================== */
.program_section {
    width: 100%;
    padding: 60px 0;
    background-color: #f4f7fa;
}

.program_lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 30px;
}

.program_link_box {
    width: 100%;
    position: relative;
    /* 【修正】先頭の「/」を削除して「images-new/」からスタートさせます */
    background-image: url('images-new/kaijyou_photo.png');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    padding: 60px 40px;
    box-sizing: border-box;
}

/* 背景を白っぽく調整する透過マスク(75%) */
.program_link_box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(255, 255, 255, 0.75); 
    z-index: 1;
}

.program_list, .program_btn_wrap {
    position: relative;
    z-index: 2;
}

.program_list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
}

.program_list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15); 
}

/* 通常フォント（ノーマル）のリンク行 */
.program_list li a {
    display: block;
    padding: 25px 15px;
    font-size: 1.25rem;
    color: #000000;
    text-decoration: none;
    transition: background-color 0.2s, padding-left 0.2s;
}

.program_list li a:hover {
    background-color: rgba(255, 255, 255, 0.5);
    padding-left: 25px;
}

.program_btn_wrap {
    text-align: center;
}

.program_blue_btn {
    display: inline-block;
    width: 100%;
    max-width: 650px;
    background-color: #007bff;
    color: #ffffff !important;
    font-size: 1.15rem;
    font-weight: bold;
    text-decoration: none;
    padding: 18px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    transition: background-color 0.2s, transform 0.2s;
    box-sizing: border-box;
}

.program_blue_btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* ==========================================================================
   5. X（旧Twitter）連携セクション
   ========================================================================== */
.x_follow_section {
    width: 100%;
    padding: 0 0 60px 0;
    background-color: #f4f7fa;
}

.x_white_box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    text-align: center;
}

.x_lead {
    font-size: 1.05rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 25px;
    letter-spacing: 0.03em;
}

.x_banner_wrap {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}

.x_banner_link {
    display: block;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.x_banner_link:hover {
    opacity: 0.9;
    transform: scale(1.01);
}

.x_banner_img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* ==========================================================================
   スマートホン用レスポンシブ微調整（横幅 768px 以下）
   ========================================================================== */
@media screen and (max-width: 768px) {
    /* 共通枠の調整 */
    .hero_video_wrap {
        aspect-ratio: 16 / 9; /* スマホで見やすい動画比率 */
    }
    
    .notice_section, .overview_section, .program_section {
        padding: 40px 0;
    }
    
    .notice_title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .notice_body {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .overview_white_box, .x_white_box {
        padding: 15px;
        box-sizing: border-box;
    }

    /* 概要テーブルのスマートフォンはみ出し対策完全版 */
    .overview_table {
        display: block;
        width: 100% !important;
        box-sizing: border-box;
        table-layout: fixed;
        border-spacing: 0;
        margin-bottom: 20px;
    }

    .overview_table tr {
        display: block;
        width: 100% !important;
        margin-bottom: 20px;
        box-sizing: border-box;
    }
    
    /* スマホ見出し：グラデーションを縦方向に変更 */
    .overview_table th {
        display: block;
        width: 100% !important;
        padding: 10px 15px;
        font-size: 1rem;
        text-align: left;
        background: linear-gradient(to bottom, #0056b3 0%, #3399ff 100%);
        box-sizing: border-box;
        border-radius: 4px 4px 0 0;
    }
    
    /* スマホデータ枠：はみ出し強制カット */
    .overview_table td {
        display: block;
        width: 100% !important;
        padding: 15px;
        font-size: 0.95rem;
        box-sizing: border-box;
        border: 1px solid #e0e0e0;
        border-top: none;
        border-radius: 0 0 4px 4px;
        word-break: break-all; 
        overflow: hidden;      
    }

    /* マップのレスポンシブ固定 */
    .map_wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .map_wrapper iframe {
        width: 100% !important;
    }

    /* チラシ・プログラム・Xエリアのレスポンシブ微調整 */
    .flyer_img {
        max-width: 90%;
    }

    .program_link_box {
        padding: 30px 20px;
    }

    .program_list {
        margin-bottom: 35px;
    }

    .program_list li a {
        padding: 18px 10px;
        font-size: 1.05rem;
    }

    .program_blue_btn {
        font-size: 0.95rem;
        padding: 14px 15px;
    }

    .x_follow_section {
        padding: 0 0 40px 0;
    }

    .x_lead {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
}
.x_follow_section {
    position: relative !important;
    display: block !important;
    clear: both !important;
    z-index: 10 !important;
    margin-bottom: 50px !important;
}

/* 2. 共通フッター（ft_bgクラス）の固定配置を強制解除し、一番下に押し下げます */
.ft_bg {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    z-index: 20 !important;
    clear: both !important;
    margin-top: 40px !important;
}