<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* =============================================================
    common 共通
============================================*/
:root {
	--color_BLK: #231816;
	--color_YLW: #fff100;
	--color_RED: #eb6100;
	--color_lBLU: #3fbdd6;
	--gap_96px: clamp(32px, 12vw, 96px);
	--gap_80px: clamp(27px, 10vw, 80px);
	--gap_64px: clamp(21px, 8vw, 64px);
	--gap_48px: clamp(16px, 6vw, 48px);
	--gap_32px: clamp(11px, 4vw, 32px);
	--gap_24px: clamp(8px, 3vw, 24px);
	--gap_16px: clamp(5px, 2vw, 16px);
	--gap_8px: clamp(3px, 1vw, 8px);
}
body {
	width: 100%;
	position: relative;
}

body,figure,h1,h2,h3,h4,h5,h6,li,ol,p,ul,dl,dt,dd {
	margin: 0;
	padding: 0;
}
h1,h2,h3,h4,h5,h6,p {
	font-size: inherit;
	font-weight: normal;
}
li,ol,ul {
	list-style-type: none;
}
table {
	width: 100%;
}

#page {
	font-size: clamp(14px, 2.8vw, 18px);
	color: var(--color_BLK);
	font-family: "Noto Sans CJK JP", Lato, "Noto Sans JP", "游ゴシック Medium", 游ゴシック体, "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.4;
	margin: 0 auto;
	max-width: 1920px;
	background-color: var(--color_lBLU);
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt" 1;
	position: relative;
	/* 背景fixed　safari対応 ←　これ使う場合は必要*/
}
#page * {
	box-sizing: border-box;
}
#page img {
	width: 100%;
	border: 0;
	vertical-align: top;
}
#page a {
	transition: all 0.3s;
	text-decoration: none;
}
#page a:not(.g_navi a):hover {
	opacity: 0.7;
}
#page a[tabindex*="-1"] {
	pointer-events: none;
}
#page a[tabindex*="-1"]:hover {
	opacity: 1;
}
#page em {
	font-style: normal;
	font-weight: bold;
}
@media screen and (min-width: 768px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}

.serif {
	font-family: 'Shippori Mincho', serif;
	font-weight: 600;
}
.arial {
	font-family: Arial;
}

.flex {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.flex.col2 .flex_item {
    width: calc(96% / 2);
}
@media screen and (max-width: 767px) {
    .flex.col2 .flex_item {
        width: clamp(180px, 100%, 450px);
        margin: 0 auto;
    }
}

#content {
	padding: 0 0 var(--gap_48px);
	overflow: hidden;
}
#content::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    border-right: 0;
    border-bottom: 0;
    border-top: solid min(30vw, 400px) transparent;
    border-left: solid min(100vw, 800px) var(--color_YLW);
}
.inner_wrap {
	padding: 0 var(--gap_48px);
	margin: 0 auto;
	max-width: 1450px;
}
.ib {
	font-size: inherit !important;
	display: inline-block;
}


