@charset "UTF-8";
/* =========================================================
   AWACOS  - style.css
========================================================= */
/* =========================
   Theme Tokens (LP scoped)
========================= */
.theme-awacos {
	/* base */
	--bg: #ffffff;
	--text: #111;
	--muted: #666;
	--border: #e6e6e6;
	/* brand */
	--primary: #0C3C78;
	--accent: #0C3C78;
	--cta: #D63447;
	--soft: #F7F8FA;
	/* layout */
	--container: 1100px;
	/* radius / shadow */
	--radius: 16px;
	--radius-pill: 999px;
	--radius-lg: 28px;
	--radius-xl: 28px;
	--radius-card: 18px;
	--shadow: 0 10px 30px rgba(0, 0, 0, .08);
	--shadow-strong: 0 18px 40px rgba(0, 0, 0, .18);
	/* KV */
	--kv-h: clamp(520px, 62vh, 760px);
	--kv-container: 1100px;
	/* Ticket */
	--ticket-bg: #FFE11A;
	--ticket-panel: #FFFFFF;
	--ticket-text: #132A57;
	--btn-orange-1: #F2994A;
	--btn-orange-2: #F27D2A;
	--max: 960px;
}
/* =========================
   Base Reset / Elements
========================= */
* {
	box-sizing: border-box;
}
html, body {
	margin: 0;
	padding: 0;
}
body {
	font-family: system-ui, -apple-system, "Hiragino Sans", "Noto Sans JP", Arial, sans-serif;
	color: var(--text);
	background: var(--bg);
	line-height: 1.7;
	background: #FFE11A;
}
html {
	  scroll-behavior: smooth;
}
a {
	color: #FF9800;
	/* text-decoration: underline; */
}
.container {
	width: min(var(--container), 92vw);
	margin-inline: auto;
}
section {  scroll-margin-top: 80px;}
/* =========================================================
   Header (Responsive + Smooth Drawer)
========================================================= */

.site-header{
  --header-bg: #ffffff;
  --nav-text: #0C2C5A;
  --header-border: rgba(0,0,0,.10);

  position: sticky;
  top: 0;
  z-index: 9990;
  background: var(--header-bg);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.site-header__inner{
  width: min(1200px, 92vw);
  margin: 0 auto;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Brand */
.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 280px;
}
.brand__logo{
  height: 44px;
  width: auto;
  display: block;
}
.brand__powered{
  font-size: 14px;
  font-weight: 800;
  color: #1a8f2a;
  letter-spacing: .02em;
  white-space: nowrap;
}
.brand__sublogo{
  height: 26px;
  width: auto;
  display: block;
}

/* Desktop nav */
.nav--desktop{
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav__list{
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__link{
  color: var(--nav-text);
  font-weight: 700;
  letter-spacing: .02em;
  font-size: 16px;
  padding: 10px 4px;
  white-space: nowrap;
  text-decoration: none;
}
.nav__link:hover{ opacity: .8; }

/* CTA */
.btn-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: #D63447;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition: transform .15s ease, filter .15s ease;
}
.btn-cta:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
}

/* Hamburger */
.nav-toggle{
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--header-border);
  background: rgba(255,255,255,.85);
  cursor: pointer;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span{
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--nav-text);
  border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease, top .22s ease;
}
.nav-toggle span:nth-child(1){ top: 15px; }
.nav-toggle span:nth-child(2){ top: 22px; }
.nav-toggle span:nth-child(3){ top: 29px; }

/* ×アニメ */
.nav-toggle.is-open span:nth-child(1){
  top: 22px;
  transform: rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2){
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3){
  top: 22px;
  transform: rotate(-45deg);
}

/* =========================
   Drawer (smooth)
========================= */
.drawer{
  position: fixed;
  inset: 0;
  z-index: 9999;

  /* displayで殺さない */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity .25s ease, visibility 0s linear .25s;
}

.drawer__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.38);
  opacity: 0;
  transition: opacity .25s ease;
}

.drawer__panel{
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 86vw);
  height: 100%;
  background: #fff;
  border-left: 1px solid var(--header-border);
  box-shadow: 0 14px 34px rgba(0,0,0,.20);

  padding: 16px;
  transform: translateX(22px);
  opacity: 0;

  transition: transform .25s ease, opacity .25s ease;
  will-change: transform, opacity;
}

/* open */
.drawer.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .25s ease, visibility 0s;
}
.drawer.is-open .drawer__backdrop{ opacity: 1; }
.drawer.is-open .drawer__panel{
  transform: translateX(0);
  opacity: 1;
}

html.is-drawer-open,
html.is-drawer-open body{
  overflow: hidden;
}

/* Drawer content */
.drawer__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 2px 14px;
  border-bottom: 1px solid var(--header-border);
  margin-bottom: 12px;
}
.drawer__title{
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--nav-text);
}
.drawer__close{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--header-border);
  background: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

