@charset "UTF-8";
.contents-area {
  background: #f6f6f9;
}

.page-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em 0;
    color: #fff;
    font-size: 30px;
    background: #101010;
}
.page-header span {
  display: inline-block;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 5px solid #f36;
}

.align_center {
  display: flex;
  justify-content: center;
}

.align_right {
  display: flex;
  justify-content: flex-end;
}

.pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4em auto 0;
}

.pagenation_button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 25px;
  width: 50px;
  height: 50px;
  background: #f36;
}
.pagenation_button::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
}
.pagenation_button.prev::before {
  border-left: 3px solid #fff;
  transform: translateX(30%) rotate(-45deg);
}
.pagenation_button.next::before {
  border-right: 3px solid #fff;
  transform: translateX(-30%) rotate(45deg);
}

.link_arrow {
  display: flex;
  align-items: center;
  color: #f36;
  font-weight: 600;
  text-decoration: none;
}
.link_arrow::before {
  content: '';
  display: block;
  margin-right: .5em;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.link_arrow:hover {
  text-decoration: underline;
}

.link_button {
  position: relative;
  display: flex;
  justify-content: center;
  /*align-items: center;*/
  padding: .6em 1.5em;
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  background: #f36;
  box-sizing: border-box;
  overflow: hidden;
  
  white-space: nowrap;
}
.link_button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -30%;
  width: 30%;
  height: 100%;
  background-image: linear-gradient(110deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0) 100%);
}
.link_button:hover::after {
  left: 100%;
  transition: all .2s ease-out;
}

#myc .local_nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3em auto;
}
#myc .local_nav > li {
  margin: 0 1em;
  list-style: none;
}
#myc .local_nav a {
  display: block;
  padding: 8px 10px 6px;
  color: #101010;
  font-family: 'Khand', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  background: transparent;
  transition: all .6s ease-out;
}
#myc .local_nav a:hover {
  color: #fff;
  background: #101010;
  transition: all .4s ease-out;
}
#myc .local_nav .select a {
  color: #fff;
  background: #101010;
}
#myc .note {
  font-size: 0.875em;
}
#myc .note ul {
  margin-top: .5em;
}
#myc .articles {
  padding-bottom: 125px;
}
#myc .archives_wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 40px auto 1em;
}
#myc .archives_wrap h3 {
  color: #5c5c5c;
  font-size: 24px;
}
#myc .archives_wrap .select-box {
  position: relative;
  background-image: linear-gradient(to right, #e9e9ea 0%, #e9e9ea 75%, #f36 75%, #f36 100%);
}
#myc .archives_wrap .select-box::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 12.5%;
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(50%, -70%) rotate(45deg);
}
#myc .archives_wrap .archive_list {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  padding: .5em 3em .5em 1em;
  font-size: 15px;
  background: transparent;
  border: 0;
  outline: none;
}
#myc .article_wrap + .article_wrap {
  margin-top: 4em;
}
#myc .article_wrap .date,
#myc .article_wrap .section_ttl {
  margin-bottom: 1em;
  border-bottom: 4px solid #101010;
}
#myc .article_wrap .date > span,
#myc .article_wrap .section_ttl > span {
  display: inline-block;
  padding: 6px 10px 2px;
  color: #fff;
  font-size: 17px;
  line-height: 1;
  background: #101010;
}
#myc .article_body {
  position: relative;
  padding: 90px 5.9829059829% 75px;
  background: #fff;
  border-bottom: 4px solid #e2e1e3;
}
#myc .article_body a:not([class]) {
  /*color: #101010;*/
	color: #f36;
}
#myc .article_body .title a
{
	color: #101010;
}
#myc .article_body .genre {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  color: #f36;
}
#myc .article_body .genre-item {
  padding: 5px 10px;
  font-size: 18px;
  border-top: 4px solid #f36;
}
#myc .article_body .genre-item + .genre-item {
  margin-left: 4px;
}
#myc .article_body .inner_content ul
{
	/*margin: 0;*/
	margin: 0 1.2em;
	list-style-position: outside;
}
#myc .article_body .inner_content * + h3,
#myc .article_body .inner_content * + p {
  margin-top: 1em;
}
#myc .article_body .inner_content .img-box {
  display: flex;
  justify-content: space-between;
  margin: 3em auto;
}
#myc .article_ttl {
    margin-bottom: 1.2em;
    font-size: 1.5em;
    font-weight: 700;
	line-height: 1.5em;
}
#myc .article_ttl a {
  color: #101010 !important;
  text-decoration: none;
}
#myc .article_ttl a:hover {
  text-decoration: underline;
}
#myc .tour_content {
  padding-top: 100px;
}
#myc .tour_content .button_area {
  margin-top: 65px;
}
#myc .tour_content .button_area .link_button {
  max-width: 328px;
  width: 65.3333333333vw;
}
#myc .tour_content .button_area .link_button .en {
    font-size: 20px;
}
#myc .tour_content .article_body {
    padding: 5.9829%;
}
#myc .tour_content .article_body + .article_body {
    margin-top: 0.5em;
}