.btn_wrap {
	text-align: center;
}
.btn {
	font-size: 1.25em;
	color: #fff;
	font-weight: bold;
	padding: 0.8em 1em;
	margin: 0 auto;
	line-height: 1.2;
	border-radius: 0.6em;
	display: inline-block;
}
.btn_area {
    text-align: center;
    padding-bottom: var(--gap_16px);
    right: var(--gap_16px);
    z-index: 500;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    flex-direction: column;
}
#btn_pagetop {
	font-size: 0em;
	margin-top: var(--gap_16px);
}
#btn_pagetop a {
	width: clamp(50px, 12vw, 90px);
	display: block;
	background: url(/event/reptiles2025/images/page_top.png) center center/contain no-repeat;
	padding-top: calc(172 / 172 * 100%);
}
#btn_pagetop a:hover {
	background: url(/event/reptiles2025/images/page_top_on.png) center center/contain no-repeat;
}
.btn_icon {
	font-size: clamp(1.6em,4.6vw,2.4em);
	line-height: 1;
	width: clamp(50px, 12vw, 90px);
	height: clamp(50px, 12vw, 90px);
	margin-top: var(--gap_16px);
	background-color: #fff;
    border-radius: 100px;
	border: solid 1px #268d9f;
	display: -webkit-flex;
	display: flex;
    justify-content: center;
    align-items: center;
}
.btn_icon a {
	color: #268d9f;
}
@media screen and (min-width: 768px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
	.mob {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.pc {
		display: none;
	}
}
@media screen and (min-width: 400px) {
	.btn_icon {
		display: none;
	}
}

/* =============================================================
    【g_navi】ブロック ※グローバルナビ
============================================*/
#p_header,
#p_header2 {
	position: sticky;
	top: 0;
	z-index: 1000;
}
.menu_wrap {
	background-color: rgb(27 135 157 / 95%);;
	box-shadow: 0 0 var(--gap_16px) #1b879d;
}
.g_navi_wrap.flex {
	margin: 0 auto;
	max-width: 1350px;
	justify-content: center;
}
.g_navi_wrap *,
.g_navi_wrap *::before,
.g_navi_wrap *::after {
	border-color: #fff !important;
}
.g_navi_wrap li {
	font-size: clamp(14px,1.6vw,20px);
	width: calc(100% / 8);
	text-align: center;
	border-right: solid 1px;
}
.g_navi_wrap li &gt; div {
	width: 100%;
}
.g_navi_wrap li:first-child {
	border-left: solid 1px;
}
.g_navi_wrap a {
	display: block;
	width: 100%;
	position: relative;
}
.g_navi_wrap a:not(.nolink)::after {
	content: "";
	position: absolute;
	width: 100%;
	border-bottom: solid 1px;
	left: 0;
	bottom: -2px;
	/*横方向0で非表示にする*/
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	/*中央を基点にアニメーション*/
	-webkit-transform-origin: center top;
	transform-origin: center top;
	/*アニメーションの速度設定*/
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.g_navi_wrap a:not(.nolink):hover {
	background-color: #74b4b2;
}
.g_navi_wrap span {
	font-weight: bold;
	color: #fff;
	line-height: 1;
	padding: var(--gap_16px) 8px;
	display: inline-block;
}
.g_navi_wrap span::after {
    content: attr(data-text) "";
    font-size: clamp(10px,1.6vw,12px);
    font-weight: normal;
    margin-top: var(--gap_8px);
    display: block;
}
.g_navi a[tabindex*="-1"] {
	position: relative;
}
.g_navi a[tabindex*="-1"]::after {
	/* content: "coming soon"; */
	content: "準備中";
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-10deg);
	opacity: 1;
	color: #fff;
	text-shadow: 0 0 0.2em #1b879d, 0 0 0.2em #1b879d, 0 0 0.2em #1b879d, 0 0 0.3em #1b879d, 0 0 0.3em #1b879d;
}
.g_navi a[tabindex*="-1"] span {
	color: var(--color_lBLU);
}
@media screen and (min-width: 1000px) {
	.g_navi_wrap a:hover::after {
		/*横方向等倍まで拡大*/
		transform: scale(1, 1);
	}
	/* .trigger_wrap {
		display: none;
	}
	.g_navi {
		display: block !important;
	} */
}
@media screen and (max-width: 999px) {
	.g_navi_wrap li {
		font-size: clamp(13px,2.8vw,20px);
		width: calc(100% / 4);
		border-bottom: solid 1px;
	}
	.g_navi_wrap li:nth-child(5) {
		border-left: solid 1px;
	}
}
@media screen and (max-width: 399px) {
	.g_navi_wrap li {
		width: calc(100% / 3);
	}
	.g_navi_wrap li:nth-child(4) {
		border-left: solid 1px;
	}
	.g_navi_wrap li:nth-child(5) {
		border-left: 0;
	}
	.g_navi_wrap li.navi_sns {
		display: none;
	}
}
/* @media screen and (max-width: 1279px) {
	.trigger_wrap {
		text-align: right;
		padding: 0 16px;
		position: relative;
		z-index: 1010;
	}
	.btn_trigger {
		font-size: 22px;
		color: #fff;
		background-color: transparent;
		border: 0;
		position: relative;
		height: 40px;
		width: 40px;
	}
	.btn_trigger i {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.btn_trigger .menu_close,
	.btn_trigger.is-opend .menu_bar {
		display: none;
	}
	.btn_trigger.is-opend .menu_close {
		display: block;
	}
	.g_navi {
		width: 100%;
		margin-top: 40px;
		position: absolute;
		top: 0;
		max-height: 60vh;
		overflow-y: scroll;
		background-color: rgb(123 193 211 / 95%);
		box-shadow: 0 0 var(--gap_8px) #275a58;
		z-index: -1;
		display: none;
		-ms-overflow-style: none;
		スクロールバー非表示（IE・Edge）
		scrollbar-width: none;
		スクロールバー非表示（Firefox）
	}
	.g_navi::-webkit-scrollbar {
		スクロールバー非表示（Chrome・Safari）
		display: none;
	}
	.g_navi_wrap.flex {
		flex-direction: column;
		padding: 20px 16px;
	}
	.g_navi_wrap li {
		border: 0 !important;
		width: 100%;
		max-width: 400px;
		margin: 0 auto !important;
	}
	.g_navi_wrap li:not(:last-child) {
		border-bottom: dotted 1px #fff !important;
	}
	.g_navi_wrap span {
		padding: 24px 12px;
	}
} */
/* =============================================================
    【main】ブロック　
============================================*/
#main {
	position: relative;
	letter-spacing: 1px;
	/* background: url(/event/reptiles2025/images/kv_lizard.png) right top/1100px no-repeat,
		url(/event/reptiles2025/images/bg_wave.png) center -70px no-repeat; */
	position: relative;
}
.mainTtile_wrap {
	font-size: 0;
	max-width: 1920px;
}
.mainTtile {
	background: url(/event/reptiles2025/images/main.jpg) center top/contain no-repeat;
	padding-top: calc(1300 / 1920 * 100%);
}

