@charset "UTF-8";
/* CSS Document */
/*------------------------------------------------------
common
------------------------------------------------------*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}
#wrapper {
  font-family: 'Noto Sans JP';
  background-color: #232522;
  background-image: url("../img/bg.png");
  background-repeat: repeat;
  background-position: center;
  background-size: 4px;
  overflow: hidden;	
}
.section_inner {
  width: 100%;
  margin: 0 auto;
}
img {
  max-width: 100%;
  height: auto;
}
.monomaniac {
  font-family: "Monomaniac One", sans-serif !important;
  font-weight: 400;
  font-style: normal;
}
.dot {
  font-family: "DotGothic16", sans-serif;
}
.content {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
.media_sp{
	display: none;
}
.media_pc{
	display: block;
}

@media screen and (max-width:768px) {
.media_sp{
	display: block;
}
.media_pc{
	display: none;
}
  .content {
    padding: 0 16px;
  }
}
/*------------------------------------------------------
header
------------------------------------------------------*/
header {
  padding: 20px 0;
}
h1.logo_area{
  display: none;
}
.top h1.logo_area{
  display: block;
}
.top div.logo_area{
  display: none;
}
.gnav_wrap {
  padding: 16px;
  border-top: solid 2px #dcac7b;
  border-bottom: solid 2px #dcac7b;
}
.logo_area {
  text-align: center;
  margin-bottom: 32px;
}
.h_menu {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 10;
}
.h_menu_ul {
  width: 72px;
  height: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4列 */
  grid-template-rows: repeat(4, 1fr); /* 4段 */
  gap: 8px;
  padding: 0;
  list-style: none;
}
.h_menu_li {
  width: 12px;
  height: 12px;
}
.h_menu_li span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #dcac7b;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}
.g_nav {
  display: flex;
  justify-content: center;
  padding: 0 20px;
}
.g_nav_list {
  padding: 0 24px;
  text-align: center;
}
.g_nav_list a {
  position: relative;
  display: block;	
}
.g_nav_list a:hover {
  opacity: 0.7;
  transition: 0.5s;	
}
.g_nav_list.active a::after {
  content: "";
  width: 9px;
  height: 16px;
  background: url("../img/arrow_nav.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  right: calc(100% + 8px);
  top: 0;
  bottom: 0;
  margin: auto;
}
.g_nav_list.top a {
  background: url(../img/nav_top.png);
  background-repeat: no-repeat;
  background-size: auto 30px;
  ;
  background-position: center;
  width: 86px;
  height: 30px;
  display: block;
}
.g_nav_list.news a {
  background: url(../img/nav_news.png);
  background-repeat: no-repeat;
  background-size: auto 30px;
  ;
  background-position: center;
  width: 107px;
  height: 30px;
  display: block;
}
.g_nav_list.live a {
  background: url(../img/nav_live.png);
  background-repeat: no-repeat;
  background-size: auto 30px;
  ;
  background-position: center;
  width: 80px;
  height: 30px;
  display: block;
}
.g_nav_list.music a {
  background: url("../img/nav_music.png");
  background-repeat: no-repeat;
  background-size: auto 30px;
  ;
  background-position: center;
  width: 136px;
  height: 30px;
  display: block;
}
.g_nav_list.about a {
  background: url("../img/nav_domico.png");
  background-repeat: no-repeat;
  background-size: auto 30px;
  ;
  background-position: center;
  width: 207px;
  height: 30px;
  display: block;
}
.g_nav_list.goods a {
  background: url("../img/nav_goods.png");
  background-repeat: no-repeat;
  background-size: auto 30px;
  background-position: center;
  max-width: 144px;
  width: 100%;	
  height: 30px;
  display: block;
}
.g_nav_list.contact a {
  background: url("../img/nav_contact.png");
  background-repeat: no-repeat;
  background-size: auto 30px;
  ;
  background-position: center;
  width: 197px;
  height: 30px;
  display: block;
}
.h_menu.active li span {
    opacity: 0 !important;
  }
.h_menu.active .h_menu_li:nth-child(1), .h_menu.active .h_menu_li:nth-child(4), .h_menu.active .h_menu_li:nth-child(6), .h_menu.active .h_menu_li:nth-child(7), .h_menu.active .h_menu_li:nth-child(10), .h_menu.active .h_menu_li:nth-child(11), .h_menu.active .h_menu_li:nth-child(13), .h_menu.active .h_menu_li:nth-child(16) {
    opacity: 1 !important;
    background: #dcac7b;
    border-radius: 10px;
  }
  .gnav_wrap_sp {
    width: 40%;
    height: 100vh;
    background: #232522;
    position: fixed;
    z-index: 9;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 120px 40px 0 40px;
    transform: translateX(-100%);
    transition: 0.5s;
  }
  .gnav_wrap_sp.active {
    transform: translateX(0);
  }
  .g_nav_sp {
    display: block;
  }
  .g_nav_sp .g_nav_list {
    padding: 20px 0;
    text-align: center;
  }
.gnav_wrap_sp .g_nav_list a {
  transition: 0.5s;
}
.gnav_wrap_sp .g_nav_list a:hover {
  transform: translate(0, 0) scale(1.3);
}


@media screen and (max-width:1000px) {
  .logo_area {
    padding: 0 120px;
  }
.g_nav_list {
  padding: 0 16px;
}		
}
@media screen and (max-width:768px) {
  .logo_area {
    padding: 0 80px;
  }

  .h_menu_ul {
    width: 48px;
    height: 48px;
    gap: 4px;
  }
  .h_menu_li {
    width: 8px;
    height: 8px;
  }
  .h_menu {
    position: fixed;
    top: 10px;
    left: 16px;
    z-index: 10;
  }
  .logo_area {
    text-align: center;
    margin-bottom: 0;
  }
.gnav_wrap{
display: none;
	}	
  .gnav_wrap_sp {
    width: 100%;
    padding: 120px 16px 0 16px;
  }
.g_nav_list {
  padding: 0 10px;
}	
	
}
/*------------------------------------------------------
footer
------------------------------------------------------*/
footer {
  padding: 240px 0 40px 0;
}
.footer_logo {
  width: 77%;
  text-align: center;
  margin: 0 auto;
}
.inner_footer02 {
  background-image: url(../img/footer_base.png);
  background-repeat: no-repeat;
  background-position: center 32px;
  background-size: 100%;
  padding-bottom: 120px;
}
footer address {
  font-size: 16px;
  text-align: center;
  color: #dcac7b;
}

@media screen and (max-width:768px){
footer {
  padding: 80px 0 20px 0;
}
}
@media screen and (max-width:599px){
footer address {
  font-size: 13px;
}
}

/*------------------------------------------------------
カレンダー_common
------------------------------------------------------*/
.fc-day-header.fc-widget-header {
  background: #232221 !important;
  color: #dcac7b;
}
.fc-basic-view tbody .fc-row {
  min-height: auto;
}
.fc-content-skeleton thead tr {
  display: flex;
  justify-content: space-between;
}
.fc-day-header {
  position: relative;
}
.fc-day-header::after {
  content: "";
  width: 1px;
  height: 100%;
  background: #dcac7b;
  position: absolute;
  top: 0;
  right: 0;
}
.fc-day-number {
  /*  width: 44px !important;
*/ height: 44px;
  background: #242424 !important;
  justify-content: center;
  display: flex;
  align-items: center;
  text-align: center !important;
  margin: 0 auto !important;
  color: #dcac7b;
  z-index: 1;
  flex: 1;
}
.fc-event-container {
  position: relative;
}
.fc-event-container::before {
  content: "";
  width: 44px;
  height: 44px;
  border-radius: 50px;
  border: solid 2px #dcac7b;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}
#eo_fullcalendar_1 .eo-fullcalendar-reset .fc-content-skeleton td {
  width: 40px !important;
  height: 40px;
  border-radius: 50px !important;
  background: red !important;
  justify-content: center;
  display: flex;
  align-items: center;
  text-align: center !important;
  margin: 0 auto !important;
}
.fc-widget-content {
  display: block;
  width: 100%;
}
.fc-row .fc-content-skeleton {
  background: #232321;
}
.fc-content-skeleton table tbody tr {
  width: 100%;
  display: flex;
}
.fc-content-skeleton table tbody td {
  flex: 1;
}
.eo-fullcalendar .fc-view > table > tbody {
  background: #242424 !important;
}
.fc-day-header.fc-widget-header {
  padding: 8px 2px;
}
.fc-day-header.fc-widget-header.fc-mon {
  font-size: 0;
}
.fc-day-header.fc-widget-header.fc-tue {
  font-size: 0;
}
.fc-day-header.fc-widget-header.fc-wed {
  font-size: 0;
}
.fc-day-header.fc-widget-header.fc-thu {
  font-size: 0;
}
.fc-day-header.fc-widget-header.fc-fri {
  font-size: 0;
}
.fc-day-header.fc-widget-header.fc-sat {
  font-size: 0;
}
.fc-day-header.fc-widget-header.fc-sun {
  font-size: 0;
}
.fc-day-header.fc-widget-header.fc-mon::before {
  content: "MON";
  font-size: 16px;
}
.fc-day-header.fc-widget-header.fc-tue::before {
  content: "TUE";
  font-size: 16px;
}
.fc-day-header.fc-widget-header.fc-wed::before {
  content: "WED";
  font-size: 16px;
}
.fc-day-header.fc-widget-header.fc-thu::before {
  content: "THU";
  font-size: 16px;
}
.fc-day-header.fc-widget-header.fc-fri::before {
  content: "FRI";
  font-size: 16px;
}
.fc-day-header.fc-widget-header.fc-sat::before {
  content: "SAT";
  font-size: 16px;
}
.fc-day-header.fc-widget-header.fc-sun::before {
  content: "SUN";
  font-size: 16px;
}
.fc-event-container a {
  display: none;
}
.fc-widget-header {
  border-top: solid 1px #dcac7b !important;
  border-bottom: solid 1px #dcac7b !important;
}
.fc-content-skeleton thead tr {
  border-bottom: solid 1px #dcac7b;
}
.fc-day-number {
  position: relative;
}
.fc-day-number::after {
  content: "";
  width: 1px;
  height: calc(100% + 2px);
  background: #dcac7b;
  position: absolute;
  top: -2px;
  right: 0;
}
.fc-day-number.fc-other-month::after {
  background: #dcac7b;
}
.fc-day-number.fc-other-month {
  opacity: 1 !important;
  color: rgba(220, 172, 123, 0.3) !important;
}
.fc-row.fc-week.fc-widget-content .fc-content-skeleton table thead td.fc-day-number:last-child::after {
  display: none !important;
}
.fc-basic-view td.fc-day-number, .fc-basic-view td.fc-week-number span {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
.fc-left h2 {
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #dcac7b;
}
.eo-fullcalendar .fc-toolbar {
  margin: 0 auto;
  padding: 16px;
  position: relative;
}
.fc-button-group:nth-child(3) {
  display: none;
}
.fc-right {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto !important;
}
.fc-toolbar .fc-left {
  float: left;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.eo-fullcalendar .fc-toolbar {
  display: flex;
  align-content: center;
  align-items: center;
  margin-bottom: 0 !important;
}
.eo-events a {
  font-size: 24px;
  font-weight: 600;
  display: block;
  text-decoration: none;
  color: #dcac7b;
}
.eo-events li {
  font-size: 18px;
  color: #dcac7b;
  padding: 20px 40px 20px 20px;
  border-bottom: solid 2px #dcac7b;
/*  background-image: url("../img/arrow_view_more.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 28px;
*/}
.eo-event-future a {
  font-size: 24px;
  font-weight: 600;
  display: block;
  text-decoration: none;
  color: #dcac7b;
}
.eo-event-future {
  font-size: 18px;
  color: #dcac7b;
  padding: 20px 24px 20px 0;
  border-bottom: solid 2px #dcac7b;
  background-image: url("../img/arrow_view_more.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 28px;
}
.fc-next-button.fc-button.fc-state-default.fc-corner-left.fc-corner-right {
  background: no-repeat;
}
.fc-icon.fc-icon-left-single-arrow {
  width: 24px;
  background-image: url("../img/btn_left.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 24px;
}
.fc-icon.fc-icon-right-single-arrow {
  width: 24px;
  background-image: url("../img/btn_right.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 24px;
}
.fc-prev-button.fc-button.fc-state-default.fc-corner-left.fc-corner-right {
  background: #242424;
  height: 32px;
  width: 80px;
  border: none;
}
.fc-next-button.fc-button.fc-state-default.fc-corner-left.fc-corner-right {
  background: #242424;
  height: 32px;
  width: 80px;
  border: none;
}
.fc-icon-left-single-arrow::after {
  content: "" !important;
}
.fc-icon-right-single-arrow::after {
  content: "" !important;
}

@media screen and (max-width:768px){
.eo-events li {
  padding: 20px 32px 20px 0;
}
.fc-toolbar .fc-left {
  display: flex !important;
  align-items: center;
}	
}


/*------------------------------------------------------
page_common
------------------------------------------------------*/
.key_visual {
  width: 100%;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 0 16px;
}
.breadcrumb_ul {
  margin-bottom: 40px;
}
.breadcrumb_li span {
  width: 6px;
  height: 20px;
  background: #dcac7b;
  display: inline-block;
  margin-left: 4px;
  animation: blinking 0.6s ease-in-out infinite alternate;
}
@keyframes blinking {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
.breadcrumb_li {
  font-size: 15px;
  color: #dcac7b;
  display: flex;
  align-items: center;
}
.breadcrumb_li a {
  font-size: 15px;
  color: #dcac7b;
  text-decoration: none;
}

@media screen and (max-width:768px){
.key_visual {
  height: 240px;
	}
	
}
@media screen and (max-width:768px){
.key_visual {
  height: 160px;
	}
	
}

/*------------------------------------------------------
page_live
------------------------------------------------------*/
.live_page .key_visual {
  background-image: url("../img/live/bg_page_title.jpg");
}
.live_page #schedule .schedule_content_left {
  width: 35%;
  padding-bottom: 24px;
}
.live_page #schedule .schedule_content_right {
  width: 65%;
  border-left: solid 2px #dcac7b;
}
.live_page #schedule .schedule_list_li {
  padding: 20px 40px 20px 20px;
  background-position: calc(100% - 16px) center;
  border-bottom: solid 1px #dcac7b;
}
.live_page #schedule .schedule_item {
  padding: 20px 40px 20px 20px;
  background-position: calc(100% - 16px) center;
  border-bottom: solid 1px #dcac7b;
}
.live_page #schedule .schedule_item .title {
  font-size: 24px;
  font-weight: 600;
  display: block;
  text-decoration: none;
  color: #dcac7b;
  margin-bottom: 8px;	
}
.live_page #schedule .schedule_item .date {
  font-size: 18px;
  display: block;
  text-decoration: none;
  color: #dcac7b;
  margin-bottom: 4px;	
}
.live_page #schedule .schedule_item .date span:nth-child(1){
	margin-right: 16px;
}
.live_page #schedule .schedule_item .place {
  font-size: 18px;
  color: #dcac7b;
}
.live_page #schedule .no_event {
  font-size: 15px;
  color: #dcac7b;
  padding: 16px;
}
.live_page #schedule .title.monomaniac {
  font-size: 40px !important;
  color: #dcac7b;
  padding: 0 24px;
}
.live_page .year_ul {
  display: flex;
}
.live_page .year_wrap {
  border-bottom: solid 2px #dcac7b;
}
.live_page .year_li {
  width: 79px;
  border-right: solid 2px #dcac7b;
}
.live_page .year_ul_wrap {
  overflow: hidden;
  width: 100%;
}
.live_page .year_btn.next {
  width: 50px;
}
.live_page .month_list {
  display: flex;
}
.live_page .month {
  flex: 1;
  text-align: center;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.live_page .tab_wrap {
  position: relative;
  border-bottom: solid 2px #dcac7b;
}
.live_page .ques {
  position: absolute;
  top: 10px;
  right: 20px;
}
.live_page .month.current {
  position: relative;
}
.live_page .month.active::before {
  content: "";
  width: 20px;
  height: 10px;
  background: url("../img/live/arrow_year.png");
  background-repeat: no-repeat;
  background-position: 0 center;
  background-size: 9px 15px;
  position: absolute;
  left: 0;
}
.live_page #year_select {
  background: none;
  border: none;
  font-size: 20px;
  padding: 4px 16px;
  color: #dcac7b;
}
.live_page .tab_content {
  display: none;
}
.live_page .tab_content.active {
  display: block;
  position: relative;		
  z-index: 9;
}
.live_page .month.active {
  outline: 2px solid #dcac7b; /* 選ばれた月のハイライト */
  position: relative;
}
.live_page .pop_inner {
  display: none;
}
.live_page .pop_inner.open {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.live_page .pop_content {
  background: #dcac7b;
  width: 80%;
  border-radius: 24px;
  color: #000;
  padding: 40px;
  background-image: url("../img/live/icn_close.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 40px) 40px;
  background-size: 30px 34px;
}
.live_page .live_table {
  width: 100%;
  border-bottom: solid 2px #000;
  margin-top: 16px;	
}
.live_page .live_table th {
  border: solid 2px #000;
  border-bottom: none;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 16px;
  vertical-align: middle;
}
.live_page .live_table td {
  border: solid 2px #000;
  border-left: none;
  border-bottom: none;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 16px;
  vertical-align: middle;
}
.live_page #schedule .schedule_list_li:hover {
  opacity: 1;
}
.live_page .live_table td a {
  text-decoration: none;
  text-align: center;
  display: block;
  color: #333;
  padding-right: 16px;
  background-image: url("../img/live/arrow_pop_in.png");
  background-repeat: no-repeat;
  background-position: 100% center;
  background-size: 24px;
}
.live_page .live_table td a:hover {
  opacity: 0.7;
  transition: 0.5s;
}
.live_page .pop_content .area {
  margin-right: 16px;
}
.live_page .pop_content .open {
  margin-right: 16px;
}
.live_page .pop_content .time {
  margin-bottom: 8px;
}
.live_page #schedule .schedule_item .pop_content .title {
  color: #000;
}
.live_page #schedule .schedule_item .pop_content .date {
  color: #000;
}
.live_page #schedule .schedule_item .pop_content .place {
  color: #000;
}
.live_page #schedule .schedule_item .pop_content .comment {
  font-size: 18px;	
  color: #000;
}

