@charset "utf-8";

/* =============================================================
    common 共通
============================================*/
:root {
	--color_BLK: #231815;
	--color_YLW: #fff254;
	--color_RED: #e2041b;
	--color_lBLU: #66c7ea;
	--color_GRN: #8ac456;
	--color_dGRN: #13672a;
	--fontS : clamp(12px,2.2vw,22px);
	--fontM : clamp(14px,2.8vw,28px);
	--fontL : clamp(16px,4vw,38px);
	--gap_160px : clamp(54px, 24vw, 160px);
	--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_GRN);
	-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 {
	background: #8ac456;
	/* background: linear-gradient(180deg,rgba(255, 242, 84, 1) 0%, rgba(62, 188, 202, 1) 100%); */
	overflow: hidden;
}
.page_goods #content {
	background: linear-gradient(180deg, rgba(62, 188, 202, 1) 0%, rgba(255, 242, 84, 1) 100%);
}
.cont_bg {
	padding: 0 0 min(12vw,150px);
	background: url(/event/reptiles2026/images/bg_btm.png) center bottom no-repeat;
}
@media screen and (max-width: 999px) {
	.cont_bg {
		background-size: 150% !important;
	}
}

.inner_wrap {
	padding: 0 var(--gap_48px);
	margin: 0 auto;
	max-width: 1450px;
}
.inner_wrap.max {
	max-width: 100%;
}

.ib {
	font-size: inherit !important;
	display: inline-block;
}
.hidden {
    display: none !important;
}
.red {
	color: var(--color_RED);
}
.ylw {
	color: var(--color_YLW);
}
.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;
}

.side_nav {
    text-align: center;
    margin-bottom: var(--gap_32px);
}
.side_nav a {
    font-size: clamp(24px, 4vw, 38px);
	line-height: 1;
    color: var(--color_BLK) !important;
    text-shadow: 0 0 0.2em #fff, 0 0 0.2em #fff,0 0 0.2em #fff,0 0 0.3em #fff,0 0 0.3em #fff;
    margin-block: var(--gap_16px);
    display: inline-block;
}
@media screen and (max-width: 479px) {
	.btm_btn_area {
        position: relative;
    }
    .side_nav {
        margin-bottom: 0;
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
		width: 100%;
		box-shadow: 0 0 var(--gap_16px) var(--color_BLK);
		background-color: var(--color_dGRN);
		/* background: linear-gradient(90deg, var(--color_GRN) 0%, var(--color_YLW) 50%, var(--color_GRN) 100%); */
    }
	.side_nav > div {
        display: inline-block;
        margin-inline: var(--gap_16px);
    }
}

#btn_pagetop {
    right: clamp(8px, 2vw, 16px);
}
#btn_pagetop2 {
    left: var(--gap_24px);
}
#btn_pagetop, #btn_pagetop2 {
    bottom: var(--gap_16px);
    position: fixed;
    z-index: 110;
}
#btn_pagetop a, #btn_pagetop2 a {
    display: block;
}
#btn_pagetop > a {
	position: relative;
	z-index: 110;
	width: clamp(50px,12vw,70px);
}

#btn_pagetop2 > i {
    font-size: 1.4em;
    text-shadow: 0 0 0.2em #000, 0 0 0.3em #000;
    color: #fff;
    margin-bottom: var(--gap_8px);
    display: inline-block;
    cursor: pointer;
    position: relative;
    z-index: 999;
}
#btn_pagetop2 a {
    font-size: clamp(14px, 1.8vw, 22px);
	font-weight: bold;
    text-align: center;
    text-decoration: none;
    /* text-shadow: 0 0 0.3em #000000, 0 0 0.3em #000000, 0 0 0.3em #000000, 0 0 0.3em #000000; */
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--color_BLK) !important;
    padding: var(--gap_8px);
    border: solid calc(var(--gap_8px) / 4) var(--color_BLK);
    background-color: var(--color_YLW);
    /* background: linear-gradient(325deg, var(--color_GRN) 30%, var(--color_YLW) 100%); */
    box-shadow: 0 0 var(--gap_8px) var(--color_BLK);
}
#btn_pagetop2 a + a {
    margin-top: var(--gap_24px);
}

@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;
	}
}

