@charset "UTF-8";
/* CSS Document */

/*********************************************************

					　　　　初期設定

**********************************************************/

html{
	font-size: 62.5%; /*1rem=10px*/
	box-sizing: border-box;
	/* scroll-behavior: smooth; */
}

body{
	line-height: 1.5;
	margin: 0 auto;
	width: 100%;
	display: inline-block;
	font-family: 'Noto Sans JP', sans-serif;
	-webkit-font-smoothing: antialiased;
	color: #333;
	backface-visibility: hidden;/* animation時のにじみ防止 */
	-webkit-backface-visibility: hidden;/* animation時のにじみ防止 */
	-webkit-font-smoothing: antialiased;/* animation時の文字にじみ防止 */
	-moz-osx-font-smoothing: grayscale;/* animation時の文字にじみ防止 */
}

.pc{display: block;}

.sp{display: none;}

.main-text.sp{ display: none!important;}

.eng{font-family: 'Montserrat', sans-serif;}

a{text-decoration: none;}

.main{
	width: 100%;
	min-width: 1440px;
	display: flex;
}

.outer-left{
	width: 10%;
	background: url(../img/main-back01.webp)repeat top right / contain;
}

.outer-right{
	width: 10%;
	background: url(../img/main-back02.webp)repeat top left / contain;
}

.inner{
	width: 80%;
	border-left: solid 8px #e60012;
	border-right: solid 8px #e60012;
	box-sizing: border-box;
}

.inner2{
	width: 900px;
	margin: 0 auto;
}

.sec{
	width: 100%;
	padding: 200px 0;
}

.text01{
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
    color: #e60012;
	width: 90%;
	text-align: justify;
	margin: 2em auto 0;
}

.w810{width: 810px;}

.text01 .bold{font-weight: 800;}

#top-btn{
	position: fixed;
	right: 3vw;
	bottom: 3vw;
	width: 60px;
	height: 6 / 5;
	transform: translateY(50%);
	opacity: 0;
	transition: ease 0.3s;
	z-index: 20;
}
#top-btn.active{
	transform: translateY(0);
	opacity: 1;
}
#top-btn img{
	width: 100%; 
	height: auto;
	filter: drop-shadow(3px 3px 3px rgba(229,0,18,0.3));
}

.smooth{
	scroll-behavior: smooth;
}

#shop-btn{
	position: fixed;
	right: 2vw;
	bottom: 7vw;
	width: 190px;
	height: 6 / 5;
	transform: translateY(50%);
	opacity: 0;
	transition: ease 0.3s;
	z-index: 20;
}
#shop-btn.active{
	transform: translateY(0);
	opacity: 1;
}
#shop-btn img{
	width: 100%; 
	height: auto;
	filter: drop-shadow(3px 3px 3px rgba(229,0,18,0.3));
}




/*********************************************************

					ここからheader

**********************************************************/

.header{
	width: 100%;
	/* aspect-ratio: 16/9; */
	height: 56.25vw;
	max-height: 100vh;
	/* border-top: solid 8px #e60012; */
	overflow: hidden;
	box-sizing: border-box;
}

.header .bar{
	display: block;
	width: 100%;
	height: 8px;
	background: #e60012;
}

.header-main{
	position: relative;
	width: 100%;
	height: 80%;
	background: #fff;
	margin: 0 auto;
	display: flex;
}
/* _::-webkit-full-page-media, _:future, :root .header-main {
	height: calc(80% - 8px);
} */

.header-main-center{
	position: relative;
	width: 80%;
	height: 100%;
}

.header-main-left,
.header-main-right{
	width: 10%;
	height: 100%;
	background: #ccc;
}

.header-main-left{ background: url(../img/main-back01.webp)repeat top right / contain;}
.header-main-right{ background: url(../img/main-back02.webp)repeat top left / contain;}

.slider{
	position: relative;
	width: 100%;
	height: calc(20% - 8px);
	overflow: hidden;
}
/* _::-webkit-full-page-media, _:future, :root .slider {
	height: calc(20% - 8px);
} */
.slider::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/slide01-flame.svg)no-repeat center / cover;
	z-index: 2;
}

.slide-flex{
	height: 100%;
	width: auto;
	display: flex;
}

.slide-flex img{
	height: 100%;
	animation: slider 60s infinite linear 0.5s both;
	display: block;
}

@keyframes slider {
	from { transform: translateX(0);}
	to { transform: translateX(-100%);}
}

@keyframes slider2 {
	0% { transform: translateX(-100%);}
	10%,95% { transform: translateX(0%);}
	100% { transform: translateX(100%);}
}



/* 画像 */
@keyframes slider3a {
	0%,10% { transform: translateX(0);}
	20%,74% { transform: translateX(100vw);}
	82%,100% { transform: translateX(200vw);}
}

@keyframes slider3b {
	0%,20% { transform: translateX(0);}
	30%,88% { transform: translateX(100vw);}
	94%,100% { transform: translateX(200vw);}
}

/* テキスト */
@keyframes slider4a {
	0%,20% { transform: translateX(0);}
	30%,88% { transform: translateX(100vw);}
	94%,100% { transform: translateX(200vw);}
}

@keyframes slider4b {
	0%,10% { transform: translateX(0);}
	20%,74% { transform: translateX(100vw);}
	82%,100% { transform: translateX(200vw);}
}

/* テキストディレイ */
@keyframes slider5a {
	0%,20.5% { transform: translateX(0);}
	30.5%,88% { transform: translateX(100vw);}
	94%,100% { transform: translateX(200vw);}
}

@keyframes slider5b {
	0%,10.5% { transform: translateX(0);}
	20.5%,74% { transform: translateX(100vw);}
	82%,100% { transform: translateX(200vw);}
}

.main-back,
.main-item,
.main-text{
	position: absolute;
	top: 0;
	left: calc(50% - 50vw);
	width: 100vw;
	height: 100%;
	display: flex;
}

.back-img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: translateX(-100%);
}
.back-img.b01{background: url(../img/kay-back01.svg)no-repeat center / contain;}
.back-img.b02{background: url(../img/kay-back02.svg)no-repeat center / contain;}
.back-img.b03{background: url(../img/kay-back03.svg)no-repeat center / contain;}
.back-img.b04{background: url(../img/kay-back04.svg)no-repeat center / contain;}

/* ヘッダー背景 */
#item02.item01,#item02.item03{ animation: slider3a 7s ease 0s both;}
#item02.item02,#item02.item04{ animation: slider3b 7s ease 0s both;}

#text02.t01 img:nth-of-type(1),#text02.t03 img:nth-of-type(1),
#text02.t01 img:nth-of-type(3),#text02.t03 img:nth-of-type(3){ animation: slider4a 7s ease 0s both;}
#text02.t02 img:nth-of-type(1),#text02.t04 img:nth-of-type(1),
#text02.t02 img:nth-of-type(3),#text02.t04 img:nth-of-type(3){ animation: slider4b 7s ease 0s both;}

#text02.t01 img:nth-of-type(2),#text02.t03 img:nth-of-type(2){ animation: slider5a 7s ease 0s both;}
#text02.t02 img:nth-of-type(2),#text02.t04 img:nth-of-type(2){ animation: slider5b 7s ease 0s both;}

/* sp用 */
#text02sp.t01 img:nth-of-type(1),#text02sp.t03 img:nth-of-type(1),
#text02sp.t01 img:nth-of-type(3),#text02sp.t03 img:nth-of-type(3){ animation: slider4a 7s ease 0s both;}
#text02sp.t02 img:nth-of-type(1),#text02sp.t04 img:nth-of-type(1),
#text02sp.t02 img:nth-of-type(3),#text02sp.t04 img:nth-of-type(3){ animation: slider4b 7s ease 0s both;}

#text02sp.t01 img:nth-of-type(2),#text02sp.t03 img:nth-of-type(2){ animation: slider5a 7s ease 0s both;}
#text02sp.t02 img:nth-of-type(2),#text02sp.t04 img:nth-of-type(2){ animation: slider5b 7s ease 0s both;}

#back03{transform: translateX(-100%); transition: ease 0.4s;}
#back02{transform: translateX(0);transition: ease 0.4s;}
#back01{transform: translateX(100%);transition: ease 0.4s;}

.item01,
.item03{
	position: absolute;
	left: 58%;
	bottom: -15%;
	height: 108%;
	width: auto;
	z-index: 3;
}

.item02,
.item04{
	position: absolute;
	right: 58%;
	bottom: -15%;
	height: 108%;
	width: auto;
	z-index: 3;
}

