@charset "utf-8";

:root {
	/* base */
	--cts-gutter: clamp(35px, 1.942vw + 27.718px, 65px);
	--cts-width: 1330px;

	/* font */
	--dp-font-jp: "Noto Sans JP", sans-serif;      
	/* 100 to 900 */

	--cts-font:  "dunbar-text", sans-serif;
	/* 
	Medium 500
	Bold 700
	*/

	/* color */
	--color-white-1: #FFFFFF;
	--color-yellow-1: #E8EC2E;
	--color-blue-1: #011E60;
	--color-blue-2: #2D4E7F;
	--color-blue-3: #D0C9EE;
	--color-gray-1: #AFAFAF;
	--color-gray-2: #707070;
	--color-black-1: #000000;
	--color-red-1: #FF0000;
	--color-purple-1: #8C44F7;
}

/* LP共通汎用
____________________*/
body {
	padding-right: 0 !important;
	overflow: visible !important;
}
#container a, #container a span {
    color: inherit;
    text-decoration: none;
}
.pagetop {
	display: none;	
}
#pagetop {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 55px;
}
#pagetop a {
	color: #fff;
	background-color: #333;
	border-radius: 5px;
	display: block;
	font-size: 12px;
	line-height: 1.5em;
	padding: 5px 10px;
	text-align: center;
	text-decoration: none;
}
figure {
	margin: 0;
	text-align: center;
}
img {
	image-rendering: -webkit-optimize-contrast;
}
.l-header {
    width: 100%;
    background: #fff;
    position: relative;
}
.c-breadcrumb--gray {
	display: flex;
	align-items: center;
}
.bnr_link_win11_wrap {
    margin: 0 auto;
}
.bnr_link_win11 img {
    transition: opacity 0.3s;
    width: 300px;
}
.bnr_link_win11 img:hover {
	opacity: 0.75;
}
.BreadcrumbList_wrap {
	background: #fff;
	position: relative;
    z-index: 2;
}
.footer-wrap {
    background: #fff;
    position: relative;
    z-index: 2;
}
@media screen and (max-width: 1280px) {
    .l-header {
        z-index: 10;
    }
}
@media screen and (min-width: 768px), print and (min-width: 768px) {
	.c-breadcrumb__list.u-pc-width,
	.bnr_link_win11_wrap.u-pc-width {
		padding-inline: 30px;
	}
	.bnr_link_win11_wrap.u-pc-width {
		width: auto;
	}
}
@media screen and (max-width: 1000px) {
	.c-breadcrumb--gray {
		display: inherit;
	}
	.bnr_link_win11_wrap {
		width: 100%;
		margin: 10px auto 0 !important;
		padding-block-end: 10px;
	}
	.bnr_link_win11 {
		width: 100%;
		margin-top: 0;
		text-align: center;
	}
}
.contents__wrap {
	width: 100%;
	margin-inline: auto;
	font-size: var(--cts-font-size);
	font-family: var(--dp-font-jp);
	letter-spacing: 0.05em;
	color: var(--color-white-1);
}
.contents__wrap img {
	max-width: 100%;
	vertical-align: bottom;
}
.pc {
	display: block !important;
}
.sp {
	display: none !important;
}
.flash:hover {
	animation-name: hover-flash;
	animation-duration: 1s;
	opacity: .85;
}
@keyframes hover-flash {
	0% {
		opacity: .3;
	}
	100% {
		opacity: .85;
	}
}

/* コンテンツ
____________________*/
::selection {
	color: var(--color-blue-1);
	background-color: var(--color-white-1);
}
.contents__wrap {
	padding-bottom: 160px;
	position: relative;
	z-index: 1;
}
.contents__wrap .lp-bg {
	width: 100%;
	height: 100%;
	background: url(../../gamepc/img/cts-tgs2026/bg.webp) no-repeat center center/cover;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
}
.contents__inner {
	width: 100%;
	max-width: var(--cts-width);
	margin-inline: auto;
	padding-inline: var(--cts-gutter);
	box-sizing: border-box;
	position: relative;
	z-index: 3;
}
@keyframes blink {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0.2; /* 完全に消したくない場合は0.2、完全に消したい場合は0 */
	}
	100% {
		opacity: 1;
	}
}

