@charset "utf-8";

:root {
  --main-color: #0E9AA7;
  --sub-color: #02224D;
  --linegrad-color:linear-gradient(90deg, #A74B9D, #2C64B1 50%, #0D9BA6);
  --diagrad-color:linear-gradient(40deg, #A74B9D, #2C64B1 50%, #0D9BA6);
}

main {
	position:relative;
	overflow-x:hidden;
}

.global-nav {
  display: flex;
  top: 0;
  position: absolute;
  z-index: 9999;
  /* width: 96vw; */
  /* justify-content: flex-end; */
}

.nav-menu {
    background: var(--sub-color);
    display: flex;
    right: 0px;
    padding: .5rem 2rem;
    position: fixed;
    margin: 1rem;
    border-radius: 3rem;
}

.nav-item {
    margin: 0.8rem;
	padding-bottom: 3px;
	position: relative;
}

.nav-item a {
	color: white;
	font-weight: bolder;
}

.nav-item::before {
	background: white;
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 0;
	margin: auto;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
  }
.nav-item:hover::before {
	transform-origin: left top;
	transform: scale(1, 1);
}

.head-logo {
  position: fixed;
}
.head-logo img {
  width: 400px;
}

@media screen and (max-width: 768px){
.nav-item::before {
	background: none;
}
  .global-nav {
    justify-content: space-between;
}
.head-logo img {
  width: auto;
}

}


/*アクティブクラスがついたら位置を0に*/
.nav-menu.panelactive {
    right: 0;
}

@media screen and (max-width: 768px){
/* ナビ */
.nav-menu {
    position:fixed;
    display: block;
    z-index: 999;
    top:0;
    right: -100%;
    width:70%;
    height: 90vh;
    background:#FFF;
    transition: all 0.6s;
  	font-size: 2.3rem;
    border-radius: 0;
    margin: 0;
    padding: 0;
}
.nav-menu.panelactive {
    right: 0;
}


.nav-menu ul {
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

.nav-menu li{
  list-style: none;
  text-align: center;
  padding: 1rem 1.8rem 1.9rem 1.8rem;
  border-bottom: 1px solid rgb(149 149 149);
}

.openbtn1{
  position:fixed;
  z-index: 9999;
  right: 10px;
  cursor: pointer;
    width: 50px;
    height:50px;
}

.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
  top:15px; 
}

.openbtn1 span:nth-of-type(2) {
  top:23px;
}

.openbtn1 span:nth-of-type(3) {
  top:31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 13px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 25px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
}
}

.overlay {
    display: none; /* 初期は非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6); /* 半透明の黒 */
    z-index: 999; /* メニューの下に配置 */
}

/* メニューが開いてる時に表示 */
.overlay.active {
    display: block;
}


/*========= contents-text ========*/

.contents-text {
  padding: 8rem 2rem;
  text-align: center;
}
.contents-text_read  {
  font-size: 2.4rem;
  line-height: 4.7rem;
}
.contents-text_detail {
  font-size: 1.8rem;
}

@media screen and (max-width: 768px){
  .contents-text div {
    text-align: left;
  }
  .contents-text_read  {
    font-size: 1.9rem;
    line-height: 3.7rem;
  }
  .contents-text_detail {
    font-size: 1.5rem;
  }
  
}

/*========= news ========*/

#news .item {
  width: 300px;
  height: 325px;
  background: white;
  padding: 2rem;
  border-radius: 2rem;
}

.news-content {
  max-width: 800px;
  display: flex;
}

.news-list {
  display: flex;
  flex-direction: row;
}

.section-lineup {
  overflow: hidden;
  padding: 120px 0;
}


.section-lineup .lineup {
  position: relative;
}

.section-lineup .lineup-carousel li {
  margin-right: 24px;
}

.section-lineup .lineup-carousel img {
  display: block;
  margin-bottom: 16px;
  width: 100%;
}

.section-lineup .slick-list {
  overflow: visible;
}


.section-lineup .slick-arrow {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
}

.section-lineup .slick-next {
  right: 0;
}

.section-lineup .slick-prev {
  left: -80px;
}

.section-lineup .slick-next:before,
.section-lineup .slick-prev:before {
  color: #000;
}


 
/*========= animation ==========*/


.sns-btn_x {
	z-index: 5;
	display: flex;
	position: fixed;
	bottom: 35px;
	right: 10px;
	max-width: 155px;
}
.sns-btn_insta {
	z-index: 5;
	display: flex;
	position: fixed;
	bottom: 40px;
	right: 20px;
	max-width: 55px;
	padding: 6px 15px;
	background: black;
	border-radius: 2rem;
}
.sns-area a:hover {
	opacity: .7;
}

@media screen and (max-width: 768px){
  .sns-btn_x {
    max-width: 55px;
  }
}


/*========= mainvisual =========*/

.mainvisual {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 30px 30px;
  background-repeat: repeat;
  background-position: center center;
  padding: 1rem;
  border-width: 15px;
  border-style: solid;
  border-image-source: var(--diagrad-color);
  border-image-slice: 1;
}
.title-open {
  padding: 10rem 0;
}
@media screen and (max-width: 768px){
	.mainvisual {
    border-width: 10px;
	}
  .title-open {
    padding: 5rem 0;
  }
}

/*========= ENTRY ============*/

.entry-btn {
  position: relative;
  display: inline-block;
  background-image: var(--diagrad-color);
  padding: 0.8em 2.4em;
  border-radius: 5px;
  font-weight: bold;
  font-size: 20px;
  color: white;
  letter-spacing: 0.1em;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  width: 600px;
}

.entry-btn p {
  font-size: 3rem;
  line-height: 4.5rem;
}
.entry-btn span {
  font-size: large;
}

.entry-btn::before,
.entry-btn::after {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
  position: absolute;
  opacity: 0;
}
.entry-btn::before {
  background-image: url('../svg/icon_plus2.svg');
  top: 0;
  left: -12px;
}
.entry-btn::after {
  background-image: url('../svg/icon_heart2.svg');
  bottom: -6px;
  right: -14px;
}

.entry-btn:hover {
  background-image: none;
  background-color: white;
  outline: 4px solid var(--main-color);
  color: var(--main-color);
}
.entry-btn:hover::before {
  animation: heart 2s infinite ease-out;
}
.entry-btn:hover::after {
  animation: heart 2s 0.2s infinite ease-out;
}

@keyframes heart {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: translateY(-20px) scale(1.4);
    opacity: 0;
  }
}


