@charset "utf-8";

body {
  background: linear-gradient(#61BBEA, #0858A7);
  scroll-behavior: smooth;
}

.l-main {
    background-image: url(../img/bg_bottom.png);
    background-position: top;
    background-size: 100% auto;
    background-repeat: no-repeat;
    width: 100%;
    padding-bottom: 10rem;
}

.l-main.bg-simple {
    background-image: url(../img/bg_bottom_simple.png);
    background-repeat: repeat;
}

@media screen and (max-width: 768px) {
  .l-main {
    background-image: url(../img/bg_bottom_sp.png);
  }
  .l-main.bg-simple {
    background-image: url(../img/bg_bottom_simple.png);
  }
}

.title-main {
  padding: 5rem 0;
}

@media screen and (max-width: 768px){
  .title-main {
    padding: 5rem 0 3rem 0;
  }
  .l-main::before {
    background-size: 65vh;
    width: 150vw;
    right: -100px;
  }
}

.slide-sample {
  overflow: hidden;
  background: white;
  border: 1px solid #333;
  border-radius: 1.4rem;
  position: fixed;
  z-index: 999;
  bottom: 4%;
  right: 5%;
  width: 140px;
  height: 40px;
}

.slide-sample ul {
  display: inline-block;
  margin: 1rem;
  padding-left: 100%;
  white-space: nowrap;
  animation: SlideSample 12s linear infinite;
}

.slide-sample ul li {
  display: inline;
  margin: 0 80px 0 0;
  font-size: 1.2rem;
  letter-spacing: .12em;
  font-weight: bold;
}

.follow_bnr {
    position: fixed;
    z-index: 999;
    bottom: 4%;
    left: 5%;
    width: 250px;
}

@keyframes SlideSample {
  0% {
      transform: translateX(0)
  }
  100% {
      transform: translateX(-100%)
  }
}


@media screen and (max-width: 768px){
  .l-main {
    display: block;
    padding: 0 0 8rem 0;
  }
  .mainvisual-wide {
    border-top: var(--main-txt-color) 3px solid;
    border-bottom: var(--main-txt-color) 3px solid;
  }
  .follow_bnr {
    width: 140px;
}
}


/* Topへ戻る */
.scroll-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: #3462ae;
  border: 2px solid white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 1;
}

.arrow-icon {
  width: 28px;
  height: 28px;
}

.right-arrow-icon {
    width: 24px;
    height: 24px;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.ticket-btn:hover .right-arrow-icon {
    transform: translateX(4px);
}

/* 表示制御 */
.scroll-top.show {
  opacity: 1;
}

/* ラッパー */
.floating-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* 共通 */
.float-item {
  position: absolute;
  width: 250px;
  height: auto;
  animation: float 4s ease-in-out infinite;
}

/* 左 */
.float-item.left {
  left: 20px;
  top: 40%;
  animation-delay: 0s;
}

/* 右 */
.float-item.right {
  right: 0px;
  top: 20%;
  animation-delay: 1.5s;
}

/* 浮遊 */
@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@media screen and (max-width: 1024px) {
.float-item {
  width: 170px;
}
/* 左 */
.float-item.left {
  left: 10px;
  top: 67%;
}

/* 右 */
.float-item.right {
  right: -15px;
  top: 15%;
}
}
@media screen and (max-width: 600px) {
  .scroll-top {
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 20px;
  }

  .arrow-icon {
    width: 22px;
    height: 22px;
  }
  .float-item {
  width: 100px;
}

/* 左 */
.float-item.left {
  left: 10px;
  top: 67%;
}

/* 右 */
.float-item.right {
  right: -15px;
  top: 15%;
}
}

/* new icon */

  .new-icon {
    width: 37px;
    transform: rotate(25deg);
  }

  .swing {
    display: inline-block;
    transform-origin: center center;
    animation: smooth-swing 1s infinite ease-in-out;
  }

  @keyframes smooth-swing {
    0%   { transform: rotate(0deg); }
    50%  { transform: rotate(10deg); }
    100% { transform: rotate(0deg); }
  }



@media screen and (max-width: 768px){
  
  .right-arrow-icon {
      width: 18px;
      height: 18px;
  }

}


/* nav */
.nav-toggle {
    display: none;
}

.hamburger-btn {
    position: fixed;
    top: 50px;
    right: 50px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px 10px;
    box-sizing: border-box;
    background: #051e59f0;
    border-radius: 3rem;
}

.hamburger-btn span {
    display: block;
    margin: 0 auto;
    width: 80%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.global-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 40%;
    height: 100vh;
    background-color: #061e56;
    z-index: 9998;
    transition: all 0.3s ease;
    overflow-y: auto;
}
.nav-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    list-style: none;
    padding: 80px 0 0 20px;
    margin: 0;
}
.nav-item {
    margin: 10px 0;
    text-align: center;
}
.nav-item a {
    color: #fff;
    text-decoration: none;
    font-size: 2.2rem;
    display: block;
}
.nav-toggle:checked ~ .global-nav {
    right: 0;
}

