@charset "utf-8";
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.disnon_sp {
  display: block;
}
.disnon_pc {
  display: none;
}
/* 基本設定（PC向け） */
.br_pc { display: inline; }
.br_sp { display: none; }

@media screen and (max-width: 768px) {
  .disnon_sp { display: block; } 
  .disnon_pc { display: none; }  
  .br_pc { display: none; }   
  .br_sp { display: inline; } 
}

/* =========================================
   スムーススクロール
========================================= */
html {
  scroll-behavior: smooth;
}

/* =========================================
   ベース設定
========================================= */
#wrapper {
    font-family: "Noto Sans JP", "Noto Sans CJK JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 2.0;
    letter-spacing: 0.05em; 
    margin: 0;
    padding: 0;
    font-weight: 400; 
}

#wrapper a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease; 
}

#wrapper a:hover {
    opacity: 0.7; 
}
/* =========================================

========================================= */
#wrapper h1, h2, .minor-name, .text-loc-title .ja {
     font-family: 'Noto Serif JP', "游明朝", "Yu Mincho", serif;
         font-weight: 400;
}
#wrapper .en, .en-title, .area-en {
    font-family: 'Cormorant Garamond', serif;
}


/* =========================================
   ヒーローセクション（スプリットレイアウト）CSS
========================================= */
.hero-split {
    display: flex; 
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 100vh; 
    background-color: #fff;
    position: relative;
    background-position: 100% 0%, 100% 100%;
}

/* ＝左側：テキストエリア（画面の45%を使用）＝ */
.hero-split-text {
    flex: 0 0 45%; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    padding: 0 1%; 
    box-sizing: border-box;
}

/* 超特大の英語タイトル */
.hero-split-text .hero-en {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 110px;
    font-style: italic;
    font-weight: 300;
    color: #333; 
    line-height: 0.9;
    margin-bottom: 30px;
}

/* 日本語タイトル（明朝体） */
.hero-split-text .hero-ja {
       font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGP明朝B", serif !important;
          font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.15em;
    line-height: 1.8;
    color: #333;
    margin: 0 0 30px 0;
}

/* リード文*/
.hero-split-text .hero-lead {
    font-family: 'Noto Sans JP', sans-serif; 
    font-weight: 300;
    font-size: 14px;
    color: #666; 
    line-height: 2.2;
    letter-spacing: 0.1em;
    margin: 0;
}

/* ＝右側：画像エリア（画面の55%を使用）＝ */
.hero-split-image {
    flex: 1; 
    height: 100%;
}

.hero-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

/* ＝スマホ対応（縦積みに変更・ズーム対策済み）＝ */
@media (max-width: 768px) {
    .hero-split {
        /* vw依存とcalcを無効化（ズーム時のガタつき防止） */
        width: 100%;
        margin-left: 0;
        
        flex-direction: column; 
        height: auto;
        min-height: auto; /* vh/svh依存を無効化 */
    }
    
    .hero-split-image {
        /* 高さをvhではなくアスペクト比（縦横比）で固定 */
        width: 100%;
        aspect-ratio: 4 / 5; /* 画像の比率。必要に応じて変更してください */
        flex: none;
        order: 1; 
        
        /* スクロールを滑らかにするおまじない */
        transform: translateZ(0);
        will-change: transform;
    }

    .hero-split-image img {
        transform: translateZ(0);
        backface-visibility: hidden;
    }
    
    .hero-split-text {
        flex: 1;
        order: 2; 
        align-items: center;
        text-align: center;
        padding: 40px 20px; /* テキストが見やすいよう余白調整 */
    }
    
    .hero-split-text .hero-en {
        font-size: 60px; 
        margin: 15px;
    }
    
    .hero-split-text .hero-ja {
        font-size: 20px;
    }
    
    .hero-split-text .hero-lead {
        text-align: left;
    }
}
/* =========================================
   ヒーロー内の日時・場所インフォメーション
========================================= */
.hero-info {
    margin: 0 0 20px 0;
    padding: 15px 0 15px 25px; 
    border-left: 2px solid #d4d0c6; 
    text-align: left;
}

.hero-info p {
    margin: 0 0 12px 0; 
    font-size: 14px; 
    letter-spacing: 0.05em;
    color: #555;
    line-height: 1.8; 
    font-weight: 600;
}

.hero-info p:last-child {
    margin: 0;
}

.hero-info span.en-label {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: #a39b8b;
    font-size: 14px;
    width: 80px; 
}

