@charset "UTF-8";

/* ==================================================
Page Header
================================================== */
#page-hdr {
	margin-bottom: var(--clamp8);
}

#hdr-contents {
	/*padding-top: var(--clamp2);*/
}

/* #link-wrap
------------------------------ */
#link-wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	flex-direction: row;
	width: min(92%, 1000px);
	margin: 0 auto var(--clamp8);
}

#link-wrap>li {
	width: 48%;
}

@media screen and (max-width: 900px) {
	#link-wrap {
		flex-direction: column;
	}

	#link-wrap>li {
		width: min(100%, 580px);
		margin: 0 auto;
	}

	/*#link-wrap>li:not(:first-child) {
		margin-top: var(--clamp3);
	}*/

	#link-wrap>li:nth-child(1) {
		order: 2;
		margin-top: var(--clamp3);
	}

	#link-wrap>li:nth-child(2) {
		order: 1;
	}
}


#link-wrap>li a.link-btn {
	font-weight: 700;
	font-size: var(--fz-xxextra);
	line-height: 1.2;
	color: var(--color-black);
	padding: 0 6px;
	display: block;
	position: relative;
	transition: var(--transition-def);
}

#link-wrap>li a.link-btn:hover {
	filter: var(--hover-filter-def);
}

#link-wrap>li a.link-btn::before,
#link-wrap>li a.link-btn::after {
	content: "";
	position: absolute;
	border: 1px solid rgba(var(--rgb-aqua), 0.5);
}

#link-wrap>li a.link-btn::before {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}

#link-wrap>li a.link-btn::after {
	width: calc(100% - 12px);
	height: calc(100% + 12px);
	top: -6px;
	left: 6px;
	z-index: -2;
}

#link-wrap>li a.link-btn span {
	display: block;
	background-color: var(--color-aqua);
	padding: 0.8em 1.4em;
	position: relative;
	/*white-space: nowrap;*/
}

#link-wrap>li a.link-btn span::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0.8em;
	margin: auto 0;
	width: 7px;
	aspect-ratio: 7 / 16;
	background-image: url(/iwf2023/asset_subpage/img/svg/icon_arrow_black.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	transition: var(--transition-def);
}

#link-wrap>li a.link-btn span:hover::after {
	right: 0.4em;
}

#link-wrap>li .caption {
	text-align: left;
	margin-top: var(--clamp3);
	text-shadow: 0px 2px 8px rgba(var(--rgb-black), 0.8);

}

@media screen and (max-width: 900px) {
	#link-wrap>li .caption {
		margin-top: var(--clamp2);
	
	}
}

#link-wrap>li .caption p {
	line-height: 1.4;
	margin-bottom: 0.2em;
}

#link-wrap>li .caption p a.link-txt {}

#link-wrap>li .caption ul.note {}

#link-wrap>li .caption ul.note li {
	font-size: var(--fz-regular);
	line-height: 1.4;
	text-indent: -1.2em;
	padding-left: 1.2em;
	margin-bottom: 5px;
}

#link-wrap>li .caption ul.note li>* {
	text-indent: 0;
}

#link-wrap>li .caption ul.note li::before {
	content: "※";
	display: inline-block;
	width: 1.2em;
	text-indent: 0;
}


/* 無料視聴Ver. */
#link-wrap li a.link-btn.free {}
#link-wrap>li a.link-btn.free::before,
#link-wrap>li a.link-btn.free::after {
	border-color: rgba(var(--rgb-purple), 0.5);
}

#link-wrap>li a.link-btn.free span {
	background-color: var(--color-purple);
}

/* 有料視聴Ver. */
#link-wrap li a.link-btn.ticket {}
#link-wrap>li a.link-btn.ticket::before,
#link-wrap>li a.link-btn.ticket::after {
	border-color: rgba(var(--rgb-yellow), 0.5);
}

#link-wrap>li a.link-btn.ticket span {
	background-color: var(--color-yellow);
}



/* ==================================================
Main
================================================== */
#page-main {
	padding-bottom: var(--clamp12);
}


/* ==================================================
Frame
================================================== */
.subpage .frame-wrap {
	width: min(94%, 1100px);
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--clamp8);
	position: relative;
	border: 1px solid rgba(var(--rgb-aqua), 0.3);
	background-color: rgba(var(--rgb-black),0.8);
}

.subpage .frame-wrap .frame-inner {
	position: relative;
	width: 100%;
	padding: 60px 5%;
}

