/* ========== 共通 ========== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

:root {
  --c_set1: #B8183F;
  --c_set2: #0086CD;
  --c_set3: #00AFEC;
  --c_set4: #ffe72d;
  --c_set5: #886bad;
  --c_set6: #8fc763;
}


html {
	font-family:"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", 'Noto Sans JP',  serif, -apple-system,BlinkMacSystemFont, sans-serif;
	font-size:calc(100vw / 39);
	color:#eeeeee;
	background-color: #000000;
	margin: 0 auto;
	padding: 0;
	min-width: 320px;

	scroll-behavior:smooth;
	-webkit-scroll-behavior:smooth;
	overscroll-behavior-y:contain;
	-webkit-overflow-scrolling: touch;
	overflow-y: scroll;
	overflow-x: hidden;

	opacity: 0;
}

body, header, section, footer {
	margin: 0;
	padding: 0;
}
h1,h2,h3,h4,h5 {
	margin: 0;
	padding: 0;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}
a {
	text-decoration: underline;
	color: var(--c_set2);
	-webkit-transition: all 0.5s;
	-webkit-transition-delay: 0;
	transition: all 0.5s;
	transition-delay: 0;
	opacity: 1;
}
a:hover {
	color: #FFE200;
}
body {
	position: relative;
}

p {
	margin-bottom: 1.5em;
}

header {
	position: fixed;
}

#main_wrapper {
	position: relative;
	margin: 0 auto;
	min-height: 100lvh;
}

#kv {
	display: grid;
	place-items: start center;
	margin: auto;
	height: 100lvh;
}
#kv img {
	display: block;
	max-height: 100lvh;
	aspect-ratio: 69 / 100;
}

#main {
	display: grid;
	place-items: center;
	grid-template-rows: repeat(6, max-content);
	gap: 5vw;
	min-height: 100lvh;
	background: url("../img/bg_sp.png") no-repeat top center;
	background-size: cover;
	padding: 0 5.128vw;
}

.line {
	width: 1px;
	height: 20vw;
	background-color: #ffffff;
}
.movie_btn {
	position: relative;
	width:100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border: solid  0.5128vw #B5B5B5;
	box-sizing: border-box;
	transition: all 0.25s ease;
}
.movie_btn::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width:100%;
	height: 100%;

	background: url("../img/play.svg") no-repeat center;
	background-size: 40% 40%;
	pointer-events: none;
}
.movie_btn:hover {
	filter: brightness(1.2);
}
.movie_btn:hover::after {
	filter: brightness(1.2);
}
.movie_btn video {
	position: relative;
	top: -5%;
	left: -5%;
	width:110%;
	filter: blur(10px) drop-shadow(0 0 0.5em #ffffffee);
}

#autumn {
	display: inline-block;
	text-align: center;
}
#autumn img {
	width: 62%;
	object-fit: contain;
}
#soon {
	display: inline-block;
	text-align: center;
}
#soon img {
	width: 80%;
	object-fit: contain;
}
#link_box {
	display: grid;
	text-align: center;
	grid-template-columns: max-content;
	grid-template-rows: repeat(2, max-content);
	gap : 10vw;
	padding-top: 20vw;
	padding-bottom: 10vw;
}
#link_box .btn_official img{
	width: 46.15vw;
}
#link_box .btn_x img{
	width: 10.25vw;
}
#link_box a {
	display: inline-block;
	transition: all 0.25s ease;
	justify-self: center;
}
#link_box .btn_official:hover {
	filter: drop-shadow(0 0 0.5em #ffffffff) drop-shadow(0 0 0.5em #ffffffff);
}
#link_box .btn_x:hover {
	filter: drop-shadow(0 0 0.5em #ffffffee);
}

section {
	position: relative;
	box-sizing: border-box;
}
footer {
	color: #ffffff;
	font-size: 1.4em;
	font-size: calc(80vw / 28);
	text-align: center;
	padding-top: 5vw;
	padding-bottom: 10vw;
}

/* ========== on off ========== */
.sp {
	display: initial;
}
.pc {
	display: none;
}
br.sp {
	display: inline;
}

/* ================================================== */
/* ==================== 900px以上 ==================== */
/* ================================================== */
@media (min-width: 900px) {
html {
	font-size: 10px;	/* 10pxを基準に変更 */
}

#main_wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	background: url("../img/bg_pc.png") no-repeat top center;
	background-size: cover;

}

#kv {
	place-items: center;
}

#main {
	max-height: 100lvh;
	min-height: 640px;
	background: none;
	padding: 0px;
	margin: 0px 40px;
	gap: 0;
	grid-template-rows: 24% 36% 8% 32%;
}

#autumn img{
	width: 420px;
}
#soon img{
	margin-top: 20px;
	width: 380px;
}
.movie_btn {
	width: auto;
	max-height: 100%;
	border-width: 2px;
}

#link_box {
	padding-top: 0;
	padding-bottom: 0;
	grid-template-columns: 260px;
	grid-template-rows: 58px 40px;
	gap:20px;
}
#link_box .btn_official img{
	width: 260px;
}
#link_box .btn_x img{
	width: auto;
}
#copy {
	font-size: 1.4rem;
}
/* ========== on off ========== */
.sp {
	display: none;
}
.pc {
	display: initial;
}
br.sp {
	display: none;
}

}
/* ================================================== */
/* ==================== 1920px以上 ==================== */
/* ================================================== */
@media (min-width: 1920px) {

}

/* ========== safari用 ========== */
@supports (-webkit-touch-callout: none) {

}
@media (min-width: 1080px) {

}

/* ========== firefox用 ========== */
@-moz-document url-prefix(){
}