.end_info {
	text-align: center;
	padding: var(--gap_48px);
    background-color: rgb(62 188 202 / 90%);
	box-shadow: 0 0 var(--gap_16px) var(--color_BLK);
}
.end_text {
	font-size: clamp(18px, 3vw, 22px);
	font-weight: bold;
	/* color: #fff; */
	margin: 0 auto var(--gap_32px);
}
.end_list {
	width: 100%;
	max-width: 550px;
	border-left: solid 1px;
	border-top: solid 1px;
	border-color: var(--color_GRN);
	display: inline-block;
}
.end_list dl {
	overflow: hidden;
	display: -webkit-flex;
	display: flex;
}
.end_list dt,
.end_list dd {
	line-height: 1.2;
	width: 33.3%;
	padding: 0.6em 0.6em;
	border-right: solid 1px;
	border-bottom: solid 1px;
	border-color: var(--color_GRN);
	background-color: #fff;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
}

.end_list .b {
	font-weight: bold;
}
.end_list .bg {
	background-color: #dce9fb;
}

.end_list .head dt,
.end_list .head dd {
	background-color: #dce9fb;
}
.end_list .head dt,
.end_list .head dd {
	font-size: 80%;
	padding: 0.2em 0.6em;
}
.end_list .total dt,
.end_list .total dd {
	font-weight: bold;
	color: #fff;
	background-color: rgb(5 60 130 / 50%);
}
.end_list .total dt {
	width: 66.6%;
}
.btn_close {
	font-size: 16px;
	color: var(--color_BLU);
	line-height: 1;
	margin: var(--gap_24px) auto 0;
	padding: 0.4em 0.6em;
	background-color: unset;
    border: 0;
    border-radius: 4px;
	display: block;
	cursor: pointer;
}
.btn_close i {
	margin-right: 4px;
}

/* =============================================================
    【g_navi】ブロック ※グローバルナビ
============================================*/
#p_header,
#p_header2 {
	position: sticky;
	top: 0;
	z-index: 1000;
}
.menu_wrap {
	/* background-color: rgb(62 188 202 / 100%); */
	background: var(--color_dGRN);
	/* background: linear-gradient(90deg, var(--color_GRN) 0%, var(--color_YLW) 50%, var(--color_GRN) 100%); */
	box-shadow: 0 0 var(--gap_16px) var(--color_BLK);
	position: relative;
}
.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: var(--color_GRN) !important;
}
.g_navi_wrap li {
	font-size: clamp(14px,1.6vw,20px);
	width: calc(100% / 8);
	text-align: center;
	border-left: solid 1px;
}
.g_navi_wrap li > div {
	width: 100%;
}
.g_navi_wrap li:first-child {
	border-left: solid 1px;
}
.g_navi_wrap li:last-of-type {
	border-right: 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: var(--color_GRN);
}
.g_navi_wrap span {
	font-weight: bold;
	line-height: 1;
	color: #fff;
	/* text-shadow: 0 0 0.2em #fff, 0 0 0.2em #fff, 0 0 0.2em #fff; */
	padding: var(--gap_16px) 8px;
	display: inline-block;
}
.g_navi_wrap a:not(.nolink):hover span {
	color: var(--color_BLK);
}
.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 var(--color_NVY), 0 0 0.2em var(--color_NVY), 0 0 0.2em var(--color_NVY), 0 0 0.3em var(--color_NVY), 0 0 0.3em var(--color_NVY);
}
.g_navi a[tabindex*="-1"] span {
	opacity: 0.4;
}
@media screen and (min-width: 1000px) {
	.g_navi_wrap a:hover::after {
		/*横方向等倍まで拡大*/
		transform: scale(1, 1);
	}
}
@media screen and (max-width: 999px) {
	.g_navi_wrap {
		/* border-left: solid 1px #fff;
		border-right: solid 1px #fff; */
		position: relative;
	}
	.g_navi_wrap::before,
	.g_navi_wrap::after {
		content: "";
		position: absolute;
		top: 0;
		height: 50%;
	}
	.g_navi_wrap::before {
		left: 0;
		border-left: solid 1px #fff;
	}
	.g_navi_wrap::after {
		right: 0;
		border-right: solid 1px #fff;
	}
	.g_navi_wrap li {
		font-size: clamp(13px,2.8vw,20px);
		width: calc(100% / 4);
		border-bottom: solid 1px;
	}
	.g_navi_wrap li:first-of-type {
		border-left: 0;
	}
}
@media screen and (min-width: 480px) {
	.trigger_wrap {
		display: none;
	}
	.g_navi {
		display: block !important;
	}
}
@media screen and (max-width: 479px) {
	.trigger_wrap {
		text-align: right;
		padding: 0 16px;
		position: relative;
		z-index: 1010;
	}
	.btn_trigger {
		font-size: 22px;
		color: var(--color_NVY);
		background-color: transparent;
		border: 0;
		position: relative;
		height: 40px;
		width: 40px;
	}
	.btn_trigger i {
		color: #fff;
		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(19 103 42 / 90%);
		box-shadow: 0 0 var(--gap_8px) var(--color_BLK);
		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 {
		font-size: 16px;
		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;
	}
	.g_navi_wrap::before {
		border-left: 0;
	}
	.g_navi_wrap::after {
		border-right: 0;
	}
}
@media screen and (max-width: 399px) {
	/* .g_navi_wrap li {
		width: calc(100% / 3);
	} */
	.g_navi_wrap li:has(+ .navi_sns) {
		border-right: solid 1px;
	}
	.g_navi_wrap li.navi_sns {
		display: none;
	}
}

/* =============================================================
    【main】ブロック　
============================================*/
#page.page_home::after {
	position: fixed;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100vh;
	background-color: var(--color_YLW);
	background: #3EBCCA;
	background: linear-gradient(270deg,rgba(62, 188, 202, 1) 0%, rgba(255, 242, 84, 1) 50%, rgba(62, 188, 202, 1) 100%);
	transform: translateY(0);
	z-index: 110;
	animation: main_bg 3s forwards ease;
	display: none;
}
@keyframes main_bg {
	0%,33.3% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-100%);
	}
}