/* 2. 各クラスと疑似要素にアニメーションを適用 */
.icon-new,
.nav-new,
.nav-toggle.new-icon::before {
  /* 
    blink: 上で定義したアニメーション名
    2s: 点滅の周期（2秒かけて1往復。もっと遅くしたい場合は 3s や 4s に変更してください）
    infinite: 無限に繰り返す
    ease-in-out: 動きを滑らかにする
  */
  animation: blink 2s infinite ease-in-out;
}
@media (max-width: 768px) {/*375-768*/
.pc {
	display: none !important;
}
.sp {
	display: block !important;
}
.contents__wrap {
	padding-bottom: 60px;
}
}

/* nav
____________________*/
.sticky-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: var(--color-white-1);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	transform: translateY(-100%);
	transition: transform 0.4s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

/* スクロールして基準を超えたら画面内に戻す */
.sticky-nav.is-active {
	transform: translateY(0);
}

.nav-inner {
	margin: 0 auto;
	padding: 15px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo-block {
	display: flex;
	align-items: center;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.logo-galleria {
	width: 241px;
	display: flex;
	padding-right: 20px;
	margin-right: 20px;
	border-right: 1px solid var(--color-gray-2);
}
.logo-tgs {
	width: 281px;
	display: flex;
}
.nav-menu {
	display: flex;
	align-items: center;
	list-style: none;
	gap: 50px;
}
.nav-menu li {
	display: flex;
	align-items: center;
	gap: 10px;	
}
.nav-menu a {	
	text-decoration: none;
	color: var(--color-blue-1);
	font-size: 16px;
	font-family: var(--cts-font);
	font-weight: bold;
	font-style: italic;
	line-height: 1;
	display: block;
	transition: 0.3s ease, opacity 0.3s ease;
}
.nav-menu a:hover {
	color: var(--color-yellow-1);
}
/* .nav-menu li:last-child a {
	color: var(--color-white-1);
	background: #011E60;
	padding: 20px 45px;
	border-radius: 9999px;
	transition: 0.3s ease, opacity 0.3s ease;
} */
.nav-menu li:last-child a:hover {
	/* background: var(--color-yellow-1); */
}
.nav-menu li .nav-new {
	width: 40px;
}
/* PC時はハンバーガーボタンを非表示 */
	.nav-toggle {
		display: none;
	}
	@media screen and (max-width: 769px) {

	/* 通常時は背景を透明にし、影も消す */
	.sticky-nav {
		background-color: transparent;
		box-shadow: none;
	}

	/* ハンバーガーが開いた（is-openがついた）ときだけ白背景と影を出す */
	.sticky-nav.is-open {
		background-color: #ffffff !important;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
	}

	/* 横並びのレイアウト調整（ボタンを常に右端、ロゴを常に左端に寄せる） */
	.nav-inner {
		padding: 25px 15px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		box-sizing: border-box;
	}

	/* ―― 【最重要】スマホ通常時のロゴは非表示にする ―― */
	.logo-block {
		opacity: 0;
		visibility: hidden;
	}
	.logo-galleria {
		width: 133px;
		padding-right: 10px;
		margin-right: 10px;
	}
	.logo-tgs {
		width: 130px;
	}

  /* 【最重要】メニュー展開時（is-open付与時）にロゴをフェードインさせる */
	.sticky-nav.is-open .logo-block {
		opacity: 1;
		visibility: visible;
	}

  /* ハンバーガーボタンを表示 */
	.nav-toggle {
		display: block;
		position: relative;
		width: 30px;
		height: 24px;
		background: none;
		border: none;
		cursor: pointer;
		z-index: 1001;
		margin-left: auto; /* 通常時に右端に寄せるための保険 */
	}
	.nav-toggle.new-icon::before {
		content: "";
		position: absolute;
		width: 40px;
		height: 40px;
		background: url(../../gamepc/img/cts-tgs2026/icon-new.webp) no-repeat center center/100% 100%;
		left: -50px;
		top: 50%;
		transform: translateY(-50%);
	}
	.nav-toggle.new-icon.is-open::before {
		display: none;
	}
  /* 三本線の共通設定 */
	.nav-toggle span {
		display: block;
		position: absolute;
		width: 100%;
		height: 3px;
		background-color: var(--color-white-1);
		left: 0;
		transition: all 0.3s ease;
	}

	.nav-toggle span:nth-child(1) { top: 0; }
	.nav-toggle span:nth-child(2) { top: 11px; }
	.nav-toggle span:nth-child(3) { top: 22px; }

	/* ハンバーガーボタンが「×」になるアニメーション */
	.nav-toggle.is-open span {
		background: var(--color-blue-1);
	}
	.nav-toggle.is-open span:nth-child(1) { transform: translateY(11px) rotate(30deg); }
	.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
	.nav-toggle.is-open span:nth-child(3) { transform: translateY(-11px) rotate(-30deg); }

	/* スマホ時のメニュー本体（ドロップダウン型） */
	.nav-menu {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: #ffffff;
		padding: 20px;
		box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);

		/* 初期状態は非表示 */
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		transition: all 0.3s ease;
	}

	/* メニュー展開時 */
	.nav-menu.is-open {
		opacity: 1 !important;
		visibility: visible !important;
		transform: translateY(0) !important;
	}

	.nav-menu li {
		min-height: 60px;
		border-bottom: 1px dashed var(--color-blue-1);
	}
	.nav-menu li:last-child {
		/* padding-top: 200px; */
		margin-bottom: 0;
		border: none;
	}
	.nav-menu li a {
		font-size: 18px;
	} 
	.nav-menu li:last-child a {
		/* padding: 16px 46px; */
	}
}
/* mv
____________________*/
.contents--mv {
	width: 100%;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.contents--mv img {
	width: 100%;
	max-width: 100%;
}
/* news
____________________*/
.contents--news {
	padding-top: 165px;
	position: relative;
	z-index: 1;
}
.news {
	display: flex;
	gap: 65px 125px;
}
.news .ttl-h2 {
	width: 180px;
	flex: none;
}
.news-list-wrap {
	width: 100%;
}
.news-list li {
	width: 100%;
	height: auto;
	min-height: 60px;
	font-size: 15px;
	line-height: 1.5;
	display: flex;
	align-items: center;
	gap: 20px;
	border-bottom: 1px dashed var(--color-blue-2);
	padding: 10px 50px;
	box-sizing: border-box;
}
.news-list li:nth-of-type(1) {
	border-top: 1px dashed var(--color-blue-2);
}
.news-list li .news-inner-block {
	display: flex;
	align-items: center;
	gap: 20px;
}
.icon-new {
	width: 40px;
	flex: none;
}
.txt-date {
	color: var(--color-yellow-1);
	font-family: var(--cts-font);
	font-size: clamp(13px, 0.129vw + 12.516px, 15px);
	font-weight: 700;
}
@media screen and (max-width: 952px) {
	.news {
		flex-wrap: wrap;
	}
}
@media (max-width: 768px) {/*375-768*/
	.contents--news {
		padding-top: 70px;
	}
	.news {
		gap: 35px;		
	}
	.news .ttl-h2 {
		width: 126px;
	}
	.news-list li {
		padding: 15px 0;
		gap: 15px;
	}
	.news-list li .news-inner-block {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}
}
/* ttl共通
____________________*/
.ttl-h3_img{
	height: 40px;
}
@media (max-width: 768px) {
	.ttl-h3_img{
		height: 25px;
	}
}
.ttl-h3_img img{
	height: 100%;
}

/* schedule
____________________*/
.contents--schedule {
	padding-top: 100px;
	padding-bottom: 110px;
}
.schedule {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.schedule .ttl-h2 {
	width: 313px;
}
.schedule-wrap {
	width: 100%;
	max-width: 822px;
	margin-top: 65px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 125px;
}
.schedule-wrap .schedule-inner {
	width: 100%;
	max-width: 346px;
	margin-inline: auto;
}
.schedule .ttl-h3 {
	color: var(--color-yellow-1);
	font-size: clamp(14px, 0.129vw + 12.516px, 16px);
	line-height: 1;
	text-align: center;
	border-bottom: 1px dashed var(--color-blue-2);
	padding-bottom: 10px;
}

.schedule-date {
	font-family: var(--cts-font);
	font-weight: 700;
	line-height: 1;
	display: grid;
	grid-template-columns: 155px 11em;
	align-items: end;
	gap: 20px;
	margin-top: 15px;
	justify-content: space-between;
}
.schedule-date dt {
	font-size: clamp(30px, 0.647vw + 27.573px, 40px);
}
.schedule-date dt .week {
	font-size: clamp(23px, 0.453vw + 21.301px, 30px);
}
.schedule-date dd {
	font-size: clamp(18px, 0.388vw + 16.544px, 24px);
	padding-bottom: 5px;
	border-bottom: 1px dashed var(--color-white-1);
}
.schedule .ttl-note {
	color: var(--color-blue-3);
	font-size: clamp(12px, 0.065vw + 11.756px, 13px);
	font-weight: 600;
	line-height: 1;
	padding: 7px 15px;
	border: 1px solid var(--color-blue-3);
	box-sizing: border-box;
	margin-top: 35px;
}
.schedule .txt-note {
	color: var(--color-blue-3);
	font-size: clamp(10px, 0.129vw + 9.516px, 12px);
	font-weight: 500;
	line-height: 1.8;
	text-align: center;
	margin-top: 10px;
}
@media screen and (max-width: 952px) {
	.schedule-wrap {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 768px) {/*375-768*/
	.contents--schedule {
		padding-top: 80px;
		padding-bottom: 40px;
	}
	.schedule .ttl-h2 {
		width: 220px;
		margin: 0 auto 0 0;
	}
	.schedule-wrap {
		margin-top: 40px;
		gap: 40px;
	}
	.schedule .ttl-h3 {
		text-align: left;
	}
	.schedule-date {
		grid-template-columns: 1fr 1fr;
		justify-content: flex-start;
	}
}
/* story
____________________*/
.contents--story {
	background: linear-gradient(0deg,rgba(0, 0, 0, 0) 0%,rgba(0, 0, 0, 1) 7%,rgba(0, 0, 0, 1) 50%,rgba(0, 0, 0, 1) 93%,rgba(0, 0, 0, 0) 100%);
	padding-top: 240px;
	padding-bottom: 240px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.contents--story::after {
	content: "";
	width: 1920px;
	height: 962px;
	background: url(../../gamepc/img/cts-tgs2026/bg-story.webp) no-repeat center center/contain;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 2;
}
.contents--story .story {
	height: 100%;
	position: relative;
	z-index: 3;
}
.contents--story .story .ttl-h2 {
	width: 197px;
	margin-inline: auto;
	position: relative;
	z-index: 3;
}
.contents--story .story .txt-story {
	width: 100%;
	max-width: 952px;
	margin-top: 75px;
	margin-inline: auto;
	position: relative;
	z-index: 3;
}
@media (max-width: 768px) {/*375-768*/
	.contents--story {
		background: linear-gradient(0deg,rgba(0, 0, 0, 0) 0%,rgba(0, 0, 0, 1) 7%,rgba(0, 0, 0, 1) 50%,rgba(0, 0, 0, 1) 93%,rgba(0, 0, 0, 0) 100%);
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.contents--story::after {
		background: url(../../gamepc/img/cts-tgs2026/bg-story.webp) no-repeat center center/40%;
	}
	.contents--story .story .ttl-h2 {
		width: 138px;
	}
	.contents--story .story .txt-story {
		max-width: 300px;
		margin-top: 30px;
		margin-left: auto;
        margin-right: auto;
	}
}
/* unpublished
____________________*/
.contents--unpublished {
	padding-top: 120px;
	padding-bottom: 120px;
}
.contents__wrap:nth-of-type(2) .contents--unpublished{
	padding-top: 80px;
	padding-bottom: 0px;
}
@media (max-width: 768px) {
	.contents__wrap:nth-of-type(2) .contents--unpublished{
		padding-top: 0;
	}
}
.contents--unpublished .ttl-h2 {
	width: 321px;
	margin-inline: auto;
}
.contents--unpublished:last-of-type .unpublished-list:last-of-type{
	margin-top: 0;
}
.unpublished-list {
	width: 100%;
	max-width: 1200px;
	margin-top: 60px;
}
.unpublished-list li {
	padding: 35px 50px;
	border-bottom: 1px dashed var(--color-blue-2);
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}
.unpublished-list li:nth-of-type(1) {
	border-top: 1px dashed var(--color-blue-2);
}
.inner-left {
	display: flex;
	align-items: center;
	gap: 46px;
}
.inner-left .number {
	color: var(--color-gray-1);
	font-family: var(--cts-font);
	font-size: clamp(11px, 0.583vw + 8.816px, 20px);
	font-weight: 700;
	line-height: 1;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex: none;
	border: 1px solid var(--color-gray-1);
}
.inner-left .number-light {
	color: var(--color-white-1);
	font-family: var(--cts-font);
	font-size: clamp(11px, 0.583vw + 8.816px, 20px);
	font-weight: 700;
	line-height: 1;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex: none;
	border: 1px solid var(--color-white-1);
}
@media (max-width: 768px) {
	.inner-left .number-light{
		width: 40px;
		height: 40px;
	}
}
.inner-left .txt-contents-name {
	color: var(--color-gray-1);
	font-size: clamp(28px, 1.165vw + 23.631px, 46px);
	line-height: 1;
	font-family: var(--cts-font);
	font-style: italic;
}
.inner-left .txt-contents-name-light{
	color: var(--color-white-1);
	font-size: clamp(28px, 1.165vw + 23.631px, 46px);
	line-height: 1;
	font-family: var(--cts-font);
	font-style: italic;
}
.txt-cp {
	color: var(--color-gray-1);
	font-size: clamp(12px, 0.324vw + 10.786px, 17px);
	font-weight: 500;
	line-height: 1;
	position: relative;
	display: flex;
	align-items: center;
	gap: 5px;
}
.txt-cp::before {
	content: "▶";
	font-size: 70%;
}
@media (max-width: 768px) {/*375-768*/
	.contents--unpublished {
		padding-top: 40px;
		padding-bottom: 50px;
	}
	.contents--unpublished .ttl-h2 {
		width: 225px;
		margin: 0 auto 0 0;
	}
	.unpublished-list {
		margin-top: 40px;
	}
	.unpublished-list li {
		padding: 20px 0;
		align-items: flex-start;
		flex-direction: column;
	}
	.inner-left {
		gap: 14px;
	}
	.inner-left .number {
		width: 35px;
		height: 35px;
	}
	.txt-cp {
		margin-left: 50px;
	}
}

/* guest
____________________*/
.contents--guest{
	padding-top: clamp(1.875rem, 0.455rem + 6.061vw, 5rem);
}
.guest-contents{
	padding-top: 50px;
	padding-bottom: clamp(2.1875rem, 1.487rem + 2.982vw, 3.75rem);;
	border-bottom: 1px dashed var(--color-blue-2);
}
.guest-contents ul{
	display: grid;
	grid-template-columns: repeat(auto-fit, 180px);
	gap: 24px;
	justify-content: center;
}
@media (max-width: 768px) {
	.guest-contents ul{
		grid-template-columns: repeat(auto-fit, 130px);
	}
}
.guest-contents ul li{
	display: flex;
	flex-direction: column;
	max-width: 180px;
	align-items: center;
}
.guest-contents ul li .guest-name{
	padding-top: clamp(0.625rem, 0.499rem + 0.533vw, 1.0625rem);
	font-size: clamp(0.75rem, 0.6648rem + 0.3636vw, 0.9375rem);
}
.guest-contents ul li .guest-name-sub{
	padding-top: 10px;
	font-size: clamp(0.6rem, 0.6rem + 0.12vw, 0.75rem);
	color: var(--color-blue-3);
}
@media (max-width: 768px) {
	.guest-contents ul li .guest-name-sub{
		letter-spacing: 0;
	}
}
.guest-contents ul li .collab-model{
	position: relative;
	padding-top: 10px;
	margin-left: 1em;
	font-size: clamp(0.6875rem, 0.6591rem + 0.1212vw, 0.75rem);
}
.guest-contents ul li .collab-model a{
	color: var(--color-white-1);
	text-decoration: none;
	transition: all 0.2s;
}
.guest-contents ul li .collab-model a:hover{
	color: var(--color-yellow-1);
}
.guest-contents ul li .collab-model::before{
	position: absolute;
	display: inline-block;
	content: "";
	width: 7px;
	height: 7px;
	background: var(--color-yellow-1);
	border-radius: 50%;
	top: 60%;
	left: -13px;
}

/* event
____________________*/
.contents--event{
	padding-top: clamp(1.875rem, 0.455rem + 6.061vw, 5rem);
}
.event-contents{
	padding-bottom: clamp(2.1875rem, 1.487rem + 2.982vw, 3.75rem);
	border-bottom: 1px dashed var(--color-blue-2);
}
.event-day-block{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	gap: 20px;
	color: var(--color-yellow-1);
	z-index: 1;
	padding-top: 50px;
}
@media (max-width: 768px) {
	.event-day-block{
		padding-top: 30px;
	}
}
.event-day-block:nth-of-type(n+2){
	padding-top: 70px;
}
@media (max-width: 768px) {
	.event-day-block:nth-of-type(n+2){
		padding-top: 40px;
	}
}
.event-day-ttl-set{
	display: flex;
	align-items: center;
	gap: 30px;
	z-index: 2;
}
.event-day{
	font-size: clamp(2.125rem, 1.983rem + 0.6061vw, 2.5rem);
	font-style: italic;
	white-space: nowrap;
	font-weight: 500;
	font-family: var(--cts-font);
}
.event-category{
	font-weight: 700;
	letter-spacing: 0.05em;
	font-size: clamp(1rem, 0.8864rem + 0.4848vw, 1.25rem);
	white-space: nowrap;
}
.event-day-block::after{
	content: "";
	width: 100%;
	height: 1px;
	background: radial-gradient(var(--color-yellow-1) 50%, transparent 50%);
	background-size: 5px 1px;
	background-repeat: repeat-x;
}
@media (max-width: 768px) {
	.event-day-block::after{
		display: none;
	}
}

/*------ モーダル ------*/
.event-list-item{
	position: relative;
	width: 100%;
}
@media (max-width: 768px) {
	.event-list-item{
	flex-direction: column;
	}
}
li.event-list-item:first-child{
	padding-top: 40px;
}
@media (max-width: 768px) {
	li.event-list-item:first-child{
		padding-top: 0;
	}
}
.event-list-item::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background: radial-gradient(#14305a 50%, transparent 50%);
	background-size: 5px 1px;
	background-repeat: repeat-x;
}
.list-contents{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 0;
}
@media (max-width: 768px) {
	.list-contents{
		display: flex;
		flex-direction: column;
	}
}
.list-contents-inner{
	display: contents;
}
@media (max-width: 768px) {
	.list-contents-inner{
		width: 100%;
		display: flex;
		flex-direction: row;
		gap: 20px
		;
	}
}
.event-detail{
	width: calc(100% - 135px);
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
}
@media (max-width: 768px) {
	.event-detail{
		width: 100%;
	}
}
.txt-wrap{
	width: 100%;
	display: flex;
	align-items: center;
	gap: 2.6vw;
}
@media (max-width: 768px) {
	.txt-wrap{
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
	}
}
.event-time{
	display: flex;
	align-items: center;
	width: auto;
	color: var(--color-white-1);
	font-family: var(--cts-font);
	font-size: clamp(18px, -0.545rem + 3.61vw, 22px);
	font-weight: 700;
	letter-spacing: 0.025em;
	transition: .3s;
	gap: 40px;
	white-space: nowrap;
}
@media (max-width: 768px) {
	.event-time{
		gap: 10px;
	}
}
.event-time::before {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 9px solid var(--color-yellow-1);
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
}
.event-time-nolink{
	display: flex;
	align-items: center;
	width: auto;
	color: var(--color-gray-1);
	font-family: var(--cts-font);
	font-size: clamp(18px, -0.545rem + 3.61vw, 22px);
	font-weight: 700;
	letter-spacing: 0.025em;
	transition: .3s;
	gap: 40px;
}
@media (max-width: 768px) {
	.event-time-nolink{
		gap: 10px;
	}
}
.event-time-nolink::before {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 9px solid var(--color-gray-1);
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
}
.event-name{
	color: var(--color-white-1);
	font-size: clamp(13px, 0.9rem + 0.96vw, 15px);
    font-weight: 500;
    line-height: 1.5;
	letter-spacing: 0.05em;
	transition: .3s;
	margin-top: 5px;
	padding-right: 1em;
}
.event-name-nolink{
	color: var(--color-gray-1);
	font-size: clamp(13px, 0.9rem + 0.96vw, 15px);
    font-weight: 500;
    line-height: 1.5;
	letter-spacing: 0.05em;
	transition: .3s;
	margin-top: 5px;
}
.icon-open {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	background: var(--color-yellow-1);
	border-radius: 50%;
	transition: .3s;
}
.icon-nolink{
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	background: var(--color-gray-1);
	border-radius: 50%;
	transition: .3s;
}
.event-detail:hover .event-time,
.event-detail:hover .event-name {
	color: var(--color-yellow-1);
}
.event-detail:hover .icon-open {
	transform: scale(1.1);
}
.icon-open img {
	width: 18px;
	height: 18px;
}
.icon-nolink img {
	width: 18px;
	height: 18px;
}
.event-sns-list {
	width: fit-content;
	display: flex;
	gap: 35px;
	margin-left: 40px;
}
@media (max-width: 768px) {
	.event-sns-list{
		margin-left: 0;
		gap: 55px;
		padding-top: 10px;
	}
}
.event-sns-list-item {
	position: relative;
	width: 100%;
	border-radius: 9999px;
}
.event-sns-list-item.youtube::before{
	position: absolute;
	display: inline-block;
	content: "";
	width: 7px;
	height: 7px;
	background: var(--color-red-1);
	border-radius: 50%;
	top: 43%;
	left: -13px;
}
.event-sns-list-item.twitch::before{
	position: absolute;
	display: inline-block;
	content: "";
	width: 7px;
	height: 7px;
	background: var(--color-purple-1);
	border-radius: 50%;
	top: 43%;
	left: -13px;
}
.event-sns-list-item.youtube_nolink::before{
	position: absolute;
	display: inline-block;
	content: "";
	width: 7px;
	height: 7px;
	background: var(--color-gray-1);
	border-radius: 50%;
	top: 43%;
	left: -13px;
}
.event-sns-list-item.twitch_nolink::before{
	position: absolute;
	display: inline-block;
	content: "";
	width: 7px;
	height: 7px;
	background: var(--color-gray-1);
	border-radius: 50%;
	top: 43%;
	left: -13px;
}
.event-sns-list-item{
	width: 100%;
	height: 30px;
	font-size: 12px;
	font-weight: 500;
	color: var(--color-blue-3);
	text-align: center;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
}
.event-sns-list-item a {
	width: 100%;
	height: 30px;
	font-size: 12px;
	font-weight: 500;
	color: var(--color-blue-3);
	text-align: center;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .3s;
}
.event-sns-list-item a:hover {
	color: var(--color-yellow-1);
}
.event-sns-list-item.youtube {
	background: var(--cts-color9);
}
.event-sns-list-item.twitch {
	background: var(--cts-color10);
}
.event-sns-list-item.none {
	pointer-events: none;
	background: var(--cts-bg3);
}
/* modal(event) */
.modals {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}
.modals.active {
    background-color: rgba(0, 0, 0, 0.5);
}
.event-modal-contents {
    width: unset;
    color: var(--color-blue-1);
    position: relative;
    box-shadow: 0px 5px 15px 0px rgba(0, 77, 161, 0.4);
    border-radius: 20px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.modals.active .event-modal-contents {
    opacity: 1;
    transform: scale(1);
}
.modal-body {
    background: var(--color-white-1);
    width: 800px;
    height: 467px;
    box-sizing: border-box;
    padding: 10px 10px 0 0;
    overflow: hidden;
}
.modal-body-inner {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 50px 50px 60px 60px;
    box-sizing: border-box;
}
.modal-body-inner::-webkit-scrollbar {
    width: 8px;
}
.modal-body-inner::-webkit-scrollbar-thumb {
    background-color: #DCDCDC;
    border-radius: 0;
}
.modal-body-inner::-webkit-scrollbar-track {
    background-color: #fff;
}
.modal-close {
    position: absolute;
    top: -5px;
    right: -48px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-close::before,
.modal-close::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--color-white-1);
}
.modal-close::before {
    transform: rotate(45deg);
}
.modal-close::after {
    transform: rotate(-45deg);
}
.modal_event_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.modal_event_time {
    font-family: var(--cts-font);
    font-size: clamp(18px, 0.045rem + 1.61vw, 25px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
}
.modal_event_venue {
    font-size: clamp(13px, 0.045rem + 1.61vw, 18px);
    font-weight: 700;
    line-height: 1.2;
}
.modal_event_title {
    font-size: clamp(16px, 0.045rem + 1.61vw, 23px);
    font-weight: 700;
    line-height: 1.2;
    margin: 10px 0 0;
}
.modal_event_description {
    margin: 20px 0 0;
}
.modal_event_description p {
    font-size: clamp(12px, 0.045rem + 1.61vw, 15px);
    line-height: 1.6;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.05em;
}
.modal_event_description p + p {
    margin: 1em 0 0;
}
.person_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 17px;
    margin: 20px 0 0;
}
.person_list_item {
    width: 100%;
    max-width: 120px;
}
.person_list_item.prof-plus {
	max-width: inherit;
	display: flex;
	gap: 28px;
}
.person_list_item img {
    width: 100%;
}
.person_list_item.prof-plus figure {
	width: 100%;
	max-width: 120px;
}
.person_list_item figcaption {
    display: block;
    font-size: clamp(11px, 0.045rem + 1.61vw, 12px);
    line-height: 1.4;
    margin: 5px 0 0;
}
.person_list_item figcaption span {
    display: block;
}
.prof-txt {
	font-size: clamp(11px, 0.045rem + 1.61vw, 14px);
    line-height: 1.4;
}

/* map
____________________*/
.contents--map{
	padding-top: clamp(1.875rem, 0.455rem + 6.061vw, 5rem);
}
.map-contents{
	max-width: 820px;
	margin-inline: auto;
	padding-top: 50px;
}
@media (max-width: 768px) {
	.map-contents{
		padding-top: 30px;
	}
}
.map-txt{
	text-align: center;
	font-size: clamp(0.625rem, 0.5682rem + 0.2424vw, 0.75rem);
	line-height: 1.8;
	font-weight: 500;
	letter-spacing: 0.05rem;
	color: var(--color-blue-3);
	padding-top: 40px;
}
@media (max-width: 768px) {
	.map-txt{
		padding-top: 20px;
	}
}
.map-note{
	width: fit-content;
	margin-inline: auto;
	border: solid 1px var(--color-blue-3);
	padding: 7px 15px;
	margin-bottom: 10px;
	font-size: clamp(12px, 0.065vw + 11.756px, 13px);
	font-weight: 600;
	line-height: 1;
}

/* partner
____________________*/
.contents--partner{
	padding-top: clamp(1.875rem, 0.455rem + 6.061vw, 5rem);
}
.partner{
	text-align: center;
}
.partner img{
	zoom: 0.5;
}
@media (max-width: 768px) {
	.partner img{
		zoom: 0.25;
	}
}
.partner-contents{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 25px;
	padding-top: 50px;
	padding-bottom: clamp(2.1875rem, 1.193rem + 4.242vw, 4.375rem);
	border-bottom: 1px dashed var(--color-blue-2);
}

/* slider
____________________*/
/* スライダー全体のコンテナ */
.slider-container {
	overflow: hidden;
	width: 100%;
	padding: 130px 0 0;
	display: flex;
	position: relative;
	z-index: 1;
}
@media (max-width: 768px) {
	.slider-container{
		padding-top: 50px;
	}
}
/* 画像を並べるラッパー */
.slider-track {
	display: flex;
	flex-shrink: 0; 
}

/* 各アイテム（165px指定） */
.slider-item {
	width: 165px;
	margin-right: 100px; /* 画像間の余白 */
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0; /* 画面幅が狭くても縮まないように固定 */
}
@media (max-width: 768px) {/*375-768*/
	.slider-item {
		width: 140px;
		margin-right: 50px;
	}
}
/* 戻るボタン
____________________*/
.page-top-btn {
	position: fixed;
	right: 50px;  /* 画面右からの距離 */
	bottom: 50px; /* 画面下からの距離 */
	z-index: 999; /* ナビ（1000）より下に配置 */
	width: 161px;  /* ボタンの横幅（画像の大きさに合わせて調整してください） */
	height: auto;
	cursor: pointer;

	/* ―― 【最重要】ニュルっと出すための初期設定 ―― */
	opacity: 0;
	visibility: hidden;
	transform: translateY(30px); /* 30pxだけ下に沈ませて隠しておく */
	transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

/* 画像自体のレスポンシブ対応 */
.page-top-btn img {
	width: 100%;
	height: auto;
	display: block;
}

/* ホバー時にゆっくり透明度を変える（お好みで変更可能） */
.page-top-btn a {
	display: block;
	transition: opacity 0.3s ease;
}
.page-top-btn a:hover {
	opacity: 0.7;
}

/* ―― 【アクティブ時】スクロールされてクラスがついたら画面内に出す ―― */
.page-top-btn.is-show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0); /* 元の位置に戻すことでニュルっと浮き出る */
}
@media (max-width: 768px) {/*375-768*/
	.page-top-btn {
		width: 100px;
		right: 20px;
		bottom: 20px;
	}
}