
:root {
  --ink: #2E2A28;
  --white: #FFFFFF;
  --main: #8346EB;
  --sub: #F7489A;
  --text: #000000;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--ink);
  padding: 0;
}

section[id]{
  scroll-margin-top: 80px;
}

.sp{
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp{
    display: block !important;
  }
}
/* Header */
#header {
    width: 100%;
    height: 60px;
    position: fixed;
    z-index: 99;
    top: 0;
    background-color: transparent;
}
#header  .header_content{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  height: 100%;
  padding: 10px;
  gap: 9px;
  transition: ease-in .1s;
  max-width: 1600px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#header .global_navi{
  display: flex;
  list-style: none;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 11;
}
#header .global_navi li{
  width: 178px;
  height: 40px;
  background-color: var(--sub);
  border-radius: 80px;
  position: relative;
  border: var(--sub) solid 1px;
  box-shadow: 4px 4px 10px rgba(131, 70, 235,.3);
}
#header .global_navi li a{
  position: relative;
  padding: 8px 20px;
  transition: 0.3s ease;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 20px;
  text-decoration: none;
  z-index: 0;
  color: var(--white);
  transition: opacity 0.3s ease;
}
#header .global_navi li a::after{
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url(../../assets/img/top/ticket.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
  top: 50%;
  display: block;
  transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
  right: 20px;
}

#header .global_navi li a::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 80px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0,0,0,0); 
  transition: background-color 0.3s ease;
  z-index: -1;
}
#header .global_navi li a:hover::before,
#header .global_navi li a:focus::before{
  background-color: rgba(0,0,0,.12);
}
@media screen and (max-width: 767px) {
  #header{
    height: 64px;
  }
}
/* ---------------------------------------------------------------- */
/* ヘッダーメニュー */
/* ---------------------------------------------------------------- */
/* SPメニュー */
/* ----------------------------------- */
 #drawerNaviWrap {
    display: block;
} 
.admin-bar #navi_contents.navi_contents-on {
  padding-top: 46px !important; }

@media screen and (max-width: 1300px) {
  .openSpNavi {
    width: 100%;
    height: 100%;
    overflow: hidden !important; 
	} 
}
#drawerNaviWrap .drawerNaviBtnWrap {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  position: relative;
  cursor: pointer;
  border: rgba(131, 70, 235, .4) solid 1px;
  border-radius: 50%;
  z-index: 11;
}
#drawerNaviWrap .drawerNaviBtnWrap:hover,#drawerNaviWrap .drawerNaviBtnWrap:focus{
  background-image: linear-gradient(145deg, rgba(247, 72, 154, 0.05), rgba(131, 70, 235, 0.06));
}

#drawerNaviWrap .drawerNaviBtn {
  display: block;
  position: absolute;
  width: 20px;
  top: 50%;
  left: 50%;
  height: 20px;
  transition: all .5s;
  z-index: 3;
  background-image: url(../../assets/img/top/menu.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}
#drawerNaviWrap.open .drawerNaviBtn{
  background-image: url(../../assets/img/top/menu_close.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
}
#drawerNaviWrap .drawer-nav {
  display: block;
  position: fixed;
  background-color: var(--main);
  top: 0;
  right: -247px;
  bottom: 0;
  width: 247px;
  height: auto;
  background: ;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 10;
  opacity: 0;
  height: 320px;
  border-radius: 0 0 0 16px;
}
#drawerNaviWrap .drawer-nav .drawerInner {
  padding: 60px 0 0; 
}

#drawerNaviWrap #overlay {
  display: none;
  transition: all .5s; 
}

#drawerNaviWrap.open .drawer-nav {
  right: 0;
  opacity: 1;
  background-color: var(--main);
}

#______drawerNaviWrap.open #overlay {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  opacity: .6;
  z-index: 2; 
}
.nav_area {
  box-sizing: border-box; 
}
.globalNavList {
  margin: 0;
  padding: 0;
  width: 100%; 
}
.globalNavList li {
  width: 100%;
  -webkit-transition: .4s all;
  transition: .4s all;
  list-style: none;
}
.globalNavList li a{
  padding: 14px 32px 14px 16px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 900;
  line-height: 125%;
  letter-spacing: 0;
  text-decoration: none;
  color: var(--white);
  position: relative;
}
.globalNavList li a::after{
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url(../../assets/img/top/link_bullet_white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
  top: 50%;
  display: block;
  transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
  right: 16px;
}
/* ----------------------------------- */
/* コンテナ
/* ----------------------------------- */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  transition: ease-in .1s; 
}

@media screen and (min-width: 1211px) {
  .container {
     max-width: 970px;
	} 
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    max-width: 970px;
    padding-left: 5%;
    padding-right: 5%; 
	} 
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 750px; 
	}
  .sp_container{
    max-width: 750px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 60px;
    padding-right: 15px;
    transition: ease-in .1s; 
  }
  .is-single .sp_container{
    padding-left: 15px;
  }
}
/* ----------------------------------- */
/* フッター
/* ----------------------------------- */
#footer{
  padding: 20px 0;
  background-color: rgba(131, 70, 235,.2);
}
#footer p{
  font-size: 10px;
  font-weight: 400;
  text-align: center;
  color: var(--main);
  font-weight: 400;
}
/* ----------------------------------- */
/* #fvArea
/* ----------------------------------- */
#fvArea{
  height: 562px;
  width: 100%;
  max-width: 1940px;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}
#fvArea .fv-bg{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(141deg, rgba(247, 72, 154, 0.30) 0.88%, rgba(131, 70, 235, 0.36) 100%), #FFF;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  opacity: 0.2;
}
#fvArea::before{
  content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background-image: url(../../assets/img/top/bg.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: top left;
    z-index: -2;
}
#fvArea::after{
  content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-image: url(../../assets/img/top/bg.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: top right;
    z-index: -2;
}
#fvArea .logo{
  border-radius: 0 0 8px 0;
  background-color: var(--white);
  width: 128px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}
