@charset "UTF-8";

/*=========================================================
#
#  統合スタイルシート（reset.css と2枚構成で運用）
#  PC : min-width:769px ／ SP : max-width:768px
#  読み込み順は base → style → lower を各端末で保持
#  ※見出し構成は PC / SP で共通
#
=========================================================*/

/*=========================================================
 
 全体：横スクロール防止（PC / SP 共通）
 
=========================================================*/
html{
overflow-x:hidden;   /* 横スクロール防止。body には指定しない（縦バーが2本出るため） */
scroll-behavior:smooth;
scroll-padding-top:20px;   /* 停止位置の余白。固定要素があればその高さぶん */
scrollbar-gutter: stable;
}
body{
max-width:100%;
}


/*=========================================================
 
 ハンバーガーメニュー（PC / SP 共通のベース）
 
=========================================================*/
html.is_nav_open{
overflow:hidden;
}
.menu_btn{
position:fixed;
top:0;
right:0;
z-index:1000;
display:block;
width:100px;
height:100px;
padding:0;
border:none;
outline:none;
box-shadow:none;
background-color:transparent;
background-image:url("../img/hamburger_bg.webp");
background-repeat:no-repeat;
background-position:center center;
background-size:contain;
cursor:pointer;
appearance:none;
-webkit-appearance:none;
}
/* 開いた状態 ＝ × 印の画像に差し替える。
   切り替わりを一瞬にしないよう、画像にも transition を効かせる */