@media screen and (max-width:768px){
.live_page .month_list {
  flex-wrap: wrap;
}
.live_page .month {
  flex: inherit;
  width: calc(100% / 6);
}
.live_page .month[data-month="1"] img {
  width: 39px;
}
.live_page .month[data-month="2"] img {
  width: 39px;
}
.live_page .month[data-month="3"] img {
  width: 39px;
}
.live_page .month[data-month="4"] img {
  width: 39px;
}
.live_page .month[data-month="5"] img {
  width: 39px;
}
.live_page .month[data-month="6"] img {
  width: 39px;
}
.live_page .month[data-month="7"] img {
  width: 39px;
}
.live_page .month[data-month="8"] img {
  width: 39px;
}
.live_page .month[data-month="9"] img {
  width: 39px;
}	
.live_page .month[data-month="10"] img {
  width: 43px;
}
.live_page .month[data-month="11"] img {
  width: 43px;
}
.live_page .month[data-month="12"] img {
  width: 43px;
}
.live_page .month.active {
  outline: none;
	}
.live_page #schedule .schedule_item {
  padding: 16px 24px 16px 16px;
	}
.live_page #schedule .schedule_item .title {
  font-size: 20px;
	}
.live_page #schedule .schedule_item .date {
  font-size: 16px;
	}