.subpage .frame-wrap::before,
.subpage .frame-wrap::after,
.subpage .frame-wrap .frame-inner::before,
.subpage .frame-wrap .frame-inner::after {
	content: "";
	position: absolute;
	width: 60px;
	height: 60px;
	border-top: 3px solid var(--color-aqua);
	border-left: 3px solid var(--color-aqua);
}

.subpage .frame-wrap::before {
	bottom: -1px;
	left: -1px;
	transform: rotate(-90deg);
}

.subpage .frame-wrap::after {
	bottom: -1px;
	right: -1px;
	transform: rotate(-180deg);
}

.subpage .frame-wrap .frame-inner::before {
	top: -1px;
	left: -1px;
}

.subpage .frame-wrap .frame-inner::after {
	top: -1px;
	right: -1px;
	transform: rotate(90deg);
}

@media screen and (max-width: 900px) {
	.subpage .frame-wrap {
		max-width: 740px;
	}
	
	.subpage .frame-wrap .frame-inner {
		padding: 60px 5%;
	}
	
	.subpage .frame-wrap::before,
	.subpage .frame-wrap::after,
	.subpage .frame-wrap .frame-inner::before,
	.subpage .frame-wrap .frame-inner::after {
		width: 40px;
		height: 40px;
	}
}


/* ==================================================
Lineup Area
================================================== */
#lineup-area {
}

#lineup-area .area-inner {
}

/* .table-title　※詳細は、tabswitch.css で設定
------------------------------ */
.table-title {
}


/* .list-detail
------------------------------ */
.list-detail {
	width: min(96%, 1600px);
	margin: 0 auto;
	overflow: hidden;
}


/* .head */
.list-detail .head {
	width: 98%;
	margin: 0 auto var(--clamp2);
}

.list-detail .head .note {
	font-size: var(--fz-regular);
	color: var(--color-gray-4);
	text-align: right;
}


/* .body */
.list-detail .body {
}


/* .foot */
.list-detail .foot {
	width: 98%;
	margin: var(--clamp5) auto 0;
}

.list-detail .foot .and-more {
	text-align: right;
	font-family: var(--font-en);
	font-weight: 400;
	font-size: clamp(24px, 14.069px + 3.103vw, 42px);
	line-height: 1;
	letter-spacing: 0;
	color: var(--color-aqua);
}

.list-detail .foot .and-more span {
	display: inline-block;
	margin: 0 0 0 auto;
	position: relative;
	padding-left: 1em;
}

.list-detail .foot .and-more span::before {
	content: "";
	width: 100vw;
	height: 1px;
	background-color: rgba(var(--rgb-aqua), 0.5);
	position: absolute;
	top: 0;
	bottom: 0;
	right: 100%;
	margin: auto 0;
	transform: translateY(5px);
}


/* .innofes-lineup
------------------------------ */
.innofes-lineup {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	flex-direction: row;
}

.innofes-lineup li {
	width: calc(100% / 3);
	padding: 0 1%;
	margin-bottom: var(--clamp5);
}

/**/
.innofes-lineup li.part-talk {}
.innofes-lineup li.part-live {}
.innofes-lineup li.part-camp {}
.innofes-lineup li.new {}
/**/


/* .thumb-wrap  */
.thumb-wrap {
}

.thumb-wrap .pct-frame {
	aspect-ratio: 43 / 40;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	padding: 6% 4.6% 0;
	cursor: pointer;
	transition: filter 0.4s ease-out 0s;
}

.thumb-wrap .pct-frame:hover {
	filter: var(--hover-filter-def);
}

.modal-none .thumb-wrap .pct-frame {
	pointer-events: none;
}

.part-talk .thumb-wrap .pct-frame {
	background-image: url(/iwf2023/asset_subpage/img/svg/frame_lineup_blue.svg);
}

.part-live .thumb-wrap .pct-frame {
	background-image: url(/iwf2023/asset_subpage/img/svg/frame_lineup_red.svg);
}

.part-camp .thumb-wrap .pct-frame {
	background-image: url(/iwf2023/asset_subpage/img/svg/frame_lineup_blue.svg);
}

.thumb-wrap .pct-frame .pct {
	margin-bottom: min(5%, 18px);
	overflow: hidden;
	position: relative;
}

.thumb-wrap .pct-frame .pct::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid rgba(var(--rgb-white), 0);
	transition: border 0.4s ease-out 0s;
}

.thumb-wrap .pct-frame:hover .pct::after {
	border: 1px solid rgba(var(--rgb-aqua), 1);
}

