@charset "utf-8";
/* CSS Document */

:root
{
	--primary-color: #000000;
	--secondary-color: #ff00ff;
	--background-color: #ffffff;
	--text-color: #333333;
	--menu-hover-color: #0ac2ce;

	--main-card-width: clamp(400px, 50vw, 700px);
	--carousel-item-width: clamp(200px, 20vw, 400px);
}

.sp-only
{
    display: none;
}

@media screen and (max-width: 767px)
{
	.sp-only
	{
    	display: none;
	}

	@media screen and (max-width: 767px)
	{
    	.sp-only
		{
        	display: block;
    	}
	}
}

body
{
    font-family: "Hiragino Kaku Gothic StdN", "ヒラギノ角ゴ StdN", "Noto Sans JP", sans-serif;
    font-weight: 700;
	margin: 0;
	padding: 0;
	color: var(--text-color);
}
body::before {
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-3;
	width:100%;
	height:100lvh;
	background-repeat:no-repeat;
	background-position:50% 100%;
	background-size:cover;
}

/* #region フォント */
.font-gear
{
	font-family: "gear-wide", sans-serif;
}
.font-bold
{
	font-weight: 700;
}
.font-mincho
{
	font-family: "ta-mincho-gf-01", sans-serif;
	font-weight: 400;
	font-style: normal;
}
/* #endregion */

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100lvh;
	z-index: -3;
    background-size: cover;
    background-position: center;
    opacity: 0;
	animation: image-switch-animation 54s infinite;
}
@keyframes image-switch-animation {
  0%{ opacity: 0;}
  5%{ opacity: 1;}
  10%{ opacity: 1;}
  18%{ opacity: 0;}
  100%{ opacity: 0;}
}
.background:nth-of-type(1) {
  animation-delay: 0s;
}
.background:nth-of-type(2) {
  animation-delay: 6s;
}
.background:nth-of-type(3) {
  animation-delay: 12s;
}
.background:nth-of-type(4) {
  animation-delay: 18s;
}
.background:nth-of-type(5) {
  animation-delay: 24s;
}
.background:nth-of-type(6) {
  animation-delay: 30s;
}
.background:nth-of-type(7) {
  animation-delay: 36s;
}
.background:nth-of-type(8) {
  animation-delay: 42s;
}
.background:nth-of-type(9) {
  animation-delay: 48s;
}
.img01 {
  background-image:url("../img/topimg/01.png");
}
.img02 {
  background-image:url("../img/topimg/02.png");
}
.img03 {
  background-image:url("../img/topimg/03.png");
}
.img04 {
  background-image:url("../img/topimg/04.png");
}
.img05 {
  background-image:url("../img/topimg/05.png");
}
.img06 {
  background-image:url("../img/topimg/06.png");
}
.img07 {
  background-image:url("../img/topimg/07.png");
}
.img08 {
  background-image:url("../img/topimg/08.png");
}
.img09 {
  background-image:url("../img/topimg/09.png");
}
header {
	background-color: var(--background-color);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px 20px;
}
h1{
	font-size: 26px;
}
img {
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-moz-touch-callout:none;
	-moz-user-select:none;
	touch-callout:none;
	user-select:none;
}
.text-center{
	text-align: center;
}
.logo {
	height: 40px;
}

nav {
	display: flex;
	align-items: center;
}

nav ul {
	list-style-type: none;
	padding: 0;
	display: flex;
	justify-content: flex-end;
	margin: 0;
}

nav ul li {
	margin-left: 20px;
	margin-right: 5px;
	position: relative;
}

nav ul li a {
	text-decoration: none;
	color: var(--text-color);
	padding: 10px 0;
	display: block;
	font-weight: bold;
}

nav ul li a::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: var(--menu-hover-color);
	visibility: hidden;
	transform: scaleX(0);
	transition: all 0.3s ease-in-out;
}

