@charset "UTF-8";

/* ▼▼▼ Oswaldフォントの読み込み ▼▼▼ */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@600;700&display=swap');

/* =========================================
   1. 基本設定・リセット
   ========================================= */
html {
    scroll-behavior: smooth;

    /* ▼▼▼ 追加：アンカーリンクで飛んだ時の頭出し位置を調整 ▼▼▼ */
    /* ヘッダーの高さ(約100~120px)に合わせて調整してください */
    scroll-padding-top: 130px;
}

body {
    margin: 0;
    /* ヘッダーの高さ分だけ余白を空ける（数値は実際の表示を見て微調整してください） */
    padding-top: 105px;

    padding-left: 0; /* 元のpadding: 0 のリセット対策 */
    padding-right: 0;
    padding-bottom: 0;

    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* =========================================
   2. ヘッダー & ナビゲーション
   ========================================= */
.site-header {
    background-color: #f5f5f5;
   border-bottom: 1px solid #f5f5f5;
    padding: 15px 0 2px 0;
    /* 固定表示の設定 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* 他の要素より手前に表示 */
  /*   box-shadow: 0 2px 2px rgba(0,0,0,0.1); 任意：少し影をつけると浮いている感が出ます */
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.header-logo-area {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

/* ロゴ画像 */
.header-logo {
    height: 36px;
    width: auto;
    align-self: center;
    margin-bottom: 0px;
}

/* ロゴテキスト */
.header-logo-area h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    color: #4a235a;
    margin: 0;
    letter-spacing: -1px;
    line-height: 1.5;
    white-space: nowrap;
}

/* ヘッダーサブテキスト（日付・場所） */
.header-sub {
    font-size: 13px;
    color: #333;
    margin: 0;
    line-height: 1.4;
    padding-bottom: 8px;
    white-space: nowrap;
}

/* ナビゲーション */
.site-nav ul {
    list-style: none;
    padding: 0;
    margin: 2px 0 0 3px;
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
}

.site-nav a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: bold;
    transition: color 0.3s;
}

.site-nav a:hover {
    color: #4a235a;
}

/* ▼▼▼ 追加：現在表示しているページのリンク色 ▼▼▼ */
.site-nav a.current {
    color: #c04030; /* 赤色に変更 */
    /* 必要であれば下線も強調できます（お好みで） */
    /* border-bottom: 1px solid #c04030; */
}






/* --- ハンバーガーボタン（PCでは非表示） --- */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 100;
    padding: 0;
    margin-left: auto;
}

.hamburger-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #4a235a;
    position: absolute;
    left: 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger-btn span:nth-child(1) { top: 0; }
.hamburger-btn span:nth-child(2) { top: 10px; }
.hamburger-btn span:nth-child(3) { top: 20px; }


/* =========================================
   3. メインビジュアル（Hero）
   ========================================= */
.hero-section {
    position: relative;
    width: 100%;
    background-color: #000;
    overflow: hidden;
    line-height: 0;

}

.hero-video {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 3.0s ease;
    opacity: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s linear;
}

.hero-overlay {
    position: absolute;
    bottom: 20%;
    width: 100%;
    text-align: center;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 2.5s ease, transform 2.5s ease;
}

.hero-overlay.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-overlay p {
    font-weight: bold;
    font-size: 24px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    margin: 0;
}

.hero-overlay p a {
    pointer-events: auto;
    color: #ff00ff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.hero-overlay p a:hover {
    opacity: 0.7;
    cursor: pointer;
}


/* =========================================
   4. 共通レイアウト & ユーティリティ
   ========================================= */
.content-wrapper {
    max-width: 960px;
    margin: 60px auto;
    padding: 0 20px;
}

/* 区切り線 */
.section-divider {
    border: none;
    border-top: 1px solid #ccc;
    width: 100%;
    max-width: 920px;
    margin: 20px auto 30px;
}

.dotted-divider {
    border: none;
    border-top: 1px dotted #aaa;
    max-width: 1100px;
    margin: 60px auto;
}

/* テキスト装飾 */
.bold-text { font-weight: bold; }
.center-text { text-align: center; }
.mt-30 { margin-top: 30px; }

/* リンクエリア */
.link-area {
    margin-top: 20px;
    text-align: right;
}
.link-area.center-link {
    text-align: center;
}
.link-area a {
    color: #900;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid #900;
    padding-bottom: 2px;
    transition: opacity 0.3s;
}
.link-area a:hover { opacity: 0.7; }
.arrow-double {
    font-size: 12px;
    margin-left: 5px;
}

/* ▼▼▼ ボタンデザイン (.btn-red) ▼▼▼ */
.center-btn-area {
    text-align: center;
    margin-top: 15px;
}