/*.part-talk .thumb-wrap .pct-frame:hover .pct::after,
.part-camp .thumb-wrap .pct-frame:hover .pct::after {
	border: 1px solid rgba(var(--rgb-talk), 1);
}

.part-live .thumb-wrap .pct-frame:hover .pct::after {
	border: 1px solid rgba(var(--rgb-live), 1);
}*/

.thumb-wrap .pct-frame .pct img {
	transition: transform 0.4s ease-out 0s;
}

.thumb-wrap .pct-frame:hover .pct img {
	transform: scale(1.06);
}

.thumb-wrap .pct-frame .label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: row;
	--part-width: clamp(96px, 40px + 13.333vw, 160px);
}

.thumb-wrap .pct-frame .label .tag {
	font-family: var(--font-en);
	font-weight: 400;
	font-size: clamp(13px, 8.625px + 1.042vw, 18px);
	line-height: 1;
	letter-spacing: 0;
	color: var(--color-yellow);
	width: calc((100% - var(--part-width)) / 2);
	padding-right: 1em;
	display: flex;
	justify-content: center;
	align-items: center;
}

.new .thumb-wrap .pct-frame .label .tag::before {
	content: "NEW";
	white-space: nowrap;
}

.thumb-wrap .pct-frame .label .part {
	position: relative;
	font-family: var(--font-mix);
	font-weight: 400;
	font-size: clamp(14px, 10.5px + 0.833vw, 18px);
	line-height: 1;
	letter-spacing: 0;
	color: var(--color-black);
	width: var(--part-width);
	padding: 0.15em 0 0.1em;
	white-space: nowrap;
}

.part-talk .thumb-wrap .pct-frame .label .part {
	background-color: var(--color-talk);
}

.part-live .thumb-wrap .pct-frame .label .part {
	background-color: var(--color-live);
}

.part-camp .thumb-wrap .pct-frame .label .part {
	background-color: var(--color-camp);
}

/*.thumb-wrap .pct-frame .label .part::before {
	width: 100%;
	height: 100%;
	display: block;
}*/

.part-talk .thumb-wrap .pct-frame .label .part:empty:before {
	content: "TALK";
}

.part-live .thumb-wrap .pct-frame .label .part:empty::before {
	content: "LIVE";
}

.part-camp .thumb-wrap .pct-frame .label .part:empty::before {
	content: "TALK";
}


.thumb-wrap .pct-frame .label .icon {
	position: relative;
	width: calc((100% - var(--part-width)) / 2);
}

.part-camp .thumb-wrap .pct-frame .label .icon::before {
	content: "";
	position: absolute;
	bottom: clamp(-24px, -15.25px + -2.083vw, -34px);
	right: -5px;
	width: clamp(48px, 30.5px + 4.167vw, 68px);
	aspect-ratio: 1 / 1;
	background: url(/iwf2023/asset_subpage/img/svg/icon_techcamp.svg) no-repeat center center;
	background-size: contain;
}

@media screen and (max-width: 900px) and (min-width: 421px) {
	.innofes-lineup li {
		width: calc(100% / 2);
	}
}

@media screen and (max-width: 420px) {
	.innofes-lineup li {
		width: min(90%, 340px);
		margin-left: auto;
		margin-right: auto;
	}
	
	.thumb-wrap .pct-frame {
		padding-top: 7%;
	}
	
	.thumb-wrap .pct-frame .label {
		--part-width: 100px;
	}
	
	.thumb-wrap .pct-frame .label .tag {
		font-size: 15px;
	}

	.thumb-wrap .pct-frame .label .part {
		font-size: 16px;
	}

	.part-camp .thumb-wrap .pct-frame .label .icon::before {
		bottom: -34px;
		width: 68px;
	}
}


.thumb-wrap .credit {
	margin-top: var(--clamp2);
	line-height: 1.2;
}

.thumb-wrap .credit .name {
	font-size: var(--fz-extra);
	line-height: 1.4;
	margin-bottom: 0.3em;
}

.thumb-wrap .credit .caption {
	font-size: var(--fz-regular);
	color: var(--color-gray-2);
	word-break: keep-all;
}

.thumb-wrap .credit .caption i {
	/*display: inline-block;*/
}


/* モーダルレイアウト
------------------------------ */
#modal-overlay {
	pointer-events: none;
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	height: 100lvh;
	display: flex;
	background-color: rgba(var(--rgb-black), 0.9);
	transition: opacity 0.6s ease-out 0s;
	opacity: 0;
}

/*html.scroll-off,
body.scroll-off { overflow: hidden; }*/

body.scroll-off #modal-overlay {
	pointer-events: auto;
	opacity: 1;
	
	/*display: flex;
	overscroll-behavior: contain;
	overflow-y: scroll;*/
}