.menu_btn.is_open{
background-image:url("../img/menu_close_btn.webp");
background-size:40px auto;        /* ← 大きさ */
background-position:30px 20px; /* ← 位置 */
}
.menu_btn_line{
position:absolute;
top:43%;
left:55%;
width:var(--line-w,44px);
height:var(--line-h,3px);
margin:0;
border-radius:calc(var(--line-h,3px) / 2);
background-color:var(--line-color,#fff);
transition:transform .35s ease, opacity .2s ease;
}
.menu_btn_line:nth-of-type(1){
transform:translate(-50%,-50%) translateY(calc(var(--line-gap,13px) * -1));
}
.menu_btn_line:nth-of-type(2){
transform:translate(-50%,-50%);
}
.menu_btn_line:nth-of-type(3){
transform:translate(-50%,-50%) translateY(var(--line-gap,13px));
}
/* 開いたら 3本線は隠す（× は背景画像が担当する）。
   opacity だけでなく visibility も落として、
   半透明で重なって見えるのを防ぐ */
.menu_btn.is_open .menu_btn_line{
opacity:0;
visibility:hidden;
}
.global_nav{
position:fixed;
top:0;
right:0;
left:auto;
z-index:999;
height:100vh;         /* max-height:100vh から変更 */
padding:var(--nav-pad,140px 100px 60px);
overflow-y:auto;
background-color:rgba(255,255,255,0.85);
opacity:0;
visibility:hidden;
transition:opacity .35s ease, visibility .35s ease;
}
.global_nav.is_open{
opacity:1;
visibility:visible;
}
.global_nav ul{
width:fit-content;      /* 中身の幅ぴったりに縮める */
max-width:100%;
margin:0 auto 60px auto;          /* ← ブロック全体を中央へ */
padding:0;
list-style:none;
text-align:left;        /* ← center から変更 */
}
.global_nav li{
position:relative;
margin:0 0 var(--nav-gap,24px) 0;
}
.global_nav a::before{
content:"";
position:absolute;
top:50%;
right:100%;              /* テキストの左端の外側に置く */
transform:translateY(-50%);
width:0.7em;             /* 文字サイズ22px なら約15px */
aspect-ratio:67 / 62;    /* 画像の比率 */
margin-right:0.4em;      /* テキストとの間隔 */
background:url("../img/select_arrow.webp") center center / contain no-repeat;
opacity:0;
transition:opacity .2s ease;
pointer-events:none;
}
.global_nav a:hover::before,
.global_nav a:focus-visible::before{
opacity:1;
}
.global_nav a{
display:block;
color:#2466b0;
font-size:var(--nav-font,22px);
font-weight:600;
letter-spacing:2px;
text-decoration:none;
}
/* 矢印は透過させない */
.global_nav a:hover{
opacity:1;
color:rgba(36,102,176,0.7);
}
.global_nav figure{
display:block;
max-width:50px;
margin:0 auto;
}
.global_nav figure img{
width:100%;
}


.deco_title{
--deco_left:  url("../img/deco_swirl_left.webp");   /* アセット17 */
--deco_right: url("../img/deco_swirl_right.webp");  /* アセット16 */
--deco_line:  url("../img/deco_line.webp");         /* アセット15 */
position:relative;
width:100%;
margin:0 auto;
padding:0 0 1.55em;   /* 文字の下端から唐草の下端まで 174 ÷ 112 */
text-align:center;
line-height:1;
font-size:60px;       /* ← ここで全体の大きさが決まる */
}
/* 横線。幅いっぱいに伸ばし、高さは元画像の比率から決める。
   中央の飾りも一緒に拡縮するため、画面幅が変われば大きさも変わる */
.deco_title::before{
content:"";
position:absolute;
left:0;
right:0;
bottom:0.38em;        /* 唐草の下端から線の下端まで 43 ÷ 112 */
aspect-ratio:2160 / 117;
background:var(--deco_line) center center / 100% 100% no-repeat;
pointer-events:none;
}
/* 文字。唐草の位置の基準になる。
   min-width は 4文字ぶん（1文字 1em ＋ 字間 0.2em）× 4。
   4文字以下ではこの幅で止まるので唐草は動かない */
.deco_title h2{
position:relative;
z-index:1;
display:inline-block;
min-width:4.8em;
margin:0;
padding:0;
font-size:inherit;
font-weight:700;
letter-spacing:1px;
text-indent:0.2em;    /* 字間の最後の1つぶんを打ち消して中央に揃える */
color:#2466b0;
}
/* 左右の唐草。文字の外側に置き、少しだけ内側へ食い込ませる。
   translate は自身の大きさに対する割合なので、
   文字サイズが変わっても重なり具合は一定になる */
.deco_title h2::before,
.deco_title h2::after{
content:"";
position:absolute;
bottom:-1.55em;       /* 文字の下端から唐草の下端まで */
width:3.49em;         /* 391 ÷ 112 */
aspect-ratio:391 / 258;
background-size:100% 100%;
background-repeat:no-repeat;
pointer-events:none;
}
.deco_title h2::before{
right:100%;
background-image:var(--deco_left);
transform:translateX(34.0%);    /* 重なり 79 ÷ 391 */
}
.deco_title h2::after{
left:100%;
background-image:var(--deco_right);
transform:translateX(-30.0%);
}

.introduction,
.top_goods {
    position: relative;
    overflow: hidden;
}
.introduction > .group,
.top_goods > .group {
    position: relative;
    z-index: 2;
}
.introduction > .confetti-canvas,
.top_goods > .confetti-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.no_margin{
margin:0 !important;
}









/*=========================================================
 
 PC 用スタイル（min-width:769px）
 
=========================================================*/
@media screen and (min-width:769px){
/*======================= base.css ======================*/
/* 01：ヘッダー */
header{
margin:0px 0px 100px 0px;
position:relative;
z-index: 10;
}
header h1{
max-width:100%;
}
header h1 img{
width:100%;
}

/* 02：フッター */
footer{
background:#fff;
padding:75px 0px 0px 0px;
}
footer > p{
background:url("../img/footer_bg.webp") left top no-repeat;
background-size:100% 83px;
color:#fff;
font-size:14px;
text-align: center;
padding:30px 0px 20px 0px;
}

/* 03：表示切替（PC / SP） */
.pc{
display:block !important;
}
.sp{
display:none !important;
}




.kv{
--kv_zoom:1;          /* キャストの拡大率。1 で見本どおり */
--kv_shift:-6.17%;    /* キャストの上端位置（180 ÷ 2919） */
--kv_fade_from:76%;   /* キャストが透け始める位置 */
--kv_fade_to:97%;     /* 完全に透明になる位置 */
 
position:relative;
width:100%;
margin:0;
aspect-ratio:3268 / 2919;   /* 見本の縦横比 */
overflow:hidden;            /* はみ出したキャストを切る */
}
 
/* 1. 地紋＋金アーチ。最背面に、下端そろえで全幅に置く */
.kv__bg{
position:absolute;
left:0;
bottom:0;
width:100%;
height:auto;
z-index:0;
pointer-events:none;
}
 
/* 2. キャスト側。下端に向かって透明にし、下の地紋を透かせる */
.kv__slider{
position:absolute;
top:var(--kv_shift);
left:50%;
width:calc(100% * var(--kv_zoom));
aspect-ratio:3201 / 2264;   /* キャスト画像の縦横比 */
transform:translateX(-50%); /* 拡大しても中央を保つ */
z-index:1;
-webkit-mask-image:linear-gradient(to bottom, #000 var(--kv_fade_from), transparent var(--kv_fade_to));
mask-image:linear-gradient(to bottom, #000 var(--kv_fade_from), transparent var(--kv_fade_to));
}
 
.kv__list{
position:absolute;
inset:0;
margin:0;
padding:0;
list-style:none;
}
 
/* 全部を重ねて置き、表示中の1枚だけ不透明にする */
.kv__slide{
position:absolute;
inset:0;
opacity:0;
transition:opacity 1.2s ease;
}
.kv__slide.is_current{
opacity:1;
}
 
.kv__slide img{
display:block;
width:100%;
height:100%;
object-fit:cover;
}
 
/* 3. ロゴ。最前面・中央。位置は統合素材から実測した値 */
.kv__logo{
position:absolute;
left:50%;
bottom:2.66%;
width:79.4%;
height:auto;
transform:translateX(-50%);
z-index:2;
pointer-events:none;
}







/*======================= style.css =====================*/
/* 01：main設定 */
main{
background:url("../img/footer_pageend.webp") center bottom no-repeat;
background-size:100% auto;
padding:0px 0px 150px 0px;
}
.container{
}
p.enquete{
line-height:2.0;
margin: 0 auto 150px auto;
padding: 10px 0px;
width:780px;
text-align: center;
display:block;
border:1px solid #2466b0;
}
p.enquete a{
background: url("../img/icon_open.webp") right 10px no-repeat;
background-size: 20px auto;
color: #2466b0;
font-weight: 600;
font-size: 24px;
padding: 0 15px 0 0;
}
p.enquete a:hover{
text-decoration:none;
}
/* 02：introduction設定 */
.introduction{
margin-bottom:180px;
}
.introduction h2{
max-width:960px;
margin:0px auto 50px auto;
padding:0px 0px 0px 0px;
}
.introduction h2 img{
width:100%;
}
.introduction picture{
display:block;
width:960px;
margin:0 auto;
}
.introduction .slider_nav{
display:none;
}
.introduction ul{
margin:0px 0px 50px 0px;
}
.introduction p.more_btn{
max-width:404px;
margin:40px auto 0 auto;
}
.introduction p.more_btn img{
width:100%;
}
/* 03：area設定 */
.area{
text-align:center;
width:960px;
margin:0px auto;
padding:0px;
}
.area h3{
background:url("../img/decoration_area.webp") center bottom no-repeat;
background-size:580px auto;
width:600px;
color:#2466b0;
font-size:62px;
line-height:1.0;
letter-spacing: 5px;
text-align: center;
margin:0px auto;
padding:0px 0px 90px 0px;
}
.day{
max-width:80%;
padding:0px 0px 0px 0px;
margin:45px auto 30px auto;
}
.day dl{
color:#2466b0;
font-weight:550;
margin:0px 0px 60px 0px;
}
.day dt{
font-size:56px;
line-height:1.0;
text-align: left;
margin:0px;
padding:0px 0px 0px 30px;
}
.day dd{
line-height:0.8;
font-size:135px;
}
.day dd span{
font-size:31px;
display: inline-block;      /* height を効かせるために必須 */
vertical-align: middle;     /* 数字の行に対して中央に置く */
writing-mode: vertical-rl;
text-orientation: upright;  /* 1文字ずつ正立させる */
height: 3em;                /* ← 固定の高さ */
text-align: center;         /* ← 縦書きでは上下中央になる */
line-height: 1;
}
.day dd span:before,
.day dd span:after{
font-size:35px;
}
.day dd span:before{
content:"［";
}
.day dd span:after{
content:"］";
}
.day dd em{
display:inline-block;
font-style: normal;
margin:0px 0px 0px -30px;
}
.day ul{
margin:0px 0px 0px 0px;
padding:0px;
}
.day ul li:first-of-type{
margin:0px 0px 25px -32px;
}
.day ul li{
font-weight:400;
color:#2466b0;
font-size:34px;
line-height:1.0;
margin:0px 0px 25px 0px;
}
.day ul li em{
font-size:30px;
display:inline-block;
font-style:normal;
border:2px solid #2466b0;
padding:3px 10px 5px 10px;
margin:0px 15px 0px 0px;
}
.day ul li span{
font-size:42px;
}
.day ul li b{
font-weight:400;
display:inline-block;
}
.day ul li b.typeA:before{
content:"（";
margin:0px 0px 0px -20px;
}
.day ul li b.typeA:after{
content:"）";
}
.day ul li b.typeB:before{
content:"";
margin:0px 0px 0px -30px;
}
.day ul li b.typeB:after{
content:"";
}
.day ul li b.typeC{
letter-spacing:-3px;
}
.day ul li b.typeC:before{
content:"〔";
font-size:42px;
margin:0px 0px 0px -30px;
}
.day ul li b.typeC:after{
content:"〕";
font-size:42px;
}
.day ul li b.typeD{
letter-spacing:-10px;
}
.day ul li b.typeD:before{
content:"（";
letter-spacing:inherit;
margin:0px 0px 0px -20px;
padding:0px 9px 0px 0px;
}
.day ul li b.typeD:after{
content:"）";
letter-spacing:inherit;
padding:0px 0px 0px 9px;
}
/* 04：area_detail設定 */
.area_detail{
color:#2466b0;
margin:0px auto 200px auto;

/* NEWS設置時にはこちらにする
margin:0px auto 160px auto;
*/
}
.area_detail h3{
font-size:50px;
letter-spacing: 1px;
text-align: center;
margin:0px 0px 40px 0px;
}
.area_detail p{
width:620px;
font-weight:600;
font-size:16px;
line-height:1.6;
text-align: left;
margin:0px auto 20px auto;
padding:0px 0px 0px 0px;
}
.area_detail > em{
display:block;
font-style:normal;
font-size:16px;
text-align: center;
padding:10px 0px 20px 0px;
}
.area_detail p:last-of-type{
}
_::-webkit-full-page-media, _:future, :root .area_detail p{
width:640px;
letter-spacing: -1px;
}
.area_detail strong{
background:url("../img/decoration_line01.webp") center top no-repeat;
background-size:276px auto;
text-align: center;
display:block;
font-size:40px;
padding:90px 0px 0px 0px;
margin:0px 0px 0px 0px;
}
/* NEWSが戻ってきた時
.area_detail .link_btn dl{
background:url("../img/decoration_line01.webp") center bottom no-repeat;
background-size:280px 13px;
padding:0px 0px 100px 0px;
margin:0px 0px 80px 0px;
}
*/
.area_detail .link_btn dl{
padding:0px 0px 75px 0px;
margin:0px 0px 0px 0px;
}
.area_detail .link_btn dt{
max-width:404px;
margin:0 auto 20px auto;
}
.area_detail .link_btn dt img{
width:100%;
}
.area_detail .link_btn dd{
font-weight:600;
display:flex;
justify-content:center;
align-items:flex-end;
}
.area_detail .link_btn dd img{
text-decoration:underline;
width:13px;
height:13px;
display:inline;
}
.area_detail .link_btn dd a{
background:url("../img/icon_open.webp") right 8px no-repeat;
background-size:14px 14px;
text-decoration:underline;
padding:0px 15px 0px 0px;
}

/* 05：news設定 */
.news{
width:960px;
display:block;
position:relative;
margin:0px auto 110px auto;
}
.news::after {
content: "";
display: inline-block;
bottom:-20px;
left:-23px;
position:absolute;
width: 1006px;
height: 67px;
background-image: url("../img/news_footer_bg.webp");
background-size: 1006px 67px;
background-repeat: no-repeat;
background-position: center;
}
.news h3{
background:url("../img/news_head_bg02.webp") center bottom no-repeat;
background-size:960px 130px;
font-size:62px;
letter-spacing: 12px;
color:#2466b0;
text-align: center;
padding:0px 0px 60px 13px;
position: relative;
z-index:10;
}
.headline{
background-color:rgba(255,255,255,0.50);
z-index: 5;
margin:-60px 0px 0px 0px;
padding:120px 0px 70px 0px;
}
.headline ul{
width:800px;
margin:0px auto;
}
.headline ul li{
background:url("../img/decoration_news_icon.webp") 15px center no-repeat #fff;
background-size:60px 40px;
border:1px solid #bd9753;
border-radius: 50px;
display:flex;
align-items: baseline;
padding:20px 0px 20px 90px;
margin:0px 0px 30px 0px;
}
.headline ul li > a{
background:url("../img/arrow.webp") 95% center no-repeat;
background-size:22px 20px;
width:100%;
display:flex;
align-items: baseline;
}
.headline ul li time{
font-size:16px;
color:#bf9c46;
display:inline-block;
margin:0px 40px 0px 0px;
}
.headline ul li b{
font-weight:400;
}
.headline ul li time span{
font-size:26px;
}
.headline p a{
max-width:405px;
height:67px;
display:block;
margin:0 auto;
}
.headline p a img{
width:100%;
}
/* 06：end_mes設定 */
.end_mes{
font-weight:600;
text-align: center;
padding:50px 0px;
}
.end_mes p{
font-size:32px;
color:#2466b0;
margin:0px 0px 30px 0px;
}
.end_mes span{
display:block;
font-size:18px;
color:#000;
margin:0px 0px 10px 0px;
}
.end_mes a.x_icon{
max-width:66px;
display:block;
margin:0px auto;
}
.end_mes a img{
width:100%;;
}

/* 07：SHARE設定 */
.share dl{
text-align: center;
margin:0px 0px 100px 0px;
}
.share dt{
font-weight:600;
font-size:36px;
color:#2466b0;
letter-spacing: 5px;
margin:0px 0px 10px 0px;
}
.share dd{
display:flex;
justify-content:center;
}
.share dd a{
display:block;
}
.share dd img{
display:block;
width:auto;
height:73px;
}
.link_area{
background:#f9f5ef;
display:flex;
justify-content: center;
flex-wrap: wrap;
gap:15px;
padding:75px 0px;
}
.link_area ul{
width:auto;
display:flex;
justify-content:center;
align-items: flex-start;
width:100%;
gap:25px;
margin:0px auto 60px auto;
}
.link_area ul li{
background: #fff;
border-radius: 100px;
}
.link_area ul li img{
display:block;
width:auto;
height:73px;
}
.link_area ul li img:hover{
opacity:0.7;
} 
.link_area p{
text-align:center;
color:#2466B0;
font-weight:500;
}
.link_area p span:after{
content:"：";
display:inline-block;
}
.link_area p:nth-of-type(2){
display:inline-block;
}

/*=========================================================
 
 GOODS バナースライダー
 
=========================================================*/
.top_goods{
position:relative;
padding:60px 0 80px;
text-align:center;
overflow:hidden;
}
 
.goods__title{
position:relative;
z-index:2;           /* スライダーより前面へ */
margin:0 0 -5%;    /* 見本実測：唐草の下端が枠の上端に約22px重なる */
pointer-events:none; /* 重なった部分でもスライダーの操作を妨げない */
}
.goods__title img{
max-width:858px;
height:auto;
margin:0 auto;
}
 
/* ---- スライダー本体 ---- */
.goods_slider{
position:relative;
z-index:1;
width:100%;
overflow:hidden;/* 見切れの外側を隠す */
margin-top:-60px;
}
 
.goods_slider__list{
display:flex;
margin:0;
padding:0;
list-style:none;
will-change:transform;       /* transform は JS が管理する */
}
 
.goods_slider__item{
flex:0 0 60%;                /* 見本実測：枠はビューポートの60% */
margin:0 0.5%;               /* 枠同士の間隔 約3.2% */
box-sizing:border-box;
padding:2.2%;                /* 金縁とバナーの間の白い余白（見本実測） */
background:url("../img/top/goods_slide_bg.webp") center center / 100% 100% no-repeat;
/* 中央以外は一回り小さく。中央に来たら原寸に戻る */
transform:scale(.88);
transition:transform .6s cubic-bezier(.22,1,.36,1);
}

 
/* 中央のスライドだけ原寸 */
.goods_slider__item.is_current{
transform:scale(1);
z-index:2;
}

.goods_slider__item a{
display:block;
width:100%;
height:100%;
}

.goods_slider__item img{
display:block;
width:100%;
height:100%;
object-fit:cover;
}
 
/* 見切れ（中央以外）はクリックで移動する。カーソルで示す */
.goods_slider__item:not(.is_current){
cursor:pointer;
}
 
/* ---- 矢印とドット（slider.js が生成する） ---- */
.slider_nav{
display:flex;
justify-content:center;
align-items:center;
gap:26px;          /* 矢印とドット群の間隔（見本実測） */
margin:0px 0 30px;
}
 
.slider_nav__arrow{
width:0;
height:0;
padding:0;
border-style:solid;
background:none;
cursor:pointer;
appearance:none;
-webkit-appearance:none;
}
.slider_nav__arrow_prev{
border-width:7px 12px 7px 0;
border-color:transparent #b78d3c transparent transparent;
}
.slider_nav__arrow_next{
border-width:7px 0 7px 12px;
border-color:transparent transparent transparent #b78d3c;
}
.slider_nav__arrow:hover{
opacity:.7;
}
 
.slider_nav__dots{
display:flex;
gap:10px;
margin:0;
padding:0;
list-style:none;
}
.slider_nav__dots button{
display:block;
width:7px;
height:7px;
padding:0;
border:none;
border-radius:50%;
background:#cfc8bb;          /* 非選択 */
cursor:pointer;
appearance:none;
-webkit-appearance:none;
}
.slider_nav__dots .is_current{
background:#b78d3c;          /* 選択中＝金 */
}
 
/* ---- 詳細ボタン（仮。専用画像が来たら差し替える） ---- */
.goods__more{
max-width:400px;
margin:0 auto;
}
.goods__more img{
width:100%;
}

/*=========================================================
 
 会場フォトスライダー（中央拡大カルーセル）
 
=========================================================*/
@charset "UTF-8";
/*=========================================================

 会場スライダー（3連・横並び）

 3つのスライダーを中央寄せで横並び。中央が大きく左右が小さい。
 各スライダーは画像1枚を金枠に入れ、横スライドで切り替える。
 画像比率は 40:23（introduction_title01〜03 実測）。

=========================================================*/
.venue3{
display:flex;
justify-content:center;
align-items:center;
gap:2%;
position:relative;
width:100%;
margin:0px 0px 50px 0px;
padding-left:40px;      /* 左端の余白 */
padding-right:40px;     /* 右端の余白 */
box-sizing:border-box;  /* paddingを含めて幅100%に収める */
}
.venue3::after{
content:"";
position:absolute;
left:50%;
bottom:-18px;                /* 中央スライダーの下辺からの位置。実機で調整 */
width:50%;                   /* 中央スライダー(44%)に近い幅 */
aspect-ratio:1408 / 130;     /* introduction_slider.webp の実寸比 */
transform:translateX(-50%);
background:url("../img/top/introduction_slider.webp") center bottom / contain no-repeat;
pointer-events:none;
}
/* 各スライダー＝金グラデ枠（3px・角丸）。中で画像が横スライド */
.venue3__slider{
position:relative;
border-radius:10px;
overflow:hidden;
aspect-ratio:40 / 23;
}
/* 金枠を画像の上に重ねる（borderを使わないので隙間が出ない）*/
.venue3__slider::before{
content:"";
position:absolute;
inset:0;
border-radius:10px;
padding:2px;                 /* 枠の太さ */
background:linear-gradient(120deg, #a87c37 0%, #d6bb8b 25%, #ecd081 50%, #b1955f 75%, #ecd07f 100%);
-webkit-mask:
  linear-gradient(#fff 0 0) content-box,
  linear-gradient(#fff 0 0);
-webkit-mask-composite:xor;
        mask-composite:exclude;
pointer-events:none;
z-index:2;
}

/* 中央（大）・左右（小）*/
.venue3__slider--main{
flex:0 0 44%;
}
.venue3__slider--side{
flex:0 0 26%;
}

.venue3__list{
display:flex;
margin:0;
padding:0;
list-style:none;
height:100%;
will-change:transform;
transition:transform .6s cubic-bezier(.22,1,.36,1);
}

.venue3__item{
flex:0 0 100%;
height:100%;
}

.venue3__item img{
display:block;
width:100%;
height:100%;
object-fit:contain;
}

/* PC では矢印・ドットを出さない */
.venue3__nav{
display:none;
}








/*======================= lower.css =====================*/
#lower header{
width:100%;
aspect-ratio:2000 / 705; /* ← 実画像の縦横比。画像を差し替えたらこの値も合わせる（幅 / 高さ） */
background-size:100% auto;   /* 横幅いっぱいに表示（左右の余白が出ない） */
background-repeat: no-repeat;
background-position: center top;
margin:0px 0px 130px 0px;
/*地方メニューが出たらこちらに変更
margin:0px 0px 0px 0px;
*/
padding:0;
position: relative;
}
#lower header p.logo{
max-width:330px;
position:absolute;
top:8px;
left:35px;
margin:0;
}
#lower header p.logo img{
width:100%;
display:block;
}
#lower header h1{
margin:0;
padding:0;
text-indent:100%;
white-space:nowrap;
overflow:hidden;
}

/*各ページのヘッダー部分*/
#lower.information header{
background-image: url("../img/header_bg_information.webp");
}
#lower.ticket header{
background-image: url("../img/ticket/header_bg_ticket.webp");
}
#lower.news_list header,
#lower.news_detail header{
background-image: url("../img/news/header_bg_news.webp");
}
#lower.goods header{
background-image: url("../img/goods/header_bg_goods.webp");
}
#lower.contents header{
background-image: url("../img/contents/header_bg_contents.webp");
}

