@charset "UTF-8";
/* CSS Document */


/* ////////////////////////////////////////////////////////////////////////////////

	Common

//////////////////////////////////////////////////////////////////////////////// */
@font-face {
  font-family: 'sns_ico';
  src:
    url('../fonts/sns_ico.ttf?z7sza2') format('truetype'),
    url('../fonts/sns_ico.woff?z7sza2') format('woff'),
    url('../fonts/sns_ico.svg?z7sza2#sns_ico') format('svg');
  font-weight: normal;
  font-style: normal;
}

i.snsIcon {
  font-family: 'sns_ico' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

	color: #000;
}

.icon-search:before { content: "\e908";}
.icon-arrow1_left:before { content: "\e90c";}
.icon-arrow1_bottom:before { content: "\e90d";}
.icon-arrow1_right:before { content: "\e90e";}
.icon-arrow1_top:before { content: "\e90f";}
.icon-arrow2_left:before { content: "\e910";}
.icon-arrow2_bottom:before { content: "\e911";}
.icon-arrow2_right:before { content: "\e912";}
.icon-arrow2_top:before { content: "\e913";}
.icon-link:before { content: "\e914";}
.icon-note:before { content: "\e915";}
.icon-ap:before { content: "\e900";}
.icon-blo:before { content: "\e901";}
.icon-fb:before { content: "\e902";}
.icon-hp:before { content: "\e903";}
.icon-in:before { content: "\e904";}
.icon-line:before { content: "\e905";}
.icon-spo:before { content: "\e906";}
.icon-tt:before { content: "\e907";}
.icon-yt:before { content: "\e909";}
.icon-x:before { content: "\e90a";}
.icon-wb:before { content: "\e90b";}
.icon-arrow3_top:before { content: "\ea3a";}
.icon-arrow3_right:before { content: "\ea3c";}
.icon-arrow3_bottom:before { content: "\ea3e";}
.icon-arrow3_left:before { content: "\ea40";}


html {
/*	scroll-behavior: smooth;*/
}
body {
  font-family: "Noto Sans JP", sans-serif;
	font-size: min(3.2vw, 14px);
  font-optical-sizing: auto;
	line-height: 1.8;
  letter-spacing: 0.06em;
	-webkit-text-size-adjust: 100%;
  background: url("../images/main_bg.jpg") repeat center center;
  background-size: 1439px;
}

img {
	max-width: 100%;
	height: auto;
}
ul { list-style: none;}

.anim {
	opacity: 0;
	transition: all .6s ease-out;
}
.anim.on {
	opacity: 1;
}

section {
  padding: min(10vw, 80px) 0;
}
section h2 {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: min(10vw, 80px);
  line-height: 1;
  margin-bottom: min(8vw, 60px);
}

.contentWrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 min(6vw, 60px);
}

.noteTxtBox {
  margin-top: min(8vw, 60px);
  border: #ff0000 solid 2px;
  padding: min(4vw, 20px);
}
.noteTxtBox h4 {
  font-size: min(3.6vw, 18px);
  font-weight: bold;
}
.noteTxtBox a {
  color: #ff0000;
  font-weight: bold;
  text-decoration: underline;
}

@media screen and (min-width: 821px) {

	.sp { display: none !important;}

	a { transition: all 0.3s ease-out;}
	a:hover { opacity: 0.5;}

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

	.pc { display: none !important;}

}



/* ////////////////////////////////////////////////////////////////////////////////

	Header

//////////////////////////////////////////////////////////////////////////////// */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: min(4vw, 30px);
  z-index: 1000;
}
header h1 {
  width: min(32vw, 220px);
}
header .navWrap {
  background-color: rgba(255,255,255,0.80);
  display: flex;
  align-items: center;
  gap: min(4vw, 25px);
  padding: min(1.5vw, 10px) min(4vw, 30px) min(1.5vw, 10px) min(3vw, 30px);
  border-radius: 100px;
}
header .navWrap ul {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: min(3.6vw, 18px);
  display: flex;
  align-items: center;
  gap: min(4vw, 20px);
}
header .navWrap ul li a {
  color: #000;
  text-decoration: none;
}

header .navWrap .lang {
	border: #000 solid 1px;
	border-radius: 80px;
  position: relative;
}
header .navWrap .lang a.langCurrent {
	display: block;
	font-size: min(3.2vw, 14px);
	font-weight: 400;
  padding: 3px min(5vw, 25px);
	position: relative;
  color: #000;
  text-decoration: none;
}

header .navWrap .lang .langSelect {
	display: none;
  position: absolute;
  top: 115%;
  left: 0;
  width: 100%;
  border-radius: min(1vw, 5px);
  overflow: hidden;
}
header .navWrap .lang .langSelect a {
  display: block;
  text-decoration: none;
	text-align: center;
	padding: 3px;
	font-size: 12px;
	background-color: #fff;
	color: #000;
	margin-top: 1px;
}


@media screen and (min-width: 821px) {

	#menuButton {
    display: none;
  }
  header .navWrap .gnav {
    display: block !important;
  }

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

  header .navWrap .gnav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100svh;
    background: rgba(0,0,0,0.8);
  }

  header .navWrap ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: min(6.8vw, 28px);
  }
  header .navWrap ul li a {
    color: #fff;
  }

  #menuButton {
    display: block;
    width: min(10vw, 40px);
    height: min(10vw, 40px);
    z-index: 9999;
    position: relative;
  }
  #menuButton span {
    display: block;
    background: #000;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    transition: all 0.4s;
  }
  #menuButton span:nth-child(1) { transform: translateY(-350%) rotate(0deg);}
  #menuButton span:nth-child(2) { transform: translateY(250%) rotate(0deg);}
  #menuButton span:nth-child(3) { transform: translateY(-50%);}
  #menuButton.active span {
    background: #fff;
  }
  #menuButton.active span:nth-child(1) { transform: translateY(-50%) rotate(45deg);}
  #menuButton.active span:nth-child(2) { transform: translateY(-50%) rotate(-45deg);}
  #menuButton.active span:nth-child(3) { opacity: 0;}



}


