@charset "utf-8";

:root {
	/* base */
	--cts-gutter: clamp(37px, -0.412rem + 8.91vw, 65px);/*375-768*/
	--cts-width: 1330px;

	/* font */
	--dp-font-jp: "Noto Sans JP", sans-serif;
	/* Noto Sans JP
	Noto Sans JP Thin 100
	Noto Sans JP Light 300
	Noto Sans JP Regular 400
	Noto Sans JP Medium 500
	Noto Sans JP Bold 600
	*/
	--cts-font-01: "dunbar-text", sans-serif;
	--cts-font-02: 'Outfit', sans-serif;
	/* Outfit
	Outfit Medium 500
	Outfit bold 700
	*/
	--cts-font-03: "din-2014", sans-serif;
	/* font-weight: 700; */

	--dp-h1-size: clamp(24px,calc(1.159rem + 1.45vw),36px);
	--dp-h2-size: clamp(20px,calc(1.023rem + .97vw),28px);
	--dp-h3-size: clamp(18px,calc(.955rem + .73vw),24px);
	--dp-h4-size: clamp(16px,calc(.886rem + .48vw),20px);
	--dp-p-l-size: clamp(14px, 0.806rem + 0.3vw, 16px);/* 本文 Large */
	--dp-p-note-size: clamp(10px,calc(.597rem + .12vw),11px);/* 本文 Notes */
	--dp-price-s-size: clamp(16px,calc(.886rem + .48vw),20px);/* 価格 Small */
	--dp-price-tax-s-size: clamp(12px,calc(.693rem + .24vw),14px);/* 円・税 Small */

	--cts-font-size: clamp(12px, 0.636rem + 0.48vw, 16px);
	--cts-font-ls: .025em;/*letter-spacing*/

	/* color */
	--dp-color: #001E60;
	--dp-color2: #fff;
	--cts-color: #E8EC2E;
	--cts-color2: #7ED0FF;
	--cts-color3: #1E6FC8;
	--cts-bg: #000;
}


/* LP共通汎用
____________________*/
#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 (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;
	background: var(--dp-color);
	font-size: var(--cts-font-size);
	font-family: var(--dp-font-jp);
	color: #fff;
	overflow: hidden;
}
.contents__wrap img {
	max-width: 100%;
	vertical-align: bottom;
}
.contents {
	margin-top: 120px;
	margin-bottom: 120px;
	position: relative;
	z-index: 3;
}
.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;
	}
}
.contents__inner {
	width: 100%;
	max-width: var(--cts-width);
	margin-inline: auto;
	padding-inline: var(--cts-gutter);
	box-sizing: border-box;
}
.contents__wrap .link__inner {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-block: clamp(5px,0.236rem + 1.38vw,12px);
	padding-inline: clamp(25px,0.737rem + 2vw,40px);
	min-height: 50px;
	background: var(--dp-color);
	font-size: clamp(15px, 0.545rem + 1.61vw, 18px);
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	letter-spacing: var(--cts-font-ls);
	box-sizing: border-box;
	overflow: hidden;
	z-index: 1;
	border-radius: 4px;
	width: 100%;
}
.link__inner::before {
	position: absolute;
	content: "";
	width: 150%;
	height: 100%;
	top: 0;
	left: -168%;
	background: #fff;
	transform: skewX(-18deg);
	opacity: .3;
	z-index: -1;
}
.link__inner::after {
	content: "";
	position: absolute;
	top: calc(50% - 5px);
    right: 24px;
    width: 9px;
    height: 9px;
    border-right: 1px solid;
    border-bottom: 1px solid;
	border-color: #fff;
	transform: rotate(-45deg);
}
.link--over::before {
	animation: link-over ease-out .4s both;
}
.link--out::before {
	animation: link-out ease-in .4s both;
}
.map .note_ttl {
	width: 100%;
	max-width: 353px;
	margin: 50px auto 0;
	color: var(--dp-color);
	font-size: clamp(16px, 0.345rem + 1.61vw, 18px);
	font-weight: 700;
	text-align: center;
    background: none;
    border: 2px solid var(--dp-color);
	border-radius: 9999px;
	padding: 10px;
}
.map_note {
	color: var(--dp-color);
	font-size: clamp(12px, 0.345rem + 1.61vw, 16px);
	font-weight: 500;
	text-align: center;
	line-height: 1.8;
	margin: 20px 0 0;
}
@keyframes link-over {
	0% {
		left: -168%;
	}
	100% {
		left: -18%;
	}
}
@keyframes link-out {
	0% {
		left: -18%;
	}
	100% {
		left: 168%;
	}
}