#lower .container{
width:1080px;
margin:0 auto;
}
#lower .end_mes{
background:none;
padding:0px 0px 35px 0px;
}
#lower .end_mes p{
margin-bottom:100px;
}
#lower .end_mes a.backtop{
width:300px;
display:block;
margin:0 auto;
}
#lower .share dl{
margin:0 0px 90px 0;
}
#lower footer{
padding:80px 0px 0px 0px;
}





/*=========================================================
 
 追従チケット購入ボタン
 
=========================================================*/
.ticket_btn{
position: fixed;
right: 20px;
bottom: 20px;
z-index: 50;
width: 190px;
margin: 0;
padding: 0;
transition: opacity 0.3s ease, visibility 0s linear 0.3s;
} 
.ticket_btn figure{
width: 100%;
margin: 0;
padding: 0;
}
.ticket_btn img{
display: block;
width: 100%;
height: auto;
}
.ticket_btn a{
display: block;
transition: opacity 0.2s ease;
}

/*=========================================================
 
 ページの先頭ボタン
 
=========================================================*/
.pagetop_btn{
position: fixed;
right: 20px;
bottom: 20px;
z-index: 5;
width: 50px;
margin: 0;
padding: 0;
/* 初期は隠す。スクロールで .is_shown が付いたら表示 */
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
/* スクロール後に表示 */
.pagetop_btn.is_shown{
opacity: 1;
visibility: visible;
transition: opacity 0.3s ease, visibility 0s linear 0s;
} 
.pagetop_btn figure{
width: 100%;
margin: 0;
padding: 0;
}
.pagetop_btn img{
display: block;
width: 100%;
height: auto;
}
.pagetop_btn a{
display: block;
transition: opacity 0.2s ease;
}


/*=========================================================
 
 追従チケット購入ボタン動き設定
 
=========================================================*/
.ticket_btn a{
display:block;
transition:transform .45s cubic-bezier(.22,1,.36,1), filter .45s ease;
}
.ticket_btn a:hover{
transform:translate(-3px, -3px);
opacity:1.0;
}
 
/*---------------------------------------------------------
 動きを減らす設定のときは、光沢と傾きをやめて
 明るさの変化だけにする
---------------------------------------------------------*/
@media (prefers-reduced-motion: reduce){
.ticket_btn a{
transition:filter .3s ease;
}
.ticket_btn a:hover{
transform:none;
filter:brightness(1.1);
}
.ticket_btn a:hover::after{
animation:none;
}
}




/*=========================================================
 
 下層ページ共通のコンテンツエリア
 
=========================================================*/
.contents_area{
display:block;
position:relative;
margin:0px 0px 160px 0px;
}
.contents_area::after {
content: "";
display: inline-block;
bottom:-20px;
left:-23px;
position:absolute;
width: 1123px;
height: 67px;
background-image: url("../img/contents_footer_bg.webp");
background-size: 1123px 67px;
background-repeat: no-repeat;
background-position: center;
}
.contents_area .detail{
background:#ffffff50;
z-index: 5;
margin:-60px 0px 0px 0px;
padding:100px 110px 130px 110px;
}
.contents_area .detail p{
font-size:18px;
}
.contents_area .detail h3{
font-weight:600;
color:#2466b0;
font-size:24px;
padding:30px 0px;
}
.contents_area .venue dl{
font-size:18px;
display:flex;
flex-wrap:wrap;
margin:50px 0px 0px 0px;
}
.contents_area .venue dl:nth-of-type(1){
margin:0px;
}
.contents_area .venue dl:nth-of-type(5){
margin:0px;
}
.contents_area ul{
font-size:18px;
line-height:1.8;
margin:25px 0px 0px 26px;
}
.contents_area ul li{
list-style-type:disc;
}
.for_contact dl{
text-align: center;
margin:0px 0px 110px 0px;
}
.for_contact dt{
font-weight:600;
font-size:36px;
color:#2466b0;
letter-spacing: 5px;
margin:0px 0px 10px 0px;
}
.for_contact dd{
display:flex;
justify-content:center;
}
.for_contact dd a{
display:block;
}
.for_contact dd img{
display:block;
width:auto;
height:73px;
}

.ribbon_deco{
background:
url("../img/decoration_line01.webp") top center no-repeat,
url("../img/decoration_line01.webp") bottom center no-repeat;
background-size:280px 13px;
text-align: center;
padding:25px 0px;
}

.area_navi{
padding-top:77px;
}
.area_navi ul{
width:1080px;
display:flex;
flex-wrap:wrap;
justify-content:space-between;
margin:0px 0px 55px 0px;
}
.area_navi ul li{
width:260px;
height:70px;
border-radius: 50px;
background:url("../img/area_btn_off.webp") top left no-repeat #fff;
background-size:cover;
display:flex;
font-size:28px;
color:#cdbb99;
font-weight:600;
justify-content:center;
align-items:center;
}
.area_navi ul li.active{
background:url("../img/area_btn_on.webp") top left no-repeat #fff;
background-size:cover;
color:#2466b0;
}
.area_navi ul li:hover{
background:url("../img/area_btn_on.webp") top left no-repeat #fff;
background-size:cover;
color:#2466b0;
}

/*=========================================================
 
 下層ページ：informationページ
 
=========================================================*/
.information .venue dt{
font-weight:600;
}
.information .venue dt:before{
content:"♦︎";
color:#2466B0;
display:inline-block;
}
.information .venue dt:after{
content:"：";
display:inline-block;
}

.googlemap{
width:640px;
margin:0px auto;
padding:5px 0px 50px 0px;
}

/*=========================================================
 
 下層ページ：ticketページ
 
=========================================================*/
.area_head h2{
max-width:450px;
margin:0 auto;
}
.area_head h2 img{
width:100%;
}
.contents .area_head{
margin:0px 0px 100px 0px;
}
.page_contents{
margin:65px 0px 65px 0px;
}
.page_contents ul{
display:flex;
flex-wrap:wrap;
justify-content:center;
align-items:center;
/* 42 ÷ 1771 = 2.371% */
column-gap:2.37%;
row-gap:16px;
width:100%;
max-width:1080px;
margin:0px auto 0 auto;
padding:0;
list-style:none;
}
.page_contents li{
margin:0;
padding:0;
}
.page_contents li:nth-child(1),
.page_contents li:nth-child(3),
.page_contents li:nth-child(4),
.page_contents li:nth-child(6),
.page_contents li:nth-child(7){
width:21.68%;    /* 384 ÷ 1771 */
}
.page_contents li:nth-child(2){
width:27.83%;    /* 493 ÷ 1771 */
}
.page_contents li:nth-child(5){
width:32.69%;    /* 579 ÷ 1771 */
}
.page_contents a{
display:block;
transition:transform .45s cubic-bezier(.22,1,.36,1), filter .45s ease;
}
.page_contents picture{
display:block;
}
.page_contents img{
display:block;
width:100%;
height:auto;
}
.page_contents a:hover{
transform:translate(-5px, -5px);
filter:drop-shadow(5px 5px 8px rgba(122,90,30,.3));
}
.ticket .detail h3{
margin:0px 0px 30px 0px;
}
.ticket .detail h4{
color:#2466b0;
font-size:20px;
padding:0px 0px 30px 0px;
text-align: center;
}
.ticket .detail dl{
font-size:18px;
margin:40px 0px 0px 0px;
}
.ticket .detail dl:first-of-type{
margin-top:0px;
}
.ticket .detail dl.last{
margin-top:40px !important;
}
.ticket .detail dt{
font-weight:600;
}
.ticket .detail dt:before{
content:"♦︎";
color:#2466B0;
display:inline-block;
}
.ticket .detail dd{
padding-left:20px;
}
.ticket .detail dd em{
font-style:normal;
}
.ticket .detail a.btn{
max-width:270px;
display:block;
margin:20px auto 0 auto;
}
.ticket .detail a.btn img{
width:100%;
}
.ticket .detail picture{
display:block;
max-width:75%;
margin:0 auto 15px auto;
}
.ticket .detail picture img{
width:100%;
}
.ticket .detail picture img.new{
box-sizing: border-box;
border: 2px solid transparent;
border-radius: 20px;
background-image: linear-gradient(#fff, #fff), linear-gradient(120deg, #a87c37 0%, #d6bb8b 25%, #ecd081 50%, #b1955f 75%, #ecd07f 100%);
background-origin: border-box;
background-clip: padding-box, border-box;
}
.ticket .ticket_info dl:last-of-type{
margin:0px;
}
.ticket .ticket_info dt:after,
.ticket .schedule_info dt:after,
.ticket .sign dt:after{
content:"：";
display:inline-block;
}
.ticket .ticket_info h3 + p{
margin:0px 0px 30px 0;
}
.ticket .ticket_info h3:nth-of-type(1){
margin-top:30px;
}
.ticket .detail .pre01 dl{
margin:0px;
}
.ticket .detail .pre02 dl{
margin:30px 0px 0px 0px;
}
.ticket .detail .pre03 dl{
margin:50px 0px 0px 0px;
}
.ticket .schedule_info h3 + dl{
margin:0px 0px 0px 0;
}
.ticket .benefits_info p:has(+ .small){
margin:0px 0px 30px 0px;
}
.ticket .benefits_info picture.second{
display:block;
margin-bottom:10px;
border-radius:20px;
padding:2px;                 /* 枠の太さ */
background:linear-gradient(120deg, #a87c37 0%, #d6bb8b 25%, #ecd081 50%, #b1955f 75%, #ecd07f 100%);
/*
-webkit-mask:
  linear-gradient(#fff 0 0) content-box,
  linear-gradient(#fff 0 0);
-webkit-mask-composite:xor;
        mask-composite:exclude;
*/
}
.ticket .benefits_info picture.second img{
border-radius:20px;
}

.ticket .sign p{
margin:0px 0px 30px 0px;
}
.ticket .voice_guide p:nth-of-type(1){
margin-bottom:30px;
}
.ticket .group_list dl{
display:flex;
flex-wrap: wrap;
}
.ticket .group_list dt{
width:130px;
}
.ticket .group_list dt:after{
content:"：";
display:inline-block;
}
.ticket .group_list dd{
width:calc(100% - 130px);
padding:0;
}
.ticket .group_list + p.small{
margin-top:30px;
}


/*=========================================================
 
 下層ページ：news一覧ページ
 
=========================================================*/
.news_list .detail ul{
width:800px;
margin:0px auto;
}
.news_list .detail ul li{
background:url("../img/decoration_news_icon.webp") 15px center no-repeat #fff;
background-size:60px 40px;
border:1px solid #bd9753;
border-radius: 50px;
display:flex;
align-items: baseline;
padding:20px 0px 20px 90px;
margin:0px 0px 30px 0px;
}
.news_list .detail ul li > a{
background:url("../img/arrow.webp") 95% center no-repeat;
background-size:22px 20px;
width:100%;
display:flex;
align-items: baseline;
}
.news_list .detail ul li time{
font-size:16px;
color:#bf9c46;
display:inline-block;
margin:0px 40px 0px 0px;
}
.news_list .detail ul li b{
font-weight:400;
}
.news_list .detail ul li time span{
font-size:26px;
}
.news_list .detail p a{
max-width:405px;
height:67px;
display:block;
margin:0 auto;
}
.news_list .detail p a img{
width:100%;
}
.news_detail .contents_area .detail{
background-color:rgba(255,255,255,0.85);
}
.news_detail .detail dl{
font-size:18px;
margin:0px 0px 0px 0px;
}
.news_detail .detail dt{
font-weight:600;
}
.news_detail .detail dt:before{
content:"♦︎";
color:#2466B0;
display:inline-block;
}
.news_detail .detail dd{
padding-left:0px;
}
.news_detail .detail a.btn{
max-width:270px;
display:block;
margin:20px auto 0 auto;
}
.news_detail .detail a.btn img{
width:100%;
}
.news_entry figure{
max-width:80%;
display:block;
margin:40px auto 15px auto;
padding:0px;
}
.news_entry figure img{
width:100%;
}


/*=========================================================
 
 下層ページ：Goodsページ

=========================================================*/
.goods .lead p{
text-align: center;
font-size:25px;
font-weight:600;
color:#2466B0;
margin:0px 0px 100px 0px;
}
.goods .detail picture img.new{
box-sizing: border-box;
border: 2px solid transparent;
border-radius: 10px;
background-image: linear-gradient(#fff, #fff), linear-gradient(120deg, #a87c37 0%, #d6bb8b 25%, #ecd081 50%, #b1955f 75%, #ecd07f 100%);
background-origin: border-box;
background-clip: padding-box, border-box;
}
.goods .detail dl{
font-size:18px;
margin:0px 0px 0px 0px;
}
.goods .detail dt{
font-weight:600;
}
.goods .detail dt:before{
content:"♦︎";
color:#2466B0;
display:inline-block;
}
.goods .caution dt:after{
content:"：";
display:inline-block;
}
.goods .detail .item_info dd{
font-weight:600;
padding-left:20px;
}
.goods .contents_area .item_info{
margin-bottom:50px;
}
.goods .contents_area .item_info p {
font-size: 12px;
line-height: 1.0;
margin:10px 0 0px 20px;
padding: 0;
}
.goods .contents_area .item_info p.catch{
font-size: 16px;
line-height: 1.0;
margin:5px 0 5px 20px;
padding: 0;
}
.goods .contents_area .item_info h5{
font-weight:normal;
font-size:12px;
display:inline;
padding-left:20px;
}
.goods .contents_area .item_info h5:after{
content:"：";
}
.goods .contents_area .item_info ol{
display: block;
line-height: 1.5;
font-size: 13px;
margin-left: 34px;
}
.goods .contents_area .item_info ol li{
display:inline;
font-size:12px;
}
.goods .contents_area .item_info ol li:after{
content:"／";
display:inline-block;
}
.goods .contents_area .item_info ol li:last-of-type:after{
content:"";
}
.goods .contents_area .item_info ol li:nth-child(5)::before{
content:"";
display:block;      /* 5個目の前で改行させる */
}
.goods .contents_area .item_info ul{
font-size:18px;
line-height:1.8;
margin:0px 0px 0px 20px;
}
.goods .contents_area .item_info ul li{
list-style-type:none;
font-size:12px;
margin:0px;
}
.goods .contents_area .item_info em{
font-style:normal;
font-size:40px;
display:block;
text-align: center;
color:#2466B0;
padding:80px 0px 0px 0px;
}
.goods .contents_area picture{
display:block;
margin-bottom:10px;
}
.goods .contents_area picture.second{
display:block;
margin-bottom:10px;
border-radius:20px;
padding:2px;                 /* 枠の太さ */
background:linear-gradient(120deg, #a87c37 0%, #d6bb8b 25%, #ecd081 50%, #b1955f 75%, #ecd07f 100%);
/*
-webkit-mask:
  linear-gradient(#fff 0 0) content-box,
  linear-gradient(#fff 0 0);
-webkit-mask-composite:xor;
        mask-composite:exclude;
*/
}
.goods .contents_area picture.second img{
border-radius:20px;
}
.goods .detail.bonus p{
text-align: center;
padding:30px 0px;
}
.goods .detail.bonus ul{
font-size:13px;
margin:0px 0px 0px 0px;
}
.goods .detail.bonus ul li{
list-style-type:none;
}
.goods .detail.caution ul{
margin-top:0px;
}
.goods .detail.caution ul strong{
font-weight:600;
}
.goods .detail.caution picture{
max-width:80%;
display:block;
}
.goods .detail.caution picture img{
width:100%;
}
.goods .detail.caution dl{
margin-top:50px;
}
.goods .detail.caution ol{
font-size:18px;
line-height:1.8;
margin:0px 0px 0px 26px;
}
.goods .detail.caution ol li{
list-style-type:disc;
}
.goods .detail.caution ol li em{
color:#f00;
font-style:normal;
}



/*=========================================================
 
 下層ページ：Contentsページ

=========================================================*/
.contents .map{
margin-bottom:80px;
}
.contents .map h3{
margin-bottom:50px;
}
.contents .map figcaption{
font-size:13px;
padding:5px 0px 0px 0px;
}
.contents .area_info h3{
margin-bottom:30px;
}
.contents .area_info h4{
margin:50px 0 10px 0;
font-size:20px;
display:block;
color:#2466B0;
text-align: center;
}
.contents .area_info p{
font-size:18px;
text-indent:-9px;
margin-left:18px;
}
.contents .area_info p:before{
content:"♦︎";
color:#2466B0;
display:inline-block;
}
.contents .area_info figure{
display:block;
max-width:640px;
margin:15px auto 0 auto;
}
.contents .area_info figure img{
width:100%;
}
.contents #welcome_area figure img,
.contents #party_time figure img{
box-sizing: border-box;
border: 3px solid transparent;
border-radius: 20px;
background-image: linear-gradient(#fff, #fff), linear-gradient(120deg, #a87c37 0%, #d6bb8b 25%, #ecd081 50%, #b1955f 75%, #ecd07f 100%);
background-origin: border-box;
background-clip: padding-box, border-box;
width:100%;
}
.contents .area_info figure:nth-of-type(1){
margin-top:40px;
}
.contents .area_info > dl{
font-size:18px;
margin:40px 0px 0px 0px;
}
.contents .area_info dl:first-of-type{
margin-top:0;
}
.contents .area_info dt{
font-weight:600;
}
.contents .area_info dt:before{
content:"♦︎";
color:#2466B0;
display:inline-block;
}
.contents .area_info dt:after{
content:"：";
display:inline-block;
}
.contents #if_story_guest dd{
margin-left:15px;
}
.contents .detail a.btn{
max-width:270px;
display:block;
margin:50px auto 0px auto;
}
.contents .detail a.btn img{
width:100%;
}
.contents .detail picture.image_photo{
max-width:640px;
display:block;
margin:0 auto 50px auto;
}
.contents .detail picture.image_photo img{
width:100%;
}
.schedule{
width:860px;
margin:0 auto;
box-sizing:border-box;
border:2px solid transparent;
border-radius:10px;
background-image:
  linear-gradient(#fff, #fff),
  linear-gradient(120deg, #a87c37 0%, #d6bb8b 25%, #ecd081 50%, #b1955f 75%, #ecd07f 100%);
background-origin:border-box;
background-clip:padding-box, border-box;
overflow:hidden;
padding:30px;
}
/* 1ブロック＝日付列＋名前列の2カラム */
.schedule__row{
display:flex;
align-items:center;
margin:0;
padding:0;
}
/* ブロック間の横区切り線（2本目以降の上に引く）*/
.schedule__row + .schedule__row{
border-top:1px solid #d9d9d9;
}
/* 日付列 */
.schedule__date{
flex:0 0 300px;
box-sizing:border-box;
padding:0px 0px 0px 20px;
color:#000000;
font-size:16px;
letter-spacing: -1px;
line-height:2.0;
text-align:left;
font-weight:normal !important;
}
dt.schedule__date:before,
dt.schedule__date:after{
content:"" !important;
display:none !important;
}
/* 名前列 */
.schedule__names{
border-left:1px solid #d9d9d9;   /* 縦区切り線 */
flex:1 1 auto;
box-sizing:border-box;
margin:0;
color:#000000;
font-size:16px;
line-height:2.0;
text-align:left;
padding: 20px 10px 20px 30px;
}
.map figure{
margin:0;
}
.map figure img{
box-sizing: border-box;
border: 3px solid transparent;
border-radius: 20px;
background-image: linear-gradient(#fff, #fff), linear-gradient(120deg, #a87c37 0%, #d6bb8b 25%, #ecd081 50%, #b1955f 75%, #ecd07f 100%);
background-origin: border-box;
background-clip: padding-box, border-box;
margin:0;
}
.map__pic{
position:relative;
display:block;
width:100%;
max-width:860px;        /* PC表示サイズ */
margin:0 auto;
line-height:0;
}
.map__pic img{
display:block;
width:100%;
height:auto;
}
.map__area{
position:absolute;
display:block;
/* デバッグ時に領域を見るには次を有効化
   background:rgba(255,0,0,.25); border:1px solid red; */
border-radius:8px;
transition:background .2s ease;
}
.map__area:hover,
.map__area:focus-visible{
background:rgba(255,255,255,.25);
outline:none;
}
.map__area span{
position:absolute;
width:1px; height:1px;
margin:-1px; padding:0;
overflow:hidden;
clip:rect(0 0 0 0);
white-space:nowrap;
border:0;
}
.map figcaption{
line-height:1.6;
margin-top:12px;
text-align:center;
font-size:13px;
}








/*=========================================================
 
 下層ページ：共通で使用
 
=========================================================*/
.blue2466B0{
color:#2466B0;
}
.small{
font-size:13px !important;
}
hr{
display:block;
width:95px;
height:auto;
aspect-ratio:148 / 40;
max-width:100%;
margin:70px auto 70px auto;
padding:0;
border:none;
outline:none;
box-shadow:none;
background-color:transparent;
background-image:url("../img/hr_bg.webp");
background-repeat:no-repeat;
background-position:center center;
background-size:contain;
color:transparent;
font-size:0;
line-height:0;
overflow:hidden;
}
hr::before,
hr::after{
content:none;
display:none;
}







}

/* ============================================================


SP 用スタイル（max-width:768px）


============================================================ */
@media screen and (max-width:768px){

.menu_btn{
position:fixed;
top:0;
right:0;
z-index:1000;
display:block;
width:65px;
height:65px;
padding:0;
border:none;
outline:none;
box-shadow:none;
background-color:transparent;
background-image:url("../img/hamburger_bg.webp");
background-repeat:no-repeat;
background-position:center center;
background-size:contain;
cursor:pointer;
appearance:none;
-webkit-appearance:none;
}
.menu_btn.is_open{
background-position:10px 20px; /* ← 位置 */
}


/* ================= base.css ================= */
/* 01：ヘッダー */
header{
margin:0px 0px 20px 0px;
position:relative;
z-index: 10;
}
header h1{
max-width:100%;
}
header h1 img{
width:100%;
}

/* 02：フッター */
footer{
background:#fff;
padding:30px 0px 0px 0px;
}
footer > p{
background:url("../img/footer_bg.webp") left top no-repeat;
background-size:100% 83px;
color:#fff;
font-size:14px;
text-align: center;
padding:27px 0px 22px 0px;
}

/* 03：表示切替（PC / SP） */
.pc{
display:none !important;
}
.sp{
display:block !important;
}

.block{
display:block;
}
.inline_block{
display:inline-block;
}
/**/
.menu_btn{
--btn-size:60px;
--btn-top:10px;
--btn-right:10px;
--line-w:26px;
--line-h:2px;
--line-gap:8px;
--line-color:#fff;
}
.global_nav{
position:fixed;
top:0;
right:0;
left:0;
z-index:999;
width:100%;
height:100vh;
height:100dvh;
padding:var(--nav-pad);
overflow-y:auto;
background-color:rgba(255,255,255,0.80);
}
.global_nav ul{
padding-top:80px;
}


.kv{
position:relative;
width:100%;
margin:0;
aspect-ratio:3201 / 2900;   /* キャスト等倍より縦長。下に受け皿を作る */
overflow:hidden;

--kv_fade_from:74%;
--kv_fade_to:100%;
}

/* 1. 地紋＋金アーチ。KV 最下端にそろえる（下に余地を残さない）*/
.kv__bg{
position:absolute;
left:0;
bottom:-4%;                  /* 0 → -4%：下へ */
width:100%;
height:auto;
z-index:0;
pointer-events:none;
padding-bottom:10px;
}

/* 2. キャスト。等倍・横幅ぴったり。上へ寄せて上部の空きを詰める。
   下端はフェードで地紋へ繋ぐ */
.kv__slider{
position:absolute;
top:-6%;                     /* 上へ寄せる量。数値を小さくするほど上へ */
left:0;
width:100%;
aspect-ratio:3201 / 2264;
z-index:1;
-webkit-mask-image:linear-gradient(to bottom, #000 var(--kv_fade_from), transparent var(--kv_fade_to));
mask-image:linear-gradient(to bottom, #000 var(--kv_fade_from), transparent var(--kv_fade_to));
}

.kv__list{
position:absolute;
inset:0;
margin:0;
padding:0;
list-style:none;
}

.kv__slide{
position:absolute;
inset:0;
opacity:0;
transition:opacity 1.2s ease;
}
.kv__slide.is_current{
opacity:1;
}

.kv__slide img{
display:block;
width:100%;
height:100%;
object-fit:cover;
}

/* 3. ロゴ。等倍より下げてキャラの体に被らないようにする */
.kv__logo{
position:absolute;
left:50%;
bottom:5%;                  /* 2% → -3%：下へ */
width:79.4%;
height:auto;
transform:translateX(-50%);
z-index:2;
pointer-events:none;
}

/* ================= style.css ================= */
/* 01：main設定 */
main{
background:url("../img/footer_pageend.png") center bottom no-repeat;
background-size:100% auto;
padding:0px 0px 50px 0px;
}
.container{
width:90%;
margin:0px auto;
}

p.enquete{
margin: 0 0 50px 0;
padding: 5px 0px 7px 0px;
line-height:1.6;
text-align: center;
border:1px solid #2466b0;
}
p.enquete a{
background: url("../img/icon_open.webp") right 5px no-repeat;
background-size: 16px auto;
color: #2466b0;
font-weight: 600;
font-size: 16px;
padding: 0 15px 0 0;
}
p.enquete a:hover{
text-decoration:none;
}

/* 02：introduction設定 */
.introduction{
margin-bottom:90px;
}
.introduction h2{
max-width:100%;
margin:0px auto 30px auto;
padding:0px 0px 0px 0px;
}
.introduction h2 img{
width:100%;
}
.introduction p.more_btn{
max-width:200px;
margin:30px auto 20px auto;
}
.introduction p.more_btn img{
width:100%;
}

/* 03：area設定 */
.area{
margin:0px;
padding:0px;
}
.area h3{
background:url("../img/decoration_area.webp") center bottom no-repeat;
background-size:260px auto;
color:#2466b0;
font-size:28px;
line-height:1.0;
letter-spacing: 5px;
text-align: center;
margin:0px auto 5px auto;
padding:0px 0px 45px 0px;
}
.day{
text-align: center;
padding:0px 0px 0px 0px;
margin:10px 0px 20px 0px;
}
.day dl{
color:#2466b0;
font-weight:550;
margin:0px 0px 15px 0px;
}
.day dt{
font-size:20px;
line-height:1.0;
text-align: left;
margin:0px;
padding:0px 0px 0px 10px;
}
.day dd{
letter-spacing: -2px;
line-height:0.8;
font-size:50px;
}
@media screen and (max-width: 393px){
.day dt{
padding:0px 0px 0px 8px;
}
.day dd{
letter-spacing: -3.5px !important;
}
}
.day dd span{
font-size:20px;
display:inline-block;
letter-spacing: 0px;
margin:0px 0px 0px -7px;
}
.day dd span:before,
.day dd span:after{
font-size:14px;
display:inline-block;
}
.day dd span:before{
content:"（";
}
.day dd span:after{
content:"）";
}
.day dd em{
display:inline-block;
font-style: normal;
margin:0px 0px 0px -15px;
}
.day ul{
margin:0px 0px 0px 0px;
padding:0px;
}
.day ul li{
letter-spacing: -1px;
width:100%;
font-weight:600;
color:#2466b0;
font-size:14px;
text-align: center;
line-height:1.0;
margin:0px 0px 25px 0px;
}
.day ul li em{
width:100%;
font-size:14px;
display:block;
font-style:normal;
text-align: center;
border:1px solid #2466b0;
padding:3px 10px 5px 10px;
margin:0px 15px 5px 0px;
}
.day ul li span{
font-size:18px;
}
.day ul li b{
display:inline-block;
}
.day ul li b.typeA:before{
content:"（";
margin:0px 0px 0px -5px;
}
.day ul li b.typeA:after{
content:"）";
}
.day ul li b.typeB:before{
content:"";
margin:0px 0px 0px -10px;
}
.day ul li b.typeB:after{
content:"";
}
.day ul li b.typeC{
letter-spacing:0px;
}
.day ul li b.typeC:before{
content:"〔";
font-size:14px;
margin:0px 0px 0px -10px;
}
.day ul li b.typeC:after{
content:"〕";
font-size:14px;
}
.day ul li b.typeD{
letter-spacing:-3px;
}
.day ul li b.typeD:before{
content:"（";
letter-spacing:inherit;
margin:0px 0px 0px -8px;
padding:0px 4px 0px 0px;
}
.day ul li b.typeD:after{
content:"）";
letter-spacing:inherit;
padding:0px 0px 0px 3px;
}

/* 04：area_detail設定 */
.area_detail{
color:#2466b0;
margin:0px auto 80px auto;
}
.area_detail h3{
font-size:24px;
letter-spacing: 1px;
line-height:1.3;
text-align: center;
margin:0px 0px 30px 0px;
}
.area_detail p{
font-weight:600;
font-size:13px;
line-height:1.6;
margin:0px 0px 15px 0px;
padding:0px 0px 0px 0px;
}
.area_detail p:last-of-type{
}
/*NEWSがきた時に復活*
.area_detail .link_btn dl{
background:url("../img/decoration_line01.webp") center bottom no-repeat;
background-size:140px 7px;
padding:0px 0px 60px 0px;
margin:0px 0px 50px 0px;
}
*/

.area_detail .link_btn dl{
padding:0px 0px 0px 0px;
margin:0px 0px 40px 0px;
}
.area_detail .link_btn dt{
max-width:200px;
margin:0 auto 20px auto;
}
.area_detail .link_btn dt img{
width:100%;
}
.area_detail .link_btn dd{
font-weight:600;
font-size:13px;
text-align: center;
}
.area_detail .link_btn dd img{
text-decoration:underline;
width:13px;
height:13px;
display:inline;
}
.area_detail .link_btn dd a{
background:url("../img/icon_open.webp") right 5px no-repeat;
background-size:12px 12px;
text-decoration:underline;
padding:0px 17px 0px 0px;
}

.area_detail strong{
background:url("../img/decoration_line01.webp") center top no-repeat;
background-size:140px auto;
text-align: center;
display:block;
font-size:16px;
padding:30px 0px 0px 0;
}
.area_detail > em{
display:block;
font-style:normal;
font-size:13px;
text-align: center;
padding:10px 0px 20px 0px;
}

/* 05：news設定 */
.news{
display:block;
position:relative;
z-index:1;
margin:0 0 50px;
}
.news::before {
content: "";
display: inline-block;
top:50px;
left:0px;
position:absolute;
z-index: 1;
width: 100%;
height:5px;
background-image: url("../img/news_head_bg.webp");
background-size:108% auto;
background-repeat: no-repeat;
background-position: top;
}
.news::after{
content:"";
position:absolute;
left:-8px;
bottom:-10px;
width:104.5%;
height:100%;
background:url("../img/news_footer_bg.webp") no-repeat bottom;
background-size:contain;
z-index:10;
pointer-events:none;
}
.news h3{
background:url("../img/decoration_area.webp") center bottom no-repeat;
background-size:260px auto;
color:#2466b0;
position:relative;
font-size:28px;
letter-spacing: 5px;
text-align: center;
padding:0px 0px 30px 7px;
z-index:10;
}
.headline{
background-color:rgba(255,255,255,0.60);
z-index: 5;
margin:-23px 0px 0px 0px;
padding:60px 0px 30px 0px;
}
.headline ul{
width:90%;
margin:0px auto;
}
.headline ul li{
background:url("../img/decoration_news_icon.webp") 15px center no-repeat #fff;
background-size:30px 20px;
border:1px solid #bd9753;
border-radius: 100px;
font-size:13px;
align-items: center;
position:relative;
padding:15px 35px 13px 60px;
margin:0px 0px 15px 0px;
}
.headline ul li:has(> a){
padding:0;
}
.headline ul li > a{
display:block;
inset:0;                       /* li全体を覆う＝クリック範囲がli全体に */
padding:15px 35px 13px 60px;   /* liと同じpaddingで、中身を元の位置に表示 */
}
.headline ul li > a:after{
content:"";
display:inline-block;
background:url("../img/arrow.webp") 95% center no-repeat;
background-size:11px 10px;
width:11px;
height: 10px;
position: absolute;
top: 50%;
transform: translateY(-50%);
right:15px;
}
.headline ul li time{
font-size:12px;
color:#bf9c46;
display:block;
margin:-10px 40px 0px 0px;
}
.headline ul li time span{
font-size:18px;
}
.headline p a{
max-width:200px;
height:38px;
display:block;
margin:0 auto;
}
.headline p a img{
width:100%;
}

/* 06：end_mes設定 */
.end_mes{
background:none;
background-size:140px 7px;
font-weight:600;
text-align: center;
padding:0px 0px 25px 0px;
}
.end_mes p{
font-size:16px;
color:#2466b0;
margin:0px 0px 15px 0px;
}
.end_mes span{
display:block;
font-size:10px;
color:#000;
margin:0px 0px 5px 0px;
}
.end_mes a.backtop{
max-width:50%;
display:block;
margin:0px auto 50px auto;
}
.end_mes a.x_icon{
max-width:33px;
display:block;
margin:0px auto;
}
.end_mes a img{
wisth:100%;;
}

/* 07：SHARE設定 */
.share dl{
text-align: center;
margin:0px 0px 40px 0px;
}
.share dt{
font-weight:600;
font-size:18px;
color:#2466b0;
letter-spacing: 5px;
margin:0px 0px 10px 0px;
}
.share dd{
height:46px;
display:flex;
justify-content:center;
margin:0 auto;
}
.share dd img{
height:46px;
width: auto;
display:block;
}
.link_area{
background:#f9f5ef;
padding:35px 0px 15px 0px;
}
.link_area ul{
width:80%;
display:flex;
flex-wrap: wrap;
justify-content:center;
gap:15px;
margin:0px auto 40px auto;
}
.link_area ul li{
width:calc(50% - 10px);  /* ← 48% から変更。gap の半分を差し引く */
display:flex;
justify-content:center;
}
.link_area ul li a{
display:block;
max-width:100%;
}
.link_area ul li:nth-of-type(1){
width:100%;
}
.link_area ul li:nth-of-type(1) a{
display:block;
max-width:calc(50% - 10px);
}
.link_area ul li img{
width:100%;
}

.link_area p{
text-align:center;
font-size:13px;
letter-spacing: -1px;
color:#2466B0;
font-weight:500;
}
.link_area p span:after{
content:"：";
display:inline-block;
}
.link_area p:nth-of-type(2){
display:block;
padding:0px 0px 0px 0px;
}




/* ================= lower.css ================= */
#lower header{
width:100%;
aspect-ratio:1500 / 1125; /* ← 実画像の縦横比。画像を差し替えたらこの値も合わせる（幅 / 高さ） */
background-image: url("../img/lower_header_bg_sp.webp");
background-size:100% auto;   /* 横幅いっぱいに表示（左右の余白が出ない） */
background-repeat: no-repeat;
background-position: center top;
margin:0 0 50px 0;
/*地域が表示されるタイミングで切り替え
margin:0　0 0px 0;
*/
padding:0;
position: relative;
}
#lower header p.logo{
width:170px;
max-width:310px;
position:absolute;
top:3%;
left:3%;
margin:0;
}
#lower header p.logo img{
width:100%;
display:block;
}
#lower header h1{
margin:0;
padding:0;
text-indent:100%;
white-space:nowrap;
overflow:hidden;
}
#lower.information header{
background-image: url("../img/header_bg_information_sp.webp");
}
#lower.ticket header{
background-image: url("../img/ticket/header_bg_ticket_sp.webp");
}
#lower.news_list header,
#lower.news_detail header{
background-image: url("../img/news/header_bg_news_sp.webp");
}
#lower.goods header{
background-image: url("../img/goods/header_bg_goods_sp.webp");
}
#lower.contents header{
background-image: url("../img/contents/header_bg_contents_sp.webp");
}