.end_message {
	padding: var(--gap_48px) 0;
}
.sec_wrap {
	padding-top: var(--gap_32px);
    padding-bottom: var(--gap_64px);
}
.secTitle_wrap {
	position: relative;
	z-index: 0;
}
.secTitle {
    font-size: clamp(20px,9vw,78px);
    font-weight: bold;
    line-height: 1;
    color: var(--color_YLW);
    margin-bottom: calc(var(--gap_8px) * -1);
	margin-left: var(--gap_24px);
}
.secTitle_text {
	font-size: clamp(18px,5.2vw,32px);
	font-weight: bold;
	line-height: 1.2;
	color: var(--color_YLW);
	margin-bottom: var(--gap_32px);
	padding-left: var(--gap_16px);
	border-bottom: solid 1px;
	border-left: solid var(--gap_24px) var(--color_YLW);
}

.baseTable,
.baseTable *,
.ticketBnr {
	border-color: var(--color_lBLU) !important;
}
.baseTable {
	border-spacing: 0;
	border-collapse: collapse;
	border-right: solid 1px;
	border-bottom: solid 1px;
	background-color: #fff;
	position: relative;
	z-index: 10;
	box-shadow: 0 0 var(--gap_24px) #1b879d;
}
.baseTable::after {
	content: "";
	position: absolute;
	background: url(/event/reptiles2025/images/dot02.png) center center/contain no-repeat;
	bottom: max(-10vw,-100px);
	right: max(-10vw,-100px);
	width: clamp(100px,34vw,200px);
	height: clamp(100px,34vw,200px);
	z-index: -1;
}

.baseTable th {
	font-size: 1.1em;
	font-weight: bold;
	width: 220px;
	border-left: solid 1px;
	border-top: solid 1px;
	background-color: #f1f6f7;
}
.baseTable td {
	line-height: 1.8;
	border-left: dotted 1px;
	border-top: solid 1px;
}
.baseTable th,
.baseTable td {
	padding: var(--gap_32px);
}

.baseTable a {
	color: var(--color_BLK);
	text-decoration: underline !important;
}
.baseTable .emXL {
	font-size: clamp(24px,4.6vw,48px);
	padding: 0 0 0 8px;
}
.baseTable .emL {
	font-size: clamp(20px,3.6vw,32px);
	line-height: 1.2;
	display: block;
}
.baseTable .emM {
	font-size: clamp(20px,3.2vw,26px);
	padding: 0 0 0 8px;
}
.baseTable .em01 {
	padding: 4px 8px;
	margin: 4px 16px;
	border: solid 1px;
	display: inline-block;
}
.baseTable small.ml {
	font-size: 0.9em;
	margin-left: 8px;
}

.noteList {
	font-size: 1.1em;
	font-weight: bold;
	text-align: left;
}
.noteList li {
	margin-top: var(--gap_16px);
}
.noteList em {
	padding-bottom: 2px;
	border-bottom: dotted 5px;
}
.noteList i {
	margin-right: 4px;
}
@media screen and (max-width: 767px) {
	.baseTable {
		border: 0;
	}
	.baseTable th,
	.baseTable td {
		text-align: center;
		display: block;
		width: 100%;
		border-left: 0;
	}
	.baseTable .emL {
		margin-bottom: var(--gap_16px);
	}
}
@media screen and (max-width: 479px) {
	.page_home .noteList {
		text-align: center;
	}
}

/* =============================================================
    【movie】ブロック　※Brightecoveの動画表示
============================================*/
.movie_wrap {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	border: 3px solid var(--color_BLK);
	padding: 0.8em;
}
#movie {
	position: relative;
	width: 100%;
	padding-top: calc(9 / 16 * 100%);
	margin: 0 auto;
	overflow: hidden;
}
.tvo-video {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
}
#cm_movie {
	margin-top: var(--gap_24px);
	/* margin-bottom: calc(var(--gap_48px) * -1); */
}
.cm_movie_inner .movie_wrap {
	width: 48%;
	padding: 0;
	margin: 0 auto var(--gap_48px);
	border: solid 2px var(--color_BLK);
    box-shadow: 0 0 var(--gap_16px) #bbb500;
}
/* @media screen and (max-width: 1919px) {
	#cm_movie {
		margin-top: var(--gap_80px);
	}
} */
@media screen and (max-width: 999px) {
	.cm_movie_inner .movie_wrap {
		width: 100%;
		max-width: 768px;
		margin: 0 auto var(--gap_48px);
	}
}