/* ////////////////////////////////////////////////////////////////////////////////

	Footer

//////////////////////////////////////////////////////////////////////////////// */
footer {
  padding: min(16vw, 160px) min(6vw, 60px) min(8vw, 80px);
  position: relative;
  border-top: #000 solid 1px;
  margin-top: min(16vw, 160px);
}
footer::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -45%);
  width: min(24vw, 200px);
  background:  url("../images/ftr_logo.png") no-repeat center center;
  background-size: contain;
  aspect-ratio: 452/440;
}

footer .ftrBnr {
  display: flex;
  justify-content: center;
  margin-bottom: min(8vw, 60px);
}
footer .ftrBnr li {
  padding: 0 min(4vw, 40px);
  display: flex;
  justify-content: center;
  align-items: center;
  height: min(8vw, 54px);
  max-width: 320px;
  line-height: 0;
}
footer .ftrBnr li + li {
  border-left: #000 solid 1px;
}
footer .ftrBnr li a {
  display: block;
  width: 100%;
  height: 100%;
}
footer .ftrBnr li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

footer .copyright {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  text-align: center;
  font-size: min(2.8vw, 12px);
}


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


  footer .ftrBnr li {
    height: min(6vw, 54px);
    max-width: 31vw;
  }

}



/* ////////////////////////////////////////////////////////////////////////////////

	Top page

//////////////////////////////////////////////////////////////////////////////// */
#mainVisual {
  padding: min(2vw, 20px);
  position: relative;
}
#mainVisual ul {
  border-radius: min(2vw, 10px);
  overflow: hidden;
  line-height: 0;
}
#mainVisual ul li {
  position: relative;
}
#mainVisual ul li img {
  width: 100%;
}

#mainVisual .mvBtn {
  position: absolute;
  bottom: min(6vw, 40px);
  right: min(6vw, 40px);
  width: 42%;
  height: 23%;
  display: flex;
  justify-content: space-between;
}
#mainVisual .mvBtn > div {
  width: 48%;
  border-radius: min(2vw, 10px);
  overflow: hidden;
}
#mainVisual .mvBtn > div a {
  display: block;
  height: 100%;
  padding: 10% 8%;
  text-decoration: none;
}
#mainVisual .mvBtn .mvBtnNews a {
  background-color: #fff;
  color: #000;
}
#mainVisual .mvBtn .mvBtnTickets a {
  background-color: #2a2a2a;
  color: #b4f300;
}

#mainVisual .mvBtn .ttl {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 2.8vw;
  line-height: 1;
  margin-bottom: 0.8vw;
  position: relative;
}
#mainVisual .mvBtn .ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #b4f300;
  width: 3vw;
  height: 0.8em;
  border-radius: 0.3vw;
}
#mainVisual .mvBtn .mvBtnNews .ttl::before {
  background-color: #000;
}
#mainVisual .mvBtn .ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.2vw;
  transform: translateY(-50%) rotate(45deg);
  width: 0.8vw;
  aspect-ratio: 1/1;
  border-top: #000 solid 2px;
  border-right: #000 solid 2px;
}
#mainVisual .mvBtn .mvBtnNews .ttl::after {
  border-top: #fff solid 2px;
  border-right: #fff solid 2px;
}
#mainVisual .mvBtn .date {
  font-size: 0.9vw;
}
#mainVisual .mvBtn p {
  font-size: 1vw;
  line-height: 1.7;
}


#mainVisual .mvSns {
	position: absolute;
	top: 43%;
	right: 40px;
	display: flex;
	flex-direction: column;
	transform: translateY(-50%);
}
#mainVisual .mvSns a {
	text-decoration: none;
	color: #fff;
	font-size: 24px;
	line-height: 2;
}
#mainVisual .mvSns a i {
  color: #fff;
}


#news .contentWrap {
  position: relative;
}
#news h2 {
  margin-bottom: min(4vw, 20px);
}
#news .newsWrap {
  width: 65%;
  margin-left: auto;
}
#news .newsSlide li {
  padding: min(3vw, 15px) 0;
  position: relative;
  border-bottom: #898989 solid 1px;
  display: flex;
}
#news .newsSlide li > p {
  width: 120px;
  line-height: 1.9;
}
#news .newsSlide li > h3 {
  width: calc(100% - 120px);
  font-size: min(3.4vw, 16px);
}
#news .newsSlide li > h3 a {
  color: #000;
  text-decoration: none;
}

#news .newsSlide li .title {
  position: absolute;
  bottom: 0;
  left: min(2vw, 10px);
  width: calc(100% - min(4vw, 20px));
  background: linear-gradient(0deg, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0) 100%);
  color: #fff;
  padding: min(1vw, 5px) min(2vw, 10px);
  line-height: 1.4;
}
#news .newsSlide li .title p {
  font-size: min(2.8vw, 10px);
}
#news .newsSlide li .title h3 {
  font-size: min(3.1vw, 13px);
}

#news .moreBtn {
  display: block;
  position: absolute;
  bottom: 0;
  left: min(6vw, 60px);

  background-color: #000;
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: min(1vw, 5px) min(6vw, 30px);
  border-radius: min(1vw, 5px);
}


.aboutWrap {
  display: flex;
  justify-content: space-between;
}
.aboutWrap .aboutTxt {
  width: 46%;
}
.aboutWrap .aboutTxt p {
  font-size: min(3.4vw, 16px);
  font-weight: bold;
  line-height: 2;
}
.aboutWrap .aboutTxt p + p {
  margin-top: 1.6em;
}
.aboutWrap .aboutLogo {
  width: 46%;
}


