@charset "UTF-8";
html {
  scroll-behavior: smooth; }

body {
  font-family: "M PLUS Rounded 1c", sans-serif; }

.sp {
  display: none !important; }

a:active {
  color: unset; }

a:visited {
  color: unset; }

a:focus {
  outline: none; }

a {
  text-decoration: none; }

p {
  line-height: 1.8rem; }

.visuality-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important; }

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  background-color: #fdfbdf; }

.bg-decoration {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: url("./imgs/bg-top.png") repeat-x top center, url("./imgs/bg-bottom.png") repeat-x bottom center, url("./imgs/bg-left.png") repeat-y left center, url("./imgs/bg-right.png") repeat-y right center;
  background-size: auto 80px, auto 80px, 5% auto, 5% auto;
  /* right */ }

header {
  position: relative;
  padding-bottom: 50px;
  overflow: hidden; }
  header .header-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image: url("./imgs/header-bg.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom; }
    header .header-bg i {
      display: inline-block; }
      header .header-bg i::after {
        content: '';
        display: block;
        margin-left: 10px;
        height: 0.8em;
        width: 1em;
        background-image: url("./imgs/outer_icon_black.svg");
        background-size: contain;
        background-repeat: no-repeat; }
  header .header-logo {
    position: absolute;
    width: 10%;
    max-width: 180px;
    top: 30px;
    left: 3%; }
  header nav {
    width: 80%;
    position: fixed;
    right: 0;
    top: 20px;
    z-index: 999; }
    header nav ul {
      width: 100%;
      max-width: 1000px;
      margin-left: auto;
      background-color: #fff;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3%;
      padding: 10px 20px;
      border-radius: 30px 0 0 30px; }
      header nav ul li {
        list-style: none;
        font-weight: 600;
        font-size: 16px; }
        header nav ul li a > img {
          max-width: 35px; }
        header nav ul li a {
          transition: .2s;
          transform-origin: center;
          position: relative;
          overflow: hidden; }
          header nav ul li a:hover {
            color: #5058ba; }
          header nav ul li a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 2px;
            background: #5058ba;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease; }
          header nav ul li a:hover::after {
            transform: scaleX(1); }
        header nav ul li.sns {
          display: flex;
          align-items: center;
          gap: 20px; }
  header .kv {
    display: flex;
    align-items: center;
    width: 70%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 150px 0 0;
    gap: 5%; }
    header .kv .kv-left {
      width: 65%; }
      header .kv .kv-left h1 {
        margin-bottom: 30px; }
      header .kv .kv-left .date-place {
        display: flex;
        align-items: center;
        gap: 10px; }
        header .kv .kv-left .date-place > img {
          display: block;
          width: 40%; }
        header .kv .kv-left .date-place p {
          word-break: keep-all;
          font-size: calc(16px + 0.8vw);
          line-height: calc(16px + 0.8vw);
          font-weight: 600;
          transition: .2s; }
          header .kv .kv-left .date-place p small {
            font-size: calc(8px + 0.4vw);
            font-weight: 400; }
          header .kv .kv-left .date-place p:hover {
            color: #5058ba; }
    header .kv .kv-right {
      width: 30%; }
  header .buttons-grid {
    display: grid;
    width: 70%;
    max-width: 960px;
    margin: 50px auto;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 60px);
    grid-template-areas: "ticket official";
    gap: 30px; }
    header .buttons-grid a {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      border-radius: 30px;
      border: solid 5px #fff;
      height: 100%;
      font-size: clamp(0.9rem, 1.5vw, 1.2rem);
      font-weight: 600;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
      transition: 0.2s; }
      header .buttons-grid a::after {
        display: block;
        position: absolute;
        content: "";
        right: 1em;
        top: 50%;
        transform: translateY(-50%) rotate(135deg);
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        width: 10px;
        height: 10px;
        transition: 0.3s; }
      header .buttons-grid a:hover {
        filter: brightness(1.15);
        box-shadow: 0 0 16px rgba(0, 0, 0, 0.25); }
        header .buttons-grid a:hover::after {
          top: 55%;
          border-color: #fff; }
    header .buttons-grid .ticket {
      grid-area: ticket;
      background-color: #5058ba; }
    header .buttons-grid .official {
      grid-area: official;
      background-color: #8cc63f; }
  header .copy {
    width: 70%;
    max-width: 1080px;
    margin: 0 auto 50px; }
  header .orchestra-link {
    width: 70%;
    max-width: 1080px;
    margin: 0 auto 24px;
    display: flex;
    justify-content: center; }
    header .orchestra-link a {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 14px;
      color: #146950;
      padding: 14px 22px;
      border-radius: 999px;
      background: linear-gradient(90deg, #ffffff 0%, #f4f9ff 50%, #ffffff 100%);
      border: 1px solid rgba(20, 50, 120, 0.06);
      box-shadow: 0 12px 30px rgba(20, 50, 120, 0.12), 0 3px 8px rgba(0, 0, 0, 0.06);
      font-weight: 800;
      font-size: clamp(14px, 1.2vw, 18px);
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
      z-index: 1;
      overflow: visible; }
      header .orchestra-link a .icon {
        display: inline-block;
        width: 24px;
        height: 24px;
        color: #8cc63f;
        flex-shrink: 0;
        position: relative; }
      header .orchestra-link a .icon::after {
        content: "";
        position: absolute;
        top: -4px;
        right: -4px;
        width: 8px;
        height: 8px;
        background: #ffcc00;
        border-radius: 50%;
        box-shadow: 0 0 6px rgba(255, 204, 0, 0.6);
        display: block;
        pointer-events: none; }
      header .orchestra-link a span {
        display: inline-flex;
        align-items: center;
        gap: 8px; }
      header .orchestra-link a i {
        display: inline-block; }
        header .orchestra-link a i::after {
          content: '';
          display: block;
          margin-left: 10px;
          height: 0.8em;
          width: 1em;
          background-image: url("./imgs/outer_icon_black.svg");
          background-size: contain;
          background-repeat: no-repeat; }
      header .orchestra-link a:hover {
        transform: translateY(-6px) scale(1.01);
        box-shadow: 0 18px 40px rgba(20, 50, 120, 0.18); }

main .faq-illust-wrap {
  position: relative;
  width: 85%;
  max-width: 360px;
  margin: 50px auto; }
  main .faq-illust-wrap a {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    width: fit-content;
    padding: 0.2em 1em;
    background-color: #000;
    border: solid 1px #000;
    color: #fff;
    border-radius: 999px;
    bottom: 1.5em;
    right: 12%;
    transform: translateX(-50%);
    font-size: 12px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    transition: background 0.3s, box-shadow 0.3s, font-size 0.3s; }
    main .faq-illust-wrap a::after {
      display: block;
      content: "";
      height: 0.5em;
      width: 0.5em;
      border-top: solid 1px #fff;
      border-right: solid 1px #fff;
      transform: rotate(135deg);
      transition: right 0.3s;
      margin-left: 0.5em; }
    main .faq-illust-wrap a:hover {
      background-color: #fff;
      color: #000; }
      main .faq-illust-wrap a:hover::after {
        border-top: solid 1px #000;
        border-right: solid 1px #000; }
main section.block-1 {
  position: relative; }
  main section.block-1 .header-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image: url("./imgs/header-bg.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom; }
  main section.block-1 .contents {
    width: 70%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 30px 5%; }
    main section.block-1 .contents hr {
      height: 8px;
      border: none;
      border-top: dotted 8px #b3daf1; }
    main section.block-1 .contents h2 {
      display: flex;
      align-items: center;
      gap: 2%;
      color: #3f6eb0;
      font-size: clamp(24px, 2.5vw, 40px);
      margin-bottom: 1em; }
      main section.block-1 .contents h2 img {
        width: 120px; }
      main section.block-1 .contents h2 span {
        display: flex;
        flex: 5;
        flex-direction: column; }
      main section.block-1 .contents h2 small {
        display: block;
        margin-top: 0.5em;
        color: #000;
        font-size: 14px; }
    main section.block-1 .contents .conductors .conductor {
      display: flex;
      align-items: center;
      gap: 5%; }
      main section.block-1 .contents .conductors .conductor > img {
        display: block;
        width: 35%;
        object-fit: contain; }
      main section.block-1 .contents .conductors .conductor .box {
        width: 60%; }
        main section.block-1 .contents .conductors .conductor .box h3 {
          display: flex;
          gap: 12px;
          align-items: center;
          font-size: clamp(18px, 2.5vw, 32px);
          margin-bottom: 0.5em; }
          main section.block-1 .contents .conductors .conductor .box h3 span {
            color: #fff;
            background-color: #000;
            border-radius: 99px;
            padding: 0.5em 1em;
            font-size: 12px;
            font-weight: 400; }
        main section.block-1 .contents .conductors .conductor .box .performance {
          text-indent: -1em;
          padding-left: 1em; }
          main section.block-1 .contents .conductors .conductor .box .performance::before {
            content: "■ "; }
main section.block-2 .contents {
  width: 70%;
  max-width: 1000px;
  margin: 30px auto; }
  main section.block-2 .contents .box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3%;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 50px 10%; }
    main section.block-2 .contents .box.green-bg {
      background-image: url("./imgs/b2-green-bg.png");
      background-position: right center;
      color: #3b693a; }
      main section.block-2 .contents .box.green-bg .text {
        padding-right: 10%; }
    main section.block-2 .contents .box.yellow-bg {
      background-image: url("./imgs/b2-yellow-bg.png");
      background-position: left center;
      flex-direction: row-reverse;
      color: #5f3c13; }
      main section.block-2 .contents .box.yellow-bg .text {
        padding-left: 4%; }
        main section.block-2 .contents .box.yellow-bg .text p span {
          text-decoration-color: #ff92ff; }
    main section.block-2 .contents .box img {
      width: 25%;
      object-fit: contain; }
    main section.block-2 .contents .box .text {
      width: 67%;
      font-weight: 700; }
      main section.block-2 .contents .box .text h3 {
        font-size: clamp(20px, 2.5vw, 24px);
        margin-bottom: 0.5em;
        white-space: nowrap; }
      main section.block-2 .contents .box .text p {
        font-size: clamp(14px, 1.5vw, 16px);
        line-height: 1.5em;
        text-align: justify; }
        main section.block-2 .contents .box .text p span {
          font-size: clamp(18px, 1.5vw, 20px);
          text-decoration: underline;
          text-decoration-color: #afffff;
          text-decoration-thickness: 8px;
          text-underline-offset: -2px;
          text-decoration-skip-ink: none; }
main section.block-3 {
  position: relative; }
  main section.block-3 .header-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image: url("./imgs/header-bg.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top;
    top: -10%; }
  main section.block-3 .contents {
    position: relative;
    width: 70%;
    max-width: 1000px;
    margin: 30px auto;
    background-color: #5058ba;
    color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 30px 5%; }
    main section.block-3 .contents h2 {
      text-align: center;
      margin-bottom: 10px;
      font-size: 18px; }
      main section.block-3 .contents h2.sub {
        font-size: clamp(24px, 2.5vw, 36px);
        margin-bottom: 20px;
        color: #ffff00; }
    main section.block-3 .contents .ticket-info {
      width: fit-content;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #5058ba;
      padding: 0.5em 5em; }
      main section.block-3 .contents .ticket-info h3 {
        font-size: 14px; }
      main section.block-3 .contents .ticket-info p {
        font-size: clamp(18px, 1.8vw, 24px);
        font-weight: 700;
        margin-left: 10px; }
    main section.block-3 .contents .ticket-lineup {
      display: flex;
      gap: 2%;
      font-size: clamp(18px, 1.8vw, 24px);
      font-weight: 700;
      margin: 20px 0; }
      main section.block-3 .contents .ticket-lineup .left {
        flex-shrink: 0;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border: solid 1px #fff;
        border-radius: 0.8em;
        font-size: clamp(13px, 1.4vw, 18px); }
      main section.block-3 .contents .ticket-lineup .right {
        flex: 4;
        display: flex;
        flex-wrap: wrap;
        gap: 2%;
        row-gap: 10px; }
        main section.block-3 .contents .ticket-lineup .right .ticket {
          display: inline-flex;
          align-items: center;
          gap: 5px; }
          main section.block-3 .contents .ticket-lineup .right .ticket .icon {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-color: #ca387c;
            font-size: 0.6em;
            line-height: 1em;
            height: 2.5rem;
            min-width: 2.5rem;
            border-radius: 999px;
            padding: 0.5em; }
          main section.block-3 .contents .ticket-lineup .right .ticket .value .yen {
            font-size: 0.6em; }
          main section.block-3 .contents .ticket-lineup .right .ticket.ticket-a .icon {
            background-color: #f7931e; }
          main section.block-3 .contents .ticket-lineup .right .ticket.ticket-b .icon {
            background-color: #9fcc21; }
          main section.block-3 .contents .ticket-lineup .right .ticket.junior .icon {
            background-color: #6dbadc; }
          main section.block-3 .contents .ticket-lineup .right .ticket.junior .value {
            display: flex;
            align-items: center; }
            main section.block-3 .contents .ticket-lineup .right .ticket.junior .value small {
              font-size: 0.6em;
              line-height: 0.9em; }
          main section.block-3 .contents .ticket-lineup .right .ticket.junior .bubble {
            position: relative;
            display: inline-block;
            font-size: 0.6em;
            line-height: 0.9em;
            padding: 0.8em 2em;
            margin-left: 1em;
            border-radius: 9999px;
            background-color: #ffffff;
            text-align: center;
            color: #5058ba; }
            main section.block-3 .contents .ticket-lineup .right .ticket.junior .bubble::after {
              content: "";
              position: absolute;
              top: 50%;
              left: 0;
              border-style: solid;
              border-width: 6px 10px 6px 0;
              border-color: transparent #ffffff transparent transparent;
              translate: -80% -50%; }
    main section.block-3 .contents .ticket-reservation {
      background-color: #fff;
      color: #000;
      padding: 20px; }
      main section.block-3 .contents .ticket-reservation h3 {
        color: #5058ba;
        text-align: center;
        margin-bottom: 1em; }
      main section.block-3 .contents .ticket-reservation .books {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
        grid-template-areas: "book-1 book-3" "book-2 book-3";
        gap: 30px; }
        main section.block-3 .contents .ticket-reservation .books .book.web {
          grid-area: book-1; }
        main section.block-3 .contents .ticket-reservation .books .book.phone {
          grid-area: book-2; }
        main section.block-3 .contents .ticket-reservation .books .book.convenience-store {
          grid-area: book-3; }
        main section.block-3 .contents .ticket-reservation .books .book h4 {
          margin-bottom: 1.2em;
          background-color: #5058ba;
          color: #fff;
          text-align: center;
          padding: 0.5em 2em; }
        main section.block-3 .contents .ticket-reservation .books .book ul {
          padding: 0;
          padding-left: 0.5em;
          margin: 0;
          display: flex;
          flex-direction: column;
          gap: 0.5em; }
          main section.block-3 .contents .ticket-reservation .books .book ul li {
            list-style: none;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.5em;
            letter-spacing: -0.05em; }
            main section.block-3 .contents .ticket-reservation .books .book ul li a {
              color: #000;
              transition: color 220ms ease;
              position: relative;
              text-decoration: none; }
              main section.block-3 .contents .ticket-reservation .books .book ul li a::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: -3px;
                width: 100%;
                height: 2px;
                background: #5058ba;
                transform-origin: left center;
                transform: scaleX(0);
                transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 200ms;
                opacity: 0.95; }
              main section.block-3 .contents .ticket-reservation .books .book ul li a:hover, main section.block-3 .contents .ticket-reservation .books .book ul li a:focus {
                color: #5058ba; }
              main section.block-3 .contents .ticket-reservation .books .book ul li a:hover::after, main section.block-3 .contents .ticket-reservation .books .book ul li a:focus::after {
                transform: scaleX(1); }
            main section.block-3 .contents .ticket-reservation .books .book ul li p {
              display: flex;
              gap: 0.5em;
              align-items: center;
              text-indent: -1.2em;
              padding-left: 1.2em;
              font-size: 0.9em;
              line-height: 1.2em;
              margin-bottom: 0.5em; }
              main section.block-3 .contents .ticket-reservation .books .book ul li p span > span {
                margin-right: 5px;
                color: #5058ba; }
              main section.block-3 .contents .ticket-reservation .books .book ul li p span i {
                display: inline-block; }
                main section.block-3 .contents .ticket-reservation .books .book ul li p span i::after {
                  content: '';
                  display: block;
                  margin-left: 10px;
                  height: 0.8em;
                  width: 1em;
                  background-image: url("./imgs/outer_icon_black.svg");
                  background-size: contain;
                  background-repeat: no-repeat; }
              main section.block-3 .contents .ticket-reservation .books .book ul li p:hover {
                color: #5058ba; }
                main section.block-3 .contents .ticket-reservation .books .book ul li p:hover i::after {
                  background-image: url("./imgs/outer_icon_blue.svg"); }
            main section.block-3 .contents .ticket-reservation .books .book ul li small {
              font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
              font-size: 14px;
              font-weight: 400;
              margin-left: 0.5em; }
    main section.block-3 .contents .caution {
      width: 70%;
      margin-top: 20px;
      font-size: 0.9rem;
      font-weight: 500; }
      main section.block-3 .contents .caution ul {
        padding-left: 1.2em;
        list-style: none; }
        main section.block-3 .contents .caution ul li {
          text-indent: -1em;
          padding-left: 1em; }
    main section.block-3 .contents .illust {
      position: absolute;
      bottom: 30px;
      right: 5%;
      display: flex;
      width: 25%; }
      main section.block-3 .contents .illust > div {
        position: relative;
        width: 50%; }
        main section.block-3 .contents .illust > div a {
          position: absolute;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 0.5em;
          width: fit-content;
          padding: 0.2em 1em;
          background-color: #000;
          border: solid 1px #000;
          color: #fff;
          border-radius: 999px;
          bottom: 0.5em;
          left: 50%;
          transform: translateX(-50%);
          font-size: clamp(5px, 1vw, 14px);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
          transition: background 0.3s, box-shadow 0.3s, font-size 0.3s; }
          main section.block-3 .contents .illust > div a::after {
            display: block;
            content: "";
            height: 0.5em;
            width: 0.5em;
            border-top: solid 1px #fff;
            border-right: solid 1px #fff;
            transform: rotate(135deg);
            transition: right 0.3s;
            margin-left: 0.5em; }
          main section.block-3 .contents .illust > div a:hover {
            background-color: #fff;
            color: #000; }
            main section.block-3 .contents .illust > div a:hover::after {
              border-top: solid 1px #000;
              border-right: solid 1px #000; }
      main section.block-3 .contents .illust > img {
        width: 50%; }
main section.block-4 .contents {
  width: 70%;
  max-width: 1000px;
  margin: 30px auto;
  background-color: #fff;
  border-radius: 30px;
  padding: 30px 5%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); }
  main section.block-4 .contents hr {
    height: 8px;
    border: none;
    border-top: dotted 8px #ff8ebb; }
  main section.block-4 .contents .box {
    padding: 40px 0 30px;
    display: flex;
    gap: 0; }
    main section.block-4 .contents .box .texts-wrap {
      display: flex;
      flex: 3.5;
      align-items: start;
      gap: 2%;
      color: #c1007c;
      padding-right: 5%; }
      main section.block-4 .contents .box .texts-wrap .sp-contents {
        display: contents; }
      main section.block-4 .contents .box .texts-wrap h2 {
        font-size: clamp(24px, 2.5vw, 40px);
        font-weight: 800; }
      main section.block-4 .contents .box .texts-wrap p {
        color: #000;
        font-size: clamp(14px, 1.5vw, 16px);
        line-height: 1.5em;
        font-weight: 500;
        text-align: justify;
        margin: 1em 0; }
      main section.block-4 .contents .box .texts-wrap img {
        position: relative;
        top: -15px;
        width: 120px; }
      main section.block-4 .contents .box .texts-wrap .info {
        display: flex;
        align-items: center;
        gap: 1em; }
        main section.block-4 .contents .box .texts-wrap .info h3 {
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: clamp(18px, 2vw, 24px);
          border-radius: 0.5em;
          border: solid 1px #c1007c;
          padding: 1em 2em;
          flex-shrink: 0; }
          main section.block-4 .contents .box .texts-wrap .info h3.coming-soon {
            color: #b3b3b3;
            border: unset;
            padding-left: 0; }
    main section.block-4 .contents .box .img-wrap {
      flex: 1.5;
      position: relative;
      right: 5%; }
main section.block-5 {
  position: relative; }
  main section.block-5 .header-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: -50%;
    height: 230%;
    z-index: -2;
    pointer-events: none;
    background-image: url("./imgs/header-bg.svg");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top center; }
  main section.block-5 .contents {
    width: 70%;
    max-width: 1000px;
    margin: 30px auto;
    background-color: #a8d63f;
    border-radius: 30px;
    padding: 50px 5%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); }
    main section.block-5 .contents .box {
      display: flex;
      align-items: center;
      gap: 5%; }
      main section.block-5 .contents .box .img-wrap {
        flex: 1;
        max-width: 250px; }
      main section.block-5 .contents .box .texts-wrap {
        flex: 2;
        max-width: 400px; }
        main section.block-5 .contents .box .texts-wrap h2 {
          margin-bottom: 20px; }
        main section.block-5 .contents .box .texts-wrap .text {
          background-image: url("./imgs/b5-text-bg.svg");
          background-repeat: no-repeat;
          background-size: contain;
          padding: 35px 10%; }
          main section.block-5 .contents .box .texts-wrap .text h3 {
            background-color: #000;
            color: #fff;
            width: fit-content;
            padding: 0.2em 3em 0.2em 0.5em;
            font-size: clamp(12px, 1.5vw, 14px); }
          main section.block-5 .contents .box .texts-wrap .text p {
            font-size: clamp(14px, 1.5vw, 16px);
            line-height: 1.5em;
            text-align: justify;
            font-weight: 700; }
main section.block-6 .contents {
  width: 70%;
  max-width: 1000px;
  margin: 50px auto 100px; }
  main section.block-6 .contents h2 {
    color: #534741;
    text-align: center;
    font-size: clamp(24px, 2.5vw, 36px);
    margin-bottom: 10px;
    font-weight: 700; }
    main section.block-6 .contents h2 span {
      color: #f7931e; }
  main section.block-6 .contents .box {
    margin-bottom: 40px; }
    main section.block-6 .contents .box h3 {
      color: #534741;
      margin-bottom: 20px;
      font-size: 1.2rem; }
    main section.block-6 .contents .box .faq-item {
      margin-bottom: 16px; }
      main section.block-6 .contents .box .faq-item .faq-btn {
        width: 100%;
        background: #ffc43b;
        color: #534741;
        border: none;
        padding: 16px 5% 16px 5%;
        font-size: clamp(16px, 1.5vw, 20px);
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        position: relative;
        cursor: pointer;
        border-radius: 30px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
        z-index: 1; }
        main section.block-6 .contents .box .faq-item .faq-btn .faq-icon {
          width: 30px;
          margin-right: 12px; }
        main section.block-6 .contents .box .faq-item .faq-btn .toggle-icon {
          position: absolute;
          right: 20px;
          top: 50%;
          transform: translateY(-50%);
          width: 20px;
          height: 20px; }
          main section.block-6 .contents .box .faq-item .faq-btn .toggle-icon::before {
            content: "";
            display: block;
            width: 20px;
            height: 20px;
            border-top: 1px solid #fff;
            border-right: 1px solid #fff;
            transform: rotate(135deg);
            transition: transform 0.2s ease; }
        main section.block-6 .contents .box .faq-item .faq-btn.active .toggle-icon {
          height: 1px; }
          main section.block-6 .contents .box .faq-item .faq-btn.active .toggle-icon::before {
            width: 30px;
            height: 1px;
            border: none;
            border-top: 1px solid #fff;
            transform: rotate(0deg); }
      main section.block-6 .contents .box .faq-item .faq-content {
        display: flex;
        align-items: start;
        max-height: 0;
        overflow: hidden;
        background: #fff;
        border-radius: 0 0 20px 20px;
        transition: .2s;
        position: relative;
        top: -30px;
        z-index: 0;
        padding: 0 5%; }
        main section.block-6 .contents .box .faq-item .faq-content .faq-icon {
          width: 30px;
          margin-right: 12px; }
        main section.block-6 .contents .box .faq-item .faq-content p {
          color: #000;
          line-height: 1.7; }
          main section.block-6 .contents .box .faq-item .faq-content p a {
            color: #0000ff;
            text-decoration: underline; }
      main section.block-6 .contents .box .faq-item.open .faq-content {
        max-height: 500px;
        padding: 70px 5% 50px 5%; }
main section.block-7 .contents {
  width: 70%;
  max-width: 1000px;
  margin: 60px auto 30px; }
  main section.block-7 .contents h2 {
    color: #534741;
    text-align: center;
    font-size: clamp(24px, 2.5vw, 36px);
    margin-bottom: 18px;
    font-weight: 700; }
  main section.block-7 .contents .map-access-wrap {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start; }
  main section.block-7 .contents .map {
    background: #fff;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05); }
    main section.block-7 .contents .map iframe {
      width: 100%;
      height: 420px;
      border: 0;
      display: block; }
  main section.block-7 .contents .access-info {
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    border-radius: 0 0 30px 30px;
    padding: 28px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 12px; }
    main section.block-7 .contents .access-info h3 {
      margin: 0 0 6px 0;
      font-size: clamp(18px, 2vw, 22px);
      color: #2f2b28; }
    main section.block-7 .contents .access-info p,
    main section.block-7 .contents .access-info ul {
      margin: 0;
      color: #222;
      font-size: clamp(14px, 1.2vw, 16px);
      line-height: 1.6; }
    main section.block-7 .contents .access-info ul {
      padding-left: 1.2em;
      margin-top: 6px; }
    main section.block-7 .contents .access-info a {
      color: #5058ba;
      text-decoration: underline; }

footer {
  position: relative; }
  footer .header-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image: url("./imgs/header-bg.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top;
    top: -100%; }
  footer .contents {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    width: 70%;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 50px; }
    footer .contents .box {
      position: relative;
      background-color: #fff;
      color: #251e1c;
      font-weight: 700;
      border-radius: 30px;
      padding: 30px 5%; }
      footer .contents .box > img {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 20px;
        display: block; }
        footer .contents .box > img.logo {
          position: absolute;
          width: 30%;
          max-width: 180px;
          right: 5%;
          bottom: 50%;
          transform: translateY(50%);
          margin: 0;
          z-index: 0; }
      footer .contents .box > a {
        position: relative;
        z-index: 1;
        display: block;
        margin-bottom: 20px;
        text-align: center;
        text-decoration: underline;
        font-weight: 500;
        font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif; }
      footer .contents .box p {
        position: relative;
        z-index: 1;
        font-size: 0.9em;
        text-align: center; }
        footer .contents .box p > span {
          display: inline-flex;
          align-items: start; }
          footer .contents .box p > span img {
            max-height: 30px; }
        footer .contents .box p.copy {
          font-weight: 500;
          font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif; }
      footer .contents .box .logo {
        margin: 20px auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 5%; }
        footer .contents .box .logo a {
          transition: .2s; }
          footer .contents .box .logo a:hover {
            opacity: 0.6; }
      footer .contents .box .sns-icons {
        position: relative;
        z-index: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px; }
        footer .contents .box .sns-icons a {
          display: block;
          width: 30px; }
          footer .contents .box .sns-icons a img {
            object-fit: contain; }

@media screen and (max-width: 1080px) {
  header .kv {
    width: 80%; }
  header .buttons-grid {
    gap: 15px;
    width: 80%; }

  main section.block-1 .contents, main section.block-2 .contents, main section.block-3 .contents, main section.block-4 .contents, main section.block-5 .contents, main section.block-6 .contents, main section.block-7 .contents {
    width: 80%; }

  footer .contents {
    width: 80%; } }
@media screen and (max-width: 960px) {
  header .kv {
    width: 85%; }
  header .orchestra-link {
    width: 100%;
    max-width: 100%;
    margin: 12px auto; }
    header .orchestra-link a {
      padding: 12px 16px;
      font-size: 15px;
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      gap: 10px; }
      header .orchestra-link a .icon {
        width: 26px;
        height: 26px;
        border-radius: 999px; }
      header .orchestra-link a::after {
        margin-left: 4px; }
  header .buttons-grid {
    width: 85%;
    gap: 5px; }
    header .buttons-grid .illust {
      height: 180%; }
  header nav ul li {
    list-style: none;
    font-weight: 600;
    font-size: clamp(12px, 1.5vw, 16px); }

  main section.block-1 .contents, main section.block-2 .contents, main section.block-3 .contents, main section.block-4 .contents, main section.block-5 .contents, main section.block-6 .contents, main section.block-7 .contents {
    width: 85%; }

  footer .contents {
    width: 85%; } }
@media screen and (max-width: 767px) {
  .pc {
    display: none !important; }

  .sp {
    display: block !important; }

  header nav {
    display: none !important; }
  header .hamburger-btn {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2000;
    width: 56px;
    height: 56px;
    background: #000;
    color: #fff;
    border-radius: 0 0 0 10px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s, border-radius 0.3s;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    border: none; }
  header .hamburger-btn .bar {
    display: block;
    width: 20px;
    height: 3px;
    margin: 2px auto;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s; }
  header .hamburger-btn.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg); }
  header .hamburger-btn.active .bar:nth-child(2) {
    opacity: 0; }
  header .hamburger-btn.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg); }
  header .hamburger-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    color: #fff;
    z-index: 1999;
    transform: translateX(100vw);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25); }
  header .hamburger-menu.open {
    transform: translateX(0); }
  header .hamburger-menu ul {
    list-style: none;
    padding: 100px 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2em;
    align-items: center; }
    header .hamburger-menu ul li {
      width: 90%;
      margin: 0 auto; }
      header .hamburger-menu ul li.sns {
        justify-content: center; }
        header .hamburger-menu ul li.sns a {
          max-width: 40px;
          box-shadow: 0 0 5px rgba(255, 255, 255, 0.8); }
  header .hamburger-menu ul li a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    padding: 0.5em 2em;
    border-radius: 20px;
    border: 2px solid #fff;
    background: transparent;
    transition: background 0.2s, color 0.2s;
    display: block; }
  header .hamburger-menu ul li a:hover {
    background: #fff;
    color: #000; }
  header .hamburger-menu ul li.sns {
    display: flex;
    gap: 20px;
    margin-top: 2em; }
  header .hamburger-menu ul li.sns a {
    border: none;
    background: none;
    padding: 0; }
  header body.menu-open {
    overflow: hidden; }

  /*
  上記までハンバーガーメニューの記述
  以下はSP用のスタイルを追加
  */
  .bg-decoration {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: url("./imgs/bg-top.png") repeat-x top center, url("./imgs/bg-bottom.png") repeat-x bottom center, url("./imgs/bg-left.png") repeat-y left center, url("./imgs/bg-right.png") repeat-y right center;
    background-size: auto 30px, auto 30px, 5% auto, 5% auto;
    /* right */ }

  header .header-logo {
    width: 25%;
    max-width: 120px; }
  header .kv {
    position: relative;
    flex-direction: column;
    padding: 50px 0 0; }
    header .kv .header-bg {
      bottom: -20%; }
    header .kv .kv-left {
      width: 100%; }
      header .kv .kv-left h1 {
        width: 95%;
        margin-bottom: 10px; }
      header .kv .kv-left .date-place {
        display: flex;
        flex-direction: column; }
        header .kv .kv-left .date-place > img {
          display: block;
          width: 100%; }
        header .kv .kv-left .date-place p {
          width: 100%;
          word-break: break-all;
          font-size: calc(18px + 0.8vw);
          line-height: calc(18px + 0.8vw); }
          header .kv .kv-left .date-place p small {
            font-size: calc(10px + 0.4vw);
            font-weight: 400; }
    header .kv .kv-right {
      display: none; }
  header .buttons-grid {
    display: grid;
    width: 80%;
    max-width: 960px;
    margin: 50px auto;
    grid-template-columns: 1fr;
    grid-template-rows: 200px 60px 60px;
    gap: 15px;
    grid-template-areas: "illust" "ticket" "official"; }
    header .buttons-grid .illust {
      grid-area: illust;
      width: 100%;
      height: 100%;
      object-fit: contain; }
    header .buttons-grid .official {
      background-color: #8cc63f; }

  main section.block-1 .contents h2 {
    align-items: start;
    flex-wrap: wrap; }
    main section.block-1 .contents h2 img {
      width: 70px; }
    main section.block-1 .contents h2 span {
      width: calc(98% - 70px); }
      main section.block-1 .contents h2 span small {
        display: none; }
    main section.block-1 .contents h2 small {
      text-align: center;
      font-size: 16px;
      font-weight: 500; }
  main section.block-1 .contents .conductors {
    display: flex;
    flex-direction: column;
    gap: 20px; }
    main section.block-1 .contents .conductors .header-bg {
      display: none; }
    main section.block-1 .contents .conductors .conductor {
      flex-direction: column;
      row-gap: 10px; }
      main section.block-1 .contents .conductors .conductor > img {
        width: 100%; }
      main section.block-1 .contents .conductors .conductor .box {
        width: 100%; }
        main section.block-1 .contents .conductors .conductor .box h3 {
          font-size: clamp(24px, 3vw, 32px); }
  main section.block-2 {
    position: relative; }
    main section.block-2 .contents {
      width: 100%; }
      main section.block-2 .contents .box {
        flex-direction: column;
        gap: 20px; }
        main section.block-2 .contents .box.green-bg {
          padding: 10px 7.5%;
          background-position: -100px center; }
          main section.block-2 .contents .box.green-bg .text {
            padding: 0; }
        main section.block-2 .contents .box.yellow-bg {
          background-position: -100px center;
          flex-direction: column; }
          main section.block-2 .contents .box.yellow-bg .text {
            padding: 0; }
        main section.block-2 .contents .box img {
          width: 100%;
          max-width: 200px; }
        main section.block-2 .contents .box .text {
          width: 100%;
          font-weight: 700; }
          main section.block-2 .contents .box .text h3 {
            font-size: clamp(20px, 3vw, 32px);
            margin-bottom: 0.5em;
            white-space: wrap; }
  main section.block-3 {
    position: relative; }
    main section.block-3 .header-bg {
      top: -5%; }
    main section.block-3 .contents h2.sub {
      font-size: clamp(18px, 2.5vw, 36px); }
    main section.block-3 .contents .ticket-info {
      padding: 0.5em 1em; }
      main section.block-3 .contents .ticket-info h3 {
        font-size: 14px; }
      main section.block-3 .contents .ticket-info p {
        font-size: clamp(18px, 1.8vw, 24px);
        font-weight: 700;
        margin-left: 10px; }
    main section.block-3 .contents .ticket-lineup {
      display: flex;
      gap: 5%;
      font-size: clamp(18px, 1.8vw, 24px);
      font-weight: 700;
      margin: 20px 0; }
      main section.block-3 .contents .ticket-lineup .left {
        width: 10%;
        flex: unset;
        padding: clamp(0.5em, 2vw, 1em) clamp(0.3em, 1.5vw, 0.8em); }
      main section.block-3 .contents .ticket-lineup .right {
        gap: 1%;
        row-gap: 10px; }
        main section.block-3 .contents .ticket-lineup .right .ticket {
          display: inline-flex;
          align-items: center;
          gap: 1px; }
          main section.block-3 .contents .ticket-lineup .right .ticket.junior {
            width: 100%;
            flex-wrap: wrap; }
            main section.block-3 .contents .ticket-lineup .right .ticket.junior .bubble {
              margin-left: unset;
              margin: 5px auto; }
              main section.block-3 .contents .ticket-lineup .right .ticket.junior .bubble::after {
                content: "";
                position: absolute;
                top: 0;
                left: 50%;
                border-style: solid;
                border-width: 0 10px 10px 10px;
                border-color: transparent transparent #ffffff transparent;
                translate: -50% -80%; }
    main section.block-3 .contents .outer-link {
      margin: 0 auto; }
    main section.block-3 .contents .ticket-reservation .books {
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: repeat(2, auto);
      grid-template-areas: "book-1" "book-2" "book-3";
      gap: 30px; }
      main section.block-3 .contents .ticket-reservation .books .book h4 {
        font-size: clamp(16px, 1.5vw, 18px);
        margin-bottom: 10px; }
      main section.block-3 .contents .ticket-reservation .books .book ul li p {
        font-size: 16px; }
    main section.block-3 .contents .caution {
      width: 100%; }
    main section.block-3 .contents .illust {
      position: unset;
      margin: 0 auto;
      width: 100%;
      max-width: 300px; }
      main section.block-3 .contents .illust > div {
        position: relative;
        width: 50%; }
        main section.block-3 .contents .illust > div a {
          font-size: clamp(16px, 2vw, 18px); }
  main section.block-4 .contents .box {
    align-items: start; }
    main section.block-4 .contents .box .texts-wrap {
      flex-wrap: wrap;
      align-items: center;
      padding: 0; }
      main section.block-4 .contents .box .texts-wrap .texts {
        display: contents; }
      main section.block-4 .contents .box .texts-wrap h2 {
        width: calc(98% - 70px);
        font-size: clamp(24px, 2.5vw, 40px);
        font-weight: 800; }
      main section.block-4 .contents .box .texts-wrap p {
        width: 100%; }
      main section.block-4 .contents .box .texts-wrap img {
        top: 0;
        width: 70px; }
      main section.block-4 .contents .box .texts-wrap .info {
        flex-direction: column; }
      main section.block-4 .contents .box .texts-wrap .sp-contents {
        display: flex;
        gap: 5%; }
        main section.block-4 .contents .box .texts-wrap .sp-contents .info {
          width: 50%; }
          main section.block-4 .contents .box .texts-wrap .sp-contents .info h3 {
            width: 100%;
            white-space: nowrap; }
            main section.block-4 .contents .box .texts-wrap .sp-contents .info h3.coming-soon {
              justify-content: start; }
        main section.block-4 .contents .box .texts-wrap .sp-contents .img-wrap {
          width: 50%;
          right: 0; }
          main section.block-4 .contents .box .texts-wrap .sp-contents .img-wrap img {
            width: 100%; }
  main section.block-5 {
    position: relative; }
    main section.block-5 .header-bg {
      position: absolute;
      inset: 0;
      z-index: -2;
      pointer-events: none;
      background-image: url("./imgs/header-bg.svg");
      background-repeat: no-repeat;
      background-size: 100%;
      background-position: bottom;
      top: 0; }
    main section.block-5 .contents .box {
      flex-direction: column; }
      main section.block-5 .contents .box .img-wrap {
        flex: 1;
        max-width: 250px;
        margin-bottom: 30px; }
      main section.block-5 .contents .box .texts-wrap {
        flex: 2;
        max-width: 400px; }
        main section.block-5 .contents .box .texts-wrap h2 {
          margin-bottom: 20px;
          position: relative;
          z-index: 1; }
          main section.block-5 .contents .box .texts-wrap h2 img {
            filter: drop-shadow(2px 4px 6px #00000088); }
        main section.block-5 .contents .box .texts-wrap .text {
          position: relative;
          background-image: none; }
          main section.block-5 .contents .box .texts-wrap .text::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 0;
            background-image: url("./imgs/b5-text-bg.svg");
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center;
            transform: scaleX(-1) scaleY(1.4);
            pointer-events: none; }
          main section.block-5 .contents .box .texts-wrap .text h3 {
            position: relative;
            z-index: 1;
            margin-bottom: 0.5em; }
          main section.block-5 .contents .box .texts-wrap .text p {
            position: relative;
            z-index: 1; }
  main section.block-6 .contents {
    margin: 50px auto; }
    main section.block-6 .contents .box .faq-item .faq-btn {
      padding: 16px calc(5% + 15px) 16px 5%;
      text-align: left; }
      main section.block-6 .contents .box .faq-item .faq-btn .faq-icon {
        width: 20px;
        margin-right: 5px; }
      main section.block-6 .contents .box .faq-item .faq-btn .toggle-icon {
        right: 10px;
        width: 15px;
        height: 15px; }
        main section.block-6 .contents .box .faq-item .faq-btn .toggle-icon::before {
          content: "";
          display: block;
          width: 15px;
          height: 15px;
          border-top: 1px solid #fff;
          border-right: 1px solid #fff;
          transform: rotate(135deg);
          transition: transform 0.2s ease; }
      main section.block-6 .contents .box .faq-item .faq-btn.active .toggle-icon {
        height: 1px; }
        main section.block-6 .contents .box .faq-item .faq-btn.active .toggle-icon::before {
          width: 20px; }

  footer {
    position: relative; }
    footer .header-bg {
      position: absolute;
      inset: 0;
      z-index: -2;
      pointer-events: none;
      background-image: url("./imgs/header-bg.svg");
      background-repeat: no-repeat;
      background-size: 100%;
      background-position: center;
      top: 0%; }
    footer .contents {
      padding-bottom: 15px; }
      footer .contents .box > img.logo {
        position: unset;
        transform: unset;
        margin: 0 auto; }
      footer .contents .box p span {
        flex-wrap: wrap; }
      footer .contents .box table th {
        display: flex;
        flex-shrink: 0;
        align-items: start;
        width: 4em; } }
@media screen and (max-width: 370px) {
  main .faq-illust-wrap a {
    width: 85%;
    margin: 1em auto;
    position: unset;
    transform: unset;
    font-size: 18px; } }

/*# sourceMappingURL=style.css.map */