/* Mobile links */
.nav--mobile{ display: grid; gap: 6px; }
.drawer__link{
  padding: 12px 10px;
  border-radius: 12px;
  color: var(--nav-text);
  font-weight: 700;
  text-decoration: none;
}
.drawer__link:hover{ background: #f5f6f8; }

.btn-cta--mobile{
  margin-top: 8px;
  height: 48px;
  width: 100%;
}

/* Responsive */
@media (max-width: 980px){
  .nav--desktop{ display: none; }
  .nav-toggle{ display: inline-flex; }
  .brand{ min-width: auto; }
  .brand__powered{ display: none; }
}

@media (max-width: 520px){
  .site-header__inner{ height: 70px; }
  .brand__logo{ height: 38px; }
  .brand__sublogo{ height: 22px; }
}

/* motion配慮 */
@media (prefers-reduced-motion: reduce){
  .drawer, .drawer__backdrop, .drawer__panel,
  .nav-toggle span{
    transition: none !important;
  }
}

/* =========================================================
   Generic Sections (your existing parts)
========================================================= */
.hero {
	padding: 0;
	background: linear-gradient(180deg, var(--soft), #fff);
}
.hero__inner {
	max-width: 760px;
}
.eyebrow {
	color: var(--muted);
	margin: 0 0 10px;
}
.hero__title {
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.2;
	margin: 0 0 14px;
}
.hero__lead {
	color: var(--muted);
	margin-bottom: 22px;
}
.hero__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.section {
	padding: 56px 0;
}
.section__title {
	margin-bottom: 18px;
	font-size: 24px;
}
.grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.card {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 18px;
	box-shadow: var(--shadow);
}
.card__title {
	margin: 0 0 6px;
}
.card__text {
	margin: 0;
	color: var(--muted);
}
.cta {
	padding: 60px 0;
	background: var(--primary);
	color: #fff;
}
.cta__inner {
	max-width: 760px;
	display: grid;
	gap: 10px;
}
.cta__note {
	font-size: 12px;
	opacity: .8;
}
.footer {
	padding: 20px 0;
	border-top: 1px solid var(--border);
}
.footer__inner {
	display: flex;
	justify-content: space-between;
	color: var(--muted);
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 16px;
	border-radius: 999px;
	background: var(--cta);
	color: #fff;
	font-weight: 700;
	transition: .15s ease;
}
.btn:hover {
	transform: translateY(-1px);
}
.btn--ghost {
	background: transparent;
	border: 1px solid var(--border);
	color: var(--text);
}
.btn--small {
	padding: 10px 14px;
	font-size: 14px;
}
.btn--wide {
	padding-inline: 22px;
}
@media (max-width: 820px) {
	.grid {
		grid-template-columns: 1fr;
	}
}
/* =========================================================
   KV (rebuild)
========================================================= */
.kv {
	position: relative;
	min-height: var(--kv-h);
	background-image: url("../images/kv/hero_bg.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}
.kv::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.kv__inner {
	position: relative;
	z-index: 1;
	width: min(var(--kv-container), 92vw);
	margin: 0 auto;
	min-height: var(--kv-h);
	padding: 56px 0 140px 55px;
}
/* CSS^uzuv */
.kv__content {
	max-width: 560px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.kv__logo {
	width: min(435px, 100%);
	height: auto;
	display: block;
}
.kv__cta {
	margin-top: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 64px;
	width: min(360px, 100%);
	border-radius: var(--radius-pill);
	background: linear-gradient(90deg, #E91E63, #F44336);
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	border: 2px solid rgba(255, 255, 255, .55);
	box-shadow: 0 14px 24px rgba(0, 0, 0, .18);
	transition: .15s ease;
	text-decoration: none;
}
.kv__cta:hover {
	transform: translateY(-2px);
	filter: brightness(1.03);
}
/* info bar */
.kv__info {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 28px;
	width: min(var(--kv-container), 92vw);
	background: rgba(255, 255, 255, .95);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-strong);
	backdrop-filter: blur(8px);
	padding: 18px 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}
.kv-info__item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--accent);
	font-size: 22px;
	font-weight: 800;
	white-space: nowrap;
}
.kv-info__icon {
	font-size: 22px;
	line-height: 1;
}
.kv-info__sep {
	width: 2px;
	height: 28px;
	background: rgba(12, 60, 120, .18);
	border-radius: 2px;
}
/* KV Responsive */
@media (max-width: 980px) {
	.kv {
		background-position: center top;
	}
	.kv::before {
		background: linear-gradient(180deg, rgba(0, 0, 0, .22) 0%, rgba(0, 0, 0, .10) 45%, rgba(0, 0, 0, 0) 100%);
	}
	.kv__inner {
		padding: 40px 0 160px;
	}
	.kv__cta {
		height: 58px;
		font-size: 20px;
	}
	.kv__info {
		flex-wrap: wrap;
		gap: 12px 18px;
		padding: 14px 16px;
		border-radius: 22px;
	}
	.kv-info__item {
		font-size: 18px;
	}
	.kv-info__sep {
		display: none;
	}
}
@media (max-width: 520px) {
	.kv__inner {
		padding: 28px 0 170px;
	}
	.kv__cta {
		width: 100%;
		height: 56px;
		font-size: 19px;
	}
	.kv__info {
		bottom: 18px;
	}
	.kv-info__item {
		width: 100%;
		justify-content: center;
	}
}
/* --------------------------------
   INFO SECTION（デザイン付き標準セクション）
-------------------------------- */
.info-section {
	border: 3px solid #27ae60;
	border-radius: 25px;
	max-width: 960px;
	margin: 0px auto 50px auto;
	background: #fff;
	overflow: hidden;
}
/* タイトル帯（上部のジグザグ） */
.section-header {
	background: #27ae60;
	color: #fff;
	text-align: center;
	position: relative;
	padding: 1px 0;
	font-weight: 700;
	font-size: 20px;
}
.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: 4px;
}
.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: 17px;
		padding: 1px 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;
	}
}
/* =========================================================
   Ticket section (Responsive fixed)
========================================================= */
.ticket {
	padding: 36px 0 44px;
}
.ticket__wrap {
	width: min(var(--max), 92vw);
	margin: 0 auto;
	background: var(--ticket-panel);
	border-radius: var(--radius-xl);
	padding: 26px 26px 28px;
	box-shadow: var(--shadow);
	border:3px solid #27ae60;
}
.ticket__title {
	margin: 0 0 18px;
	text-align: center;
	font-size: clamp(22px, 2.6vw, 34px);
	font-weight: 700;
	letter-spacing: .04em;
	color: var(--ticket-text);
}
.ticket-list {
	display: grid;
	gap: 16px;
}
.ticket-card {
	position: relative;
	border: 3px solid #DDDDDD;
	border-radius: var(--radius-card);
	padding: 18px 18px;
	background: #fff;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr auto;
	column-gap: 18px;
	row-gap: 12px;
	align-items: center;
}
.ticket-card__tag {
	position: absolute;
	left: 14px;
	top: 12px;
	padding: 10px 16px;
	border-radius: 12px;
	color: #fff;
	font-size: 18px;
	letter-spacing: .02em;
	line-height: 1.2;
	box-shadow: 0 10px 18px rgba(0, 0, 0, .08);
	max-width: calc(100% - 28px);
	font-weight: 700;
}
.ticket-card__main {
	padding-top: 48px;
	min-width: 0;
}
.ticket-card__desc {
	margin: 0;
	color: var(--ticket-text);
	font-size: 18px;
	letter-spacing: .01em;
	line-height: 1.5;
	word-break: break-word;
	font-weight: 700;
}
.ticket-card__action {
	display: grid;
	justify-items: end;
	gap: 10px;
	padding-top: 6px;
	min-width: 240px;
}
.ticket-card__price {
	color: var(--ticket-text);
	font-weight: 700;
	white-space: nowrap;
}
.ticket-card__yen {
	font-size: 34px;
	letter-spacing: .01em;
}
.ticket-card__tax {
	font-size: 18px;
	margin-left: 4px;
	font-weight: 700;
}
.ticket-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 18px;
	border-radius: 14px;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
	background: linear-gradient(180deg, var(--btn-orange-1), var(--btn-orange-2));
	box-shadow: 0 6px 7px rgba(0, 0, 0, .14);
	border: 2px solid rgba(255, 255, 255, .35);
	transition: .15s ease;
	font-weight: 700;
}
.ticket-card__btn:hover {
	transform: translateY(-1px);
	filter: brightness(1.02);
}
/* variants */
.ticket-card--green {
	border-color: #1BAA4A;
	background: #F4FFEF;
}
.ticket-card--green .ticket-card__tag {
	background: #1BAA4A;
}
.ticket-card--blue {
	border-color: #0D6EFD;
	background: #F1F7FF;
}
.ticket-card--blue .ticket-card__tag {
	background: #0D6EFD;
}
.ticket-card--purple {
	border-color: #8B4ACB;
	background: #F6ECFF;
}
.ticket-card--purple .ticket-card__tag {
	background: #8B4ACB;
}
/* Ticket Responsive */
@media (max-width: 760px) {
	.ticket__wrap {
		padding: 22px 16px 22px;
	}
	.ticket-card {
		grid-template-columns: 1fr;
		padding: 16px;
	}
	.ticket-card__action {
		min-width: 0;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		padding-top: 0;
	}
	.ticket-card__yen {
		font-size: 30px;
	}
	.ticket-card__tax {
		font-size: 16px;
	}
	.ticket-card__btn {
		height: 46px;
		padding: 0 14px;
	}
	.ticket-card__tag {
		font-size: 16px;
		border-radius: 10px;
		padding: 9px 12px;
	}
	.ticket-card__desc {
		font-size: 16px;
	}
}
@media (max-width: 520px) {
	.ticket {
		padding: 28px 0 34px;
	}
	.ticket-card__main {
		padding-top: 46px;
	}
	.ticket-card__action {
		flex-direction: column;
		align-items: stretch;
	}
	.ticket-card__btn {
		width: 100%;
		height: 48px;
	}
}
/* =========================
   Benefit (Title + Ribbon + Note + Grid)
========================= */
.benefit {
	/* background: #FFE11A; */
	padding: 40px 0 56px;
}
/*  C{[g */
.benefit__frame {
	width: min(960px, 94vw);
	margin: 0 auto;
	padding: 6px;
	border-radius: 28px;
	background: linear-gradient(135deg, #00ff66, #00cfff, #8b5cff, #ff66cc, #ffb347, #ffff66);
}
/* pl */
.benefit__panel {
	background: #fff;
	border-radius: 22px;
	padding: 22px;
}
/* ^Cg */
.benefit__title {
	display: grid;
	place-items: center;
	margin: 6px 0 10px;
}
.benefit__title img {
	width: auto;
	height: auto;
	display: block;
	/* Yikj */
	image-rendering: -webkit-optimize-contrast;
}
/* { */
.benefit__ribbon {
	display: grid;
	place-items: center;
	margin: 8px 0 8px;
}
.benefit__ribbon img {
	width: auto;
	height: auto;
	display: block;
	image-rendering: -webkit-optimize-contrast;
}
/* eLXg */
.benefit__note {
	margin: 10px18px;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	color: #111;
}
/* 2JiTJ[hj */
.benefit__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	align-items: start;
}
.benefit__item {
	margin: 0;
}
.benefit__item img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 16px;
	/* box-shadow: 0 10px 24px rgba(0,0,0,.12); */
}
/* SPFc1J */
@media (max-width: 760px) {
	.benefit {
		padding: 28px 0 0px;
	}
	.benefit__frame {
		padding: 5px;
		border-radius: 24px;
	}
	.benefit__panel {
		padding: 16px;
		border-radius: 18px;
	}
	.benefit__note {
		font-size: 13px;
		margin-bottom: 14px;
	}
	.benefit__grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	/* ^Cg */
	.benefit__title img {
		width: 100%;
	}
	/* { */
}
.benefit__ribbon img {
	width: 100%;
}
}
/* =========================
   Ticket Table (simplified tiers)
   - max-width: 900px
   - Desktop: table
   - Mobile: cards
========================= */
.ticket2 {
	background: #FFE11A;
	padding: 36px 0 44px;
}
.ticket2__wrap {
	width: min(900px, 87vw);
	margin: 20px auto 0 auto;
	/* background: #ffffff; */
	border-radius: 28px;
	padding: 24px 22px 26px;
	/* box-shadow: 0 14px 30px rgba(0,0,0,.12); */
}
.ticket2__title {
	margin: 0 0 16px;
	text-align: center;
	font-size: clamp(22px, 2.6vw, 34px);
	font-weight: 700;
	letter-spacing: .04em;
	color: #132A57;
}
/* ===== Desktop table ===== */
.ticket2__tableWrap {
	overflow: auto;
	border-radius: 18px;
	border: 1px solid rgba(0, 0, 0, .08);
	background: #fff;
}
.ticket2__table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	min-width: 820px; /* DOKiXN[j */
	color: #132A57;
}
.ticket2__table thead th {
	position: sticky;
	top: 0;
	z-index: 1;
	background: linear-gradient(0deg, #E91E63, #F44336);
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	padding: 10px 10px;
	border-bottom: 1px solid rgba(0, 0, 0, .10);
}
.ticket2__table thead th span {
	display: inline-block;
	margin-top: 2px;
	font-weight: 700;
	opacity: .8;
	font-size: 12px;
}
.ticket2__table tbody td {
	padding: 14px 12px;
	border-bottom: 1px solid rgba(0, 0, 0, .08);
	vertical-align: middle;
	font-size: 20px;
}
.ticket2__table tbody tr:last-child td {
	border-bottom: none;
}
.ticket2__table .muted {
	display: inline-block;
	margin-top: 4px;
	font-size: 12px;
	opacity: .7;
}
.ticket2__table .center {
	text-align: center;
	white-space: nowrap;
}
.ticket2__table .right {
	text-align: center;
	white-space: nowrap;
}
.ticket2__table .col-name {
	width: 360px;
	text-align: center;
}
.ticket2__table .col-change {
	width: 170px;
}
.ticket2__table .col-price {
	width: 120px;
}
.ticket2__table tbody tr.is-camera {
	background: #FFF7EA;
}
/* ===== Mobile cards ===== */
.ticket2__cards {
	display: none;
	margin-top: 14px;
	gap: 12px;
}
.ticket2__card {
	background: #e3fcff;
	border: 1px solid rgba(0, 0, 0, .10);
	border-radius: 18px;
	padding: 14px 14px 12px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .10);
}
.ticket2__card--camera {
	background: #FFF7EA;
}
.ticket2__cardTitle {
	margin: 0 0 6px;
	font-size: 18px;
	font-weight: 700;
	color: #132A57;
	text-align: center;
}
.ticket2__cardSub {
	margin: 0 0 10px;
	font-size: 12px;
	opacity: .75;
}
.ticket2__prices {
	margin: 0;
	display: grid;
	gap: 6px;
}
.ticket2__prices > div {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 10px;
	border-radius: 12px;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, .08);
}
.ticket2__prices dt {
	font-size: 12px;
	font-weight: 800;
	opacity: .85;
	margin: 0;
}
.ticket2__prices dd {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
}
.ticket2__note {
	margin: 10px 0 0;
	font-size: 12px;
	opacity: .75;
}
/* ===== Switch to cards ===== */
@media (max-width: 820px) {
	.ticket2__tableWrap {
		display: none;
	}
	.ticket2__cards {
		display: grid;
	}
}
/* Small tweaks */
@media (max-width: 520px) {
	.ticket2 {
		padding: 28px 0 34px;
	}
	.ticket2__wrap {
		padding: 0;
		border-radius: 24px;
		width: 100%;
	}
}
/* =========================
   Location Section
   - max width: 900px
   - PC: 2 columns cards
   - SP: 1 column
========================= */
.location {
	background: #ffffff;
	padding: 44px 0 54px;
	max-width: 960px;
	margin: 0 auto;
	border: 3px solid #27ae60;
	border-radius: 25px;
}
.location__wrap {
	width: min(960px, 92vw);
	margin: 0 auto;
}
.location__title {
	margin: 0 0 10px;
	text-align: center;
	font-size: clamp(22px, 2.6vw, 34px);
	font-weight: 700;
	letter-spacing: .04em;
	color: #132A57;
	width: 100%;
}
.location__lead {
	margin: 0 auto 18px;
	text-align: center;
	/* max-width: 54ch; */
	color: rgba(19, 42, 87, .78);
	font-size: 18px;
	line-height: 1.8;
}
.location__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	width: 95%;
	margin: 0 auto;
}
.loc-card {
	background: #fff;
	border: 0px solid rgba(0, 0, 0, .10);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 0px 7px rgba(0, 0, 0, .10);
	display: grid;
	grid-template-rows: auto 1fr;
	width: 90%;
	margin: 0 auto;
}
.loc-card__media {
	margin: 0;
	aspect-ratio: 16 / 10;
	background: #e9edf2;
	overflow: hidden;
}
.loc-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	image-rendering: -webkit-optimize-contrast;
}
.loc-card__body {
	padding: 14px 14px 14px;
	display: grid;
	gap: 10px;
}
.loc-card__title {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	color: #132A57;
	line-height: 1.35;
}
.loc-card__text {
	margin: 0;
	font-size: 13px;
	color: rgba(19, 42, 87, .78);
	line-height: 1.8;
}
.loc-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
}
.loc-tag {
	display: inline-flex;
	align-items: center;
	height: 26px;
	padding: 0 10px;
	border-radius: 999px;
	background: #F7F8FA;
	border: 1px solid rgba(0, 0, 0, .08);
	font-size: 12px;
	font-weight: 800;
	color: rgba(19, 42, 87, .85);
}
.loc-badge {
	display: inline-flex;
	align-items: center;
	height: 26px;
	padding: 0 10px;
	border-radius: 999px;
	background: #27AE60;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}
.loc-badge_cos {
	display: inline-flex;
	align-items: center;
	height: 26px;
	padding: 0 10px;
	border-radius: 999px;
	background: orange;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}
.loc-card__btn {
	margin-top: 2px;
	height: 44px;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	background: #D63447;
	color: #fff;
	font-weight: 600;
	letter-spacing: .02em;
	box-shadow: 0 10px 18px rgba(0, 0, 0, .14);
	border: 2px solid rgba(255, 255, 255, .35);
	transition: .15s ease;
}
.loc-card__btn:hover {
	transform: translateY(-1px);
	filter: brightness(1.02);
}
/* bottom CTA */
.location__cta {
	margin-top: 18px;
	text-align: center;
}
.location__ctaBtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 52px;
	padding: 0 22px;
	border-radius: 999px;
	background: #D63447;
	color: #fff;
	font-weight: 900;
	text-decoration: none;
	box-shadow: 0 14px 24px rgba(0, 0, 0, .16);
	border: 2px solid rgba(255, 255, 255, .35);
	transition: .15s ease;
}
.location__ctaBtn:hover {
	transform: translateY(-2px);
	filter: brightness(1.02);
}
.location__ctaNote {
	margin: 10px 0 0;
	font-size: 12px;
	color: rgba(19, 42, 87, .70);
}
/* Responsive */
@media (max-width: 820px) {
	.location__grid {
		grid-template-columns: 1fr;
		margin: 0;
	}
	.loc-card__media {
		aspect-ratio: 16 / 9;
	}
}
@media (max-width: 520px) {
	.location {
		padding: 34px 0 44px;
		width: 90%;
	}
	.location__lead {
		text-align: left;
		padding: 15px 10px;
		font-size: 12px;
		width: 85%;
		margin: 0 auto;
	}
}
/* =========================
   Participation Rules
========================= */
.rule {
	background: #FFE11A; /* y[WOF */
	padding: 56px 0;
}
.rule__inner {
	max-width: 900px;
	margin: 0 auto;
	background: #7E57C2; /* p[v */
	border-radius: 20px;
	padding: 0;
	overflow: hidden;
}
/* ZNV^Cg */
.rule__title {
	text-align: center;
	color: #fff;
	font-size: 28px;
	font-weight: 800;
	padding: 28px 16px;
}
/* fUC */
.rule__inner::after {
	content: "";
	display: block;
	height: 16px;
	background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .9) 8px, transparent 8px, transparent 16px);
}
/* g{bNX */
.rule__box {
	background: #F7F3FF;
	margin: 24px;
	border-radius: 16px;
	padding: 28px;
	color: #333;
	line-height: 1.8;
	font-size: 15px;
}
/* o */
.rule__heading {
	font-size: 18px;
	font-weight: 800;
	color: #6A1B9A;
	margin-bottom: 12px;
}
/*  */
.rule__divider {
	border: none;
	border-top: 2px dotted #C9B8EA;
	margin: 24px 0;
}
/* Xg */
.rule__list {
	padding-left: 1.2em;
}
.rule__list li {
	margin-bottom: 10px;
}
/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
	.rule {
		padding: 40px 0;
	}
	.rule__title {
		font-size: 24px;
		padding: 22px 12px;
	}
	.rule__box {
		margin: 16px;
		padding: 20px;
		font-size: 14px;
	}
	.rule__heading {
		font-size: 16px;
	}
}
/* ============================================
   参加規約セクション（rule-info）
   ============================================ */