.deco_title{
font-size:24px;
}

/*=========================================================
 
 追従チケット購入ボタン
 
=========================================================*/
.ticket_btn{
position: fixed;
right: 10px;
bottom: 10px;
z-index: 5;
width: 100px;
max-width: 45%;   /* 狭い端末では画面の45%まで。本文を覆わせない */
margin: 0;
padding: 0;
transition: opacity 0.3s ease, visibility 0s linear 0.3s;
} 
 
/* figure は既定で左右 40px の余白を持つ。
   これを消さないと画像が枠からはみ出す */
.ticket_btn figure{
width: 100%;
margin: 0;
padding: 0;
}
 
.ticket_btn img{
display: block;
width: 100%;
height: auto;
}
 .ticket_btn a{
display: block;
}

/*=========================================================
 
 ページの先頭ボタン
 
=========================================================*/
.pagetop_btn{
position: fixed;
right: 20px;
bottom: 20px;
z-index: 5;
width: 50px;
margin: 0;
padding: 0;
opacity: 0;            /* ← 追加：初期は隠す */
visibility: hidden;    /* ← 追加 */
transition: opacity 0.3s ease, visibility 0s linear 0.3s;
} 
.pagetop_btn.is_shown{
opacity: 1;
visibility: visible;
transition: opacity 0.3s ease, visibility 0s linear 0s;
} 
.pagetop_btn figure{
width: 100%;
margin: 0;
padding: 0;
}
.pagetop_btn img{
display: block;
width: 100%;
height: auto;
}
.pagetop_btn a{
display: block;
transition: opacity 0.2s ease;
}