#fvArea .logo a{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#fvArea .logo a img{
  width: 100%;
  max-width: 96px;
  height: 40px;
}
#fvArea .container{
  height: 100%;
}
#fvArea .fv-inr{
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
#fvArea .fv-inr{
  position: relative;
  height: 100%;
}
#fvArea .fv-inr__bg{
  position: absolute;
  inset: 0;
  right: -10%;
  background-image: url(../../assets/img/top/player.png);
  background-repeat: no-repeat;
  background-size: 70% auto;
  background-position: bottom right;
  animation: fvFadeIn 1s ease-out both;
  z-index: -1;
}
@keyframes fvFadeIn{
  from{ opacity: 0; }
  to{ opacity: 1; }
}
#fvArea .fv-inr::before{
  content: "";
  position: absolute;
  width: 88px;
  height: 140px;
  background-image: url(../../assets/img/top/250129-F0152.png);
  background-size: 88px;
  background-repeat: no-repeat;
  background-position: center;
  bottom: -70px;
  left: 0;
  z-index: 1;
  animation: fvCharIn 0.8s ease-out 0.6s both;
}
#fvArea .fv-inr::after{
  content: "";
  position: absolute;
  width: 88px;
  height: 148px;
  background-image: url(../../assets/img/top/250129-S0282.png);
  background-size: 88px;
  background-repeat: no-repeat;
  background-position: center;
  bottom: -72px;
  right: 0;
  animation: fvCharIn 0.8s ease-out 0.8s both;
}
#fvArea .fv-inr .fvarea{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  max-width: 404px;
}
#fvArea .fv-inr .fvarea .fvtxt1{
  font-size: 48px;
  font-weight: 900;
  color: var(--text);
  line-height: 100%;
  letter-spacing: 0;
  margin: 0 0 7.5px;
  font-family: "M PLUS 1", sans-serif;
  text-align: center;
}
#fvArea .fv-inr .fvarea .fvtxt2{
  color: var(--main);
  font-weight: 900;
  font-size: 84px;
  line-height: 100%;
  letter-spacing: 0;
  margin: 0 0 24px;
  text-align: center;
  font-family: "M PLUS 1", sans-serif;
}
#fvArea .fv-inr .fvarea .fvtxt3{
  color: var(--sub);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 40%;
  line-height: 100%;
  margin-bottom: 49.5px;
  font-family: "Poppins", sans-serif;
}
#fvArea .fv-inr .fvarea .fvbox{
  position: relative;
  border-radius: 16px;
  padding: 20px;
  z-index: 0;
  background-image: linear-gradient(135deg, rgba(247, 72, 154, 0.85),rgba(131, 70, 235, 0.85));
}
#fvArea .fv-inr .fvarea .fvbox::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,.3);
  display: block;
  border-radius: 16px;
  top: 0;
  left: 0;
  filter: blur(4px);
  z-index: 1; /* -1 → 1に変更:グラデーションの上に重ねる */
}

#fvArea .fv-inr .fvarea .fvbox p{
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--white);
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 8px;
}
.mb0{
  margin-bottom: 0 !important;
}
#fvArea .fv-inr .fvarea .fvbox p span{
  font-size: 14px;
}
/* 背景の選手: 下から少しスライド+フェードイン */
@keyframes fvPlayerIn{
  from{
    opacity: 0;
    background-position: bottom right, bottom 40px right; /* background-imageは直接transformできないので、position自体を動かす */
  }
  to{
    opacity: 1;
  }
}

/* キャラクター: 下からポンと弾む感じで登場 */
@keyframes fvCharIn{
  0%{
    opacity: 0;
    transform: translateY(40px) scale(0.8);
  }
  70%{
    opacity: 1;
    transform: translateY(-6px) scale(1.05);
  }
  100%{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media screen and (max-width: 1250px) {
  #fvArea .fv-inr__bg{
    position: absolute;
    inset: 0;
    right: 0;
    background-image: url(../../assets/img/top/player.png);
    background-repeat: no-repeat;
    background-size: 60% auto;
    background-position: bottom right;
  }
}
@media screen and (max-width: 768px) {
  #fvArea{
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background-image: url(../../assets/img/top/bg_sp.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top 30px center;
    position: relative;
    z-index: 0;
  }
  #fvArea::after{
    background-image: linear-gradient(90deg, rgba(247, 72, 154, 0.05), rgba(131, 70, 235, 0.06));
  }
  #fvArea::before{
    display: none !important;
  }
  #fvArea::after{
    display: none !important;
  }
  #fvArea .container{
    padding: 0;
  }
  #fvArea .fv-inr__bg{
    position: absolute;
    inset: 0;
    background-image: url(../../assets/img/top/player.png);
    background-repeat: no-repeat;
    background-size: 130% auto;
    background-position: top center;
    width: 100%;
    height: 373px;
    top: auto;
  
  }
  #fvArea .fv-inr::before{
    width: 70px;
    background-size: 70px;
  }
  #fvArea .fv-inr::after{
    content: "";
    position: absolute;
    width: 70px;
    height: 119px;
    background-image: url(../../assets/img/top/250129-S0282.png);
    background-size: 70px;
    background-repeat: no-repeat;
    background-position: center;
    bottom: -59.5px;
    right: 0;
  }
  #fvArea .fv-inr .fvarea{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    max-width: 100%;
    padding-top: 80px;
    padding-bottom: 20px;
  }
  #fvArea .fv-inr .fvarea .fvtxt1{
    font-size: 32px;
    margin: 0 0 5px;
  }
  #fvArea .fv-inr .fvarea .fvtxt2{
    font-size: 56px;
    margin: 0 0 16px;
  }
  #fvArea .fv-inr .fvarea .fvtxt3{
    font-size: 12px;
    margin-bottom: 200px;
  }
  #fvArea .fv-inr .fvarea .fvbox{
    width: 90%;
    padding: 16px 20px;
    z-index: 0;
  }
  #fvArea .fv-inr .fvarea .fvbox p{
    font-size: 12px;
  }
  #fvArea .fv-inr .fvarea .fvbox p span{
  font-size: 11px;
}
}

@media screen and (max-width: 400px) {

#_fvArea .fv-inr__bg{
    position: absolute;
    inset: 0;
    top: 0;
    bottom: auto;
    background-image: url(../../assets/img/top/player.png);
    background-repeat: no-repeat;
    background-size: 130% auto;
    background-position: bottom center;
  }
}
/* ----------------------------------- */
/* .content
/* ----------------------------------- */
.content .con-title{
  font-size: 40px;
  color: var(--main);
  font-weight: 700;
  line-height: 125%;
  letter-spacing: 5%;
  text-align: center;
  margin-bottom: 10px;
}
.content .en-title{
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: var(--sub);
  line-height: 100%;
  letter-spacing: 40%;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}
.content .con-text{
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0;
  text-align: center;
}
.cont-box{
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .content .con-title{
    font-size: 28px;
  }
  .content .en-title{
    font-size: 12px;
  }
  .content .con-text{
    font-size: 12px;
  }
  .cont-box{
    margin-bottom: 40px;
  }
}
/* ----------------------------------- */
/* #content01
/* ----------------------------------- */
#content01{
  padding: 80px 0;
  position: relative;
}
#content01::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../../assets/img/event/event_bg_left.png);
  background-size: 169px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  height: 147px;
  width: 169px;
}
#content01::after{
  content: "";
  position: absolute;
  top: 0;
  right: 10px;
  background-image: url(../../assets/img/event/event_bg_right.png);
  background-size: 126px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  height: 143px;
  width: 126px;
}

