/* reset & base
----------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  color: #333;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
a {
  color: #fff;
}
a:focus {
  outline: none;
}
img {
  width: 100%;
  height: auto;
}

/* common
----------------------------------------------------------------- */
.-inBlock {
  display: inline-block;
}
.pc-only {
  display: block !important;
}
.sp-only {
  display: none !important;
}
.inBlock {
  display: inline-block;
}
@media screen and (max-width: 599px) {

  
.container2 {
    margin: 10px;
    padding: 0 10px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 10px;
    margin-right: 20px;
}

  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
}

.bg-blk {
  color: #fff;
    background-image: url(../img/973793.jpg);
    color: #fff;
    background-size: cover;
    background-color: #000;
    background-attachment: fixed;
    background-position: center;
}
.bg-blue {
  color: #000;
  background-color: #17adc6;
}
.bg-gray {
  color: #fff;
  background-color: #353237;
}
.f-color-red {
  color: #c50000;
}
.f-w-bold {
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1030px;
  margin: auto;
  padding: 0 40px;
}


.container-s {
    max-width: 930px;
    margin: auto;
    
    
}
.sec-box {
  padding: 40px 0;
}
.sec-ttl {
  color: #fde0a6;
  font-size: 16px;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 60px;
}
.sec-ttl span {

  color: #fff;
  font-size: 46px;
  font-weight: 700;
}
.bg-blue .sec-ttl,
.bg-blue .sec-ttl span {
  color: #000;
}
.icon-heart {
  font-size: 0.7em;
  /* display: inline-block;
  line-height: 1;
  margin-top: -0.2em;
  vertical-align: middle; */
}

/* opening
----------------------------------------------------------------- */
#loading {
  position: fixed;
  z-index: 99999;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #fff;
}
#loading_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20%;
}
#loading img {
  max-width: 100%;
  height: auto;
  margin: auto;
}
#loading_text .progressbar-text {
  font-size: 20px;
  color: #e86030 !important;
  font-weight: 700;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.2s;
  animation-delay: 1.2s;
  opacity: 1;

  animation-fill-mode: forwards;
}
@keyframes fadeUpAnime {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100px);
    opacity: 0;
  }
}

/* mv
----------------------------------------------------------------- */
#contents {
  position: relative;
  overflow-x: hidden;
  transition: transform 0.5s;
}
.mv {
  margin-top: 80px;
  background: url(../img/bg.jpg) bottom center no-repeat;
  background-size: cover;
}
.mv-ttl {
  max-width: 706px;
  margin: 0 auto;
  padding: 80px 40px;
}

/* header
----------------------------------------------------------------- */
.header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    display: flex
;
    height: 80px;
    /* background: #896356; */
    background-image: linear-gradient(to bottom, #191e87, #191e87);
    justify-content: space-between;
    align-items: center;
}
.header-logo {
  transition: opacity 0.3s, transform 0.5s;
  flex: 0 0 368px;
  padding-left: 20px;
}
.header-logo:hover {
  opacity: 0.85;
}
.header-logo img {
  width: 100px;
}
.menu-btn {
  display: none;
}
.menu {
  height: 100%;
  flex: 0 1 694px;
}
.menu-list {
  display: flex;
  height: 100%;
  list-style-type: none;
  justify-content: space-around;
  justify-content: space-evenly;
  align-items: center;
}
.menu-item {
  display: flex;
  height: 100%;
}
.menu-item a {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  display: flex;
  height: 100%;
  text-decoration: none;
  align-items: center;
}
/* .menu-list li:last-child a {
  font-size: 18px;
} */
.menu-item a span {
  position: relative;
}
.menu-item a span::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  transition: transform 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
  background: #17adc6;
}
.menu-item a:hover span::after {
  transform: scale(1, 1);
}

/* footer
----------------------------------------------------------------- */
.footer {
  display: flex;
  height: 90px;
  transition: transform 0.5s;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  justify-content: center;
  align-items: center;
}