/* コンテンツ
____________________*/
.contents__wrap {
	padding-block-end: 0;
	position: relative;
	z-index: 1;
}
.contents__wrap .bg {
	position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    background: url(../../gamepc/img/cts-tgs2024/bg.webp) repeat-y 0 0/100% auto;
}
.contents__wrap .bg2 {
	position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2;
    background: url(../../gamepc/img/cts-tgs2024/bg_2.webp) repeat-y 0 0/100% auto;
}
.contents__wrap .link__inner {
	color: var(--dp-color);
	font-size: clamp(13px, 0.345rem + 1.61vw, 17px);
	font-weight: 700;
	text-align: center;
	background: var(--cts-color);
	border-radius: 9999px;
	padding-block:0;
    padding-inline: 0;
}
.contents__wrap .link__inner span {
	position: relative;
	padding-block: clamp(5px,0.236rem + 1.38vw,18px);
    padding-inline: clamp(25px,0.737rem + 2vw,40px);
	width: 100%;
	height: 100%;
}
.contents__wrap .link__inner::after {
	border-right: 1px solid;
    border-bottom: 1px solid;
	border-color: var(--dp-color);
}
.ttl_wrap {
	display: flex;
	justify-content: center;
	align-items: center;
}
.ttl_wrap .icon {
	width: 66px;
	margin-right: 20px;
}
.ttl_wrap h2 {
	width: min-content;
	font-family: var(--cts-font-01);
	font-size: clamp(37px, 0.545rem + 4.61vw, 60px);
	font-weight: 700;
	letter-spacing: 0.1px;
}
/* sub_nav
____________________*/
.sub_nav_wrap {
	display: none;
	background: rgb(30,111,200);
	background: linear-gradient(90deg, rgba(30,111,200,1) 0%, rgba(57,163,167,1) 50%, rgba(218,224,0,1) 100%);
	border-bottom: 1px solid var(--cts-color);
}
.sub_nav_wrap.fixed {
	position: fixed;
	top: 0;
	padding: 0;
	width: 100%;
	z-index: 999;
}
.sub_nav__inner {
	padding: 0;
	position: relative;
}
.sub_nav__inner .logo_gb {
    width: 195px;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translate(0, -50%);
}
.submenu__list {
	display: flex;
	justify-content: center;
	gap: 50px;
	padding: 18px 0;
}
.submenu__list .menu__item a {
	position: relative;
    color: var(--dp-color2);
	font-display: var(--cts-font-01);
    font-size: clamp(14px, 0.652rem + 0.36vw, 18px);
    font-weight: 900;
    letter-spacing: .08em;
    transition: all .3s;
    text-align: center;
	text-decoration: none;
	display: block;
}
.submenu__list .menu__item a:hover {
	transform: scale(1.1);
  }
   
.submenu__list .menu__item.current a {
	color: var(--cts-color);
}
.submenu__list .menu__item a:hover {

}
.submenu-btn {
	display: none;
}
/* mv
____________________*/
.contents--mv {
	width: 100%;
	padding: 0;
	position: relative;
	z-index: 2;
	margin-top: 0;
}
.contents--mv img {
	width: 100%;
	padding: 0;
	position: relative;
	vertical-align: bottom;
}

