@charset "utf-8";

body {
  background: var(--main-bg-color);
}

.l-main {
  display: flex;
  padding: 1.5rem 0 0 0;
  position: relative;
  min-height: 100vh;
}

/*背景の設定用*/
.l-main::before {
  content: "";
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-size: 60vw;
  background-position: bottom right;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: -1;
  pointer-events: none;
}

/* デフォルト背景（idなし） */
/* .l-main:not([id])::before {
  background-image: url("/assets/img/bg/illust_default.png");
} */

/* ページごとの背景 */
.l-main#artist::before {
  background-image: url("/assets/img/bg/illust_vocal.png");
}
.l-main#ticket::before {
  background-image: url("/assets/img/bg/illust_guitare_green.png");
}
/* .l-main#goods::before {
  background-image: url("/assets/img/bg/illust_.png");
}
.l-main#ticket::before {
  background-image: url("/assets/img/bg/illust_.png");
} */




@media screen and (max-width: 600px) {
  body::before {
    background-size: contain;
    background-position: top center;
    opacity: 0.1;
  }
}

.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;
  }
}

.nav-menu {
    display: flex;
    flex-direction: column;
}

.nav-item {
    margin: .7rem 3rem;
}
.nav-item a{
  color: white;
}
.nav-item:hover {
	transform: translateX(0.4em);
}

.overflow__hidden {
  overflow: hidden;
}

@media screen and (min-width: 768px){
.global-nav {
  background: var(--main-txt-color);
  height: 100vh;
  border-radius: 15px 0 0 0;
  margin-top: 2rem;
}
}


main {
  width: calc(100% - 270px);
  padding-bottom: 5rem;
}
nav {
  width: 270px;
  position: sticky;
  top: 20px;
  height: 500px;
}
.mainvisual {
  display: flex;
  justify-content: center;
  background: white;
  align-items: center;
}
.mainvisual-wide {
  border-top: var(--main-txt-color) 5px solid;
  border-bottom: var(--main-txt-color) 5px solid;
}

.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;
}

@keyframes SlideSample {
  0% {
      transform: translateX(0)
  }
  100% {
      transform: translateX(-100%)
  }
}


/* text */

.marquee {
	overflow: hidden;
}
.marquee ul {
  background: white;
  border: 2px solid var(--main-txt-color);
	display: flex;
	margin: 0;
	padding: 0;
	width: max-content;
}
.marquee-right ul {
  animation: marquee-right 20s linear infinite;
}
.marquee-left ul {
  animation: marquee-left 20s linear infinite;
}

.marquee ul li {
	list-style: none;
	padding: 0 5px;
	width: calc(100vw / 3 - 10px);
}

.marquee img {
	display: block;
	width: 120%;
}

@keyframes marquee-right {
	from {
		transform: translateX(0%);
	}
	to {
		transform: translateX(-50%);
	}
}
@keyframes marquee-left {
	from {
		transform: translateX(-50%);
	}
	to {
		transform: translateX(0%);
	}
}

/* img */

.marquee-img {
	overflow: hidden;
}
.marquee-img ul {
  background: white;
  border: 3px solid white;
	display: flex;
	margin: 0;
	padding: 0;
	width: max-content;
}

.marquee-img-right ul {
  animation: marquee-img-right 90s linear infinite;
}

.marquee-img ul li {
	list-style: none;
}

.marquee-img img {
	display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@keyframes marquee-img-right {
	from {
		transform: translateX(0%);
	}
	to {
		transform: translateX(-50%);
	}
}

/* nav */
.nav-menu {
  display: flex;
  flex-direction: column;
}

.nav-item {
  margin: 0rem 3rem;
  font-size: 3rem;
}
.nav-item a{
  color: white;
}
.nav-item:hover {
  transform: translateX(0.4em);
}

@media screen and (min-width: 768px){
.global-nav {
background: var(--main-txt-color);
height: 100vh;
border-radius: 15px 0 0 0;
margin-top: 2rem;
}
}


@media screen and (max-width: 768px){
  .l-main {
    display: block;
    padding: 0;
  }
  main {
    width: 100%;
  }
  nav {
    width: 100%;
    height: auto;
    box-shadow: none;
    border-radius: 0;
    z-index: 2;
  }
  .mainvisual-wide {
    border-top: var(--main-txt-color) 3px solid;
    border-bottom: var(--main-txt-color) 3px solid;
  }
  .global-nav {
    justify-content: space-between;
    border: none;
  }
  .marquee ul li {
    width: 120vw;
  }
}

/*アクティブクラスがついたら位置を0に*/
.nav-menu.panelactive{
    right: 0;
}

@media screen and (max-width: 768px){
/* ナビ */
.nav-menu{
    position:fixed;
    display: block;
    z-index: 998;
    top:0;
    right: -120%;
    width:100%;
    height: 100vh;
    background:#FFF;
    transition: all 0.6s;
}

.nav-menu.panelactive{
    position: fixed;
    background: white;
    z-index: 999; 
    width: 70%;
    height: 100vh;
    margin: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.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;
}

.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: 30%;
}

.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: 30%;
}
}

/* 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;
}

/* 表示制御 */
.scroll-top.show {
  opacity: 1;
}

/* 浮遊イラスト共通 */
.floating-illustration {
  position: absolute;
  width: 50px;
  height: 50px;
  pointer-events: none;
  transition: opacity 0.5s ease;
  opacity: 0;
}