/*=========================================================
 
 下層ページ共通のコンテンツエリア
 
=========================================================*/
.contents_area{
display:block;
position:relative;
z-index:1;
margin:0 0 70px;
}
.information .contents_area{
z-index:inherit !important;
z-index:0 !important;
}
.contents_area::before {
content: "";
display: inline-block;
top:50px;
left:0px;
position:absolute;
z-index: 1;
width: 100%;
height: 5px;
}
.contents_area::after{
content:"";
position:absolute;
left:-8px;
bottom:-10px;
width:104.5%;
height:100%;
background:url("../img/news_footer_bg.webp") no-repeat bottom;
background-size:contain;
z-index:10;
pointer-events:none;
}
.contents_area .detail{
background:#ffffff60;
z-index: 5;
margin:-21px 0px 0px 0px;
padding:40px 15px 60px 15px;
}
.contents_area .detail p{
font-size:14px;
}
.contents_area .detail h3{
font-weight:600;
color:#2466b0;
font-size:15px;
padding:20px 0px;
}
.contents_area .venue dl{
font-size:14px;
margin:30px 0px 0px 0px;
}
.contents_area .venue dl:nth-of-type(1){
margin:0px;
}
.contents_area .venue dt{
font-weight:600;
}

.contents_area ul{
font-size:12px;
line-height:1.8;
margin:15px 0px 0px 20px;
padding:0px;
}
.contents_area ul li{
list-style-type:disc;
margin-left:0px;
}
.for_contact dl{
text-align: center;
margin:0px 0px 70px 0px;
}
.for_contact dt{
font-weight:600;
font-size:18px;
color:#2466b0;
letter-spacing: 5px;
margin:0px 0px 10px 0px;
}
.for_contact dd{
height:46px;
display:flex;
justify-content:center;
margin:0 auto;
}
.for_contact dd a{
display:block;
}
.for_contact dd img{
height:46px;
width: auto;
display:block;
}

