#ymc_header.ymc_header {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 62px;
  padding: 0 20px;
  background: #fff;
  border-bottom: 1px solid rgba(140, 140, 140, 0.2);
}
@media screen and (min-width: 769px) {
  #ymc_header.ymc_header {
    height: 80px;
    padding: 0 40px;
  }
}

.ymm_plus #ymc_header.ymc_header {
  background-color: #000000;
  border-bottom: none;
}

#ymc_header .ymc_header_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  border: 0;
}
@media screen and (min-width: 769px) {
  #ymc_header .ymc_header_button {
    width: 44px;
    height: 44px;
  }
}
#ymc_header .ymc_header_button--open::before {
  display: block;
  width: 16px;
  height: 2px;
  padding: 3px 0;
  content: "";
  background-color: #4b1e78;
  background-clip: content-box;
  border-top: 2px solid #4b1e78;
  border-bottom: 2px solid #4b1e78;
  box-sizing: content-box;
}
@media screen and (min-width: 769px) {
  #ymc_header .ymc_header_button--open::before {
    width: 44px;
    height: 4px;
    padding: 10px 0;
    border-top: 4px solid #4b1e78;
    border-bottom: 4px solid #4b1e78;
  }
}
#ymc_header .ymc_header_button--close {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
#ymc_header .ymc_header_button--close::before, #ymc_header .ymc_header_button--close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  content: "";
  background-color: #4b1e78;
}
@media screen and (min-width: 769px) {
  #ymc_header .ymc_header_button--close::before, #ymc_header .ymc_header_button--close::after {
    width: 27px;
    height: 4px;
  }
}
#ymc_header .ymc_header_button--close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#ymc_header .ymc_header_button--close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.ymm_plus #ymc_header .ymc_header_button--open:before {
  background-color: #fff;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
@media screen and (min-width: 769px) {
  .ymm_plus #ymc_header .ymc_header_button--open:before {
    border-top: 4px solid #fff;
    border-bottom: 4px solid #fff;
  }
}

#ymc_header .ymc_header_menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  display: none;
  width: 100%;
  height: 100%;
  overflow: auto;
  opacity: 0;
  transition: display 0.5s allow-discrete, opacity 0.5s ease-in-out;
}
#ymc_header .ymc_header_menu::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5019607843);
  z-index: -1;
  transform: translateZ(0);
  will-change: transform;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
#ymc_header .ymc_header_menu.is-act {
  display: block;
  opacity: 1;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#ymc_header .ymc_header_menu.is-act::before {
  opacity: 1;
}
#ymc_header .ymc_header_menu.is-act::-webkit-scrollbar {
  display: none;
}
@starting-style {
  #ymc_header .ymc_header_menu.is-act {
    opacity: 0;
  }
}
#ymc_header .ymc_header_menu.is-act .ymc_header_inner {
  opacity: 1;
  transform: translateX(0);
}
@starting-style {
  #ymc_header .ymc_header_menu.is-act .ymc_header_inner {
    opacity: 0;
    transform: translateX(-100%);
  }
}

#ymc_header .ymc_header_inner {
  width: 88%;
  min-width: 331px;
  max-width: 410px;
  min-height: 100dvh;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(-100%);
  transition: display 0.5s allow-discrete, transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

#ymc_header .ymc_header_heading {
  position: relative;
  padding: 24px 16px;
  text-align: center;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  #ymc_header .ymc_header_heading {
    padding: 32px 24px;
  }
}
#ymc_header .ymc_header_heading_img {
  width: 190px;
  height: auto;
}
@media screen and (min-width: 769px) {
  #ymc_header .ymc_header_heading_img {
    width: 225px;
  }
}

#ymc_header .ymc_header_nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#ymc_header .ymc_header_nav::-webkit-scrollbar {
  display: none;
}
#ymc_header .ymc_header_nav_heading {
  padding: 16px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.75;
  color: rgba(25, 29, 31, 0.8);
  background-color: rgba(140, 140, 140, 0.2);
  border-top: 1px solid rgba(140, 140, 140, 0.2);
  border-bottom: 1px solid rgba(140, 140, 140, 0.2);
}
@media screen and (min-width: 769px) {
  #ymc_header .ymc_header_nav_heading {
    padding: 16px 24px;
    font-size: 16px;
  }
}