nav ul li a:hover::after,
nav ul li a.active::after {
	visibility: visible;
	transform: scaleX(1);
}
.anchor-top
{
    position: fixed;
    width: 80px;
    height: 80px;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    color: #ffffff;
    background-color: #ff39aa;
    text-decoration: none;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
	font-size: clamp(12px, 1.0vw, 28px);
    line-height: 1.2;
    white-space: nowrap;
    box-sizing: border-box;
}
.anchor-top a{
	text-decoration: none;
}
@media (max-width: 767px) {
.anchor-top {
	visibility: hidden;
}
}
/*--.anchor-top::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: var(--menu-hover-color);
	visibility: hidden;
	transform: scaleX(0);
	transition: all 0.3s ease-in-out;
}--*/
.twitter-link, .language-toggle {
	margin-left: 20px;
	font-size: 24px;
	color: var(--primary-color);
	text-decoration: none;
}
.dropdown{
	position: relative;
}
.language-select{
	position: absolute;
	display: block;
	color:white;
	top:40px;
	right:-10px;
	padding:10px 30px 12px 30px;
	background-color: black;
	border-radius: 50px;
	text-decoration: none;
	animation: in 0.3s forwards,fade 0.3s forwards;
	opacity: 0;
}
@keyframes in {
	100% {
		top: 50px;
	}
}
@keyframes fade {
	100% {
		opacity: 1;
	}
}
.language-select:hover{
	background-color: gray;
}
/*-- ↓↓ dropdown ↓↓ --*/
.dropdown{
	display:none;
}
.dropdown input[type="checkbox"] {
	display: none;
}

.dropdown label {
	cursor: pointer;
}

.dropdown .dropdown-innner {
	display: none;
}

.dropdown input[type="checkbox"]:checked + label + .dropdown-innner {
	display: block;

	/* animationプロパティ設定 */
	animation-name: fadeIn;
	animation-fill-mode:forwards;
	animation-duration:0.5s;
}
/*-- ↑↑ dropdown ↑↑ --*/

.hero
{
	display: flex;
	flex-direction: column;
	margin:auto;
	width: 100%;
	height: 100vh;
	min-height: 100vh;
	position: relative;
	justify-content: space-between;
	align-items: center;
	padding: 100px 20px 30px 20px;
	color: black;
}
.hero-bg
{
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}

/* トップの前面 */
.bg-overlay
{
	background-image: url("../img/top_bg/bg.png");
	background-size: cover;
	background-position: center;
	
	z-index: -1;
	opacity: 0.8;
}
/* トップの内容 */
.bg-slide
{
	background-size: cover;
	background-position: center;

	z-index: -2;
	opacity: 0;

	transition: opacity 1s ease;
}

@media (max-width: 767px)
{
	.slide-img1
	{
		background-position: 40% center;
		background-size: 430%;
	}
	.slide-img2
	{
		background-position: 0% top;
		background-size: 300%;
	}
}

.hero-main
{
	display: flex;
  	flex: 1;
	width: 100%;
  	margin: auto;
	margin-bottom: 20px;
	align-items: stretch;
	min-height: 0; 
}
.hero-left
{
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 0.6;
	gap: 5px;
	max-width: 1600px;
	text-align: center;
	padding-top: 60px;
	min-height: 0;
}
.hero-right
{
	flex: 0.45;
	display: flex;
	justify-content: flex-start;
	margin-left: 20px;
	position: relative;
	min-height: 0; 
}
.game-images
{
	width: auto;
	height: 100%;
	max-width: 100%;
	min-height: 0; 
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
	overflow: hidden;
	margin: auto 0;
}

.game-images img
{
	width: auto;
	height: 100%;
	max-width: 100%;
	object-fit: contain;
}

.hero-left__tgs-title
{
	font-size: clamp(18px, 2.2vw, 40px);
	font-weight: bold;
	color: #000;
	line-height: 1.0;
}
.hero-left p
{
	font-size: clamp(10px, 1.4vw, 28px);
}