/* news
____________________*/
.contents--news::before {
	content: "";
	width: 100%;
	height: 120px;
	position: absolute;
	top: -120px;
	left: 0;
	z-index: 3;
	background: rgb(0,30,96);
	background: linear-gradient(0deg, rgba(0,30,96,0) 0%, rgba(0,30,96,1) 85%);
}
.top_bnr_wrap {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto 100px;
	padding-inline: var(--cts-gutter);
	box-sizing: border-box;
}
.topics_wrap {
	width: 100%;
	max-width: 600px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	margin: 30px auto 0;
	border-top: 1px solid var(--cts-color3);
	border-bottom: 1px solid var(--cts-color3);
	padding: 5px 0;
}
.topics_wrap + .topics_wrap {
	margin-top: 0;
	border-top: none;
}
.topics_wrap .topics_list {
	width: 100%;
	max-width: 490px;
	font-size: clamp(11px, 0.045rem + 1.61vw, 16px);
	color: var(--cts-color);
	letter-spacing: 1px;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
}
.topics_wrap .topics_list dt {
	width: 110px;
	font-family: var(--cts-font-01);
	font-weight: 400;
}
.topics_wrap .topics_list dd {
	width: calc(100% - 110px);
}
.topics_wrap .topics_list dd a {
	color: var(--cts-color);
	text-decoration: underline;
}
.topics_wrap .topics_list dd a:hover {
	text-decoration: none;
}
.date_wrap {
	width: 100%;
	max-width: 535px;
	margin: 100px auto 0;
}
.date {
	display: flex;
	flex-wrap: nowrap;
	gap: 35px;
}
.date + .date {
	margin-top: 25px;
}
.date dt {
	font-size: clamp(12px, 0.045rem + 1.61vw, 20px);
	font-weight: 700;
	color: var(--cts-color2);
	line-height: 1;
	white-space: nowrap;
	width: 130px;
	flex: none;
	padding-top: 12px;
}
.date dd {
	font-family: var(--cts-font-01);
	font-weight: 700;
	line-height: 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 15px 35px;
}
.date dd .day {
	font-size: clamp(33px, 0.045rem + 3.61vw, 40px);
	width: 165px;
	line-height: 1;
}
.date dd .time {
	font-size: clamp(17px, 0.045rem + 1.61vw, 24px);
	line-height: 1.2;
	letter-spacing: 1px;
}
.news_note {
	display: block;
	width: 100%;
	max-width: 784px;
	font-size: 13px;
	line-height: 1.7;
	letter-spacing: 1.2px;
	margin: 40px auto 0;
}
/* campaign
____________________*/
.cp_wrap {
	display: flex;
	margin: 30px 0 0;
	background: var(--dp-color2);
	box-shadow: 0px 5px 15px 0px rgba(0, 77, 161, 0.4);
	border-radius: 32px;
}
.cp_wrap + .cp_wrap {
	margin-top: 50px;
}
.cp_wrap .cp_bnr {
	width: 63.3%;
	max-width: 760px;
}
.cp_wrap .cp_txt_box {
	width: 36.7%;
	max-width: 440px;
	padding: 38px 56px;
	color: var(--dp-color);
	box-sizing: border-box;
}
.ttl_wrap_cp {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.ttl_wrap_cp .cp_number {
	font-family: var(--cts-font-02);
	font-size: clamp(47px, 0.045rem + 5.61vw, 75px);
	font-weight: 700;
	line-height: 1;
}
.ttl_wrap_cp h3 {
	font-family: var(--cts-font-01);
	font-size: clamp(15px, 0.045rem + 3.61vw, 23px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 1.3px;
	margin-left: 30px;
}
.cp_name {
	font-size: clamp(22px, 0.045rem + 3.61vw, 30px);
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.5px;
}
.cp_catch {
	font-size: clamp(16px, 0.045rem + 3.31vw, 20px);
	font-weight: 700;
	margin-top: 20px;
	line-height: 1.7;
}
.cp_sub_txt {
	font-size: clamp(14px, 0.045rem + 3.31vw, 17px);
	font-weight: 700;
	margin-top: 20px;
	line-height: 1.7;
}
.cp_txt_box .link_wrap {
	margin-top: 25px;
}
.cp_txt_box .link_wrap .link__inner + .link__inner {
	margin-top: 10px;
}
.c_pc {
	display: block;
}
.c_sp {
	display: none;
}
.cp_wrap.end {
	position: relative;
	z-index: 1;
}
.cp_wrap.end:before {
	content: "終了しました";
	color: var(--cts-color);
	font-size: clamp(35px, 0.045rem + 3.31vw, 50px);
	font-weight: 700;
	text-shadow: 1px 1px 2px #333 ;
	white-space: nowrap;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 3;
}
.cp_wrap.end:after {
    content: "";
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: rgba(30, 30, 30, 0.5);
    position: absolute;
    padding: 10px;
    top: -10px;
    left: -10px;
    z-index: 2;
}
/* guest
____________________*/
.contents--guest {
	background: url(../../gamepc/img/cts-tgs2024/bg_guest_pc.webp) no-repeat center top /100% fixed;
	margin: 0;
	padding-top: 120px;
    padding-bottom: 135px;
	position: relative;
}
.contents--guest .slick-initialized .slick-slide {
    min-width: 2201px;
}
.guest_list_wrap {
	max-width: 1020px;
    margin: 60px auto 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}
.guest_list {
	width: fit-content;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 55px 30px;
}
.guest_list_item {
	width: 100%;
	max-width: 180px;
}
.guest_thum {

}
.guest_prof {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	margin: 10px 0 0;
}
.guest_job {
	font-size: clamp(10px, 0.045rem + 1.61vw, 14px);
	font-weight: 400;
}
.guest_name {
	font-size: clamp(13px, 0.045rem + 1.61vw, 17px);
	font-weight: 700;
	margin: 5px 0 0;
}
.guest_page {
	width: 100%;
	max-width: 100px;
	display: block;
	color: var(--dp-color2);
	font-size: clamp(10px, 0.045rem + 1.61vw, 14px);
	font-weight: 400;
	text-align: center;
	text-decoration: none;
	border: 1px solid var(--dp-color2);
	margin: 10px auto 0;
	padding: 4px 5px;
	box-sizing: border-box;
	transition: .3s;
}
.guest_page:hover {
	color: var(--cts-color);
	border-color: var(--cts-color);
}
.sns_list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin: 10px auto 0;
}
.sns_list_item a {
	display: block;
	transition: .3s;
}
.sns_list_item a:hover {
	transform: scale(1.1);
}
.icon_x {
	width: 100%;
	max-width: 23px;
}
.icon_y {
	width: 100%;
	max-width: 30px;
}
.icon_t {
	width: 100%;
	max-width: 25px;
}
.and_more {
	font-family: var(--cts-font-01);
	font-size: clamp(34px, 1.9rem + 0.96vw, 40px);
	font-weight: 700;
	margin: 100px 0 0;
}
/* event
____________________*/
.contents--event {
	background: url(../../gamepc/img/cts-tgs2024/bg_event_pc.webp) repeat-y center top/cover;
	padding-top: 120px;
    padding-bottom: 120px;
	margin: 0;
}
.contents--event .x_wrap {
    width: 100%;
    max-width: 700px;
    margin: 70px auto 0;
}
.event_wrap {
	margin: 70px 0 0;
}
.event_wrap + .event_wrap {
	margin: 50px 0 0;
}
.event_ttl_wrap {
	color: var(--cts-color);
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	position: relative;
}
.event_ttl_wrap::after {
	content: "";
	width: 100%;
	height: 2px;
	background: var(--cts-color);
	box-sizing: border-box;
	margin-left: 20px;
}
.event_ttl_wrap .event_ttl_date {
	font-family: var(--cts-font-01);
	font-size: clamp(34px, 1.9rem + 0.96vw, 40px);
	font-weight: 700;
	letter-spacing: 2px;
	flex: none;
}
.event_ttl_wrap .event_ttl_day {
	font-size: clamp(16px, 1.9rem + 0.96vw, 20px);
	font-weight: 700;
	letter-spacing: 3px;
	flex: none;
	margin-left: 25px;
}
.event_list {
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
}
.event_list_item {
	border-bottom: 1px solid #707070;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}
.event_list_item > a {
	width: calc(100% - 138px);
	color: var(--dp-color2);
	text-decoration: none;
	padding: 34px 0 19px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	transition: .3s;
}
.event_list_item > a .event_list_item_inner {
	width: calc(100% - 70px);
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}
.event_list_item > a .event_category {
	font-size: clamp(9px, 0.2rem + 0.96vw, 11px);
	font-weight: 700;
	text-align: center;
	padding: 7px 5px;
	box-sizing: border-box;
	width: 140px;
	border-radius: 9999px;
	background: #0081FF;
}
.event_list_item > a .event_category.orange {
	background: #F15A23;
}
.event_list_item > a .event_category.magenta {
	background: #FF0099;
}
.event_list_item > a .event_time {
	width: 162px;
	font-family: var(--cts-font-01);
	font-size: clamp(18px, 0.9rem + 0.96vw, 25px);
	font-weight: 700;
	margin-left: 20px;
}
.event_list_item > a .event_name {
	width: calc(100% - 342px);
    font-size: clamp(16px, 0.9rem + 0.96vw, 18px);
    font-weight: 700;
    line-height: 1.5;
    margin-left: 20px;
}
.event_list_item > a .icon_window {
	width: 100%;
	max-width: 51px;
	margin-left: auto;
	transition: .3s;
}
.event_list_item > a:hover {
	color: var(--cts-color);
	transition: .3s;
}
.event_list_item > a:hover .icon_window {
	transform: scale(1.1);
}
.event_list_item .event_sns_list {
	width: 100%;
	max-width: 98px;
	margin: 13px 0 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
}
.event_sns_list_item {
	width: 100%;
}
.event_sns_list_item .link__inner {
	color: var(--dp-color2);
	font-size: 11px;
	font-weight: 700;
	min-height: 30px;
}
.event_sns_list_item .link__inner::after {
	content: none;
}
.event_sns_list_item .link__inner.sns_y {
	background: #FF0000;
}
.event_sns_list_item .link__inner.sns_t {
	background: #8C44F7;
}
/* coming-soon */
.event_list_item.event-coming-soon > a {
	pointer-events: none;
}
.event_list_item.event-coming-soon > a .event_name {
	position: relative;
}
.event_list_item.event-coming-soon > a .event_name:before {
    content: "COMING SOON";
    color: var(--cts-color);
    font-size: clamp(25px, 0.045rem + 3.31vw, 30px);
    font-weight: 700;
    text-shadow: 1px 1px 2px #333;
    white-space: nowrap;
    position: absolute;
    top: 50%;
    left: calc(50% + 26px);
    transform: translate(-50%, -50%);
    z-index: 3;
}
.event_list_item.event-coming-soon > a .event_name:after {
	content: "";
    width: calc(100% + 80px);
    height: calc(100% + 40px);
    background: rgba(30, 30, 30, 1);
    position: absolute;
    padding: 10px;
    top: -20px;
    left: -10px;
    z-index: 2;
}
.cosplay {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.event_wrap_cosplay {
	margin: 70px 0 0;
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 50px;
}
.event_wrap_cosplay_inner {
	color: var(--dp-color);
	width: 537px;
	padding: 40px;
	background: var(--cts-color);
	box-sizing: border-box;
}
.cosplay_event_ttl {
	font-size: clamp(16px, 0.75rem + 0.96vw, 22px);
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 1px;
	text-align: center;
}
.cosplay_event_list {
	margin: 20px 0 0;
	font-size: clamp(16px, 0.75rem + 0.96vw, 20px);
	font-weight: 500;
	line-height: 1.9;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-align: left;
}
.cosplay_event_list_item {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.cosplayer_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 21px;
	margin: 30px 0 0;
}
.cosplayer_list_item {
	width: 138px;
}
.cosplayer_list_item figure figcaption {
	font-size: clamp(10px, 0.25rem + 0.96vw, 13px);
	font-weight: 700;
	line-height: 1.4;
	margin: 5px 0 0
}
.event_wrap_cosplay_inner .guest_page {
	color: var(--dp-color);
	border-color: var(--dp-color);
}
/* モーダル */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
.modal-content {
	width: unset;
	color: var(--dp-color);
    position: relative;
    box-shadow: 0px 5px 15px 0px rgba(0, 77, 161, 0.4);
}
.modal-body {
    background: var(--dp-color2);
	width: 800px;
    height: 467px;
	box-sizing: border-box;
	border: 2px solid var(--dp-color);
	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(--dp-color2);
}
.modal-close::before {
    transform: rotate(45deg);
}
.modal-close::after {
    transform: rotate(-45deg);
}
.modal.active {
    display: flex;
}
.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-01);
	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, 16px);
	line-height: 1.6;
}
.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 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;
}
/* map
____________________*/
.bg_border {
	background: url(../../gamepc/img/cts-tgs2024/bg_map_pc.webp) repeat-y center center/cover;
	padding-bottom: 120px;
	position: relative;
	z-index: 2;
	margin-bottom: -1px;
}
.contents--map {
	padding-top: 120px;
    padding-bottom: 0;
	margin: 0;
	position: relative;
}
.map .ttl_wrap h2 {
	color: var(--dp-color);
}
.map_content {
	width: 100%;
	max-width: 820px;
	margin: 70px auto 0;
}
.map_content_item + .map_content_item {
	margin: 70px 0 0;
}
.map_content_item.booth_number {
	box-shadow: 0px 5px 15px 0px rgba(0, 77, 161, 0.4);
}
/* present
____________________*/
.ttl_wrap_sub {
	margin: 80px 0 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}