#main {
	letter-spacing: 1px;
	position: relative;
}

#mainVisual {
	position: relative;
	overflow: hidden;
}

.logo_wrap_opening {
	position: fixed;
	width: min(76vw, 1450px);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
	z-index: 150;
	animation: logo_wrap_opening 3s forwards ease;
	display: none;
}
@keyframes logo_wrap_opening {
	0%,33.3% {
		transform: translate(-50%,-50%);
		opacity: 1;
	}
	100% {
		transform: translate(-60%,150%);
		opacity: 0;
	}
}
@media screen and (max-width: 767px) {
	#page::after,
	.logo_wrap_opening {
		display: none;
	}
}

.mainTtile_wrap {
	font-size: 0;
	max-width: 1920px;
}
.mainTtile {
	background: url(/event/reptiles2026/images/bg_main.jpg) center top/contain no-repeat;
	padding-top: calc(984 / 1920 * 100%);
}

.cool_wrap,
.exclamation_wrap,
.logo_wrap {
	position: absolute;
	z-index: 50;
}
.cool_wrap {
	width: min(20vw, 378px);
    top: min(0.5vw, 8px);
    left: min(1vw, 24px);
	animation: cool_wrap 3s infinite ease 4s;
}
@keyframes cool_wrap {
	0% {
		transform: scale(1);
	}
	5% {
		transform: scale(1.2);
	}
	10% {
		transform: scale(1);
	}
	15% {
		transform: scale(1.2);
	}
	20%,100% {
		transform: scale(1);
	}
}
.exclamation_wrap {
	width: min(6vw, 120px);
    top: min(14vw, 270px);
    left: min(49vw, 935px);
	animation: exclamation_wrap 1s steps(2) infinite;
}
@keyframes exclamation_wrap {
	0% {
		transform: rotate(5deg);
	}
	100% {
		transform: rotate(-5deg);
	}
}
.logo_wrap {
	width: min(76vw, 1450px);
    bottom: min(7vw, 118px);
    left: min(3vw, 48px);
}