.ribbon_deco{
background:
url("../img/decoration_line01.webp") top center no-repeat,
url("../img/decoration_line01.webp") bottom center no-repeat;
background-size:200px auto;
text-align: center;
padding:15px 0px;
}

.area_navi{
padding-top:30px;
}
.area_navi ul{
--navi-gap:10px;   /* ← 横の余白。この1箇所だけ変更してください */
width:90%;
display:flex;
flex-wrap:wrap;
column-gap:var(--navi-gap);
row-gap:10px;      /* 縦の余白。横とは無関係に変更できます */
justify-content:space-between;
margin:0px auto 50px auto;
}
.area_navi ul li{
box-sizing:border-box;
width:calc((100% - var(--navi-gap)) / 2);
aspect-ratio:520 / 145;
display:flex;
justify-content:center;
align-items:center;
padding:0 8%;
border-radius:9999px;
background-color:#fff;
background-image:url("../img/area_btn_off.webp");
background-repeat:no-repeat;
background-position:center center;
background-size:contain;
font-size:14px;
line-height:1.3;
color:#cdbb99;
font-weight:600;
text-align:center;
}
.area_navi ul li.active{
background-image:url("../img/area_btn_on.webp");
color:#2466b0;
}

/*=========================================================
 
 下層ページ：informationページ
 
=========================================================*/
.information .venue dt{
font-weight:600;
}
.information .venue dt:before{
content:"♦︎";
color:#2466B0;
display:inline-block;
}
.information .venue dt:after{
content:"：";
display:inline-block;
}

