@charset "UTF-8";

/* ==================================================
タブ切替え関連
================================================== */

/* タブ
------------------------------ */
#tab-wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	flex-direction: row;
	width: min(92%, 1200px);
	margin: 0 auto;
	--tab-space: 3.5em;
	padding-top: var(--tab-space);
}

#tab-wrap .tab {
	cursor: pointer;
	width: 31%;
	position: relative;
	padding: 10px;
	background-color: rgba(var(--rgb-black),0.95);
	transition: var(--transition-def);
}

@media screen and (max-width: 640px) {
	#tab-wrap .tab {
		width: 32%;
		padding: 6px;
	}
}

#tab-wrap .tab.is-active,
#tab-wrap .tab.comingsoon {
	pointer-events: none;
}

#tab-wrap .tab:hover {
	filter: var(--hover-filter-def);
}

#tab-wrap .tab::before,
#tab-wrap .tab::after {
	content: "";
	position: absolute;
}

#tab-wrap .tab::before {
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid rgba(var(--rgb-aqua), 0.3);
}

#tab-wrap .tab:nth-child(1)::before {
	border-color: rgba(var(--rgb-day1), 0.3);
}

#tab-wrap .tab:nth-child(2)::before {
	border-color: rgba(var(--rgb-day2), 0.3);
}

#tab-wrap .tab:nth-child(3)::before {
	border-color: rgba(var(--rgb-day3), 0.3);
}

#tab-wrap .tab::after {
	opacity: 0;
	z-index: -1;
	bottom: 10px;
	left: 0;
	right: 0;
	margin: 0 auto;
	height: 32px;
	aspect-ratio: 68 / 32;
	background-image: url(/iwf2023/asset_subpage/img/svg/icon_arrow.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	transition: var(--transition-def);
}

#tab-wrap .tab.is-active::after {
	opacity: 1;
	bottom: -78px;
}

#page-hdr .hdr-inner {
	padding-bottom: 60px;
}

@media screen and (max-width: 640px) {
	#tab-wrap .tab::after {
		height: 18px;
	}
	
	#tab-wrap .tab.is-active::after {
		bottom: -42%;
	}

	#page-hdr .hdr-inner {
		padding-bottom: calc(4% + 18px);
	}
}

/*  */
#tab-wrap .tab .status {
	position: absolute;
	top: calc(var(--tab-space) * -1);
	left: 0;
	width: 100%;
	height: var(--tab-space);
	font-family: var(--font-mix);
	font-size: clamp(12px, 10.345px + 0.517vw, 15px);
	letter-spacing: 0.04em;
	line-height: 1.2;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
}

#tab-wrap .tab .status.update {
	color: var(--color-yellow);
	
}

#tab-wrap .tab .status.comingsoon {
	color: var(--color-aqua);
}

#tab-wrap .tab:nth-child(1) .status.comingsoon {
	color: var(--color-day1);
}

#tab-wrap .tab .status>span {
	word-break: keep-all;
}

#tab-wrap .tab .status>span b {
	font-size: 84%;
}

@media screen and (max-width: 640px) {
	#tab-wrap {
		--tab-space: 2.5em;
	}

	#tab-wrap .tab .status>span b,
	#tab-wrap .tab .status>span br {
		display: none;
	}
}
/*  */



#tab-wrap .tab .tab-inner {
	position: relative;
	z-index: 3;
	font-family: var(--font-en);
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
	padding: 10px 5px 8px;
	color: var(--color-aqua);
	border: 1px solid rgba(var(--rgb-aqua), 0);
	transition: var(--transition-def);
}

#tab-wrap .tab.is-active .tab-inner,
#tab-wrap .tab .tab-inner:hover {
	border-color: rgba(var(--rgb-aqua), 1);
}

#tab-wrap .tab.comingsoon {
	opacity: 0.8;
}


#tab-wrap .tab.comingsoon .tab-inner::before {
	content: "COMING SOON";
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(var(--rgb-black), 0.7);
	font-size: clamp(13px, 4.2vw, 24px);
	word-break: keep-all;
	line-height: 1.2;
}

#tab-wrap .tab.comingsoon .tab-inner::after {
	content: "後日発表 お楽しみに！";
	position: absolute;
	z-index: 1;
	bottom: -3.4em;
	left: 0;
	width: 100%;
	height: 2em;
	text-align: center;
	font-size: clamp(13px, 2.4vw, 18px);
	word-break: keep-all;
	line-height: 1.2;
}