/* =============================================================
    【tvo-report】ブロック　※クラブTVO記事読み込み
============================================*/
.tvo-report_wrap {
	position: relative;
	z-index: 100;
}
.tvo-report {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.tvo-report-article {
	width: calc(calc(100% - 2% * 3) / 4);
	background-color: #fff;
	padding: 10px 10px 10px;
	box-shadow: 0 0 var(--gap_8px) #bbb500;
}
.tvo-report-article a {
	color: var(--color_BLK);
}
.tvo-report-article time {
	font-size: 0.8em;
	color: var(--color_lGRN);
	line-height: 1.2;
	padding: 0.4em 0 0.2em;
	display: inline-block;
}
.tvo-report-title {
	line-height: 1.2;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	/* 制限したい行数を指定 */
}
.btn_report_more {
	font-size: 1em;
	color: var(--color_BLK);
	padding: 0.5em 0.8em;
	margin: var(--gap_32px) auto 0;
	line-height: 1;
	background-color: #fff;
	border-radius: var(--gap_8px);
	display: inline-block;
}
@media screen and (max-width: 1023px) {
	.tvo-report-article {
		width: calc(calc(100% - 4% * 1) / 2);
	}
	.tvo-report-article:nth-of-type(n + 3) {
		margin-top: 4%;
	}
}
@media screen and (max-width: 479px) {
	.tvo-report-article {
		width: 100%;
		max-width: 350px;
		margin: 4% auto 0;
	}
}

/* =============================================================
    【outline】ブロック　
============================================*/
.outlineInfo small {
	line-height: 1.4;
	display: block;
}
.outlineInfo small:first-of-type {
	margin-bottom: var(--gap_8px);
}

.notice_parking {
	padding: var(--gap_24px) var(--gap_24px);
	margin-top: var(--gap_16px);
	max-width: 900px;
	background-color: #fffdd3;
}
.notice_parking * {
	line-height: 1.3;
}
.notice_parking_head {
	font-size: 1.1em;
	font-weight: bold;
	padding-bottom: calc(var(--gap_8px) / 2);
	margin-bottom: var(--gap_16px);
	border-bottom: dotted calc(var(--gap_8px) / 2);
}
.parking_pr {
	font-size: 1.2em;
	font-weight: bold;
	color: var(--color_RED);
	margin-bottom: var(--gap_16px);
}
.parking_price_wrap {
	padding: var(--gap_24px) var(--gap_24px);
	margin: var(--gap_16px) 0;
	background-color: #fff;
}
.parking_price em {
	font-size: 1.5em;
	font-weight: bold;
	color: var(--color_lBLU);
	display: inline-block;
}
.parking_price em.mark {
	background: #FFF;
	background: linear-gradient(180deg,#fff 0%, #fff 70%, var(--color_YLW) 70%, var(--color_YLW) 100%);
}
.parking_price small {
	display: inline;
}
.accordion_text_item {
	margin-top: var(--gap_16px);
	padding-left: 1em;
}
.accordion_text_item em {
	line-height: 1;
	color: var(--color_lBLU);
	margin: 0 0 var(--gap_8px) -1em;
	padding: 0 0 0 var(--gap_8px);
	border-left: solid var(--gap_8px);
	display: inline-block;
}
.accordion_text_item mark {
	text-decoration: underline;
	background-color: unset;
}
.accordion_text_item a {
	text-decoration: none !important;
}
.accordion_text_item small {
	line-height: 1.2;
	margin-top: var(--gap_8px);
}
.accordion_text_item .notice li {
	line-height: 1.2;
    list-style: disc;
    margin-left: 1em;
}
.accordion_text_item .notice li:not(:first-of-type) {
	margin-top: calc(var(--gap_8px) / 2);
}
@media screen and (max-width: 767px) {
	.parking_price_wrap small.notice {
		text-align: justify;
	}
	.parking_price_wrap small.notice br {
		display: none;
	}
	.parking_price_wrap small.notice .ib {
		display: inline;
	}
}

/* =============================================================
    【exhibition】ブロック　
============================================*/
td.infoDetail {
	padding: 0;
}
td.infoDetail div {
	padding: var(--gap_32px);
}
td.infoDetail div:not(:last-child) {
	border-bottom: solid 1px;
}
td.infoDetail .emL {
	margin-bottom: var(--gap_16px);
}
.exhibitionInfo small {
	line-height: 1.4;
	display: inline-block;
}

.btn_entry {
	width: 90%;
	max-width: 850px;
	margin: var(--gap_80px) auto 0;
	border: solid 2px #fff;
	box-shadow: 0 0 var(--gap_24px) #1b879d;
}
.btn_entry a {
	text-align: center;
	padding: 32px 84px;
	background-color: var(--color_lGRN);
	display: block;
	position: relative;
}
.btn_entry a::after {
	font-size: clamp(14px,6vw,2em);
	color: #fff;
	content: "\f138";
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
	font-weight: 900;
}
.btn_entry img {
	max-width: 543px;
}
.entry_closed:hover {
	opacity: 1 !important;
}
.stanbyText {
	display: none;
}
.btn_entry.stanby,
.btn_entry.stanby a {
	position: relative;
}
.btn_entry.stanby a {
	pointer-events: none;
	cursor: unset;
	opacity: 0.2;
	position: relative;
}
.btn_entry.stanby .stanbyText {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color_lBLU);
	display: -webkit-flex;
	display: flex;
	align-items: center;
}
.btn_entry.stanby .stanbyText p {
	font-size: clamp(18px,3.2vw,28px);
	font-weight: bold;
	color: #fff;
	line-height: 1.2;
	margin: 0 auto;
	padding: 0 var(--gap_24px);
	text-shadow: 0 0 0.2em #1b879d, 0 0 0.2em #1b879d, 0 0 0.3em #1b879d, 0 0 0.3em #1b879d, 0 0 0.3em #1b879d;
	display: inline-block;
	position: relative;
	z-index: 999;
}
.btn_entry.stanby .stanbyText p em {
	font-size: 1.2em;
	color: var(--color_BLK);
	text-shadow: 0 0 0.2em #fff, 0 0 0.2em #fff, 0 0 0.3em #fff, 0 0 0.3em #fff, 0 0 0.3em #fff;
}
@media screen and (max-width: 1023px) {
	.btn_entry a::after {
		right: 3vw;
	}
}
@media screen and (max-width: 767px) {
	.btn_entry a {
		padding: 32px 24px;
	}
	.btn_entry img {
		width: clamp(50px,52vw,302px) !important;
	}
}
@media screen and (max-width: 479px) {
	.btn_entry.stanby a::after {
		right: 20px;
	}
}

/* =============================================================
    【ticket】ブロック　
============================================*/
.ticketInfo.baseTable th,
.ticketInfo.baseTable td {
	font-size: 1.4em;
}
.ticketInfo.baseTable td {
	text-align: center;
}
.ticketInfo .pc td {
	font-weight: bold;
}
.noteText {
	margin-top: 8px;
}
.ticketLink {
	padding-top: var(--gap_32px);
	position: relative;
	z-index: 10;
}
/* .ticketLink::after {
    content: "";
    position: absolute;
    background: url(/event/reptiles2025/images/dot02.png) center center / contain no-repeat;
    bottom: max(-20vw, -30px);
    right: max(-10vw, -100px);
    width: clamp(100px, 34vw, 200px);
    height: clamp(100px, 34vw, 200px);
    z-index: -1;
} */
.ticketLink a,
.ticketLink a span {
	color: var(--color_BLK);
	text-decoration: underline !important;
}
.ticketBnr.flex {
	column-gap: 4%;
	justify-content: center;
	padding: 0 var(--gap_32px) 0;
	/* border: solid 1px;
	border-top: 0;
	background-color: #fff; */
}
.ticketBnr_wrap {
	width: calc(88% / 4);
	margin-top: var(--gap_32px);
}
.ticketBnr_wrap a img {
	display: block;
}
.ticketBnrTitle {
	font-size: 1.25em;
	font-weight: bold;
	padding: 8px 0;
	line-height: 1.3;
}
.ticketBnr_wrap small {
	display: block;
}
.codeNum {
	font-size: clamp(14px,2.2vw,16px);
	padding-top: var(--gap_8px);
}
.ticketUrl {
	font-size: 14px;
	padding-top: 4px;
	word-break: break-all;
}
.btn_onlineTicket {
	text-align: center;
	padding: var(--gap_48px) 0 10px;
}
.btn_onlineTicket a img {
	width: 21vw !important;
	max-width: 300px;
}
.ticketLink .noteText {
	text-align: center;
	margin-top: var(--gap_32px);
}
@media screen and (min-width: 1024px) {
	.ticketBnr_wrap:nth-of-type(2) a img,
	.ticketBnr_wrap:nth-of-type(3) a img,
	.ticketBnr_wrap:nth-of-type(4) a img {
		margin-top: 1.6vw;
	}
}
@media screen and (min-width: 1450px) {
	.ticketBnr_wrap:nth-of-type(2) a img,
	.ticketBnr_wrap:nth-of-type(3) a img,
	.ticketBnr_wrap:nth-of-type(4) a img {
		margin-top: 22px;
	}
}
@media screen and (max-width: 1023px) {
	.ticketBnr_wrap {
		width: calc(96% / 2);
	}
	.ticketBnr_wrap:nth-of-type(2) a img {
		margin-top: 3vw;
	}
	.btn_onlineTicket a img {
		width: 38vw !important;
		max-width: 420px;
	}
}
@media screen and (max-width: 767px) {
	.ticketBnr.flex {
		border: 0;
	}
}
@media screen and (max-width: 479px) {
	.ticketBnr.flex {
		justify-content: center;
	}
	.ticketBnr_wrap {
		width: 80%;
	}
	.ticketBnr_wrap:nth-of-type(2) a img {
		margin-top: 0;
	}
	.btn_onlineTicket a img {
		width: 80% !important;
	}
}

/* =============================================================
    【noticeInfo】ブロック　
============================================*/
.noticeInfo li {
	position: relative;
	padding-left: 1em;
}
.noticeInfo li::before {
	content: "\f0da";
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
    font-weight: 900;
	/* background: url(/event/reptiles2025/images/list_arrow.png) left center/6px no-repeat; */
	position: absolute;
	width: 1em;
	height: 1em;
	line-height: 1;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.noticeInfo li:not(:last-child) {
	margin-bottom: 12px;
}
.seller_file_wrap a {
	color: var(--myColor03);
	padding: 0.5em 0.8em;
	margin: 1em 10px 0 0;
	line-height: 1;
	background-color: #fff;
	border-radius: var(--gap_8px);
	display: inline-block;
}
.seller_file_wrap a i {
	margin-right: var(--gap_8px);
}
.seller_file_limit {
	margin-top: var(--gap_8px);
}
@media screen and (min-width: 768px) {
	.notice .secTitle_wrap {
		text-align: left;
		padding-left: 0;
	}
}

.contact {
	padding: var(--gap_32px) 0 var(--gap_80px);
}
.contactInfo.baseTable th {
	font-size: 1.2em;
}
.contactInfo.baseTable td em {
	font-size: clamp(18px,3.6vw,26px);
	line-height: 1.1;
}
.contactInfo.baseTable td a {
	text-decoration: none !important;
}
.contactInfo.baseTable small.ml {
	display: inline-block;
	line-height: 1;
}
#p_btm_notice {
	font-size: 13px;
	text-shadow: 0 0 0.2em var(--myColor03), 0 0 0.2em var(--myColor03), 0 0 0.2em var(--myColor03), 0 0 0.2em var(--myColor03), 0 0 0.2em var(--myColor03);
	position: relative;
	z-index: 100;
}
@media screen and (max-width: 1399px) {
	#p_btm_notice {
		padding-right: clamp(50px, 12vw, 90px);
	}
}