.reserveAcc {
  border: #000 solid 2px;
  margin-bottom: min(6vw, 30px);
}
.reserveAcc dt {
  padding: min(6vw, 30px) min(20vw, 95px) min(6vw, 30px) min(5vw, 25px);
  font-size: min(4.2vw, 24px);
  font-weight: 500;
  position: relative;
  cursor: pointer;
}
.reserveAcc dt span {
  position: absolute;
  top: 50%;
  right: min(5vw, 25px);
  width: 50px;
  aspect-ratio: 77/55;
  background-color: #000;
  transform: translateY(-50%);
  border-radius: min(1vw, 5px);
}
.reserveAcc dt span::before,
.reserveAcc dt span::after {
  content: "";
  display: block;
  background-color: #fff;
  width: 25%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.reserveAcc dt span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: all 0.3s ease-out;
}
.reserveAcc dt.on span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.reserveAcc dd {
  padding: 0 min(5vw, 25px) min(5vw, 25px);
  display: none;
}

.ticketTtl {
  font-size: min(4.4vw, 26px);
  margin-bottom: min(6vw, 30px);
}
.ticketTtl span {
  font-size: min(3.4vw, 16px);
}

.ticketList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: min(4vw, 20px) calc((100% - 33% * 3) / 2);
  margin-bottom: min(6vw, 30px);

}
.ticketList li {
  position: relative;
  aspect-ratio: 1288/574;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(4vw, 20px);
  color: #fff;
  padding: min(2vw, 30px) min(4vw, 30px);
}
.ticketList li.type01 {
  width: 48%;
  background: url("../images/ticket_bg01.png") no-repeat center center;
  background-size: contain;
}
.ticketList li.type02 {
  width: 48%;
  background: url("../images/ticket_bg02.png") no-repeat center center;
  background-size: contain;
}
.ticketList li.type03 {
  width: 100%;
  aspect-ratio: 1322/284;
  background: url("../images/ticket_bg03.png") no-repeat center center;
  background-size: contain;
}

.ticketList li .type {
  font-size: min(3.8vw, 20px);
  font-weight: 600;
  font-feature-settings: "palt";
}
.ticketList li .price {
  font-family: "Jost", sans-serif;
  font-size: min(9.4vw, 52px);
  font-weight: 600;
  line-height: 1.4;
}
.ticketList li .price span {
  font-size: 0.6em;
}
.ticketList li .note {
  font-size: min(2.9vw, 11px);
  font-feature-settings: "palt";
  line-height: 1.6;
}

.ticketList li .ticketTxt {
  text-align: center;
}

.ticketList li .ticketImg {
  line-height: 0;
}
.ticketList li .ticketBuy {
  width: fit-content;
}
.ticketList li .ticketBuy a {
  display: block;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  text-align: center;
  width: 100%;
  padding: min(2vw, 10px) min(4vw, 20px);
  border-radius: min(1vw, 5px);
  white-space: nowrap;
}

#tickets .contentWrap > .note {
  font-size: min(3vw, 12px);
}

/*
.ticketBuy a {
  display: block;
  width: fit-content;
  color: #fff;
  text-decoration: none;
  background-color: #000;
  margin: 0 auto;
  font-size: min(3.8vw, 18px);
  padding: min(3vw, 10px) min(8vw, 40px);
  border-radius: min(1vw, 5px);
}
*/

.artistList {
  display: flex;
  flex-wrap: wrap;
  gap: min(6vw, 30px) calc((100% - 31% * 3) / 2);
}
.artistList li {
  width: 31%;
  position: relative;
}
.artistList li.opening::before {
  content: "OPENING ACT";
  display: block;
  position: absolute;
  top: -1.2em;
  left: -1em;
  font-family: "Jost", sans-serif;
  font-weight: 800;
  font-size: min(3.2vw, 14px);
  padding: 0.5em 0.7em;
  border-radius: min(1vw, 5px);
  z-index: 2;
}
.artistList li.opening.day1::before {
  background-color: #70cf50;
}
.artistList li.opening.day2::before {
  background-color: #38b1aa;
}
.artistList li .thumb {
  width: 100%;
  aspect-ratio: 422/301;
  line-height: 0;
  border-radius: min(2vw, 10px);
  overflow: hidden;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.5);
  position: relative;
}
.artistList li .thumb.cancel::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.80) url("../images/cancel_bnr.png") no-repeat center center / 60%;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
}
.artistList li .thumb a {
  display: block;
  width: 100%;
  height: 100%;
}
.artistList li .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.artistList li .name {
  text-align: center;
  font-size: min(3.8vw, 24px);
  font-weight: 800;
  margin-top: 0.5em;
}
.artistList li .alert {
  width: 100%;
  color: #ff0000;
  font-size: min(3.2vw, 14px);
  font-weight: bold;
  text-align: center;
}


#movAndPlaylist {
  display: flex;
  max-width: 1320px;
  margin: 0 auto;
}
#movAndPlaylist > div {
  width: 50%;
}
#movie {
  background-color: #fff;
  padding: min(10vw, 80px) min(6vw, 60px);
}
#movie .movieWrap {
  width: 100%;
  aspect-ratio: 1/1;
/*  background-color: #000;*/
  line-height: 0;
}
#movie .movieWrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#playlist {
  background-color: #2d2d2b;
  padding: min(10vw, 80px) min(6vw, 60px);
  color: #fff;
}
#playlist h2 {
  color: #fff;
}

