@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 15px;
  position: relative;
  background: #fefef1;
}
@media screen and (max-width: 540px) {
  body {
    font-size: 14px;
  }
}

body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ul,
ol,
li,
blockquote,
pre,
table,
caption,
th,
td,
address,
form,
fieldset,
legend,
object {
  margin: 0;
  padding: 0;
}

header,
section,
nav,
footer {
  display: block;
}

a,
ins {
  text-decoration: none;
}

address,
em,
cite,
dfn,
var {
  font-style: normal;
}

input,
textarea,
select {
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
}

img {
  vertical-align: baseline;
  max-width: 100%;
  height: auto;
}

a img {
  border: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ul,
ol,
li,
blockquote,
pre,
table,
caption,
th,
td,
address {
  line-height: 2;
  letter-spacing: 0;
  color: #1c1c1c;
}

h1,
h2,
h3,
h4 {
  font-weight: normal;
  letter-spacing: 0;
}

a {
  color: #1c1c1c;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.5;
}

li {
  list-style: none;
}

a[href^="tel:"] {
  cursor: default;
  opacity: 1 !important;
}

br.pcn {
  display: none;
}
@media screen and (max-width: 480px) {
  br.pcn {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  br.spn {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .onlyPC {
    display: none;
  }
}

.onlySP {
  display: none;
}
@media screen and (max-width: 480px) {
  .onlySP {
    display: initial;
  }
}

.anime {
  opacity: 0;
  transform: translateY(-10px) scale(0.99, 0.99);
  transition: 1s;
}

.move {
  opacity: 1;
  transform: translateY(0) scale(1, 1);
}

.anime-b {
  opacity: 0;
  transform: translateY(50px);
  transition: 1s;
}

.move-b {
  opacity: 1;
  transform: translateY(0);
}

#loading {
  width: 100vw;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 1s;
  background: #fefef1;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
}
#loading.loaded {
  opacity: 0;
  pointer-events: none;
}

#loading img {
  width: 30%;
  animation: sk-scaleout 5s ease-in-out;
}

/* ローディングアニメーション */
@keyframes sk-scaleout {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  100% {
    transform: scale(1);
  }
}
/* ------ navibtn -----------------------------------*/
.hnavi_btn {
  position: absolute;
  top: 13px;
  right: 12px;
  z-index: 10000;
  display: none;
}
@media screen and (max-width: 540px) {
  .hnavi_btn {
    display: block;
  }
}

.menu-button {
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1000;
}
.menu-button i {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 3px;
  background: #1c1c1c;
  transition: background 0.5s;
  position: absolute;
  right: 10px;
  top: 20px;
}
.menu-button i:before, .menu-button i:after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 3px;
  background: #1c1c1c;
  position: absolute;
  transform: rotate(0deg);
  transition: all 0.3s !important;
}
.menu-button i:before {
  transform: translateY(8px);
}
.menu-button i:after {
  transform: translateY(-8px);
}

.hnavi_btn.active .menu-button i {
  background: none;
}
.hnavi_btn.active .menu-button i:after {
  transform: translateY(0px) rotate(-45deg);
}
.hnavi_btn.active .menu-button i:before {
  transform: translateY(0px) rotate(45deg);
}