#ymc_header .ymc_header_nav_mypage {
  position: relative;
  display: block;
  padding: 16px 16px 16px 48px;
  font-size: 14px;
  line-height: 1.75;
  color: #000000;
  transition: 0.3s ease;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  #ymc_header .ymc_header_nav_mypage {
    font-size: 16px;
  }
}
#ymc_header .ymc_header_nav_mypage::before {
  position: absolute;
  top: 50%;
  left: 24px;
  display: block;
  width: 7px;
  height: 12px;
  content: "";
  background-image: url("../img/common_mc/icon_arrow_purple.svg");
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  #ymc_header .ymc_header_nav_mypage::before {
    left: 32px;
  }
}
@media (hover: hover) and (pointer: fine) {
  #ymc_header .ymc_header_nav_mypage:hover {
    background: #eeeeee;
  }
}

#ymc_header .ymc_header_auth {
  margin: 16px 25px;
}
#ymc_header .ymc_header_auth_button {
  display: block;
  width: 280px;
  padding: 20px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #4b1e78;
  text-align: center;
  border: 2px solid #4b1e78;
  background-color: transparent;
  transition: 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  #ymc_header .ymc_header_auth_button:hover {
    background: #eeeeee;
  }
}

#ymc_header .ymc_header_list_link {
  display: block;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #000000;
  border-top: 1px solid rgba(140, 140, 140, 0.2);
  transition: 0.3s ease;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  #ymc_header .ymc_header_list_link {
    padding: 16px 24px;
    font-size: 18px;
  }
}
@media (hover: hover) and (pointer: fine) {
  #ymc_header .ymc_header_list_link:hover {
    background: #eeeeee;
  }
}

#ymc_header .ymc_header_about {
  padding: 20px 16px 120px 16px;
  background-color: rgba(214, 164, 234, 0.4);
  flex-grow: 1;
}
@media screen and (min-width: 769px) {
  #ymc_header .ymc_header_about {
    padding: 20px 24px 120px 24px;
  }
}
#ymc_header .ymc_header_about_list {
  margin-bottom: 24px;
}
#ymc_header .ymc_header_about_list_link {
  display: block;
  padding: 12px 12px 12px 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(25, 29, 31, 0.8);
  transition: 0.3s ease;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  #ymc_header .ymc_header_about_list_link {
    font-size: 16px;
  }
}
@media (hover: hover) and (pointer: fine) {
  #ymc_header .ymc_header_about_list_link:hover {
    color: #000000;
  }
}
#ymc_header .ymc_header_about_banner_link {
  display: block;
  transition: 0.3s ease;
}
#ymc_header .ymc_header_about_banner_link:not(:last-child) {
  margin-bottom: 16px;
}
#ymc_header .ymc_header_about_banner_img {
  width: 100%;
  height: auto;
  transition: 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  #ymc_header .ymc_header_about_banner_img:hover {
    background-color: #fff;
    opacity: 0.65;
  }
}

#ymc_header .header__siteLogo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 190px;
  height: 17px;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 769px) {
  #ymc_header .header__siteLogo {
    width: 324px;
    height: 29px;
  }
}

#ymc_header .ymc_header_sitelogo_link {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  text-indent: -9999px;
  background-image: url("../img/common_mc/ymc_logo.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.ymm_plus #ymc_header .header__siteLogo {
  width: 56vw;
  max-width: 240px;
  min-width: 200px;
}
@media screen and (min-width: 769px) {
  .ymm_plus #ymc_header .header__siteLogo {
    width: 270px;
    max-width: none;
    min-width: none;
    height: 58px;
  }
}

.ymm_plus #ymc_header .ymc_header_sitelogo_link {
  background-image: url("../img/common/logo_YAMAHAMUSICMEMBERSPLUS-h_white.svg");
}

#ymc_header .ymc_header_mainlogo {
  display: none;
}
@media screen and (min-width: 769px) {
  #ymc_header .ymc_header_mainlogo {
    display: block;
    margin-left: auto;
    width: 140px;
    height: 80px;
    text-indent: -9999px;
    background: url("../img/common/yamaha_purple.svg") no-repeat;
    background-size: 100% auto;
  }
}
#ymc_header .ymc_header_mainlogo_link {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 769px) {
  .ymm_plus #ymc_header .ymc_header_mainlogo {
    background: url("../img/common/yamaha_white.svg") no-repeat;
    background-size: 100% auto;
  }
}