ul + .ttl_wrap_sub {
	margin: 70px 0 0;
}
.ttl_wrap_sub .sub_ttl {
	color: var(--cts-color);
	font-size: clamp(24px, 0.045rem + 1.61vw, 36px);
	line-height: 1.4;
	letter-spacing: 1px;
	position: relative;
	margin: 0 0 20px;
}
.ttl_wrap_sub .sub_ttl::after {
	content: "";
	display: block;
	width: 60px;
	height: 2px;
	background: var(--dp-color2);
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translate(-50%,-50%);
}
.ttl_wrap_sub .ttl_sub_txt {
	font-size: clamp(16px, 0.045rem + 1.61vw, 17px);
	font-weight: 700;
	line-height: 1.4;
	margin: 20px 0 0;
}
.present_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: 50px;
	margin: 40px 0 0;
}
.present_list_item {
	width: 100%;
	max-width: 320px;
	background: var(--dp-color2);
	color: var(--dp-color);
	border-radius: 20px;
	padding: 18px 0 100px;
	position: relative;
	z-index: 1;
}
.present_list_item .present_image {
	position: relative;
	z-index: 1;
}
.present_list_item .present_ttl_wrap {
	width: 90%;
	position: absolute;
	bottom: -18px;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}
.present_ttl_wrap .arch {
	width: 100%;
	max-width: 60px;
}
.present_ttl_wrap .present_number {
	font-family: var(--cts-font-02);
	font-size: clamp(50px, 0.045rem + 4.61vw, 66px);
	font-weight: 700;
	line-height: 1;
	margin: 5px 0 0;
}
.present_ttl_wrap .present_name {
	font-size: clamp(15px, 0.045rem + 1.61vw, 17px);
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 1px;
	text-align: center;
	margin: 5px 0 0;
}
.present_note {
	font-size: 13px;
	font-weight: 400;
	text-align: center;
	margin: 40px 0 0;
	letter-spacing: 1px;
	line-height: 1.8;
}

