:root {
  --color-yamaha-violet: #4B1E78;
  --color-dark-violet: #26193A;
  --color-bright-violet: #7B47D2;
  --color-bright-violet-80: #956CDB;
  --color-bright-violet-60: #B091E4;
  --color-light-violet: #D6A4EA;
  --color-light-violet-40: #EFDBF7;
  --color-dark-gray: #191D1F;
  --color-light-gray-20: #E8E8E8;
  --color-card-bg: #F8F8F8;
  --color-gray-40: #D1D1D1;
  --color-white: #FFFFFF;
}

.electoneday2026 {
  color: var(--color-dark-gray);
}

.electoneday2026 .container-fluid {
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
  padding: 0;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .electoneday2026 .container-fluid {
    padding-inline: 20px;
  }
}

@media screen and (max-width: 767px) {
  .electoneday2026 .container-fluid {
    padding-inline: 10px;
  }
}

.electoneday2026 section {
  position: relative;
}

@media screen and (max-width: 767px) {
  .u-br-pc {
    display: none;
  }
}

/* ------------------------------------------------------------------
   共通：ピル型ボタン・矢印アイコン
------------------------------------------------------------------ */

.icon-arrow-right {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.icon-arrow-down {
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  margin: 0 auto;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 30px;
  background-color: var(--color-yamaha-violet);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.btn-more:hover,
.btn-more:focus {
  opacity: 0.7;
  color: var(--color-white);
  text-decoration: none;
}

.btn-coming-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 30px;
  background-color: var(--color-gray-40);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 30px;
  background-color: var(--color-white);
  color: var(--color-yamaha-violet);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.btn-pill:hover,
.btn-pill:focus {
  opacity: 0.7;
  color: var(--color-yamaha-violet);
  text-decoration: none;
}

.ed-section-heading {
  margin: 0 0 40px;
}

.ed-section-heading img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 100%;
}

@media screen and (max-width: 599px) {
  .ed-section-heading img {
    height: 32px;
  }
}

/* ------------------------------------------------------------------
   MV + アンカーナビ
------------------------------------------------------------------ */

.ed-mv {
  padding-top: 0;
}

.ed-mv__image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.ed-anchor-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.ed-anchor-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 17px 10px;
  border-radius: 10px;
  background-color: var(--color-yamaha-violet);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.ed-anchor-nav__item:hover,
.ed-anchor-nav__item:focus {
  opacity: 0.8;
  text-decoration: none;
}

.ed-anchor-nav__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.ed-anchor-nav__ja {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
  text-align: center;
}

.ed-anchor-nav__en {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-light-violet);
  letter-spacing: 0.1em;
  text-align: center;
}

.ed-anchor-nav__icon {
  width: 110px;
  max-width: 100%;
  height: auto;
  display: block;
}

.ed-anchor-nav__caret {
  color: var(--color-white);
}

@media screen and (max-width: 767px) {
  .ed-anchor-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .ed-anchor-nav__item {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
  }
  .ed-anchor-nav__label {
    flex: 1;
    min-width: 0;
    align-items: flex-start;
  }
  .ed-anchor-nav__ja {
    font-size: 15px;
    text-align: left;
  }
  .ed-anchor-nav__en {
    text-align: left;
  }
  .ed-anchor-nav__icon {
    order: -1;
    width: 40px;
    flex-shrink: 0;
  }
}

/* ------------------------------------------------------------------
   WHAT'S ELECTONE DAY?
------------------------------------------------------------------ */

.ed-about {
  padding: 40px 0;
}

.u-bg-pattern-divider {
  width: 100%;
  height: 10px;
  background-image: url('../../images/bg-pattern_divider.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.ed-about__inner {
  display: flex;
  gap: 70px;
  padding: 30px 0;
}

.ed-about__heading {
  flex: 0 0 375px;
  margin: 0;
}

.ed-about__heading img {
  display: block;
  width: 100%;
  max-width: 373px;
  height: auto;
}

.ed-about__body {
  flex: 1;
}

.ed-about__lead {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-yamaha-violet);
  line-height: 1.4;
  margin: 0 0 20px;
}