#movAndPlaylist .comingsoon {
  text-align: center;
  font-size: min(4.2vw, 24px);
  font-family: "Jost", sans-serif;
  padding: min(8vw, 100px) 0;
}

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

  #mainVisual .mvSns {
    display: none;
  }

  #mainVisual .mvBtn {
    flex-direction: column;
    height: auto;
    gap: min(2vw, 10px);
  }
  #mainVisual .mvBtn > div {
    width: 100%;
    height: 47%;
  }
  #mainVisual .mvBtn .ttl {
    font-size: 6.3vw;
  }
  #mainVisual .mvBtn .ttl::before {
    width: 6vw;
  }
  #mainVisual .mvBtn .ttl::after {
    right: 2.7vw;
    width: 1.4vw;
  }
  #mainVisual .mvBtn > div a {
    padding: 7% 8%;
  }
  #mainVisual .mvBtn .date {
    font-size: 2.2vw;
    margin-bottom: 0.3em;
  }
  #mainVisual .mvBtn p {
    font-size: 2.4vw;
    line-height: 1.5;
    letter-spacing: 0;
  }


  #news .contentWrap {
    flex-direction: column;
  }
  #news .newsWrap {
    width: 100%;
    margin-bottom: min(6vw, 30px);
  }
  #news .moreBtn {
    position: static;
    width: fit-content;
    margin-left: auto;
  }

  .ticketTtl span {
    display: block;
    font-feature-settings: "palt";
  }

  .aboutWrap {
    flex-direction: column;
  }
  .aboutWrap .aboutTxt {
    width: 100%;
  }
  .aboutWrap .aboutLogo {
    width: 76%;
    margin: min(8vw, 60px) auto 0;
  }

  .ticketList li {
    position: relative;
  }
  .ticketList li.type01,
  .ticketList li.type02,
  .ticketList li.type03 {
    width: 100%;
  }

  .ticketList li .ticketTxt {
    width: 100%;
  }

  .ticketList li.type03 {
    background: url(../images/ticket_bg03_sp.png) no-repeat center center;
    background-size: contain;
    aspect-ratio: 1288 / 574;
  }

  .ticketList li .price {
    line-height: 0.8;
    margin: min(3vw, 15px) 0;
  }

  .ticketList li .ticketBuy {
    position: absolute;
    top: 50%;
    right: min(4vw, 30px);
    transform: translateY(-50%);
  }

  .artistList {
    gap: min(6vw, 30px) 0;
    justify-content: space-between;
}
  .artistList li {
    width: 47%;
  }


  #movAndPlaylist {
    flex-direction: column;
  }
  #movAndPlaylist > div {
    width: 100%;
  }
  
  #movie .movieWrap {
    aspect-ratio: auto;
  }

}




/* ////////////////////////////////////////////////////////////////////////////////

	Lower page

//////////////////////////////////////////////////////////////////////////////// */

#pageHead {
  padding: min(2vw, 20px);
}
#pageHead h2 {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: min(8.6vw, 64px);
  background: url("../images/page_head_bg.jpg") no-repeat center center;
  background-size: cover;
  border-radius: min(3vw, 15px);
  text-align: center;
  color: #d3d0cb;
  padding: min(20vw, 180px) min(6vw, 60px);
  text-shadow: -2px 3px 7px rgba(0, 0, 0, 0.8);
}

main {
  max-width: 1320px;
  margin: 0 auto;
  padding: min(8vw, 80px) min(5vw, 60px);
}

.newsList {

}
.newsList li {
  padding: min(3vw, 15px) 0;
  position: relative;
  border-bottom: #898989 solid 1px;
  display: flex;
}
/*
.newsList li .thumb {
  width: 100%;
  aspect-ratio: 422/301;
  line-height: 0;
  border-radius: min(2vw, 10px);
  overflow: hidden;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.5);
  margin-bottom: min(3vw, 15px);
}
.newsList li .thumb a {
  display: block;
  width: 100%;
  height: 100%;
}
.newsList li .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
*/
.newsList li p {
  font-size: min(3vw, 12px);
  width: 120px;
  line-height: 1.9;
}
.newsList li h3 {
  width: calc(100% - 120px);
  font-size: min(3.4vw, 16px);
}
.newsList li a {
  color: #000;
  text-decoration: none;
}



.pagination {
	display: flex;
	justify-content: center;
	padding: 100px 0 0;
	position: relative;
}
.pagination a {
	color: #000;
	text-decoration: none;
}
.pagination .page-numbers {
	width: 48px;
	line-height: 32px;
  font-family: "Oswald", sans-serif;
	font-size: 16px;
	font-weight: 500;
	border-radius: min(1vw, 5px);
	text-align: center;
	margin: 0 2px;
  box-sizing: border-box;
}
.pagination .page-numbers.current {
	color: #000;
	border: #000 solid 1px;
}

.pagination .page-numbers.next,
.pagination .page-numbers.prev {
	position: relative;
	text-indent: -9999px;
  background-color: #000;
	border: #000 solid 1px;
}
.pagination .page-numbers.next::before {
	content: "";
	display: block;
	width: 20%;
	height: 20%;
	position: absolute;
	top: 50%;
  left: 47.5%;
	transform: translate(-50%, -50%) rotate(45deg);
	border-top: #fff solid 1px;
	border-right: #fff solid 1px;
}
.pagination .page-numbers.prev::before {
	content: "";
	display: block;
	width: 20%;
	height: 20%;
	position: absolute;
	top: 50%;
  left: 52.5%;
	transform: translate(-50%, -50%) rotate(45deg);
	border-left: #fff solid 1px;
	border-bottom: #fff solid 1px;
}

.detailHead {
  padding-top: min(20vw, 100px);
  margin-bottom: min(8vw, 60px);
}
.detailHead h3 {
  font-size: min(4.6vw, 28px);
  margin-bottom: min(1vw, 5px);
}

.detailBody p {
  margin-bottom: min(4vw, 20px);
}
.detailBody img {
  max-width: 720px;
  width: 100%;
  margin: min(6vw, 30px) auto;
  display: block;
}


.detailPaging {
  display: flex;
  justify-content: space-between;
  margin-top: min(14vw, 120px);
}
.detailPaging > div a {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  display: block;
  text-decoration: none;
  color: #000;
  font-size: min(3.4vw, 16px);
}
.detailPaging .backBtn a {
  border: #000 solid 1px;
  padding: min(1vw, 5px) min(4vw, 20px);
  border-radius: min(1vw, 5px);
}
.detailPaging .prevBtn a,
.detailPaging .nextBtn a {
  display: flex;
  gap: min(3vw, 15px);
  align-items: center;
  position: relative;
}
.detailPaging .prevBtn a::before,
.detailPaging .nextBtn a::after {
  content: "";
  display: block;
  width: 3em;
  aspect-ratio: 2/1.4;
  background-color: #000;
  border-radius: min(1vw, 5px);
}