/* 外枠全体 */
.rule-info {
	border: 3px solid #7b4acb;
	border-radius: 25px;
	max-width: 960px;
	margin: 100px auto;
	background: #fff;
	overflow: hidden;
	font-family: 'Noto Sans JP', sans-serif;
}
/* タイトルヘッダー */
.rule-header {
	background: #7b4acb;
	color: #fff;
	text-align: center;
	padding: 1px 0px;
	font-size: 20px;
	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.705rem + 0.23vw, 0.875rem);
	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.2;
	margin-bottom: 8px;
	color: #333;
	font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
}
/* サブリスト（▶︎など補足項目） */
.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: 18px;
	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: 17px;
		padding: 1px 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: 25px;
	max-width: 960px;
	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: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
	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: 15px;
	}
	.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: 10px;
	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: 30px 20px 20px 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;
}
/* ============================================
   HOW TO（過ごし方ガイド）
   ============================================ */
.howto-info {
	border: 3px solid #ff9800;
	border-radius: 8px;
	max-width: 900px;
	margin: 100px auto;
	background: #fff;
	overflow: hidden;
	font-family: 'Noto Sans JP', sans-serif;
}
/* タイトルヘッダー */
.howto-header {
	background: #ff9800;
	color: #fff;
	text-align: center;
	padding: 22px 0;
	font-size: 1.8rem;
	font-weight: 700;
	position: relative;
}
.howto-header::after {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 0;
	width: 100%;
	height: 20px;
	background: repeating-linear-gradient(-45deg, #ff9800, #ff9800 10px, transparent 10px, transparent 20px);
}
/* 内部ボックス */
.howto-box {
	background: #fff8e6;
	margin: 40px 30px;
	border-radius: 12px;
	padding: 40px 30px;
}
.howto-block {
	margin-bottom: 20px;
}
.howto-block h3 {
	font-size: 1.2rem;
	font-weight: 700;
	color: #e67e00;
	margin-bottom: 10px;
}
.howto-block p {
	font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
	line-height: 1.8;
	color: #333;
	margin-bottom: 10px;
}
/* 区切り線 */
.howto-box hr {
	border: none;
	border-top: 2px dotted #f1c27d;
	margin: 25px 0;
}
/* 強調メモ */
.howto-note {
	font-size: 0.85rem;
	color: #bf6b00;
}
/* リンク行 */
.howto-link {
	font-weight: 700;
	color: #bf6b00;
}
.howto-link a {
	color: #e67e00;
	text-decoration: underline;
}
/* タイムライン */
.howto-timeline {
	margin-top: 20px;
	border-left: 3px solid #ff9800;
	padding-left: 18px;
}
.howto-step {
	display: flex;
	gap: 16px;
	margin-bottom: 18px;
	position: relative;
}
.howto-step::before {
	content: "";
	position: absolute;
	left: -10px;
	top: 6px;
	width: 12px;
	height: 12px;
	background: #ff9800;
	border-radius: 50%;
}
.howto-time {
	min-width: 70px;
	font-weight: 700;
	color: #e67e00;
	font-size: 0.95rem;
	padding: 0 0 0 10px;
}
.howto-detail p {
	margin-bottom: 6px;
}
/* 下部まとめ */
.howto-bottom {
	margin-top: 25px;
	padding-top: 15px;
	border-top: 1px dashed #f1c27d;
}
.howto-bottom h4 {
	font-size: 1.05rem;
	color: #e67e00;
	margin-bottom: 6px;
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
	.howto-info {
		margin: 60px auto;
		width: 90%;
	}
	.howto-header {
		font-size: 1.5rem;
		padding: 18px 0;
	}
	.howto-box {
		margin: 30px 15px;
		padding: 30px 20px;
	}
	.howto-step {
		flex-direction: row;
		align-items: flex-start;
	}
	.howto-time {
		min-width: 60px;
		font-size: 0.85rem;
		padding-left: 1rem;
	}
}
/* ============================================
   参加表明セクション（entry-section）
   ============================================ */
.entry-section {
	border: 3px solid #27ae60;
	border-radius: 25px;
	max-width: 960px;
	margin: 100px auto;
	background: #fff;
	overflow: hidden;
	font-family: 'Noto Sans JP', sans-serif;
}
/* タイトルヘッダー */
.entry-header {
	background: #27ae60;
	color: #fff;
	text-align: center;
	padding: 22px 0;
	font-size: 1.8rem;
	font-weight: 700;
	position: relative;
}
.entry-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);
}
/* 内部ボックス */
.entry-box {
	background: #f3ffe9; /* うっすら黄緑 */
	margin: 40px 30px;
	border-radius: 12px;
	padding: 40px 30px;
}
/* リード文 */
.entry-lead {
	text-align: center;
	font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
	line-height: 1.8;
	margin-bottom: 30px;
	color: #333;
}
.entry-lead strong {
	color: #27ae60;
}
/* ステップ説明 */
.entry-steps {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 30px;
}
.entry-item h3 {
	font-size: 1.05rem;
	color: #0b6938;
	font-weight: 700;
	margin-bottom: 6px;
}
.entry-item p {
	font-size: clamp(0.8rem, 0.71rem + 0.45vw, 1rem);
	line-height: 1.7;
	color: #333;
}
/* テンプレ枠 */
.entry-template {
	background: #ffffff;
	border-radius: 10px;
	border: 2px dashed #27ae60;
	padding: 20px 20px;
	margin-bottom: 20px;
}
.entry-template h4 {
	font-size: 0.95rem;
	color: #27ae60;
	font-weight: 700;
	margin-bottom: 8px;
}
.entry-template p {
	font-family: 'Noto Sans JP', monospace;
	font-size: 0.9rem;
	line-height: 1.9;
	white-space: normal;
}
/* 注意文 */
.entry-note {
	font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
	color: #555;
	line-height: 1.2;
	margin-top: 10px;
}
/* レスポンシブ */
@media (max-width: 768px) {
	.entry-section {
		margin: 60px auto;
		width: 90%;
	}
	.entry-header {
		font-size: 1.5rem;
		padding: 18px 0;
	}
	.entry-box {
		margin: 30px 15px;
		padding: 14px;
	}
	.entry-template p {
		font-size: 0.85rem;
	}
	
	/* リード文 */
	.entry-lead {
	text-align: left;
		margin-bottom: 10px;
	}
}
.entry-image {
	width: 100%;
	margin: 0 auto 15px;
	text-align: center;
}
.entry-image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	border: 1px solid #27ae60;
	display: block;
} /* ============================================
   FAQセクション（faq-section）
============================================ */
.faq-section {
	border: 3px solid #ff9800;
	border-radius: 25px;
	max-width: 960px;
	margin: 100px auto;
	background: #fff;
	overflow: hidden;
}
/* タイトル */
.faq-header {
	background: #ff9800;
	color: #fff;
	text-align: center;
	padding: 1px 0px;
	font-size: 20px;
	font-weight: 700;
	position: relative;
}
.faq-header::after {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 0;
	width: 100%;
	height: 20px;
	background: repeating-linear-gradient(-45deg, #ff9800, #ff9800 10px, transparent 10px, transparent 20px);
}
/* 本文 */
.faq-box {
	background: #fff9e9;
	margin: 40px 30px;
	border-radius: 12px;
	padding: 40px 30px;
}
/* カテゴリ */
.faq-category-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: #ff9800;
	border-left: 6px solid #ff9800;
	padding-left: 12px;
	margin-bottom: 18px;
}
/* QAボックス */
.faq-item {
	margin-bottom: 18px;
	padding: 10px 16px;
	border-radius: 10px;
	background: #fff;
	border: 1px solid #ffe0b2;
}
.faq-q {
	font-size: 1rem;
	font-weight: 700;
	color: #e65100;
	margin-bottom: 6px;
}
.faq-a {
	font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
	line-height: 1.8;
	color: #333;
}
/* リンク色 */
.faq-a a {
	color: #ff9800;
	text-decoration: underline;
}
/* レスポンシブ */
@media (max-width: 768px) {
	.faq-section {
		margin: 60px auto;
		width: 92%;
	}
	.faq-header {
		font-size: 16px;
		padding: 1px 0;
	}
	.faq-box {
		margin: 30px 15px;
		padding: 30px 20px;
	}
	.faq-category-title {
		font-size: 1.1rem;
	}
	.faq-q {
		font-size: 14px;
	}
	.faq-a {
		font-size: 12px;
		line-height: 1.7;
	}
}