.kv_pr_btn {
    font-size: initial;
    position: absolute;
    z-index: 100;
    /* bottom: min(10vw, 200px); */
	bottom: 55%;
    right: min(7vw, 118px);
    animation: fuwafuwa 2s infinite;
	/* display: none; */
}
.kv_pr_btn a {
    font-weight: bold;
    color: var(--color_BLK) !important;
    text-align: center;
    white-space: nowrap;
    width: clamp(50px, 15vw, 180px);
    height: clamp(50px, 15vw, 180px);
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: solid calc(var(--gap_8px) / 2) var(--color_BLK);
    background-color: var(--color_YLW);
    /* background: linear-gradient(325deg, var(--color_GRN) 30%, var(--color_YLW) 100%); */
    box-shadow: 0 0 var(--gap_8px) var(--color_BLK);
}
.kv_pr_btn span {
    font-size: clamp(8px, 2.4vw, 28px);
    line-height: 1.2;
	text-shadow: 0 0 0.2em #fff, 0 0 0.2em #fff, 0 0 0.2em #fff;
    position: relative;
}
.kv_pr_btn span::after {
    position: absolute;
    content: "\f245";
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
    font-weight: 900;
    bottom: -1.2em;
    left: 85%;
    font-size: 1.6em;
	color: #fff;
    text-shadow: 1px 0 2px #000, 1px 0 2px #000, 1px 0 2px #000, 0 1px 2px #000, 0 1px 2px #000, 0 1px 2px #000;
}
@media screen and (max-width: 1399px) {
	.kv_pr_btn {
		right: var(--gap_24px);
	}
}

.date_wrap {
	justify-content: center;
	align-items: center;
	gap: 4%;
	padding-top: var(--gap_32px);
}
.kv_date {
	width: min(48%,785px) !important;
}
.kv_time {
	width: min(48%,850px) !important;
}
@media screen and (max-width: 479px) {
	.date_wrap {
		row-gap: var(--gap_32px);
	}
	.kv_date,
	.kv_time {
		width: min(90%,300px) !important;
	}
}

.end_message {
	padding: var(--gap_48px) 0;
}
.sec_wrap {
	padding-top: var(--gap_96px);
}
.secTitle_wrap {
	font-size: 0em;
	margin-inline: auto;
}

.outline .secTitle_wrap {
	width: min(28vw,312px);
}
.outline .secTitle {
    background: url(/event/reptiles2026/images/title_outline.png) center top / contain no-repeat;
    padding-top: calc(99 / 312 * 100%);
}
.exhibition .secTitle_wrap {
	width: min(37.5vw,415px);
}
.exhibition .secTitle {
    background: url(/event/reptiles2026/images/title_exhibition.png) center top / contain no-repeat;
    padding-top: calc(99 / 415 * 100%);
}
.ticket .secTitle_wrap {
	width: min(23.5vw,265px);
}
.ticket .secTitle {
    background: url(/event/reptiles2026/images/title_ticket.png) center top / contain no-repeat;
    padding-top: calc(99 / 265 * 100%);
}

.secTitle_text {
    font-size: clamp(20px, 4.6vw, 32px);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: var(--gap_32px);
    padding-left: var(--gap_16px);
	padding-bottom: var(--gap_8px);
    border-bottom: solid calc(var(--gap_8px) / 2);
    border-left: solid var(--gap_24px) var(--color_BLK);
}

.baseTable {
	border-spacing: 0;
	border-collapse: collapse;
	outline: solid calc(var(--gap_8px) / 2) var(--color_BLK);
	/* border: solid 4px; */
	background-color: #fff;
	position: relative;
	z-index: 10;
	/* box-shadow: 0 0 var(--gap_24px) #1b879d; */
}
.baseTable::after {
	content: "";
	position: absolute;
	background: url(/event/reptiles2026/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;
	/* color: #fff; */
	width: 220px;
	border-bottom: solid calc(var(--gap_8px) / 4) var(--color_BLK) !important;
	background-color: var(--color_lBLU);
}
.baseTable td {
	line-height: 1.8;
	border-bottom: solid calc(var(--gap_8px) / 4) var(--color_BLK) !important;
	border-left: solid calc(var(--gap_8px) / 4) var(--color_BLK) !important;
}
.baseTable th,
.baseTable td {
	padding: var(--gap_32px);
}
.baseTable .pc td {
	/* color: #fff; */
	background-color: var(--color_lBLU);
}
@media screen and (min-width: 768px) {
	.baseTable tr:last-of-type th,
	.baseTable tr:last-of-type td {
		border-bottom: 0 !important;
	}
}
@media screen and (max-width: 767px) {
	.baseTable td {
		border-left: 0 !important;
	}
}

.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 calc(var(--gap_8px) / 2) var(--color_GRN);
}
.noteList i {
	color: var(--color_GRN);
	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);
	}
}

