/* ================================================
   淡路島COSPLAY 〜アワコス〜
   ================================================ */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
/* スムーズスクロール全体設定 */
html {
  scroll-behavior: smooth;
}

/* 各セクションへのアンカー位置補正 */
[id] {
  scroll-margin-top: 100px; /* ← 固定ヘッダーの高さに合わせて調整 */
}

body {
	font-family: 'Noto Sans JP', 'Montserrat', sans-serif;
	line-height: 1.8;
	color: #333;
	background: #FFEB3B;
	background-attachment: fixed;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
.container {
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
}
h2 {
	font-size: clamp(1.5rem, 1.091rem + 2.05vw, 2.625rem);
}
/* --------------------------------
   ヘッダー（ナビゲーション）
-------------------------------- */
.site-header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	z-index: 1000;
}
.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
}
.logo-area {
	display: flex;
	align-items: center;
	gap: 10px;
}
.logo-area img {
	height: 40px;
}
.main-nav ul {
	display: flex;
	list-style: none;
	gap: 20px;
}
.main-nav a {
	text-decoration: none;
	color: #222;
	font-weight: 700;
	transition: color 0.3s;
}
.main-nav a:hover {
	color: #e4007f;
}
/* =============================
   ヒーローセクション（横スライド）
============================= */
.hero {
	position: relative;
	width: 100%;
	height: 650px;
	overflow: hidden;
	padding-top: 80px;
}

/* スライドの共通スタイル */
.hero .slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	animation: slideAnim 25s infinite;
	opacity: 0;
}

/* 各スライド画像 */
.hero .slide1 { background-image: url("../images/topslider/img01.png"); animation-delay: 0s; }
.hero .slide2 { background-image: url("../images/topslider/img02.png"); animation-delay: 5s; }
.hero .slide3 { background-image: url("../images/topslider/img03.png"); animation-delay: 10s; }
.hero .slide4 { background-image: url("../images/topslider/img04.png"); animation-delay: 15s; }
.hero .slide5 { background-image: url("../images/topslider/img05.png"); animation-delay: 20s; }

/* アニメーション：フェード＋スライド */
@keyframes slideAnim {
	0% {
		opacity: 0;
		transform: scale(1.05);
	}
	5% {
		opacity: 1;
		transform: scale(1);
	}
	20% {
		opacity: 1;
		transform: scale(1);
	}
	25% {
		opacity: 0;
		transform: scale(1.05);
	}
	100% {
		opacity: 0;
	}
}