/* 共通ボタン（全セクションで使用可） */
.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) {
	.btn-common {
		padding: 10px 24px;
		font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
		width: 90%;
		min-width: 90%;
	}
}

/* ============================================
   アクセス情報セクション（access-info）
   ============================================ */
/* 外枠全体 */
.access-info {
	border: 3px solid #0096d6;
	border-radius: 8px;
	max-width: 960px;
	margin: 100px auto;
	background: #fff;
	overflow: hidden;
	font-family: 'Noto Sans JP', sans-serif;
}
/* タイトルヘッダー */
.access-header {
	background: #0096d6;
	color: #fff;
	text-align: center;
	padding: 1px 0;
	font-size: 20px;
	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: 0px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	margin-bottom: 28px;
}
.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: 16px;
		padding: 1px 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%;
	}
}
/* =========================================================
   Back to Top (PC only)
========================================================= */

.back-to-top{
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 9000;

  height: 48px;
  padding: 0 18px;
  border-radius: 999px;

  background: #0C3C78;
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .08em;

  border: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);

  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity .25s ease,
    transform .25s ease,
    visibility 0s linear .25s;

  -webkit-tap-highlight-color: transparent;
}

/* 表示状態 */
.back-to-top.is-show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity .25s ease,
    transform .25s ease,
    visibility 0s;
}