/*body.scroll-off #modal-overlay::after {
  content: "";
  width: 1px;
  height: calc(100% + 1px);
}*/

.modal-wrap {
	pointer-events: none;
	position: fixed;
	z-index: 101;
	top: 0;
	left: 0;
	width: 100%;
	min-width: 320px;
	height: 100lvh;
	min-height: 520px;
	padding-top: 78px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: column;
	transition: opacity 0.6s ease-out 0s;
	opacity: 0;
}

@media screen and (max-width: 1000px) {
	.modal-wrap {
		padding-top: 40px;
		min-height: auto;
	}

}

.modal-wrap.modal-off {
	opacity: 0;
}

.modal-wrap.modal-on {
	opacity: 1;
	/*pointer-events: auto;
	overscroll-behavior: contain;
	overflow-y: auto;*/
}

/*.modal-wrap.modal-on::after {
	content: "";
	width: 1px;
	height: calc(100% + 1px);
}*/


.modal-frame {
	pointer-events: none;
	width: min(94%, 800px);
	height: auto;
	max-height: 88%;
	border: 1px solid rgba(var(--rgb-aqua), 0.4);
	background-color: var(--color-black);
	position: relative;
	box-shadow: 0 0 42px rgba(var(--rgb-aqua),0.4);
	transition: transform 0.6s ease-out 0s;
}

.modal-wrap.modal-off .modal-frame {
	transform: scale(0.4);
}

.modal-wrap.modal-on .modal-frame {
	pointer-events: auto;
	transform: scale(1);
}


.modal-close {
	cursor: pointer;
	position: absolute;
	top: 30px;
	right: 6%;
	width: clamp(24px, 5%, 40px);
	aspect-ratio: 1 / 1;
	background-image: url(/iwf2023/asset_subpage/img/svg/icon_close.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	transition: var(--transition-def);
}

.modal-close:hover {
	filter: var(--hover-filter-def);
	transform: scale(0.8);
}

.modal-frame-inner {
	text-align: left;
	/*overflow-y: auto;*/
	border-top: 10px solid var(--color-black);
	border-bottom: 10px solid var(--color-black);
	height: 100%;
	display: flex;
  flex-direction: column;
	overflow: hidden;
}


.modal-frame::before,
.modal-frame::after,
.modal-frame-inner::before,
.modal-frame-inner::after {
	content: "";
	position: absolute;
	width: 36px;
	height: 36px;
	border-top: 3px solid var(--color-aqua);
	border-left: 3px solid var(--color-aqua);
}

.modal-frame::before {
	top: -1px;
	left: -1px;
}

.modal-frame::after {
	top: -1px;
	right: -1px;
	transform: rotate(90deg);
}

.modal-frame-inner::before {
	bottom: -1px;
	left: -1px;
	transform: rotate(-90deg);
}

.modal-frame-inner::after {
	bottom: -1px;
	right: -1px;
	transform: rotate(180deg);
}


/* .modal-head */
.modal-head {
	position: sticky;
  top: 0;
  width: min(90%, 720px);
	margin-inline: auto;
	padding: 20px 14% 20px 0;
}

.modal-head .name {
	color: var(--color-white);
	font-size: var(--fz-extra);
	margin-bottom: 0.2em;
}

.modal-head .caption {
	color: var(--color-gray-3);
	font-size: var(--fz-regular);
	word-break: keep-all;
}

/* .modal-body */
.modal-body {
	flex-grow: 1;
	width: min(96%, 744px);
	margin-inline: auto;
	padding: 0 12px;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	overflow-y: auto;
	position: relative;
}

.modal-body .pct {
	margin-bottom: 1.5em;
}

.modal-body .pct img {
}

.modal-body .prof {
	color: var(--color-aqua);
	font-size: var(--fz-large);
	padding-bottom: 2em;
}

.modal-body .prof a {
}

.modal-body .prof a:link,
.modal-body .prof a:visited { text-decoration: underline; color: var(--color-blue-light); }
.modal-body .prof a:hover,
.modal-body .prof a:active { text-decoration: none; color: var(--color-blue-light); }


/* ==================================================
アーティスト個別ページ ※情報バックアップ用
================================================== */
.page-modal .innofes-lineup li {
	width: min(90%, 720px);
	margin-inline: auto;
}

.page-modal .modal-wrap {
	pointer-events: auto;
	position: relative;
	height: auto;
	opacity: 1;
}

.page-modal .modal-frame {
	pointer-events: auto;
	max-height: 100%;
}