.fadeInRight01,
.fadeInRight02,
.fadeInRight03
{
	opacity: 0;
	animation-name: fadeInRight;/*アニメーションの名前*/
	animation-fill-mode:forwards;/*終了時の状態*/
	animation-duration:1s;/*再生時間*/
	animation-iteration-count:1;/*回数*/
	animation-timing-function:ease-out;/*イージング*/
	animation-direction:normal;/*向き*/
}
.fadeInRight01
{
	animation-delay: 0.8s;/*開始時間*/
	font-size: clamp(10px, 1.8vw, 28px);
}
.fadeInRight02
{
	animation-delay: 0.9s;/*開始時間*/
}
.fadeInRight03
{
	animation-delay: 1.0s;/*開始時間*/
}

.date__wrap
{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.date-row
{
	display: grid;
	grid-template-columns: 6em auto 13em;
	align-items: baseline;
	column-gap: 4px;
}

.date-row .label
{
	text-align: left;
}

.date-row .colon
{
	text-align: left;
}

.date-row .date
{
	text-align: left;
	white-space: nowrap;
}

@media (max-width: 767px)
{
	.fadeInRight01
	{
		font-size: clamp(18px, 3.0vw, 40px);
	}
	.fadeInRight03
	{
		font-size: 4vw;
		white-space: nowrap;
	}
}

@media (max-width: 767px)
{
	.hero
	{
		padding: 120px 30px 30px 50px;
	}
	.hero-main
	{
  		display: block;
	}

	h1{
	font-size: 18px;
	}
	.hero-left__tgs-title
	{
		font-size: clamp(18px, 4.0vw, 50px);
	}
	.hero-left p
	{
		font-size: clamp(10px, 1.6vw, 28px);
	}
	.hero-left
	{
		padding-top: 0px;
	}
	.hero-right
	{
		justify-content: center;
		height: 50vh;
		margin-top: 20px;
	}
}

/*--
.game-imagesxx {
	width: 100%;
	max-width: 600px;
	height: 400px;
	background-color: rgba(255,255,255,0.2);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
--*/
.cta-button {
	position: absolute;
	bottom: 20px;
	right: 20px;
	padding: 15px 30px;
	background-color: var(--primary-color);
	color: white;
	text-decoration: none;
	border-radius: 25px;
	font-weight: bold;
	transition: all 0.3s ease;
}

.cta-button:hover {
	background-color: #ff3333;
	transform: translateY(-3px);
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

/* セクション */
.section
{
	padding: 0px 0px;
	margin: 0px 0;
	background-color:  rgba(255,255,255,0.8);
	border-radius: 0px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.section:last-child
{
    box-shadow: none;
}

#movies
{
	padding: 0px 20px;
}

.section__title
{
	position: absolute;
	display: inline-block;
	margin-top: 50px;
	left: 50%;
	transform: translateX(-50%);
	width: min(60vw, 700px);
	text-align: center;
	font-size: clamp(18px, 2.0vw, 24px) !important;
	color: white;
	z-index: 2;
}

.section__title::after
{
	content: "";
	position: absolute;
	left: 0;
	top: -5px;
	width: 100%;
	height: calc(100% + 10px);
	background-color: #ff39aa;
	z-index: -1;
}

@media (max-width: 768px) 
{
	.section__title
	{
		width: min(80vw, 700px);
	}
}

#titles
{
	padding: 0;
}

#titles .carousel__viewport
{
	padding: 50px;
}

h2 {
	font-size: 2.5em;
	margin-bottom: 10px;
	color: var(--primary-color);
}
h3 {
	font-size: 2em;
	margin-bottom: 10px;
	color: var(--primary-color);
}

/* 汎用カルーセル */
.carousel
{
	position: relative;
	overflow: hidden;
	padding: 120px 0 60px 0;
	margin: auto;
	user-select: none;
	max-width: 2000px;
	z-index: 2;
}

.carousel__viewport
{
	position: relative;
	padding: 0 80px;
}

.carousel__inner
{
	display: grid;
	margin: 0 auto;
	grid-template-rows: repeat(2, auto);
	grid-auto-flow: column;
	gap: 10px;
	transition: transform 0.4s ease-in-out;
}

.carousel-item
{
	display: block;
	position: absolute;
	width: 100%;
	border-radius: 15px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	overflow: hidden;
	cursor: pointer;

	pointer-events: none;
	opacity: 0;
}

/* 左からスライドイン */
.carousel-item.slide-in-from-right
{
	animation: slideInFromRight 0.35s ease both;
}
 
/* 右からスライドイン */
.carousel-item.slide-in-from-left
{
	animation: slideInFromLeft 0.35s ease both;
}
 
@keyframes slideInFromRight
{
	from
	{
		opacity: 0;
		transform: translateX(50px);
	}
	to
	{
		opacity: 1;
		transform: translateX(0);
	}
}
 
@keyframes slideInFromLeft
{
	from
	{
		opacity: 0;
		transform: translateX(-50px);
	}
	to
	{
		opacity: 1;
		transform: translateX(0);
	}
}

.carousel-item.is-active
{
	position: relative;
}

.carousel-item:hover
{
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.2);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.carousel-item img
{
	display: block;
	width: 100%;
	aspect-ratio: 5 / 3;
	object-fit: cover;
}

.carousel-item__content
{
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 10px 14px 14px;
	background-color: #fff;
	box-sizing: border-box;
}

.carousel-item__content h3
{
	margin: 0;
	font-size: clamp(14px, 1.4vw, 18px);
	color: #000;
	line-height: 1.3;
}

.carousel-item__tag
{
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.carousel-item__tag span
{
	padding: 4px 12px;
	border-radius: 3px;
	color: #fff;
	white-space: nowrap;
}

.tag--blue
{
	background: linear-gradient(45deg, #0AC2CE, #1B6EAA);
}

.tag--black
{
	background-color: #000;
}

.carousel__control
{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	padding: 30px 10px;
	color: #fff;
	background-color: rgba(0,0,0,0.5);
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 24px;
	transition: background-color 0.3s ease;
	z-index: 10;
}

.carousel__control:hover
{
	background-color: rgba(0,0,0,0.8);
}

.carousel__control.left
{
	left: 10px;
}

.carousel__control.right
{
	right: 10px;
}

@media (max-width: 768px) 
{
	.carousel__control
	{
		padding: 20px 8px;
	}

	.carousel__viewport
	{
		padding: 0 50px;
	}
}

@media (min-width: 769px)
{
	#titles .carousel__control
	{
		display: none;
	}
}

/* ワロタ仕様 */
#titles .warota__bg
{
	position: relative;
	width: 100%;
	min-height: 580px;
	max-height: 700px;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

#titles .warota__bg > img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: -1;
}

#titles .carousel
{
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	padding: 0;
	margin: 0;
}

/* ノベルティ */
.novelty__wrap
{
	padding: 0px 40px;
	padding-top: 120px;
	display: flex;
	flex-direction: row;
	gap: 15px;
}

.novelty-item
{
	margin: 0 auto 30px auto;
	max-width: 1700px;
}

.novelty-item__image
{
	flex: 1;
	max-width: 500px;
}

.novelty-item__image img
{
	max-width: 100%;
	height: auto;
	/*border-radius: 1.0rem;*/
	border-radius: 2.5rem;
	border: .1rem solid #ddd;

}

.novelty-item__details
{
	flex: 1;
    padding: 20px 0;
    padding-left: 14px;
}

.novelty-item__title
{
	position: relative;
	font-size: clamp(12px, 1.8vw, 20px);
	font-weight: 700;
	line-height: 1;
}

.novelty-item__description_r
{
	color: #ff264f;
	display: block;
	margin-block-start: 0.5em;
	margin-block-end: 0.5em;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	unicode-bidi: isolate;
}

.novelty-item__description
{
	font-size: clamp(10px, 1.2vw, 16px);
	color: #666;
	display: block;
	margin-block-start: 1em;
	margin-block-end: 1em;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	unicode-bidi: isolate;
}

.novelty-item__description02
{
	font-size: clamp(10px, 0.8vw, 18px);
	color: #666;
}

@media (max-width: 768px)
{
	.novelty__wrap
	{
		flex-direction: column;
	}
	.novelty-item
	{
		flex-direction: column;
	}
	.novelty-item__title
	{
		font-size: clamp(18px, 2.0vw, 24px);
		padding-bottom: 0;
		line-height: 1.2em;
	}
	.novelty-item__image
	{
		margin-right: 0;
		margin-bottom: 20px;
		max-width: 100%;
	}
	.novelty-item__details
	{
		padding:0;
	}
	.novelty-item__description
	{
		font-size: clamp(16px, 1.8vw, 20px);
	}
	.novelty-item__description02
	{
		font-size: clamp(14px, 1.0vw, 18px);
	}
}

/* マップ */
.map-image
{
	margin:auto;
	padding-top: 100px;
	width:100%;
	text-align: center;
}
.map-image img
{
	width:100%;
	max-width:900px;
}
@media (max-width: 1000px) 
{
	.map-image
	{
		width:100%;
	}
}

/* キャンペーン */
.campaign__wrap
{
	padding: 0px 40px;
	padding-top: 120px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 30px;
}

.campaign-item
{

	max-width: 1700px;
}

.campaign-item__image
{
	flex: 1;
	max-width: 500px;
}

.campaign-item__image img
{
	max-width: 100%;
	height: auto;
	/*border-radius: 1.0rem;*/
	border-radius: 2.5rem;
	border: .1rem solid #ddd;

}

.campaign-item__details
{
	flex: 1;
	padding:10px 0;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.campaign-item__title
{
	position: relative;
	font-size: clamp(12px, 1.8vw, 20px);
	font-weight: 700;
	line-height: 1.4;
}

.campaign-item__description_r
{
	color: #ff264f;
	display: block;
	unicode-bidi: isolate;
}

.campaign-item__description
{
	font-size: clamp(10px, 1.0vw, 14px);
	color: #000000;
	display: block;
	unicode-bidi: isolate;
	padding-top: 8px;
}

.campaign-item__description02
{
	font-size: clamp(10px, 0.8vw, 18px);
	color: #666;
}

.campaign-item__icon.sns-x
{
	margin-top: 6px;
	width: 8%;
}

.campaign-item__icon.steam
{
	margin-top: 2px;
	width: 10%;
}

@media (max-width: 767px)
{
	.campaign__wrap
	{
		flex-direction: column;
	}
	.campaign-item
	{
		flex-direction: column;
	}
	.campaign-item__title
	{
		font-size: clamp(18px, 2.0vw, 24px);
		padding-bottom: 0;
		line-height: 1.2em;
	}
	.campaign-item__image
	{
		margin-right: 0;
		margin-bottom: 20px;
		max-width: 100%;
	}
	.campaign-item__details
	{
		padding:0;
	}
	.campaign-item__description
	{
		font-size: clamp(16px, 1.8vw, 20px);
	}
	.campaign-item__description02
	{
		font-size: clamp(14px, 1.0vw, 18px);
	}
	.campaign-item__icon.sns-x
	{
		margin-top: 8px;
		width: 14%;
	}

	.campaign-item__icon.steam
	{
		margin-top: 5px;
		width: 18%;
	}
}

/* ポップアップ */
.popup 
{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
	z-index: 2000;
	justify-content: center;
	align-items: center;
}
.popup-content {
	padding: 6px 30px 10px 30px;
	border-radius: 15px;
	max-width: 800px;
	max-height: 84%;
	width: 80%;
	height: fit-content;
	overflow-y: auto;
	overflow-x: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
	overflow-wrap: anywhere;
	position: relative;
}
.popup-lostepic
{
	background: var(--background-color) url("../img/img_prj_lostepic_bg.png") no-repeat top center /100%;
}
.popup-danmaku
{
	background: var(--background-color) url("../img/img_prj_danmaku_bg.png") no-repeat top center /100%;
}
.popup-ew
{
	background: var(--background-color) url("../img/img_prj_ew_bg.png") no-repeat top center /100%;
}
.popup-vtuber
{
	background: var(--background-color) url("../img/img_prj_vtuber_bg.png") no-repeat top center /100%;
}
.popup-strategyoflily
{
	background: var(--background-color) url("../img/img_prj_strategyoflily_bg.png") no-repeat top center /100%;
}
.popup-horahukiyama
{
	background: var(--background-color) url("../img/img_prj_marisaofliartopmountain_bg.png") no-repeat top center /100%;
}
.close-popup {
	float: right;
	cursor: pointer;
	font-size: 24px;
}
.popup-content img{
	width:100%;
	margin:auto;
}
.prj-title {
	position: relative;
	display:block;
	z-index: 0;
	margin-bottom: 5px;
}
.prj-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, #ff39aa);
	z-index: 1;
}
.prj-text {
	font-size: 1em;
	display: inline-block;
	padding:10px;
	background-color:#EBEBEB;
	border-radius: 6px;
	margin: 0 0 10px 0;
	width: 100%;
}
.prj-platform{
	display: flex;
	gap:10px;
	width:fit-content;
	justify-content: flex-start;
	align-items:center;
	margin:5px;
	padding:2px 0 0 0;
}
.prj-platform img {
	width:30px;
}
.official-button{
	display: block;
	margin:15px 0 15px 0;
    height: 20px;
}
.popup-button {
	padding: 6px 20px;
	background-color: var(--primary-color);
	color: white;
	text-decoration: none;
	border-radius: 25px;
	font-weight: bold;
	transition: all 0.3s ease;
	position: absolute;
	left:0;
	right:0;
	bottom: 18px;
	margin:auto;
	width:fit-content;
}

.popup-button:hover {
	background-color: #ff3333;
	transform: translateY(-3px);
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

/* ハンバーガー */
.hamburger
{
	display: none;
	cursor: pointer;
	padding: 10px;
}

/* フッター */
footer
{
	background: linear-gradient(to bottom, transparent, rgba(255, 57, 170, 0.6));
	color: #000;
	padding: 40px 0;
	margin-top: 40px;
}
.footer-content
{
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
}
.footer-content p
{
	font-size: clamp(12px, 1.4vw, 24px);
	margin-bottom: 20px;
}
.social-icons {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
}
.social-icons a {
	display: inline-block;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.event-info {
	margin-bottom: 20px;
}
.event-info__title
{
	font-size: clamp(16px, 1.6vw, 24px);
	margin-bottom: 10px;
}
.event-details {
	display: flex;
	justify-content: center;
}
.event-location, .event-date
{
	margin-bottom: 10px !important;
}
.event-location::before, .event-date::before {
	content: '';
	display: inline-block;
	width: 25px;
	height: 25px;
	margin-right: 5px;
    margin-bottom: -7px;
	background-size: contain;
	background-repeat: no-repeat;
}
.event-location::before {
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23000000"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>');
}
.event-date::before {
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23000000"><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z"/></svg>');
}

/* #region イベントバナー */
.event-info__banner
{
	width: clamp(200px, 70vw, 650px);
	height: auto;
	margin: 0 auto;
}
.event-info__banner img
{
	width: 100%;
	height: auto;
}
/* #endregion */

.copyright {
	display: flex;
    justify-content: center; /* 子要素を中央揃え */
	align-items: center;
    position: relative;
	width: 100%;
	height:60px;
	padding:3px 0 5px 0;
	text-align: center;
	background-color:#ff39aa;
	color:#fff;
	font-size: 0.8em;
}
.copyright-logo{
    position: absolute;
    left: 0; /* 右寄せ */
}
.copyright img{
	width: 60px;
	margin-left:10px;
}
@media (max-width: 767px)
{
	.hero 
	{
		flex-direction: column;
		padding: 80px 30px 0px 30px;
	}
	.hero-left {
		text-align: center;
	}
	nav ul {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 40px;
		left: 0;
		width: 100%;
		background-color: var(--background-color);
		box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	}

	nav ul.show {
		display: flex;
	}	
	
	nav ul li {
		margin: 0;
		text-align: center;
		padding: 10px 0;
		border-bottom: 1px solid #eee;
	}

	nav ul li:last-child {
		border-bottom: none;
	}
	.popup-content {
	padding: 6px 20px 10px 20px;
    width: 94%;
	}
	.hamburger {
		display: block;
	}
	.cta-button {
	bottom: 0px;
	right: 20px;
	padding: 15px 30px;
	background-color: var(--primary-color);
	color: white;
	text-decoration: none;
	border-radius: 25px;
	font-weight: bold;
	transition: all 0.3s ease;
	}

	h3{
		font-size: 1.5em;
	}
	.event-details {
		padding-top: 0;
		flex-direction: column;
	}
	.map-image{
	width:100%;
	}

	/* カルーセル用のスタイル修正 */

	.carousel-inner
	{
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        transition: none;
	}

	.carousel-control.left
	{
		left: 0px;
	}
	.carousel-control.right {
	right: 0px;
	}
	.copyright {
	flex-direction: column-reverse;
	height:80px;
	}
	.copyright-logo{
    position: static;
	margin-bottom:5px;
	}
}

/* 弾幕 */
.warota-danmaku
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.danmaku-img-item
{
    position: absolute;
    width: auto;
    border-radius: 6px;
    animation: danmaku-flow linear infinite;
    pointer-events: none;
	z-index: -1;
}

@keyframes danmaku-flow
{
    from { transform: translateX(110vw); }
    to   { transform: translateX(-110%); }
}

.logo {
	height: 30px;
}
.header-logo_image {
	height: auto;
	margin-right: 5%;
}
.header-logo_image img {
	width: auto;
	height: 30px;
}
@media (max-width: 767px)
{
	.header-logo_image img
	{
		height: 24px;
	}
}
.header-logo_text {
	color: #000;
	font-family: Orbitron, sans-serif;
	font-size: .8rem;
	line-height: 1.3;
}

.nav-link img{
	width: 20px;
	margin-left: 20px;
}
.twitter-link, .language-toggle {
	margin-left: 20px;
}
footer .copyright-notation
{
	font-weight:normal;
	line-height: 1.4;
	font-size: clamp(8px, 1.0vw, 16px);
}
footer .copyright-notation .playstation-logo
{
    background:url("../img/footer_ps_logo_b0438242f146a1fab8dc062225b4f98e.png") no-repeat;
    width: 21px;
    height: 16px;
    position: relative;
    display: inline-block;
    top: 3px;
}
footer .copyright-notation .ps5-logo
{
    background:url("../img/footer_ps5_logo_50d23aa366033b05b18c9d8aa468d66a.png") no-repeat;
	width: 45px;
    height: 10px;
    position: relative;
    display: inline-block;
    top: 0;
}
footer .copyright-notation .ps4-logo
{
    background:url("../img/footer_ps4_logo_0027eaddc6927a8ce119b54c6fdab06d.png") no-repeat;
	width: 45px;
    height: 10px;
    position: relative;
    display: inline-block;
    top: 0;
}

/*--アニメーション↓↓↓-----------------------------------*/
.fadeIn {
	opacity: 0;
	animation-name: fadeIn;/*アニメーションの名前*/
	animation-fill-mode:forwards;/*終了時の状態*/
	animation-duration:3s;/*再生時間*/
	animation-iteration-count:1;/*回数*/
	animation-timing-function:ease;/*イージング*/
	animation-delay: 0.5s;/*開始時間*/
	animation-direction:normal;/*向き*/
}
@keyframes fadeIn{
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInRight{
  from {
    opacity: 0;
	transform: translateX(3%); /*要素を左の枠外に移動*/
  }
  to {
    opacity: 1;
	transform: translateX(0); /*要素を元の位置に移動*/
  }
}
/*--アニメーションここまで↑↑↑-----------------------------------*/
/*--endview↓↓↓-----------------------------------*/
.hero-end
{
    display: flex;
	position: relative;
	flex-direction: column;
	padding: 20px 0;
	margin:auto;
	border-radius: 40px;
	color: #ffffff;
	background: rgba(0, 0, 0, 0.4);
	width: 90%;
	line-height: 1.4em;
	justify-content: center;
	align-items: center;
	text-align: center;
	z-index: 1;
}

.hero-end__title
{
	font-size: clamp(10px, 1.8vw, 24px);
	margin-bottom: 5px;
}

.hero-end__text
{
	font-size: clamp(10px, 1.0vw, 24px);
}

@media (max-width: 767px) 
{
	.hero-end
	{
		width: 100%;
		margin-bottom: 10px;
	}
	.hero-end__title
	{
		font-size: clamp(10px, 4.0vw, 36px);
	}
}
.btn-blank{
	padding: 10px 40px 12px;
    background: #0AC2CE;
    color: white;
    display: inline-block;
	border-radius: 6px;
	margin-top:20px;
	box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.2);
	transition: background 0.3s ease-in-out; /* 色の変更にアニメーションを追加 */
	text-decoration: none;
}
.btn-blank:hover{
    background: #0083e2;
}

/*--endviewここまで↑↑↑-----------------------------------*/
/*--report↓↓↓-----------------------------------*/
.fade {
    animation-name: fadein;
    animation-duration: 1s;
}
.main {
    padding-bottom: 6vw;
}
main {
    display: block;
}
.logo_text {
	color: #000;
	font-family: Orbitron, sans-serif;
	line-height: 1.0;
}
.eng{
	display: inline-block;
	font-size: 40px;
	margin: 10px auto 20px auto;
	position: relative;
}
.mainHeader{
	font-size: 26px;
	width:100%;
	text-align:center;
  	padding:140px 0 100px 0;
	background-image: url(../img/top_bg/bg.png);
}
.company__cont, .sub-page .data__cont {
    background: #fcfcfc url(../img/bg_content.png) center 0 / cover no-repeat;
    padding: 12.21vw 0 9vw;
    position: relative;
    text-align: center;
    overflow: hidden;
}
.contW {
    max-width: 100vw;
    padding: 0 5%;
}
@media screen and (max-width: 1719px) {
    .cont, .contW--M, .contW--L, .contW {
        padding-left: 1.63vw;
        padding-right: 1.63vw;
    }
}
.cont, .contW--M, .contW--L, .contW {
    margin-left: auto !important;
    margin-right: auto !important;
}
.container {
    margin-left: auto;
    margin-right: auto;
}
.data__cont .row {
    margin-bottom: 3vw;
}
.row {
    display: flex;
    position: relative;
    width: 100%;
}
.sub-page .data__item [class^=col-] {
    position: relative;
}
.row [class^=col] {
    margin: 0.5rem 2%;
    min-height: 0.125rem;
}
@media only screen and (min-width: 45em) {
    .col-4 {
        width: 29.3333333333%;
    }
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
    width: 96%;
}

.sub-page p {
    margin-bottom: 1vw;
    line-height: 150%;
}
.container .row [class^=col-] img {
    width: 100%;
}

img, embed, object, iframe {
    vertical-align: bottom;
}

@media screen and (max-width: 767px)
{
    .sub-page .data__cont {
        margin-bottom: 12vw;
    }
    .company__cont, .sub-page .data__cont {
        background-size: 400%;
        padding: 26vw 0 15.73vw;
    }
    .container .row {
        display: block;
    }
    .container .row [class^=col-] {
        margin: auto 0 10vw 0;
        width: 100%;
    }
    .sub-page .data__item [class^=col-] {
        padding-top: 3vw;
        background-color: #fff;
    }
    .sub-page p {
        margin-bottom: 3.4vw;
    }
}

.accordion-toggle
{
  background-color: #f0f0f0;
  color: #333;
  cursor: pointer;
  padding: 10px;
  border: none;
  outline: none;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  position: relative;
}