.back-to-top:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* SPでは非表示 */
@media (max-width: 980px){
  .back-to-top{
    display: none;
  }
}

/* motion配慮 */
@media (prefers-reduced-motion: reduce){
  .back-to-top{
    transition: none !important;
  }
}
/* =========================================================
   Ticket English Area
========================================================= */

.ticket-en{
  margin-top: 32px;
  padding: 28px 28px 32px;
  border-radius: 20px;
  background: #F7F8FA;
  border: 2px dashed #0C3C78;
}

.ticket-en__label{
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #0C3C78;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
  width: 100%;
  text-align: center;
}

.ticket-en__title{
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  color: #0C3C78;
  text-align: center;
}

.ticket-en__text{
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: #111;
}

.ticket-en__note{
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.6;
  color: #555;
}

.ticket-en__btn{
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #D63447, #E94E64);
  color: #fff;
  font-weight: 900;
  letter-spacing: .05em;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(214,52,71,.35);
  transition: transform .2s ease, box-shadow .2s ease;
  margin: 0 auto;
}

.ticket-en__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(214,52,71,.45);
}

/* バナー使う場合 */
.ticket-en__banner img{
  margin-top: 16px;
  max-width: 100%;
  border-radius: 14px;
  display: block;
}

/* SP調整 */
@media (max-width: 768px){
  .ticket-en{
    padding: 22px 18px 24px;
  }

  .ticket-en__title{
    font-size: 20px;
  }
}
/* ========== Gallery (First event) ========== */
.gallery-slider{
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.gallery-slider__btn{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.gallery-slider__frame{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  background: #f7f8fa;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slider__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.gallery-thumbs__item{
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  padding: 0;
  cursor: pointer;
}

.gallery-thumbs__item img{
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
}

@media (max-width: 520px){
  .gallery-slider{
    grid-template-columns: 1fr;
  }
  .gallery-slider__btn{
    display: none;
  }
  .gallery-thumbs__item img{
    height: 64px;
  }
}

/* ===== Gallery slider (full) ===== */
.gallery-slider__frame{
  position: relative;
  overflow: hidden;
}

.gallery-slider__track{
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .45s ease;
  will-change: transform;
}

.gallery-slider__slide{
  flex: 0 0 100%;
  margin: 0;
}

.gallery-dots{
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.gallery-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,.15);
  background: #fff;
  cursor: pointer;
  padding: 0;
}
.gallery-dot.is-active{
  background: #000;
  border-color: #000;
}

.gallery-thumbs__item.is-active{
  outline: 3px solid rgba(0,0,0,.25);
  outline-offset: 2px;
}
/* ===== Gallery fade slider ===== */
.gallery-slider__frame{
  position: relative;
  overflow: hidden;
}

/* trackは重ねるための入れ物にする */
.gallery-slider__track{
  position: relative;
  width: 100%;
  height: 100%;
}

/* スライドを全部重ねる */
.gallery-slider__slide{
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}

/* アクティブだけ表示 */
.gallery-slider__slide.is-active{
  opacity: 1;
  pointer-events: auto;
}

/* 画像はフレームにフィット */
.gallery-slider__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ドット・サムネはそのまま使える */




/* ================================
   Guests Section (outer frame aligned)
   - info-sectionの見た目を踏襲（独自クラス）
================================ */
.guests{
  border: 3px solid #F44336;    /* info-section相当 */
  border-radius: 25px;          /* info-section相当 */
  max-width: 960px;             /* info-section相当 */
  margin: 0 auto 50px auto;     /* info-section相当 */
  background: #fff;
  overflow: hidden;
}

/* タイトル（赤ヘッダーは維持） */
.guests__head{
  background: #F44336;
  color:#fff;
  text-align:center;
  padding: 16px 18px;           /* info-sectionの高さ感に寄せて少し薄く */
}

/* 島島（白斜線帯） */
.guests__stripe{
  height: 20px;                 /* info-sectionのジグザグ高さに合わせる */
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, .95) 0 12px, rgb(255 255 255 / 0%) 12px 24px);
  background-color: #F44336;     /* 赤の上に白斜線 */
}