.googlemap{
width:100%;
margin:0px auto;
padding:5px 0px 0px 0px;
}
.googlemap iframe{
width:100%;
height:200px;
}

/*=========================================================
 
 下層ページ：ticketページ
 
=========================================================*/
.area_head h2{
max-width:60%;
margin:0 auto 20px auto;
}
.area_head h2 img{
width:100%;
}
.page_contents{
margin:0px 0px 40px 0px;
}
.page_contents ul{
display:flex;
flex-wrap:wrap;
justify-content:flex-start;
align-items:center;
column-gap:12px;      /* ボタン同士の間隔。ここを変えると幅も自動で追従する */
row-gap:8px;
max-width:none;
margin:0 auto;
padding:0;
list-style:none;
}
.page_contents li{
margin:0;
padding:0;
}
/* 2〜7個目は2等分 */
.page_contents li:nth-child(2),
.page_contents li:nth-child(3),
.page_contents li:nth-child(4),
.page_contents li:nth-child(5),
.page_contents li:nth-child(6),
.page_contents li:nth-child(7){
width:calc((100% - 12px) / 2);
}

/* 1個目は行を独占（全幅）し、中身のaを中央に寄せる */
.page_contents li:nth-child(1){
width:100%;
display:flex;
justify-content:center;
}

/* 1個目の中のaを、他と同じ半分幅にする */
.page_contents li:nth-child(1) > a{
width:calc((100% - 12px) / 2);
}

.page_contents a{
display:block;
}
.page_contents picture{
display:block;
}
.page_contents img{
display:block;
width:100%;
height:auto;
}