body {
  padding-top: 133px;
}
@media screen and (max-width: 840px) {
  body {
    padding-top: 83px;
  }
}
@media screen and (max-width: 540px) {
  body {
    padding-top: 71px;
  }
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px 16px 16px;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid #1c1c1c;
  transition: all 0.3s ease;
}
@media screen and (max-width: 840px) {
  .header {
    padding: 16px 20px;
  }
}
@media screen and (max-width: 540px) {
  .header {
    padding: 10px;
  }
}
.header.fixed {
  padding: 10px 40px 20px 20px;
}
@media screen and (max-width: 840px) {
  .header.fixed {
    padding: 16px 20px;
  }
}
@media screen and (max-width: 540px) {
  .header.fixed {
    padding: 10px;
  }
}
.header.fixed .hlogo {
  width: 80px;
}
@media screen and (max-width: 540px) {
  .header.fixed .hlogo {
    width: 60px;
  }
}
.header .hlogo {
  font-size: 0;
  transition: all 0.3s ease;
  width: 120px;
}
@media screen and (max-width: 840px) {
  .header .hlogo {
    width: 60px;
  }
}
@media screen and (max-width: 540px) {
  .header .hlogo {
    position: relative;
    z-index: 10000;
  }
}
.header .hlogo img {
  transition: all 0.3s ease;
}
@media screen and (min-width: 541px) {
  .header .gnavi {
    display: block !important;
    opacity: 1 !important;
  }
}
@media screen and (max-width: 540px) {
  .header .gnavi {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: #fff;
  }
}
.header .gnavi ul {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 540px) {
  .header .gnavi ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
}
.header .gnavi ul li {
  margin-left: 40px;
  font-weight: bold;
}
@media screen and (max-width: 840px) {
  .header .gnavi ul li {
    margin-left: 24px;
    font-size: 14px;
  }
}
@media screen and (max-width: 540px) {
  .header .gnavi ul li {
    font-size: 32px;
    margin: 0 0 8px;
  }
}
.header .gnavi ul li:last-of-type {
  font-size: 22px;
}
@media screen and (max-width: 840px) {
  .header .gnavi ul li:last-of-type {
    font-size: 18px;
  }
}
@media screen and (max-width: 540px) {
  .header .gnavi ul li:last-of-type {
    font-size: 32px;
    margin: 0 0 8px;
  }
}
.header .gnavi ul li a {
  position: relative;
  display: block;
  width: -moz-max-content;
  width: max-content;
}
.header .gnavi ul li a:hover {
  opacity: 1;
}
.header .gnavi ul li a:hover::after {
  width: 100%;
}
.header .gnavi ul li a::after {
  content: "";
  display: block;
  background: #1c1c1c;
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/spbg.jpg") no-repeat;
  background-size: cover;
  z-index: 1;
  opacity: 0.16;
}
@media screen and (min-width: 841px) {
  .bg {
    background: url("../img/bg.jpg") no-repeat;
  }
}
@media screen and (max-width: 840px) {
  .bg {
    height: 100vh;
    top: auto;
    bottom: 0;
  }
}

.page_wrap {
  position: relative;
  z-index: 100;
  padding: 0 40px;
}
@media screen and (max-width: 840px) {
  .page_wrap {
    padding: 0 24px;
  }
}

.fv {
  position: relative;
  margin-bottom: 180px;
  z-index: 100;
}
@media screen and (max-width: 840px) {
  .fv {
    margin-bottom: 10vw;
  }
}

.sec {
  margin-bottom: 150px;
}
@media screen and (max-width: 840px) {
  .sec {
    margin-bottom: 80px;
  }
}
.sec .wrap {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 840px) {
  .sec .wrap {
    display: block;
  }
}
.sec .wrap .sec_ttl {
  width: 240px;
  font-size: 28px;
  font-weight: 600;
  font-family: "Heebo", sans-serif;
  line-height: 1.5;
}
@media screen and (max-width: 1080px) {
  .sec .wrap .sec_ttl {
    width: 180px;
  }
}
@media screen and (max-width: 840px) {
  .sec .wrap .sec_ttl {
    font-size: 42px;
    margin-bottom: 24px;
    width: 100%;
  }
}
.sec .wrap .cnt {
  width: calc(100% - 240px);
}
@media screen and (max-width: 1080px) {
  .sec .wrap .cnt {
    width: calc(100% - 180px);
  }
}
@media screen and (max-width: 840px) {
  .sec .wrap .cnt {
    width: 100%;
  }
}