.detailPaging .prevBtn a::after,
.detailPaging .nextBtn a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 0.5em;
  aspect-ratio: 1/1;
  transform: translateY(-50%) rotate(45deg);
}
.detailPaging .prevBtn a::after {
  border-bottom: #fff solid 2px;
  border-left: #fff solid 2px;
  left: 1.3em;
}
.detailPaging .nextBtn a::before {
  border-top: #fff solid 2px;
  border-right: #fff solid 2px;
  right: 1.3em;
}




.infoBlock {
  padding: min(10vw, 80px) 0;
}
.infoBlock:nth-child(1) {
  padding-top: 0;
}
.infoBlock + .infoBlock {
  border-top: #000 solid 1px;
}
.infoBlock h3 {
  text-align: center;
  font-size: min(6.2vw, 34px);
  margin-bottom: min(6vw, 30px);
}
.infoBlock > .note {
  font-size: min(3vw, 12px);
}
.infoBlock .ticketTtl {
  font-weight: bold;
}
.infoBlock .ticketTtl span {
  font-weight: normal;
}

.pay {
  display: flex;
  margin-bottom: min(6vw, 30px);
}
.pay dt {
  background-color: #e4ff00;
  padding: min(2vw, 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  font-size: min(3.4vw, 16px);
  font-weight: bold;
}
.pay dd {
  background-color: #fff;
  width: calc(100% - 220px);
  padding: min(4vw, 20px);
  display: flex;
  align-items: center;
  gap: min(5vw, 20px);
  font-weight: bold;
}
.pay dd > div {
  display: flex;
  align-items: center;
  gap: min(2vw, 20px);
}
.pay dd > div ul {
  display: flex;
  gap: min(3vw, 15px);
}
.pay dd > div ul li {
  line-height: 0;
}
.pay dd > div ul li img {
  height: 40px;
  width: auto;
}

.btnList {
  display: flex;
  justify-content: center;
  gap: min(4vw, 30px);
  margin-top: min(8vw, 60px);
}
.btnList li {
  width: min(40vw, 320px);
}
.btnList li a {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(3vw, 15px);
  padding: min(4vw, 20px);
  border-radius: min(1vw, 5px);
  height: 100%;
}
.btnList li.buyBtn a {
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border: #000 solid 2px;
  font-size: min(3.4vw, 16px);
}
.btnList li.buyBtn a::after {
  content: "";
  display: block;
  background: url("../images/ico_blank.png") no-repeat center center;
  background-size: contain;
  width: 1em;
  aspect-ratio: 1/1;
}
.btnList li.yesBtn a {
  background-color: rgba(255,255,255,0.30);
  color: #000;
  text-decoration: none;
  border: #000 solid 2px;
  font-size: min(3.2vw, 14px);
}
.btnList li.yesBtn a span {
  display: block;
  background-color: #000;
  width: 2em;
  aspect-ratio: 41/29;
  border-radius: min(1vw, 5px);
  position: relative;
}
.btnList li.yesBtn a span::after {
  content: "";
  display: block;
  width: 30%;
  aspect-ratio: 1/1;
  border-right: #fff solid 2px;
  border-bottom: #fff solid 2px;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.yesWrap {
  max-width: 960px;
  margin: min(10vw, 80px) auto 0;
}
.yesWrap h4 {
  text-align: center;
  margin-bottom: min(6vw, 30px);
  font-size: min(4.2vw, 24px);
}
.yesBody {
  display: flex;
  justify-content: space-between;
}
.yesSlide {
  width: 38%;
}
.yesSlide .slick-dots li button {
  background-color: #6d6d6d;
}
.yesSlide .slick-dots li.slick-active button {
  background-color: #e4ff00;
}

.stepList {
  width: 55%;
}
.stepList li {
  padding: min(3vw, 20px) min(6vw, 30px);
  background-color: rgba(255,255,255,0.60);
}
.stepList li.current {
  background-color: #e4ff00;
}
.stepList li + li {
  margin-top: min(3vw, 15px);
}
.stepList li h5 {
  font-size: min(3.8vw, 18px);
  line-height: 1.4;
  margin-bottom: min(1vw, 5px);
}

.infoDate {
  display: flex;
  justify-content: center;
  gap: 5%;
}
.infoDate li {
  width: 40%;
  text-align: center;
}
.infoDate li div {
  line-height: 0;
  margin-bottom: min(3vw, 15px);
}
.infoDate li p {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: min(3.8vw, 20px);
}

.infoAccess {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.infoAccess .txt {
  width: 46%;
}
.infoAccess .txt h4 {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: min(5.2vw, 36px);
  line-height: 1.4;
  margin-bottom: min(3vw, 15px);
}
.infoAccess .txt h5 {
  margin-top: min(7vw, 40px);
  font-size: min(3.6vw, 18px);
  margin-bottom: min(1vw, 5px);
}
.infoAccess .map {
  width: 50%;
}
.infoAccess .map iframe {
  width: 100%;
}


.infoAbout {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.infoAbout .infoLogo {
  width: 45%;
  line-height: 0;
}
.infoAbout .infoLogo img {
  margin: 0 auto;
  width: 100%;
  max-width: 360px;
  display: block;
}
.infoAbout .txt {
  width: 50%;
}
.infoAbout .txt p + p {
  margin-top: min(4vw, 20px);
}


.infoNote {
  background-color: rgba(255,255,255,0.40);
  padding: min(6vw, 40px);
}
.infoNote h4 {
  font-size: min(3.4vw, 16px);
  margin-bottom: min(1vw, 5px);
}
.infoNote ul {
  margin-bottom: min(6vw, 40px);
  list-style: disc;
  padding-left: 1.4em;
}

.infoBlock > h4 {
  text-align: center;
  font-size: min(4vw, 20px);
  margin-bottom: min(6vw, 30px);
}


.faqList dt {
  background-color: #4f4f4f;
  padding: min(4vw, 20px) min(12vw, 70px);
  color: #fff;
  font-size: min(3.4vw, 16px);
  position: relative;
}
.faqList dt::before {
  content: "Q.";
  display: block;
  font-family: "Jost", sans-serif;
  position: absolute;
  top: min(7.2vw, 36px);
  left: min(4.5vw, 30px);
  transform: translateY(-50%);
  font-size: min(4.6vw, 28px);
  line-height: 1.2;
}
.faqList dt span {
  position: absolute;
  top: 50%;
  right: min(4vw, 20px);
  width: min(4vw, 20px);
  aspect-ratio: 1/1;
}
.faqList dt span::before,
.faqList dt span::after {
  content: "";
  display: block;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.faqList dt span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: all 0.3s ease-out;
}
.faqList dt.on span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faqList dd + dt {
  margin-top: min(3vw, 20px);
}
.faqList dd {
  display: none;
  background-color: #fff;
}
.faqList dd .answerWrap {
  padding: min(5vw, 30px) min(6vw, 30px) min(5vw, 30px) min(12vw, 70px);
  position: relative;
}
.faqList dd .answerWrap::before {
  content: "A.";
  display: block;
  font-family: "Jost", sans-serif;
  position: absolute;
  top: min(8vw, 42px);
  left: min(4.5vw, 30px);
  transform: translateY(-50%);
  font-size: min(4.6vw, 28px);
  line-height: 1.2;
}


.subNav {
  display: flex;
  gap: calc((100% - 24% * 4) / 3);
  margin-bottom: min(6vw, 30px);
}
.subNav.center {
  justify-content: center;
}
.subNav li {
  width: 24%;
}
.subNav.twoBtn {
  display: flex;
  gap: 2%;
  justify-content: center;
}
.subNav.twoBtn li {
  width: 32%;
}
.subNav li a {
  display: block;
  text-align: center;
  border: #000 solid 2px;
  border-radius: min(1vw, 5px);
  background-color: #fff;
  color: #000;
  text-decoration: none;
  padding: min(2vw, 10px) min(10vw, 35px) min(2vw, 10px) min(2vw, 10px);
  position: relative;
  font-size: min(3.4vw, 16px);
  font-weight: bold;
  line-height: 1.5;
}
.subNav li a::after {
  content: "";
  display: block;
  width: min(6vw, 30px);
  aspect-ratio: 4/3;
  background-color: #000;
  position: absolute;
  top: 50%;
  right: min(2vw, 10px);
  transform: translateY(-50%);
  border-radius: min(1vw, 5px);
}
.subNav li a::before {
  content: "";
  position: absolute;
  top: 47%;
  right: min(3.9vw, 20px);
  width: min(4.8vw, 8px);
  aspect-ratio: 1/1;
  border-right: #fff solid 2px;
  border-bottom: #fff solid 2px;
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;
}
.subNav.tabChange li a {
  padding: min(2vw, 10px);
}
.subNav.tabChange li a.current {
  background-color: #000;
  color: #fff;
}
.subNav.tabChange li a::after,
.subNav.tabChange li a::before {
  display: none;
}


.lineupWrap {
  padding: min(8vw, 60px) 0;
}
.lineupWrap h3 {
  width: min(30vw, 280px);
  line-height: 0;
  margin-bottom: min(6vw, 50px);
}

.lineuplist2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: min(2vw, 30px) 0;
}
.lineuplist2 > li {
  width: 48%;
  position: relative;
}
.lineuplist2 > li:nth-child(even) {
  padding-top: min(8vw, 100px);
}
.lineuplist2 li.opening::before {
  content: "OPENING ACT";
  display: block;
  position: absolute;
  top: -1.2em;
  left: -1em;
  font-family: "Jost", sans-serif;
  font-weight: 800;
  font-size: min(2.6vw, 14px);
  padding: 0.5em 0.7em;
  border-radius: min(1vw, 5px);
  z-index: 2;
}
.lineuplist2 > li:nth-child(even).opening::before {
  top: calc(100px - 1.2em);
}
.lineuplist2 li.opening.day1::before {
  background-color: #70cf50;
}
.lineuplist2 li.opening.day2::before {
  background-color: #38b1aa;
}
.lineuplist2 li .thumb {
  width: 100%;
  aspect-ratio: 422/301;
  line-height: 0;
  border-radius: min(2vw, 10px);
  overflow: hidden;
  position: relative;
}
.lineuplist2 li .thumb.cancel::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.80) url("../images/cancel_bnr.png") no-repeat center center / 60%;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
}
.lineuplist2 li .thumb a {
  display: block;
  width: 100%;
  height: 100%;
}
.lineuplist2 li .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lineuplist2 li .nameWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1em;
  flex-wrap: wrap;
}
.lineuplist2 li .name {
  font-size: min(4.2vw, 24px);
  font-weight: 900;
  line-height: 1.6;
}
.lineuplist2 li .nameWrap .alert {
  width: 100%;
  color: #ff0000;
  font-size: min(3.2vw, 14px);
  font-weight: bold;
}