.event-listWrap{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  z-index: 0;
  margin-bottom: 40px;
}
.event-listWrap::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 103%;
  top: 5px;
  right: -10px;
  border-radius: 16px;
  background-image: linear-gradient(145deg, rgba(247, 72, 154, 0.05), rgba(131, 70, 235, 0.06));
  display: block;
  z-index: -1;
}
.event-mainItem{
  border-radius: 16px;
  position: relative;
  width: 100%;
}
.event-mainItem a{
  width: 100%;
  display: block;
  position: relative;
  z-index: 0;
}
.event-mainItem__img{
  position: relative;
  border-radius: 16px;
  display: block;
  aspect-ratio: 1 / 1;
}
.event-mainItem__img::before{
  content: "";
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, rgba(247, 72, 154, 0.5), rgba(247, 72, 154, 0) 50%, rgba(131, 70, 235, 0.6));
  border-radius: 16px;
  filter: blur(5px);
  z-index: -1;
}
.event-mainItem__img::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.6));
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  z-index: 1;
  transition: opacity 0.4s ease;
}
.event-mainItem a:not([tabindex="-1"]):hover .event-mainItem__img::before,
.event-mainItem a:focus .event-mainItem__img::before,
.event-mainItem a:not([tabindex="-1"]).is-touch-active .event-mainItem__img::before{
  filter: blur(0px);
  inset: 0px;
}
/* ここで画像だけをクリップする */
.event-mainItem__img-inner{
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}
.event-mainItem__img-inner::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(135deg, rgba(247, 72, 154, 0.5), rgba(247, 72, 154, 0) 50%, rgba(131, 70, 235, 0.6));
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}
.event-mainItem a:not([tabindex="-1"]):hover .event-mainItem__img-inner::after,
.event-mainItem a:focus .event-mainItem__img-inner::after,
.event-mainItem a:not([tabindex="-1"]).is-touch-active .event-mainItem__img-inner::after{
  opacity: 1;
}
.event-mainItem__img-inner img{
  display: block;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  transition: transform 0.4s ease;
}
.event-mainItem a:not([tabindex="-1"]):hover .event-mainItem__img-inner img,
.event-mainItem a:focus .event-mainItem__img-inner img,
.event-mainItem a:not([tabindex="-1"]).is-touch-active .event-mainItem__img-inner img{
  transform: scale(1.1);
}
.event-mainItem__body{
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 30px;
  z-index: 1;
}
.event-mainItem__body::after{
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: var(--sub);
  background-image: url(../../assets/img/event/blank.svg);
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
  bottom: 0;
  right: 0;
  border-radius: 16px 0 16px 0;
}
.event-mainItem__body.coming::after{
  content: "COMING SOON";
  position: absolute;
  display: flex;
  padding: 5px 7px;
  justify-content: center;
  align-items: center;
  font-size: 8px;
  width: 74px;
  height: 14px;
  line-height: 100%;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--white);
  border-radius: 32px;
  background-color: #999999;
  background-image: none;
  bottom: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 16px;
}
.event-mainItem a:hover .event-mainItem__body::after,
.event-mainItem a:focus .event-mainItem__body::after,
.event-mainItem a.is-touch-active .event-mainItem__body::after{
  background-color: var(--white);
  background-image: url(../../assets/img/event/link_newwindow_white.svg);
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
}
.event-mainItem a:hover .event-mainItem__body.coming::after,
.event-mainItem a:focus .event-mainItem__body.coming::after,
.event-mainItem a.is-touch-active .event-mainItem__body.coming::after{
  background-image: none;
  background-color: #999999;

}
.event-mainItem__body h3{
  font-size: 40px;
  color: var(--white);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0;
}
.event-mainItem__body .event-mainItem__meta .event-mainItem__txt{
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  letter-spacing: 0;
   color: var(--white);
   margin-bottom: 10px;
}
.event-mainItem__body .event-mainItem__meta .event-mainItem__txt2{
  font-size: 16px;
  line-height: 120%;
  font-weight: 700;
  letter-spacing: 0;
   color: var(--white);
   margin-bottom: 10px;
}
.event-mainItem__body .event-mainItem__meta .event-mainItem__txt2 span{
  font-size: 40px;
  font-weight: 900;
  margin-right: 5px;
}
.event-mainItem__body .event-mainItem__meta .event-mainItem__txt3{
  font-size: 14px;
  line-height: 100%;
  font-weight: 700;
  letter-spacing: 0;
   color: var(--white);
}
.event-mainItem__body .event-mainItem__meta .event-mainItem__txt3 span{
  font-size: 10px;
  font-weight: 700;
  margin-right: 40px;
  position: relative;
}
.event-mainItem__body .event-mainItem__meta .event-mainItem__txt3 span::before{
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url(../../assets/img/event/sendai.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  top: 50%;
  display: block;
  transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
  right: -30px;
}
.event-mainItem__body .event-mainItem__meta .event-mainItem__txt3._02 span::before{
  background-image: url(../../assets/img/event/urawa.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
}
.event-mainItem__body .event-mainItem__meta .event-mainItem__txt3._03 span::before{
  background-image: url(../../assets/img/event/omiya_ardija.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
}
.event-mainItem__body .event-mainItem__meta .event-mainItem__txt3._04 span::before{
  background-image: url(../../assets/img/event/saitama.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
}
.event-mainItem__body .event-mainItem__meta .event-mainItem__txt3._05 span::before{
  background-image: url(../../assets/img/event/chiba_l.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
}
.event-mainItem__body .event-mainItem__meta .event-mainItem__txt3._06 span::before{
  background-image: url(../../assets/img/event/tokyoverdy.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
}
.event-mainItem__body .event-mainItem__meta .event-mainItem__txt3._07 span::before{
  background-image: url(../../assets/img/event/sagamihara.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
}
.event-mainItem__body .event-mainItem__meta .event-mainItem__txt3._08 span::before{
  background-image: url(../../assets/img/event/ac_nagano.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
}
.event-mainItem__body .event-mainItem__meta .event-mainItem__txt3._09 span::before{
  background-image: url(../../assets/img/event/niigata_l.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
}
.event-mainItem__body .event-mainItem__meta .event-mainItem__txt3._10 span::before{
  background-image: url(../../assets/img/event/c_oosaka.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
}
.event-mainItem__body .event-mainItem__meta .event-mainItem__txt3._11 span::before{
  background-image: url(../../assets/img/event/1_koube.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
}
.event-subItem{
  padding: 30px;
  display: flex;
  align-items: center;
}
.event-subItem .event-subItem-flex{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.event-subItem .event-subItem-flex:has(.swiper-slide:only-child){
  display: flex;
  justify-content: center;
}
.event-subItem .event-subItem-flex:has(.swiper-slide:only-child) .swiper-slide{
  width: calc(50% - 10px); 
}

.event-subItem .event-subItem-flex .event-slideItem a{
  text-decoration: none;
  width: 100%;
  height: 100%;
}

.event-subItem .event-subItem-flex .event-slideItem a .event-slideItem__img{
  margin-bottom: 8px;
}

.event-subItem .event-subItem-flex .event-slideItem a .event-slideItem__text p{
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0;
}
.event-subItem .event-subItem-flex .event-slideItem .event-slideItem__box{
  text-decoration: none;
  width: 100%;
  height: 100%;
}

.event-subItem .event-subItem-flex .event-slideItem .event-slideItem__box .event-slideItem__img{
  margin-bottom: 8px;
}

.event-subItem .event-subItem-flex .event-slideItem .event-slideItem__box .event-slideItem__text p{
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0;
}
.event-fvSwiperwrap:has(.swiper-slide:only-child) .event-button-prev,
.event-fvSwiperwrap:has(.swiper-slide:only-child) .event-button-next{
    display: none; 
}
@media screen and (max-width: 768px) {
  #content01::after{
      background-image: url(../../assets/img/event/event_bg_sp.png);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      right: 0;
  }
  #content01 .container.content01_container{
    padding-left: 0;
    padding-right: 0;
  }
  .event-listWrap{
    display: block;
    position: relative;
    z-index: 0;
    margin-bottom: 50px;
  }
  .event-listWrap::after{
    right: auto;
    left: 50%;
    height: 100%;
    width: 90%;
    top: 20px;
    transform: translateX(-50%);
	  -webkit-transform: translateX(-50%);
  }
  .event-mainItem__body{
    padding: 25px 20px;
  }
  .event-mainItem__body h3{
    font-size: 32px;
  }
  .event-mainItem__body .event-mainItem__meta .event-mainItem__txt{
    font-size: 14px;
  }
  .event-mainItem__body .event-mainItem__meta .event-mainItem__txt2{
    font-size: 14px;
    margin-bottom: 16px;
  }
  .event-mainItem__body .event-mainItem__meta .event-mainItem__txt2 span{
    font-size: 36px;
  }
  .event-mainItem__body .event-mainItem__meta .event-mainItem__txt3{
    font-size: 10px;
  }
  .event-mainItem__body .event-mainItem__meta .event-mainItem__txt3 span{
    font-size: 12px;
  }
  .event-mainItem{
    padding-left: 15px;
    padding-right: 15px;
  }
  .event-subItem{
    padding: 20px 0 0 0;
  }
  .event-mainItem__body.coming::after{
    bottom: 23px;
    height: 12px;
  }
  .event-fvSwiperwrap{
    position: relative;
    overflow: hidden;
  }
  .event-fvSwiperwrap .event-fvSwiper{
    position: inherit;
    overflow: visible;
  }
  .event-subItem .event-subItem-flex{
    display: flex;
    gap: 0;
  }
  .event-fvSwiperwrap:has(.swiper-slide:only-child) .event-subItem-flex{
    display: flex;
    justify-content: center;
  }
  .event-fvSwiperwrap:has(.swiper-slide:only-child) .swiper-slide{
    width: 80%;
    flex-shrink: 0;
  }
  .event-fvSwiper .event-button-prev{
    width: 40px;
    height: 44px;
    left: -1px;
    margin-top: -50px;
    background-image: url(../../assets/img/event/link_bullet_purple_left.svg);
    background-repeat: no-repeat;
    background-size: 24px;
    display: block;
    background-position: center;
    border-radius: 0 8px 8px 0;
    border: #8346EB solid 1px;
    background-color: var(--white);
  }
  .event-fvSwiper .event-button-prev::after,.event-fvSwiper .event-button-next::after{
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      display: block;
      background-color: rgba(131,70,235,0.05);
  }
  .event-fvSwiper .event-button-next{
    width: 40px;
    height: 44px;
    right: -1px;
    margin-top: -50px;
    background-image: url(../../assets/img/event/link_bullet_purple_right.svg);
    background-repeat: no-repeat;
    background-size: 24px;
    display: block;
    background-position: center;
    border-radius:  8px 0 0 8px;
    border: #8346EB solid 1px;
    background-color: var(--white);
  }
}

.event-forwrap{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
  margin-bottom: 20px;
}
.eventcolumn{
  position: relative;
  z-index: 0;
}
.eventcolumn .event-mainItem__img{
  aspect-ratio: inherit;
}
.eventcolumn .event-mainItem__img::before{
  content: "";
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, rgba(247, 72, 154, 0.5), rgba(247, 72, 154, 0) 50%, rgba(131, 70, 235, 0.6));
  border-radius: 16px;
  filter: blur(5px);
  z-index: -1;
}
.eventcolumn .event-mainItem__img::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.6));
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  z-index: 1;
  transition: opacity 0.4s ease;
}
.eventcolumn a:not([tabindex="-1"]):hover .event-mainItem__img::before,
.eventcolumn a:focus .event-mainItem__img::before,
.eventcolumn a:not([tabindex="-1"]).is-touch-active .event-mainItem__img::before{
  filter: blur(0px);
  inset: 0px;
}
/* ここで画像だけをクリップする */
.eventcolumn .event-mainItem__img-inner{
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}
.eventcolumn .event-mainItem__img-inner::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(135deg, rgba(247, 72, 154, 0.5), rgba(247, 72, 154, 0) 50%, rgba(131, 70, 235, 0.6));
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}
.eventcolumn a:not([tabindex="-1"]):hover .event-mainItem__img-inner::after,
.eventcolumn a:focus .event-mainItem__img-inner::after,
.eventcolumn a:not([tabindex="-1"]).is-touch-active .event-mainItem__img-inner::after{
  opacity: 1;
}
.eventcolumn .event-mainItem__img-inner img{
  display: block;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  transition: transform 0.4s ease;
}
.eventcolumn a:not([tabindex="-1"]):hover .event-mainItem__img-inner img,
.eventcolumn a:focus .event-mainItem__img-inner img,
.eventcolumn a:not([tabindex="-1"]).is-touch-active .event-mainItem__img-inner img{
  transform: scale(1.1);
}
.eventcolumn .event-mainItem__body{
  padding: 16px;
}
.eventcolumn .event-mainItem__body h3{
  font-size: 28px;
}
.eventcolumn .event-mainItem__body .event-mainItem__meta .event-mainItem__txt{
  font-size: 14px;
}
.eventcolumn .event-mainItem__body .event-mainItem__meta .event-mainItem__txt2{
  font-size: 14px;
}
.eventcolumn .event-mainItem__body .event-mainItem__meta .event-mainItem__txt2 span{
  font-size: 32px;
}
.eventcolumn .event-mainItem__body .event-mainItem__meta .event-mainItem__txt4{
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  margin: 0 0 10px;
  color: var(--white);
}

.eventcolumn.coming .event-mainItem__body::after{
  content: "COMING SOON";
  position: absolute;
  font-size: 8px;
  line-height: 100%;
  font-weight: 700;
  letter-spacing: 0;
  padding: 5px 7px;
  justify-content: center;
  align-items: center;
  font-size: 8px;
  width: 74px;
  height: 14px;
  color: var(--white);
  border-radius: 32px;
  background-color: #999999;
  background-image: none;
  bottom: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 16px;
}
@media screen and (max-width: 435px) {
.eventcolumn.coming .event-mainItem__body::after{
  width: 60px;
}

}

@media screen and (max-width: 768px) {
  .event-forwrap{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .eventcolumn .event-mainItem__body h3{
    font-size: 20px;
  }
  .eventcolumn .event-mainItem__body .event-mainItem__meta .event-mainItem__txt{
    font-size: 10px;
  }
  .eventcolumn .event-mainItem__body .event-mainItem__meta .event-mainItem__txt2{
    font-size: 10px;
  }
  .eventcolumn .event-mainItem__body .event-mainItem__meta .event-mainItem__txt2 span{
    font-size: 28px;
  }
  .eventcolumn .event-mainItem__body .event-mainItem__meta .event-mainItem__txt4{
    font-size: 10px;
    margin-bottom: 16px;
  }
}

.event-text{
  font-size: 10px;
  font-weight: 400;
  color: #666666;
  margin-bottom: 20px;
  letter-spacing: 0;
  line-height: 150%;
}

.pastEvent-wrap{
  background-color: #F2F2F2;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 60px;
}

.pastEvent-toggleBtn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
  padding: 10px 20px;
  background-color: #fff;
  border: 1px solid #8346EB;
  border-radius: 999px;
  color: #8346EB;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}
.pastEvent-toggleBtn::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(131,70,235,0.05);
}
.pastEvent-toggleBtn__icon{
  position: relative;
  width: 16px;
  height: 16px;
}
.pastEvent-toggleBtn__icon::before,
.pastEvent-toggleBtn__icon::after{
  content: "";
  position: absolute;
  background-color: #8346EB;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pastEvent-toggleBtn__icon::before{
  width: 16px;
  height: 2px;
}
.pastEvent-toggleBtn__icon::after{
  width: 2px;
  height: 16px;
}

/* 中身(初期は非表示) */
.pastEvent-content{
  display: none;
}
.pastEvent-content__title{
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 125%;
  letter-spacing: 0;
  text-align: center;
}

.pastEvent-list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.pastEvent-item{
  border-radius: 8px;
  overflow: hidden;
  transition: 0.4s ease;
}
.pastEvent-item a{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}
.pastEvent-item__img{
  width: 100px;
  max-width: 100px;
  flex-basis: 100px;
  height: 95px;
  flex-shrink: 0;
}
.pastEvent-item__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pastEvent-item__body{
  background-color: var(--white);
  max-width: calc(100% - 100px);
  flex-basis: calc(100% - 100px);
  padding: 25px 30px 25px 16px;
}
.pastEvent-item__ttl{
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 700;
  line-height: 125%;
  margin-bottom: 5px;
  color: var(--text);
}
.pastEvent-item__date{
  font-size: 10px;
  font-weight: 400;
  color: var(--text);
}
.pastEvent-item__date span{
  font-weight: 700;
  font-size: 14px;
}
.pastEvent-item a:not([tabindex="-1"]):hover .pastEvent-item__body,
.pastEvent-item a.is-touch-active:not([tabindex="-1"]) .pastEvent-item__body{
  background-color: rgba(131,70,235,0.05);
  position: relative;
  transition: 0.4s ease;
}
.pastEvent-item a:not([tabindex="-1"]):hover .pastEvent-item__body::after,
.pastEvent-item a.is-touch-active:not([tabindex="-1"]) .pastEvent-item__body::after{
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url(../../assets/img/event/link_new_window_purple.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
  top: 50%;
  display: block;
  transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
  right: 10px;
}
.pastEvent-item a:not([tabindex="-1"]):hover .pastEvent-item__body .pastEvent-item__ttl,
.pastEvent-item a.is-touch-active:not([tabindex="-1"]) .pastEvent-item__body .pastEvent-item__ttl{
  color: var(--main);
}

.pastEvent-closeBtn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid #8346EB;
  border-radius: 999px;
  color: #8346EB;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}
.pastEvent-closeBtn::after{
   content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(131,70,235,0.05);
}
.pastEvent-closeBtn__icon{
  position: relative;
  width: 16px;
  height: 2px;
  background-color: #8346EB;
}

@media screen and (max-width: 768px) {
  .pastEvent-wrap{
    padding: 10px;
  }
  .pastEvent-content{
    padding: 10px;
  }
  .pastEvent-list{
    gap: 10px;
    grid-template-columns: 1fr;
  }
  .pastEvent-item__img{
    height: 93px;
  }
}


.seasonEvent{
  padding: 20px 175px;
  border-radius: 8px;
  position: relative;
   background-image: linear-gradient(90deg, rgba(247, 72, 154, .2), rgba(131, 70, 235, .2));
   margin-bottom: 60px;
}
.seasonEvent::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 112px;
  display: block;
  background-image: url(../../assets/img/event/seasonEvent_bg.png);
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
  left: 0;
  z-index: -1;
}
.seasonEvent__lead{
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: var(--sub);
  line-height: 125%;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.seasonEvent-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.seasonEvent-item{
  position: relative;
  z-index: 0;
  border-radius: 8px;
}
.seasonEvent-item a .event-mainItem__img{
  aspect-ratio: 3 / 1.8;
}
.seasonEvent-item a .event-mainItem__img::after{
  display: none;
}

.seasonEvent-item .event-mainItem__img-inner::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(135deg, rgba(247, 72, 154, 0.5), rgba(247, 72, 154, 0) 50%, rgba(131, 70, 235, 0.6));
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}
.seasonEvent-item a:not([tabindex="-1"]):hover .event-mainItem__img-inner::after,
.seasonEvent-item a:focus .event-mainItem__img-inner::after,
.seasonEvent-item:not([tabindex="-1"]).is-touch-active .event-mainItem__img-inner::after{
  opacity: 1;
}

.seasonEvent-item a:not([tabindex="-1"]):hover .event-mainItem__img-inner img,
.seasonEvent-item a:focus .event-mainItem__img-inner img,
.seasonEvent-item:not([tabindex="-1"]).is-touch-active .event-mainItem__img-inner img{
  transform: scale(1.1);
}

.seasonEvent-item::after{
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: var(--sub);
  background-image: url(../../assets/img/event/blank.svg);
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
  bottom: 0;
  right: 0;
  z-index: 0;
  border-radius: 8px 0 8px 0;
}

.seasonEvent-item.coming::after{
  content: "COMING SOON";
  position: absolute;
  font-size: 8px;
  line-height: 100%;
  font-weight: 700;
  letter-spacing: 0;
  width: 100px;
  height: 20px;
  color: var(--white);
  border-radius: 32px;
  background-color: #999999;
  background-image: none;
  bottom: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 16px;
}

.seasonEvent-item:not([tabindex="-1"]):hover::after,
.seasonEvent-item:focus::after,
.seasonEvent-item:not([tabindex="-1"]).is-touch-active::after{
  background-color: var(--white);
  background-image: url(../../assets/img/event/link_newwindow_white.svg);
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
}

.seasonEvent-item:not([tabindex="-1"]).coming:hover::after,
.seasonEvent-item.coming:focus::after,
.seasonEvent-item:not([tabindex="-1"]).coming.is-touch-active::after{
  background-image: none;
  background-color: #999999;
}

@media screen and (max-width: 768px) {
  .seasonEvent{
    padding: 20px;
    border-radius: 8px;
  }
  .seasonEvent::after{
    height: 100%;
    background-image: url(../../assets/img/event/seasonEvent_bg_sp.png);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
  }
  .seasonEvent-list{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.eventbtnwrap a{
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  height: 62px;
  position: relative;
  border-radius: 32px;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--text);
  text-decoration: none;
  z-index: 0;
  background-color: #fff;
 box-shadow: -2px -2px 8px 0 rgba(247, 72, 154, 0.30), 
              4px 4px 10px 0 rgba(131, 70, 235, 0.30);
     transition: 0.3s ease-in;
  
}
.eventbtnwrap a::before {
  content: "";
  position: absolute;
  inset: 0; /* 全体に広げる */
  z-index: -1; /* 文字などの裏側に配置 */
  border-radius: inherit; /* 親要素の角丸を引き継ぐ */
 
  box-shadow: 0 2px 4px 0 rgba(72, 0, 194, 0.15) inset;
  
  /* 最初は透明にして隠しておく */
  opacity: 0;
  
  /* 透明度の変化を0.3秒かける */
  transition: opacity 0.3s ease-in;
}
.eventbtnwrap a:not([tabindex="-1"]):hover{
  box-shadow: 0 -0 0 0 rgba(247, 72, 154, 0.30), 
              0 0 0 0 rgba(131, 70, 235, 0.30);
  background: linear-gradient(118deg, rgba(247, 72, 154, 0.10) 17.74%, rgba(131, 70, 235, 0.12) 82.97%), #FFF;
  
}
.eventbtnwrap a:not([tabindex="-1"]):hover::before {
  /* 内側の影（擬似要素）をゆっくり浮き上がらせる */
  opacity: 1;
}

.__eventbtnwrap a::before{
  content: "";
  position: absolute;
  inset: -1.5px;
  background: var(--white);
  border-radius: 32px;
  z-index: -1;
  transition: background-image 0.3s ease;
}

.__eventbtnwrap a::after{
  content: "";
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, rgba(247, 72, 154, 0.18), rgba(131, 70, 235, 0.18));
  border-radius: 32px;
  filter: blur(4px);
  z-index: -2;
  transition: inset 0.3s ease, filter 0.3s ease, opacity 0.3s ease; 
}

.eventbtnwrap__arrow{
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #8346EB;
  border-right: 2px solid #8346EB;
  transition: transform 0.3s ease;
}

.eventbtnwrap a:not([tabindex="-1"]):hover::before,.eventbtnwrap a:focus:before,
.eventbtnwrap a:not([tabindex="-1"]).is-touch-active::before{
  background-image: linear-gradient(135deg, rgba(247, 72, 154, 0.05), rgba(131, 70, 235, 0.06));
}

.eventbtnwrap a:not([tabindex="-1"]):hover::after,
.eventbtnwrap a:focus::after,
.eventbtnwrap a:not([tabindex="-1"]).is-touch-active::after{
  inset: -1px; 
  filter: blur(1px);
  opacity: 1.4;
}
@media screen and (max-width: 768px) {
  .eventbtnwrap a{
    max-width: 100%;
    font-size: 14px;
    height: 49px;
  }
}
/* ----------------------------------- */
/* #content02
/* ----------------------------------- */
#content02{
  padding: 80px 0;
  position: relative;
  background-color: rgba(131, 70, 235, 0.05);
}

#content02::after{
  content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../../assets/img/enjoy/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    height: 100%;
    width: 100%;
}

#content02 .con-title span{
  font-size: 20px;
}
#content02 .cont-box{
  margin-bottom: 10px;

}
.howToEnjoy-swiperWrap{
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}
.howToEnjoy-swiperWrap .howToEnjoySwiper{
  position: inherit;
  padding-top: 30px;
  overflow: visible;
}
.howToEnjoySwiper .swiper-wrapper{
  align-items: flex-end;
}
.howToEnjoy-slide--human{
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.howToEnjoy-slide--human img{
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.howToEnjoy-bearImg{
  max-height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transform: scale(1.1);
  transform-origin: bottom center;
}
@media screen and (max-width: 768px){
  #content02::after{
      background-image: url(../../assets/img/enjoy/bg_sp.png);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
  }
}


/* クマボタン */
.howToEnjoy-bearBtn{
  position: relative;
  display: block;
  width: 100%;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}
.howToEnjoy-bearImg.is-default{
  opacity: 1;
  transition: opacity 0.6s ease;
}
.howToEnjoy-bearImg.is-hover{
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.howToEnjoy-bearBtn:hover .howToEnjoy-bearImg.is-default,
.howToEnjoy-bearBtn.is-touch-active .howToEnjoy-bearImg.is-default{
  opacity: 0;
}
.howToEnjoy-bearBtn:hover .howToEnjoy-bearImg.is-hover,
.howToEnjoy-bearBtn.is-touch-active .howToEnjoy-bearImg.is-hover{
  opacity: 1;
}

/* 矢印ボタン */
.howToEnjoySwiper .howToEnjoy-prev{
  width: 44px;
  height: 44px;
  background-image: url(../../assets/img/event/link_bullet_purple_left.svg);
  background-repeat: no-repeat;
  background-size: 24px;
  display: block;
  left: 10%;
  background-position: center;
  border-radius: 50%;
  border: #8346EB solid 1px;
  background-color: var(--white);
}
.howToEnjoySwiper .howToEnjoy-next{
  width: 44px;
  height: 44px;
  background-image: url(../../assets/img/event/link_bullet_purple_right.svg);
  background-repeat: no-repeat;
  background-size: 24px;
  display: block;
  right: 10%;
  background-position: center;
  border-radius: 50%;
  border: #8346EB solid 1px;
  background-color: var(--white);
}
.howToEnjoySwiper .howToEnjoy-prev::after,.howToEnjoySwiper .howToEnjoy-next::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(131,70,235,0.05);
    border-radius: 50%;
}

/* ---------------- モーダル ---------------- */
.howToEnjoyModal{
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0px 20px;
}
.howToEnjoyModal.is-open{
  display: flex;
}
.howToEnjoyModal__overlay{
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.6);
}
.howToEnjoyModal__inner{
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1;
}
.howToEnjoyModal__box{
  display: flex;
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  max-width: 920px;
  position: relative;
}
.howToEnjoyModal__img{
  width: 50%;
  flex-shrink: 0;
}
.howToEnjoyModal__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.howToEnjoyModal__body{
  padding: 40px;
  text-align: left;
}
.howToEnjoyModal__ttl{
  color: #8346EB;
  font-size: 28px;
  text-align: center;
  line-height: 150%;
  letter-spacing: 0;
  font-weight: 700;
  margin-bottom: 20px;
}
.howToEnjoyModal__text{
  font-size: 16px;
  line-height: 160%;
  color: var(--text);
  margin-bottom: 20px;
}
.howToEnjoyModal__tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.howToEnjoyModal__tags span{
  background-image: linear-gradient(90deg, rgba(247, 72, 154, 0.1),rgba(131, 70, 235, 0.1));
  color: #8346EB;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px 4px;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.howToEnjoyModal__link{
  display: inline-block;
  color: #51318F;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: underline;
  margin-bottom: 20px;
}
.howToEnjoyModal__link:hover{
  opacity: 0.7;
}
.howToEnjoyModal__close{
  position: absolute;
  top: -15px;
  right: -15px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--main);
  background-color: var(--white);
  z-index: 10;
  cursor : pointer;
}
.howToEnjoyModal__close::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../../assets/img/enjoy/menu_close.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
}
.howToEnjoyModal__close:hover,.howToEnjoyModal__close:focus{
  background-image: linear-gradient(135deg, rgba(247, 72, 154, 0.05), rgba(131, 70, 235, 0.06));
}
.howToEnjoyModal__boxWrap{
  position: relative;
}