.btn-red {
    display: inline-block;
    background: linear-gradient(to bottom, #d65545 5%, #c04030 100%);
    background-color: #c04030;
    color: #fff !important;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 50px;
    border-radius: 50px;
    box-shadow: 0 5px 0px 0px #8a2b20;
    text-shadow: 0px -1px 0px rgba(0,0,0,0.5);
    margin: 15px 0;
    text-align: center;
    position: relative;
    transition: all 0.1s;
}

.btn-red:hover {
    background: linear-gradient(to bottom, #e06050 5%, #d65545 100%);
    opacity: 1;
}

.btn-red:active {
    top: 5px;
    box-shadow: 0 0 0 0 #8a2b20;
}


/* =========================================
   5. 各セクションのスタイル
   ========================================= */

/* --- ごあいさつ --- */
.greeting-section {
    text-align: center;
    margin-bottom: 80px;
}
.greeting-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: normal;
}
.greeting-section h3 {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
    font-weight: bold;
}
.greeting-section .text-body {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 40px;
}
.greeting-section .signature {
    text-align: right;
    font-size: 18px;
    margin-right: 50px;
}

/* --- 情報セクション (枠付き) --- */
.info-section {
    width: 100%;
    margin-bottom: 50px;
}
.info-header {
    background-color: #4a235a;
    color: #fff;
    text-align: center;
    padding: 8px 15px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.4;
}
.info-body {
    background-color: #eee;
    padding: 20px;
    font-size: 15px;
}
.info-body > :first-child { margin-top: 0 !important; }
.info-body dl {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 10px 20px;
    margin: 0;
}
.info-body dt {
    font-weight: bold;
    text-align: right;
    color: #333;
}
.info-body dd { margin: 0; }



.highlight-box {
    text-align: center;
    margin: 40px 0 10px;

    background: none;
    border: none;
    box-shadow: none;
    padding: 0;

    font-weight: bold;
    font-size: 18px;
    color: #333;
    letter-spacing: 0.5px;

    /* ▼▼▼ 追加：下線を引く設定 ▼▼▼ */
    text-decoration: underline;
    text-underline-offset: 5px; /* 線を文字から5px下に離す（お好みで調整可） */
}




.price-list {
    margin: 15px 0 20px 20px;
    padding: 0;
    font-weight: bold;
}
.note-text { font-size: 13px; color: #555; }

.alert-text { color: #333;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 30px;
    /* ▼▼▼ 追加：中央揃え ▼▼▼ */
    text-align: center;
   }

/* 協賛企業・一般講演（白背景・幅狭ヘッダー） */
.info-section.narrow-white-section .info-header {
    background-color: #5d4c5d;
    padding: 4px 15px;
    line-height: 1.2;
    font-size: 16px;
}
.info-section.narrow-white-section .info-body {
    background-color: #fff;
}

/* ▼▼▼ 追加：特別講演用のヘッダー色（薄い紫・黒文字） ▼▼▼ */
.info-section.narrow-white-section .info-header.special-header {
    background-color: #e6e6fa; /* 背景を薄い色に変更 */
    color: #333;               /* 文字の色を黒に変更 */
    border: 1px solid #ccc;    /* お好みで：薄い枠線をつけると締まります */
}


/* --- シンプル中央セクション --- */
.simple-center-section {
    text-align: center;
    margin: 80px 0;
}
.simple-center-section h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 2px;
}
.status-text {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 2px;
}
.section-title-bar {
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

/* --- スケジュール・メンバーリスト --- */
.schedule-list {
    text-align: center;
    margin-top: 40px;
    font-weight: bold;
    font-size: 16px;
}
.schedule-list .label { color: #900; margin-right: 15px; }
.schedule-list .date { color: #900; }

.member-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.member-list li {
    margin-bottom: 4px;
    font-size: 15px;
    padding-left: 10px;
}

/* --- 相談所・意見交換会など --- */
.consultation-section {
    margin-bottom: 80px;
    border-top: 1px solid #ddd;
    padding-top: 60px;
}
.consultation-section h2 {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
}
.consultation-body, .center-text-block {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: left;
}
.consultation-image, .center-image {
    width: 100%;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.consultation-image img, .center-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: block;
}


/* =========================================
   6. ページ固有・背景設定
   ========================================= */

/* --- 共通背景パターン --- */
.appreciation-section,
.download-section,
.session-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    margin-bottom: 0;
}

/* パターン定義 */
.bg-pattern-1, .appreciation-section { background-image: url('../images/bg-section.jpg'); }
.bg-pattern-2, .download-section { background-image: url('../images/bg-section2.jpg'); }
.bg-pattern-3 { background-image: url('../images/bg-section3.jpg'); }
.bg-pattern-4 { background-image: url('../images/bg-section4.jpg'); }
.bg-pattern-5 { background-image: url('../images/bg-section5.jpg'); }
.bg-pattern-white { background-color: #fff; background-image: none; }

.appreciation-section h2, .download-section h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}
.appreciation-section .content-wrapper { margin: 0 auto; }


/* --- プログラム（Session）ページ用レイアウト --- */
.session-section {
    width: 100%;
    padding: 60px 20px;
    margin-bottom: 0;
    box-sizing: border-box;
}

.session-header {
    text-align: center;
    margin-bottom: 30px;
}
.session-header h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}
.session-date, .session-chair {
    font-size: 16px;
    margin: 5px 0;
    color: #333;
}
.session-date { font-size: 18px; }

/* コンテンツボックス */
.session-box {
    background-color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 2px;
}
.session-box.light-blue-bg { background-color: #f6fbfe; }

/*sessionのタイトル部分 */
.session-title-blue {
    color: #003399;   /* 0033cc  */
    font-size: 20px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 10px;
}
.session-speaker {
    font-size: 16px;
    margin-bottom: 25px;
    font-weight: bold;
}
/*sessionの要旨部分 */
.session-desc p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 0;
}
.center-blue-text {
    color: #0033cc;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    margin: 0;
}
.prep-text {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin: 100px 0;
}


/* --- 応募・登録系ページ用（Step/Form） --- */
.step-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    padding: 0 20px;
}
.step-item {
    margin-bottom: 30px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 20px;
}
.step-item:last-child { border-bottom: none; }

.step-number {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}
.step-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}
.important-notice {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px 20px;
    margin: 30px auto;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.6;
    max-width: 900px;
}