.lineuplist2 li .artistSns {
  display: flex;
  gap: min(2vw, 20px);
}
.lineuplist2 li .artistSns li a {
  color: #000;
  text-decoration: none;
  font-size: min(4.2vw, 24px);
}

.ttWrap {
  max-width: 980px;
  margin: min(10vw, 80px) auto 0;
}


.accessWrap h3 {
  text-align: center;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: min(4.6vw, 48px);
  line-height: 1.4;
}
.accessWrap .address {
  text-align: center;
  font-size: min(3.6vw, 18px);
}
.accessWrap .flow {
  max-width: 780px;
  line-height: 0;
  margin: min(8vw, 60px) auto;
}
.accessWrap .map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 0.6;
  margin-bottom: min(4vw, 20px);
}
.accessWrap p a {
  color: #000;
  text-decoration: underline;
}

@media screen and (min-width: 821px) {

	.pagination a:hover {
		color: #fff;
		background-color: #000;
		opacity: 1;
	}
	.pagination .page-numbers.next:hover,
  .pagination .page-numbers.prev:hover {
    background-color: transparent;
  }
	.pagination .page-numbers.next::before,
	.pagination .page-numbers.prev::before {
		transition: all .3s ease-out;
	}
	.pagination .page-numbers.next:hover::before {
		border-top: #000 solid 1px;
    border-right: #000 solid 1px;
	}
	.pagination .page-numbers.prev:hover::before {
		border-left: #000 solid 1px;
    border-bottom: #000 solid 1px;
	}

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

  .subNav {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: min(2vw, 10px) 0;
  }
  .subNav.center {
    gap: min(2vw, 10px) 2%;
  }
  .subNav.twoBtn li {
    width: 48%;
  }
  .subNav li {
    width: 49%;
  }

  .newsList {
    gap: min(8vw, 50px) 0;
    justify-content: space-between;
  }
  .newsList li {
    width: 47%;
  }

  .pagination {
		padding: min(15vw, 80px) 0;
	}
	.pagination::before {
		height: min(10vw, 60px);
	}
	.pagination .page-numbers {
		width: min(8vw, 40px);
		line-height: min(8vw, 40px);
		font-size: min(3.2vw, 16px);
    margin: 0 min(1.4vw, 10px);
	}

  
  .lineuplist2 > li:nth-child(even).opening::before {
    top: calc(8vw - 2.2em);
  }

  .infoDate li {
    width: 47%;
  }

  .infoAccess {
    flex-direction: column;
    gap: min(8vw, 60px);
  }
  .infoAccess .txt {
    width: 100%;
  }
  .infoAccess .map {
    width: 100%;
  }
  .infoAbout .infoLogo {
    width: 70%;
  }
  .infoAbout .txt {
    width: 100%;
  }

  .infoAbout {
    flex-direction: column;
    gap: min(8vw, 60px);
  }


  .lineuplist2 li .nameWrap {
    flex-direction: column;
    margin-top: 0.5em;
  }


  .pay {
    flex-direction: column;
  }
  .pay dt {
    width: 100%;
  }
  .pay dd {
    width: 100%;
    flex-direction: column;
  }
  .pay dd > div {
    flex-direction: column;
  }
  .pay dd > div span {
    display: none;
  }

  .btnList {
    flex-direction: column;
    align-items: center;
  }
  .btnList li {
    width: min(70vw, 320px)
  }

  .yesBody {
    flex-direction: column;
    gap: min(6vw, 30px);
  }
  .yesSlide {
    width: 60%;
    margin: 0 auto;
  }
  .stepList {
    width: 100%;
  }
}