.ed-about__body p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.ed-about__body p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 991px) {
  .ed-about__inner {
    flex-direction: column;
    gap: 20px;
  }
  .ed-about__heading {
    flex-basis: auto;
  }
}

/* ------------------------------------------------------------------
   EVENT CONTENTS
------------------------------------------------------------------ */

.ed-contents {
  padding: 60px 0;
}

.ed-category {
  display: flex;
  border: 1px solid var(--color-gray-40);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 24px;
  scroll-margin-top: 20px;
}

.ed-category:last-child {
  margin-bottom: 0;
}

.ed-category__side {
  flex: 0 0 220px;
  background-color: var(--color-yamaha-violet);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px;
  text-align: center;
}

.ed-category__icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background-color: var(--color-white);
  display: block;
}

.ed-category__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
  margin: 0;
}

.ed-category__en {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-light-violet);
  letter-spacing: 0.1em;
  margin: 0;
}

.ed-category__main {
  flex: 1;
  min-width: 0;
  padding: 24px;
}

.ed-category__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.ed-category__heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark-gray);
  line-height: 1.3;
  margin: 0 0 12px;
}

.ed-category__desc {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.ed-category__deco {
  flex: 0 0 auto;
  width: 160px;
  max-width: 30%;
  height: auto;
  display: block;
}

.ed-category__note {
  font-size: 13px;
  color: var(--color-dark-gray);
  margin: 20px 0 0;
}

@media screen and (max-width: 991px) {
  .ed-category {
    flex-direction: column;
  }
  .ed-category__side {
    flex: 0 0 auto;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    text-align: left;
  }
  .ed-category__label {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .ed-category__head {
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
  }
  .ed-category__deco {
    align-self: center;
    max-width: 120px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .ed-category__main {
    padding: 15px;
  }
}

/* イベントカード（聴く：写真＋詳しくはこちら） */

.ed-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.ed-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 16px 24px 14px;
  background-color: var(--color-card-bg);
  border-left: 2px solid var(--color-bright-violet);
  border-radius: 8px;
}

@media screen and (max-width: 767px) {
  .ed-card {
    padding: 16px 16px 24px;
    border-left: none;
    border-top: 2px solid var(--color-bright-violet);
  }
}

.ed-card__time {
  display: block;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--color-light-gray-20);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.ed-card__time-value {
  display: block;
  color: var(--color-dark-gray);
}

.ed-card__place {
  display: block;
  color: var(--color-bright-violet);
}

.ed-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-dark-gray);
  line-height: 1.3;
  margin: 0;
}

.ed-card__photo {
  display: block;
  width: 100%;
  max-width: 194px;
  height: auto;
}

.ed-card__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.ed-card__meta p {
  margin: 0;
  font-size: 13px;
  line-height: 1.3;
}

.ed-card__meta .is-small {
  font-size: 11px;
}

.ed-card .btn-more,
.ed-card .btn-coming-soon {
  align-self: center;
  margin-top: auto;
}

@media screen and (max-width: 991px) {
  .ed-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .ed-card__photo {
    max-width: 100%;
  }
}

@media screen and (max-width: 599px) {
  .ed-cards {
    grid-template-columns: 1fr;
  }
}

/* 弾く：シンプルカード（写真・ボタンなし） */