@media screen and (max-width: 768px) {
  .entry-btn {
    width: auto;
    padding: 0.8em 1em;
  }
  .entry-btn p {
    font-size: 2.4rem;
    line-height: 3.5rem;
  }
  .entry-btn span {
    font-size: 1.5rem;
  }
  .entry-btn::before {
    animation: heart 2s infinite ease-out;
    width: 45px;
    height: 45px;
  }
  .entry-btn::after {
    animation: heart 2s 0.2s infinite ease-out;
    width: 45px;
    height: 45px;

  }
}

.gray-btn {
  position: relative;
  display: inline-block;
  background: darkgray;
  padding: 0.8em 2.4em;
  border-radius: 5px;
  font-weight: bold;
  font-size: 20px;
  color: white;
  letter-spacing: 0.1em;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  width: 600px;
}
@media screen and (max-width: 768px) {
    .gray-btn {
        width: auto;
        padding: 0.8em 1em;
    }
}

.list-style {
  list-style: none;
}
.list-style li {
  padding-left: 25px;
  line-height: 1.6em;
  background: url('../svg/icon_plus.svg') left 0px top 1px no-repeat;
  background-size: 25px auto;
}

@media screen and (max-width: 768px) {
  .list-style li {
    line-height: 2.1em;
    background-size: 21px auto;
  }  
}


/*========= TICKET ==========*/
.ticket-price {
  border-top: solid .3em var(--sub-color);
  border-bottom: solid .3em var(--sub-color);
  background: #fffffff0;
  padding: 2rem;
  margin: 2rem;
}

.ticket-attention li:before {
  content: "※";
  margin-right: 0.5em;
}

.ticket-entry {
	background: #fffffff0;
}
.ticket-entry_title {
	color: white;
	background: var(--sub-color);
	display: flex;
	justify-content: center;
	align-items: center;
}
.ticket-entry_detail {
  margin: 1.7rem;
}


@media screen and (max-width: 767px){
	.ticket-entry_title {
		height: 50px;
	}
}


/*========= GOODS ==========*/
.goods-title {
	background: var(--sub-color);
	padding: 0.8rem 1rem;
	color: white;
	text-align: center;
}
.goods-item {
  padding: 2rem;
  margin-bottom: 1rem;
  background: #fffffff0;
}

.goods-item p {
  padding-bottom: .9rem;
}

@media screen and (max-width: 767px){
	.goods-item {
		text-align: center;
		padding: 1rem;
	}

	.goods-item img {
		max-height: 150px;
	}
}

/*========= SPONSOR ==========*/

#sponsor .content {
	max-width: 1150px;
}

.sponsor-bnr {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 15px;
  padding-bottom: 3rem;
}

.sponsor-bnr img {
  max-height: 160px;
}


/*========= button ==========*/

.btn {
	color: var(--sub-color);
	width: 100%;
	height: 40px;
	border: 2px solid var(--sub-color);
	transition: 0.3s;
	box-shadow: 5px 5px 0px 0px rgba(54, 109, 65, 1);
	background-color: #ffffff;
  }
  
  .btn:hover {
	box-shadow: 0 0 var(--sub-color);
	color: #fff;
	background-color: var(--sub-color);
  }

/*========= cl-text ==========*/

.cl-gr {
    color: var(--main-color);
}
.cl-bl {
    color: var(--sub-color);
}
.cl-wt {
  color: white;
}

/*========= footer ==========*/

footer {
  background: var(--main-color);
  display: flex;
  justify-content: center;
  margin-top: 5rem;
  font-weight: bold;
}
#footer {
  max-width: 1100px;
  display: flex;
  color: white;
}

.event-info p {
  display: grid;
  gap: 3px;
  grid-template-columns: 145px 1fr;
  align-items: baseline;
  padding-bottom: 1.3rem;
}

.event-info p a {
	color: white;
  width: fit-content;
}

.event-info p .subtitle {
    padding: .3rem .5rem;
    text-align: end;
}
.event-info p .subtitle::after { 
  content: "|"; 
  margin-left: 10px;
}

@media screen and (max-width: 767px){
  .event-info p {
    grid-template-columns: 115px 1fr;
  }
}

.copyright {
  background-color: #1a1818;
  color: white;
  display: flex;
  justify-content: center;
}

.accordion {
	padding: 2.3rem;
	background: white;
}