/* 内容ボックス：info-box相当の“内側カード” */
.guests__inner{
             /* info-box相当 */
  margin: 40px 30px;            /* info-box相当 */
  border-radius: 12px;          /* info-box相当 */
             /* info-box相当 */
}

/* レスポンシブ：info-section相当 */
@media (max-width: 768px){
  .guests{
    margin: 60px auto;
    width: 90%;
  }
  .guests__head{
    padding: 14px 14px;
  }
  .guests__inner{
    margin: 30px 15px;
    padding: 30px 20px;
  }
}

/* ---- グリッド：PCは3列固定（要望に合わせて固定） ---- */
.guests__grid{
  display:grid;
  gap: 18px;
  grid-template-columns: 1fr; /* SP */
}

/* PCで3列 */
@media (min-width: 900px){
  .guests__grid{ grid-template-columns: repeat(3, 1fr); }
}
/* タブレットは2列 */
@media (min-width: 640px) and (max-width: 899px){
  .guests__grid{ grid-template-columns: repeat(2, 1fr); }
}

/* ---- カード ---- */
.guestCard{
  border: 2px solid rgba(244,67,54,.55); /* 赤枠 */
  border-radius: 16px;
  padding: 14px;
  background:#fff;
  display:flex;
  flex-direction: column;
  min-height: 260px;
}