.ed-cards--plain {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ed-card--plain {
  gap: 12px;
  padding: 16px;
}

@media screen and (max-width: 991px) {
  .ed-cards--plain {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 599px) {
  .ed-cards--plain {
    grid-template-columns: 1fr;
  }
}

/* 体験する：1枚の横長カード */

.ed-touch-cards {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
  align-items: start;
}

.ed-touch-card {
  padding: 16px 16px 16px 14px;
  background-color: var(--color-card-bg);
  border-left: 2px solid var(--color-bright-violet);
  border-radius: 8px;
}

@media screen and (max-width: 767px) {
  .ed-touch-card {
    padding: 16px;
    border-left: none;
    border-top: 2px solid var(--color-bright-violet);
  }
}

.ed-touch-card__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}

.ed-touch-card__col {
  flex: 1;
  min-width: 0;
}

.ed-touch-card__col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-dark-gray);
  margin: 0 0 8px;
}

.ed-touch-card__col p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 16px;
}

.ed-touch-card__col p:last-child {
  margin-bottom: 0;
}

.ed-touch-card__photos {
  width: 100%;
  max-width: 366px;
  margin-inline: auto;
}

.ed-els03-lineup {
  width: 100%;
  max-width: 366px;
  height: auto;
  display: block;
  margin: 0 auto 8px;
}

.ed-els03-lineup--duo {
  max-width: 232px;
}

.ed-touch-card__caption {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-yamaha-violet);
  text-align: center;
  margin: 0;
}

@media screen and (max-width: 991px) {
  .ed-touch-cards {
    grid-template-columns: 1fr;
  }
  .ed-els03-lineup--duo {
    width: 63.4%;
  }
}

/* 学ぶ・語る：タグ付きカード */

.ed-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 24px;
  background-color: var(--color-light-violet-40);
  color: var(--color-dark-gray);
  font-size: 12px;
  font-weight: 700;
}

.ed-card__apply {
  font-size: 13px;
  margin: 0;
}

/* ------------------------------------------------------------------
   ELS-03 Series EXPERIENCE
------------------------------------------------------------------ */

.ed-els03 {
  padding: 60px 0;
}

.ed-els03-card {
  border: 1px solid var(--color-yamaha-violet);
  border-radius: 14px;
  overflow: hidden;
}

.ed-els03__hero {
  background-color: var(--color-yamaha-violet);
  color: var(--color-white);
  padding: 60px 20px;
}

.ed-els03__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  max-width: 1086px;
  margin: 0 auto;
}

.ed-els03__text {
  flex: 0 0 580px;
  max-width: 100%;
}

.ed-els03__heading {
  margin: 0 0 20px;
}

.ed-els03__heading img {
  display: block;
  width: 100%;
  max-width: 281px;
  height: auto;
}

.ed-els03__text p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 30px;
}

.ed-els03__photo {
  width: 500px;
  max-width: 100%;
  flex-shrink: 0;
  height: auto;
  border-radius: 8px;
  display: block;
}

.ed-els03__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
  padding: 24px 100px;
}

.ed-els03__sns p {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-yamaha-violet);
  margin: 0;
}

.ed-sns-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ed-sns-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 8px;
  background-color: var(--color-yamaha-violet);
  color: var(--color-white);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.ed-sns-links a:hover,
.ed-sns-links a:focus {
  opacity: 0.7;
  color: var(--color-white);
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  .ed-els03__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .ed-els03__text {
    flex-basis: auto;
  }
  .ed-els03__photo {
    flex-basis: auto;
    max-width: 100%;
  }
  .ed-els03__sns {
    justify-content: flex-start;
    padding: 24px 20px;
    gap: 16px;
  }
}

@media screen and (max-width: 767px) {
  .ed-els03__hero {
    padding: 40px 20px;
  }
}

/* ------------------------------------------------------------------
   TIMETABLE
------------------------------------------------------------------ */

.ed-timetable {
  padding: 60px 0;
}

.ed-timetable__scroll-note {
  display: none;
}

.tt-onstage {
  background-color: var(--color-light-violet);
  color: var(--color-dark-gray);
}

.tt-learn {
  background-color: var(--color-bright-violet-60);
  color: var(--color-dark-gray);
}

.tt-live {
  background-color: var(--color-bright-violet);
  color: var(--color-white);
}