/* =============================================================
    【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 calc(var(--gap_8px) / 4) var(--color_BLK) !important;
}
td.infoDetail .emL {
	margin-bottom: var(--gap_16px);
}
.exhibitionInfo small {
	line-height: 1.4;
	display: inline-block;
}

#nav_entry {
	display: inline-block;
}
#entry {
	padding-top: var(--gap_80px);
}
.btn_entry {
	width: 90%;
	max-width: 850px;
	margin: 0 auto 0;
	background-color: var(--color_YLW);
    /* background: linear-gradient(180deg, rgba(62, 188, 202, 1) 0%, rgba(255, 242, 84, 1) 50%, rgba(62, 188, 202, 1) 100%); */
	border-radius: var(--gap_16px);
	border: solid calc(var(--gap_8px) / 2) var(--color_BLK);
	box-shadow: 0 0 var(--gap_16px) var(--color_BLK);
	position: relative;
	animation: btn_entry 6s infinite;
}
@keyframes btn_entry {
	0% {
		transform: scale(1);
	}
	2% {
		transform: scale(1.05);
	}
	4% {
		transform: scale(1);
	}
	6% {
		transform: scale(1.05);
	}
	8% {
		transform: scale(1);
	}
	100% {
		transform: scale(1);
	}
}
.btn_entry a {
	text-align: center;
	display: block;
	position: relative;
}
.btn_entry a::after {
	font-size: clamp(14px,6vw,2em);
	content: "\f138";
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
	font-weight: 900;
	color: var(--color_BLK);
}
.btn_entry a,
.btn_entry a * {
	color: var(--color_BLK);
}
.btn_entry a em {
	font-size: clamp(20px, 4.8vw, 48px);
	line-height: 1;
	/* text-shadow: 0 0 0.1em #fff, 0 0 0.1em #fff, 0 0 0.1em #fff; */
	padding: var(--gap_24px);
	display: inline-block;
	position: relative;
	z-index: 100;
}
.btn_entry a em::after {
    content: attr(data-text) "";
    font-size: clamp(12px, 1.6vw, 16px);
    font-weight: normal;
	color: #fff;
    margin-top: var(--gap_8px);
    padding: calc(var(--gap_8px) / 2);
	background-color: var(--color_BLK);
    display: block;
}
.btn_entry_illust {
	width: min(30vw, 220px);
	position: absolute;
	bottom: -1px;
	left: -1px;
}