.howToEnjoyModal__nav{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #8346EB;
  background-color: #fff;
  flex-shrink: 0;
  position: relative;
  cursor : pointer;
}
.howToEnjoyModal__nav::before{
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid #8346EB;
  border-right: 2px solid #8346EB;
  top: 50%;
  left: 50%;
}
.howToEnjoyModal__prev{
  left: 3.5%;
  z-index: 1;
}
.howToEnjoyModal__next{
  right: 3.5%;
}
.howToEnjoyModal__prev::before{
  transform: translate(-30%,-50%) rotate(-135deg);
}
.howToEnjoyModal__next::before{
  transform: translate(-70%,-50%) rotate(45deg);
}

@media screen and (max-width: 768px) {
  #content02 .cont-box{
    margin-bottom: 0;
  }
  .howToEnjoy-swiperWrap{
    margin-top: 0;
  }
  .howToEnjoyModal__box{
    flex-direction: column;
    max-width: 442px;
    max-height: 85vh;
    overflow-y: auto;
  }
  .howToEnjoyModal__inner{
    gap: 0;
    display: block;
  }
  .howToEnjoy-bearImg{
      transform: scale(1.0);
      transform-origin: bottom center;
    }
  .howToEnjoyModal__img{
    width: 100%;
  }
  .howToEnjoyModal__body{
    padding: 20px;
  }
  .howToEnjoyModal__ttl{
    font-size: 20px;
    margin-bottom: 10px;
  }
  .howToEnjoyModal__text{
    font-size: 14px;
    margin-bottom: 10px;
  }
  .howToEnjoySwiper .howToEnjoy-prev{
    width: 40px;
    height: 44px;
    background-image: url(../../assets/img/event/link_bullet_purple_left.svg);
    background-repeat: no-repeat;
    background-size: 24px;
    border-radius: 0 8px 8px 0;
    left: -1px;
  }
  .howToEnjoySwiper .howToEnjoy-next{
    width: 40px;
    height: 44px;
    background-image: url(../../assets/img/event/link_bullet_purple_right.svg);
    background-repeat: no-repeat;
    background-size: 24px;
    display: block;
    border-radius: 8px 0 0 8px;
    right: -1px;
  }
  .howToEnjoyModal__nav{
    position: absolute;
    top: 25%;
    z-index: 10;
    margin-top: 0;
  }
  .howToEnjoyModal__nav.howToEnjoyModal__prev{
    left: -6%;
  }
  .howToEnjoyModal__nav.howToEnjoyModal__next{
    right: -6%;
  }
  .howToEnjoyModal__link{
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 493px) {
.howToEnjoyModal__nav{
    width: 40px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #8346EB;
    background-color: #fff;
    flex-shrink: 0;
    position: absolute;
    top: 25vw;
    z-index: 10;
    margin-top: 0;
  }
  .howToEnjoyModal__nav.howToEnjoyModal__prev{
    border-radius: 0 8px 8px 0;
    left: -21px;
    margin-left: 0;
  }
  .howToEnjoyModal__nav.howToEnjoyModal__next{
    border-radius: 8px 0 0 8px;
    right: -21px;
    margin-right: 0;
  }
}