#notFound {
  padding-top: 0;
  text-align: center;
  font-size: min(4vw, 22px);
  font-weight: bold;
}
#notFound .backBtn {
  margin-top: min(8vw, 60px);
}
#notFound .backBtn a {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  display: block;
  text-decoration: none;
  color: #000;
  font-size: min(3.4vw, 16px);
  border: #000 solid 1px;
  padding: min(1vw, 5px) min(4vw, 20px);
  border-radius: min(1vw, 5px);
  width: fit-content;
  margin: 0 auto;
}



.detailBody .eyeCatch {
	line-height: 0;
	margin-bottom: 60px;
	border-radius: 10px;
	overflow: hidden;
}
.detailBody .eyeCatch img {
	width: 100%;
}
.detailBody p {
	font-size: 16px;
	margin-bottom: 30px;
	line-height: 2;
}
.detailBody a {
	color: #fff;
	text-decoration: underline;
	word-break: break-all;
}
.detailBody a:hover {
	text-decoration: none;
}

.detailBody ul {
  list-style: disc;
  padding-left: 1.4em;
  margin-bottom: 40px;
}
.detailBody ul li + li {
  margin-top: min(2vw, 10px);
}

.detailBody .newsBtnWrap {
	margin: 40px 0;
}

.detailBody .newsBtnWrap {
	margin: 40px 0;
}
.detailBody .newsBtnWrap a {
  text-align: center;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border: #000 solid 1px;
  border-radius: 8px;
  padding: 15px 40px;
  min-width: 200px;
  background-color: #000;
}
.detailBody .newsBtnWrap span {
  text-align: center;
  display: inline-block;
  color: #000;
  text-decoration: none;
  font-size: 16px;
  border: #ddd solid 1px;
  border-radius: 8px;
  padding: 15px 40px;
  min-width: 200px;
  background-color: #ddd;
}


.detailBody h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  margin-top: 60px;
}
.detailBody .newsLine + h4 {
  margin-top: 0;
}
.detailBody .newsLine {
  margin: min(7vw, 40px) 0;
  border-bottom: #fff solid 1px;
  height: 0;
}
.detailBody .profBtn {
	margin-top: 60px;
}
.detailBody  .profBtn a {
  display: block;
  border: #fff solid 2px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  padding: 10px;
  font-size: 16px;
  border-radius: 8px;
  width: 160px;
  margin: 0 auto;
}

.detailBody .newsInBtn {
	margin-top: 60px;
}
.detailBody  .newsInBtn a {
    display: block;
    border: #fff solid 2px;
    text-align: center;
    color: #fff;
    text-decoration: none;
	font-family: "Oswald", sans-serif;
    font-weight: 400;
    padding: 10px;
    font-size: 16px;
    border-radius: 8px;
    width: 160px;
    margin: 0 auto;
}
.detailBody figure {
	margin-bottom: 60px;
}
.detailBody figure figcaption {
	font-size: 14px;
	margin-top: 10px;
}
.detailBody .txtBox {
	background-color: rgba(0,0,0,0.3);
  padding: 20px;
  margin-bottom: 40px;
  backdrop-filter: blur(5px);
  transform: translateZ(0);
}
.detailBody .txtBox p {
  color: #fff;
}
.detailBody p:last-child {
	margin-bottom: 0;
}

.detailBody .newsGallery {
	display: flex;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}