.entry_closed:hover {
	opacity: 1 !important;
}
.stanbyText {
	display: none;
}
.btn_entry.stanby {
	box-shadow: unset;
}
.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%;
	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: 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 {
	position: relative;
	background-color: #fff;
    outline: solid calc(var(--gap_8px) / 2) var(--color_BLK);
}
/* .ticketLink::after {
    content: "";
    position: absolute;
    background: url(/event/reptiles2026/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;
}
.ticketLink a img {
	filter: drop-shadow(0 0 var(--gap_8px) #ccc);
}
.ticketBnr.flex {
	column-gap: 4%;
	justify-content: center;
	padding: 0 var(--gap_32px) var(--gap_32px);
	/* 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;
}
.ticket .noteText {
	text-align: left;
    padding: var(--gap_24px);
    margin-top: 0;
    background-color: #fff;
    outline: solid calc(var(--gap_8px) / 2);
}
.ticket .noteText .limit_text {
	font-size: var(--fontM);
	font-weight: bold;
	text-align: center;
	margin-top: var(--gap_24px);
}
.ticket .noteText .limit_text em {
	font-size: 1.3em;
}
@media screen and (min-width: 1024px) {
	.ticketBnr_wrap:nth-of-type(1) a img,
	.ticketBnr_wrap:nth-of-type(3) a img,
	.ticketBnr_wrap:nth-of-type(4) a img {
		margin-top: min(1.5vw,22px);
	}
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
	.ticketBnr_wrap {
		width: calc(92% / 3);
	}
	.ticketBnr_wrap:nth-of-type(1) a img,
	.ticketBnr_wrap:nth-of-type(3) a img {
		margin-top: 1.9vw;
	}
	.btn_onlineTicket a img {
		width: 38vw !important;
		max-width: 420px;
	}
}
@media screen and (max-width: 599px) {
	.ticketBnr_wrap {
		width: calc(96% / 2);
	}
	.ticketBnr_wrap:nth-of-type(1) a img {
		margin-top: 2.9vw;
	}
}
@media screen and (max-width: 369px) {
	.ticketBnr.flex {
		justify-content: center;
	}
	.ticketBnr_wrap {
		width: 80%;
	}
	.ticketBnr_wrap:nth-of-type(1) 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/reptiles2026/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 {
	line-height: inherit;
}
.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: clamp(11px,1.2vw,13px);
	text-shadow: 0 0 0.2em var(--color_dGRN), 0 0 0.2em var(--color_dGRN), 0 0 0.2em var(--color_dGRN), 0 0 0.2em var(--color_dGRN), 0 0 0.2em var(--color_dGRN);
	color: #fff;
	position: relative;
	z-index: 50;
}

.btm_logo {
	width: min(80%, 1000px);
    margin: min(6vw,120px) auto 0;
}
/* @media screen and (max-width: 1399px) {
	#p_btm_notice {
		padding-right: clamp(50px, 12vw, 90px);
	}
}
@media screen and (max-width: 767px) {
	.btm_logo {
		padding-right: clamp(50px, 12vw, 90px);
	}
} */

/* =============================================================
    Event イベント内容
============================================*/
.page_detail #content {
	background: #FFF254 !important;
}
.page_detail .cont_bg {
	background: url(/event/reptiles2026/images/bg_top.png) center top no-repeat,
		url(/event/reptiles2026/images/bg_btm.png) center bottom no-repeat;
}
.page_detail #content::after {
	content: none;
}
#detail {
	padding-top: var(--gap_96px);
	padding-bottom: var(--gap_80px);
	overflow: hidden;
}
#detail .secTitle_wrap {
    width: min(22vw, 238px);
}
#detail .secTitle {
    padding-top: calc(99 / 238 * 100%);
    background: url(/event/reptiles2026/images/title_event.png) center top / contain no-repeat;
}

.ev_detail_navi_wrap {
	max-width: max-content;
    margin-inline: auto;
}
.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: var(--color_BLK);
	margin-bottom: 30px;
	border: solid calc(var(--gap_8px) / 2);
	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 var(--color_BLK);
}
.ev_detail_navi + .ev_detail_navi {
	margin-top: unset;
}
.ev_detail_navi + .ev_detail_navi .btn_wrap {
	width: 100%;
}
.ev_detail_navi + .ev_detail_navi .btn_wrap a {
	display: block;
}
.detail_notice_wrap:last-of-type {
	padding-bottom: min(20vw,300px);
}
.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 calc(var(--gap_8px) / 2) #5bddf7;
}
@media screen and (max-width: 479px) {
	.ev_detail_navi_wrap {
		padding-inline: var(--gap_96px);
	}
}

.detail_jinja {
	margin-bottom: max(-20vw,-380px);
}
.detail_guest {
	width: min(100%,1588px);
	margin-inline: auto;
	position: relative;
	z-index: 50;
}

#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 #1c9e3b;
}
.stage_day {
    font-size: clamp(18px, 3.8vw, 28px);
	font-weight: bold;
	color: #1c9e3b;
	text-align: center;
    line-height: 1;
    padding: var(--gap_16px) var(--gap_24px);
    border-top: solid 3px #1c9e3b;
}
.stage_item_wrap {
    border-top: solid 3px #1c9e3b;
}
.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: #1c9e3b;
    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_info_detail, .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;
	color: #1c9e3b;
    padding: 4px 0;
    line-height: 1.1;
    display: block;
}
.stage_info_read {
	font-size: 0.9em;
	padding-top: var(--gap_8px);
	margin-top: var(--gap_8px);
	border-top: solid 1px;
}
.stage_thumb {
    padding-left: var(--gap_24px);
}
@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 .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_info_detail {
		width: 60%;
	}
	.stage_thumb {
		width: 40%;
	}
}
@media screen and (max-width: 479px) {
	.numticket_reception {
		width: 100%;
	}
}