.nav-toggle:checked ~ .nav-overlay {
    opacity: 1;
    visibility: visible;
}

.nav-toggle:checked ~ .hamburger-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background-color: #fff;
}
.nav-toggle:checked ~ .hamburger-btn span:nth-child(2) {
    opacity: 0;
}
.nav-toggle:checked ~ .hamburger-btn span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
    background-color: #fff;
}

body:has(.nav-toggle:checked) {
    overflow: hidden;
}

@media screen and (max-width: 767px){
.global-nav {
    width: 80%;
}
.hamburger-btn {
    top: 20px;
    right: 20px;
}
}

/*========= news/info ==========*/

.news-list{
  list-style: none outside;
  padding: 0;
}
.news-list .item a,
.item-nolink {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 200px;
  text-decoration: none;
  border-bottom: 2px dotted darkgray;
  padding: 20px 0 20px 0;
  align-items: center;
}

.noimage a{
  grid-template-columns: 1fr!important;
}

.news-list .item:last-child a{
  border-bottom: none;
}
.news-list .item .date{
  color: darkgray;
  margin: 0;
  min-width: 120px;
  padding-bottom: 0.3rem;
}
.news-list .item .date .icon{
    background: var(--main-txt-color);
    color: white;
    font-weight: bold;
    margin-left: 1rem;
    padding: .4rem .8rem;
    border-radius: .5rem;
    font-size: 1.1rem;
}
.news-list .item .title{
  margin: 0;
  width: 100%;
}
.news-list .item a:hover .title{
  opacity: .7;
}

@media screen and (max-width: 767px){
.news-list .item a,
.item-nolink {
  grid-template-columns: 1fr 100px;
  gap: 10px;
}
.noimage a {
  grid-template-columns: 1fr!important;
}

.news-list .item .date{
  min-width: 100px;
}
.news-list .item .title{
  margin-bottom: 10px;
}
}

.news__img {
  display: flex;
  justify-content: center;
}
.news__img img {
  max-width: 180px;
}

/*========= bnr-area ==========*/
#bnr-area {
  position: sticky;
  margin-top: 7rem;
}

#bnr-area .content {
  background: white;
}

#bnr-area img {
  width: 100%;
}

.bnr-entry {
  animation: floatBanner 3s ease-in-out infinite;
}

@keyframes floatBanner {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

@media screen and (max-width: 767px){
  #bnr-area .content {
    padding: 6rem 2rem 3rem 2rem;
  }
}

#bnr-area .title-sub {
    position: absolute;
    top: -35px;
    right: 0;
    left: 15px;
    font-size: 5rem;
    width: fit-content;
    font-weight: bold;
    font-style: normal;
    min-height: 0vw;
    line-height: 1.3;
    color: black;
    -webkit-text-fill-color: white;
    -webkit-text-stroke: 2px var(--main-txt-color);
}

@media screen and (max-width: 767px){
  #bnr-area .title-sub {
    font-size: 4rem;
  }
}

/*====== SNS =========*/
.sns-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sns-icon p {
  display: flex;
  width: 65px;
  height: 50px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px){
  .sns-icon p {
    width: 50px;
    height: 35px;
  }
}


/*========= APP ==========*/

.app-decorated-box {
  position: relative;
  border: 3px solid var(--main-txt-color);
  border-radius: 12px;
  padding: 2rem;
  background-color: white;
  overflow: hidden;
}