/* 画像（スクショの横長） */
.guestCard__media{
  border-radius: 14px;
  overflow:hidden;
  /* background:#e8f7ee; */
  /* border: 1px solid rgba(39,174,96,.22); */
}
.guestCard__img{
  width:100%;
  /* aspect-ratio: 16 / 7; */ /* 横長固定 */
  object-fit: cover;
  display:block;
}

.guestCard__content{
  text-align:center;
  padding-top: 12px;
}

.guestCard__name{
  margin: 8px 0 6px;
  font-size: 16px;
  font-weight: 700;
  color:#111;
}

.guestCard__meta{
  margin: 0 0 8px;
  font-size: 13px;
  color:#333;
  opacity:.9;
}

.guestCard__slot{
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 900;
  color:#111;
}

/* 下揃えで整える（汚さ除去の核心） */
.guestCard__links{
  margin-top: auto;
  display:flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 8px;
}

/* ボタン（丸/ピル） */
.guestBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 2px solid rgba(39,174,96,.35);
  background:#fff;
  color:#0b6938;
  text-decoration:none;
  font-weight: 900;
  font-size: 13px;
}

/* Xは丸ボタン */
.guestBtn--x{
  width: 36px;
  padding: 0;
  border-radius: 999px;
}

.guestBtn:hover{
  border-color: rgba(39,174,96,.75);
}