/* -----アニメーション追加------------------------------ */
.howToEnjoy-swiperWrap .howToEnjoySwiper {
    padding-top: 35px;
}
.animation_b_box{
  position: relative;
  width: 200px;
  height: 430px;
  background:url(../img/enjoy/shadow.png) no-repeat;
  background-size: 126px auto; 
  background-position: bottom center;
}
.animation_b_box .text_img{
  width: 100%;
  position: absolute;
  top: 16px;
  transition: all ease 0.3s;
}
.animation_b_box:hover .text_img{
  width: 100%;
  position: absolute;
  top: -20px;
}
.animation_b_box .text_img img{
  margin: 0 auto;
  display: block;
}
.animation_b_box .character_img{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.animation_b_box .character_img img{
  margin: 0 auto 20px;
  display: block;
  max-width: auto !important;
  max-height: auto !important;
  transform: rotate(0deg) scale(1);
  transition: transform 0.5s ease;
  transform-origin: center;
}
.animation_b_box:hover .character_img img{
  transform: rotate(5deg) scale(1.0);
}
.animation_b_box.v1:hover .character_img img{
  transform: rotate(-5deg) scale(1.0);
}
.animation_b_box.v3:hover .character_img img{
  transform: rotate(-5deg) scale(1.0);
}
.animation_b_box.v5:hover .character_img img{
  transform: rotate(-5deg) scale(1.0);
}
.animation_b_box.v6{
 
}
.howToEnjoySwiper .howToEnjoy-slide--people img{
  height: 367px !important;
}
@media screen and (max-width: 768px) {
.howToEnjoySwiper .howToEnjoy-slide--people img{
  height: 344px !important;

}
}
@media screen and (max-width: 768px) {
  .howToEnjoySwiper{
    img{
      width: auto;
    }
  }
  .animation_b_box{
    position: relative;
    width: 196px;
    height: 410px;
    background:url(../img/enjoy/shadow.png) no-repeat;
    background-size: 126px auto; 
    background-position: bottom center;
  }
  .animation_b_box .character_img img{
    height: 257px !important;
    margin: 0 auto 22px !important;
  }
}
/* -----アニメーション追加------------------------------ */

/* ----------------------------------- */
/* #content03
/* ----------------------------------- */
#content03{
  padding: 80px 0 200px;
  position: relative;
  z-index: 0;
}