.app-decorated-box::before,
.app-decorated-box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.app-decorated-box::before {
  background: linear-gradient(135deg, #f1f1f1 25%, transparent 25%);
  top: 0;
  left: 0;
}

.app-decorated-box::after {
  background: linear-gradient(315deg, #f1f1f1 25%, transparent 25%);
  bottom: 0;
  right: 0;
}

.app-decorated-box > * {
  position: relative;
  z-index: 1;
}


/*========= TICKET ==========*/

.ticket-price {
  border-top: solid .1em #666;
  border-bottom: solid .1em #666;
  padding: 2rem;
}

.ticket-attention li:before {
  content: "※";
  margin-right: 0.5em;
}
.ticket-title {
    padding: 2rem;
    color: white;
    font-weight: bold;
}
.ticket-title img{
    max-height: 40px;
  }
.ticket-title.sub-back {
    background: #F1666D;
}
.ticket-title.main-back {
    background: #1E6DB6;
}
.ticket-title.vip {
    background: #F79559;
}
.ticket-detail {
    background: white;
    padding: 2rem;
}
.ticket-box {
    background: white;
    border: 2px solid var(--main-txt-color);
    padding: .4rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    color: var(--main-txt-color);
}

.ticket-box.rpp {
    border: none;
    background-color: #221A74;
    color: white;
    height: auto;
    margin-right: 2rem;
}
.ticket-box.rpg {
    border: none;
    background-color: #998637;
    color: white;
    height: auto;
    margin-right: 2rem;
}

@media screen and (max-width: 767px){
  .ticket-title {
    padding: 1rem;
    font-size: large;
    display: flex;
    justify-content: center;
  }
  .ticket-title img{
    max-height: 20px;
  }
}

.ticket-btn {
    border: 1.8px solid;
    padding: .4rem 1rem;
    background: #F79559;
    font-weight: bold;
    min-height: 50px;
    margin: 1rem;
    border: 2px solid #F79559;
    color: white;
}


    .ticket-nav ul{
    margin:0;
    padding:0;
    list-style:none;
}



/* tabiwa */

  .banner-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 2rem;
  }

  .banner-image {
  width: 100%;
  height: auto;
  }

  .button-overlay {
  position: absolute;
  bottom: 25px;
  left: 55%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  width: 75%;
  }

  .image-button {
  width: auto;
  height: auto;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.2s;
  }

  .image-button:hover {
  transform: scale(1.05);
  }

@media screen and (max-width: 767px) {
  .button-overlay {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 59%;
        left: 67%;
        transform: translateX(-50%);
        bottom: 15px;
  }

  .image-button {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
}

/*
[S Code]
*/
  #s-code .inner-frame {
    padding: 2rem 0 0 0;
  }
    
  #s-code .scd-form {
    position: relative;
    margin:0 0 .5em;
    max-width: 400px;
  }
  #s-code .scd-form dt {
    width:100%;
    min-height:32px;
    padding:1px;
    background-color:#333;
    position:relative;
    padding-right:36px;
    box-sizing:border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    -ms-box-sizing:border-box;
    -o-box-sizing:border-box;
  }
  #s-code .scd-form dt input {
    width:100%;
    min-height:32px;
    border:none;
    background:#FFF;
    padding:3px 12px;
    font-size:.9em;
    font-weight:normal;
    border-radius:0;
    -webkit-border-radius:0;
    -moz-border-radius:0;
    -ms-border-radius:0;
    -o-border-radius:0;
  }
  #s-code .scd-form dd {
    width:36px;
    max-height:32px;
    padding:1px;
    background:none;
    background:#333;
    position:absolute;
    top:0;
    right:0;
    overflow:hidden;
  }
  #s-code .scd-form dd button {
    width:100%;
    height:32px;
    padding:0;
    margin:0;
    border:0;
    cursor:pointer;
    background:#333;
    display: flex;
    align-items: center;
    justify-content: center;
  }
    #s-code .scd-form dd button img {
    max-height:26px;
    margin:0;
    padding:0;
    vertical-align:top;
  }

    
@media screen and (min-width:901px) and (max-width:1199px) {
  #s-code .scd-form dt {
    min-height:28px;
    padding-right:28px;
  }
  #s-code .scd-form dt input {
    min-height:28px;
    padding:3px 8px;
    font-size:.8em;
  }
  #s-code .scd-form dd {
    width:28px;
    max-height:28px;
    padding:1px;
  }
  #s-code .scd-form dd button {
    height:28px;
  }
  }   
  @media screen and (min-width:641px) and (max-width:900px) {
  #s-code .inner-frame {
    width:100%;
    padding:8px 10px;
    display:table;
  }
    
  #s-code .form-box {
    margin:0;
    display:table-cell;
    vertical-align:middle;
  }
    
  #s-code .scd-form {
    position: relative;
    margin:0;
  } 
}

@media screen and (max-width:640px) {
  #s-code .inner-frame {
    width:100%;
    padding:8px 10px;
    display:table;
  }
        
  #s-code .form-box {
    width:auto;
    display:table-cell;
    vertical-align:middle;
  }
    
  #s-code .scd-form {
    position:relative;
    margin:0;
  }
    
  #s-code .scd-form dt input {
    min-height:38px;
    padding:3px 8px;
    font-size:.9em;
  }
  #s-code .scd-form dd {
    width:38px;
    max-height:40px;
    padding:0;
  }
  #s-code .scd-form dd button {
	height:40px;
  } 
  }
    
  @media screen and (max-width:480px) {
  #s-code .inner-frame {
    padding:8px 5px;
  }
    
  #s-code .scd-form dt {
    min-height:36px;
    padding-right:36px;
  }
  #s-code .scd-form dt input {
    min-height:36px;
    padding:2px 8px;
    font-size:.95em;
  }
  #s-code .scd-form dd {
    width:36px;
    height:38px;
    padding:0;
  }
  #s-code .scd-form dd button {
    max-height:38px;
  }    
 }
    
