<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
/*予告ページ固有*/
.wrapper{
	margin: 0px 0;
	padding: 0px 0 0 0;
	/*background-image: url("../images/pc_top_bg.jpg");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;*/
	/*width: auto;*/
}
.wrapper .logo_box{
	/*width: 290px;*/
	width: 200px;
}
.visual_area{
	margin: 0;
	padding: 0;
	position: relative;

    background: url(../images/pc_top_bg.jpg) no-repeat 0 0 / cover;
    width: 100vw;
    height: 65vw;
    margin-left: calc(-50vw + 50%);
    
/*background-image: url("../images/pc_top_bg.jpg");
background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
	background-size:100%; 
	width: 100%;
	height: auto;*/
}
.visual_area04{
        margin: 0;
        padding: 0;
        position: relative;
        /*background: url(../images/pc_top_bg04.jpg?v=1) no-repeat 0 0 / cover;*/
        background: linear-gradient(#f8749b, #ffcdd2);
        background: url(../images/pc_back_image.jpg?v=1) no-repeat 0 0 / cover;
        height: calc(100vh - 70px);
        /*height: calc(100vh + 60px);*/
        margin-left: calc(-50vw + 50%);
}

.countdown{
	width: 400px;
	height: 160px;
	position: absolute;
	top: calc(50% - 165px);
	left: calc(50% - 200px);
	background-image: url("../images/counter.png");
	background-repeat: no-repeat;
	background-position: left top;
	background-size: contain;
}
.time{
	position: absolute;
	font-size: 60px;
	width: 3em;
	top: calc(50% - 10px);
	right: calc(50% - 145px);
	line-height: 1em;
	text-align: right;
}
.time p{
	letter-spacing: 0.4em;/*文字間調節*/
}
.syoukin{
	width: 350px;
	height: 50px;
	font-size: 25px;
	background-color: rgba(255,255,255,0.25);
	position: relative;
}
.syoukin:before{
	content: "";
	border-top: 50px solid #b2ce54;
  	border-right: 50px solid transparent;
	position: absolute;
  	width: 0;
  	height: 0;
}
.syoukin:after{
	content: "";
	border-bottom: 50px solid #b2ce54;
  	border-left: 50px solid transparent;
	position: absolute;
  	width: 0;
  	height: 0;
	top:0;
	right:0;
}
.syoukin a{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: white;
}
.picture_area{
	background:linear-gradient(to top,black,#1d344f);
}
.movie-title{
	height: 50px;
	font-size: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.movie{
	width: 1000px;
	height: 562.5px;
	position: relative;
	margin: 0 auto 30px;
}
.pre_img{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
}
.iframe{
	width: 100%;
	height: 100%;
}
.movie_link_box{
	width: 1200px;
	margin: 0 auto 30px;
}
.navi_text{
	font-size: 80%;
	text-align: center;
}
.movie_link_box ul{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
.movie_link_box ul li{
	margin: 10px;
	box-shadow: 0 0 10px lightblue,inset 0 0 10px lightblue;
	border-radius: 5px;
	border: 1px solid white;
	width: 130px;
	height: 40px;
	
}
.movie_link_box ul li a{
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: lightblue;
	text-shadow: 0 0 5px #fff,0 0 10px #fff;
	font-size: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.movie_link_box ul li:hover{
	box-shadow: 0 0 10px white,inset 0 0 10px white;
}
.movie_link_box ul li a:hover{
	color: white;
}
.movie_link_box .selected{
	box-shadow: 0 0 10px white,inset 0 0 10px white;
	background-color:darkslategray;
}
.movie_link_box .selected a{
	color: white;
}
/*アコーディオンメニュー---------------------------------------*/
.acd-check{
    display: none;
}
.acd-label{
    background: #333;
    color: #fff;
    display: block;
    margin-bottom: 1px;
    padding: 10px;
    width: 100%;
    height: 100%;
    text-align: center;
}
.acd-content{
    border: 1px solid #333;
    /*height: 0;*/
    opacity: 0;
    padding: 0 10px;
    transition: .5s;
    visibility: hidden;
	display: none;
	
}
.acd-check:checked + .acd-label + .acd-content{
    /*height: 40px;*/
    opacity: 1;
    padding: 10px;
	display: block;
    visibility: visible;
}
/*アコーディオンメニュー　END---------------------------------------*/
/*ハンバーガーメニュー----------------------------------------*/
.hamburger-menu{
	display: block;
	width: 75px;
	height: 75px;
	position: absolute;
	right: 0;
	top: 0;
}
.menu-btn::before{
	content: "menu";
	position:absolute;
	top:-5px;
}
/*アイコン部分*/
.menu-btn {
    position: relative;
    top: 5px;
    right: 10px;
    display: flex;
    height: 75px;
    width: 75px;
    justify-content: center;
    align-items: center;
    z-index: 90;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
    content: '';
    display: block;
    height: 3px;
    width: 50px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span::before {
    bottom: 15px;
}
.menu-btn span::after {
    top: 15px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);

}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);

}
#menu-btn-check:checked ~ .menu-btn{
	position: fixed;
}
#menu-btn-check:checked ~ .menu-btn::before{
	content: "close";
}
#menu-btn-check {
    display: none;
}
/*ハンバーガーメニュー終了----------------------------------------*/