/* 右上イラスト */
.floating-illustration.right {
  top: -35px;
  right: -20px;
  animation: float 4s ease-in-out infinite;
}

/* 左下イラスト */
.floating-illustration.left {
  bottom: -25px;
  left: -20px;
  animation: floatAlt 4s ease-in-out infinite;
}

.floating-illustration.show {
  opacity: 1;
}

/* アニメーション定義 */
@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}

@keyframes floatAlt {
  0%   { transform: translateY(-3px); }
  50%  { transform: translateY(3px); }
  100% { transform: translateY(-3px); }
}

@media screen and (max-width: 600px) {
  .scroll-top {
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 20px;
  }

  .arrow-icon {
    width: 22px;
    height: 22px;
  }

  .floating-illustration {
    width: 35px;
    height: 35px;
  }

  .floating-illustration.right {
    top: -25px;
    right: -15px;
  }

  .floating-illustration.left {
    bottom: -20px;
    left: -15px;
  }
}

/* eyeanimation */
.eyes {
  display: flex;
  position: absolute;
  top: -10px;
  left: -10px;
}

.eye {
  width: 50px;
  height: 50px;
  background: white;
  border: 3px solid var(--main-txt-color);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.pupil {
  width: 20px;
  height: 20px;
  background: var(--main-txt-color);
  border-radius: 50%;
  position: absolute;
  top: 30%; /* 瞳孔の初期位置 */
  left: 30%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}

@media screen and (max-width: 768px){
  .eyes {
    top: 5px;
  }
  
}


/* nav_sp */

.global-nav_sp {
  position: fixed;
  width: 100vw;
  top: 0px;
}

.openbtn1 {
  background: var(--main-txt-color);
  border-radius: 1rem;
  padding: 2rem;
  position: absolute;
  margin: 1rem;
  right: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
}

.openbtn1 span {
  position: absolute;
  display: block;
  width: 23px;
  height: 3px;
  background: white;
  left: 7px;
  transition: all 0.3s ease;
}

.openbtn1 span:nth-child(1) {
  top: 11px;
}

.openbtn1 span:nth-child(2) {
  top: 19px;
}

.openbtn1 span:nth-child(3) {
  top: 27px;
}

.openbtn1.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 18px;
}

.openbtn1.active span:nth-child(2) {
  opacity: 0;
}

.openbtn1.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 18px;
}

.nav-menu_sp {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;
  background: var(--main-txt-color);
  display: flex;
  flex-direction: column;
  padding: 60px 20px;
  transition: right 0.4s ease;
  z-index: 1000;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
}

.nav-menu_sp.active {
  right: 0;
}

.nav-menu_sp .nav-item {
  margin: 10px 0;
}

/* オーバーレイ初期状態 */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1;
}

/* 表示状態 */
.overlay.active {
  opacity: 1;
  pointer-events: auto;
}


/*========= news/info ==========*/

#news .content {
  border-top: 3px solid var(--main-txt-color);
  border-bottom: 3px solid var(--main-txt-color);
  background: white;
}

.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;
}

.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;
  gap: 0px;
}
.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%;
}

@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;
  background: var(--main-txt-color);
  border-radius: 30px;
  align-items: center;
  justify-content: center;
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px){
  .sns-icon {
    justify-content: flex-start;
  }
  .sns-icon p {
    width: 50px;
    height: 35px;
  }
}


/*========= DESIGNER ==========*/
#designer .content {
  border-top: 3px solid var(--main-txt-color);
  border-bottom: 3px solid var(--main-txt-color);
  background: white;
}

/*========= INFO ==========*/
#info .content {
  border-top: 3px solid var(--main-txt-color);
  border-bottom: 3px solid var(--main-txt-color);
  background: white;
}

/*========= 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-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: white;
    font-weight: bold;
    min-height: 50px;
    margin: 1rem;
}

/*
[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-style: solid;
    border-width: 35px 35px 0 0;
    border-color: var(--red-txt-color) 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%;
  max-width: 180px;
  height: 170px;
  object-fit: cover;
}

.ad-photo {
    max-width: 400px;
}

@media screen and (max-width: 1400px){
  .al-photo img {
    height: 120px;
  }
}


/*========= 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;
}
.content-edition:hover {
  box-shadow: unset;
  transform: translateY(4px);
}

.content-edition img {
  max-height: 250px;
  width: auto;
}
@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);
  z-index: 1000;
  animation: fadeInBg 0.3s ease forwards;
}

.lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  background: #fff;
  color: black;
  padding: 20px;
  width: 80%;
  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;
}

.lightbox-content img {
  max-height: 300px;
  width: auto;
}

.lightbox-content p {
  line-height: 2.5rem;
  padding-top: 0.9rem;
}

.close-lightbox {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 16px;
  background: var(--red-txt-color);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

@media screen and (max-width: 767px){
  .lightbox-content img {
    max-height: 220px;
  }
  .lightbox-content p {
    line-height: 1.4rem;
  }
}


/* 背景のフェードイン */
@keyframes fadeInBg {
  from { background: rgba(0, 0, 0, 0); }
  to { background: rgba(0, 0, 0, 0.6); }
}

/* コンテンツのズーム＆フェード */
@keyframes popIn {
  from {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    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;
}