@media screen and (max-width:320px) {
    #s-code .inner-frame {
    padding:7px 5px;
  }    
}


/*======== ARTIST =========*/

.al-photo {
  position: sticky;
}

.al-photo.new:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-radius: 1rem 0;
    border-style: solid;
    border-width: 35px 35px 0 0;
    border-color: #e35a9b transparent transparent transparent;
}
.al-photo.new:after {
    position: absolute;
    content: "NEW";
    transform: rotate(315deg);
    display: block;
    font-size: 10px;
    font-weight: bold;
    white-space: pre;
    color: #fff;
    top: 7px;
    left: 0px;
    text-align: center;
    z-index: 2;
    line-height: 1.2;
}

.al-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 1.4rem;
  border: 2px solid white;
}

.ad-photo {
    max-width: 400px;
}

@media screen and (max-width: 1400px){
  .al-photo img {
    height: 150px;
  }
}


/*========= GOODS ==========*/
.goods-item {
  border: 1px solid #333;
  border-radius: 5px;
  padding: 2rem;
  margin-bottom: 1rem;
  background: white;
}

.goods-item p {
  padding-bottom: .9rem;
}

@media screen and (max-width: 767px){
.goods-item img {
  max-height: 150px;
}
}

/*========= edition =========*/

.content-edition {
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 2px 2px 15px #0000002b;
  display: inline-block;
  transition: .3s;
  height: 100%;
  width: 100%;
}
.content-edition:hover {
  box-shadow: unset;
  transform: translateY(4px);
}

.content-edition img {
  max-height: 250px;
  width: auto;
}

.content-edition-service {
  border: 2px dotted;
  padding: 1.2rem;
  margin-top: 2rem;
}

@media screen and (max-width: 767px){
  .content-edition {
    box-shadow: unset;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px;
  }
  }


/* lightbox */
.open-lightbox {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

/* ライトボックスの背景 */
.lightbox-bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  overflow: auto;
  z-index: 1000;
  animation: fadeInBg 0.3s ease forwards;
}

/* ライトボックス本体（PC用） */
.lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  background: #fff;
  color: black;
  padding: 20px;
  width: 90%;
  max-width: 650px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  text-align: left;
  animation: popIn 0.3s ease forwards;
  max-height: 90vh;
  overflow-y: auto;
}

/* ライトボックス内の画像 */
.lightbox-content img {
  max-height: 300px;
  width: auto;
}

/* テキスト */
.lightbox-content p {
  line-height: 2.5rem;
  padding-top: 0.9rem;
}

/* 閉じるボタン */
.close-lightbox {
  position: absolute;
  top: 6px;
  right: 8px;
  padding: 5px 10px;
  background: var(--main-txt-color);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1;
}

/* 背景フェードイン */
@keyframes fadeInBg {
  from { background: rgba(0, 0, 0, 0); }
  to { background: rgba(0, 0, 0, 0.6); }
}

/* PC用アニメーション */
@keyframes popIn {
  from {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .lightbox-content {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    max-height: 90vh;
    overflow-y: auto;
    animation: fadeInUp 0.3s ease forwards; /* スマホ用アニメーション */
  }

  .lightbox-content img {
    max-height: 30vh;
  }

  .lightbox-content p {
    line-height: 1.8rem;
  }
}

/* スマホ用アニメーション */
@keyframes fadeInUp {
  from {
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}


/*========= button ==========*/

.main-btn {
  width: 200px;
  height: 40px;
  border: 1px solid #333333;
}

.main-btn::before, .main-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  transform-origin: 100% 50%;
  height: 1px;
  width: 11px;
  background-color: #333;
  border-radius: 2px;
  will-change: transform;
  transition: .3s;
}

.main-btn::before {
  transform: translateY(-50%) rotate(30deg);
}

.main-btn::after {
  transform: translateY(-50%) rotate(-30deg);
}

.main-btn:hover::before {
  transform: translate(5px, -50%) rotate(30deg);
}

.main-btn:hover::after {
  transform: translate(5px, -50%) rotate(-30deg);
}

/*========= sponsor ==========*/

.sponsor-bnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-gap: 30px;
}
.sponsor-bnr img{
  width: 320px;
  border: solid 1px #a9a9a9;
}




/*========= footer ==========*/

footer {
  background-color: var(--black-txt-color);
  display: flex;
  justify-content: center;
}
#footer {
  max-width: 1100px;
  display: flex;
  color: white;
}

.event-info p {
 padding-bottom: 1.3rem;
}

.event-info p span {
    background: white;
    color: var(--black-txt-color);
    font-weight: bold;
    padding: 0rem .5rem;
    margin-right: 1rem;
}

.copyright {
  background-color: var(--black-txt-color);
  color: white;
  display: flex;
  justify-content: center;
}