#tab-wrap .tab .corner.head,
#tab-wrap .tab .corner.foot {
	position: absolute;
	left: 0;
	width: 100%;
	height: 32px;
}

@media screen and (max-width: 640px) {
	#tab-wrap .tab .corner.head,
	#tab-wrap .tab .corner.foot {
		height: 18px;
	}
}


#tab-wrap .tab .corner.head {
	top: 0;
	z-index: 1;
}

#tab-wrap .tab .corner.foot {
	bottom: 0;
	z-index: 2;
}

#tab-wrap .tab .corner.head::before,
#tab-wrap .tab .corner.head::after,
#tab-wrap .tab .corner.foot::before,
#tab-wrap .tab .corner.foot::after {
	content: "";
	position: absolute;
	aspect-ratio: 1 / 1;
	height: 100%;
	border-top: 3px solid var(--color-aqua);
	border-left: 3px solid var(--color-aqua);
	transition: var(--transition-def);
}

@media screen and (max-width: 640px) {
	#tab-wrap .tab .corner.head::before,
	#tab-wrap .tab .corner.head::after,
	#tab-wrap .tab .corner.foot::before,
	#tab-wrap .tab .corner.foot::after {
		border-top: 2px solid var(--color-aqua);
		border-left: 2px solid var(--color-aqua);
	}
}

#tab-wrap .tab:nth-child(1) .corner.head::before,
#tab-wrap .tab:nth-child(1) .corner.head::after,
#tab-wrap .tab:nth-child(1) .corner.foot::before,
#tab-wrap .tab:nth-child(1) .corner.foot::after {
	border-color: var(--color-day1);
}

#tab-wrap .tab:nth-child(2) .corner.head::before,
#tab-wrap .tab:nth-child(2) .corner.head::after,
#tab-wrap .tab:nth-child(2) .corner.foot::before,
#tab-wrap .tab:nth-child(2) .corner.foot::after {
	border-color: var(--color-day2);
}

#tab-wrap .tab:nth-child(3) .corner.head::before,
#tab-wrap .tab:nth-child(3) .corner.head::after,
#tab-wrap .tab:nth-child(3) .corner.foot::before,
#tab-wrap .tab:nth-child(3) .corner.foot::after {
	border-color: var(--color-day3);
}

#tab-wrap .tab .corner.head::before {
	top: 0;
	left: 0;
}

#tab-wrap .tab .corner.head::after {
	top: 0;
	right: 0;
	transform: rotate(90deg);
}

#tab-wrap .tab .corner.foot::before {
	bottom: 0;
	left: 0;
	transform: rotate(-90deg);
}

#tab-wrap .tab .corner.foot::after {
	bottom: 0;
	right: 0;
	transform: rotate(180deg);
}

/* hover */
#tab-wrap .tab:hover .corner.head::before {
	top: -4px;
	left: -4px;
}

#tab-wrap .tab:hover .corner.head::after {
	top: -4px;
	right: -4px;
}

#tab-wrap .tab:hover .corner.foot::before {
	bottom: -4px;
	left: -4px;
}

#tab-wrap .tab:hover .corner.foot::after {
	bottom: -4px;
	right: -4px;
}

#tab-wrap .tab:hover .corner.head::before,
#tab-wrap .tab:hover .corner.head::after,
#tab-wrap .tab:hover .corner.foot::before,
#tab-wrap .tab:hover .corner.foot::after {
	/*filter: var(--hover-filter-bright);*/
}


#tab-wrap .date {
	font-size: clamp(20px, -0.966px + 6.552vw, 58px);
	white-space: nowrap;
}

#tab-wrap .week {
	font-size: clamp(15px, 10.034px + 1.552vw, 24px);
	margin-bottom: 6px;
	white-space: nowrap;
}

#tab-wrap .tab:nth-child(1) .date,
#tab-wrap .tab:nth-child(1) .week {
	color: var(--color-day1);
}

#tab-wrap .tab:nth-child(2) .date,
#tab-wrap .tab:nth-child(2) .week {
	color: var(--color-day2);
}