#content03::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  display: block;
  background: radial-gradient(92.57% 92.57% at 50.13% 100%, #CDDEFF 0%, rgba(205, 222, 255, 0.00) 100%);
}

.content03_stadiumWrap{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden; /* ここでスタジアム画像のはみ出しだけを防ぐ */
}
.content03_stadiumWrap::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  display: block;
  background-image: url(../img/stadium/stadium.png);
  background-position: center bottom;
  background-size: 668px auto;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

#content03.is-inview .content03_stadiumWrap::after{
  opacity: 1;
  transform: translateY(0);
}
.content03_sky{
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 0;
  display: block;
  z-index: -2;
  overflow: hidden;
}
.content03_sky::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 390.114px;
  aspect-ratio: 469/211;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
  background-image: url(../../assets/img/stadium/sky.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}

.content03icon{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  display: block;
}
.content03icon::before{
  content: "";
    position: absolute;
    width: 81px;
    height: 150px;
    background-image: url(../../assets/img/stadium/stadium_icon01.png);
    background-size: 81px;
    background-repeat: no-repeat;
    background-position: center;
    bottom: -75px;
    left: 28%;
    z-index: 1;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
}
.content03icon::after{
  content: "";
    position: absolute;
    width: 73px;
    height: 150px;
    background-image: url(../../assets/img/stadium/stadium_icon02.png?=v2);
    background-size: 72px;
    background-repeat: no-repeat;
    background-position: center;
    bottom: -75px;
    right: 28%;
    z-index: 1;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s;
}