.sec_about .about_copy {
  font-size: 48px;
  line-height: 1.45;
  margin-bottom: 48px;
  margin-top: -0.22em;
}
@media screen and (max-width: 1080px) {
  .sec_about .about_copy {
    font-size: 4.5vw;
  }
}
@media screen and (max-width: 840px) {
  .sec_about .about_copy {
    font-size: 5vw;
    margin-bottom: 5vw;
  }
}
@media screen and (max-width: 480px) {
  .sec_about .about_copy {
    font-size: 6vw;
    font-weight: 700;
    margin-bottom: 6vw;
  }
}
.sec_about .about_txt {
  margin-bottom: 80px;
}
.sec_about .about_txt p {
  margin-bottom: 24px;
}
@media screen and (max-width: 840px) {
  .sec_about .about_txt {
    margin-bottom: 60px;
  }
}
.sec_about .info .info_ttl {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 32px;
}
@media screen and (max-width: 840px) {
  .sec_about .info .info_ttl {
    font-size: 20px;
    line-height: 1.6;
  }
}
.sec_about .info .info_ttl br {
  display: none;
}
@media screen and (max-width: 840px) {
  .sec_about .info .info_ttl br {
    display: block;
  }
}
.sec_about .info .ttl {
  font-weight: 400;
  width: -moz-max-content;
  width: max-content;
  line-height: 1;
  padding: 5px 8px;
  background: #1c1c1c;
  color: #fff;
  margin-bottom: 8px;
}
.sec_about .info .txt {
  line-height: 1.6;
  margin-bottom: 24px;
}

.sec_ticket .ticket_lead {
  font-size: 15px;
  margin-bottom: 40px;
}
.sec_ticket .ttl {
  font-weight: 400;
  width: -moz-max-content;
  width: max-content;
  line-height: 1;
  padding: 5px 8px;
  background: #1c1c1c;
  color: #fff;
  margin-bottom: 8px;
}
.sec_ticket .txt {
  line-height: 1.6;
  margin-bottom: 24px;
}

.sec_live .cnt .live_ttl {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 40px;
}
@media screen and (max-width: 840px) {
  .sec_live .cnt .live_ttl {
    font-size: 20px;
    line-height: 1.6;
  }
}
.sec_live .cnt .live_event {
  margin-bottom: 54px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ddd;
}
.sec_live .cnt .live_event:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.sec_live .cnt .live_event .live_event_ttl {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}
@media screen and (max-width: 840px) {
  .sec_live .cnt .live_event .live_event_ttl {
    font-size: 20px;
    line-height: 1.6;
  }
}
.sec_live .cnt .live_event .live_event_ttl2 {
  font-weight: 400;
  width: -moz-max-content;
  width: max-content;
  line-height: 1;
  padding: 5px 8px;
  background: #1c1c1c;
  color: #fff;
  margin-bottom: 8px;
}
.sec_live .cnt .live_event p {
  font-size: 14px;
  margin-bottom: 24px;
  word-break: break-all;
}
@media screen and (max-width: 840px) {
  .sec_live .cnt .live_event p {
    font-size: 13px;
  }
}
.sec_live .cnt .live_event .live_list {
  margin-bottom: 24px;
}
.sec_live .cnt .live_event .live_list a:hover .img {
  opacity: 0.6;
}
.sec_live .cnt .live_event .live_list li {
  font-size: 15px;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  font-weight: 500;
}
@media screen and (max-width: 840px) {
  .sec_live .cnt .live_event .live_list li {
    font-size: 15px;
  }
}
.sec_live .cnt .live_event .live_list li:last-of-type {
  margin-top: 0;
}
.sec_live .cnt .live_event .live_list li .img {
  font-size: 0;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 480px) {
  .sec_live .cnt .live_event .live_list li .img img {
    width: 100%;
  }
}

