/* ===== Event Summary (mobile design) ===== */

/* =========================
		   Top only (safe scope)
		   ========================= */
		.page-top { margin: 0; }
		.page-top, .page-top * { box-sizing: border-box; }

		.page-top {
			font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', sans-serif;
			color: #333;
			background: #f8f5f0;
		}

		.page-top .container-custom { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

		/* =========================
		   Hero
		   ========================= */
		.page-top .hero-section {
			position: relative;
			margin-top: 70px; /* fixed-top nav 分の逃げ */
			background: linear-gradient(135deg, #8B4789 0%, #993375 100%);
			overflow: hidden;
		}

		.page-top .hero-image-desktop,
		.page-top .hero-image-mobile {
			width: 100%;
			display: block;
		}

		/* CSSで切替（JS不要） */
		.page-top .hero-image-mobile { display: none; }
		@media (max-width: 430px){
			.page-top .hero-image-desktop { display: none; }
			.page-top .hero-image-mobile { display: block; }
		}

		/* =========================
		   3 images
		   ========================= */
		.page-top .three-images {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 15px;
			margin: 40px 0;
		}
		.page-top .three-images > * { position: relative; }
		.page-top .three-images img{
			width: 100%;
			height: 280px;
			object-fit: cover;
			border-radius: 0;
			box-shadow: none;
			display: block;
		}

		/* =========================
		   Section title
		   ========================= */
		.page-top .section-title{
			text-align: center;
			font-size: 2rem;
			font-weight: bold;
			margin: 99px 0 40px;
			color: #2d2d2d;
		}

		/* =========================
		   Event list
		   ========================= */
		.page-top .event-list{
			background: white;
			padding: 40px 50px;
			border-radius: 20px;
			box-shadow: 0 4px 25px rgba(0,0,0,0.12);
			margin: 40px 0;
		}
		.page-top .event-item{
			display: grid;
			grid-template-columns: 140px 1fr;
			gap: 20px;
			align-items: center;
			margin-bottom: 20px;
			padding-bottom: 20px;
			border-bottom: 1px solid #e8e8e8;
		}
		.page-top .event-item:last-child{ border-bottom: none; margin: 0; padding-bottom: 0; }
		.page-top .event-badge{
			background: #4CAF50;
			color: white;
			padding: 10px 20px;
			border-radius: 25px;
			font-size: 0.95rem;
			font-weight: bold;
			text-align: center;
			width: 100%;
		}
		.page-top .event-content h3{ font-size: 1.05rem; font-weight: bold; margin-bottom: 5px; }
		.page-top .event-content p{ font-size: 0.92rem; color: #666; margin: 0; }

		/* =========================
		   Enjoyment
		   ========================= */
		.page-top .enjoyment-grid{
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 30px;
			margin-bottom: 60px;
		}
		.page-top .enjoyment-card{
			background: white;
			padding: 35px 30px;
			border-radius: 15px;
			box-shadow: 0 2px 15px rgba(0,0,0,0.08);
		}
		.page-top .enjoyment-header{ display:flex; align-items:center; margin-bottom:25px; }
		.page-top .enjoyment-icon{ width:60px; height:60px; margin-right:18px; }
		.page-top .enjoyment-header h3{
			font-size: 1.2rem;
			font-weight: bold;
			margin: 0;
			line-height: 1.5;
			color: #2d2d2d;
		}
		.page-top .enjoyment-text{
			font-size: 0.95rem;
			line-height: 1.9;
			color: #555;
			margin-bottom: 25px;
		}
		.page-top .enjoyment-images{
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 15px;
		}
		.page-top .enjoyment-images img{
			width: 100%;
			height: 200px;
			object-fit: cover;
			border-radius: 10px;
			box-shadow: 0 2px 8px rgba(0,0,0,0.1);
		}

		/* =========================
		   Ticket info
		   ========================= */
		.page-top .ticket-info{
			background: white;
			padding: 35px 40px;
			border-radius: 15px;
			box-shadow: 0 3px 20px rgba(0,0,0,0.1);
			margin: 35px 0;
		}
		.page-top .ticket-info h3{ font-size: 1.35rem; font-weight: bold; margin-bottom: 18px; }
		.page-top .ticket-info p{ font-size: 0.92rem; line-height: 1.85; margin-bottom: 14px; color: #555; }

		.page-top .warning-box{
			background: #fff5f5;
			border: 2px solid #ff4444;
			padding: 18px 20px;
			margin: 22px 0;
			border-radius: 8px;
		}
		.page-top .warning-box strong{ color:#d32f2f; display:block; margin-bottom:10px; }
		.page-top .warning-box p{ font-size: 0.88rem; margin: 0; }

		.page-top .info-box{
			background: #fffbf0;
			border: 2px solid #ffa726;
			padding: 18px 20px;
			margin: 22px 0;
			border-radius: 8px;
		}
		.page-top .info-box strong{ display:block; margin-bottom:10px; }
		.page-top .info-box p{ font-size: 0.88rem; margin: 0; }

		.page-top .purchase-note{
			background: #f1f8f4;
			padding: 18px;
			margin: 22px 0;
			border-radius: 8px;
			text-align: center;
		}
		.page-top .purchase-note a{ color:#2e7d32; font-weight:bold; text-decoration: underline; }

		/* =========================
		   Ticket table
		   ========================= */
		.page-top .ticket-table-wrapper{
			overflow-x: auto;
			margin: 35px 0;
			border-radius: 15px;
			box-shadow: 0 3px 20px rgba(0,0,0,0.1);
		}
		.page-top .ticket-table{
			width: 100%;
			min-width: 850px;
			background: white;
			border-collapse: collapse;
		}
		.page-top .ticket-table thead th{
			background: #993375;
			color: white;
			padding: 16px 10px;
			font-weight: bold;
			text-align: center;
			font-size: 0.9rem;
			border-right: 1px solid rgba(255,255,255,0.15);
		}
		.page-top .ticket-table thead th:last-child{ border-right: none; }
		.page-top .ticket-table tbody td{
			padding: 16px 10px;
			text-align: center;
			border: 1px solid #e8e8e8;
			font-size: 0.88rem;
		}
		.page-top .ticket-table .row-label{
			background: #f5f5f5;
			font-weight: bold;
			text-align: left;
			padding-left: 18px;
			font-size: 0.85rem;
		}
		.page-top .ticket-table .cell-pink{ background: #ffcdd2; font-weight: 500; }
		.page-top .ticket-table .cell-green{ background: #4CAF50; color: white; font-weight: bold; }
		.page-top .ticket-table .cell-empty{ background: #fafafa; color: #999; }

		.page-top .ticket-cta{ text-align:center; margin: 35px 0; }
		.page-top .btn-ticket{
			background: #d32f2f;
			color: white;
			padding: 16px 50px;
			font-size: 1.05rem;
			font-weight: bold;
			border: none;
			border-radius: 50px;
			cursor: pointer;
			text-decoration: none;
			display: inline-flex;
			align-items: center;
			box-shadow: 0 4px 12px rgba(211,47,47,0.3);
			transition: all 0.3s;
		}
		.page-top .btn-ticket::before{ content:'▶'; margin-right:10px; }
		.page-top .btn-ticket:hover{ background:#b71c1c; transform: translateY(-2px); }

		/* =========================
		   Glass
		   ========================= */
		.page-top .glass-intro{
			text-align: center;
			margin-bottom: 35px;
			color: #555;
			font-size: 0.98rem;
			line-height: 1.85;
		}
		.page-top .glass-grid{
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 35px;
		}
		.page-top .glass-card{
			background: white;
			padding: 30px;
			border-radius: 15px;
			box-shadow: 0 3px 20px rgba(0,0,0,0.1);
			text-align: center;
		}
		.page-top .glass-card img{
			width: 100%;
			max-width: 300px;
			height: 240px;
			object-fit: contain;
			margin: 0 auto 22px;
			background: #fafafa;
			border-radius: 10px;
			padding: 18px;
		}
		.page-top .glass-badge{
			display: inline-block;
			padding: 6px 18px;
			border-radius: 25px;
			font-size: 0.85rem;
			font-weight: bold;
			margin-bottom: 12px;
		}
		.page-top .badge-green{ background:#4CAF50; color:white; }
		.page-top .badge-pink{ background:#e91e63; color:white; }
		.page-top .glass-card h3{ font-size: 1.15rem; font-weight: bold; margin-bottom: 16px; }
		.page-top .glass-card p{ font-size: 0.88rem; line-height: 1.75; color: #555; text-align: left; }

		/* =========================
		   Footer
		   ========================= */
		.page-top footer{
			background: #5a5a5a;
			color: white;
			padding: 35px 20px 22px;
		}
		.page-top footer p{
			text-align: center;
			font-size: 0.82rem;
			line-height: 1.85;
			margin: 6px 0;
		}
		.page-top footer a{ color:white; text-decoration: underline; }

		/* =========================
		   Responsive
		   ========================= */
		@media (max-width: 992px) {
			.page-top .three-images { grid-template-columns: 1fr; }
			.page-top .enjoyment-grid, .page-top .glass-grid { grid-template-columns: 1fr; }
		}
		@media (max-width: 768px) {
			.page-top .container-custom { padding: 0 16px; }

			.page-top .hero-section { margin-top: 70px; } /* nav高さが変わる場合は調整 */

			.page-top .three-images { gap: 12px; margin: 32px 0; grid-template-columns: 1fr; }
			.page-top .three-images img { height: 220px; }
			.page-top .three-images .image-size-label { font-size: 0.75rem; padding: 4px 10px; }

			.page-top .section-title { font-size: 1.5rem; margin: 80px 0 25px; }

			.page-top .event-list { padding: 22px 18px; }
			.page-top .event-item { grid-template-columns: 1fr; gap: 12px; margin-bottom: 18px; padding-bottom: 18px; }
			.page-top .event-badge { width: fit-content; font-size: 0.85rem; padding: 7px 16px; }
			.page-top .event-content h3 { font-size: 0.98rem; }
			.page-top .event-content p { font-size: 0.88rem; }

			.page-top .enjoyment-card { padding: 22px 18px; }
			.page-top .enjoyment-icon { width: 42px; height: 42px; margin-right: 12px; }
			.page-top .enjoyment-header h3 { font-size: 1.02rem; }
			.page-top .enjoyment-text { font-size: 0.88rem; }
			.page-top .enjoyment-images { grid-template-columns: 1fr; gap: 10px; }
			.page-top .enjoyment-images img { height: 160px; }

			.page-top .ticket-info { padding: 22px 18px; }
			.page-top .ticket-info h3 { font-size: 1.15rem; }
			.page-top .ticket-info p { font-size: 0.88rem; }
			.page-top .warning-box, .page-top .info-box { padding: 14px 16px; }
			.page-top .warning-box p, .page-top .info-box p { font-size: 0.82rem; }

			.page-top .ticket-table { min-width: 650px; }
			.page-top .ticket-table thead th { padding: 12px 6px; font-size: 0.8rem; }
			.page-top .ticket-table tbody td { padding: 12px 6px; font-size: 0.78rem; }
			.page-top .ticket-table .row-label { padding-left: 10px; font-size: 0.75rem; }

			.page-top .btn-ticket { padding: 14px 35px; font-size: 0.98rem; width: 100%; max-width: 320px; }

			.page-top .glass-card { padding: 22px 18px; }
			.page-top .glass-card img { height: 210px; }
			.page-top .glass-card h3 { font-size: 1.05rem; }
			.page-top .glass-card p { font-size: 0.82rem; }

			.page-top footer { padding: 28px 16px 18px; }
			.page-top footer p { font-size: 0.78rem; }
		}

@media (max-width: 768px){

  /* 全体をカード化（薄いピンク背景） */
  .page-top .event-list{
    background: #f7eaea;    
    border-radius: 18px;
    padding: 18px 16px;
    box-shadow: none;        
    margin: 18px 0 30px;
  }
  

  /* 1項目を縦積みに */
  .page-top .event-item{
    grid-template-columns: 1fr; /* 2列→1列 */
    gap: 10px;
    border-bottom: none;
    padding: 0;
    margin: 0 0 14px;
    text-align: center;
    justify-items: center;
  }
  .page-top .event-item:last-child{
    margin-bottom: 0;
  }

  /* 緑ラベル（丸いピル） */
  .page-top .event-badge{
    background: #1f8f3a;  /* 緑 */
    color: #fff;
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 700;
    width: fit-content;  
    min-width: 110px;    
  }

  /* テキスト部分を中央寄せ・小さめ */
  .page-top .event-content{
    width: 100%;
    text-align: center;
  }
  .page-top .event-content h3{
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.7;
    color: #222;
  }

  /* 「開催時間」の2行を少し詰める */
  .page-top .event-content h3 + h3{
    margin-top: 4px;
  }
}

.page-top .event-content h3{
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.8;
}
.page-top .event-content h3 + h3{
  margin-top: 4px;
}

/* ===== Event Summary (PC max width) ===== */
.page-top .event-list{
  background: #FFF9F9;
  max-width: 920px;     
  margin: 40px auto;  
  padding: 40px 50px;
  border-radius: 20px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.12);
}


@media (max-width: 768px){
  .page-top .event-list{
    background: #FFF9F9; 
    border-radius: 18px;
    padding: 18px 16px;
    box-shadow: none;
    margin: 18px 0 30px;
  }
}

/* ===== Enjoy Section (sample design) ===== */
.page-top .enjoy-section{
  background: #f4e9d9;          
  padding: 99px 0 70px;
  margin-top: 40px;
}

.page-top .enjoy-title{
  margin: 0 0 15px;
}

.page-top .enjoy-lead{
  text-align: center;
  margin: 0 auto 34px;
  font-size: 0.92rem;
  line-height: 1.9;
  color: #333;
  max-width: 760px;
}

/* カード（白枠・影） */
.page-top .enjoy-card{
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.14);
  margin: 0 auto 42px;
  max-width: 920px; 
}

.page-top .enjoy-card__inner{
  padding: 26px 28px 22px;
}

/* 斜めラベル */
.page-top .enjoy-label{
  position: absolute;
  left: -18px;
  top: -18px;
  transform: rotate(-28deg);
  transform-origin: left top;
  font-weight: 900;
  letter-spacing: 0.04em;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-top .enjoy-label::before{
  content: "";
  width: 42px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  display: inline-block;
}

.page-top .enjoy-label__text{
  color: #111;
}

/* ラベル色（赤/緑） */
.page-top .enjoy-label-red{ color: #e86a6a; }
.page-top .enjoy-label-green{ color: #37a45a; }

/* 見出し周り */
.page-top .enjoy-kicker{
  margin: 0 0 4px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #222;
}

.page-top .enjoy-heading{
  margin: 0 0 10px;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.2;
}

.page-top .enjoy-heading-red{ color: #e86a6a; }
.page-top .enjoy-heading-green{ color: #37a45a; }

.page-top .enjoy-desc{
  margin: 0 0 18px;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #333;
}

/* 画像2枚 */
.page-top .enjoy-photos{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 14px 0 14px;
}

.page-top .enjoy-photo{
  margin: 0;
}

.page-top .enjoy-photo img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.page-top .enjoy-note{
  margin: 8px 0 0;
  font-size: 0.82rem;
  color: #333;
}

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

  .page-top .enjoy-section{
    padding: 80px 0 44px;
  }

  .page-top .enjoy-lead{
    padding: 0 10px;
    margin-bottom: 22px;
    font-size: 0.86rem;
    text-align: left;
  }

  .page-top .enjoy-card{
    margin: 0 0 22px;
    border-radius: 16px;
  }

  .page-top .enjoy-card__inner{
    padding: 18px 16px 16px;
  }

  .page-top .enjoy-label{
    left: -10px;
    top: -14px;
    font-size: 11px;
  }

  .page-top .enjoy-heading{
    font-size: 1.35rem;
  }

  .page-top .enjoy-desc{
    font-size: 0.88rem;
    line-height: 1.85;
  }

  /* スマホは画像縦積み */
  .page-top .enjoy-photos{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .page-top .enjoy-photo img{
    height: 200px;
    border-radius: 14px;
  }

  .page-top .enjoy-note{
    font-size: 0.78rem;
  }
}
/* 見出しの最初だけ色を変える */
.page-top .enjoy-heading{
  color: #222;        /* 基本色（後半） */
}

.page-top .enjoy-heading-accent{
  color: inherit;     
  font-weight: 900;
}

/* 赤バージョン */
.page-top .enjoy-heading-red .enjoy-heading-accent{
  color: #e86a6a;
}

/* 緑バージョン */
.page-top .enjoy-heading-green .enjoy-heading-accent{
  color: #37a45a;
}

/* ===== CONTENTS ラベル画像 ===== */
.page-top .enjoy-label{
  position: absolute;
  top: -22px;
  left: 22px;
  transform: rotate(-28deg);
  transform-origin: left top;
  z-index: 5;
}

.page-top .enjoy-label img{
  display: block;
  width: 140px;     /* ← 添付画像に合わせて調整 */
  height: auto;
}

@media (max-width: 768px){
  .page-top .enjoy-label{
    top: -16px;
    left: 12px;
    transform: rotate(-22deg);
  }

  .page-top .enjoy-label img{
    width: 110px;
  }
}
/* CONTENTSラベルの余計な装飾を完全に消す */
.page-top .enjoy-label::before,
.page-top .enjoy-label::after{
  content: none !important;
  display: none !important;
}

.page-top .enjoy-label img{
  box-shadow: none !important;
  filter: none !important;
  border: none !important;
  outline: none !important;
}

/* ===== CONTENTS label tuning ===== */
.page-top .enjoy-card{
  position: relative; 
  overflow: visible;  
}

/* ラベル位置・角度・余白 */
.page-top .enjoy-label{
  position: absolute;
  top: -19px;              
  left: 19px;              
  transform: rotate(15deg);
  transform-origin: left top;
  z-index: 6;
  padding: 6px 0;          /* ★ 上下の余白 */
}

/* 角に少しだけ被せる（+3px） */
.page-top .enjoy-label{
  top: calc(-19px + 3px);  /* ★ +3px被せ */
  left: calc(19px + 3px);  /* ★ +3px被せ */
}

.page-top .enjoy-label img{
  display: block;
  width: 140px;  
  height: auto;
  box-shadow: none;
  filter: none;
  border: none;
  outline: none;
}

/* スマホ調整 */
@media (max-width: 768px){
  .page-top .enjoy-label{
    top: calc(-14px + 3px);
    left: calc(12px + 3px);
    transform: rotate(15deg);
    padding: 5px 0;
  }
  .page-top .enjoy-label img{
    width: 110px;
  }
}
/* ===== Card inner padding tuning ===== */
.page-top .enjoy-card__inner{
  padding: 34px 40px 30px;
}

/* スマホ */
@media (max-width: 768px){
  .page-top .enjoy-card__inner{
    padding: 22px 20px 20px;
  }
}
/* 見出し前後の間隔 */
.page-top .enjoy-kicker{
  margin-bottom: 6px;
}

.page-top .enjoy-heading{
  margin-bottom: 14px; 
}
.page-top .enjoy-desc{
  margin-bottom: 22px;  
  line-height: 2.0;   
}

/* スマホ */
@media (max-width: 768px){
  .page-top .enjoy-desc{
    margin-bottom: 18px;
    line-height: 1.9;
  }
}
.page-top .enjoy-photos{
  margin-top: 6px;
}
/* ===== CONTENTS image to top layer ===== */
.page-top .enjoy-label{
  position: absolute;
  z-index: 20;   
}
/* カード本体 */
.page-top .enjoy-card{
  position: relative;
  z-index: 1;
}

/* カード内テキスト */
.page-top .enjoy-card__inner{
  position: relative;
  z-index: 2;
}

.page-top .enjoy-card__inner{
  padding-top: 46px; 
}
@media (max-width: 768px){
  .page-top .enjoy-label{
    z-index: 20;
  }

  .page-top .enjoy-card__inner{
    padding-top: 38px;
  }
}
@media (max-width: 768px){
  .page-top .enjoy-label{
    z-index: 20;
  }

  .page-top .enjoy-card__inner{
    padding-top: 38px;
  }
}
/* ===== CONTENTS label position (more top) ===== */
.page-top .enjoy-label{
  position: absolute;
  top: -60px;             
  left: 18px;
  transform: rotate(15deg);
  transform-origin: left top;
  z-index: 20;
  padding: 6px 0;
}
/* ===== Card inner top spacing ===== */
.page-top .enjoy-card__inner{
  padding-top: 70px; 
}
@media (max-width: 768px){
  .page-top .enjoy-label{
    top: -34px;
    left: 14px;
  }

  .page-top .enjoy-card__inner{
    padding-top: 54px;
  }
}
.page-top .enjoy-card{
  position: relative;
  z-index: 1;
}

.page-top .enjoy-card__inner{
  position: relative;
  z-index: 2;
}

.page-top .enjoy-label{
  z-index: 20;
}
/* ===== Ticket section ===== */
.page-top .ticket-section{
  background: #fff;
  padding: 99px 0 70px;
}

.page-top .ticket-title{
  margin: 0 0 24px;
}

.page-top .ticket-block{
  max-width: 920px;
  margin: 0 auto 34px;
}

.page-top .ticket-subtitle{
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 10px;
  color: #222;
}

.page-top .ticket-lead{
  margin: 0 0 18px;
  font-size: 0.92rem;
  line-height: 1.9;
  color: #333;
}

/* ticket item (red / green frames) */
.page-top .ticket-item{
  border-radius: 12px;
  padding: 14px 16px 12px;
  margin: 0 0 12px;
  background: #fff;
}

.page-top .ticket-item-red{
  border: none;
}

.page-top .ticket-item-green{
  border: none;
}

.page-top .ticket-item__head{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.page-top .ticket-pill{
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.86rem;
  font-weight: 800;
  color: #fff;
}

.page-top .ticket-pill-red{ background: #e86a6a; }
.page-top .ticket-pill-green{ background: #37a45a; }

.page-top .ticket-price{
  font-size: 0.9rem;
  font-weight: 800;
  color: #222;
}

.page-top .ticket-day-note{
  font-size: 0.78rem;
  color: #d32f2f;
  font-weight: 700;
}

.page-top .ticket-desc{
  margin: 0 0 10px;
  font-size: 0.88rem;
  line-height: 1.85;
  color: #333;
}

.page-top .ticket-spec{
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.7;
  padding: 8px 10px;
  border-radius: 10px;
  background: #fff;
  font-weight: 700;
}

.page-top .ticket-spec-red{
  border: 1.5px solid rgba(232,106,106,0.7);
  color: #c94040;
	background-color: #F4F4F4;
}

.page-top .ticket-spec-green{
  border: 1.5px solid rgba(55,164,90,0.7);
  color: #1f7a3d;
  background-color: #F4F4F4;
}

/* ===== table ===== */
.page-top .ticket-table-title{
  margin-top: 48px;
}

.page-top .ticket-table-wrap{
  max-width: 920px;
  margin: 0 auto;
  overflow-x: auto;              
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
}

.page-top .ticket-matrix{
  width: 100%;
  min-width: 760px;             
  border-collapse: collapse;
  background: #fff;
}

.page-top .ticket-matrix th,
.page-top .ticket-matrix td{
  border: 1px solid #fff;
  padding: 16px 12px;
  text-align: center;
  font-weight: 800;
}

.page-top .matrix-left{
  background: #d9d9d9;
  width: 220px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 900;
  color: #222;
}

.page-top .matrix-head{
  color: #fff;
  font-size: 0.86rem;
  line-height: 1.4;
}

.page-top .matrix-head.red{ background: #e86a6a; }
.page-top .matrix-head.green{ background: #37a45a; }

.page-top .matrix-cell{
  font-size: 0.95rem;
}

.page-top .matrix-cell.red{ background: #e86a6a; color: #fff; }
.page-top .matrix-cell.green{ background: #37a45a; color: #fff; }

/* ===== CTA ===== */
.page-top .ticket-cta{
  display: flex;
  justify-content: center;
  margin: 26px 0 0;
}

.page-top .ticket-cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: #6b0f0f; 
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 0.92rem;
}

.page-top .ticket-cta-btn:hover{
  opacity: 0.92;
}

/* ===== smartphone ===== */
@media (max-width: 768px){
  .page-top .ticket-section{
    padding: 80px 0 44px;
  }

  .page-top .ticket-block{
    margin-bottom: 26px;
  }

  .page-top .ticket-lead{
    font-size: 0.86rem;
  }

  .page-top .ticket-item{
    padding: 12px 12px 10px;
  }

  .page-top .ticket-pill{
    font-size: 0.82rem;
    padding: 6px 10px;
  }

  .page-top .ticket-cta-btn{
    width: 100%;
    max-width: 320px;
    font-size: 0.9rem;
    padding: 14px 18px;
  }
}
/* ===== Ticket matrix: match screenshot ===== */
.page-top .ticket-table-wrap{
  max-width: 920px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.page-top .ticket-matrix{
  width: 100%;        
  border-collapse: collapse;
  table-layout: fixed;     
  background: #fff;
}

/* 罫線：白でくっきり */
.page-top .ticket-matrix th,
.page-top .ticket-matrix td{
  border: 1px solid #fff;
  padding: 22px 14px;
  text-align: center;
  font-weight: 800;
  vertical-align: middle;
}

/* 左グレー列（見本の幅感） */
.page-top .ticket-matrix .matrix-left{
  background: #d9d9d9;
  width: 280px;          
  font-size: 0.95rem;
  font-weight: 900;
  color: #111;
  line-height: 1.5;
}

/* 見出し（上段）高さをしっかり取る */
.page-top .ticket-matrix thead th{
  padding: 28px 12px;
}

.page-top .ticket-matrix .matrix-head{
  color: #fff;
  font-size: 0.86rem;
  line-height: 1.35;
  font-weight: 900;
}

/* セルの色（見本寄せで少し落ち着いた赤） */
.page-top .ticket-matrix .matrix-head.red,
.page-top .ticket-matrix .matrix-cell.red{
  background: #e55f5f;
  color: #fff;
}
.page-top .ticket-matrix .matrix-head.green,
.page-top .ticket-matrix .matrix-cell.green{
  background: #2f9a4a;
  color: #fff;
}

/* ○× を大きく太く */
.page-top .ticket-matrix tbody td{
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

/* 価格行だけ少し文字サイズを調整 */
.page-top .ticket-matrix tbody tr:first-child td{
  font-size: 1.1rem;
  font-weight: 900;
}

/* ===== Smartphone: left column sticky & readable ===== */
@media (max-width: 768px){

  .page-top .ticket-table-wrap{
    margin: 0 -16px;        
    padding: 0 16px 8px;
  }

  .page-top .ticket-matrix{
    min-width: 920px;             
  }

  .page-top .ticket-matrix th,
  .page-top .ticket-matrix td{
    padding: 18px 10px;
  }

  .page-top .ticket-matrix .matrix-left{
    width: 210px;                  
    font-size: 0.82rem;
    position: sticky;              /* ★ 左列固定 */
    left: 0;
    z-index: 3;
  }

  /* 左列の固定が下のセルに隠れないように */
  .page-top .ticket-matrix thead .matrix-left{
    z-index: 4;
  }

  .page-top .ticket-matrix .matrix-head{
    font-size: 0.8rem;
  }

  .page-top .ticket-matrix tbody td{
    font-size: 1.15rem;
  }
}
/* ===== Glass section (final) ===== */
.page-top .glass-section{
  background: #f4f4f4;
  padding: 99px 0 70px;
  position: relative;
  overflow: hidden;
}

/* 背景のうっすらイラスト（雰囲気用） */
.page-top .glass-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./material/img/glass_bg_pattern.png"); 
  background-repeat: repeat;
  background-size: 220px auto;
  opacity: 0.10;
  pointer-events: none;
}

/* 本文は背景より前面へ */
.page-top .glass-section .container-custom{
  position: relative;
  z-index: 1;
}

.page-top .glass-title{
  margin: 0 0 8px;
}

.page-top .glass-lead{
  text-align: center;
  margin: 0 auto 28px;
  font-size: 0.92rem;
  line-height: 1.9;
  color: #333;
  max-width: 760px;
}

.page-top .glass-grid2{
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.page-top .glass-card2{
  padding: 18px 18px 16px;
}

.page-top .glass-photo{
  border-radius: 14px;
  overflow: hidden;
}

.page-top .glass-photo img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-top .glass-name{
  margin: 14px 0 8px;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.3;
}

.page-top .glass-note{
  font-size: 0.9rem;
  font-weight: 800;
  margin-left: 6px;
}

.page-top .glass-name-red{ color: #e55f5f; }
.page-top .glass-name-green{ color: #2f9a4a; }

.page-top .glass-desc{
  margin: 0 0 12px;
  font-size: 0.88rem;
  line-height: 1.85;
  color: #333;
}

.page-top .glass-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-top .glass-tag{
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.page-top .glass-tag-red{ background: #e55f5f; }
.page-top .glass-tag-green{ background: #2f9a4a; }

/* ===== smartphone ===== */
@media (max-width: 768px){
  .page-top .glass-section{
    padding: 80px 0 44px;
  }

  .page-top .glass-lead{
    font-size: 0.86rem;
    padding: 0 8px;
    margin-bottom: 18px;
  }

  .page-top .glass-grid2{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page-top .glass-photo img{
    height: 200px;
  }

  /*.page-top .glass-card2{
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }*/
}/* ワイングラス背景 */
html body .glass-section{
  background-color: #FCF8FD !important; 
  background-image: url("../img/glass_bg_pattern.png") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;     
}
/* ===== glass-section スマホ用背景画像 ===== */
@media (max-width: 768px) {
  .glass-section{
    background-image: url("../img/glass_bg_pattern_sp.png") !important;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
  }
}
/* ============================
   画像スライダー（6枚ループ / 継ぎ目なし）
   ※HTMLは「6枚＋同じ6枚複製（計12枚）」が必須
   ============================ */

/* スライダーだけ container 制約を解除 */
.page-top .container-custom.slider-fullwidth{
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* 全幅表示（左右余白なし） */
.page-top .container-custom.slider-fullwidth .three-images{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  padding: 0;
  background: transparent;
}

/* レーン */
.page-top .container-custom.slider-fullwidth .three-images-track{
  display: flex;
  align-items: center;
  gap: 28px;                 
  width: max-content;
  animation: slider-marquee 180s linear infinite;
  will-change: transform;
}

/* 画像：比率そのまま、切り抜きなし、大きめ */
.page-top .container-custom.slider-fullwidth .three-images-track img{
  flex: 0 0 auto;
  width: min(520px, 38vw);   /* ←PCで「3枚＋チラ見え」くらいの大きさ */
  height: auto;              /* 比率維持 */
  display: block;
  object-fit: contain;
}

/* 複製しているので -50% で継ぎ目なし */
@keyframes slider-marquee{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* タブレット */
@media (max-width: 1024px){
  .page-top .container-custom.slider-fullwidth .three-images-track{
    gap: 20px;
    animation-duration: 180s;
  }

  .page-top .container-custom.slider-fullwidth .three-images-track img{
    width: min(420px, 62vw);
  }
}

/* スマホ：2枚くらい見えるサイズ感 */
@media (max-width: 768px){
  .page-top .container-custom.slider-fullwidth .three-images{
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .page-top .container-custom.slider-fullwidth .three-images-track{
    gap: 16px;
    animation-duration: 95s;
  }

  .page-top .container-custom.slider-fullwidth .three-images-track img{
    width: min(320px, 46vw);  /* 2枚程度 */
  }
}

/* 動きを減らす設定の人向け */
@media (prefers-reduced-motion: reduce){
  .page-top .container-custom.slider-fullwidth .three-images-track{
    animation: none;
  }
}




/* ===== チケット別一覧：左列デザイン ===== */
.ticket-table-wrap table th,
.ticket-table-wrap table td:first-child {
  background: #f0f0f0;
  color: #000;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  padding: 24px 16px;
  width: 38%;
  border-right: 6px solid #fff;
  border-bottom: 6px solid #fff;
}

/* 行ごとにグレーを切り替え */
.ticket-table-wrap table tr:nth-child(even) th,
.ticket-table-wrap table tr:nth-child(even) td:first-child {
  background: #e0e0e0;
}

/* スマホ：文字詰まり防止 */
@media (max-width: 768px) {
  .ticket-table-wrap table th,
  .ticket-table-wrap table td:first-child {
    font-size: 14px;
    line-height: 1.4;
    padding: 20px 12px;
  }
}
/* ===== チケット別一覧表：左列を見本デザインに ===== */
.page-top .ticket-table-wrap .ticket-matrix .matrix-left{
  background: #eeeeee !important;
  color: #000 !important;
  font-weight: 900 !important;
  text-align: center !important;
  vertical-align: middle !important;
  line-height: 1.45 !important;

  /* 左列の見た目（白い太い仕切り） */
  border-right: 6px solid #fff !important;
  border-bottom: 6px solid #fff !important;
  padding: 26px 16px !important;

  /* 幅も見本っぽく */
  width: 38% !important;
}

/* 交互グレー（見本の段違い） */
.page-top .ticket-table-wrap .ticket-matrix tbody tr:nth-child(even) > .matrix-left{
  background: #dcdcdc !important;
}

/* 左上（theadの空セル）も同じトーンに */
.page-top .ticket-table-wrap .ticket-matrix thead .matrix-left{
  background: #eeeeee !important;
  border-right: 6px solid #fff !important;
  border-bottom: 6px solid #fff !important;
}

/* スマホ時：文字詰まり防止 */
@media (max-width: 768px){
  .page-top .ticket-table-wrap .ticket-matrix .matrix-left{
    font-size: 14px !important;
    padding: 20px 12px !important;
    width: 210px !important; /* 左列固定幅 */
  }
}
/* ===== チケット別一覧表：白い枠線を完全統一 ===== */
.page-top .ticket-table-wrap table {
  border-collapse: separate;   /* ← 重要 */
  border-spacing: 0;           /* 隙間なし */
}

/* 全セル共通 */
.page-top .ticket-table-wrap th,
.page-top .ticket-table-wrap td {
  border-right: 4px solid #fff !important;
  border-bottom: 4px solid #fff !important;
}


.page-top .ticket-table-wrap tr th:last-child,
.page-top .ticket-table-wrap tr td:last-child {
  border-right: none !important;
}


.page-top .ticket-table-wrap tbody tr:last-child th,
.page-top .ticket-table-wrap tbody tr:last-child td {
  border-bottom: none !important;
}

/* ===== スマホ：チケット表 左列の固定を解除 ===== */
@media (max-width: 768px) {

  .ticket-table-wrap th,
  .ticket-table-wrap td,
  .matrix-left {
    position: static !important; /* 固定を解除 */
    left: auto !important;
    z-index: auto !important;
  }

}


/* ===== チケットCTAボタン：三角位置調整 ===== */
.ticket-cta-btn{
  position: relative;
  padding-left: 76px; /* テキスト開始位置を少し右へ */
}

/* 三角アイコン */
.ticket-cta-btn::before{
  content: "";
  position: absolute;
  left: 26px;           
  top: 50%;
  transform: translateY(-50%);

  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
}
/* ===== チケットCTAボタン：PC / スマホ 切り分け ===== */
.ticket-cta-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ▼ 三角アイコン共通 */
.ticket-cta-btn::before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
}

/* ===== PC表示 ===== */
@media (min-width: 769px){
  .ticket-cta-btn{
    padding: 18px 70px 18px 90px; /* ← 左を広げてボタン幅アップ */
    min-width: 400px;           
  }

  .ticket-cta-btn::before{
    left: 15px;                 
  }
}

/* ===== スマホ表示 ===== */
@media (max-width: 768px){
  .ticket-cta-btn{
    padding: 16px 28px 16px 72px; /* ← テキストを右へ */
    width: 100%;
    max-width: 320px;
  }

  .ticket-cta-btn::before{
    left: 14px;               
  }
}


/* 下の行に出るライン */
.ticket-section .ticket-subtitle::after{
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: #f07a7a; /* 前売券 */
  margin-top: 8px;
}

/* 当日券だけ色変更 */
.ticket-section .ticket-block-day .ticket-subtitle::after{
  background: #4CAF50;
}

/* スマホ微調整 */
@media (max-width: 768px){
  .ticket-section .ticket-subtitle{
    padding-bottom: 8px;
  }
  .ticket-section .ticket-subtitle::after{
    height: 3px;
    margin-top: 6px;
  }
}
/* ===== チケット料金：ボタンと同色 ===== */

/* 前売券（赤） */
.ticket-item-red .ticket-price {
  color: #f07a7a;
  font-weight: 700;
}

/* 当日券（緑） */
.ticket-item-green .ticket-price {
  color: #4CAF50;
  font-weight: 700;
}


/* ===== 特典テキスト：グレー背景 ===== */
.ticket-spec {
  background: #f2f2f2;       /* ← グレー背景 */
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 600;
}

/* 枠線色は今まで通り色分け */
.ticket-spec-red {
  border: 2px solid #f07a7a;
  color: #f07a7a;
}

.ticket-spec-green {
  border: 2px solid #4CAF50;
  color: #4CAF50;
}
/* ===== 特典テキスト：文字は黒＋グレー背景 ===== */
.ticket-spec {
  background: #f2f2f2;      /* グレー背景 */
  color: #000;              /* ← 文字色を黒に */
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 600;
}

/* 枠線のみ色分け（前売券） */
.ticket-spec-red {
  border: 2px solid #f07a7a;
}

/* 枠線のみ色分け（当日券） */
.ticket-spec-green {
  border: 2px solid #4CAF50;
}
/* ===== セクションタイトル：上余白を多めに ===== */
.section-title {
  margin-top: 150px;   /* PC：しっかり余白 */
}

/* スマホ */
@media (max-width: 768px) {
  .section-title {
    margin-top: 80px;  /* スマホ：やや控えめ */
  }
}