.live_page .live_table {
  display: block;
}
.live_page .live_table tr,.live_page .live_table th,.live_page .live_table td {
  width: 100%;
  display: block;
}	
.live_page .live_table tbody {
  width: 100%;
  display: block;
}
.live_page .live_table td {
  border-left: solid 2px #000;
	}
.live_page .live_table th {
  border-bottom: dotted 2px #000;
}
.live_page .live_table th + td {
  border-top: none !important;
}
.live_page .pop_content {
  width: 90%;
  border-radius: 16px;
  padding: 40px 16px 16px 16px;	
  background-position: calc(100% - 16px) 16px;
  background-size: 23px 27px;
  max-height: 80vh;
  overflow-y: scroll;
  overflow-x: hidden;	
}
.live_page #schedule .schedule_item .pop_content .comment {
  font-size: 16px;	
}
}

/*------------------------------------------------------
page_music
------------------------------------------------------*/
.music_page .key_visual {
  background-image: url("../img/music/bg_page_title.jpg");
}
.music_page #new .section_inner {
  display: flex;
}
.music_page #new {
  margin-bottom: 80px;
}
.music_page #new {
  margin-bottom: 80px;
}
.music_page #album {
  margin-bottom: 40px;
}
.music_page #digital {
  margin-bottom: 40px;
}
.music_page .new_content_left {
  width: 47%;
  border: solid 2px #dcac7b;
  border-right: none;
}
.music_page .new_content_right {
  width: 53%;
  border: solid 2px #dcac7b;
}
.music_page #new .sec_title {
  padding: 16px 48px;
  border-bottom: solid 2px #dcac7b;
}
.music_page #new .details {
  padding: 20px 48px;
  color: #dcac7b;
}
.music_page #new .details .title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 24px;
}
.music_page #new .details .release_date {
  font-size: 21px;
  padding-bottom: 8px;
  border-bottom: solid 2px #dcac7b;
  margin-bottom: 32px;
}
.music_page #new .details .track_li {
  font-size: 16px;
  margin-bottom: 4px;
}
.music_page .pro_ul {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  padding: 40px 56px;
  border: solid 2px #dcac7b;
  border-top: none;
}
.music_page .pro_li {
  width: calc((100% - 160px) /3);
  text-align: center;
}
.music_page .pro_li .img {
  margin-bottom: 16px;
}
.music_page .pro_li .title {
  font-size: 17px;
  color: #dcac7b;
  margin-bottom: 8px;
}
.music_page .pro_li .date {
  font-size: 15px;
  color: #dcac7b;
}
.music_page .pro_li .note {
  font-size: 13px;
  color: #dcac7b;
}
.music_page .sort-buttons {
  text-align: right;
  padding: 24px;
  border: solid 2px #dcac7b;
}
.music_page .sort-buttons #sort-new-1 {
  margin-right: 32px;
}
.music_page .sort-buttons #sort-new-2 {
  margin-right: 32px;
}
.music_page .sort-btn.old.active {
  position: relative;
}
.music_page .sort-btn.old.active::before {
  content: "";
  width: 9px;
  height: 16px;
  background: url("../img/music/arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  right: calc(100% + 8px);
  top: 0;
  bottom: 0;
  margin: auto;
}
.music_page .sort-btn.active {
  position: relative;
}
.music_page .sort-btn.active::before {
  content: "";
  width: 9px;
  height: 16px;
  background: url("../img/music/arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  right: calc(100% + 8px);
  top: 0;
  bottom: 0;
  margin: auto;
}
.music_page .head {
  width: 100%;
  height: 90px;
  background: url("../img/music/bg_head.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: solid 2px #dcac7b;
  border-bottom: none;
  position: relative;
}
.music_page .head::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../img/music/album.png");
  background-repeat: repeat-x;
  background-position: center;
  position: absolute;
  background-size: auto 56%;
  top: 0;
}
.music_page #vinyl .head::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../img/music/VINYL.png");
  background-repeat: repeat-x;
  background-position: center;
  position: absolute;
  background-size: auto 64%;
  top: 0;
}
.music_page #digital .head::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../img/music/single.png");
  background-repeat: repeat-x;
  background-position: center;
  position: absolute;
  background-size: auto 64%;
  top: 0;
}
.music_page .pro_li .popup-overlay {
  display: none;
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.music_page .pro_li .popup-content {
  background: #dcac7b;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 560px;
  position: relative;
}
.music_page .pro_li .popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}
.music_page .pro_li .popup-content h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
}
.music_page .popup-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.music_page .popup-content ul li {
  width: calc((100% - 16px)/2);
  height: 48px;
  padding: 8px 0;
  background-color: #19191a;	
}
.music_page .popup-content ul li a{
  width: 100%;
  height: 100%;
  display: block;
}
.music_page .subscription {
  font-size: 15px;
  height: 40px;
  line-height: 40px;
  color: #dcac7b;
  border: solid 1px #dcac7b;
}
.music_page .subscription:hover{
	opacity: 0.7;
	transition: 0.5s;
	cursor: pointer;
}
.music_page .spotify a{
  background: url("../img/music/logo_spotify.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;	
}
.music_page .apple_music a{
  background: url("../img/music/logo_applemusic.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;	
}
.music_page .line_music a{
  background: url("../img/music/logo_linemusic.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;	
}
.music_page .recochoku a{
  background: url("../img/music/logo_recochoku.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;	
}
.music_page .ototoy a{
  background: url("../img/music/logo_ototoy.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;	
}
.music_page .mora a{
  background: url("../img/music/logo_mora.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;	
}
@media screen and (max-width:768px) {
.music_page .h1_page_title img {
  width: 386px;
}	
.music_page #new .section_inner {
  flex-wrap: wrap;
}
.music_page .new_content_left {
  display: none;
	}
.music_page .new_content_right {
  width: 100%;
	}
.music_page #new .details {
  padding: 8px 16px;
}	
.music_page #new .details .title {
  font-size: 24px;
  margin-bottom: 8px;
}
.music_page #new .details .release_date {
  font-size: 16px;
  padding-bottom: 6px;
  border-bottom: solid 2px #dcac7b;
  margin-bottom: 16px;
}
.music_page .head {
  height: 64px;
	}
.music_page #digital .head::before {
  background-size: auto 48%;
}
.music_page .head::before {
  background-size: auto 48%;
}
.music_page #vinyl .head::before {
  background-size: auto 48%;
}
.music_page .sort-buttons {
  text-align: right;
  padding: 12px 16px;
	}
.sort-buttons img {
  width: 56px;
}
.music_page .pro_ul {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 24px;
	}
.music_page .pro_li {
  width: calc((100% - 80px) /3);
}	
}
@media screen and (max-width:599px) {
.music_page .h1_page_title img {
  width: 276px;
}
.sort-buttons img {
  width: 48px;
}
.music_page .pro_ul {
  gap: 24px;
}	
.music_page .pro_li {
  width: calc((100% - 24px) /2);
}	
}