.detailBody .newsGallery li {
    width: 25%;
	padding: 0 1%;
	margin-bottom: 20px;
	box-sizing: border-box;
}
.detailBody .newsGallery li + li {
  margin-top: 0;
}
.detailBody .newsGallery li div {
	position: relative;
	line-height: 0;
	background-color: #111;
  aspect-ratio: 100 / 66.7;
}
.detailBody .newsGallery li img {
	width: 100%;
	height: 100%;
	object-fit: contain;
  margin: 0;
}


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

  .detailBody {
		margin-bottom: min(14vw, 80px);
	}
	.detailBody .eyeCatch {
		margin-bottom: min(8vw, 60px);
		border-radius: 8px;
	}
	.detailBody p {
		font-size: min(3.4vw, 16px);
		margin-bottom: min(5vw, 25px);
		line-height: 1.8;
	}
	.detailBody p.iframeBox {
		position: relative;
	}
	.detailBody p.iframeBox iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

	.detailBody .newsBtnWrap {
		margin: min(8vw, 40px) 0;
		text-align: center;
	}
	.detailBody .newsBtnWrap a {
		font-size: min(3.6vw, 16px);
		padding: min(3vw, 15px);
		min-width: 60%;
	}
	.detailBody .newsBtnWrap span {
		font-size: min(3.6vw, 16px);
		padding: min(3vw, 15px);
		min-width: 60%;
	}

	.detailBody h4 {
		font-size: min(4vw, 20px);
		margin-bottom: min(6vw, 30px);
		margin-top: min(12vw, 60px);
	}

	.detailBody figure {
		margin-bottom: min(10vw, 60px);
	}
	.detailBody figure figcaption {
		font-size: min(2.8vw, 14px);
		margin-top: min(2vw, 10px);
	}

	.detailBody .txtBox {
		padding: min(4vw, 20px);
		margin-bottom: min(8vw, 40px);
	}
	.detailBody ul {
		margin-bottom: min(8vw, 40px);
	}

	#news .newsBody .newsGallery {
		justify-content: space-between;
	}
	#news .newsBody .newsGallery li {
		width: 48%;
		padding: 0;
		margin-bottom: min(4vw, 20px);
	}


	#news .newsBody .profBtn {
		margin-top: min(8vw, 60px);
	}
	#news .newsBody .profBtn a {
		padding: min(2vw, 10px);
		font-size: min(3.6vw, 16px);
		border-radius: 6px;
		width: 140px;
	}
	#news .newsBody .newsInBtn {
		margin-top: min(8vw, 60px);
	}
	#news .newsBody .newsInBtn a {
		padding: min(2vw, 10px);
		font-size: min(3.6vw, 16px);
		border-radius: 6px;
		width: 140px;
	}

}

body.artistModal {
  background-color: #424242;
  background-image: none;
  padding: min(6vw, 50px);
  color: #fff;
}
.modal {
	max-width: 860px;
  margin: 0 auto;
}
#cboxCurrent {
  display: none !important;
}

.artistHead {
	display: flex;
	justify-content: space-between;
}
.artistHead .artistTitle {
	width: 38%;
}
.artistHead .artistTitle h3 {
	font-size: 26px;
  line-height: 1.4;
	margin-bottom: 40px;
}
.artistHead .artistTitle h3 span {
	font-size: 16px;
  font-weight: normal;
	display: block;
  margin-top: 0.6em;
}
.artistHead .artistTitle .officialLinks {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}
.artistHead .artistTitle .officialLinks li {
	width: 60%;
}
.artistHead .artistTitle .officialLinks li a {
	display: block;
	color: #424242;
  background-color: #fff;
  font-family: "Oswald", sans-serif;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	text-align: center;
  padding: 15px 5px;
	border-radius: 5px;
}

.artistHead .artistTitle .artistSns {
	display: flex;
}
.artistHead .artistTitle .artistSns li {
	margin-right: 20px;
  line-height: 0;
}
.artistHead .artistTitle .artistSns li a {
	text-decoration: none;
	font-size: 24px;
}
.artistHead .artistTitle .artistSns li a i.snsIcon {
  color: #fff;
}
.artistHead .artistTitle .artistSns .icon-lit {
  display: inline-block;
  width: min(5.5vw, 25px);
  height: min(5.5vw, 25px);
  background: url("../images/ico_link.png") no-repeat center center;
  background-size: contain;
  vertical-align: text-bottom;
}

.artistHead .artistPhoto {
	width: 58%;
	line-height: 0;
	position: relative;
}
.artistHead .artistPhoto::after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
}
.artistHead .artistPhoto img {
	width: 100%;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.artistBodoy {
  margin-top: 40px;
  padding-top: 30px;
	border-top: #777 solid 1px;
	display: flex;
	justify-content: space-between;
}
.artistBodoy .profile h4 {
  margin-top: min(6vw, 30px);
  font-size: min(3.6vw, 18px);
  font-weight: bold;
  margin-bottom: min(3vw, 15px);
}
.artistBodoy .profile p {
	font-size: min(3.4vw, 16px);
	margin-bottom: min(4vw, 20px);
}
.artistBodoy .profile p a {
	color: #fff;
	text-decoration: underline;
}


@media screen and (max-width: 820px) {
  
	.artistHead {
		flex-direction: column-reverse;
	}
	.artistHead .artistPhoto {
		width: 100%;
		margin-bottom: min(6vw, 40px);
	}
	.artistHead .artistTitle {
		width: 100%;
	}
	.artistHead .artistTitle h3 {
		font-size: min(5vw, 26px);
		margin-bottom: min(6vw, 40px);
	}
	.artistHead .artistTitle h3 span {
		font-size: min(3.6vw, 16px);
	}
	.artistHead .artistTitle .officialLinks {
		margin-top: min(4vw, 25px);
	}
	.artistHead .artistTitle .officialLinks li a {
		font-size: min(3.4vw, 16px);
		padding: min(2vw, 8px);
	}
	.artistHead .artistTitle .artistSns li {
		margin-right: min(4vw, 20px);
	}
	.artistHead .artistTitle .artistSns li a {
		text-decoration: none;
		font-size: min(5.2vw, 24px);
	}
	.artistBodoy {
		margin-top: min(8vw, 60px);
		padding-top: min(8vw, 60px);
    display: block;
	}
  

}