.textset{
	position: absolute;
	bottom: 0;
	z-index: 5;
	width: 50%;
	aspect-ratio: 3 / 2;
}

.textset.t01,
.textset.t03{
	left: auto;
	right: 38%;
}

.textset.t02,
.textset.t04{
	left: 38%;
}

.main-text img{
	position: absolute;
}

.main-item,
.textset{
	transform: translateX(-100vw);
	z-index: 3;
}




/* ----------  opening ----------- */

.opening{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	border: 8px solid #e60012;
	box-sizing: border-box;
	z-index: 100;
	transition: 0.5s ease 2.1s;
	pointer-events: none;
}
.opening.end{
	opacity: 0;
	transition: linear 1s;
}

.opening::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
}

.opening-area01{
	position: relative;
	height: 70%;
	width: 100%;
	z-index: 2;
}

.opening-area02{
	position: relative;
	height: 30%;
	width: 100%;
	background: url(../img/main-back01.webp)repeat top;
}
.opening-area02 span{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: #e60012;
	display: block;
}

.opening-area01-wrap{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: ease 1.5s 1.1s;
}

.open-img01,
.open-img03{
	height: 13vh;
}

.open-img02{
	height: 80vh;
	width: 0;
	transform: translateY(20%);
	margin: 0 0.5vw;
	transition: 0.5s ease 0.1s;
}

.opened .open-img02{
	width: 100%;
}

.opened .opening-area01-wrap{
	transform: scale(85) translate(1%,17.7%);
}

.opening.opened{
	opacity: 0;
	visibility: hidden;
}







/* ----------  menu ----------- */
.header-menu{
	position: absolute;
	top: 0;
	left: 0;
	font-size: 14px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 1em 2em;
	box-sizing: border-box;
	z-index: 10;
}

.header-logo{
	height: 3.5em;
}

.header-menu-wrap{
	display: flex;
	border-bottom: 1px solid #e60012;
	background: rgba(255, 255, 255, 0.6);
}

.header-menu-wrap li{ position: relative;}

.header-menu-wrap li a{
	position: relative;
	color: #e60012;
	padding: 0 1em 0.3em;
	display: block;
}

.header-menu-wrap li a:hover{
	text-decoration: underline;
}

.header-menu-wrap li::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 1em;
	width: 1px;
	background: #e60012;
}

.header-menu-wrap li:last-of-type::after{
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	height: 1em;
	width: 1px;
	background: #e60012;
}

/*********************************************************

					ここからfooter

**********************************************************/
.footer-wrap{
	font-size: 16px;
	width: 100%;
	padding: 1em 0;
	background: #e60012;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2em;
}

.footer-wrap img{
	height: 2em;
	width: auto;
}

.footer-wrap p{
	color: #fff;
	font-weight: 600;
}

.dammy{
	height: 1000px;
}






/*********************************************************

					ここからsec01

**********************************************************/

.sec01,
.sec03{
	position: relative;
	padding: 300px 0;
	width: 100%;
	margin: 0 auto;
}

.sec01-wrap{
	position: relative;
	width: 90%;
	aspect-ratio: 53 / 12;
	margin: 0 auto;
}

.sec01-wrap img:nth-of-type(1){
	position: absolute;
	right: 0;
	bottom: 0;
	width: 85%;
	height: auto;
}

.sec01-wrap img:nth-of-type(2){
	position: absolute;
	left: 0;
	top: 0;
	width: 63%;
	height: auto;
}

.sec01-wrap img:nth-of-type(3){
	position: absolute;
	right: 9%;
	bottom: 0;
	width: 40%;
	height: auto;
}

.sec01-wrap2{
	width: 100%;
	margin-top: 60px;
}

.sec01-wrap2-box1{
	position: relative;
	width: 100%;
	aspect-ratio: 121 / 50;
}

.sec01-wrap2-box2{
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 1;
	margin-top: 30px;
}

.sec01-wrap2-box3{
	position: relative;
	width: 100%;
	aspect-ratio: 29 / 15;
	margin-top: 30px;
}