/*------------------------------------------------------
page_schedule
------------------------------------------------------*/
#schedule .section_inner {
  display: flex;
  border: solid 2px #dcac7b;
}
#schedule .eo-events li:nth-child(5) {
  border-bottom: none;
  padding-bottom: 0;
}
#schedule .eo-event-future:last-child {
  border-bottom: none;
}
@media screen and (max-width:768px) {
  #schedule .section_inner {
    display: block;
  }
  .live_page #schedule .schedule_content_left {
    width: 100%;
  }
  .live_page #schedule .schedule_content_right {
    width: 100%;
    border-left: none;
    border-top: solid 2px #dcac7b;
  }
}

/*------------------------------------------------------
page_news
------------------------------------------------------*/
.news_page .key_visual {
  background-image: url("../img/news/bg_page_title.jpg");
}
.news_page .news {
  display: flex;
  padding: 24px 0;
  border-bottom: solid 1px #dcac7b;
  gap: 24px;
}
.news_page .news dt {
  font-size: 17px;
  color: #dcac7b;
}
.news_page .news dd a{
  font-size: 17px;
  color: #dcac7b;
  text-decoration: none;
  display: block;	
}
/*single*/
.news_single .news_article {
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
}
.news_single .title_wrap {
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  font-weight: 600;
  color: #dcac7b;
}
.news_single .title_wrap {
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  font-weight: 600;
  color: #dcac7b;
  padding-bottom: 16px;
  border-bottom: solid 2px #dcac7b;
  margin-bottom: 32px;
}
.news_single .news_content p {
  font-size: 16px;
  line-height: 1.6;
  color: #dcac7b;
}
.news_single .news_content ol {
  margin-left: 2em;
}
.news_single .news_content li {
  font-size: 16px;
  line-height: 1.6;
  color: #dcac7b;
  text-indent: -1em;
  padding-left: 1em;
}
.news_single .news_content p:empty {
  display: block !important;
  margin: 1em 0 !important;
  height: 1em; /* 好きな高さ */
}