.present .link_wrap {
	max-width: 324px;
	margin: 40px auto 30px;
}
/* display-model​
____________________*/
.contents--display-model {
	margin-top: 0;
    margin-bottom: 0;
	padding-top: 120px;
	padding-bottom: 120px;
	background: #001134;
}
.model_image {
	width: 100%;
	max-width: 475px;
	margin: 45px auto 0;
}
.model_wrap {
	margin: 20px 0 0;
	display: flex;
	justify-content: center;
	gap: 30px;
}
.model_list {
	width: 100%;
	max-width: 480px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.model_list_item a {
	color: var(--dp-color2);
	text-decoration: none;
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	gap: 10px;
	transition: .3s;
}
.model_list_item a:hover {
	color: var(--cts-color);
}
.model_list_item a:hover .model_arrow {
	transform: translateX(5px);
	transition: .3s;
}
.model_arrow {
	width: 100%;
	max-width: 20px;
	transition: .3s;
}
.model__name {
	font-size: clamp(14px, 0.6301rem + 0.8163vw, 18px);
    text-align: left;
}
.spec_list {
	font-size: clamp(10px, 0.3801rem + 0.8163vw, 14px);
    text-align: left;
	line-height: 1.6;
	letter-spacing: 1px;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin-left: 1em;
}
.spec__data:nth-of-type(1) {
	width: 100%;
	flex: none;
}
.spec__data:nth-of-type(3):before {
	content: "/";
	padding: 0 2px;
}
.catch {
	color: var(--cts-color);
	font-size: clamp(20px, 0.3801rem + 2.8163vw, 35px);
	font-weight: 700;
	text-align: center;
	display: block;
	margin: 50px 0 0;
}
.bnr_wrap {
	width: 100%;
	max-width: 675px;
	margin: 100px auto 0;
}
.bnr_ttl_wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.bnr_ttl_wrap .bnr_ttl {
	color: var(--cts-color);
	font-family: var(--cts-font-01);
	font-size: clamp(20px, 0.3801rem + 2.8163vw, 35px);
	font-weight: 700;
	letter-spacing: 1px;
	text-align: center;
	display: block;
}
.bnr_ttl_wrap .bnr_txt {
	color: var(--dp-color2);
	font-size: clamp(12px, 0.3801rem + 0.8163vw, 17px);
	font-weight: 500;
	text-align: center;
	margin: 5px 0 0;
}
.bnr_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	margin: 30px 0 0;
}
.bnr_list_item {
	width: 100%;
	max-width: 330px;
}
.bnr_list_item a {
	display: block;
	transition: .3s;
}
.bnr_list_item a:hover {
	transform: translateY(-5px);
}
/* game
____________________*/
.contents--game {
	padding-top: 120px;
    padding-bottom: 0;
	margin-top: 0;
    margin-bottom: 0;
	background: var(--dp-color2);
}
.game .ttl_wrap h2 {
	color: var(--dp-color);
}
.game_maker_wrap {
	width: 100%;
	max-width: 824px;
	margin: 80px auto 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}