/*キービジュアル上のメニュー*/
.top_left_menu .menu_item{
    opacity: 0;
	animation-name: fadein_to_left;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
        /*border:solid 4px #fafafaa6;*/

}
.on-link{
/*	background-color: var(--top-link-main-color);*/
    background-image: -webkit-gradient( linear,left top,right top,from(#fafafaa6),color-stop(#d6d7d866),to(#9867ec0f));
    background-image: -webkit-linear-gradient(left, #fafafaa6, #d6d7d866, #9867ec0f);
    background-image: llinear-gradient(90deg, #fafafaa6, #d6d7d866, #9867ec0f);
    color: #fff;
}
.on-link:before {
    content: "";
    border-top: 20px solid #034d92;
    border-right: 20px solid transparent;
    position: absolute;
    width: 0;
    height: 0;
}
.on-link:hover{
    text-shadow: 1px 2px 3px #808080; 
    color: #fff;
    background-color: #fafafaa6;
}
.on-link_right{
/*	background-color: var(--top-link-main-color);*/
    background-image: -webkit-gradient( linear,left top,right top,from(#9c27b04f),color-stop(#e91e63),to(#f49ab9));
    background-image: -webkit-linear-gradient(left, #9c27b04f, #e91e63, #f49ab9);
    background-image: linear-gradient(90deg, #9c27b04f, #e91e63, #f49ab9);
    background-image: linear-gradient(90deg, #9867ec4f, #b728aa, #ff4ab7);

	color: #000000;
}

.off-link{
	background-color:#fcee21;
	color: #000000;
}
.menu_item a{
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	margin-bottom: 5px;
	text-decoration: none;
}
.top_left_menu .menu_item a{
	text-align: left;
}
.top_right_menu .menu_item a{
	text-align: right;
}
.en-text{
/*	font-size: 40px;*/
        font-size: 1.2rem;
	font-weight: bold;
	padding-top: 15px;
        line-height: 1.8rem;
}
.jp-text{
	font-size: 18px;
	font-weight: normal;
            line-height: 1rem;
}
.top_left_menu .menu_item .en-text{
	padding-left: 20px;
}
.top_left_menu .menu_item .jp-text{
	padding-left: 40px;
}
.top_right_menu .menu_item .en-text{
	padding-right: 20px;
}
.top_right_menu .menu_item .jp-text{
	padding-right: 40px;
}
.menu_item img{
	width: 100%;
	height: 100%;
}
.top_center_logo{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.top_center_logo img{	
	width:70%;
	display:block;
	margin: 0 auto;
	padding-top:1rem;
}
.delay-time0{
	animation-delay: 0.25s;
}
.delay-time1{
	animation-delay: 0.50s;
}
.delay-time2{
	animation-delay: 0.75s;
}
.delay-time3{
	animation-delay: 1s;
}
.delay-time4{
	animation-delay: 1.25s;
}
.delay-time5{
	animation-delay: 1.50s;
}
.delay-time6{
	animation-delay: 1.75s;
}
.delay-time7{
	animation-delay: 2.00s;
}

/*キービジュアル上のメニューアニメーション*/
@keyframes fadein_to_left{
	from{
		opacity: 0;
		transform: translateX(100vw);
	}
	to{
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes fadein_to_right{
	from{
		opacity: 0;
		transform: translateX(-100%);
	}
	to{
		opacity: 1;
		transform: translateX(calc(100% - 300px));
	}
}
/*キービジュアル上のメニューアニメーション終了*/

.top_left_menu{
	position: absolute;
	/*top: 86px;*/
/*        top: 160px;*/
        top: 100px;
}
.menu_item{
	width: 320px;
/*	height: 110px;*/
        height: 80px;
	margin: 15px 0;
}
.menu_item img{
	width: 100%;
	height: 100%;
}</pre></body></html>