/* news
----------------------------------------------------------------- */
.news {
    background: #310c00;
    padding: 5px;
    display: flex;
    flex-flow: row nowrap;
    margin-bottom: 20px;
    border-radius: 10px;

}
.news:last-child {
  margin-bottom: 0;
}
.news dt {
  width: 100px;
  border-right: 1px solid #fff;
  padding: 10px 15px;
  font-size: 14px;
}
.news dd {
  width: calc(100% - 100px);
  padding: 10px 15px;
  font-size: 14px;
}

/* about
----------------------------------------------------------------- */
.about-txt {
  font-size: 18px;
  text-align: left;
  line-height: 2;
}

/* artist
----------------------------------------------------------------- */
.artist-day {
  color: #17adc6;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  width: 300px;
  height: 50px;
  background: #000;
  padding: 8px 20px 0;
  margin: 0 auto 40px;
}
.artist-wrap {
text-align: -webkit-center;
text-align: center;
  margin-bottom: 60px;
}
.artist-wrap:last-child {
  margin-bottom: 0;
}
.artist-img {
  width: 40%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.instagram-box {
  display: flex;
  align-items: center; /* 垂直方向の中央揃え */
  justify-content: center; /* 横方向中央揃え（お好みで） */
  gap: 10px; /* 画像とテキストの間隔 */
}

.instagram-img {
  width: 30px; /* 適切なサイズに変更 */
}

.instagram-text {
  font-size: 16px;
}

.sns-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.instagram-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.instagram-img {
  width: 30px;
  height: auto;
}

.instagram-text {
  font-size: 16px;
}

/* スマホ（SP）用：縦並び */
@media (max-width: 767px) {
  .sns-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .instagram-box {
    justify-content: center;
  }
}


.artist-name {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  margin: 20px 0;
}
.artist-mgn {
  margin-top: 80px;
}

/* ticket
----------------------------------------------------------------- */
.outline {
  margin-bottom: 60px;
}
.outline:last-child {
  margin-bottom: 0;
}
.outline h3 {
  font-size: 24px;
  line-height: 1;
  border-bottom: 1px solid #fff;
  padding: 0 20px 20px;
}
.outline dl {
  display: flex;
  flex-flow: row nowrap;
  margin-top: 20px;
}
.outline dl dt {
  /* width: 200px; */
  padding: 0 20px;
}
.outline dl dd {
  /* width: calc(100% - 200px); */
  flex: 1;
  padding-right: 20px;
}
.outline p {
  margin-top: 20px;
  padding: 0 20px;
}
.outline ul,
.outline li {
  padding: 0;
  margin: 0;
}
.outline li {
  margin-left: 1.4em;
  margin-bottom: 20px;
}
.outline li:last-child {
  margin-bottom: 0;
}
.outline li span {
  font-size: 14px;
}
.outline__subtext {
  font-size: 14px;
}

.ticket-btn {
    position: relative;
    overflow: hidden;
    max-width: 700px;
    height: 130px;
    margin: 40px auto 0;
    border-radius: 7px;
    background: #d50000;
}
.ticket-btn:first-child {
  margin-top: 60px;
}

.ticket-btn2 {
  position: relative;
  overflow: hidden;
  max-width: 700px;
  height: 130px;
  margin: 40px auto 0;
  border-radius: 7px;
  background: #896356;
}
.ticket-btn2:first-child {
  margin-top: 60px;
}

.ticket-btn2 {
    position: relative;
    overflow: hidden;
    max-width: 700px;
    height: 130px;
    margin: 40px auto 0;
    border-radius: 7px;
    background: #d50000;
}
.ticket-btn2:first-child {
  margin-top: 60px;
}

.ticket-btn a {
  display: block;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 23px;
  transition: color 0.3s;
}
.ticket-btn2 a {
    display: block;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    line-height: 1.2;
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 46px;
    transition: color 0.3s;
}

.ticket-btn a.line2 {
  padding-top: 26px;
}
.ticket-btn a.line3 {
  padding-top: 13px;
}
.ticket-btn a.line2 span {
  font-size: 24px;
}
.ticket-btn a.line3 span {
  font-size: 24px;
}

.ticket-btn2 a.line2 {
  padding-top: 26px;
}
.ticket-btn2 a.line3 {
  padding-top: 13px;
}
.ticket-btn2 a.line2 span {
  font-size: 24px;
}
.ticket-btn2 a.line3 span {
  font-size: 24px;
}

.ticket-btn a::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 30px;
  height: 30px;
  content: "";
  transition: background 0.4s;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url("./../img/icn_btn_w.svg") no-repeat;
  background-size: contain;
}  