.game_maker_wrap + .game_maker_wrap {
	margin: 70px auto 0;
}
.maker_name {
	color: var(--dp-color);
	font-size: clamp(18px, 0.045rem + 3.31vw, 25px);
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	position: relative;
	margin: 0 0 20px;
}
.maker_name::after {
	content: "";
	width: 50px;
	height: 3px;
	background: var(--cts-color);
	position: absolute;
	left: 50%;
	bottom: -20px;
	transform: translate(-50%,-50%);
}
.game_ttl_wrap {
	color: var(--dp-color);
	text-align: center;
	margin: 20px 0 0;
}
.game_ttl {
	font-size: clamp(15px, 0.045rem + 3.31vw, 18px);
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.2px;
}
.game_copy {
	font-size: 10px;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.2px;
	margin: 5px 0 0;
}
/* partner
____________________*/
.contents--partner {
	padding-top: 120px;
    padding-bottom: 120px;
	margin-top: 0;
    margin-bottom: 0;
	background: var(--dp-color2);
}
.partner .ttl_wrap h2 {
	color: var(--dp-color);
}
.partner_wrap {
	width: 100%;
	max-width: 822px;
	margin: 50px auto 0;
}
.partner_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0 34px;
}
.partner_list.step3 {
	margin: 50px 0 0;
}
.partner_list .partner_list_item {
	width: 100%;
	max-width: 394px;
}
.partner_list.step2 .partner_list_item {
	max-width: 300px;
}
.partner_list.step3 .partner_list_item {
	max-width: 262px;
}
.partner_list .partner_list_item a {
	display: inline-block;
}
.partner_list.step2 {
	gap: 40px 128px;
}
.partner_list.step3 {
	gap: 57px 17px;
}
.partner_list .partner_list_item .logo-ttl {
	color: var(--cts-bg);
	font-size: 12px;
	font-weight: 500;
	text-align: center;
	display: block;
}
/* guest-event
____________________*/
.contents--guest-event {
	margin-top: 95px;
    margin-bottom: 0;
	position: relative;
	z-index: -1;
}
.guest-event .ttl_wrap h2 {
	color: var(--dp-color);
}
.coming-soon_wrap {
	background: url(../../gamepc/img/cts-tgs2024/bgcoming_soon_pc.webp) no-repeat center center /cover;
	border-radius: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 75px;
	margin: 70px 0 0;
	box-sizing: border-box;
}
.coming-soon_inner {
	text-align: center;
}
.coming-soon {
	font-family: var(--cts-font-03);
	font-size: clamp(30px, 0.045rem + 3.31vw, 49px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 2px;
}
.coming-soon-sub {
	font-size: clamp(13px, 0.045rem + 3.31vw, 15px);
	font-weight: 700;
	letter-spacing: 1.2px;
}
.x_wrap {
	width: 100%;
	max-width: 700px;
	margin: 50px auto 0;
}
/* スライダー */
.contents--guest .bg_text,
.contents--map .bg_text,
.contents--guest-event .bg_text {
	width: 100%;
	overflow: hidden;
	position: absolute;
	top: 80px;
	left: 0;
	z-index: -1;
}
.contents--guest-event .bg_text {
	top: -40px;
}
.slick-track {
	display: flex !important;
	flex-wrap: nowrap !important;
}
.contents--map .slick-initialized .slick-slide {
	min-width: 2213px;
}
.contents--guest-event .slick-initialized .slick-slide {
	min-width: 2206px;
}
/* top-anchor
____________________*/
.top_anchor{
	width: 42px;
	height: 42px;
	position: fixed;
	right: 60px;
	bottom: 60px;
	z-index: 10;
	font-size: 50px;
	color: #fff;
	background: #004DA1;
	cursor: pointer;
	transition: .3s;
	opacity: 0;
	visibility: hidden;
	border: 1px solid #E8EC2E;
}
.top_anchor:hover {
	transform: translateY(-5px);
}
.top_anchor .triangle {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
	border-bottom: 12px solid #e8ec20;
	border-top: 0;
}
.active{
opacity: 1;
visibility: visible;
}
@media (max-width: 1307px) {/*375-768*/
	.l-header {
		z-index: 2;
	}
	.BreadcrumbList_wrap {
		z-index: 1;
	}
/* campaign
____________________*/
.cp_wrap {
	flex-direction: column;
	border-radius: 24px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.cp_wrap .cp_bnr {
	width: 100%;

}
.cp_wrap .cp_txt_box {
	width: 100%;
	max-width: inherit;
	padding: 20px;
}
.cp_catch {
	margin-top: 10px;
}
.cp_sub_txt {
	margin-top: 10px;
}
.cp_txt_box .link_wrap {
	margin-top: 15px;
}
.c_pc {
	display: none;
}
.c_sp {
	display: block;
}
}
@media (max-width: 768px) {/*375-768*/
.pc {
	display: none !important;
}
.sp {
	display: block !important;
}
/* コンテンツ
____________________*/
#maincontent {
	position: relative;
    z-index: 1;
}
.contents {
	margin-top: 50px;
	margin-bottom: 50px;
}
.contents__wrap {
	background: var(--dp-color);
	z-index: -1;
}
.contents__wrap .bg2 {
	background: none;
}
.ttl_wrap .icon {
	width: 42px;
	margin-right: 10px;
}
.ttl_wrap_cp h3 {
	margin-left: 10px;
}
/* sub_nav
____________________*/
.sub_nav__inner {
	position: relative;
	z-index: 10;
	height: 50px;
}
.sub_nav__inner .logo_gb {
	width: 177px;
}
.header__menu {
	position: absolute;
	z-index: 5;
	top: 50px;
	width: 100%;
	height: calc(100vh - 50px);
	background: #fff;
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s ease;
}
.sub_nav__inner.active .header__menu {
	opacity: 1;
	visibility: visible;
	background: var(--dp-color);
}
.submenu__list {
	flex-direction: column;
	gap: 0;
	border-top: 1px solid #fff;
	padding: 0;
}
.submenu__list .menu__item {
	border-bottom: 1px solid var(--dp-color2);
}
.submenu__list .menu__item a {
	color: var(--dp-color2);
	background: none;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 53px;
	padding: inherit;
	position: relative;
}
.submenu-btn {
	width: 46px;
	height: 44px;
	position: absolute;
	top: 5px;
	right: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px;
	cursor: pointer;
	box-sizing: border-box;
}
.submenu-btn span:nth-child(-n+3) {
	position: absolute;
	display: block;
	width: 26px;
	height: 4px;
	background: #fff;
}
.submenu-btn span:nth-child(1) {
	top: 10px;
	transition: all .2s ease;
}
.sub_nav__inner.active .submenu-btn span:nth-child(1) {
	top: 20px;
	transform: rotate(45deg);
}
.submenu-btn span:nth-child(2) {
	top: 18px;
	transition: opacity .2s ease;
}
.sub_nav__inner.active .submenu-btn span:nth-child(2) {
	opacity: 0;
}
.submenu-btn span:nth-child(3) {
	top: 26px;
	transition: all .2s ease;
}
.sub_nav__inner.active .submenu-btn span:nth-child(3) {
	top: 20px;
	transform: rotate(-45deg);
}
.submenu-btn span:nth-child(4) {
	font-size: 10px;
	color: #fff;
	display: block;
	margin: 25px 0 0;
}
/* mv
____________________*/
.contents--mv {
	margin-top: 0px;
}
.contents--mv .pc {
	display: none !important;
}
.contents--mv .sp {
	display: block !important;
}
/* news
____________________*/
.top_bnr_wrap {
	margin: 0 auto 50px;
}
.topics_wrap {
	margin: 20px 0 0;
}
.topics_wrap .topics_list dt {
    width: 80px;
}
.topics_wrap .topics_list dd {
    width: calc(100% - 80px);
}
.date_wrap {
	margin: 40px 0 0;
}
.date {
	gap: 5px;
}
.date dt {
	width: 75px;
}
.date dd {
	gap: 15px 5px;
}
.date dd .day {
	width: 140px;
}
.news_note {
	margin: 30px auto 0;
}
/* campaign
____________________*/
.cp_wrap {
	border-radius: 12px;
}
.cp_wrap + .cp_wrap {
	margin-top: 30px;
}
.map .note_ttl {
	margin: 30px auto 0;
	padding: 7px;
}
/* guest
____________________*/
.contents--guest {
	background: url(../../gamepc/img/cts-tgs2024/bg_guest_sp.webp) no-repeat center top / 100% fixed;
	padding-top: 50px;
    padding-bottom: 50px;
	margin: 0;
}
.contents--guest .slick-initialized .slick-slide {
	min-width: 1083px;
}
.guest_list_wrap {
	margin: 30px 0 0;
}
.guest_list {
	gap: 30px 24px;
}
.guest_list_item {
	max-width: 138px;
}
.and_more {
	margin: 50px 0 0;
}
/* event
____________________*/
.contents--event {
	background: url(../../gamepc/img/cts-tgs2024/bg_event_sp.webp) repeat-y center top / contain;
	padding-top: 50px;
    padding-bottom: 50px;
	margin: 0;
}
.event_wrap {
	margin: 40px 0 0;
}
.event_list_item {
	flex-direction: column;
	gap: 12px;
	padding-bottom: 13px;
}
.event_list_item > a {
	width: 100%;
	padding: 15px 0 0;
}
.event_list_item > a .event_list_item_inner {
    width: calc(100% - 55px);
}
.event_list_item > a .event_category {
	width: 110px;
	padding: 4px 5px;
}
.event_list_item > a .event_time {
	width: calc(100% - 120px);
	margin-left: 10px;
}
.event_list_item > a .event_name {
	width: 100%;
	margin-top: 5px;
	margin-left: 0;
}
.event_list_item > a .icon_window {
	width: 41px;
	height: 41px;
}
.event_list_item .event_sns_list {
	max-width: 212px;
	flex-direction: row;
	margin: 0;
}
/* coming-soon */
.event_list_item.event-coming-soon > a .event_name:before {
	left: calc(50% + 25px);
}
.event_list_item.event-coming-soon > a .event_name:after {
    width: calc(100% + 55px);
	height: calc(100% + 10px);
    padding: 5px;
    top: -3px;
    left: 0;
    z-index: 2;
}

.event_wrap_cosplay {
	flex-direction: column;
}
.event_wrap_cosplay_inner {
	width: 100%;
	padding: 35px 25px;
}
.cosplay_event_ttl {
	text-align: left;
}
.cosplay_event_list {
	padding: 0 10px;
}
.event_wrap_cosplay {
	gap: 30px;
}
.cosplayer_list {
	justify-content: flex-start;
	gap: 18px;
}
.cosplayer_list_item {
	width: 108px;
}
/* モーダル */
.modal-content {
	max-width: 308px;
}
.modal-body {
	padding: 8px 8px 0 0;
	max-width: 270px;
}
.modal-body-inner {
	padding: 17px 17px 30px 30px;
}
.modal-content {
	height: auto;
}

.modal-close {
	top: 40px;
	right: -35px;
	width: 30px;
	height: 30px;
}

.modal-close::before,
.modal-close::after {
	width: 30px;
}
.modal_event_inner {
	gap: 10px;
}
.modal_event_description {
	margin: 10px 0 0;
}
.person_list {
	gap: 16px;
}
.person_list_item {
	width: 95px;
}
/* map
____________________*/
.bg_border {
	background: url(../../gamepc/img/cts-tgs2024/bg_map_sp.webp) repeat-y center center / cover;
	padding-bottom: 50px;
	margin: 0;
}
.map_content {
	margin: 30px auto 0;
}
.contents--map {
	padding-top: 50px;
	padding-bottom: 0;
	margin: 0;
}
.contents--map .slick-initialized .slick-slide {
	min-width: 1186px;
}
.map_content_item + .map_content_item {
	margin: 40px 0 0;
}
.map_note {
	text-align: left;
}
/* present
____________________*/
.contents--present {
	margin: 0;
	padding-top: 50px;
	padding-bottom: 50px;
}
.ttl_wrap_sub {
	margin: 20px 0 0;
}
ul + .ttl_wrap_sub {
    margin: 50px 0 0;
}
.ttl_wrap_sub .ttl_sub_txt {
	text-align: center;
}
.present_list {
	gap: 25px;
	margin: 30px 0 0;
}
.present_list_item {
	max-width: 248px;
}
.present_list_item .present_ttl_wrap {
	bottom: 2px;
}
.present_list_item .present_ttl_wrap.p2 {
	bottom: -29px;
}
.present .link_wrap {
	max-width: 270px;
}
.present_note {
	margin: 25px 0 0;
}
/* display-model
____________________*/
.contents--display-model {
	margin: 0;
	padding-top: 50px;
    padding-bottom: 50px;
}
.model_wrap {
	flex-direction: column;
}
.bnr_wrap {
	margin: 60px auto 0;
}
.bnr_ttl_wrap {
	align-items: flex-start;
}
.bnr_ttl_wrap .bnr_txt {
	text-align: left;
}
.bnr_list {
	gap: 6px;
}
.bnr_list_item {
	max-width: 147px;
}
/* game
____________________*/
.contents--game {
	padding-top: 50px;
	margin-top: 0;
	margin-bottom: 0;
}
.game_maker_wrap {
	margin: 30px auto 0;
}
.game_maker_wrap + .game_maker_wrap {
    margin: 45px auto 0;
}
.maker_name {
	margin: 0 0 15px;
}
.maker_name::after {
	bottom: -15px;
}
.game_ttl_wrap {
	margin: 10px 0 0;
}
.game_ttl_wrap + .game_ttl_wrap {
	margin: 25px 0 0;
}
/* partner
____________________*/
.contents--partner {
	margin: 0;
	padding-top: 50px;
    padding-bottom: 50px;
}
.partner_wrap {
	margin: 20px 0 0;
}
.partner_list {
	margin: 10px 0 0;
	gap: 10px;
}
.partner_list.step2 {
    gap: 10px;
}
.partner_list.step3 {
	margin: 10px 0 0;
	gap: 10px;
}
/* guest-event
____________________*/
.contents--guest-event {
	margin-bottom: 0;
}
.contents--guest-event .slick-initialized .slick-slide {
	min-width: 1107px;
}
.coming-soon_wrap {
	background: url(../../gamepc/img/cts-tgs2024/bgcoming_soon_sp.webp) no-repeat center center / cover;
	padding: 40px 60px;
	margin: 20px 0 0;
}
/* スライダー */
.contents--guest .bg_text,.contents--map .bg_text, .contents--guest-event .bg_text {
	top: 35px;
}
.contents--guest-event .bg_text {
	top: -15px;
}
/* top-anchor
____________________*/
.top_anchor{
	width: 30px;
	height: 30px;
	right: 20px;
	bottom: 20px;
}
.top_anchor .triangle {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
	border-bottom: 12px solid #e8ec20;
	border-top: 0;
  }
}
@media (max-width: 479px) {
	.contents--mv .pc {
		display: none;
	}
	.contents--mv .sp {
		display: block;
	}
}