#myc .tour_content .article_body * + p {
  margin: 1.5em auto 2.5em;
}
#myc .tour_content.history {
  position: relative;
  padding-bottom: 0;
}
#myc .tour_content.history .button_area {
  position: sticky;
  bottom: 0;
  left: 0;
  padding: 2.5em 0;
  width: 100%;
  background: #565c67;
}
#myc .schedule_ttl {
  margin-bottom: 1em;
  font-size: 32px;
  line-height: 1;
  text-align: center;
}
#myc .schedule_ttl > span {
  display: inline-block;
  padding: .3em .5em .2em;
  color: #fff;
  background: #101010;
}
#myc .live_ttl {
    margin-bottom: .5em;
    font-size: 28px;
    line-height: 1.4;
    font-weight: bold;
}
#myc .upcoming .live_ttl {
    /*font-size: 44px;*/
    line-height: 1.1em;
    text-align: center;
    margin-bottom: 30px;
	
	font-family: Helvetica Neue, Helvetica, -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
	font-size: 2em;
}
#myc .live_table {
  width: 100%;
  color: #fff;
  border-left: 1px solid #636363;
}
#myc .live_table tr:not(:last-child) {
  border-bottom: 1px solid #636363;
}
#myc .live_table th, #myc .live_table td {
  padding: .8em .3em;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
}
#myc .live_table th:not(:last-child), #myc .live_table td:not(:last-child) {
  border-right: 1px solid #636363;
}
#myc .live_table th {
  background: #000;
}
#myc .live_table td {
  background: #454956;
}
#myc .live_table + .align_right {
  margin-top: 1.5em;
}
#myc .live_history {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3em;
}
#myc .live_history .year {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  background: #101010;
}
#myc .live_history .article_wrap {
  width: 91.8803418803%;
}
#myc .live_history .article_body p {
    margin-top: 1em;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: -1.3em;
}
#myc .live_history .article_body {
    padding-top: 3.9829%;
    padding-right: 5.9829%;
    padding-left: 5.9829%;
    padding-bottom: 3.9829%;
}
#myc .live_history .imgs-box {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5em;
}
#myc .live_history .imgs-box img {
  width: 48.6631016043%;
}
#myc .live_history .align_right {
  margin-top: 1.5em;
}
#myc .live_history .link_button .en {
  margin-right: .3em;
  font-size: 1.2em;
  line-height: 1;
  vertical-align: top;
}
#myc .tour_archive .schedule_wrap {
  display: flex;
  justify-content: space-between;
}
#myc .tour_archive .schedule {
  margin-top: 0;
  width: 60.1941747573%;
}
#myc .tour_archive .schedule li {
  list-style: none;
}
#myc .tour_archive .schedule li + li {
  margin-top: .3em;
}
#myc .tour_archive .pic_wrap {
  width: 36.8932038835%;
}
#myc .tour_archive .pic_wrap img {
  width: 100%;
}
#myc .tour_archive .pic_wrap img + img {
  margin-top: 1.5em;
}
#myc .tour_archive .button_area .link_button {
  width: auto;
}

#myc .tour_archive .schedule-table td
{
	white-space: nowrap;
}
#myc .tour_archive .schedule-table td.hall
{
	white-space: inherit;
}
#myc .tour_archive .schedule-table td+td
{
	padding-left: 1.6em;
}