.sec_artist .artist_list li,
.sec_artist .live_list li,
.sec_live .artist_list li,
.sec_live .live_list li {
  font-size: 18px;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  font-weight: 500;
}
@media screen and (max-width: 840px) {
  .sec_artist .artist_list li,
  .sec_artist .live_list li,
  .sec_live .artist_list li,
  .sec_live .live_list li {
    font-size: 15px;
  }
}
.sec_artist .artist_list li.none,
.sec_artist .live_list li.none,
.sec_live .artist_list li.none,
.sec_live .live_list li.none {
  pointer-events: none;
}
.sec_artist .artist_list li:last-of-type,
.sec_artist .live_list li:last-of-type,
.sec_live .artist_list li:last-of-type,
.sec_live .live_list li:last-of-type {
  margin-top: 32px;
}
.sec_artist .artist_list li a,
.sec_artist .live_list li a,
.sec_live .artist_list li a,
.sec_live .live_list li a {
  position: relative;
  display: block;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin-bottom: 5px;
}
.sec_artist .artist_list li a:hover,
.sec_artist .live_list li a:hover,
.sec_live .artist_list li a:hover,
.sec_live .live_list li a:hover {
  opacity: 1;
}
.sec_artist .artist_list li a:hover::after,
.sec_artist .live_list li a:hover::after,
.sec_live .artist_list li a:hover::after,
.sec_live .live_list li a:hover::after {
  width: 100%;
}
.sec_artist .artist_list li a::after,
.sec_artist .live_list li a::after,
.sec_live .artist_list li a::after,
.sec_live .live_list li a::after {
  content: "";
  display: block;
  background: #1c1c1c;
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
}
.sec_artist .artist_list li .place_label,
.sec_artist .live_list li .place_label,
.sec_live .artist_list li .place_label,
.sec_live .live_list li .place_label {
  display: flex;
  align-items: center;
}
.sec_artist .artist_list li .place_label span,
.sec_artist .live_list li .place_label span,
.sec_live .artist_list li .place_label span,
.sec_live .live_list li .place_label span {
  display: block;
  color: #666;
  line-height: 1;
  letter-spacing: 0.03em;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width: 840px) {
  .sec_artist .artist_list li .place_label span,
  .sec_artist .live_list li .place_label span,
  .sec_live .artist_list li .place_label span,
  .sec_live .live_list li .place_label span {
    font-size: 10px;
  }
}
.sec_artist .artist_list li .place_label span::after,
.sec_artist .live_list li .place_label span::after,
.sec_live .artist_list li .place_label span::after,
.sec_live .live_list li .place_label span::after {
  content: "/";
  margin: 0 5px;
}
.sec_artist .artist_list li .place_label span:last-of-type::after,
.sec_artist .live_list li .place_label span:last-of-type::after,
.sec_live .artist_list li .place_label span:last-of-type::after,
.sec_live .live_list li .place_label span:last-of-type::after {
  display: none;
}