/* =============================================================
    BoothList ブースリスト
============================================*/
.boothlist {
	padding-top: var(--gap_96px);
	padding-bottom: 0;
}
.boothlist .secTitle_wrap {
    width: min(36vw, 421px);
}
.boothlist .secTitle {
    background: url(/event/reptiles2026/images/title_booth.png) center top / contain no-repeat;
    padding-top: calc(99 / 421 * 100%);
}

.page_boothlist .cont_bg,
.page_goods .cont_bg {
    background: url(/event/reptiles2026/images/bg_top.png) center top no-repeat, url(/event/reptiles2026/images/bg_btm.png) center bottom no-repeat;
}
.goods .secTitle_wrap {
    width: min(23vw, 250px);
}
.goods .secTitle {
    background: url(/event/reptiles2026/images/title_goods.png) center top / contain no-repeat;
    padding-top: calc(100 / 250 * 100%);
}
.rep_MAP {
	padding: var(--gap_24px) 0 var(--gap_80px);
}
.p_navi_wrap {
	max-width: 1200px;
	margin: 0 auto;
	justify-content: center;
	column-gap: 2%;
    row-gap: clamp(2px, 2vw, 28px);
	position: relative;
    z-index: 100;
}
.page_goods .p_navi_wrap {
	margin-top: var(--gap_32px);
}

.p_navi_item {
	width: calc(96% / 3);
	text-align: center;
	background-color: var(--color_YLW);
    box-shadow: 0 0 var(--gap_16px) var(--color_YLW);
	border: solid calc(var(--gap_8px) / 2) var(--color_BLK);
}
.p_navi_item a {
	font-size: clamp(10px,2.8vw,16px);
	font-weight: bold;
	color: var(--color_BLK);
	padding: var(--gap_16px) var(--gap_32px) var(--gap_16px) var(--gap_16px);
	display: block;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}
#boothlist .p_navi_item {
	background-color: #abdb88;
}
#goods .p_navi_item {
	box-shadow: 0 0 var(--gap_16px) var(--color_GRN);
}
#goods .p_navi_item a {
	color: var(--color_BLK);
}
.p_navi_wrap_sub {
	margin-block: var(--gap_32px);
	padding-bottom: var(--gap_32px);
	border-bottom: dotted 4px #abdb88;
}
.p_navi_wrap_sub .p_navi_item {
	width: min(45%,200px);
	background-color: #fff !important;
	border-radius: var(--gap_16px);
}
.p_navi_wrap_sub .p_navi_item small {
	display: block;
}

.p_navi_item a::after {
	content: "\f078";
	font-size: 0.6em;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	top: 50%;
	right: calc(var(--gap_8px) * 1.5);
	transform: translateY(-50%);
}
.p_navi_item a.icon_dl::after {
	content: "\f019";
	/* content: "\f2d2"; */
	font-size: 0.9em;
}
.p_navi_item a.icon_arwR::after {
	content: "\f054";
}
.p_navi_item.nolink {
	opacity: 0.6;
}
/* .p_navi_item.nolink a {
	color: #1b6670;
} */
.p_navi_item.nolink a:hover {
	opacity: 1 !important;
}

.booth_wrap,
.goods_wrap {
	position: relative;
    z-index: 100;
}
.booth_wrap {
	padding: var(--gap_80px) 0;
}
.goods_wrap + .goods_wrap {
	padding-top: var(--gap_64px);
}
.booth_title,
.goods_shopname {
	font-size: clamp(12px,4vw,30px);
	font-weight: bold;
	text-align: center;
	margin-bottom: var(--gap_32px);
}
.goods_shopname {
	font-size: clamp(16px, 4vw, 38px);
	line-height: 1.1;
	padding-block: var(--gap_8px);
    background: linear-gradient(90deg, transparent 20%, var(--color_YLW), transparent 80%);
}
.shoplist_wrap.flex,
.goods_item_wrap.flex {
	justify-content: unset;
	column-gap: 2%;
    row-gap: clamp(2px, 2vw, 28px);
}
.goods_item_wrap.flex {
	justify-content: center;
}
.shoplist_item,
.goods_item {
	font-size: clamp(10px,2.2vw,18px);
	width: calc(94% / 4);
    padding: clamp(8px,1.5vw, 24px);
	text-align: center;
	background-color: #fff;
	position: relative;
}
.shop_logo img,
.goods_photo img {
	border: solid 1px #ebebeb !important;
}
.shoplist_item a,
.goods_item a {
	color: var(--color_BLK);
}
.shoplist_item a:not([tabindex*="-1"]),
.goods_item a:not([tabindex*="-1"]) {
	text-decoration: underline !important;
}
.shop_name,
.goods_name {
	font-weight: bold;
	line-height: 1.2;
	letter-spacing: 0.5px;
	margin: clamp(8px, 1.5vw, 24px) auto 0;
	word-break: break-all;
	position: relative;
}
.goods_name {
	font-weight: normal;
	text-align: left;
}