/* --- ダウンロードグリッド --- */
.download-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.download-item {
    text-align: center;
    width: 280px;
}
.download-label { font-weight: bold; margin-bottom: 15px; color: #333; }
.download-item img {
    width: 100%;
    height: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s, opacity 0.3s;
    background-color: #fff;
}
.download-item a:hover img {
    transform: scale(1.03);
    opacity: 0.9;
}
.download-arrow {
    display: inline-block;
    font-weight: bold;
    color: #900;
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
    border-bottom: 2px solid #900;
    margin-top: 20px;
}
.download-arrow.disabled {
    color: #999;
    border-color: #ccc;
    cursor: default;
    pointer-events: none;
}


/* =========================================
   7. 会場 (Venue) & お問合せ (Contact)
   ========================================= */

/* --- 会場 --- */
.venue-split {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 40px auto 0;
    gap: 30px;

    /* ▼▼▼ 追加：画面幅が狭まっても左右に余白を確保する ▼▼▼ */
    padding: 0 20px;
    box-sizing: border-box; /* パディングを含めて幅を計算させる */
}
.venue-info {
    flex: 1;
    min-width: 250px;
    text-align: left;
    padding-top: 10px;
}
.venue-name { margin: 0 0 10px 0; font-size: 18px; }
.venue-name a { color: #900; text-decoration: none; font-weight: bold; transition: opacity 0.3s; }
.venue-name a:hover { opacity: 0.7; }
.venue-address {
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 1.5;
    color: #555;
}
.venue-links a {
    display: inline-block;
    color: #900;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 8px;
    border-bottom: 1px solid #900;
    transition: opacity 0.3s;
}
.venue-links a:hover { opacity: 0.7; }
.venue-image {
    flex: 1.8;
    min-width: 300px;
}
.venue-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: block;
}

/* --- お問合せ --- */
.contact-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 60px auto 40px;
    padding: 0 20px;
    gap: 40px;
    text-align: left;
    box-sizing: border-box;
}
.contact-item { flex: 1; min-width: 250px; }
.contact-item:nth-child(1) { flex: 1.3; }

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: normal;
    color: #333;
}
.contact-item p {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}
.anti-spam::before { content: "\0040"; padding: 0 2px; }
.anti-spam { user-select: none; }


/* =========================================
   8. フッター
   ========================================= */
.pre-footer-image {
    width: 100%;
    line-height: 0;
}
.pre-footer-image img {
    width: 100%;
    height: auto;
    display: block;
}
.gallery-caption {
    text-align: right;
    font-size: 13px;
    color: #666;
    padding: 5px 20px;
    margin: 0;
    background-color: #f9f9f9;
}