/* =========================================
   タグナビゲーション（CONTENTS）
========================================= */
/* .tag-nav-wrapper { 
    margin: 40px auto; 
    padding: 0 10px; 
    text-align: center; 
 } 

.tag-nav-wrapper::before {
    content: "CONTENTS";
    display: block;
    font-family: 'Cormorant Garamond', serif;
    color: #a39b8b;
    font-size: 13px;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    text-align: center;
}*/

/* =========================================
   タグナビゲーション（左にCONTENTS配置パターン）
========================================= */
.tag-nav-wrapper { 
    margin: 40px auto; 
    padding: 0 10px; 
    /* 横並びにするためのFlexbox設定 */
    display: flex;
    justify-content: center;
    align-items: center; /* 縦方向の中央で揃える */
    gap: 24px; /* CONTENTSとボタンの間の余白 */
}

/* 「CONTENTS」の見出し */
.tag-nav-wrapper::before {
    content: "CONTENTS";
    display: block;
    font-family: 'Cormorant Garamond', serif;
    color: #a39b8b;
    font-size: 14px;
    letter-spacing: 0.15em;
    margin-bottom: 0;
    white-space: nowrap; /* テキストが途中で改行されないようにする */
}

/* =========================================
   スマホ用（画面幅768px以下）のレイアウト
========================================= */
@media (max-width: 768px) {
    .tag-nav-wrapper {
        flex-direction: column; 
        gap: 16px; 
    }
}

.elegant-tags {
    list-style: none; 
    padding: 0; 
    margin: 0;
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 12px;
}

.elegant-tags a {
    display: inline-block; 
    padding: 8px 24px; 
    font-size: 12px; 
    color: #555; 
    font-weight: 600;
    background: #fff; 
    border: 1px solid #e8e6e1; 
    border-radius: 30px;
    letter-spacing: 0.1em; 
    transition: all 0.3s ease;
    text-decoration: none;
}

.elegant-tags a .hash { 
    display: inline-block; 
    font-family: "Noto Sans JP", sans-serif; 
    color: #d4d0c6; 
    font-size: 12px; 
    margin-right: 6px;
    transition: transform 0.3s ease, color 0.3s ease; 
}

.elegant-tags a:hover { 
    background: #f9f8f4; 
    color: #a39b8b; 
    border-color: #d4d0c6; 
    transform: translateY(-2px); 
}