.ticket-btn2 a::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 30px;
  height: 30px;
  content: "";
  transition: background 0.4s;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url("../assets/img/icn_btn_w.svg") no-repeat;
  background-size: contain;
  
}
@media (hover: hover) {
  .ticket-btn::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    transition: 0.4s;
    transform: scale(0, 1);
    transform-origin: left top;
    background: #fff;
  }
  .ticket-btn:hover a {
    color: #000;
  }
  .ticket-btn:hover::before {
    transform: scale(1, 1);
  }
  .ticket-btn:hover a::after {
    background-image: url("./../img/icn_btn.svg");
  }
  
  .ticket-btn2::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    transition: 0.4s;
    transform: scale(0, 1);
    transform-origin: left top;
    background: #fff;
  }
  .ticket-btn2:hover a {
    color: #000;
  }
  .ticket-btn2:hover::before {
    transform: scale(1, 1);
  }
  .ticket-btn2:hover a::after {
    background-image: url("./../img/icn_btn.svg");
  }  
  
}

/* guideline
----------------------------------------------------------------- */
.guideline-link {
  max-width: 700px;
  background: #ffff17;
  margin: 60px auto 0;
  padding: 40px;
  color: #000;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}
.guideline-link p:after {
  content: "";
  display: block;
  width: 100px;
  height: 5px;
  background: #000;
  margin: 20px auto;
}

.guideline-link-btn {
  position: relative;
  overflow: hidden;
  max-width: 400px;
  height: 80px;
  margin: 0 auto;
  border-radius: 7px;
  background: #000;
}
.guideline-link-btn a {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  line-height: 1.5;
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 16px;
  transition: color 0.3s;
}
.guideline-link-btn a::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  content: "";
  transition: background 0.4s;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url("./../img/icn_btn_w.svg") no-repeat;
  background-size: contain;
}
@media (hover: hover) {
  .guideline-link-btn::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    transition: 0.4s;
    transform: scale(0, 1);
    transform-origin: left top;
    background: #fff;
  }
  .guideline-link-btn:hover a {
    color: #000;
  }
  .guideline-link-btn:hover::before {
    transform: scale(1, 1);
  }
  .guideline-link-btn:hover a::after {
    background-image: url("./../img/icn_btn.svg");
  }
}

/* information
----------------------------------------------------------------- */
.information-txt {
  font-size: 18px;
  text-align: center;
  line-height: 2;
}

/* history
----------------------------------------------------------------- */
.history {
  margin-top: 80px;
}
.history__title {
  margin-top: 80px;
}