/* =============================================================
    Event イベント内容
============================================*/
.page_detail #content::after {
	content: none;
}
#detail {
	padding-top: var(--gap_96px);
	padding-bottom: var(--gap_80px);
	overflow: hidden;
}
#detail .secTitle {
    text-align: center;
    margin-left: 0;
}
.ev_detail_navi.flex {
	margin-top: var(--gap_32px);
	column-gap: var(--gap_32px);
	justify-content: center;
	align-items: end;
}
.ev_detail_navi .btn {
	font-size: clamp(12px,1.8vw,18px);
	color: #fff;
	margin-bottom: 30px;
	border: solid 1px;
	position: relative;
}
.ev_detail_navi .btn::after {
	position: absolute;
	content: '';
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	border: solid 4px transparent;
	border-top: solid 6px #fff;
}
.detail_notice {
	margin-top: var(--gap_32px);
}
.detail_notice .noteList {
	font-size: 1em;
	padding-bottom: var(--gap_8px);
}
.detail_notice .noteList li {
	margin-top: 8px;
	line-height: 2;
}
.detail_notice .noteList li:first-child {
	margin-top: 0;
}
.detail_notice em {
	font-weight: normal !important;
	line-height: 1.8;
	border-bottom: dotted 3px #5bddf7;
}
.cont_sale {
	padding-top: var(--gap_64px);
}
.cont_guest {
	max-width: 1400px;
	margin-inline: auto;
}