/* ロゴ */
.hero-logo {
	text-align: center;
	padding: 150px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.hero-logo img {
	max-width: 400px;
}

.hero-logo .divider {
	font-size: 1.8rem;
	font-weight: bold;
	color: #333;
}


/* レスポンシブ対応 */
@media (max-width: 768px) {
	
/* ロゴ */
.hero-logo {
	max-width: 768px;
	text-align: center;
	padding: 50px 0 0 0;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}

.hero-logo img {
	max-width: 85%;
}



}
/* --------------------------------
   INFO SECTION（デザイン付き標準セクション）
-------------------------------- */
.info-section {
	border: 3px solid #27ae60;
	border-radius: 8px;
	max-width: 900px;
	margin: 100px auto;
	background: #fff;
	overflow: hidden;
}
/* タイトル帯（上部のジグザグ） */
.section-header {
	background: #27ae60;
	color: #fff;
	text-align: center;
	position: relative;
	padding: 20px 0;
	font-weight: 700;
	font-size: 1.8rem;
}
.section-header::after {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 0;
	width: 100%;
	height: 20px;
	background: repeating-linear-gradient(-45deg, #27ae60, #27ae60 10px, transparent 10px, transparent 20px);
}
/* 内容ボックス */
.info-box {
	background: #fffde9;
	margin: 40px 30px;
	border-radius: 12px;
	padding: 40px 30px;
}
/* 各項目 */
.info-item {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 20px;
	align-items: flex-start;
}
.label {
	background: #27ae60;
	color: #fff;
	font-weight: 700;
	padding: 6px 18px;
	border-radius: 9999px;
	font-size: 0.9rem;
	flex-shrink: 0;
}
.info-text h3 {
	color: #0b6938;
	font-size: 1.1rem;
	margin-bottom: 5px;
}
.info-text p {
	font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
	color: #333;
	line-height: 1.6;
}
/* 区切り線 */
.info-box hr {
	border: none;
	border-top: 2px dotted #999;
	margin: 20px 0;
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
	.info-section {
		margin: 60px auto;
		width: 90%;
	}
	.section-header {
		font-size: 1.5rem;
		padding: 16px 0;
	}
	.info-box {
		margin: 30px 15px;
		padding: 30px 20px;
	}
	.info-item {
		flex-direction: column;
		gap: 10px;
	}
	.label {
		font-size: 0.85rem;
		align-self: flex-start;
		width: 100%;
		text-align: center;
	}
	.info-text h3 {
		font-size: 1rem;
	}
}
/* --------------------------------
   ボタン共通スタイル
-------------------------------- */
.btn {
	display: inline-block;
	background: linear-gradient(90deg, #e4007f, #0096d6);
	color: #fff;
	padding: 12px 28px;
	border-radius: 40px;
	text-decoration: none;
	font-weight: 700;
	transition: opacity 0.3s, transform 0.2s;
}
.btn:hover {
	opacity: 0.8;
	transform: scale(1.05);
}
.btn-outline {
	background: transparent;
	border: 2px solid #fff;
}
/* --------------------------------
   各セクション共通
-------------------------------- */
.section {
	padding: 100px 0;
	background: #fff;
	color: #222;
}
.section:nth-of-type(even) {
	background: #f9f9f9;
}
.section h2 {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 40px;
	color: #0096d6;
}
/* ============================================
   チケット情報セクション（ticket-info）
   ============================================ */
/* 外枠全体 */
.ticket-info {
	border: 3px solid #003fc7;
	border-radius: 8px;
	max-width: 900px;
	margin: 100px auto;
	background: #fff;
	overflow: hidden;
	font-family: 'Noto Sans JP', sans-serif;
}
/* タイトルヘッダー */
.ticket-header {
	background: #003fc7;
	color: #fff;
	text-align: center;
	padding: 22px 0;
	font-size: 1.8rem;
	font-weight: 700;
	position: relative;
}
.ticket-header::after {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 0;
	width: 100%;
	height: 20px;
	background: repeating-linear-gradient(-45deg, #003fc7, #003fc7 10px, transparent 10px, transparent 20px);
}
/* 内部ボックス */
.ticket-box {
	background: #f4f7fb;
	margin: 40px 0;
	border-radius: 12px;
	padding: 40px 30px;
}
/* 各チケット行 */
.ticket-item {
	display: flex;
	align-items: flex-start;
	gap: 25px;
	margin-bottom: 25px;
}
/* ラベル部分（←これが左側に表示される） */
.ticket-label {
	background: #003fc7;
	color: #fff;
	font-weight: 700;
	padding: 8px 22px;
	border-radius: 9999px;
	font-size: 0.9rem;
	min-width: 90px;
	text-align: center;
	line-height: 1.6;
	display: inline-block;
	flex-shrink: 0;
}
/* 本文部分 */
.ticket-text {
	flex: 1;
}
.ticket-text h3 {
	font-size: 1.1rem;
	color: #003fc7;
	font-weight: 700;
	line-height: 1.6;
	margin-bottom: 4px;
}
.ticket-text p {
	font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
	color: #333;
	margin: 2px 0 0;
	line-height: 1.6;
}
/* 区切り線 */
.ticket-box hr {
	border: none;
	border-top: 2px dotted #99a9c6;
	margin: 20px 0;
}
.ticket-heading {
	/* background: #f4f8ff; */
	/* border: 3px solid #003366; */
	border-radius: 8px;
	padding: 45px 30px 25px 30px;
	/* margin-bottom: 40px; */
	color: #002244;
}
.ticket-heading h2 {
	font-size: clamp(1rem, 0.886rem + 0.57vw, 1.313rem);
}
.ticket-heading h3 {
	font-size: 1.8rem;
	margin: 0 0 10px;
	color: #003366;
}
.ticket-heading h3 span {
	font-size: 1rem;
	margin: 0 0 10px;
	color: #003366;
}
.ticket-heading ul {
	list-style: disc;
	margin-left: 20px;
}
.ticket-heading li {
	margin-bottom: 5px;
	line-height: 1.6;
	font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
}
/* レスポンシブ */
@media (max-width: 768px) {
	.ticket-heading {
		padding: 50px 20px 20px 20px;
	}
	.ticket-heading h3 {
		font-size: 1.1rem;
	}
}
/* =====================================
   チケット発売 見出し（青ピル）
===================================== */
.ticket-release-title {
  color: #003fc7;
  /* padding: 18px 28px; */
  /* border-radius: 40px; */
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  max-width: 900px;
  margin: 60px auto 30px;
  /* box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08); */
}

/* スマホ最適化 */
@media (max-width: 768px) {
  .ticket-release-title {
    font-size: 1rem;
    padding: 14px 22px;
    margin: 40px auto 25px;
    border-radius: 30px;
  }
}

/* ====================================
   アワコス チケットテーブル（青）
   レスポンシブ対応（スクロール式）
==================================== */

.awacos-ticket-section {
  max-width: 1000px;
  margin: 10px auto 80px auto;
  padding: 0 20px;
}

.ticket-block {
  margin-bottom: 40px;
  text-align: center;
}

/* タイトル（青ピル） */
.ticket-title {
  background: #FF5722;
  color: #fff;
  text-align: center;
  padding: 14px 30px;
  border-radius: 40px;
  font-size: 1.2rem;
  display: inline-block;
  margin: 0 auto 25px;
  line-height: 1.5;
}

/* --- ▼ テーブルのレスポンシブラッパー --- */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 20px;
}

/* テーブル共通 */
.awacos-table {
  width: 100%;
  min-width: 600px; /* スマホで横スクロールさせる幅 */
  border-collapse: collapse;
  font-size: 1rem;
}

/* 見出し */
.awacos-table thead th {
  background: #17267b;
  color: #fff;
  padding: 18px;
  text-align: center;
  border: 1px solid #ddd;
  font-weight: bold;
  white-space: nowrap;
}

/* 行ラベル（左列） */
.awacos-table tbody th {
  background: #e8f0ff;
  width: 120px;
  text-align: center;
  border: 1px solid #bfcdf5;
  font-weight: bold;
  white-space: nowrap;
}

/* データセル */
.awacos-table td {
  padding: 18px;
  text-align: center;
  border: 1px solid #ddd;
  background: #fcfde2;
  white-space: nowrap;
  font-weight: bold;
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  color: #333;
}

/* 偶数行は淡いグレー青 */
.awacos-table tbody tr:nth-child(even) td {
  background: #f7f9ff;
}

/* ============================
   スマホ向け：幅に収まるテーブル表示
   （横スクロールなし）
============================ */

@media (max-width: 768px) {
/* タイトル（青ピル） */
.ticket-title {
  font-size: 16px;
  border-radius:10px
}
  /* テーブル全体を画面幅に合わせる */
  .awacos-table {
    width: 100% !important;
    table-layout: fixed !important;
    min-width: 100% !important;
    border-collapse: collapse;
  }

  /* セルの中身を折り返し可能に */
  .awacos-table th,
  .awacos-table td {
    white-space: normal !important;
    word-break: break-word;
    padding: 10px;
    font-size: 0.7rem;
  }

  /* 左列（女性 / 男性）も縮む */
  .awacos-table tbody th {
    width: auto !important;
  }

  /* テーブルラッパーはスクロールさせない */
  .table-wrap {
    overflow-x: hidden !important;
  }

  /* 見出し行の縦幅を少し抑える */
  .awacos-table thead th {
    line-height: 1.4;
    font-size: 10px;
    padding: 10px 2px;
  }
}

/* =====================================
   チケット内・注意事項ブロック（青）
===================================== */
.ticket-notice {
  background: #e8f0ff;           /* 淡い青 */
  border-left: 6px solid #003fc7; /* 左強調ライン */
  padding: 18px 20px;
  margin: 25px auto 40px;
  border-radius: 8px;
  width: 90%;
}

.ticket-notice ul {
  list-style: disc;
  margin-left: 20px;
  padding-left: 5px;
}

.ticket-notice li {
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 8px;
  color: #003055;
}

.ticket-notice strong {
  color: #003fc7;
  font-weight: 700;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .ticket-notice {
    padding: 16px 16px;
  }
  .ticket-notice li {
    font-size: 0.9rem;
  }
}

/* ============================================
   プログラム情報セクション（program-info）
   ============================================ */
/* 外枠全体 */
.program-info {
	border: 3px solid #e4007f;
	border-radius: 8px;
	max-width: 900px;
	margin: 100px auto;
	background: #fff;
	overflow: hidden;
	font-family: 'Noto Sans JP', sans-serif;
}
/* タイトルヘッダー */
.program-header {
	background: #e4007f;
	color: #fff;
	text-align: center;
	padding: 22px 0;
	font-size: 1.8rem;
	font-weight: 700;
	position: relative;
}
.program-header::after {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 0;
	width: 100%;
	height: 20px;
	background: repeating-linear-gradient(-45deg, #e4007f, #e4007f 10px, transparent 10px, transparent 20px);
}
/* 内部ボックス */
.program-box {
	background: #fff5fa;
	margin: 40px 30px;
	border-radius: 12px;
	padding: 40px 30px;
}
/* 各項目 */
.program-item {
	display: flex;
	align-items: flex-start;
	gap: 25px;
	margin-bottom: 25px;
}
/* 時間ラベル */
.program-label {
	background: #e4007f;
	color: #fff;
	font-weight: 700;
	padding: 8px 22px;
	border-radius: 9999px;
	font-size: 0.9rem;
	min-width: 120px;
	text-align: center;
	line-height: 1.6;
	display: inline-block;
	flex-shrink: 0;
}
/* テキスト部分 */
.program-text {
	flex: 1;
}
.program-text h3 {
	font-size: 1.1rem;
	color: #e4007f;
	font-weight: 700;
	line-height: 1.6;
	margin-bottom: 4px;
}
.program-text p {
	font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
	color: #333;
	margin: 2px 0 0;
	line-height: 1.6;
}
/* 区切り線 */
.program-box hr {
	border: none;
	border-top: 2px dotted #f5a4c5;
	margin: 20px 0;
}
/* --------------------------------
   レスポンシブ対応
-------------------------------- */
@media (max-width: 768px) {
	.program-info {
		margin: 60px auto;
		width: 90%;
	}
	.program-header {
		font-size: 1.5rem;
		padding: 18px 0;
	}
	.program-box {
		margin: 30px 15px;
		padding: 30px 20px;
	}
	.program-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	.program-label {
		font-size: 0.85rem;
		min-width: auto;
		width: 100%;
	}
	.program-text h3 {
		font-size: 1rem;
	}
}
/* --------------------------------
   レスポンシブ対応
-------------------------------- */
@media (max-width: 768px) {
	.ticket-info {
		margin: 60px auto;
		width: 90%;
	}
	.ticket-header {
		font-size: 1.5rem;
		padding: 18px 0;
	}
	.ticket-box {
		margin: 30px 15px;
		padding: 30px 20px;
	}
	.ticket-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	.ticket-label {
		font-size: 0.85rem;
		min-width: auto;
		width: 100%;
	}
	.ticket-text h3 {
		font-size: 1rem;
	}
}
/* ============================================
   アクセス情報セクション（access-info）
   ============================================ */
/* 外枠全体 */
.access-info {
	border: 3px solid #0096d6;
	border-radius: 8px;
	max-width: 900px;
	margin: 100px auto;
	background: #fff;
	overflow: hidden;
	font-family: 'Noto Sans JP', sans-serif;
}
/* タイトルヘッダー */
.access-header {
	background: #0096d6;
	color: #fff;
	text-align: center;
	padding: 22px 0;
	font-size: 1.8rem;
	font-weight: 700;
	position: relative;
}
.access-header::after {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 0;
	width: 100%;
	height: 20px;
	background: repeating-linear-gradient(-45deg, #0096d6, #0096d6 10px, transparent 10px, transparent 20px);
}
/* 内部ボックス */
.access-box {
	background: #f3fbff;
	margin: 40px 30px;
	border-radius: 12px;
	padding: 40px 30px;
}
/* マップエリア */
.map-wrap {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
}
.map-wrap iframe {
	width: 100%;
	height: 400px;
	border: none;
}
/* 情報リスト */
.access-list {
	list-style: none;
	margin: 0 0 30px;
	padding: 0;
}
.access-list li {
	padding: 10px 0;
	font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
	color: #333;
	border-bottom: 1px dotted #aad8ef;
}
.access-list strong {
	color: #0096d6;
	font-weight: 700;
	margin-right: 4px;
}
/* 共通ボタン（全セクションで使用可） */
.btn-common {
	display: inline-block;
	background: linear-gradient(90deg, #E91E63, #F44336);
	color: #fff;
	font-weight: 700;
	padding: 12px 30px;
	border-radius: 40px;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease;
	min-width: 350px;
}
.btn-common:hover {
	opacity: 0.9;
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0, 150, 214, 0.3);
}
.btn-area {
	text-align: center;
	margin-top: 20px;
}
/* --------------------------------
   レスポンシブ対応
-------------------------------- */
@media (max-width: 768px) {
	.access-info {
		margin: 60px auto;
		width: 90%;
	}
	.access-header {
		font-size: 1.5rem;
		padding: 18px 0;
	}
	.access-box {
		margin: 30px 15px;
		padding: 30px 20px;
	}
	.map-wrap iframe {
		height: 300px;
	}
	.btn-common {
		padding: 10px 24px;
		font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
		width: 90%;
		min-width: 90%;
	}
}
/* ============================================
   参加規約セクション（rule-info）
   ============================================ */
/* 外枠全体 */
.rule-info {
	border: 3px solid #7b4acb;
	border-radius: 8px;
	max-width: 900px;
	margin: 100px auto;
	background: #fff;
	overflow: hidden;
	font-family: 'Noto Sans JP', sans-serif;
}
/* タイトルヘッダー */
.rule-header {
	background: #7b4acb;
	color: #fff;
	text-align: center;
	padding: 22px 0;
	font-size: 1.8rem;
	font-weight: 700;
	position: relative;
}
.rule-header::after {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 0;
	width: 100%;
	height: 20px;
	background: repeating-linear-gradient(-45deg, #7b4acb, #7b4acb 10px, transparent 10px, transparent 20px);
}
/* 内部ボックス */
.rule-box {
	background: #f8f5ff;
	margin: 40px 30px;
	border-radius: 12px;
	padding: 40px 30px;
}
/* 各項目 */
.rule-item {
	margin-bottom: 25px;
}
.rule-item h3 {
	font-size: 1.1rem;
	color: #7b4acb;
	font-weight: 700;
	margin-bottom: 8px;
}
.rule-item p {
	font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
	color: #333;
	line-height: 1.7;
}
/* 区切り線 */
.rule-box hr {
	border: none;
	border-top: 2px dotted #c8b5f0;
	margin: 25px 0;
}
.rule-item ul {
	margin: 10px 0 20px 25px;
	padding-left: 0;
	list-style-type: disc;
}
.rule-item ul li {
	line-height: 1.8;
	margin-bottom: 8px;
	color: #333;
	font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
}
/* サブリスト（▶︎など補足項目） */
.rule-item ul.sub-list {
	margin-left: 40px;
	list-style-type: "▶︎ ";
}
.rule-item ul.sub-list li {
	font-size: 0.9rem;
	color: #555;
}
/* 見出し */
.rule-item h3 {
	font-size: 1.1rem;
	color: #7b4acb;
	font-weight: 700;
	margin-bottom: 12px;
}
/* 区切り線 */
.rule-box hr {
	border: none;
	border-top: 2px dotted #c8b5f0;
	margin: 30px 0;
}
/* レスポンシブ */
@media (max-width: 768px) {
	.rule-item ul {
		margin-left: 18px;
	}
	.rule-item ul.sub-list {
		margin-left: 30px;
	}
	.rule-item p {
		font-size: 12px;
		color: #333;
		line-height: 1.7;
	}
	.rule-item ul li {
		font-size: 12px;
	}
	.rule-item ul.sub-list li {
		font-size: 12px;
	}
}
/* --------------------------------
   レスポンシブ対応
-------------------------------- */
@media (max-width: 768px) {
	.rule-info {
		margin: 60px auto;
		width: 90%;
	}
	.rule-header {
		font-size: 1.5rem;
		padding: 18px 0;
	}
	.rule-box {
		margin: 30px 15px;
		padding: 30px 20px;
	}
	.rule-item h3 {
		font-size: 1rem;
	}
}
/* ============================================
   ロケーション紹介
   ============================================ */
.location-info {
  border: 3px solid #ff2a76;
  border-radius: 8px;
  max-width: 900px;
  margin: 100px auto;
  background: #fff;
  overflow: hidden;
}

/* タイトル帯 */
.location-info .section-header {
  background: #ff2a76;
  color: #FFF;
  text-align: center;
  position: relative;
  padding: 20px 0;
  font-weight: 700;
  font-size: 1.8rem;
}
.location-info .section-header::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: repeating-linear-gradient(
    -45deg,
    #ff2a76,
    #ff2a76 10px,
    transparent 10px,
    transparent 20px
  );
}

/* コンテンツボックス */
.location-info .info-box {
  background: #fff3f3;
  margin: 40px 30px;
  border-radius: 12px;
  padding: 40px 30px;
}

/* 各項目（画像対応） */
.location-info .info-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.location-info .label {
  background: #ff2a76;
  color: #FFF;
}
.location-info .info-text h3 {
  color: #ff2a76;
}
.location-info .info-text img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
  transition: transform 0.3s ease;
}
.location-info .info-text img:hover {
  transform: scale(1.02);
}

/* 区切り線 */
.location-info .info-box hr {
  border: none;
  border-top: 2px dotted #ce99c0;
  margin: 30px 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .location-info {
    margin: 60px auto;
  }
  .location-info .section-header {
    font-size: 1.5rem;
    padding: 16px 0;
  }
  .location-info .info-box {
    margin: 30px 15px;
    padding: 30px 20px;
  }
  .location-info .info-text h3 {
    font-size: 1rem;
  }
}
/* ============================================
   お問い合わせセクション（contact-info）
   ============================================ */
.contact-info {
  border: 3px solid #007BFF;
  border-radius: 8px;
  max-width: 900px;
  margin: 100px auto;
  background: #fff;
  overflow: hidden;
  font-family: 'Noto Sans JP', sans-serif;
}

/* タイトルヘッダー */
.contact-header {
  background: #007BFF;
  color: #fff;
  text-align: center;
  padding: 22px 0;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}
.contact-header::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: repeating-linear-gradient(
    -45deg,
    #007BFF,
    #007BFF 10px,
    transparent 10px,
    transparent 20px
  );
}

/* 内部ボックス */
.contact-box {
  background: #f5f9ff;
  margin: 40px 30px;
  border-radius: 12px;
  padding: 40px 30px;
}

/* テキスト部 */
.contact-item h3 {
  color: #007BFF;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}
.contact-item p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* 区切り線 */
.contact-box hr {
  border: none;
  border-top: 2px dotted #aac9ff;
  margin: 30px 0;
}

/* フォーム部分 */
.contact-form-area h3 {
  color: #007BFF;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007BFF;
  box-shadow: 0 0 4px rgba(0, 123, 255, 0.4);
  outline: none;
}
.contact-form button {
  align-self: flex-start;
  margin-top: 10px;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .contact-info {
    margin: 60px auto;
    width: 90%;
  }
  .contact-header {
    font-size: 1.5rem;
    padding: 18px 0;
  }
  .contact-box {
    margin: 30px 15px;
    padding: 30px 20px;
  }
  .contact-item h3,
  .contact-form-area h3 {
    font-size: 1.1rem;
  }
}

/* --------------------------------
レスポンシブ対応（768px以下）
-------------------------------- */
@media (max-width: 768px) {
	@media (max-width: 768px) {
		.header-inner {
			flex-direction: row; /* ← columnをやめて横並びに */
			justify-content: space-between; /* 左右に配置 */
			align-items: center; /* 縦中央揃え */
			/* padding: 10px 5%; */ /* 少し左右に余裕 */
			gap: 0; /* 余分な隙間をなくす */
		}
		.logo-area {
			flex: 1; /* ロゴを左寄せで安定配置 */
			display: flex;
			align-items: center;
			justify-content: flex-start;
		}
		.menu-toggle {
			position: relative;
			z-index: 1100;
		}
		.main-nav ul {
			position: absolute;
			top: 60px;
			left: 0;
			right: 0;
			width: 100%;
			background: rgba(255, 255, 255, 0.98);
			flex-direction: column;
			align-items: center;
			display: none;
			border-top: 1px solid #ddd;
			box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
		}
		.main-nav ul.active {
			display: flex;
			animation: fadeSlide 0.3s ease forwards;
		}
	}
	.hero {
		height: 400px;
	}
	.hero-logo {
		/* display: flex; */
		/* gap: 8px; */
		padding: 85px 20px 35px 20px;
	}
	.logo-area img {
		height: 32px;
	}
	.hero h1 {
		font-size: 1.6rem;
	}
	.hero p {
		font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
	}
	.section {
		padding: 70px 0;
	}
	.ticket-table th, .ticket-table td {
		font-size: 0.85rem;
	}
	.footer-logos {
		flex-direction: column;
		gap: 15px;
	}
}
/* --------------------------------
   スマホ専用（480px以下）
-------------------------------- */
@media (max-width: 480px) {
	.hero {
		height: 380px; /* 高さを少し低めに */
		padding-top: 70px; /* ヘッダー分の余白 */
		/* position: relative; */
		/* top: 30px; */
	}
	.hero h1 {
		font-size: 1.4rem;
	}
	.hero p {
		font-size: 0.85rem;
	}
	.btn {
		padding: 8px 20px;
		font-size: 0.9rem;
	}
	.ticket-table th, .ticket-table td {
		display: block;
		width: 100%;
	}
	.main-nav ul {
		flex-direction: column;
		align-items: center;
	}
}
/* --------------------------------
   ハンバーガーメニュー
-------------------------------- */
.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 26px;
	height: 20px;
	background: transparent;
	border: none;
	cursor: pointer;
	z-index: 1100;
}
.menu-toggle span {
	display: block;
	height: 3px;
	width: 100%;
	background: #333;
	border-radius: 2px;
	transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 768px) {
	.menu-toggle {
		display: flex;
	}
	.main-nav ul {
		position: absolute;
		top: 52px;
		right: 0;
		width: 100%;
		flex-direction: column;
		background: rgba(255, 255, 255, 0.98);
		border-top: 1px solid #ddd;
		padding: 20px 0;
		text-align: center;
		display: none;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	}
	.main-nav ul.active {
		display: flex;
		animation: fadeSlide 0.3s ease forwards;
	}
	@keyframes fadeSlide {
		from {
			opacity: 0;
			transform: translateY(-10px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
	.main-nav a {
		font-size: 1.1rem;
		padding: 10px 0;
		display: block;
	}
}

/* ============================================
   ゲスト紹介セクション（guest）
   ============================================ */
.guest {
	border: 3px solid #F44336;
	border-radius: 8px;
	max-width: 900px;
	margin: 100px auto;
	background: #fff;
	overflow: hidden;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
}

.guest-header {
	background: #F44336;
	color: #fff;
	text-align: center;
	padding: 22px 0;
	font-size: 1.8rem;
	font-weight: 700;
	position: relative;
}

.guest-header::after {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 0;
	width: 100%;
	height: 20px;
	background: repeating-linear-gradient(-45deg, #F44336, #F44336 10px, transparent 10px, transparent 20px);
}

/* ゲスト一覧 */
.guest-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	padding: 60px 20px;
}

.guest-item {
	width: 200px;
	text-align: center;
}

.guest-item img {
	width: 200px;
	height: 200px;
	object-fit: cover;
	border-radius: 100%;
	border: 4px solid #F44336;
	box-shadow: 0 4px 10px rgba(244, 67, 54, 0.3);
	margin-bottom: 15px;
	transition: transform 0.3s ease;
}

.guest-item img:hover {
	transform: scale(1.05);
}

.guest-item h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #F44336;
	margin: 10px 0;
}

/* SNSアイコン */
.guest-sns {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 5px;
}

.guest-sns .fa-icon {
	width: 26px;
	height: 26px;
	fill: #F44336;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.guest-sns a:hover .fa-icon {
	transform: scale(1.2);
	opacity: 0.7;
}

/* レスポンシブ */
@media (max-width: 768px) {
	.guest {
	width: 90%;
	.guest-box {
		gap: 20px;
	}
	.guest-item {
		width: 90%;
	}
	.guest-item img {
		width: 160px;
		height: 160px;
		margin: 0 auto;
	}
	}
}
/* Powered Section */
.powered {
	background: #fff;
	text-align: center;
	padding: 20px 20px 40px;
	border-top: 4px solid #27ae60;
	border-bottom: 4px solid #27ae60;
}
.powered-title {
	font-weight: 700;
	font-size: 1.1rem;
	color: #333;
	margin-bottom: 24px;
	letter-spacing: 1px;
}
.powered-logos {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}
.powered-item {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.powered-item img {
	max-width: 124px;
	max-height: 100px;
	width: auto;
	display: block;
}
.powered-item p {
	font-weight: 600;
	color: #222;
	font-size: 1rem;
	line-height: 1.6;
}
.powered-divider {
	width: 1px;
	height: 60px;
	background: #ccc;
	margin: 0 20px;
}
@media screen and (max-width: 768px) {
	.powered {
		padding: 10px;
	}
	.powered-logos {
		flex-direction: column;
		gap: 16px;
	}
	.powered-divider {
		display: none;
	}
	.powered-item img {
		max-height: 73px;
	}
}

/* --------------------------------
   フッター
-------------------------------- */
/* Footer (Renewed) */
.footer {
	background: #27ae60;
	color: #fff;
	text-align: center;
	padding: 20px;
}
.footer-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 40px;
}
.footer-btn {
	background: #E6007E;
	color: #fff;
	padding: 10px 20px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}
.footer-btn:hover {
	background: #FFEB3B;
	color: #000000;
}
.footer-sns, .footer-org {
	margin-bottom: 40px;
}
.sns-icons {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 10px;
}
.fa-icon {
	width: 36px;
	height: 36px;
	fill: #fff;
	transition: all 0.25s ease;
}
.sns-icons a:hover .fa-icon {
	transform: scale(1.1);
	opacity: 0.8;
}
.copy {
	font-size: 0.85rem;
	color: #ffffff;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
}
.copy a {
	color: #fff;
	text-decoration: underline;
}
/* ============================================
   ヘッダー下キャッチコピー
============================================ */
.header-copy {
  width: 100%;
  text-align: center;
  /* padding: 25px 10px 10px; */
  /* background: rgba(255, 255, 255, 0.85); */
  backdrop-filter: blur(8px);
  margin-top: 70px; /* 固定ヘッダーとの隙間 */
}

.header-copy p {
  margin: 0;
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', 'MS Mincho', serif;
  color: #333;
  line-height: 2;
  padding: 20px 0;
}

.copy-main {
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 2px;
}

.copy-sub {
  font-size: clamp(1rem, 0.8rem + 0.8vw, 1.4rem);
  margin-top: 6px;
  opacity: 0.8;
}