#myc .music_area {
  display: flex;
  justify-content: space-between;
}
#myc .music_area .cover_block {
  width: 33.9805825243%;
}
#myc .music_area .summary_block {
  width: 63.5922330097%;
}
#myc .music_area .summary_block h3 {
    font-size: 26px;
    font-weight: bold;
}
#myc .music_area .summary_block h4 {
    font-size: 18px;
    line-height: 2em;
}
#myc .music_area .summary_block * + p,
#myc .music_area .summary_block * + .section_ttl {
  margin-top: 1em;
}
#myc .music_area .summary_block .link_button {
  display: inline-block;
}
#myc .music_area ol {
  margin-top: 0;
  padding-left: 2em;
  list-style: decimal-leading-zero;
}
#myc .music_area ol > li + li {
  margin-top: .3em;
}
#myc .music_area .button_list {
  display: flex;
  flex-wrap: wrap;
}
#myc .music_area .button_list > li {
  margin-right: 3.6641221374%;
  margin-bottom: 3.6641221374%;
  width: 30.8396946565%;
  list-style: none;
}
#myc .music_area .button_list > li:nth-child(3n) {
  margin-right: 0;
}
#myc .music_area .button_list .link_button {
    display: block;
    font-size: 18px;
    text-align: center;
}
#myc .list_wrapper {
  overflow: hidden;
}
#myc .works_list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -2.1367521368%;
  width: 102.3076923077%;
}
#myc .works_list > .tmb_wrap {
  margin: 0 2.0885547201% 2.0885547201% 0;
  width: 146px;
  opacity: 0;
}
#myc .works_list > .tmb_wrap.show {
  opacity: 1;
  transition: all 0.8s cubic-bezier(0.55, 0.06, 0.68, 0.19);
}
#myc .works_list > .tmb_wrap a {
  color: #101010;
  text-decoration: none;
}
#myc .works_list > .tmb_wrap a:hover {
  text-decoration: underline;
}
#myc .works_list ul {
  list-style: none;
}

#myc .works_list ul li:first-child
{
	font-weight: 500;
	color: #777;
	font-size: 0.9em;
}
#myc .works_list ul li:last-child
{
	font-weight: 700;
}