@media screen and (max-width:768px){
.news_single .title_wrap {
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}
.news_page .news {
  gap: 10px;
  flex-wrap: wrap;
}
.news_page .news dt {
width: 100%;	
  font-size: 15px;
	}
.news_page .news dd {
  width: 100%;
}
.news_page .news dd a{
  font-size: 15px;
}
.news_page .h1_page_title img {
  width: 218px;
}	
}

/*------------------------------------------------------
page_music
------------------------------------------------------*/
.music_page .key_visual {
  background-image: url("../img/music/bg_page_title.jpg");
}


/*------------------------------------------------------
page_domico
------------------------------------------------------*/
.domico_page .key_visual {
  background-image: url("../img/domico/bg_page_title.jpg");
}
.domico_page .key_v {
  text-align: center;
  margin-bottom: 40px;
}
.domico_page article {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 40px auto;
  font-size: 16px;
  line-height: 2;
  color: #dcac7b;
}
.domico_page .sns {
  display: flex;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  gap: 20px;
}
.domico_page .sns li a:hover{
opacity: 0.7;
transition: 0.5s;
}

/*------------------------------------------------------
page_contact
------------------------------------------------------*/
.contact_page .key_visual {
  background-image: url("../img/contact/bg_page_title.jpg");
}
.contact_page .content .form {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.contact_page .note {
  font-size: 16px;
  line-height: 1.6;
  color: #dcac7b;
  margin-bottom: 20px;
}
.contact_page .form input {
  width: 100%;
  border: none;
  background: #000;
  font-size: 16px;
  color: #dcac7b;	
  padding: 8px 16px;
}
.contact_page label {
  font-size: 16px;
  color: #dcac7b;
  display: block;
  margin-bottom: 8px;	
}
.contact_page textarea {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  color: #dcac7b;
  line-height: 1.6;
  background: #000;
  border: none;
}
.contact_page .form_item {
  margin-bottom: 20px;
}
.contact_page .form_item:last-child {
  margin-bottom: 0;
}
.contact_page dl{
  margin-bottom: 24px;
}
.contact_page dl dt {
  font-size: 16px;
  color: #dcac7b;
  margin-bottom: 8px;
}
.contact_page .error {
  color: red;
  font-size: 13px;
}

/*.contact_page .wpcf7-form-control.wpcf7-submit.has-spinner {
  background: #dcac7b;
  color: #000;
  max-width: 240px;
  width: 100%;
  height: 64px;
  margin: 0 auto;
  display: block;
  font-weight: 600;
  letter-spacing: 0.04em;
background-image: url("../img/arrow_di_right.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  background-size: 28px;	
}*/
.contact_page .form_submit button {
  background-color: #dcac7b;
  font-size: 18px;	
  color: #000;
  max-width: 240px;
  width: 100%;
  height: 64px;
  margin: 0 auto;
  display: block;
  font-weight: 600;
  letter-spacing: 0.04em;
  background-image: url("../img/arrow_di_right.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  background-size: 28px;
}
.contact_page .form_submit {
  margin: 40px auto 0 auto;
}
.contact_page .form_submit button:hover {
  background-position: 100% center;
  transition: 0.6s;
}
.contact_page .wpcf7-form-control.wpcf7-submit.has-spinner:hover {
  background-position: 100% center;
  transition: 0.6s;
}
.contact_page.comfirm dl {
  margin-bottom: 0;
  display: flex;
  width: 100%;
  border: solid 1px #dcac7b;
  border-top: none;
}
.contact_page.comfirm dl:nth-of-type(1) dt,.contact_page.comfirm dl:nth-of-type(1) dd {
  border-top: solid 1px #dcac7b;
}
.contact_page.comfirm dl dt {
  width: 30%;
  font-size: 16px;
  color: #dcac7b;
  margin-bottom: 0;
  border-right: solid 1px #dcac7b;
  padding: 16px;
  background: #000;
}
.contact_page.comfirm dl dd {
  width: 70%;
  font-size: 16px;
  color: #dcac7b;
  padding: 16px;
  background: #000;
}
.contact_page.comfirm .wpcf7-spinner {
  display: none;
}
.contact_page.comfirm .submit_btn_wrap {
  margin: 32px auto 0 auto;
}
.contact_page.comfirm .submit_btn_wrap br {
  display: none;
}
.contact_page.comfirm .submit_btn_wrap p {
width: 100%;	
  display: flex;
  justify-content: center;
  gap: 16px;
}
.contact_page.comfirm .contact_reset_button {
  max-width: 240px;
  width: 100%;
  height: 64px;	
  display: block;
  background-image: url("../img/arrow_back.png");
  background-repeat: no-repeat;
  background-size: 28px;
  background-position: 10px center;
}
.contact_page.comfirm .contact_submit_button {
background-color: #dcac7b;
  font-size: 18px;
  color: #000;
  max-width: 240px;
  width: 100%;
  height: 64px;
  display: block;
  font-weight: 600;
  letter-spacing: 0.04em;
  background-image: url("../img/arrow_di_right.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  background-size: 28px;	
}
.contact_submit_button_area {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;	
  margin: 40px auto 0 auto;
}
.contact_page .form_submit button {
  max-width: 240px;
  width: 100%;
  margin: inherit !important;
}
.contact_page.comfirm .wpcf7-form-control.wpcf7-previous:hover {
  background-position: 0 center;
  transition: 0.6s;
}
.contact_page.comfirm .wpcf7-form-control.wpcf7-submit.has-spinner:hover {
  background-position: 100% center;
  transition: 0.6s;
}
.complite_txt {
  font-size: 18px;
  color: #dcac7b;
}
@media screen and (max-width:768px){
.contact_page.comfirm dl {
  display: block;
}
.contact_page.comfirm dl dt {
  width: 100%;
  border-right: none;
  padding-bottom: 0;	
}
.contact_page.comfirm dl dd {
  width: 100%;
}
.contact_page.comfirm dl:nth-of-type(1) dd {
  border-top: none;
}
.contact_page.comfirm .submit_btn_wrap p {
  gap: 8px;
}
.contact_page .wpcf7-form-control.wpcf7-submit.has-spinner {
  height: 56px;
	}
}