#tab-wrap .tab:nth-child(3) .date,
#tab-wrap .tab:nth-child(3) .week {
	color: var(--color-day3);
}

#tab-wrap .name {
	font-family: var(--font-jp);
	font-weight: 700;
	font-size: clamp(12px, 10.345px + 0.517vw, 15px);
	letter-spacing: 0.06em;
	line-height: 1.3;
	height: 4.4em;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
}

#tab-wrap .name .fz-s {
	font-size: 90%;
}

@media screen and (max-width: 640px) {
	#tab-wrap .date {
		margin-bottom: 0.1em;
	}

	#tab-wrap .week span {
		display: none;
	}

	#tab-wrap .name {
		height: auto;
		margin-top: 5px;
	}

	#tab-wrap .name span {
		display: none;
	}

	#tab-wrap .name br {
		display: none;
	}
}


/* タブテーブル (タブ切替えコンテンツ)
------------------------------ */
#table-wrap {}

#table-wrap .table-box {
}

/* .is-show */
#table-wrap .table-box.is-show {
}



/* タブテーブルのタイトル
------------------------------ */
.table-title {
	position: relative;
	margin-bottom: var(--clamp4);
	overflow: hidden;
}

.table-title::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto 0;
	width: 100%;
	height: 1px;
	background-color: var(--color-aqua);
	opacity: 0.5;
}

.table-title h2 {
	width: min(94%, 1200px);
	margin-left: auto;
	margin-right: auto;
}

.table-title h2 .date-week {
	font-family: var(--font-en);
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
	color: var(--color-aqua);
	position: relative;
	display: inline-block;
	padding: 0 clamp(30px, 2.414px + 8.621vw, 80px);
}

#day1 .table-title h2 .date-week {
	color: var(--color-day1);
}

#day2 .table-title h2 .date-week {
	color: var(--color-day2);
}

#day3 .table-title h2 .date-week {
	color: var(--color-day3);
}

.table-title h2 .date-week::before,
.table-title h2 .date-week::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	margin: auto 0;
	aspect-ratio: 1596 / 36;
	/*width: 100vw;*/
	height: clamp(24px, 17.379px + 2.069vw, 36px);
	background-image: url(/iwf2023/asset_subpage/img/svg/border_green.svg);
	background-repeat: no-repeat;
	background-size: contain;
}

.table-title h2 .date-week::before {
	right: 100%;
	background-position: right center;
}

.table-title h2 .date-week::after {
	left: 100%;
	background-position: left center;
}

.table-title h2 .date-week .date {
	font-size: clamp(38px, 15.931px + 6.897vw, 78px);
}

.table-title h2 .date-week .week {
	font-size: clamp(18px, 14.69px + 1.034vw, 24px);
}

.table-title h2 .date-week .date,
.table-title h2 .date-week .week {
	transform: translateY(2px);
}
/**/

.title-caption {
	margin-bottom: var(--clamp3);
}

.title-caption .title {
	font-size: var(--fz-xxxextra);
	font-weight: 700;
	color: var(--color-aqua);
	line-height: 1.4;
}

.title-caption .comment:not(:empty) {
	font-size: var(--fz-extra);
	font-weight: 700;
	line-height: 1.6;
	margin-top: 10px;
}

@media screen and (min-width: 641px) {
	.title-caption .comment br.sp-only {
		display: none !important;
	}
}

@media screen and (max-width: 640px) {
	.title-caption .comment br.sp-only {
		display: initial !important;
	}
}

.title-caption .comment-sub {
	font-size: var(--fz-large);
	font-weight: 700;
	line-height: 1.6;
	margin-top: var(--clamp3);
}


/* ==================================================
タブテーブル内 COMING SOON 表示
================================================== */

.table-box .comingsoon-box {
	/*display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-direction: column;
	min-height: 20vh;*/
	padding: 50px 0 80px;
}

.table-box .comingsoon-box p {
	margin-bottom: 0;
}

.table-box .comingsoon-box p + p {
	margin-top: 1em;
}

.table-box .comingsoon-box p.font-en {
	font-size: clamp(24px, 8.552px + 4.828vw, 52px);
	line-height: 1;
	letter-spacing: 0;
	color: var(--color-white);
}

.table-box .comingsoon-box p.font-jp {
	color: var(--color-yellow);
	font-weight: 700;
}