/* for TABLET and SP
----------------------------------------------------------------- */
@media screen and (max-width: 1023px) {
  /* menu
	----------------------------------------------------------------- */
  .menu-btn {
    position: fixed;
    z-index: 300;
    top: 0;
    right: 0;
    display: inline-block;
    width: 80px;
    height: 80px;
    cursor: pointer;
    vertical-align: middle;
  }
  .menu-btn span {
    position: absolute;
    right: 22px;
    display: inline-block;
    box-sizing: border-box;
    width: 36px;
    height: 4px;
    transition: all 0.5s;
    background-color: white;
  }
  .menu-btn.active span {
    background-color: #fff;
  }
  .menu-btn span:nth-of-type(1) {
    top: 26px;
  }
  .menu-btn.active span:nth-of-type(1) {
    transform: translateY(12px) rotate(45deg);
  }
  .menu-btn span:nth-of-type(2) {
    top: 38px;
  }
  .menu-btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-btn span:nth-of-type(3) {
    bottom: 26px;
  }
  .menu-btn.active span:nth-of-type(3) {
    transform: translateY(-12px) rotate(-45deg);
  }
  .menu {
    position: fixed;
    z-index: 200;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    transition: all 0.5s;
    transform: translateX(300px);
    background: #000;
  }
  .open .menu {
    transform: translateX(0);
    opacity: 1;
  }
  .open #contents,
  .open .header-logo,
  .open.footer,
  .overlay.open {
    transform: translateX(-300px);
  }
  .menu-list {
    overflow-y: auto;
    flex-direction: column;
    padding-top: 80px;

    justify-content: flex-start;
    align-items: flex-start;
  }
  .menu-item {
    width: 100%;
    height: 80px;
    min-height: 80px;
  }
  .menu-item a {
    font-size: 26px;
    line-height: 40px;
    width: 100%;
    padding-left: 30px;
    color: #fff;
  }
  /* .menu-list li:last-child a {
    font-size: 22px;
  } */
  .menu-item.menu-item-ja a {
    font-size: 22px;
  }
  .menu-item a span::after {
    left: 0;
    background: #fff;
  }
  .overlay {
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    display: block;
    width: 0;
    height: 0;
    content: "";
    transition: opacity 0.5s, transform 0.5s;
    opacity: 0;
    background-color: rgba(106, 110, 46, 0.5);
  }
  .overlay.open {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
}

/* for SP
----------------------------------------------------------------- */
@media screen and (max-width: 599px) {
  /* reset & base
		----------------------------------------------------------------- */
  body {
    font-size: 14px;
  }

  /* common
		----------------------------------------------------------------- */
  .container {
    padding: 0 20px;
  }
  .sec-box {
    padding: 20px 0;
  }
  .sec-ttl {
    font-size: 12px;
    margin-bottom: 30px;
  }
  .sec-ttl span {
    font-size: 30px;
  }

  /* mv
	----------------------------------------------------------------- */
  .mv {
    margin-top: 50px;
  }
  .mv-ttl {
    padding: 40px 80px;
  }

  /* header
	----------------------------------------------------------------- */
  .header {
    height: 50px;
  }
  .header-logo {
    flex: 0 0 200px;
  }
  .header-logo img {
    width: 50px;
  }
  .menu-btn {
    width: 50px;
    height: 50px;
  }
  .menu-btn span {
    right: 12px;
    width: 30px;
    height: 2px;
  }
  .menu-btn span:nth-of-type(1) {
    top: 14px;
  }
  .menu-btn.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .menu-btn span:nth-of-type(2) {
    top: 24px;
  }
  .menu-btn span:nth-of-type(3) {
    bottom: 14px;
  }
  .menu-btn.active span:nth-of-type(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  .menu-list {
    padding-top: 50px;
  }
  .menu-item {
    height: 68px;
    min-height: 68px;
  }
  .menu-item a span::after {
    display: none;
  }

  /* footer
	----------------------------------------------------------------- */
  .footer {
    height: 50px;
    font-size: 12px;
  }

  /* news
	----------------------------------------------------------------- */
  .news {
    margin-bottom: 10px;
  }

  /* about
	----------------------------------------------------------------- */
  .about-txt {
    font-size: 16px;
  }

  /* artist
	----------------------------------------------------------------- */
  .artist-day {
    font-size: 18px;
    width: 200px;
    height: 35px;
    padding: 7px 10px 0;
    margin: 0 auto 20px;
  }
  .artist-wrap {
    margin-bottom: 30px;
  }
  .artist-name {
    font-size: 18px;
    margin: 10px 0;
  }
  .artist-mgn {
    margin-top: 40px;
  }

  /* ticket
	----------------------------------------------------------------- */
  .outline {
    margin-bottom: 40px;
  }
  .outline h3 {
    font-size: 18px;
  }
  .outline dl {
    display: block;
  }
  .outline dl dt {
    width: 100%;
    padding: 0 20px;
  }
  .outline dl dd {
    width: 100%;
    padding-left: 20px;
  }
  .outline li {
    margin-bottom: 10px;
  }
  .outline li span {
    font-size: 12px;
  }
  .outline__subtext {
    font-size: 13px;
  }
  .ticket-btn {
    height: 70px;
    border-radius: 5px;
    margin: 20px auto;
  }
  .ticket-btn:first-child {
    margin-top: 40px;
  }
  .ticket-btn a {
    font-size: 18px;
    padding-top: 13px;
  }
  .ticket-btn a.line2 {
    padding-top: 15px;
  }
  .ticket-btn a.line3 {
    padding-top: 2px;
  }
  .ticket-btn a.line2 span {
    font-size: 14px;
  }
  .ticket-btn a.line3 span {
    font-size: 14px;
  }
  .ticket-btn a::after {
    right: 8px;
    width: 20px;
    height: 20px;
  }
  
    .ticket-btn2 {
    height: 70px;
    border-radius: 5px;
    margin: 20px auto;
  }
  .ticket-btn2:first-child {
    margin-top: 40px;
  }
  .ticket-btn2 a {
    font-size: 18px;
    padding-top: 25px;
  }
  .ticket-btn2 a.line2 {
    padding-top: 15px;
  }
  .ticket-btn2 a.line3 {
    padding-top: 2px;
  }
  .ticket-btn2 a.line2 span {
    font-size: 14px;
  }
  .ticket-btn2 a.line3 span {
    font-size: 14px;
  }
  .ticket-btn2 a::after {
    right: 8px;
    width: 20px;
    height: 20px;
  }

  /* guideline
	----------------------------------------------------------------- */
  .guideline-link {
    margin: 40px auto 0;
    padding: 20px;
    font-size: 18px;
  }
  .guideline-link p:after {
    height: 3px;
  }
  .guideline-link-btn a {
    font-size: 14px;
    padding-top: 18px;
  }
  .guideline-link-btn a::after {
    right: 8px;
    width: 20px;
    height: 20px;
  }

  /* information
	----------------------------------------------------------------- */
  .information-txt {
    font-size: 16px;
  }

  /* history
----------------------------------------------------------------- */
  .history {
    margin-top: 50px;
  }
  .history__title {
    margin-top: 40px;
  }
}

/* guideline
----------------------------------------------------------------- */
.guideline {
  margin-top: 160px;
}
.guideline .guideline-ttl {
  color: #333;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
}
.guideline .txt-area {
  color: #333;
  margin-bottom: 60px;
}
.guideline h2 {
  color: #fff;
  text-align: center;
  background: #333;
  padding: 10px 20px;
  margin-bottom: 20px;
}
.guideline h3 {
  color: #333;
  font-weight: 700;
  text-align: left;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #333;
}
.guideline .txt-area p {
  margin-bottom: 20px;
}
.guideline .txt-area p:last-child {
  margin-bottom: 0;
}
.guideline .txt-area ul,
.guideline .txt-area li {
  padding: 0;
  margin: 0;
}
.guideline .txt-area li {
  margin-left: 1.4em;
  margin-bottom: 10px;
}
.guideline .txt-area li:last-child {
  margin-bottom: 0;
}
.guideline .txt-area ul ~ p {
  margin-top: 10px;
}
.guideline .txt-area a {
  color: #138ba0;
}
@media screen and (max-width: 599px) {
  .guideline {
    margin-top: 90px;
  }
  .guideline .guideline-ttl {
    font-size: 30px;
    margin-bottom: 40px;
  }
  .guideline .txt-area {
    margin-bottom: 40px;
  }
  .guideline h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .guideline h3 {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .guideline .txt-area p {
    margin-bottom: 10px;
  }

  
}

/* sponsor
----------------------------------------------------------------- */

.bg-white {
  background-color: #fff;
}
.bg-white .sec-ttl,
.bg-white .sec-ttl span {
  color: #000;
}
.sponsor-img img {
  max-width: 200px;
  margin: 0 auto;
}

/* example
----------------------------------------------------------------- */
.example {
  font-size: 0.8em;
  vertical-align: top;
}