.tt-connect {
  background-color: var(--color-bright-violet-80);
  color: var(--color-white);
}

.tt-title {
  font-weight: 700;
}

.tt-opening {
  background-color: var(--color-light-violet-40);
  color: var(--color-dark-gray);
  font-weight: 700;
}

.tt-photo {
  background-color: var(--color-yamaha-violet);
  color: var(--color-white);
}

.tt-touch {
  background-color: var(--color-dark-violet);
  color: var(--color-white);
}

/* ------------------------------------------------------------------
   ONLINE STAGE / EVENT GOODS
------------------------------------------------------------------ */

.ed-info-boxes {
  padding-bottom: 60px;
}

.ed-info-boxes__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ed-info-box {
  background-color: var(--color-light-violet-40);
  border-radius: 12px;
  padding: 32px;
}

.ed-info-box h3 {
  margin: 0 0 16px;
}

.ed-info-box h3 img {
  display: block;
  height: 33px;
  width: auto;
  max-width: 100%;
}

.ed-info-box p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px;
}

@media screen and (max-width: 767px) {
  .ed-info-boxes__row {
    grid-template-columns: 1fr;
  }
  .ed-info-box h3 {
    text-align: center;
  }
  .ed-info-box h3 img {
    display: inline-block;
  }
  .ed-info-box .btn-more,
  .ed-info-box .btn-coming-soon {
    display: flex;
    width: fit-content;
    margin-inline: auto;
  }
}

/* ------------------------------------------------------------------
   JOIN US
------------------------------------------------------------------ */

.ed-joinus {
  padding: 60px 0;
}

.ed-joinus-card {
  background-color: var(--color-yamaha-violet);
  color: var(--color-white);
  border-radius: 16px;
  padding: 48px 20px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .ed-joinus-card {
    padding: 48px 15px;
  }
}

.ed-joinus-card__inner {
  max-width: 640px;
  margin: 0 auto;
}

.ed-joinus__heading {
  margin: 0 0 24px;
}

.ed-joinus__heading img {
  display: inline-block;
  height: 45px;
  width: auto;
  max-width: 100%;
}

.ed-joinus__lead {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 24px;
}

.ed-joinus__note {
  font-size: 14px;
  margin: 12px 0 0;
}

/* ------------------------------------------------------------------
   出演者モーダル
------------------------------------------------------------------ */

.modal-body {
  padding: 0;
}

.modal-performer .modal-content {
  display: flex;
  flex-direction: column;
  max-height: 100vh;
  max-height: 100dvh;
}

.modal-performer .modal-header {
  flex: 0 0 auto;
}

.modal-performer .modal-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.LPmodal-scroll {
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 50px;
}

.modal-performer {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.LPmodal-performer {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 30px 0;
}

.LPmodal-performer + .LPmodal-performer {
  border-top: 1px solid var(--color-light-gray-20);
}

.LPmodal-performer__photo {
  flex: 0 0 218px;
  width: 218px;
  height: 208px;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  background-color: var(--color-light-gray-20);
}

.LPmodal-performer__body {
  flex: 1;
  min-width: 0;
}

.LPmodal-performer__body h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-dark-gray);
  margin: 0 0 16px;
}

.LPmodal-performer__body p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark-gray);
  margin: 0 0 8px;
}

.LPmodal-performer__body p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .LPmodal-scroll {
    padding: 15px 20px;
  }
  .ed-timetable__scroll-note {
    display: block;
    margin: 0 0 8px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--color-dark-gray);
  }
  .ed-timetable__scroll-arrow {
    margin-left: 4px;
  }
  .LPmodal-performer {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
  }
  .LPmodal-performer__photo {
    width: 100%;
    max-width: 218px;
  }
}

@media screen and (max-width: 767px) {
  .ed-contents,
  .ed-els03,
  .ed-timetable,
  .ed-joinus {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .ed-info-boxes {
    padding-bottom: 30px;
  }
}