.site-footer {
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
}
.footer-content { max-width: 960px; margin: 0 auto; }
.site-footer p { margin-bottom: 12px; }
.footer-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 25px;
    letter-spacing: 1px;
}
.footer-divider {
    border: none;
    border-top: 1px solid #444;
    margin: 35px auto;
    max-width: 800px;
}
.copyright { margin-top: 20px; font-size: 12px; color: #aaa; }


/* =========================================
   9. レスポンシブ (スマホ・タブレット対応)
   ========================================= */

/* --- タブレット・スマホ全般 (850px以下) --- */
@media (max-width: 650px) {

  /* ▼▼▼ 追加：狭い画面のときは、ヘッダー避けの余白を減らす ▼▼▼ */
      body {
          /* PCのときは103pxですが、スマホ時はヘッダーが薄くなるので減らします */
          /* 実際のヘッダーの高さに合わせて 60px〜80px くらいで調整してください */
          padding-top: 78px;
      }

      /* ついでに、ページ内リンクで飛んだ時の頭出し位置も合わせて減らしておくと完璧です */
      html {
          scroll-padding-top: 78px;
      }


    /* ハンバーガーメニュー有効化 */
    .hamburger-btn { display: block; }
    .header-sub { display: none; }

    /* ナビゲーションのスマホスタイル */
    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        border-bottom: 1px solid #ddd;
        z-index: 99;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .site-nav.open {
        display: block;
        animation: fadeIn 0.3s ease;
    }
    .site-nav ul {
        flex-direction: column;
        gap: 0;
    }
    .site-nav li { text-align: center; width: 100%; }
    .site-nav a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px dashed #eee;
    }

    /* ハンバーガーアイコンアニメーション */
    .hamburger-btn.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
    .hamburger-btn.open span:nth-child(2) { opacity: 0; }
    .hamburger-btn.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

/* --- スマホ詳細設定 (768px以下) --- */
@media (max-width: 768px) {
    /* 共通レイアウト */
    .info-body dl { grid-template-columns: 1fr; }
    .info-body dt { text-align: left; margin-top: 15px; color: #4a235a; }
    .info-body dt:first-child { margin-top: 0; }
    .member-list li { font-size: 14px; margin-bottom: 15px; line-height: 1.5; }

    /* Sessionページ調整 */
    .session-section { padding: 40px 15px; }
    .session-box { padding: 25px; }
    .session-header h2 { font-size: 22px; }
    .center-blue-text { font-size: 18px; }

    /* Venue & Contact 縦並び */
    .venue-split, .contact-grid {
        flex-direction: column;
        padding: 0 20px;
        box-sizing: border-box;
        width: 100%;
    }
    .venue-image, .venue-info, .contact-item { width: 100%; }
    .venue-image, .contact-grid { margin-top: 20px; }
    .simple-center-section .text-body {
        padding: 0 20px;
        box-sizing: border-box;
    }

    /* Hero上の文字サイズ */
    .hero-overlay p {
        font-size: 16px;
        line-height: 1.4;
        padding: 0 10px;
    }
    .hero-overlay p a { font-size: 16px; }

    /* ▼▼▼ 追加：スマホ時はギャラリーの説明文を非表示にし、タイトルだけにする ▼▼▼ */
        .gallery-caption {
            font-size: 0; /* 元の文字を消す */
            padding: 10px;
        }

        .gallery-caption::before {
            content: "【時間連動ギャラリー】"; /* 新しい短い文字を入れる */
            font-size: 12px; /* 文字サイズを復活 */
            display: block;
            text-align: right; /* 中央寄せで見やすく */
        }

}




/* =========================================
   PC画面（851px以上）用：ヘッダー2行レイアウト設定
   ========================================= */
@media (min-width: 651px) {
    /* 1. ヘッダーの中身を「縦並び」に変更 */
    .header-inner {
        flex-direction: column;  /* 縦方向に積む */
        justify-content: center; /* 上下中央 */
        align-items: center;     /* 中央寄せ */
        padding-bottom: 0px;    /* リンク業の下に少し余白を追加 */
    }

    /* 2. ロゴエリアの下に隙間を作る */
    .header-logo-area {
        margin-bottom: 0px; /* リンク行との間隔 */
        justify-content: flex-start; /* ロゴ自体も中央に寄せる（左が良い場合は flex-start に） */
        width: 100%;
    }

    /* 3. ナビゲーションメニューの調整 */
    .site-nav {
        width: 100%; /* 横幅いっぱいに広げる */
        text-align: center; /* 中身を中央揃え */
    }

    .site-nav ul {
        justify-content: center; /* メニュー項目を中央に配置 */
        margin: 0;
    }
}


/* =========================================
   10. 時間帯別トップ画像切り替え (Night Mode)
   ========================================= */

/* 夜間モード（17:00 - 09:00）の時だけ適用されるスタイル */
.hero-section.night-mode #hero-video,
.hero-section.night-mode #hero-image {
    display: none !important; /* 動画と昼用画像を強制非表示 */
}

.hero-section.night-mode #night-image {
    display: block !important; /* 夜用画像を表示 */
    position: relative;
    width: 100%;
    height: auto;
    z-index: 5; /* 動画より手前に表示 */
}

/* 夜間はテキストオーバーレイを最初から表示状態にする */
.hero-section.night-mode .hero-overlay {
    opacity: 1 !important;
    transform: translateY(0) !important;
    z-index: 6;
}