/* 注記 */
.guests__note{
  margin: 18px 0 0;
  text-align:center;
  font-size: 12px;
  color:#111;
  opacity:.85;
}

/* SP微調整 */
@media (max-width: 640px){
  .guests__inner{padding: 0;}
  .guestCard{ padding: 12px; }
}
/* Icon buttons */
.guestIconBtn{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F44336;
  color: #ffffff;              /* SVGは currentColor で染まる */
  text-decoration: none;
}

.guestIcon{
  width: 23px;
  height: 24px;
  fill: currentColor;
}

/* ================================
   Meeting Section (standalone / sky-blue)
================================ */
.meeting{
  --meet-accent: #FF5722;      /* メイン水色 */
  --meet-accent-dark: #ff1100; /* 文字/濃い水色 */
  --meet-bg: #fffbea;          /* 内側ボックス（水色薄） */
  --meet-border: #FF5722;      /* 外枠 */
  --meet-text: #111;

  border: 3px solid var(--meet-border);
  border-radius: 25px;
  max-width: 960px;
  margin: 0 auto 50px auto;
  background: #fff;
  overflow: hidden;
}

/* ヘッダー帯 */
.meeting__head{
  background: var(--meet-accent);
  color: #fff;
  text-align: center;
  padding: 16px 18px;
}
.meeting__title{
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 30px);
  letter-spacing: .05em;
}

/* 島島（白斜線帯） */
.meeting__stripe{
  height: 20px;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.95) 0 12px,
      rgba(255,255,255,0) 12px 24px
    );
  background-color: var(--meet-accent);
}

/* 内容ボックス（info-box相当） */
.meeting__inner{
  background: var(--meet-bg);
  margin: 40px 30px;
  border-radius: 12px;
  padding: 40px 30px;
}

/* リード */
.meeting__lead{
  margin: 0 0 18px;
  color: #333;
  line-height: 1.7;
  font-size: clamp(0.85rem, 0.78rem + 0.35vw, 1rem);
}

/* ブロック（ラベル＋本文） */
.meeting__block{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

/* ピル */
.meeting__badge{
  background: var(--meet-accent);
  color: #fff;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 9999px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* 本文 */
.meeting__content{
  flex: 1;
  min-width: 240px;
}
.meeting__h3{
  color: var(--meet-accent-dark);
  font-size: 1.1rem;
  margin: 4px 0 6px;
  font-weight: 700;
}
.meeting__text{
  margin: 0;
  color: #333;
  line-height: 1.7;
  font-size: clamp(0.8rem, 0.72rem + 0.35vw, 1rem);
}

/* 時刻（強調） */
.meeting__time{
  margin: 0 0 8px;
  font-weight: 700;
  color: #554141; /* 文字は締め色（必要なら meet-accent-dark に変更OK） */
}

/* 区切り */
.meeting__hr{
  border: none;
  border-top: 2px dotted rgba(0,0,0,.35);
  margin: 20px 0;
}
.meeting__subhr{
  border-top: 2px dotted rgba(0,0,0,.22);
  margin: 14px 0;
}

/* 注記 */
.meeting__note{
  margin: 18px 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--meet-text);
  opacity: .85;
}

/* SP */
@media (max-width: 768px){
  .meeting{
    margin: 60px auto;
    width: 90%;
  }
  .meeting__inner{
    margin: 30px 15px;
    padding: 30px 20px;
  }
  .meeting__block{
    flex-direction: column;
    gap: 10px;
  }
  .meeting__badge{
    width: 100%;
    text-align: center;
  }
}
/* ---- 画像ブロック ---- */
.meeting__media{
  margin: 0 0 14px;
  border-radius: 14px;
  overflow: hidden;
  /* border: 2px solid rgba(91,190,242,.35); */ /* 水色 */
  background: #fff;
}

.meeting__media img{
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;   /* 横長固定 */
  object-fit: cover;
}