#ymc_footer .ymc_footer_top_inner {
  gap: 15px;
}

#ymc_footer .ymc_footer_inner {
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  #ymc_footer .ymc_footer_inner {
    padding-top: 36px !important;
  }
}

#ymc_footer .footer__siteLogo {
  max-width: none;
  margin-bottom: 32px !important;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #ymc_footer .footer__siteLogo {
    margin-bottom: 0 !important;
    text-align: left;
  }
}

#ymc_footer .ymc_footer_logo_link {
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #ymc_footer .ymc_footer_logo_link {
    padding: 12px 13px 12px 0;
  }
}

@media screen and (max-width: 768px) {
  #ymc_footer .ymc_footer_logo_link .footer__top {
    max-width: 202px;
  }
}

#ymc_footer .ymc_footer_accordion {
  width: 100%;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  margin-bottom: -1px;
  padding-bottom: 10px;
}
@media screen and (min-width: 769px) {
  #ymc_footer .ymc_footer_accordion {
    width: auto;
    padding-bottom: 0;
    border: none;
  }
}

#ymc_footer .ymc_footer_accordion_target {
  margin-top: 6px;
  margin-bottom: 3px;
}
@media screen and (min-width: 769px) {
  #ymc_footer .ymc_footer_accordion_target {
    margin-top: 0;
    margin-bottom: 0px;
  }
}

#ymc_footer .ymc_footer_accordion_icon {
  position: absolute;
  top: 22px;
  width: 16px;
  height: 16px;
  right: 14px;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  #ymc_footer .ymc_footer_accordion_icon {
    display: none;
  }
}
#ymc_footer .ymc_footer_accordion_icon::before, #ymc_footer .ymc_footer_accordion_icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #707070;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
#ymc_footer .ymc_footer_accordion_icon::after {
  transform: translateY(-50%) rotate(90deg);
}

#ymc_footer .is-open .ymc_footer_accordion_icon::after {
  opacity: 0;
  transform: translateY(-50%);
}

#ymc_footer .ymc_footer_lv1 {
  width: 100%;
  padding: 0;
  font-weight: 700;
  line-height: 1.75;
  color: #fff;
  background-color: transparent;
  position: relative;
  font-size: 13px;
  padding: 12px 32px 0 8px;
  margin: 0;
  pointer-events: initial;
  text-align: left;
}
@media screen and (min-width: 769px) {
  #ymc_footer .ymc_footer_lv1 {
    font-size: 15px;
    padding: 0;
    margin-bottom: 28px;
    pointer-events: none;
  }
}

#ymc_footer .ymc_footer_lv2 {
  line-height: 1.75;
  font-size: 13px;
  padding: 0;
}
@media screen and (min-width: 769px) {
  #ymc_footer .ymc_footer_lv2 {
    margin-bottom: 8px;
  }
}
#ymc_footer .ymc_footer_lv2_link {
  display: block;
  padding: 9px 8px;
}
@media screen and (min-width: 769px) {
  #ymc_footer .ymc_footer_lv2_link {
    padding: 2px 0;
  }
}

#ymc_footer .ymc_footer_policy {
  width: 100%;
  border-top: 1px solid #707070;
  padding-top: 13px;
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  #ymc_footer .ymc_footer_policy {
    width: auto;
    padding-top: 0;
    border: none;
  }
}

#ymc_footer .ymc_footer_copyright {
  justify-content: center;
  max-width: 343px;
  text-align: center;
  font-size: 12px;
  line-height: 1.75;
  color: rgba(25, 29, 31, 0.8);
  word-break: break-word;
}
@media screen and (min-width: 769px) {
  #ymc_footer .ymc_footer_copyright {
    max-width: 262px;
    margin: 0;
    text-align: left;
  }
}

#ymc_footer .ymc_footer_licence {
  max-width: 244px;
  line-height: 1.75;
  color: rgba(25, 29, 31, 0.8);
}

/* main header override (YMC) */
.pageKv,
#ymm_wrap .main_uhd,
#ymm_wrap .modArticleHeader--contents {
  background: #4b1e78;
  background-image: linear-gradient(45deg, #b23a93 0%, #6a41ce 50%, #9a45a4 100%);
  text-shadow: 0 1px 8px rgba(40, 16, 64, 0.45);
}

.pageKv__imgBox {
  display: none;
}