.sec01-wrap2-imgbox1,
.sec01-wrap2-imgbox2{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.sec01-wrap2-imgbox1-01,
.sec01-wrap2-imgbox2-01,
.sec01-wrap2-imgbox1-02,
.sec01-wrap2-imgbox2-02,
.sec01-wrap2-imgbox2-03,
.sec01-wrap2-box2-01,
.sec01-wrap2-box2-02{
	position: absolute;
	top: 0;
	height: 100%;
	width: auto;
}

.sec01-wrap2-imgbox1-01{left: 0;}

.sec01-wrap2-imgbox1-02{
	top: 20%;
	left: -5%;
	height: 85%;
}

.sec01-wrap2-imgbox2-01{right: 0;}

.sec01-wrap2-imgbox2-02{
	top: -5%;
	right: -5%;
	height: 85%;
}

.sec01-wrap2-imgbox2-03{
	right: 10%;
	height: 35%;
}

.sec01-wrap2-box2-02{
	top: 10%;
	right: 0;
	height: 80%;
}

.sec01-wrap2-box3-img{
	position: absolute;
	top: 0;
	height: 100%;
	width: auto;
}

.sec01-wrap2-box3-img.i02{
	right:2%;
	top: -4.5%;
	height: 102%;
}

.sec01-wrap2-box3-img.i03{
	left: -6%;
	top: -16%;
	height: 27%;
}

.sec01-wrap2-box3-img.i04{
	left: 5%;
	top: 17%;
	height: 64%;
}

.sec01-wrap2-box3-img.i05{height: 98%;}






/*********************************************************

					ここからsec02

**********************************************************/

.sec02{width: 100%;}

.sec02-inner{
	position: relative;
	width: 100%;
	max-width: 1150px;
	height: auto;
	overflow: hidden;
	margin: 0 auto;
}

.sec02-img01{
	width: 100%;
	height: auto;
	background: #fff;
}

.sec02-img02{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
}

.sec02-img03{
	position: absolute;
	bottom: 2%;
	left: 3%;
	width: 94%;
	height: auto;
}

.sec02-textbox{
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	font-size: 18px;
	font-weight: 600;
	line-height: 2.2;
	text-align: justify;
	padding: 3em 2.5em;
	box-sizing: border-box;
	color: #fff;
	background: #e60012;
}






/*********************************************************

					ここからsec03

**********************************************************/

.sec03-textbox{
	width: 100%;
	aspect-ratio: 92 / 7;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.sec03-textbox img{
	height: 100%;
	width: auto;
}

.sec03-textbox img:nth-of-type(2){
	height: 60%;
	margin: 0 5px 0 0;
}

.sec03-wrap{
	font-size: 18px;
	margin-top: 60px;
	margin-left: 50%;
	width: 543px;
	padding: 3em 3em 0;
	box-sizing: border-box;
	background: url(../img/sec03-waku01.svg)no-repeat center top / cover;
	transform: translateX(-50%);
}

.sec03-wrap-flex{
	width: 100%;
}

.sec03-wrap-flex-imgbox01{
	width: 100%;
	aspect-ratio: 2 / 1.1;
	background: url(../img/sec03-img01.png)no-repeat center / cover;
	border: solid 2px #e60012;
	box-sizing: border-box;
	margin-bottom: 1.5em;
}

.sec03-wrap-flex-text01{
	width: 100%;
	font-weight: 500;
	line-height: 2;
	text-align: justify;
	color: #e60012;
}







/*********************************************************

					ここからmakuake

**********************************************************/

.makuake{
	width: 100%;
	text-align: center;
	font-size: 28px;
}

.makuake-img01{
	width: 250px;
	height: auto;
}

.makuake-title{
	font-weight: 600;
	line-height: 1.5;
}

.makuake-title span{
	font-size: 220%;
	font-weight: 600;
}

.makuake-boxtext01{
	background: #333;
	color: #fff;
	display: inline-block;
	line-height: 2;
	padding: 0 2em;
}

.makuake img{
	width: 500px;
	height: auto;
}

.makuake div{
	background: #e60012;
	width: 100%;
	padding: 2em 0;
}

.makuake p{
	margin-top: 0.7em;
	line-height: 1.5;
	font-weight: 300;
}







/*********************************************************

					ここからmainmenu

**********************************************************/

.mainmenu{
	position: relative;
	width: 1180px;
	padding: 300px 0 0;
	margin: 0 auto;
}

.mainmenu-wrap{
	position: relative;
	left: -22px;
	width: 100%;
	aspect-ratio: 100 / 59;
	background: url(../img/main-menu-back01.svg)no-repeat center / contain;
}

.mainmenu-container{
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 46%;
	aspect-ratio: 21 / 23;
	transform: translateX(-100vw);
}
.active.mainmenu-container{
	animation: 0.6s boing-anim2 linear forwards;
}
@keyframes boing-anim2{
	0% { transform: translateX(-100vw); } 
	80% { transform: translateX(-25%) scale(0.85, 1.05) skewX(-10deg); }
	100% { transform: translateX(-50%); }
}
.mainmenu-container::before{
	content: '';
	position: absolute;
	top: 1%;
	left: 1%;
	width: 98%;
	height: 91%;
	background: #fff;
	z-index: -1;
}

.mainmenu-container .img01{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	pointer-events: none;
}

.mainmenu-container-flex{
	display: flex;
	width: 94%;
	margin-left: 3%;
	align-items: flex-end;
	justify-content: space-between;
	margin-top: 17px;
}

.mainmenu-container-flex.f2{
	margin-top: 25px;
}

.mainmenu-container-flex a{
	width: 32%;
	height: auto;
}
.mainmenu-container-flex a:hover{
	animation: .8s boing-anim linear;
}

@keyframes boing-anim{
	10% { transform: scale(1.1, 0.9); } /*少し縮む*/
	40% { transform: scale(1.2, 0.80); } /*縮む*/
	50% { transform: scale(0.85, 1.03); } /*反動で縦長*/
	60%{ transform: scale(1.1, 0.9); } /*また反動で縮む*/
	70% { transform: scale(0.95, 1.04); } /*反動が小さく*/
	90%{ transform: scale(0.98, 1.02); } /*最後の震え*/
	100% { transform: scale(1,1); } /*元に戻る*/
}

.mainmenu-container-flex a img{
	width: 100%;
	height: auto;
}




/*********************************************************

					ここからsec04

**********************************************************/

.sec04{
	width: 100%;
	padding: 300px 0 0;
}

.sec04-textwrap{
	position: relative;
	width: 100%;
	aspect-ratio: 64 / 11;
}

.sec04-textwrap img:nth-of-type(1){
	position: absolute;
	right: 0;
	bottom: 0;
	height: 88%;
}
.sec04-textwrap img:nth-of-type(2){
	position: absolute;
	left: 0;
	top: 0;
	height: 44%;
}
.sec04-textwrap img:nth-of-type(3){
	position: absolute;
	left: 29.5%;
	bottom: 0;
	height: 44%;
}

.sec04-waku{
	position: relative;
	width: 100%;
	aspect-ratio: 8 / 7;
	box-sizing: border-box;
	background: #e60012;
	margin-top: 60px;
}
.sec04-waku::before{
	content: '';
	position: absolute;
	right: -2.3%;
	top: -3.2%;
	width: 4%;
	aspect-ratio: 1/1;
	background: #fff;
	transform: rotate(45deg);
}
.sec04-waku::after{
	content: '';
	position: absolute;
	left: -2.3%;
	bottom: -3.2%;
	width: 4%;
	aspect-ratio: 1/1;
	background: #fff;
	transform: rotate(45deg);
}

.sec04-waku02{
	width: 98.5%;
	height: 98.5%;
	background: #fff;
	border: solid 4px #e60012;
	box-sizing: border-box;
}

.sec04-waku02-flex{
	position: relative;
	width: 100%;
	height: 48%;
	padding: 5%;
	box-sizing: border-box;
	border-bottom: solid 4px #e60012;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.sec04-waku02-flex::after{
	content: '';
	position: absolute;
	left: 47%;
	top: 100%;
	width: 6%;
	aspect-ratio: 1/1;
	background: url(../img/sec04-arrow.svg)no-repeat top / contain;
}

.sec04-waku02-flex img{
	height: 100%;
	width: auto;
	border: solid 2px #e60012;
}

.sec04-waku02-flex2{
	width: 100%;
	height: 52%;
	padding: 5%;
	box-sizing: border-box;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.sec04-waku02-flex2 img{
	height: 100%;
	width: auto;
}

.sec04-waku02-flex div{
	width: 100%;
	margin-left: 5%;
}

.sec04-waku02 .text01.t1{
	margin: 0 0 0 0;
	width: 100%;
}

.sec04-waku02 .text01.t2{
	margin: 0 0 0 5%;
	width: 38%;
}

.sec04-boxtext{
	position: relative;
	background: #e60012;
	color: #fff;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.8;
	padding-left: 1em;
	margin-bottom: 0.5em;
}

.sec04-boxtext::after{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	height: 110%;
	aspect-ratio: 1/2;
	background: url(../img/sec04-w.webp)no-repeat right / contain;

}

.sec04-waku02-flex .after-text{
	position: absolute;
	top: 4%;
	left: 2%;
	z-index: 3;
	border: 0;
	width: 15%;
	height: auto;
}

.active .sec04-waku02-flex .after-text{
	animation: .8s boing-anim linear;
}






/*********************************************************

					ここからsec05

**********************************************************/

.sec05{
	width: 100%;
	padding: 300px 0;
}

.sec05-inner {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.sec05 .text01{
	margin-top: 80px;
}

.ch-title{
	height: 90px;
	width: auto;
	text-align: center;
	display: block;
	margin: 0 auto 60px;
}

.bar{
	width: 100%;
	height: 8px;
	background: #e60012;
	display: block;
}

.sec05-imgbox01{
	position: relative;
	width: 100%;
	aspect-ratio: 10 / 4.75;
	max-height: 546px;
}

.sec05-imgbox01 img:nth-of-type(1),
.sec05-imgbox01 img:nth-of-type(2){
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sec05-imgbox01 img:nth-of-type(3){
	position: absolute;
	top: -11%;
	left: 60%;
	height: 130%;
	width: auto;
	z-index: 2;
}

.sec05 .inner2 img{
	width: 100%;
	height: auto;
}

.sec05-img01{ margin-top: 60px;}
.sec05-img03{ margin-top: 15px;}
.sec05-img05{ margin-top: 20px;}






/*********************************************************

					ここからsec06

**********************************************************/

.sec06{
	padding: 300px 0;
}

.sec06-wrap01{
	position: relative;
	width: 100%;
	aspect-ratio: 9 / 5;
	border: solid 4px #e60012;
	background: url(../img/sec06-img01.webp)no-repeat center / cover;
	overflow: hidden;
}

.sec06-imgbox01,
.sec06-imgbox02{
	position: absolute;
	top: 0;
	width: 50%;
	height: 100%;
	background: #e60012;
}

.sec06-imgbox01{ left: 0;}

.sec06-imgbox02{ right: 0;}

.sec06-imgbox01 img{
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: auto;
}

.sec06-imgbox02 img{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: auto;
}








/*********************************************************

					ここからsec07

**********************************************************/

.sec07{ width: 100%;}

.sec07-flex{
	width: 100%;
	max-width: 1150px;
	margin: 0 auto;
	display: flex;
	border-top: solid 8px #e60012;
	border-bottom: solid 8px #e60012;
	border: solid 8px #e60012;
	transform: translateX(-8px);
}

.sec07-imgbox01{
	width: 55%;
	aspect-ratio: 1/1;
	background: #e60012 url(../img/sec07-img01.webp)no-repeat center / cover;
	border-right: solid 8px #e60012;
}

.sec07-textbox01{
	width: 45%;
	padding: 40px;
	background: #fff;
}

.sec07-textbox01 img{width: 100%;}

.sec07-textbox01 .text01{width: 100%;}






/*********************************************************

					ここからsec08

**********************************************************/

.sec08{
	width: 100%;
	padding: 300px 0 0;
}

.sec08 .text01{
	width: 100%;
	margin: 0;
}

.ch-title2{
	height: 117px;
    width: auto;
    text-align: center;
    display: block;
    margin: 0 auto 20px;
}

.ch-title3{
	height: 113px;
    width: auto;
    text-align: center;
    display: block;
    margin: 0 auto 20px;
}

.sec08-textbox01{
	position: relative;
	width: 75%;
	margin: 0 auto;
}

.sec08-textbox01 img:nth-of-type(1){
	width: 100%;
	height: auto;
}

.sec08-textbox01 img:nth-of-type(2){
	position: absolute;
	left: 0;
	bottom: 0;
	height: 100%;
	width: auto;
}

.sec08-textbox01 img:nth-of-type(3){
	position: absolute;
	left: 30%;
	bottom: 0;
	height: 100%;
	width: auto;
}

.sec08-flex{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 80px;
}

.sec08-flex-center{
	position: relative;
	width: 8.3%;
	z-index: 1;
}

.sec08-flex-center::before{
	content: '';
	position: absolute;
	top: -3%;
	right: 51%;
	height: 108%;
	aspect-ratio: 10 / 35;
	background: url(../img/sec08-shadow01.webp)no-repeat center / contain;
	z-index: -1;
}

.sec08-flex-center img{
	width: 100%;
	height: auto;
}

.sec08-flex-left,
.sec08-flex-right{
	width: 39%;
}

.text01.waka{ 
	position: relative;
	padding-left: 4em;
	box-sizing: border-box;
}
.text01.waka::before{
	content: '若';
	font-size: 320%;
	font-weight: 800;
	line-height: 1.2;
	position: absolute;
	left: 0;
	top: 0;
}

.text01 .ul{
	position: relative;
	font-weight: 700;
}

.text01 .reverse{
	font-size: 129%;
	font-weight: 800;
	font-style: italic;
	color: #fff;
	background: #e60012;
	line-height: 1.2;
	padding:0 0.3em 0.1em 0.2em;
	display: inline-block;
}


/*********************************************************

					ここからsec09

**********************************************************/

.sec09{
	width: 100%;
	padding: 300px 0 0;
}

.sec09 .inner2{
	width: 100vw;
	margin-left: calc(50% - 50vw);
	overflow: hidden;
}

.sec09-flex01,
.sec09-flex02{
	width: 900px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin: 0 auto;
}

.sec09-flex02{margin: 40px auto;}

.sec09-flex01 img{
	width: 23.5%;
	height: auto;
}

.sec09-flex02 img{
	width: 32%;
	height: auto;
}




/*********************************************************

					ここからsec10

**********************************************************/

.sec10{
	width: 100%;
	padding: 300px 0;
	text-align: center;
}

.sec10 .text01{
	width: auto;
	display: inline-block;
}

.sec10-textbox01{
	position: relative;
	height: 72px;
	aspect-ratio: 52 / 7;
	margin: 0 auto;
}

.sec10-textbox01 img:nth-of-type(1){
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: auto;
}

.sec10-textbox01 img:nth-of-type(2){
	position: absolute;
	left: 29%;
	bottom: -4%;
	height: 100%;
	width: auto;
}

.sec10-flex{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin: 80px auto 0;
}

.sec10-flex-imgbox01{
	position: relative;
	width: 48%;
}

.sec10-flex-imgbox01 img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
}

.sec10-flex-txtbox02{width: 48%;}

.sec10-name{width: 65%;}

.sec10-flex-txtbox02 .text01{
	width: 100%;
	font-size: 12px;
}

.sec10-flex-txtbox02 table{
	font-size: 15px;
	width: 100%;
	margin: 20px auto 0;
	color: #e60012;
	text-align: left;
}

.sec10-flex-txtbox02 table th,
.sec10-flex-txtbox02 table td{
	padding: 0.5em 0.5em;
}

.sec10-flex-txtbox02 table th{
	border-bottom: solid 1px #e60012;
	border-right: solid 1px #e60012;
	width: 4em;
	text-align: center;
	vertical-align: middle;
}
.sec10-flex-txtbox02 table td{
	border-bottom: solid 1px #e60012;
}
.sec10-flex-txtbox02 table tr:last-of-type th,
.sec10-flex-txtbox02 table tr:last-of-type td{
	border-bottom: none;
}



/*********************************************************

					ここからscroll

**********************************************************/
.scroll{
	position: relative;
	width: 100vw;
	height: 8100px;
	margin-left: calc(50% - 50vw);
	padding: 0;
}

.zoom-wrap{
	position: absolute;
	width: 56%;
	left: 22%;
	z-index: 2;
	transform-origin: center;
}

.zoom-wrap.fix{
	position: fixed;
	top: 10%;
}

.zoom-wrap.fix2{
	top: auto;
	bottom: 0;
}

.zoom-wrap.zoomoff{transition:ease 1s;}

.trans-wrap::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/scroll-text01.png)no-repeat center top / contain;
	transform: translateY(5%);
	transition: ease 0.3s;
}
.trans-wrap.back-text::before{ transform: translateY(-10%);}

.trans-wrap{
	position: relative;
	width: 100%;
	transform: translate(0%,0%);
}

.trans-wrap.active{
	transition:ease 0.5s;
}
.trans-wrap.trans02{ transform: translate(-12%,-38%)!important;}
.trans-wrap.trans03{ transform: translate(-48%,-8%)!important;}
.trans-wrap.trans04{ transform: translate(-2%,20%)!important;}
.trans-wrap.trans05{ transform: translate(13%,0%)!important;}

.scroll-img{
	position: relative;
	width: 100%;
	height: auto;
	z-index: 2;
}

.scroll-img-pop{
	position: absolute;
	top: 2.5%;
	left: -3%;
	width: 106%;
	height: auto;
	z-index: 3;
	filter: drop-shadow(2px 6px 6px rgba(230, 0, 18, 0.3));
	animation: fuwa 1.5s ease 0s infinite;
	opacity: 0;
	transition: 0.3s ease;
}

@keyframes fuwa {
	0%,100% { transform:translateY(0.3%); }
	50% { transform:translateY(-0.3%); }
}

.pop .scroll-img-pop{opacity: 1;}

.zoom-frame{
	top: 0;
	left: 0;
	width: 100%;
	aspect-ratio: 16/9;
	z-index: 10;
	box-sizing: border-box;
}

.active.zoom-frame{position: fixed;}

.zoom-inframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	aspect-ratio: 124 / 69;
	transform: translate(66%,78%);
	filter: drop-shadow(2px 10px 10px rgba(230, 0, 18, 0.3));
}
.zoom-inframe::before{
	content: '';
	position: absolute;
	top: -7%;
	left: 14%;
	height: 20%;
	width: 100%;
	z-index: 11;
}

.zoom-inframe-cover{
	width: 100%;
	height: 100%;
	background: url(../img/scroll-waku-s.svg)no-repeat center / contain;
	display: none;
}

.pos01 .set01,
.pos02 .set02,
.pos03 .set03,
.pos04 .set04,
.pos05 .set05{
	display: block;
	animation: 0.3s upper ease;
}

@keyframes upper {
	0%   { transform:translateY(20%); }
	100% { transform:translateY(0); }
}
  

/* スクロールポップアップ表示位置 */
.zoom-inframe.pos01{ transform: translate(66%,78%);}
.zoom-inframe.pos02{ transform: translate(74%,78%);}
.zoom-inframe.pos03{ transform: translate(76%,26%);}
.zoom-inframe.pos04{ transform: translate(77%,58%);}
.zoom-inframe.pos05{ transform: translate(60%,37%);}

/* ポップアップテキスト */
.zoom-inframe.pos01::before{ background: url(../img/scroll-waku-text01.svg)no-repeat left / contain;}
.zoom-inframe.pos02::before{ background: url(../img/scroll-waku-text02.svg)no-repeat left / contain;}
.zoom-inframe.pos03::before{ background: url(../img/scroll-waku-text03.webp)no-repeat left / contain;}
.zoom-inframe.pos04::before{ background: url(../img/scroll-waku-text04.webp)no-repeat left / contain;}
.zoom-inframe.pos05::before{ background: url(../img/scroll-waku-text05.svg)no-repeat left / contain;}

.zoom-frame-wrap{
	position: absolute;
	width: 76%;
	height: 85%;
	margin-left: 20%;
	margin-top: 3.5%;
}

.zoom-frame-wrap img{
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: 100%;
	opacity: 1;
}

.set01 img:nth-of-type(1){ left: 5%; transform:translateX(0);}
.set02 img:nth-of-type(1){ left: 24%;}
.set03 img:nth-of-type(1){ left: 12%; top: -2%; height: 105%;}
.set04 img{left: 6%;}
.set04 img:nth-of-type(3){ opacity: 0;}
.set04 img:nth-of-type(2){ opacity: 0;}
.set04 img:nth-of-type(1){ transition: none;}
.set05 img{ left: auto; right: 10%;}


.pos01 .set01 img:nth-of-type(1){ animation: 0.5s anime1 ease 0.3s forwards;}
.pos02 .set02 img:nth-of-type(1){ animation: 0.5s anime2 ease 0.3s forwards;}
.pos04 .set04 img:nth-of-type(3){ animation: 0.5s anime3 ease 1s forwards;}
.pos04 .set04 img:nth-of-type(2){ animation: 0.5s anime3 ease 0.5s forwards; }
.pos05 .set05 img:nth-of-type(1){ animation: 0.5s anime4 ease 0.3s forwards;}

@keyframes anime1 {
	0%   { transform:translateX(0); }
	100% { transform:translateX(103%); }
}
@keyframes anime2 {
	0%   { transform:translateX(0); }
	100% { transform:translateX(143%); }
}
@keyframes anime3 {
	0%   { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes anime4 {
	0%   { transform:translateX(0); }
	100% { transform:translateX(-110%); }
}


#scroll-write{
	position: fixed;
	right: 0;
	bottom: 0;
	font-size: 30px;
	z-index: 100;
}

.fix-flame{
	position: fixed;
	top: 0;
	left: 0;
	width: 110vw;
	height: 110vh;
	border: solid 11vw rgba(0, 0, 0, 1);
	box-sizing: border-box;
	z-index: 10;
	opacity: 0.5;
	filter: blur(3vw);
	transform: translate(-5vw,-5vh);
	opacity: 0;
	pointer-events: none;
	transition: ease-in-out 0.2s;
}
.fix-flame.active{
	opacity: 0.5;
}

/*********************************************************

					ここからshuffle

**********************************************************/

.shuffle-textbox01{
	position: relative;
	width: 600px;
	margin: 0 auto 60px;
	display: block;
}

.shuffle-textbox01 img:nth-of-type(1){
	width: 100%;
	height: auto;
}

.shuffle-textbox01 img:nth-of-type(2){
	position: absolute;
	top: 0;
	left: 21%;
	width: 63%;
	height: auto;
	transform: translateX(-100vw);
	transition: ease 0.5s;
}

.active.shuffle-textbox01 img:nth-of-type(2){
	transform: translateX(0);
}


.shuffle-wrap{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 21px;
	width: 600px;
	aspect-ratio: 1/1;
	margin: 0 auto;
}

.shuffle-wrap.lock{
	pointer-events: none;
}

.shuffle-wrap-imgbox{
	position: relative;
	width: calc(100% / 3 - 14px);
	aspect-ratio: 1/1;
	cursor: pointer;
	z-index: 2;
	transition: ease 0.7s;
	transform-style: preserve-3d;
}

.back{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	transform: rotateY(180deg);
}

.front{backface-visibility: hidden;}

.back img{
	width: 100%;
	height: 100%;
}

.bc1 .back{ background: #e60012;}
.bc2 .back{ background: #333333;}
.bc3 .back{ background: #575147;}
.bc4 .back{ background: #2a586d;}

.shuffle-wrap-imgbox .triger{
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 3;
}

.shuffle-wrap-imgbox.select{
	transform: translateY(-10%);
	box-shadow: 0px 5px 5px #ccc ;
}
/* 
.end.shuffle-wrap-imgbox.select{ pointer-events: none;}

.shuffle-wrap-imgbox .end{ opacity: 0;}

.shuffle-wrap-imgbox:hover{ opacity: 0.7;} */

.shuffle-wrap-frame{
	position: absolute;
	top: 0;
	left: 50%;
	width: calc(100% / 3 + 7px);
	height: 100%;
	transform: translateX(-50%);
	border-left: 1px solid #e60012;
	border-right: 1px solid #e60012;
	z-index: 1;
}

.shuffle-wrap-frame2{
	position: absolute;
	top: 50%;
	left: 0;
	height: calc(100% / 3 + 7px);
	width: 100%;
	transform: translateY(-50%);
	border-top: 1px solid #e60012;
	border-bottom: 1px solid #e60012;
	z-index: 1;
}

.end .shuffle-wrap-imgbox{
	pointer-events: none;
}

.end .shuffle-wrap-imgbox{
	transform: rotateY(180deg)!important;
}











/*********************************************************

				ここからスクロールアニメ

**********************************************************/

.ex .in01{
	transform: translateX(-100vw);
	transition: ease 0.5s;
}

.ex .in02{
	transform: translateX(-100vw);
	transition: ease 0.5s 0.2s;
}

.active .in01,
.active .in02{
	transform: translateX(0);
}

.ex .change01b{
	opacity: 0;
}

.active .change01b{
	animation: 2s off1 linear infinite;
}

@keyframes on1 {
	50% { opacity: 1; }
	100% { opacity: 0; }
}

@keyframes off1 {
	25% { opacity: 0; }
	30% { opacity: 1; }
	75% { opacity: 1; }
	80% { opacity: 0; }
}

.ex .act01a,
.ex .act01b,
.ex .act01c{
	opacity: 0;
}

.active .act01a{
	animation: 2.5s act1a linear infinite;
}
.active .act01b{
	animation: 2.5s act1b linear infinite;
}
.active .act01c{
	animation: 2.5s act1c linear infinite;
}

@keyframes act1a {
	33% { opacity: 1; }
	66% { opacity: 0; }
}

@keyframes act1b {
	33% { opacity: 0; }
	66% { opacity: 1; }
}

@keyframes act1c {
	66% { opacity: 0; }
	100% { opacity: 1; }
}

.ex .act02b,
.ex .act02c{
	opacity: 0;
}

.active .act02a{ animation: 3s act2a linear infinite;}
.active .act02b{ animation: 3s act2b linear infinite;}
.active .act02c{ animation: 3s act2c linear infinite;}

@keyframes act2a {
	25% { opacity: 1; }
	30% { opacity: 0; }
	100% { opacity: 0; }
}
@keyframes act2b {
	20% { opacity: 0; }
	25% { opacity: 1; }
	50% { opacity: 1; }
	55% { opacity: 0; }
}
@keyframes act2c {
	45% { opacity: 0; }
	50% { opacity: 1; }
	100% { opacity: 1; }
}

@keyframes act2b-sp {
	20% { opacity: 0; }
	25% { opacity: 1; }
	100% { opacity: 1; }
}
@keyframes act2c-sp {
	45% { opacity: 0; }
	50% { opacity: 1; }
	90% { opacity: 1; }
	100% { opacity: 0; }
}

@keyframes act4 {
	20% { opacity: 0; }
	25% { opacity: 1; }
	90% { opacity: 1; }
	100% { opacity: 0; }
}

.ex .sec02-img02,
.ex .act3{
	opacity: 0;
	transition: 2s 0.5s ease-in-out;
}

.ex .sec02-textbox{
	transform: translateX(-100%);
	transition: 0.3s 2.0s ease;
}

.active .sec02-img02,
.active .act3{
	opacity: 1;
}

.active .sec02-textbox{
	transform: translateX(0);
}

.ex .sec06-imgbox01,
.ex .sec06-imgbox02{
	transition: 1s 0.5s ease-in-out;
}

.active .sec06-imgbox01{ transform: translateX(-80%);}
.active .sec06-imgbox02{ transform: translateX(80%);}

.ex .t1 .ul::before,
.ex .t1 .ul::after,
.ex .t2 .ul::before,
.ex .t3 .ul::before,
.ex .t3 .ul::after{
	content: '';
	position: absolute;
	top: 1.5em;
	left: -0.1em;
	width: 8.8em;
	height: 2px;
	background: #e60012;
	transform-origin: left;
	transform: scale(0,1);
	transition: 0.5s ease 0.5s;
}

.ex .t1 .ul:nth-of-type(1)::before{
	top: 1.5em;
	left: -0.1em;
	width: 8.8em;
}

.ex .t1 .ul:nth-of-type(1)::after{
	top: 3.5em;
	left: -13.2em;
	width: 2.8em;
}

.ex .t1 .ul:nth-of-type(2)::before{
	top: 1.5em;
	left: -0.1em;
	width: 8.8em;
}

.ex .t1 .ul:nth-of-type(2)::after{
	top: 3.5em;
	left: -13.2em;
	width: 12.3em;
}

.ex .t2 .ul::before{
	width: 15.3em;
}

.ex .t3 .ul:nth-of-type(1)::before{
	top: 1.5em;
	left: -0.1em;
	width: 6.8em;
}

.ex .t3 .ul:nth-of-type(1)::after{
	top: 3.5em;
	left: -15.3em;
	width: 13.2em;
}

.ex .t3 .ul:nth-of-type(2)::before{
	top: 1.5em;
	left: -0.1em;
	width: 13.4em;
}
.ex .t3 .ul:nth-of-type(2)::after{
	display: none;
}

.active .t1 .ul::before,
.active .t1 .ul::after,
.active .t2 .ul::before,
.active .t3 .ul::before,
.active .t3 .ul::after{
	transform: scale(1,1);
}

.ex .reverse{
	position: relative;
	background: transparent;
	z-index: 2;
}

.ex .reverse::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #e60012;
	transform-origin: left;
	transform: scale(0,1);
	transition: 0.5s ease 1s;
	z-index: -1;
}

.ex .reverse:nth-of-type(2):before{transition: 0.5s ease 1.3s;}
.ex .reverse:nth-of-type(3):before{transition: 0.5s ease 1.8s;}

.active .reverse::before{
	transform: scale(1,1);
}

.ex .sec08-flex-center::before{
	transform-origin: right;
	transform: scale(0,1);
	transition: 2s ease;
}

.active .sec08-flex-center::before{
	transform: scale(1,1);
}

.ex3 .sec09-flex01 img{
	transform: translateX(-100vw);
	transition: ease 1s;
}
.ex3 .sec09-flex01.re img{
	transform: translateX(100vw);
}

.ex3 .sec09-flex01 img:nth-of-type(2){ transition: ease 1s 0.3s;}
.ex3 .sec09-flex01 img:nth-of-type(3){ transition: ease 1s 0.6s;}
.ex3 .sec09-flex01 img:nth-of-type(4){ transition: ease 1s 0.9s;}

.ex3.active .sec09-flex01 img,
.ex3.active .sec09-flex01.re img{
	transform: translateX(0);
}

.sec10-flex-imgbox01.ex img:nth-of-type(2){
	opacity: 0;
	transition: 0.5s ease 0.5s;
}
.sec10-flex-imgbox01.active img:nth-of-type(2){opacity: 1;}

.w-box01,.w-box02,.w-box03,
.w-box04,.w-box05,.w-box06{
	position: absolute;
	display: inline-block;
	background: #fff;
	height: 20px;
	width: 60px;
	transform-origin: right;
	transform: scale(1,1);
	transition: 0.5s ease 1.2s;
}
.w-box01{top: -5px; left: 41%}
.w-box02{top: 72px; left: -7px}
.w-box03{top: 137px; left: -7px}
.w-box04{top: 320px; left: -7px}
.w-box05{top: 170px; right: -5px;}
.w-box06{width: 190px; top: 452px; right: -5px;}

.active .w-box01,.active .w-box02,.active .w-box03,
.active .w-box04,.active .w-box05,.active .w-box06{
	transform: scale(0,1);
}




.sec03-gif{
	width: 80%;
	max-width: 750px;
	display: block;
	margin: 80px auto 0;
}

.sec.shuffle{
	padding-top: 0;
}

.sec10-wrap{
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	text-align: left;
}

.sec10-name2{
	height: 32px;
	width: auto;
	padding-top: 80px;
}

.sec10-wrap table{
	font-size: 15px;
	width: 100%;
	color: #e60012;
	margin-top: 20px;
}

.sec10-wrap table td,
.sec10-wrap table th{
	border: solid 1px #e60012;
	text-align: center;
	padding: 0.5em 0;
}

.sec10-img2{
	width: 100%;
	margin-top: 40px;
}

.sec10-text05{
	font-size: 12px;
	font-weight: 500;
	line-height: 1.7;
	margin-top: 1em;
	color: #e60012;
}

/*********************************************************

			ここからメディアクエリ(タブレット）

**********************************************************/

@media screen and (max-width: 1000px){
	
}
	
/*********************************************************

			   ここからメディアクエリ(SP）

**********************************************************/

@media screen and (max-width: 768px){
	.pc{display: none!important;}
	.sp{display: block;}

	.header{
		position: relative;
		height: 130vw;
	}

	.header .bar{
		height: 4px;
	}

	.header-main{
		height: calc(80% + 4px);
	}

	.header-main-center{
		width: 100%;
		height: 100%;
	}

	.slider{
		position: absolute;
		bottom: 0;
		left: 0;
		height: 17%;
	}

	/* Safari */
	_::-webkit-full-page-media, _:future, :root .slider {
		height: calc(17% - 4px);
		margin-top: 2%;
	}

	.header-menu{
		position: relative;
		justify-content: center;
		padding: 2.5vw 0;
	}

	.header-logo{height: 6vw;}

	.sp-menu{
		position: relative;
		background: #fff;
		width: 100%;
		height: auto;
		display: flex;
		border-top: solid 2px #e60012;
		border-bottom: solid 2px #e60012;
		box-sizing: border-box;
		z-index: 100;
	}

	.sp-menu li{
		width: calc(100% / 6);
		border-left: 1px solid #e60012;
	}
	.sp-menu li:first-of-type{border-left:0;}

	.sp-menu a{
		width: 100%;
		display: block;
	}

	.sp-menu img{
		width: 100%;
		height: auto;
	}

	.sp-menu.fixed{
		position: fixed;
		top: 0;
		z-index: 20;
	}

	.main-back, .main-item, .main-text{
		top: 16vw;
		height: calc(100% - 16vw);
	}
	.main-text.sp{display: flex!important;}
	

	.back-img{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		transform: translateX(-100%);
	}
	.back-img.b01{background:#e60012 url(../img/kay-back01sp.webp)no-repeat top / contain;}
	.back-img.b02{background:#231815 url(../img/kay-back02sp.webp)no-repeat top / contain;}
	.back-img.b03{background:#575147 url(../img/kay-back03sp.webp)no-repeat top / contain;}
	.back-img.b04{background:#3E5D77 url(../img/kay-back04sp.webp)no-repeat top / contain;}

	.item01, .item03{
		height: 98%;
		bottom: 0;
		left: 40%;
	}

	.item02, .item04{
		height: 98%;
		bottom: 0;
		right: 40%;
	}

	.textset{width: 53%;}

	.textset.t01, .textset.t03{right: 44%;}

	.textset.t02, .textset.t04{left: 44%;}

	.main{
		min-width: auto;
		overflow: hidden;
	}

	.inner{
		width: 90%;
		border-left: solid 3px #e60012;
		border-right: solid 3px #e60012;
	}

	.outer-left{
		width: 5%;
		background: url(../img/main-back01-sp.webp)repeat top right / contain;
	}

	.outer-right{
		width: 5%;
		background: url(../img/main-back02-sp.webp)repeat top left / contain;
	}

	.sec01, .sec03, .sec05, .sec06, .sec08,.sec10{padding: 60px 0;}
	.sec04{padding: 60px 0 0;}
	.sec09{padding: 0;}

	.inner2{width: 84%;}

	.sec01-wrap2{margin-top: 30px;}

	.sec01-wrap2 img{
		width: 100%;
		height: auto;
	}

	.sp-act4b{
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
		animation: 3s act4 linear infinite;
	}

	.sec01-wrap2-imgbox1{position: relative;}

	.sec01-wrap2 .sp-act1a{
		position: absolute;
		top: -5vw;
		left: 50%;
		width: 20%;
		height: auto;
		opacity: 0;
	}

	.sec01-wrap2 .sp-act1b{
		position: absolute;
		top: -5vw;
		left: 50%;
		width: 20%;
		height: auto;
		opacity: 0;
	}

	.sec01-wrap2 .sp-act1c{
		position: absolute;
		top: -5vw;
		left: 50%;
		width: 20%;
		height: auto;
		opacity: 0;
	}

	.sec01-wrap2 .sp-act1a{animation: 3s act1a linear infinite;}

	.sec01-wrap2 .sp-act1b{animation: 3s act1b linear infinite;}

	.sec01-wrap2 .sp-act1c{animation: 3s act1c linear infinite;}

	.sec01-wrap2 .sp-act2a{
		position: absolute;
		top: 3vw;
		left: 2%;
		width: 45%;
		height: auto;
	}

	.sec01-wrap2 .sp-act2b{
		position: absolute;
		top: 3vw;
		left: 2%;
		width: 45%;
		height: auto;
		opacity: 0;
	}

	.sec01-wrap2 .sp-act2b{animation: 2s off1 linear infinite;}

	.sec01-wrap2 .sp-act3a{
		position: absolute;
		top: 15vw;
		right: 5%;
		width: 55%;
		height: auto;
		animation: 3s act2a linear infinite;
	}

	.sec01-wrap2 .sp-act3b{
		position: absolute;
		top: 15vw;
		right: 5%;
		width: 55%;
		height: auto;
		opacity: 0;
		animation: 3s act2b-sp linear infinite;
	}

	.sec01-wrap2 .sp-act3c{
		position: absolute;
		top: 5vw;
		right: 45%;
		width: 35%;
		height: auto;
		opacity: 0;
		animation: 3s act2c-sp linear infinite;
	}

	.sec01-wrap2 .sp-set{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: auto;
	}

	.sec01-wrap2 .sp-set2{
		position: absolute;
		top: -9vw;
		left: -10%;
		width: 30%;
		height: auto;
	}

	.sec02{
		width: 100vw;
		margin-left: calc(50% - 50vw);
	}

	.ex .sec02-textbox{
		position: relative;
		width: 100%;
		transform: translateX(0);
		font-size: min(3.42vw,18px);
		line-height: 1.7;
		letter-spacing: -0.01em;
		padding: 1.7em;
	}

	.sec02-img03{
		top: 11vw;
		bottom: auto;
	}

	.sec03-wrap{
		background: none;
		width: 100%;
		margin: 20px auto 0;
		transform: none;
		padding: 0;
	}

	.sec03-wrap-flex-imgbox01{
		border: 0;
		margin-bottom: 10px;
	}

	.sec03-wrap-flex-text01{
		font-size: min(3.42vw,18px);
		line-height: 1.7;
		letter-spacing: -0.01em;
		font-weight: 500;
	}

	.makuake img{width: 70%;}

	.text01{
		width: 100%;
		font-size: min(3.42vw,18px);
		line-height: 1.7;
		letter-spacing: -0.01em;
		font-weight: 500;
	}

	.sec04-waku{
		font-size: min(3.42vw,18px);
		margin-top: 3.5em;
		aspect-ratio: auto;
		height: auto;
		border-bottom: solid 3px #e60012;
	}

	.sec04-waku02{border: solid 3px #e60012;}

	.sec04-waku02-flex,.sec04-waku02-flex2{
		border-bottom: solid 3px #e60012;
		flex-wrap: wrap;
		padding: 1.5em;
		justify-content: center;
	}
	.sec04-waku02-flex2{border-bottom: 0;}

	.sec04-waku02-flex img,
	.sec04-waku02-flex2 img{
		width: 84%;
		height: auto;
		border: 0;
		margin-bottom: 1em;
	}
	.sec04-waku02-flex2 img{width: 100%;}

	.sec04-waku02-flex .after-text{
		top: 2%;
		left: 4%;
		width: 33%;
	}

	.sec04-boxtext{
		position: absolute;
		top: 0;
		left: -3px;
		transform: translateY(-100%);
		font-size: min(3.42vw,18px);
		font-weight: 800;
		letter-spacing: -0.01em;
		width: 13em;
		z-index: -1;
	}

	.sec04-boxtext::after{
		background: url(../img/sec04-w-sp.webp)no-repeat right / contain;
		top: -3px;
		right: -1px;
	}

	.sec04-waku::before{
		right: -5px;
		top: -5px;
		width: 10px;
	}

	.sec04-waku::after{
		width: 10px;
		left: -5px;
		bottom: -8px;
	}

	.sec04-waku02 .text01.t2{
		width: 100%;
		margin: 0;
	}

	.sec04-waku02-flex::after{
		width: 12%;
		left: 44%;
	}

	.ch-title,
	.ch-title2,
	.ch-title3{
		height: 12.8vw;
		margin: 0 auto 20px;
	}

	.bar{height: 3px;}

	.sec05-imgbox01{aspect-ratio: 3/2;}

	.sec05-imgbox01 img:nth-of-type(3){
		top: -12%;
		left: auto;
		right: 0;
	}

	.sec05 .text01{margin-top: 30px;}

	.sec05-sp-cover{
		position: relative;
		width: 100vw;
		overflow: scroll;
		left: calc(50% - 50vw);
		padding-top: 1.2vw;
	}

	.sp-scroll-nav{
		font-size: 12px;
		color: #777;
		text-align: right;
		margin-top: 30px;
		margin-bottom: 5px;
	}

	.sec05-sp-cover-flex{
		display: flex;
		gap: 0 20px;
	}

	.sec05 .inner2 .sec05-img01,
	.sec05 .inner2 .sec05-img02,
	.sec05 .inner2 .sec05-img03,
	.sec05 .inner2 .sec05-img04,
	.sec05 .inner2 .sec05-img05{
		width: 60vw;
		height: auto;
		margin: 0;
	}

	.sec05 .inner2 .sec05-img01{margin-left: 40px;}

	.sec05 .inner2 .sec05-img05{
		margin-right: 40px;
		margin-top: -1vw;
		width: 62.5vw;
	}

	.sec06-imgbox01 img{
		right: 1%;
	}

	.sec06-imgbox02 img{
		left: 1%;
	}

	.scroll{
		height: auto;
		margin-top: 8vw;
		margin-bottom: 13vw;
	}

	.w810{width: 84%;}

	.scroll-img-pop{
		opacity: 1;
		filter: drop-shadow(1px 3px 3px rgba(230, 0, 18, 0.3));
	}

	.zoom-wrap{
		width: 70%;
		left: 15%;
	}

	.sec07-flex{
		border: 0;
		display: block;
		transform: none;
		width: 84%;
	}

	.sec07-imgbox01{
		width: 100%;
		background: url(../img/sec07-img01.webp) no-repeat center / cover;
		border: 0;
	}

	.sec07-textbox01{
		padding: 0;
		margin-top: 2em;
		width: 100%;
	}

	.sec08-flex{margin-top: 30px;}

	.sec08-flex-center{width: 9.3%;}

	.sec10-textbox01{height: 5.7vw;}

	.sec10-flex{
		display: block;
		margin-top: 20px;
	}

	.sec10-flex-imgbox01{width: 100%;}

	.sec10-flex-txtbox02{
		width: 100%;
		margin-top: 30px;
		text-align: left;
	}

	.sec10-flex-imgbox01 img:first-of-type{position: relative;}

	.w-box01, .w-box02, .w-box03, .w-box04, .w-box05, .w-box06{
		height: 3.4vw;
		width: 9vw;
	}

	.w-box01{top: -0.7vw;}

	.w-box02{
		top: 10.9vw;
		left: -0.8vw;
	}

	.w-box03{
		top: 20.9vw;
		left: -0.8vw;
	}

	.w-box04{
		top: 49.5vw;
		left: -0.8vw;
	}

	.w-box05{
		top: 26.2vw;
		right: -0.3vw;
	}

	.w-box06{
		top: auto;
		bottom: 0;
		right: -0.3vw;
		width: 28vw;
	}

	.sec10-flex-txtbox02 table{margin: 10px auto 0;}

	.sec.shuffle{padding:0 0 60px 0;}

	.shuffle-textbox01{
		width: 90%;
		margin: 0 auto 20px;
	}

	.footer-wrap{
		font-size: 12px;
		display: block;
		padding: 1em;
		box-sizing: border-box;
	}

	.trans-wrap::before{transform: translateY(-11%);}

	.sp1 .trans-wrap::before,
	.sp2 .trans-wrap::before,
	.sp3 .trans-wrap::before,
	.sp4 .trans-wrap::before,
	.sp5 .trans-wrap::before{display: none;}

	.sec10-flex-txtbox02 table{font-size: min(3.42vw,15px);}

	.shuffle-wrap{
		width: 100%;
		gap: 3vw;
	}

	.shuffle-wrap-imgbox{width: calc(100% / 3 - 2vw);}

	.shuffle-wrap-frame{width: calc(100% / 3 + 1vw);}

	.shuffle-wrap-frame2{height: calc(100% / 3 + 1vw);}

	.opening-area01{height: 80%;}
	
	.opening-area02{
		background: url(../img/main-back01-sp-op.webp)no-repeat top left / cover;
		height: 20%;
	}
	.opening-area02 span{height: 66%;}

	.open-img01, .open-img03{
		width: 33vw;
		height: auto;
	}

	.open-img02{transform: translateY(10%);}

	.opened .opening-area01-wrap{transform: scale(85) translate(-1.5%,28.5%);}

	.opening-area01-wrap{transition: ease 5s 1.5s;}

	.scroll-img-pop-sp{
		position: absolute;
		width: 24%;
		height: auto;
		cursor: pointer;
		z-index: 4;
		animation: fuwa 1.5s ease 0s infinite;
		filter: drop-shadow(1px 3px 3px rgba(230, 0, 18, 0.3));
	}
	.scroll-img-pop-sp.s1{
		left: -3%;
		top: 60%;
	}
	.scroll-img-pop-sp.s2{
		width: 29%;
		left: 56%;
		top: 77%;
	}
	.scroll-img-pop-sp.s3{
		left: 79%;
		top: 28%;
	}
	.scroll-img-pop-sp.s4{
		left: 36%;
		top: 1%;
	}
	.scroll-img-pop-sp.s5{
		left: 10%;
		top: 22%;
	}
	@keyframes fuwa {
		0%,100% { transform:translateY(3%); }
		50% { transform:translateY(-3%); }
	}

	.sp-zoom .scroll-img-pop-sp{
		opacity: 0;
		pointer-events: none;
	}

	.zoom-wrap.sp-zoom{
		position: fixed;
		top: 0;
		left: 0;
		z-index: 10;
		padding: 50vw;
		background: #fff;
	}

	.zoom-inframe-cover::after{
		position: absolute;
		right: 0;
		bottom: 0;
		font-size: 5vw;
		font-weight: 600;
		color: #fff;
		background: #e60012;
		padding: 0 0.5em 0.1em;
		z-index: 20;
	}

	.sp1 .set01::after{ content: '1/5';}
	.sp2 .set02::after{ content: '2/5';}
	.sp3 .set03::after{ content: '3/5';}
	.sp4 .set04::after{ content: '4/5';}
	.sp5 .set05::after{ content: '5/5';}

	.scroll-img{ transition: 0.5s ease;}

	.zoom-wrap::before{
		position: fixed;
		top: 0;
		left: 0;
		z-index: -1;
		width: 100%;
		height: 100vh;
		background: #fff;
	}

	.zoom-wrap.sp1::before,
	.zoom-wrap.sp2::before,
	.zoom-wrap.sp3::before,
	.zoom-wrap.sp4::before,
	.zoom-wrap.sp5::before{
		content: '';
	}

	.sp1 .scroll-img{ transform:translate(102%,-74%) scale(5);}
	.sp2 .scroll-img{ transform:translate(-53%,-227%) scale(5);}
	.sp3 .scroll-img{ transform:translate(-244%,-73%) scale(5);}
	.sp4 .scroll-img{ transform:translate(-24%,45%) scale(5);}
	.sp5 .scroll-img{ transform:translate(49%,-44%) scale(5);}

	.sp-zoom-fix{
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		z-index: 20;
		opacity: 0;
		pointer-events: none;
		transition: 0.5s ease;
	}
	.sp-zoom-fix::before{
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		width: 120vw;
		height: calc(100vh + 20vw);
		border: solid 20vw rgba(0, 0, 0, 0.6);
		transform: translate(-50%,-50%);
		box-sizing: border-box;
		filter: blur(7vw);
		z-index: -1;
	}

	.sp-zoom-fix.active{
		opacity: 1;
		color: #e60012;
		pointer-events: all;
	}

	#close{
		position: fixed;
		left: 3%;
		bottom: 3vw;
		width: 10vw;
		height: auto;
		cursor: pointer;
		display: none;
		z-index: 20;
	}
	#next{
		position: absolute;
		right: 2%;
		bottom: 100vw;
		width: 8vw;
		max-width: 40px;
		height: auto;
		cursor: pointer;
	}
	#prev{
		position: absolute;
		left: 2%;
		bottom: 100vw;
		width: 8vw;
		max-width: 40px;
		height: auto;
		cursor: pointer;
	}

	#close.active{ display: block;}

	.zoom-inframe-cover{ background: url(../img/scroll-waku-s-sp.svg)no-repeat center / contain;}

	.zoom-frame.sp1,
	.zoom-frame.sp2,
	.zoom-frame.sp3,
	.zoom-frame.sp4,
	.zoom-frame.sp5{
		position: fixed;
		bottom: 0;
		top: auto;
		aspect-ratio: 4 / 3;
		z-index: 20;
	}

	.zoom-inframe{
		left: 5%;
		bottom: 5vw;
		top: auto;
		width: 90%;
		aspect-ratio: 40 / 27;
		transform: none;
	}

	.sp1 .set01,
	.sp2 .set02,
	.sp3 .set03,
	.sp4 .set04,
	.sp5 .set05{
		display: block;
	}

	.zoom-inframe::before{
		top: -14%;
		left: 0;
		height: 28%;
	}

	.zoom-frame-wrap{
		width: 90%;
		margin-left: 5%;
	}

	/* ポップアップテキスト */
	.sp1 .zoom-inframe::before{ background: url(../img/scroll-waku-text01.svg)no-repeat left / contain;}
	.sp2 .zoom-inframe::before{ background: url(../img/scroll-waku-text02.svg)no-repeat left / contain;}
	.sp3 .zoom-inframe::before{ background: url(../img/scroll-waku-text03.webp)no-repeat left / contain;}
	.sp4 .zoom-inframe::before{ background: url(../img/scroll-waku-text04.webp)no-repeat left / contain;}
	.sp5 .zoom-inframe::before{ background: url(../img/scroll-waku-text05.svg)no-repeat left / contain;}

	.set01 img:nth-of-type(1){ left: 5%; transform:translateX(0);}
	.set02 img:nth-of-type(1){ left: 24%;}
	.set03 img:nth-of-type(1){ left: 12%; top: -2%; height: 105%;}
	.set04 img{left: 6%;}
	.set04 img:nth-of-type(3){ opacity: 0;}
	.set04 img:nth-of-type(2){ opacity: 0;}
	.set04 img:nth-of-type(1){ transition: none;}
	.set05 img{ left: auto; right: 10%;}

	.sp1 .set01 img:nth-of-type(1){ animation: 0.5s anime1 ease 0.3s forwards;}
	.sp2 .set02 img:nth-of-type(1){ animation: 0.5s anime2 ease 0.3s forwards;}
	.sp4 .set04 img:nth-of-type(3){ animation: 0.5s anime3 ease 1s forwards;}
	.sp4 .set04 img:nth-of-type(2){ animation: 0.5s anime3 ease 0.5s forwards; }
	.sp5 .set05 img:nth-of-type(1){ animation: 0.5s anime4 ease 0.3s forwards;}

	.footer-wrap{text-align: center;}

	.sec08-flex-sp.sp{
		display: flex;
		flex-wrap: wrap;
		margin-top: 30px;
		justify-content: space-between;
		align-items: flex-start;
	}

	.sec08-img01-sp{
		position: relative;
		width: 12.5%;
		height: auto;
	}

	.sec08-img01-sp::before{
		content: '';
		position: absolute;
		top: -6%;
		left: 24%;
		z-index: -1;
		height: 112%;
		aspect-ratio: 100 / 315;
		background: url(../img/sec08-shadow01-sp.webp)no-repeat center / contain;
		transform-origin: left top;
		transform: scale(0,1);
		transition: ease 0.7s 0.3s;
	}
	.sec08-img01-sp.active::before{transform: scale(1,1);}

	.sec08-img01-sp img{
		width: 100%;
		height: 100%;
	}

	.sec08-img02-sp{
		width: 80%;
		height: auto;
	}

	.readarea{
		position: relative;
		width: 100%;
		margin-top: 3vw;
		height: 0;
		overflow: hidden;
		display: block;
		transform: translateY(30px);
		transition: ease 0.5s;
	}

	.readarea.active{
		height: auto;
		transform: translateY(0);
		overflow: visible;
	}

	.sec08-img03-sp{
		width: 100%;
		height: 100%;
	}

	.sec08-img04-sp{
		position: absolute;
		right: -15%;
		bottom: 0;
		width: 60%;
		height: auto;
	}

	.readmore{
		position: relative;
		font-size: 12px;
		color: #e60012;
		font-weight: 600;
		text-align: center;
		width: 100%;
		margin: 5vw 0 0;
		transition: ease 0.5s;
		transform: translateX(0);
	}

	.readmore.active{
		transform: translateX(50%);
		opacity: 0;
		height: 0;
		margin: 0;
	}

	.sec09-flex02{margin: 5vw 0;}

	.sec09-flex01.ex img{transform: translateX(0);}

	.ex3 .sec09-flex01 img,
	.ex3 .sec09-flex01.re img{
		transform: translateX(0);
	}

	.sec09-flex01{
		width: 76%;
	}

	.sec09-flex02{
		width: 76%;
		margin: 20px auto;
	}

	.makuake{
		font-size: min(4vw,20px);
	}

	.sec03-gif{
		width: 75%;
		margin: 40px auto 0;
	}

	.sec10-wrap table{
		font-size: min(3.42vw, 15px);
		margin-top: 1em;
	}

	.sec10-img2{
		margin-top: 20px;
	}

	.sec10-name2{
		padding-top: 40px;
	}


}