.eael-ext-scroll-to-top-wrap .eael-ext-scroll-to-top-button{bottom:15px;right:15px;width:50px;height:50px;z-index:9999;opacity:0.7;background-color:#000000;border-radius:5px;}.eael-ext-scroll-to-top-wrap .eael-ext-scroll-to-top-button i{font-size:16px;color:#ffffff;}.eael-ext-scroll-to-top-wrap .eael-ext-scroll-to-top-button svg{width:16px;height:16px;fill:#ffffff;}@media(max-width:767px){.elementor-3969 .elementor-element.elementor-element-437faf1{width:var( --container-widget-width, 399.8px );max-width:399.8px;--container-widget-width:399.8px;--container-widget-flex-grow:0;}}/* Start custom CSS for html, class: .elementor-element-437faf1 *//* --- 1. 共通設定・変数 --- */
:root {
    --color-gold: #8a6d3b;
    --color-bg: #fdfaf5;
    --color-white: #ffffff;
    --color-text: #333;
    --color-btn-grad: linear-gradient(to bottom, #d66d5b, #c14d3a);
    --shadow-light: 0 4px 10px rgba(0,0,0,0.05);
    --radius-main: 15px;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    line-height: 1.8;
    color: var(--color-text);
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    background-color: var(--color-bg);
    -webkit-text-size-adjust: 100%; /* スマホでの文字サイズ自動調整防止 */
}

/* テキスト余白の共通化 */
p { margin: 0 0 1.5em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: bold; }

.container {
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px 0;
}

/* --- 2. メインビジュアル（ブラッシュアップ版） --- */
.hero-section {
    /* 背景のオーバーレイを少し濃くして文字を浮かび上がらせる */
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                      url('https://crystalconference.org/wp-content/uploads/2025/07/e92512132610dd098d357f2155bf891a.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* スマホでの挙動を安定させる */
    color: #fff;
    text-align: center;
    /* 上下の余白を画面サイズに合わせて可変に */
    padding: clamp(60px, 10vh, 120px) 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-section h1 {
    /* PCでは大きく、スマホでは適切に縮小される設定 */
    font-size: clamp(1.4rem, 4vw, 2.4rem); 
    margin-bottom: 25px;
    line-height: 1.4;
    letter-spacing: 0.05em; /* 文字の間隔を少し広げて読みやすく */
}

.main-title-gold {
    background: linear-gradient(
        45deg,
        #b67b03 0%,
        #daaf08 25%,
        #fee9a0 50%,
        #daaf08 75%,
        #b67b03 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* 背景が暗めなのでドロップシャドウを少し強調してクッキリさせる */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    display: inline-block;
    font-weight: bold;
    /* スマホで改行された時のために少し余白を */
    padding: 0.1em 0;
}

/* 導入文（pタグ）がある場合の追加設定 */
.hero-section p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
/* --- 3. セクション共通パーツ --- */
.section-box { margin-bottom: 60px; }

.section-title {
    color: var(--color-gold);
    text-align: center;
    border-bottom: 2px solid var(--color-gold);
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-size: 1.3rem;
    line-height: 1.4;
}

/* カード共通スタイル：共通化してコード削減 */
.card, .event-box, .profile-card, .info-text-box, .message-box {
    background: var(--color-white);
    padding: 25px;
    border-radius: var(--radius-main);
    box-shadow: var(--shadow-light);
    margin-bottom: 20px;
}

/* 画像制御の共通化 */
img { max-width: 100%; height: auto; }

.event-box img, .flex-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* 丸型アイコン画像 */
.profile-header img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    display: block;
    border: 3px solid #f0ede6;
}

/* --- 4. レイアウト構造 --- */
.flex-container, .flex-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 横並び画像のレイアウト（ゲイリー・藤波セクション用） */
.flex-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* --- 署名セクションの追加設定 --- */
.signature-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* 右寄せ */
    margin-top: 30px;
    gap: 15px; /* 画像とテキストの間隔 */
}

.signature-wrapper img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0ede6; /* プロフィール画像と統一 */
    box-shadow: var(--shadow-light);
    margin-bottom: 0; /* 共通設定の margin をリセット */
}

.signature-text {
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text);
}

.signature-text span {
    display: block;
    font-weight: bold;
    color: var(--color-gold); /* 共通のゴールドを使用 */
    font-size: 1.1rem;
}

/* スマホ表示での微調整 */
@media (max-width: 768px) {
    .signature-wrapper {
        margin-top: 20px;
    }
    .signature-wrapper img {
        width: 55px;
        height: 55px;
    }
}


/* --- 5. 旅程（スケジュール） --- */
.itinerary-list, .schedule-list {
    background: #f0ede6;
    padding: 25px;
    border-radius: var(--radius-main);
}

.itinerary-item {
    border-bottom: 1px dotted #ccc;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.itinerary-item:last-child { border-bottom: none; }

.small-note {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 10px;
    display: block;
}

/* --- 6. 申し込み・リンクボタン --- */
.cta-area {
    text-align: center;
    margin: 50px 0;
}

.apply-btn {
    display: inline-block;
    background: var(--color-btn-grad);
    color: #fff !important;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(193,77,58,0.4);
    transition: 0.3s;
    line-height: 1.3;
}

.apply-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.apply-btn span {
    font-size: 0.75rem;
    display: block;
    font-weight: normal;
}

/* プロフィール内などの小型ボタン */
.btn-small {
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 1rem;
}

/* テキストリンク */
.text-link {
    color: #b36a5e !important;
    text-decoration: underline;
    font-weight: bold;
}

/* --- 7. レスポンシブ設計（UXUI最適化） --- */

/* PC表示 (769px以上) */
@media (min-width: 769px) {
    .hero-section { padding: 140px 20px; }
    .hero-section h1 { font-size: 2.6rem; }
    
    /* 横並び制御 */
    .flex-grid.two-cols { flex-direction: row; }
    .flex-grid.two-cols > div { flex: 1; }
    
    .flex-grid.three-cols { flex-direction: row; }
    .flex-grid.three-cols > div { flex: 1; }

    /* 画像とテキストの横並び */
    .flex-row { flex-direction: row; align-items: flex-start; gap: 40px; }
    .flex-img { flex: 0 0 350px; }
    .flex-text { flex: 1; }

    .event-box img { height: 300px; }
}

/* スマホ表示 (768px以下) */
@media (max-width: 768px) {
    .container { width: 92%; padding: 30px 0; }
    .hero-section { padding: 60px 15px; }
    .hero-section h1 { font-size: 1.4rem; }
    
    .section-title { font-size: 1.2rem; }
    
    .apply-btn { width: 100%; max-width: 320px; padding: 15px 20px; font-size: 1.1rem; }
    
    /* カードの余白を少し詰めて画面効率を上げる */
    .card, .event-box, .profile-card { padding: 20px; }
}

/* --- 8. フッター --- */
.footer {
    background-color: var(--color-gold);
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
}

.footer p {
    margin: 0 0 5px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}/* End custom CSS */