#myc .detail .article_body {
  position: relative;
  padding: 5.9829059829%;
  background: #101010;
}
#myc .detail .section_ttl {
  margin-top: 1.5em;
  border-bottom-color: #fff;
}
#myc .detail .section_ttl > span {
  color: #101010;
  background: #fff;
}
#myc .detail .bg_wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
#myc .detail .bg_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .1;
}
#myc .detail .music_area {
  position: relative;
  z-index: 1;
  color: #fff;
}
#myc .detail .cover_block ul, #myc .detail .cover_block ol {
  list-style: none;
}
#myc .detail .cover_block .track_list {
  padding: 0;
  width: 100%;
}
#myc .detail .cover_block .track_list > li {
  padding: .4em 0 .2em;
  line-height: 1.4;
}
#myc .detail .cover_block .track_list > li + li {
  border-top: 1px solid #656565;
}
#myc .detail .cover_block .shop_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#myc .detail .cover_block .shop_list > li {
  margin-bottom: 4%;
  width: 48%;
}
#myc .summary_block .label_area {
  margin-bottom: 1em;
}
#myc .summary_block .label {
  display: inline-block;
  padding: .3em .6em .2em;
  color: #101010;
  font-size: 17px;
  line-height: 1;
  background: #fff;
}
#myc .detail .summary_block .copy {
  margin-top: 1.5em;
}
#myc .detail .summary_block .copy h4 {
  font-size: 16px;
}
#myc .detail .summary_block .copy * + p {
  margin-top: 2em;
}
#myc .detail .summary_block .notes {
  margin-top: 3em;
}
#myc .detail .songinfo {
  font-size: 14px;
}
#myc .bio {
    padding-top: 100px;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 125px;
}
#myc .bio .article_wrap > div + div {
  margin-top: 3.5em;
  padding-top: 3.5em;
  border-top: 1px solid #ddd;
}
#myc .bio h3 {
    margin-bottom: 1.5em;
    font-size: 26px;
    font-weight: 600;
}
#myc .bio .lang_ja {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-bottom: 4em;
}
#myc .bio .lang_ja .img_wrap {
  margin-top: 100px;
  width: 50%;
}
#myc .bio .lang_ja .text_wrap
{
    box-sizing: border-box;
    padding-right: 40px;
    width: 50%;
}
#myc .bio .lang_ja h3 {
    margin-bottom: auto;
    font-size: 60px;
    font-weight: 400;
    line-height: .85;
}
#myc .bio .lang_ja h3 + p {
  margin-top: 3em;
}
#myc .bio .lang_ja p {
  /*line-height: 1.8;*/
}
#myc .bio .article_wrap p + p {
  margin-top: 2em;
}
#myc .bio .lang_en, #myc .bio .lang_ch {
  line-height: 1.85em;
}
#myc .fans {
  padding-top: 100px;
}
#myc .fans ul,
#myc .fans ol {
  padding-left: 2em;
  list-style-position: outside;
}
#myc .fans ul > li,
#myc .fans ol > li {
  margin-top: .3em;
}
#myc .fans .article_body {
  padding: 5.9829059829%;
}
#myc .fans .fans_ttl {
  font-size: 50px;
  line-height: 1;
}
#myc .fans .link_button {
  display: inline-block;
}
#myc .fans .button_list {
  padding-left: 0;
  list-style: none;
}
#myc .fans .button_list.hr {
  display: flex;
  margin: 2em auto 3em;
}
#myc .fans .button_list.hr > li + li {
  margin-left: 1em;
}
#myc .fans .button_list.vr > li + li {
  margin-top: 1em;
}
#myc .fans .note-list {
  counter-reset: num;
  margin-top: 3em;
  padding-left: 0;
  font-size: 0.875em;
}
#myc .fans .note-list > li {
  display: flex;
}
#myc .fans .note-list > li::before {
  content: "※" counter(num) "：";
  counter-increment: num;
  margin-right: .1em;
}
#myc .fans .lounge_wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-bottom: 1.5em;
}
#myc .fans .lounge_wrap .img_wrap {
  width: 36.3106796117%;
  border: 1px solid #c8c8c8;
  box-sizing: border-box;
}
#myc .fans .lounge_wrap .text_wrap {
  width: 61.1650485437%;
}
#myc .fans .app_wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
#myc .fans .app_wrap .img_wrap {
  width: 47.3786407767%;
}
#myc .fans .app_wrap .text_wrap {
  width: 50%;
}
#myc .fans.howto * + .inner_content {
  margin-top: 5.8252427184%;
  padding-top: 5.8252427184%;
  border-top: 1px solid #c8c8c8;
}
#myc .fans.howto .inner_content > h3 {
  font-weight: 600;
}
#myc .fans.howto .inner_content > * + p,
#myc .fans.howto .inner_content > * + ul {
  margin-top: 2em;
}
#myc .fans.howto .button_area {
  margin-top: 65px;
}
#myc .fans.law * + .inner_content {
  margin-top: 2.5em;
  padding-top: 2.5em;
  border-top: 1px solid #c8c8c8;
}
#myc .fans.law .inner_content > h3 {
  font-weight: 600;
}
#myc .fans.law .inner_content > * + p,
#myc .fans.law .inner_content > * + ul {
  margin-top: .5em;
}
#myc .fans.law .button_area {
  margin-top: 65px;
}
#myc .fans .howto_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5em;
}
#myc .fans .howto_wrap .img_wrap {
  width: 14.2718446602%;
}
#myc .fans .howto_wrap .img_wrap img {
  max-width: 147px;
}
#myc .fans .howto_wrap .img_wrap img + img {
  margin-top: 10px;
}
#myc .fans .howto_wrap .text_wrap {
  width: 81.5533980583%;
}
#myc .fans .howto_wrap h4
{
	margin-top: inherit;
  font-size: 20px;
  font-weight: 600;
}
#myc .fans.benefit {
  color: #fff;
}
#myc .fans.benefit .article_body {
  background: #000;
}
#myc .fans.benefit .article_body .inner_wrap {
  margin: 0 auto;
  max-width: 980px;
  width: 100%;
}
#myc .fans.benefit .button_list {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 720px;
}
#myc .fans.benefit .button_list > li {
  width: 45.5555555556%;
}
#myc .fans.benefit .button_list .link_button {
  display: flex;
  padding: 1em;
  font-size: 18px;
}
#myc .fans .article_header a {
  display: block;
  margin: 0 auto;
  max-width: 980px;
  width: 100%;
}
#myc .fans .article_header a img {
  width: 100%;
  height: auto;
  object-fit: 'cover';
}
#myc .fans .article_header {
  margin: 0 auto 60px;
}
#myc .fans .article_content .info {
  text-indent: -5000px;
  font-size: 0;
  font-size: inherit;
  padding-top: 30.612244898%;
  width: 100%;
  height: 0;
  background: url(../images/fans/benefit/info.png) no-repeat 50%;
  background-size: contain;
}
#myc .fans div.info {
  text-indent: -5000px;
  font-size: 0;
  font-size: inherit;
  padding-top: 40.8163265306%;
  background: url(../images/fans/benefit/info.png) no-repeat 50%;
}
#myc .fans div.info * {
  display: none;
}
#myc .fans #section {
  padding-top: 15.306122449%;
  text-indent: -5000px;
  font-size: 0;
  font-size: inherit;
  background: url(../images/fans/benefit/title1.png) no-repeat 50% 0;
  background-size: contain;
  width: 100%;
}
#myc .fans .left,
#myc .fans .right {
  text-indent: -5000px;
  font-size: 0;
  font-size: inherit;
  padding-top: 40.8163265306%;
  position: relative;
  width: 100%;
}
#myc .fans .subinfo {
  display: none;
}
#myc .fans a#card {
  display: block;
  padding-top: 5.1020408163%;
  width: 30.612244898%;
  height: 0;
  position: absolute;
  bottom: 35.7142857143%;
  left: 12.2448979592%;
  background: #000;
  opacity: 0;
  transition: all .2s ease-out;
}
#myc .fans a#card:hover {
  opacity: .3;
}
#myc .fans .left img {
  position: absolute;
  top: 0;
  right: -3.0612244898%;
}
#myc .fans .right img {
  position: absolute;
  top: 0;
  left: 0;
}
#myc .fans #sub01 {
  background: url(../images/fans/benefit/sub01.png) no-repeat top left;
  background-size: 61.2244897959% auto;
}
#myc .fans #sub01 img {
  width: 36.5306122449%;
}
#myc .fans #sub03 {
  background: url(../images/fans/benefit/sub03.png) no-repeat top left;
  background-size: 50.2040816327% auto;
}
#myc .fans #sub03 img {
  width: 41.4285714286%;
}
#myc .fans #sub05 {
  background: url(../images/fans/benefit/sub05.png) no-repeat center left;
  background-size: 45.9183673469% auto;
}
#myc .fans #sub05 img {
  width: 44.0816326531%;
}
#myc .fans #sub07 {
  background: url(../images/fans/benefit/sub07.png) no-repeat top left;
  background-size: 48.5714285714% auto;
}
#myc .fans #sub07 img {
  width: 43.1632653061%;
}
#myc .fans #sub02 {
  background: url(../images/fans/benefit/sub02.png) no-repeat top right;
  background-size: 54.7959183673% auto;
}
#myc .fans #sub02 img {
  width: 36.9387755102%;
}
#myc .fans #sub04 {
  background: url(../images/fans/benefit/sub04.png) no-repeat top right;
  background-size: 54.0816326531% auto;
}
#myc .fans #sub04 img {
  width: 37.6530612245%;
}
#myc .fans #sub06 {
  background: url(../images/fans/benefit/sub06.png) no-repeat top right;
  background-size: 59.8979591837% auto;
}
#myc .fans #sub06 img {
  width: 31.8367346939%;
}
#myc .fans .btn-zone a {
  display: block;
  width: 335px;
  height: 87px;
  float: left;
  margin: 40px 40px 40px 90px;
  font-size: 0;
  font-size: inherit;
  text-indent: -5000px;
}
#myc .fans .btn-zone {
  width: 980px !important;
}
#myc .fans .btn-zone a#join {
  background: url(../images/fans/benefit/bt02.png) no-repeat center;
}
#myc .fans .btn-zone a#continue {
  background: url(../images/fans/benefit/bt03.png) no-repeat center;
}
#myc .fans .btn-zone a:hover {
  background-color: #fff;
}
#myc .fans .footer-info {
  display: flex;
  justify-content: space-between;
  margin-top: 110px;
  padding: 1.5em 0;
  width: 100%;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
#myc .fans .footer-info * {
  box-sizing: border-box;
}
#myc .fans .footer-info .info_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  padding: 0 1.5em;
  width: 33.3333333333%;
  font-size: 12px;
}
#myc .fans .footer-info .info_wrap + .info_wrap {
  border-left: 1px solid #fff;
}
#myc .fans .footer-info .info_wrap:first-child {
  text-align: center;
}
#myc .fans .footer-info .info_wrap h4 span {
  display: block;
}
#myc .fans .footer-info .info_wrap h4 strong {
  font-size: 2em;
}
#myc .fans .footer-info .info_wrap p + p {
  margin-top: 1em;
}