#content03.is-inview .content03icon::before,
#content03.is-inview .content03icon::after{
  opacity: 1;
  transform: translateY(0);
}

#content03 .con-text{
  margin-bottom: 60px;
}

#content03 .eventbtnwrap a{
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  #content03{
    padding: 80px 0 140px;
  }
  #content03 .con-text{
    margin-bottom: 40px;
  }
  .content03icon::before{
      width: 65px;
      height: 120px;
      background-image: url(../../assets/img/stadium/stadium_icon01.png);
      background-size: 65px;
      background-repeat: no-repeat;
      background-position: center;
      bottom: -60px;
      left: 3px;
      z-index: 2;
  }
  .content03icon::after{
    content: "";
      position: absolute;
      width: 60px;
      height: 120px;
      background-image: url(../../assets/img/stadium/stadium_icon02.png);
      background-size: 57px;
      background-repeat: no-repeat;
      background-position: center;
      bottom: -60px;
      right: 3px;
      z-index: 2;
  }
}
/* ----------------------------------- */
/* #content04
/* ----------------------------------- */
#content04{
  overflow: hidden;
  position: relative;
  padding: 80px 0;
   background-color: rgba(131, 70, 235, 0.05);
}
#content04::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../../assets/img/sns/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    height: 140px;
    width: 100%;
}