.ticket :nth-child(1 of .contents_area) h2{
letter-spacing:0px;
}
.ticket .detail h3{
margin:0px 0px 30px 0px;
}
.ticket .detail h4{
color:#2466b0;
font-size:14px;
padding:0px 0px 15px 0px;
text-align: center;
}
.ticket .detail dl{
font-size:14px;
margin:20px 0px 0px 0px;
}
.ticket .detail dl:first-of-type{
margin-top:0;
}
.ticket .detail dl.last{
margin-top:20px !important;
}
.ticket .detail dt{
font-weight:600;
}
.ticket .detail dt:before{
content:"♦︎";
color:#2466B0;
display:inline-block;
}
.ticket .detail dd{
padding-left:0px;
}
.ticket .detail a.btn{
max-width:200px;
display:block;
margin:20px auto 0 auto;
}
.ticket .detail a.btn img{
width:100%;
}
.ticket .detail picture{
display:block;
max-width:100%;
margin:0 auto 10px auto;
}
.ticket .detail picture img{
width:100%;
}
.ticket .detail picture img.new{
box-sizing: border-box;
border: 1px solid transparent;
border-radius: 10px;
background-image: linear-gradient(#fff, #fff), linear-gradient(120deg, #a87c37 0%, #d6bb8b 25%, #ecd081 50%, #b1955f 75%, #ecd07f 100%);
background-origin: border-box;
background-clip: padding-box, border-box;
}

.ticket .ticket_info dt:after,
.ticket .schedule_info dt:after,
.ticket .sign dt:after{
content:"：";
display:inline-block;
}
.ticket .ticket_info h3 + p{
margin:0px 0px 30px 0;
}
.ticket .ticket_info h3:nth-of-type(1){
margin-top:20px;
}
.ticket .detail .pre01 dl{
margin:0px;
}
.ticket .detail .pre02 dl{
margin:30px 0px 0px 0px;
}
.ticket .detail .pre03 dl{
margin:50px 0px 0px 0px;
}
.ticket .sign em,
.ticket .schedule_info em{
display:inline-block;
font-style:normal;
}
.ticket .sign em a,
.ticket .schedule_info em a{
display:block;
}
.ticket .schedule_info h3 + dl{
margin:0px 0px 0px 0;
}
.ticket .benefits_info p:has(+ .small){
margin:0px 0px 30px 0px;
}
.ticket .benefits_info picture.second{
display:block;
margin-bottom:10px;
border-radius:10px;
padding:1px;                 /* 枠の太さ */
background:linear-gradient(120deg, #a87c37 0%, #d6bb8b 25%, #ecd081 50%, #b1955f 75%, #ecd07f 100%);
/*
-webkit-mask:
  linear-gradient(#fff 0 0) content-box,
  linear-gradient(#fff 0 0);
-webkit-mask-composite:xor;
        mask-composite:exclude;
*/
}
.ticket .benefits_info picture.second img{
border-radius:10px;
}
.ticket .sign p{
margin:0px 0px 20px 0px;
}
.ticket .voice_guide p:nth-of-type(1){
margin-bottom:20px;
}
.ticket .group_list dl{
display:inherit;
}
.ticket .group_list dt{
display:inline;
width:inherit;
}
.ticket .group_list dt:after{
content:"：";
display:inline-block;
}
.ticket .group_list dd{
width:inherit;
display:inline;
padding:0;
}
.ticket .group_list + p.small{
margin-top:20px;
}

/*=========================================================
 
 下層ページ：news一覧ページ
 
=========================================================*/
.news_list .detail ul{
list-style-type:none;
width:100%;
margin:0px auto;
}
.news_list .detail ul li{
list-style-type:none;
background:url("../img/decoration_news_icon.webp") 15px center no-repeat #fff;
background-size:30px 20px;
border:1px solid #bd9753;
border-radius: 100px;
font-size:13px;
align-items: center;
position:relative;
padding:15px 25px 13px 60px;
margin:0px 0px 15px 0px;
}
.news_list .detail ul li:has(> a){
padding:0;
}
.news_list .detail ul li > a{
display:block;
inset:0;
padding:15px 25px 13px 60px;
}
.news_list .detail ul li > a:after{
content:"";
display:inline-block;
background:url("../img/arrow.webp") 95% center no-repeat;
background-size:11px 10px;
width:11px;
height: 10px;
position: absolute;
top: 50%;
transform: translateY(-50%);
right:15px;
}
.news_list .detail ul li time{
font-size:12px;
color:#bf9c46;
display:block;
margin:-10px 40px 0px 0px;
}
.news_list .detail ul li time span{
font-size:18px;
}
.news_list .detail p a{
max-width:200px;
height:38px;
display:block;
margin:0 auto;
}
.news_list .detail p a img{
width:100%;
}
.news_detail .contents_area .detail{
background-color:rgba(255,255,255,0.60);
}
.news_detail .detail dl{
font-size:14px;
margin:0px 0px 20px 0px;
}
.news_detail .detail dt{
font-weight:600;
}
.news_detail .detail dt:before{
content:"♦︎";
color:#2466B0;
display:inline-block;
}
.news_detail .detail dd{
padding-left:0px;
}
.news_detail .detail a.btn{
max-width:200px;
display:block;
margin:20px auto 0 auto;
}
.news_detail .detail a.btn img{
width:100%;
}
.news_entry figure{
max-width:80%;
display:block;
margin:30px auto 15px auto;
padding:0px;
}
.news_entry figure img{
width:100%;
}


/*=========================================================
 会場スライダー3連（SP：768px以下）
 ---------------------------------------------------------
 PC 指定を踏襲しない前提で、中央1つ分を一式書き切る。
 左右は出さず、中央スライダーだけを画面幅いっぱいで表示。
=========================================================*/
.venue3{
position:relative;
overflow:visible;
display:flex;
flex-wrap:wrap;              /* .venue3__nav を下段へ回り込ませる */
justify-content:center;
align-items:center;
gap:0;
width:100%;
padding-bottom:34px;         /* 唐草を置く下の余地 */
}
.venue3::after{
content:"";
position:absolute;
left:50%;
bottom:75px;
width:100%;
aspect-ratio:1408 / 130;
transform:translateX(-50%);
background:url(../img/top/introduction_slider.webp) center bottom / contain no-repeat;
pointer-events:none;
z-index:5;                   /* 0 → 5：スライダーより前面に */
}
/* 左右は隠す */
.venue3__slider--side{
display:none;
}

/* 中央＝画面幅いっぱい。金枠一式（SP単体で成立） */
.venue3__slider--main{
flex:0 0 100%;
position:relative;
border-radius:10px;
overflow:hidden;
aspect-ratio:1200/690;
}
/* 金枠を画像の上に重ねる（borderを使わないので隙間が出ない）*/
.venue3__slider--main::before{
content:"";
position:absolute;
inset:0;
border-radius:10px;
padding:1px;                 /* 枠の太さ */
background:linear-gradient(120deg, #a87c37 0%, #d6bb8b 25%, #ecd081 50%, #b1955f 75%, #ecd07f 100%);
-webkit-mask:
  linear-gradient(#fff 0 0) content-box,
  linear-gradient(#fff 0 0);
-webkit-mask-composite:xor;
        mask-composite:exclude;
pointer-events:none;
z-index:2;
}
.venue3__slider--main .venue3__list{
display:flex;
margin:0;
padding:0;
list-style:none;
height:100%;
will-change:transform;
transition:transform .6s cubic-bezier(.22,1,.36,1);
}
.venue3__slider--main .venue3__item{
flex:0 0 100%;
height:100%;
}

.venue3__slider--main .venue3__item img{
display:block;
width:100%;
height:100%;
object-fit:cover;
}

/* ---- 矢印とドット（GOODS と同じデザイン）---- */
.venue3__nav{
display:flex;
flex-direction:row;
flex-wrap:nowrap;
justify-content:center;
align-items:center;
flex:0 0 100%;             /* nav 自体は最下段（全幅）へ */
gap:26px;
margin:15px 0 25px;
}

.venue3__arrow{
flex:0 0 auto;
width:0;
height:0;
padding:0;
border-style:solid;
background:none;
cursor:pointer;
appearance:none;
-webkit-appearance:none;
}
.venue3__arrow_prev{
border-width:7px 12px 7px 0;
border-color:transparent #b78d3c transparent transparent;
}
.venue3__arrow_next{
border-width:7px 0 7px 12px;
border-color:transparent transparent transparent #b78d3c;
}

.venue3__dots{
display:flex;
flex-direction:row;
flex-wrap:nowrap;
gap:10px;
margin:0;
padding:0;
list-style:none;
}
.venue3__dots li{
list-style:none;
margin:0;
padding:0;
}
.venue3__dots button{
display:block;
width:7px;
height:7px;
padding:0;
border:none;
border-radius:50%;
background:#cfc8bb;
cursor:pointer;
appearance:none;
-webkit-appearance:none;
}
.venue3__dots .is_current{
background:#b78d3c;
}


/*=========================================================
 GOODS スライダー（SP：768px以下）
 ---------------------------------------------------------
 PC 指定（min-width:769px内）を踏襲しないため、SP側に一式書く。
 左右の見切れなし。金枠付きの1枚を画面幅いっぱい近くで表示し、
 画像だけがスライドする。矢印・ドットは PC の .slider_nav 指定が
 そのまま効くので追加不要。
=========================================================*/
.goods_slider{
position:relative;
z-index:1;
width:100%;
overflow:hidden;
margin-top:0;                /* PCの -60px を打ち消す */
}
.goods_slider__list{
display:flex;
margin:0;
padding:0;
list-style:none;
will-change:transform;
}
.goods__title {
position: relative;
z-index: 2;
margin: 0 0 -5%;
pointer-events: none;
}
.goods_slider__item{
flex:0 0 100%;
margin:0 7.5px;                  /* 92% + 4%×2 = 100% ＝ 隣は画面外。見切れなし */
box-sizing:border-box;
padding:0;                  /* 金縁とバナーの間の余白（SPは少し広めに）*/
background:url("../img/top/goods_slide_bg.webp") center center / 100% 100% no-repeat;
}
.goods_slider__item a{
display:block;
width:100%;
height:100%;
}
.goods_slider__item img{
display:block;
width:100%;
height:100%;
object-fit:cover;
}
.goods__more{
max-width:250px;
margin: 0 auto 80px auto;
}
.goods__more img{
width:100%;
}

/* ---- 矢印とドット（SP。PCの .slider_nav は min-width 内で効かないため再定義）---- */
.goods_slider .slider_nav{
display:flex;
justify-content:center;
align-items:center;
gap:26px;
margin:15px 0 25px;
}
/* 矢印はSPでも出す場合。不要なら display:none にする */
.goods_slider .slider_nav__arrow{
width:0;
height:0;
padding:0;
border-style:solid;
background:none;
cursor:pointer;
appearance:none;
-webkit-appearance:none;
}
.goods_slider .slider_nav__arrow_prev{
border-width:7px 12px 7px 0;
border-color:transparent #b78d3c transparent transparent;
}
.goods_slider .slider_nav__arrow_next{
border-width:7px 0 7px 12px;
border-color:transparent transparent transparent #b78d3c;
}
.goods_slider .slider_nav__dots{
display:flex;
gap:10px;
margin:0;
padding:0;
list-style:none;
}
.goods_slider .slider_nav__dots button{
display:block;
width:7px;
height:7px;
padding:0;
border:none;
border-radius:50%;
background:#cfc8bb;
cursor:pointer;
appearance:none;
-webkit-appearance:none;
}
.goods_slider .slider_nav__dots .is_current{
background:#b78d3c;
}


/*=========================================================
 
 下層ページ：Goodsページ

=========================================================*/
.goods .lead p{
text-align: center;
font-size:16px;
font-weight:600;
color:#2466B0;
letter-spacing: -0.03em;
margin:0px 0px 40px 0px;
}
.goods .detail picture img.new{
box-sizing: border-box;
border: 1px solid transparent;
border-radius: 10px;
background-image: linear-gradient(#fff, #fff), linear-gradient(120deg, #a87c37 0%, #d6bb8b 25%, #ecd081 50%, #b1955f 75%, #ecd07f 100%);
background-origin: border-box;
background-clip: padding-box, border-box;
}
.goods .detail dl{
font-size:14px;
margin:0px 0px 0px 0px;
}
.goods .detail dt{
font-weight:600;
}
.goods .detail dt:before{
content:"♦︎";
color:#2466B0;
display:inline-block;
}
.goods .caution dt:after{
content:"：";
display:inline-block;
}
.goods .detail .item_info dd{
font-weight:600;
padding-left:12px;
}
.goods .contents_area .item_info{
margin-bottom:30px;
}
.goods .contents_area .item_info:last-of-type{
margin-bottom:0px;
}
.goods .contents_area .item_info h5{
font-size: 12px;
display: block;
font-weight: normal;
margin-left: 12px;
}
.goods .contents_area .item_info p {
font-size: 12px;
line-height: 1.0;
margin:5px 0 0px 12px;
padding: 0;
}
.goods .contents_area .item_info p.catch {
font-size: 14px;
line-height: 1.3;
margin: 3px 0 5px 12px;
padding: 0;
}
.goods .contents_area .item_info ol{
padding-left:26px;
display:block;
}
.goods .contents_area .item_info ol li{
font-size:12px;
display:block;
}
.goods .contents_area .item_info ol li:after{
content:"";
display:inline-block;
}
.goods .contents_area .item_info ol li:last-of-type:after{
content:"";
}
.goods .contents_area .item_info ul{
line-height:1.8;
margin:0px 0px 0px 12px;
}
.goods .contents_area .item_info ul li{
list-style-type:none;
font-size:12px;
}
.goods .contents_area .item_info em{
font-style:normal;
font-size:24px;
display:block;
text-align: center;
color:#2466B0;
padding:30px 0px 0px 0px;
}

.goods .contents_area picture{
display:block;
margin-bottom:10px;
}
.goods .contents_area picture.second{
display:block;
margin-bottom:10px;
border-radius:10px;
padding:1px;                 /* 枠の太さ */
background:linear-gradient(120deg, #a87c37 0%, #d6bb8b 25%, #ecd081 50%, #b1955f 75%, #ecd07f 100%);
/*
-webkit-mask:
  linear-gradient(#fff 0 0) content-box,
  linear-gradient(#fff 0 0);
-webkit-mask-composite:xor;
        mask-composite:exclude;
*/
}
.goods .contents_area picture.second img{
border-radius:10px;
}
.goods .detail.bonus p{
text-align: left;
padding:15px 0px;
}
.goods .detail.bonus ul{
margin:0px 0px 0px 0px;
}
.goods .detail.bonus ul li{
list-style-type:none;
}
.goods .detail.caution ul{
margin-top:0px;
}
.goods .detail.caution ul strong{
font-weight:600;
}
.goods .detail.caution picture{
max-width:100%;
display:block;
}
.goods .detail.caution picture img{
width:100%;
}
.goods .detail.caution dl{
margin-top:20px;
}

.goods .detail.caution ol{
font-size:12px;
line-height:1.8;
margin:0px 0px 0px 20px;
padding:0px;
}
.goods .detail.caution ol li{
list-style-type:disc;
margin-left:0px;
}
.goods .detail.caution ol li em{
color:#f00;
font-style:normal;
}



/*=========================================================
 
 下層ページ：Contentsページ

=========================================================*/
.schedule{
width:100%;
margin:0 auto;
box-sizing:border-box;
border:2px solid transparent;
border-radius:10px;
background-image:
  linear-gradient(#fff, #fff),
  linear-gradient(120deg, #a87c37 0%, #d6bb8b 25%, #ecd081 50%, #b1955f 75%, #ecd07f 100%);
background-origin:border-box;
background-clip:padding-box, border-box;
overflow:hidden;
}
 
/* SPは日付・名前を縦積み・中央寄せ */
.schedule__row{
display:block;
padding:24px 0px;
margin:0 20px;
}
 
.schedule__row + .schedule__row{
border-top:1px solid #d9d9d9;
}
 
.schedule__date{
margin:0 0 18px 0;
padding:0;
color:#000000;
font-size:13px;
line-height:1.9;
text-align:center;
}
.schedule__names{
margin:0;
padding:0;
color:#000000;
font-size:13px;
line-height:2.0;
text-align:center;
padding-left:0px !important;
}
dt.schedule__date:before,
dt.schedule__date:after{
content:"";
display:none !important;
}

.contents .map{
margin-bottom:40px;
}
.contents .map h3{
margin-bottom:30px;
}
.contents .map figcaption{
font-size:11px;
padding:5px 0px 0px 0px;
}
.contents .area_info h3{
margin-bottom:30px;
}
.contents .area_info h4{
margin:50px 0 10px 0;
font-size:14px;
display:block;
color:#2466B0;
text-align: center;
}
.contents .area_info p{
font-size:14px;
text-indent: -7px;
margin-left: 18px;
}
.contents .area_info p:before{
content:"♦︎";
color:#2466B0;
display:inline-block;
}
.contents .area_info figure{
display:block;
max-width:640px;
margin:15px auto 0 auto;
}
.contents .area_info figure img{
width:100%;
}
.contents .area_info figure:nth-of-type(1){
margin-top:10px;
}
.contents #welcome_area figure img,
.contents #party_time figure img{
box-sizing: border-box;
border: 2px solid transparent;
border-radius: 10px;
background-image: linear-gradient(#fff, #fff), linear-gradient(120deg, #a87c37 0%, #d6bb8b 25%, #ecd081 50%, #b1955f 75%, #ecd07f 100%);
background-origin: border-box;
background-clip: padding-box, border-box;
width:100%;
}
.contents .area_info > dl{
font-size:14px;
margin:20px 0px 0px 0px;
}
.contents .area_info dl:first-of-type{
margin-top:0;
}
.contents .area_info dt{
font-weight:600;
}
.contents .area_info dt:before{
content:"♦︎";
color:#2466B0;
display:inline-block;
}
.contents .area_info dt:after{
content:"：";
display:inline-block;
}
.contents .area_info dd{
padding-left:12px;
}
.contents .detail a.btn{
max-width:190px;
display:block;
margin:30px auto 0px auto;
}
.contents .detail a.btn img{
width:100%;
}
.contents .detail picture.image_photo{
margin-bottom:10px;
display:block;
}


.map figure{
margin:0;
}
.map__pic{
position:relative;
display:block;
width:100%;
margin:0 auto;
line-height:0;
}
.map__pic img{
display:block;
width:100%;
height:auto;
}
.map__pic img{
box-sizing: border-box;
border: 2px solid transparent;
border-radius: 10px;
background-image: linear-gradient(#fff, #fff), linear-gradient(120deg, #a87c37 0%, #d6bb8b 25%, #ecd081 50%, #b1955f 75%, #ecd07f 100%);
background-origin: border-box;
background-clip: padding-box, border-box;
width:100%;
}
.map__area{
position:absolute;
display:block;
border-radius:8px;
/* SPはホバーが無いので背景演出は省略（タップで即遷移）*/
}
.map__area span{
position:absolute;
width:1px; height:1px;
margin:-1px; padding:0;
overflow:hidden;
clip:rect(0 0 0 0);
white-space:nowrap;
border:0;
}
.map figcaption{
line-height:1.6;
margin-top:10px;
text-align:center;
font-size:12px;
}















/*共通スタイル*/
.blue2466B0{
color:#2466B0;
}
.small{
font-size:12px !important;
}
hr{
display:block;
width:70px;
height:auto;
aspect-ratio:148 / 40;
max-width:100%;
margin:40px auto 40px auto;
padding:0;
border:none;
outline:none;
box-shadow:none;
background-color:transparent;
background-image:url("../img/hr_bg.webp");
background-repeat:no-repeat;
background-position:center center;
background-size:contain;
color:transparent;
font-size:0;
line-height:0;
overflow:hidden;
}
hr::before,
hr::after{
content:none;
display:none;
}







}