.goods_cate_title {
	font-size: clamp(14px,4.0vw,32px);
	font-weight: bold;
	text-align: center;
	color: #fff;
	padding-block: var(--gap_80px) var(--gap_48px);
}
.goods_cate_wrap {
	padding: var(--gap_64px) var(--gap_32px);
	border-radius: var(--gap_16px);
	background-color: rgba(255,255,255,0.5);
}
.goods_cate_wrap:has( + #p_btm_notice) {
	margin-bottom: var(--gap_80px);
}
.goods_item {
	border-radius: var(--gap_16px);
    box-shadow: 0 0 var(--gap_8px) #999;
}

.goods_wrap .img_thumb {
	width: min(100%,300px);
}
.goods_wrap .img_thumb a {
	color: #fff !important;
	display: block;
	position: relative;
}
.goods_wrap .img_thumb a::after {
	font-size: clamp(18px, 3vw, 22px);
	color: var(--color_GRN);
	position: absolute;
	content: '\f00e';
	bottom: -0.5em;
	right: -0.5em;
	text-shadow: 0 0 0.2em #ffffff, 0 0 0.2em #ffffff, 0 0 0.2em #ffffff, 0 0 0.3em #ffffff, 0 0 0.3em #ffffff;
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
    font-weight: 900;
}
@media screen and (max-width: 1023px) {
	.shoplist_item,
	.goods_item {
		width: calc(96% / 3);
	}
}
@media screen and (max-width: 767px) {
	.p_navi_item {
		width: calc(98% / 2);
	}
}
@media screen and (max-width: 479px) {
	.p_navi_wrap {
		justify-content: center;
	}
	.p_navi_item {
		width: min(90%,350px);
	}
}
@media screen and (max-width: 399px) {
	.goods_item_wrap.flex {
		gap: var(--gap_24px) 4%;
	}
	.goods_item {
		width: calc(96% / 2);
	}
}

#goods #p_btm_notice {
	text-shadow: 0 0 0.2em var(--color_YLW), 0 0 0.2em var(--color_YLW), 0 0 0.2em var(--color_YLW), 0 0 0.2em var(--color_YLW), 0 0 0.2em var(--color_YLW);
}

/* =============================================================
    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);
}

/*================================
アニメーション
================================*/
.fuwafuwa {
	animation: fuwafuwa 2s infinite 0s;
}
.fuwafuwa2 {
	animation: fuwafuwa 2s infinite 1s;
}
@keyframes fuwafuwa {
	0% {
	transform: translateY(var(--gap_8px));
   }
	50% {
	transform: translateY(calc(var(--gap_8px) * -1));
   }
	100% {
	transform: translateY(var(--gap_8px));
   }
}

/* 画像の表示アニメーション*/
.slidein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.0s;
  &.slidein-left{
      transform: translate(-100%,0);
  }
  &.slidein-right{
      transform: translate(100%,0);
  }
  &.slidein-up{
      transform: translate(0,-100%);
  }
  &.slidein-bottom{
      transform: translate(0,100%);
  }
  &.scrollin{
    transform: translate(0, 0)!important;
    opacity: 1!important;
  }
}


/* JS 時間指定で表示非表示を制御用 */
.js-time_limited {
    display: none;
}
.js-time_limited_fire {
    display: block;
}
/* END // JS 時間指定で表示非表示を制御用 */

#tvoHeader {
	position: relative;
	z-index: 1100;
}