.elegant-tags a:hover .hash {
    color: #a39b8b;
    transform: translateY(3px); 
}
/* =========================================
   大見出し
========================================= */
.section-title { text-align: center; margin: 40px 0 40px; }
.section-title span.en {
    display: block; font-size: 64px; font-style: italic; font-weight: 300;
    color: #a39b8b; line-height: 1.1; margin-bottom: 10px;
}
.section-title h2 { font-size: 22px; font-weight: 300; letter-spacing: 0.2em; color: #333; margin: 0; }



/* =========================================
   リード文（余白重視）
========================================= */
.lead-section { 
    text-align: center; 
    margin-bottom: 80px; 
}
.lead-catch { 
    font-family: 'Noto Serif JP', "游明朝", "Yu Mincho", serif;
        font-weight: 500;
    font-size: 22px; 
    margin-bottom: 40px; 
    line-height: 2.2;
}
.lead-text { 
    max-width: 900px; 
    margin: 0 auto; 
    font-size: 14px;
    color: #555;
    text-align: justify;
}
@media (max-width: 768px) {
    .lead-section { 
        margin-bottom: 80px; 
    }
    .lead-catch { 
      font-size: 18px;
        padding: 20px 20px 0 20px;
        text-align: left;
        letter-spacing: normal;
        }
    .lead-text {
        padding-top: 1rem;
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* =========================================
   イベントポイント（新：縦4つ、左画像・右テキスト）
========================================= */
.point-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px; 
    margin-bottom: 60px;
}

.point-item {
    display: flex;
    align-items: center; 
    background: #fff;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.point-img {
    flex: 0 0 45%; 
    margin-right: 40px; 
    overflow: hidden;
}

.point-img img {
    width: 100%;
    aspect-ratio: 4/3; 
    object-fit: cover;
}

.point-text {
    flex: 1; 
    text-align: left;    
}

.point-text h3 {
    display: inline;
    font-size: 16px;
    letter-spacing: 0.15em;
    font-weight: 600;
    line-height: 2.0; 
    background: linear-gradient(transparent 60%, #f5eedc 60%); 
}

.point-text p {
    font-size: 14px;
    color: #666;
    text-align: justify;
    line-height: 1.8;
    margin: 15px 0 0 0; 
}

@media (max-width: 768px) {
    .point-wrapper { 
        gap: 40px; 
        padding: 0 20px; 
    }
    .point-item { 
        flex-direction: column; 
        padding: 30px 20px; 
        text-align: center; 
    }
    .point-img { 
        flex: 0 0 auto; 
        width: 100%; 
        margin-right: 0; 
        margin-bottom: 25px; 
    }
    .point-text p { 
        text-align: left; 
    }
}



/* =========================================
   参加手配会社リストの専用スタイル
========================================= */
.company-list {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eaeaea; 
}

.company-list-title {
    display: block;
    font-size: 12px;
    color: #a39b8b; 
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.company-list-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
}

.company-list-items li {
    font-size: 13px;
    color: #555;
    position: relative;
    padding-left: 14px;
    text-align: left;
}

.company-list-items li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: #d4d0c6; 
    border-radius: 50%;
}

@media (max-width: 768px) {
    .company-list-items { 
        flex-direction: column; 
        gap: 8px; 
        list-style: none;
    }
}


/* =========================================
   イベント概要
========================================= */
.text-locations { max-width: 700px; margin: 0 auto 60px; }
.text-loc-list { list-style: none; padding: 0; margin: 0 20px; border-top: 1px solid #eaeaea; }
.text-loc-item { padding: 30px 0; border-bottom: 1px solid #eaeaea; display: flex; align-items: baseline; gap: 30px; }
.text-loc-title { flex: 0 0 150px; }
.text-loc-title .en { display: block; font-size: 18px; color: #a39b8b; font-style: italic; }
.text-loc-title .ja { font-size: 14px; letter-spacing: 0.2em; color: #333; }
.text-loc-desc { flex: 1; font-size: 14px; color: #555; line-height: 1.8; margin: 0; }

@media (max-width: 768px) {
    .text-loc-item { flex-direction: column; gap: 10px; }
    .text-loc-title { flex: auto; }
}




/* =========================================
   マップ用・案内用スモールボタン
========================================= */
.btn-map {
    display: inline-block;
    padding: 10px 32px;
    background-color: #fff;
    border: 1px solid #a39b8b;
    color: #a39b8b !important;
    font-size: 13px;
    letter-spacing: 0.1em;
    border-radius: 40px; 
    margin-top: 12px;
    transition: all 0.3s ease;
}

.btn-map:hover {
    background-color: #a39b8b;
    color: #fff !important;
    transform: translateY(-2px); 
    box-shadow: 0 5px 15px rgba(163, 155, 139, 0.2);
}

/* =========================================
   電話番号リンク
========================================= */
.tel-link {
    display: inline-block;
    color: #333 !important;
    font-weight: 600;
    font-size: 16px; 
    letter-spacing: 0.05em;
    text-decoration: none !important; 
    border-bottom: 1px solid #d4d0c6;
    padding-bottom: 1px; 
    margin: 0 4px;
    transition: all 0.3s ease;
}

.tel-link:hover {
    color: #a39b8b !important;
    border-bottom-color: #a39b8b;
    opacity: 0.8;
}


/* =========================================
   横スクロールカード（チャペル紹介用）
========================================= */
.scroll-container {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 120px;
}

.horizontal-list {
    display: flex;
    gap: 30px; 
    overflow-x: auto; 
    padding-bottom: 30px; 
    margin: 0;
    list-style: none;
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin; 
    scrollbar-color: #d4d0c6 #f9f8f4;
}

.horizontal-list::-webkit-scrollbar {
    display: block;
    height: 6px; 
}
.horizontal-list::-webkit-scrollbar-track {
    background: #f9f8f4; 
    border-radius: 10px;
}
.horizontal-list::-webkit-scrollbar-thumb {
    background: #d4d0c6; 
    border-radius: 10px;
}

.scroll-item {
    flex: 0 0 80%; /* スマホズーム対策：vwを%に変更 */
    max-width: 320px;
    scroll-snap-align: start; 
}

.scroll-item img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 4px; 
}

.item-text .area-label {
    display: inline-block;
    font-size: 11px;
    color: #a39b8b;
    border: 1px solid #d4d0c6;
    padding: 2px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.item-text h3 {
    font-size: 15px;
    font-weight: 400;
    margin: 0 0 10px 0;
    letter-spacing: 0.1em;
    line-height: 1.6;
}

/* =========================================
   ハイブリッド型カード（PC: 3列グリッド / スマホ: 横スクロール）
========================================= */
.hybrid-container {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 120px;
    padding: 0 20px; 
}

.hybrid-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px 30px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hybrid-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hybrid-item:hover {
    transform: translateY(-5px);
}

.hybrid-item img {
    width: 100%;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* ＝スマホ向け：横スクロール（画面幅768px以下で発動）＝ */
@media (max-width: 768px) {
    .hybrid-container {
        padding: 0 20px;
    }

    .hybrid-list {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px; 
        padding: 0 20px 30px 20px; 
        scrollbar-width: thin;
        scrollbar-color: #d4d0c6 #f9f8f4;
    }

    .hybrid-item {
        flex: 0 0 80%; /* スマホズーム対策：vw依存のcalcを%に変更 */
        max-width: 320px;
        scroll-snap-align: start;
    }

    .hybrid-item:hover {
        transform: none;     
    }

    .hybrid-list::-webkit-scrollbar {
        height: 6px;
    }
    .hybrid-list::-webkit-scrollbar-track {
        background: #f9f8f4;
        border-radius: 10px;
    }
    .hybrid-list::-webkit-scrollbar-thumb {
        background: #d4d0c6;
        border-radius: 10px;
    }
}

/* =========================================
   モーダルウィンドウのスタイル
========================================= */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%; /* スマホズーム対策：vwを%に変更 */
    height: 100%; /* スマホズーム対策：vhを%に変更 */
    background-color: rgba(0, 0, 0, 0.6); 
    align-items: center;
    justify-content: center;
}

.modal.is-active {
    display: flex;
}

.modal-box {
    background-color: #fff;
    width: 90%;
    max-width: 500px; 
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    box-sizing: border-box;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.modal-box img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 20px;
}

#modal-title {
    font-size: 18px;
    color: #333;
    margin: 0 0 10px;
    line-height: 1.5;
}

#modal-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.modal-box .btn {
    display: inline-block;
    padding: 12px 40px;
    background-color: #a39b8b; 
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    transition: opacity 0.3s ease;
}

.modal-box .btn:hover {
    opacity: 0.8;
}

.modal-box .close {
    cursor: pointer;
    font-size: 13px;
    color: #999;
    text-decoration: underline;
    display: inline-block;
    margin-top: 10px;
}


/* =========================================
   エレガントボタン＆CTA
========================================= */
.cta-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 150px;
    background-color: #f9f8f4;
    padding: 80px 20px;
    text-align: center;
}  

/* ＝スマホ対応（ズーム時のガタつき対策）＝ */
@media (max-width: 768px) {
    .cta-section {
        width: 100%; /* vw依存をリセット */
        margin-left: 0; /* calc依存をリセット */
        margin-top: 80px;
        padding: 60px 20px;
    }
}

.cta-section p { font-size: 14px; color: #555; margin-bottom: 30px; letter-spacing: 0.1em; }
.btn-elegant {
    display: inline-block;
    padding: 10px 32px;
    background-color: #fff;
    border: 1px solid #a39b8b;
    color: #a39b8b !important;
    font-size: 13px;
    letter-spacing: 0.1em;
    border-radius: 40px;
    margin-top: 12px;
    transition: all 0.3s ease;
}
.btn-elegant .btn-jp { font-size: 14px; letter-spacing: 0.2em; color: #333; font-weight: 600; }
.btn-elegant .arrow { font-size: 18px; color: #a39b8b; transition: transform 0.4s ease; }
.btn-elegant:hover { border-color: #a39b8b; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.04); }
.btn-elegant:hover .arrow { transform: translateX(5px); }


/* =========================================
   重要なお知らせ
========================================= */
.notice-important {
    display: inline-block;
    color: #a39b8b; 
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}


/* =========================================
   注意事項（CTAエリア内）
========================================= */
.notes-section {
    max-width: 1000px; 
    margin: 60px auto 0;
    text-align: left;
}

.notes-section h4 {
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    letter-spacing: 0.15em;
    text-align: center;
}

.notes-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notes-section li {
    font-size: 12px;
    color: #888;
    line-height: 1.8;
    margin-bottom: 8px;
    text-indent: -1em; 
    padding-left: 1em;
}