@media screen and (max-width: 840px) {
  .sec_venue {
    margin-bottom: 0;
  }
}
.sec_venue .venue_list li {
  margin-bottom: 120px;
}
@media screen and (max-width: 840px) {
  .sec_venue .venue_list li {
    margin-bottom: 60px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 60px;
  }
}
.sec_venue .venue_list li:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.sec_venue .venue_list li .venue_head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
@media screen and (max-width: 840px) {
  .sec_venue .venue_list li .venue_head {
    display: block;
  }
}
.sec_venue .venue_list li .venue_head .img {
  font-size: 0;
  width: 48%;
}
@media screen and (max-width: 840px) {
  .sec_venue .venue_list li .venue_head .img {
    width: 100%;
    margin-bottom: 16px;
  }
}
.sec_venue .venue_list li .venue_head .img img {
  box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.16);
  background: #fff;
}
.sec_venue .venue_list li .venue_head .img .credit {
  font-size: 10px;
  display: block;
  line-height: 1.2;
  text-align: right;
  margin-top: 8px;
}
.sec_venue .venue_list li .venue_head .cnt {
  width: 48%;
}
@media screen and (max-width: 840px) {
  .sec_venue .venue_list li .venue_head .cnt {
    width: 100%;
  }
}
.sec_venue .venue_list li .venue_head .cnt .ttl {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}
@media screen and (max-width: 540px) {
  .sec_venue .venue_list li .venue_head .cnt .ttl {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.sec_venue .venue_list li .venue_head .cnt .ttl span {
  font-size: 13px;
  display: block;
  font-weight: 400;
  line-height: 1.4;
}
.sec_venue .venue_list li .venue_head .cnt .info {
  margin-bottom: 16px;
}
.sec_venue .venue_list li .venue_head .cnt .adrs {
  word-break: break-all;
  position: relative;
  display: block;
  width: -moz-max-content;
  width: max-content;
}
.sec_venue .venue_list li .venue_head .cnt .adrs a {
  word-break: break-all;
}
.sec_venue .venue_list li .venue_head .cnt .adrs a:hover {
  opacity: 1;
}
.sec_venue .venue_list li .venue_head .cnt .adrs a:hover::after {
  width: 100%;
}
.sec_venue .venue_list li .venue_head .cnt .adrs a::after {
  content: "";
  display: block;
  background: #1c1c1c;
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
}
.sec_venue .venue_list li .access {
  margin-bottom: 48px;
}
@media screen and (max-width: 840px) {
  .sec_venue .venue_list li .access {
    margin-bottom: 40px;
  }
}
.sec_venue .venue_list li .access .access_ttl {
  font-weight: 600;
  width: -moz-max-content;
  width: max-content;
  line-height: 1;
  padding: 5px 8px;
  background: #1c1c1c;
  color: #fff;
  margin-bottom: 5px;
}
.sec_venue .venue_list li .access .access_txt {
  margin-bottom: 20px;
}
.sec_venue .venue_list li .access .access_txt .pcn {
  display: none;
}
@media screen and (max-width: 840px) {
  .sec_venue .venue_list li .access .access_txt .pcn {
    display: block;
  }
}
.sec_venue .venue_list li .gmap {
  width: 100%;
  height: 400px;
  box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.16);
  background: #fff;
}
@media screen and (max-width: 840px) {
  .sec_venue .venue_list li .gmap {
    height: 280px;
  }
}
.sec_venue .venue_list li .gmap iframe {
  width: 100%;
  height: 100%;
}

.footer {
  height: 240px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media screen and (max-width: 840px) {
  .footer {
    height: 180px;
  }
}
.footer::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/fbg.png") no-repeat right;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0.45;
}
.footer .copyright {
  position: relative;
  z-index: 100;
  font-size: 13px;
  max-width: 1080px;
  width: 100%;
  text-align: right;
  margin-bottom: 4px;
}
@media screen and (max-width: 840px) {
  .footer .copyright {
    font-size: 11px;
    margin-bottom: 3px;
    padding-right: 24px;
    box-sizing: border-box;
  }
}

.pagetop {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 500;
  font-size: 0;
}
@media screen and (max-width: 840px) {
  .pagetop {
    right: 14px;
    bottom: 24px;
  }
}

/*// modal //////////////////////////////*/
body.open_modal {
  overflow: hidden;
}

.wrap_modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.97);
  z-index: 10000;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
}
.wrap_modal.active {
  opacity: 1;
  pointer-events: all;
}
.wrap_modal .modal {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow: auto;
}
.wrap_modal .modal .modal_inner {
  width: 100%;
  padding: 60px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 840px) {
  .wrap_modal .modal .modal_inner {
    padding: 40px;
  }
}
@media screen and (max-width: 540px) {
  .wrap_modal .modal .modal_inner {
    padding: 30px;
  }
}
.wrap_modal .modal .modal_inner .modal_cnt {
  width: 780px;
  padding: 60px;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 840px) {
  .wrap_modal .modal .modal_inner .modal_cnt {
    padding: 40px;
  }
}
@media screen and (max-width: 540px) {
  .wrap_modal .modal .modal_inner .modal_cnt {
    padding: 24px 10px;
  }
}
.wrap_modal .modal .modal_inner .modal_cnt .artwork {
  margin-bottom: 60px;
}
.wrap_modal .modal .modal_inner .modal_cnt .artwork .artwork_img {
  font-size: 0;
  margin-bottom: 32px;
}
.wrap_modal .modal .modal_inner .modal_cnt .artwork .artwork_img.imgs {
  margin-bottom: 16px;
}
.wrap_modal .modal .modal_inner .modal_cnt .artwork .artwork_img.imgs img {
  margin-bottom: 16px;
}
.wrap_modal .modal .modal_inner .modal_cnt .artwork .ttl {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 24px;
}
@media screen and (max-width: 540px) {
  .wrap_modal .modal .modal_inner .modal_cnt .artwork .ttl {
    font-size: 22px;
  }
}
.wrap_modal .modal .modal_inner .modal_cnt .artworks {
  margin-bottom: 60px;
}
.wrap_modal .modal .modal_inner .modal_cnt .artworks .artwork_img {
  font-size: 0;
  margin-bottom: 16px;
}
.wrap_modal .modal .modal_inner .modal_cnt .artworks .ttl {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 40px;
}
@media screen and (max-width: 540px) {
  .wrap_modal .modal .modal_inner .modal_cnt .artworks .ttl {
    font-size: 20px;
  }
}
.wrap_modal .modal .modal_inner .modal_cnt .profile {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.wrap_modal .modal .modal_inner .modal_cnt .profile:last-of-type {
  margin-bottom: 0;
}
.wrap_modal .modal .modal_inner .modal_cnt .profile.noimg .profile_img {
  display: none;
}
.wrap_modal .modal .modal_inner .modal_cnt .profile.noimg .cnt {
  width: 100%;
}
.wrap_modal .modal .modal_inner .modal_cnt .profile .profile_img {
  width: 30%;
}
.wrap_modal .modal .modal_inner .modal_cnt .profile .cnt {
  width: 65%;
}
.wrap_modal .modal .modal_inner .modal_cnt .profile .cnt .name {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 8px;
}
@media screen and (max-width: 540px) {
  .wrap_modal .modal .modal_inner .modal_cnt .profile .cnt .name {
    font-size: 16px;
  }
}
@media screen and (max-width: 540px) {
  .wrap_modal .modal .modal_inner .modal_cnt .profile .cnt .txt {
    font-size: 13px;
  }
}
.wrap_modal .modal .modal_inner .modal_cnt .live_artist .img {
  font-size: 0;
  margin-bottom: 16px;
}
.wrap_modal .modal .modal_inner .modal_cnt .live_artist .name {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 40px;
}
@media screen and (max-width: 540px) {
  .wrap_modal .modal .modal_inner .modal_cnt .live_artist .name {
    font-size: 20px;
  }
}
@media screen and (max-width: 540px) {
  .wrap_modal .modal .modal_inner .modal_cnt .live_artist .txt {
    font-size: 13px;
  }
}
.wrap_modal .modal .modal_inner .modal_cnt .close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1c1c1c;
  position: fixed;
  top: 30px;
  right: 40px;
  cursor: pointer;
}
@media screen and (max-width: 840px) {
  .wrap_modal .modal .modal_inner .modal_cnt .close {
    width: 35px;
    height: 35px;
    top: 10px;
    right: 10px;
  }
}
.wrap_modal .modal .modal_inner .modal_cnt .close::after, .wrap_modal .modal .modal_inner .modal_cnt .close::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 21px;
  left: 12px;
}
@media screen and (max-width: 840px) {
  .wrap_modal .modal .modal_inner .modal_cnt .close::after, .wrap_modal .modal .modal_inner .modal_cnt .close::before {
    width: 18px;
    top: 17px;
    left: 9px;
  }
}
.wrap_modal .modal .modal_inner .modal_cnt .close::after {
  transform: rotate(45deg);
}
.wrap_modal .modal .modal_inner .modal_cnt .close::before {
  transform: rotate(-45deg);
}/*# sourceMappingURL=style.css.map */