#ev_stage_schedule {
	padding-top: var(--gap_80px);
}
.ev_stage_schedule_title {
    font-size: clamp(18px, 3.8vw, 28px);
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
	padding-bottom: var(--gap_48px);
}
.stage_list .flex_item {
    background-color: #fff;
    border: solid 3px var(--color_RED);
}
.stage_day {
    font-size: clamp(18px, 3.8vw, 28px);
	font-weight: bold;
	text-align: center;
    line-height: 1;
    padding: var(--gap_16px) var(--gap_24px);
    border-top: solid 3px var(--color_RED);
}
.stage_item_wrap {
    border-top: solid 3px var(--color_RED);
}
.time_code {
    width: 100%;
}
.time_code em {
    font-size: 1.2em;
    color: #fff;
    padding: var(--gap_8px) var(--gap_16px);
    line-height: 1;
    background-color: var(--color_RED);
    display: inline-block;
}
.stage_info {
    padding: var(--gap_16px) var(--gap_24px) var(--gap_24px);
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.stage_name, .stage_thumb {
    width: 50%;
}
.stage_name {
    font-size: clamp(14px, 1.6vw, 26px);
    font-weight: bold;
    line-height: 1.2;
}
.stage_name small {
    font-size: 0.8em;
    padding: 4px 0;
    line-height: 1.1;
    display: block;
}
.stage_thumb {
    padding-left: var(--gap_24px);
}
@media screen and (max-width: 1919px) {
	.detail_notice_wrap {
		max-width: 100%;
		padding: 0;
	}
	.detail_notice {
		padding: 0 17vw;
	}
}
/* @media screen and (max-width: 1699px) {
	.detail_img img {
		width: 108vw !important;
		margin-left: -4vw;
	}
	.detail_notice {
		padding: 0 14vw;
	}
} */
@media screen and (max-width: 1279px) {
	.detail_img img {
		width: 120vw !important;
		margin-left: -10vw;
	}
	.detail_notice {
		padding: 0 10vw;
	}
}
@media screen and (max-width: 999px) {
    .stage_list.col2 .flex_item {
        width: clamp(180px, 100%, 550px);
        margin: 0 auto;
    }
	.stage_list.col2 .flex_item:not(:first-of-type) {
		margin-top: var(--gap_48px);
	}
	.stage_name {
		font-size: clamp(16px, 2.2vw, 26px);
	}
}
@media screen and (max-width: 767px) {
	.ev_detail_navi.flex {
		margin: var(--gap_48px) auto 0;
	}
	.ev_detail_navi .btn {
		padding: 0.4em 0.6em;
	}
	.detail_notice .noteList {
		font-size: clamp(8px, 1.8vw, 18px);
	}
	.detail_notice em {
		padding-bottom: 1px;
	}
	.numticket_title {
		font-size: 1.1em;
	}
	.numticket_pr {
		font-size: 0.9em;
	}
	.stage_name {
		width: 60%;
	}
	.stage_thumb {
		width: 40%;
	}
}
@media screen and (max-width: 479px) {
	.numticket_reception,
	.img_thumb {
		width: 100%;
	}
	.img_thumb {
		margin: var(--gap_32px) auto 0;
	}
}

/* =============================================================
    BoothList ブースリスト
============================================*/
.boothlist {
	padding-top: var(--gap_96px);
	padding-bottom: 0;
}
.boothlist .secTitle {
	text-align: center;
	margin-left: 0;
}
.rep_MAP {
	padding: var(--gap_24px) 0 var(--gap_80px);
}
.p_navi_wrap {
	max-width: 1200px;
	margin: 0 auto;
	justify-content: center;
	position: relative;
    z-index: 100;
}
.p_navi_item {
	flex: 0 0 31.333%;
	text-align: center;
	margin: 0 1% 2%;
	border: solid 1px var(--myColor02);
	background-color: rgb(27 135 157 / 95%);
    box-shadow: 0 0 var(--gap_16px) #1b879d;
}
.p_navi_item a {
	font-size: 16px;
	color: #fff;
	padding: var(--gap_16px) var(--gap_32px) var(--gap_16px) var(--gap_16px);
	display: block;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	border: solid 1px #fff;
}
.p_navi_item.nolink a {
	color: #1b6670;
}
.p_navi_item a::after {
	font-size: 0.6em;
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f078";
}
.p_navi_item a.map::after {
	font-size: 0.9em;
	/* content: "\f2d2"; */
	content: "\f019";
}
.p_navi_item a[tabindex*="-1"] {
	opacity: 0.5;
}
.p_navi_item.nolink a:hover {
	opacity: 1 !important;
}
.booth_wrap {
	padding: var(--gap_80px) 0;
	position: relative;
    z-index: 100;
}
.booth_title {
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
}
.shoplist_wrap.flex {
	justify-content: unset;
	width: 102%;
	margin-left: -1%;
}
.shoplist_item {
	font-size: 1em;
	flex: 0 0 23%;
	margin: 2% 1% 0;
	padding: 30px 30px;
	text-align: center;
	background-color: #fff;
	position: relative;
}
.shop_logo img {
	border: solid 1px #ebebeb !important;
}
.shop_name {
	font-weight: bold;
	line-height: 1.2;
	margin: 30px auto;
	word-break: break-all;
}
.shop_name a {
	color: var(--color_BLK);
	position: relative;
	letter-spacing: 0.5px;
}
.shop_name a:not([tabindex*="-1"]) {
	text-decoration: underline !important;
}
/* .shop_name a:not([tabindex*="-1"])::before {
	position: absolute;
	font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f14c";
	margin-right: 0.4em;
} */
.shop_hp {
	border: solid 1px;
	background-color: #b1dcc1;
	position: relative;
	display: inline-block;
	overflow: hidden;
}
.shop_hp.nolink {
	border: solid 1px #b1dcc1;
	background-color: #fff;
}
.shop_hp:not(.nolink)::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	transform: translateY(100%);
	opacity: 0;
	transition: all 0.3s;
}
.shop_hp:not(.nolink):hover::after {
	opacity: 1 !important;
	transform: translateY(0);
}
.shop_hp a {
	font-size: 0.7em;
	color: var(--myColor01);
	padding: 8px;
	line-height: 1;
	display: inline-block;
	position: relative;
	z-index: 100;
}
.shop_hp.nolink a {
	color: #b1dcc1;
}
.shop_hp:hover a {
	opacity: 1 !important;
}
.shop_hp:not(.nolink) a::after {
	font-size: 0.9em;
	margin-left: 4px;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f35d";
}
@media screen and (max-width: 1919px) {
	.shoplist_item {
		padding: 1.5vw 1.5vw;
	}
}
@media screen and (max-width: 1023px) {
	.shoplist_item {
		font-size: 2.2vw;
		flex: 0 0 31.333%;
	}
	.shop_name {
		margin: 3vw auto;
	}
}
@media screen and (max-width: 767px) {
	.p_navi_item {
		flex: 0 0 58%;
	}
	.p_navi_item a {
		font-size: 14px;
	}
	.booth_title {
		font-size: 24px;
	}
}
@media screen and (max-width: 479px) {
	.shoplist_wrap.flex {
		width: 100%;
		margin-left: 0;
	}
	.shoplist_item {
		font-size: 3.2vw;
	}
	.p_navi_wrap {
		justify-content: center;
	}
	.p_navi_item {
		flex: 0 0 100%;
		max-width: 350px;
	}
	.booth_title {
		font-size: 5.6vw;
	}
}