.cont4wrap{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 60px;
}
.cont4box{
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
}
.cont4box::after{
  content: "";
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, rgba(247, 72, 154, 0.18), rgba(131, 70, 235, 0.18));
  border-radius: 32px;
  filter: blur(4px);
  z-index: -2;
}
.cont4box a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.cont4box:hover,.cont4box:focus,.cont4box.is-touch-active{
  background-image: linear-gradient(135deg, rgba(247, 72, 154, 0.05), rgba(131, 70, 235, 0.06));
}

.snsArea{
  padding: 60px 0;
}
.snsArea__lead{
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}

.snsArea-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin-bottom: 60px;
}

.snsArea-item{
  position: relative;
}
.snsArea-item a{
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #000;
}
.snsArea-item a::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, rgba(247, 72, 154, 0.5), rgba(247, 72, 154, 0) 50%, rgba(131, 70, 235, 0.6));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}
.snsArea-item a:hover::after,
.snsArea-item a.is-touch-active::after{
  opacity: 1;
}
.snsArea-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.snsArea-item a:hover img,
.snsArea-item a.is-touch-active img{
  transform: scale(1.05);
}

.snsArea-item__icon{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 8px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}
.snsArea-item__icon--instagram{
  background-image: url(../../assets/img/sns/icon_sns_instagram.svg);
}
.snsArea-item__icon--tiktok{
  background-image: url(../../assets/img/sns/sns_tiktok.svg);
}
.snsArea-item__icon--youtube{
  background-image: url(../../assets/img/sns/sns_youtube.svg);
}
.snsArea-item__icon--x{
  background-image: url(../../assets/img/sns/sns_x.svg);
}

@media screen and (max-width: 768px) {
  .snsArea-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-bottom: 40px;
  }
  .snsArea-item__icon{
    width: 20px;
    height: 20px;
    background-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  #content04{
    position: relative;
    padding: 80px 0 60px;
  }
  #content04::after {
      background-image: url(../../assets/img/sns/bg_sp.png);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      display: block;
      height: 140px;
      width: 100%;
  }
}