/* =============================================================
    cm動画
============================================*/
.yt_mov_wrap {
	max-width: 1000px;
	margin: var(--gap_80px) auto 0;
}
.yt_mov_wrap iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	padding: 0.5em;
	vertical-align: top;
	border: solid 2px var(--color_lGRN);
}

/* =============================================================
    【photoswipe】ブロック　※ポップアップ表示
============================================*/
.swipe_wrap {
	margin: 0 auto;
	column-gap: 1%;
}
.swipe_wrap a {
	width: calc(96% / 5);
	margin-bottom: 1%;
}
@media screen and (max-width: 1023px) {
	.swipe_wrap a {
		width: calc(98% / 3);
	}
}




/*================================
accordion style
================================*/
.module-accordion{
	margin: 0 auto;
}
.module-accordion:not(:last-child){
	margin-bottom: .2rem;
}
.module-accordion_title{
	margin-bottom: .1rem;
	display: inline-block;
}
.module-accordion_btn{
	font-weight: bold;
	line-height: 1;
	margin-top: var(--gap_16px);
	padding: 1em 1.8em 1em 1em;
	box-shadow: 0 0 var(--gap_8px) #ccc;
	border-radius: var(--gap_16px);
	position: relative;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
}
.module-accordion_btn::after{
	font-size: 1em;
	color: var(--color_RED);
	content: '\f107';
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
    font-weight: 900;
	position: absolute;
	right: 0.5em;
	margin: auto;
	transition: all 0.5s ease;
}
.module-accordion_btn.is-open::after{
    transform: rotate(180deg);
}
.module-accordion_contents{
	display: none;
	margin-top: var(--gap_16px);
	padding: var(--gap_24px) 0 0;
	border-top: dotted 1px;
}
.module-accordion_text {
	line-height: 1.8;
	text-align: left;
	position: relative;
	padding: 0 var(--gap_16px);
}
</pre></body></html>