*{
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  line-height:1.75em;
}

.material-symbols-rounded {
  font-variation-settings:
  'FILL' 1,
  'wght' 100,
  'GRAD' 0,
  'opsz' 24
}

h2{
    font-weight:700;
    font-size:28px;
    color:#204ba0;
    text-align:center;
    margin-bottom: 50px;
}

h2 span {
    display: block;
    font-weight: 600;
    font-size: 14px;
}

p{
  font-size:16px;
  color:#282828;
}

dt,dd{
    color: #282828;
}

a{
    transition:.3s;
    opacity:1;
}

a:hover{
    opacity:.5;
}

a.btn {
    padding: 0.75em 0;
    position: relative;
    display: inline-block;
    background: #204ba0;
    color: #fff;
    width: 400px;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
}

a.btn:after {
    font-family: 'Material Symbols Rounded';
    font-weight: normal;
    font-style: normal;
    content: '\e5e1';
    font-size: 16px;
    position: absolute;
    right: 12px;
    transition:.3s;
}

a.btn:hover::after{
    right:5px;
}

a.btn.noLink:after {
    display: none;
}

a.btn.fin {
    font-size: 0.85em;
}

.pc{display:block;}

.br1200,.br768,.br450{display:none;}

.inner {
    width: 1200px;
    margin: 0 auto;
}

.content{
    padding:75px 0;
}

header {
    padding: 20px 75px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    width: 100%;
    
}

header.scrolled {
    position: fixed;
    box-shadow: 0 1px 10px 3px #00000047;
    z-index: 2;
    animation: header .5s linear;
}

@keyframes header {
  0% {
    transform: translateY(-30px);
    opacity:0;
  }
  100% {
    transform: translateY(0);
    opacity:1;
  }
}

header .logo img {
    max-width: 350px;
}

header .menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

header .link li {display: inline-block;}

header .link li a {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #d36814;
    border-right: 1px solid #d36814;
    padding: 0 0.75em;
}

header .link li:last-child a {
    border: 0;
}

.share {
    display: flex;
    gap: 15px;
}

.share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    background-color: #eee;
    border-radius: 50%;
    text-decoration: none;
    color: #333;
    font-size: 18px;
}

.share a.x { background: #000; color: #fff; }        /* X */
.share a.facebook { background: #1877F2; color: #fff; } /* Facebook */
.share a.line { background: #06C755; color: #fff; }     /* LINE */
.share a.instagram { background: #E1306C; color: #fff; }/* Instagram (シェア不可、リンク用) */
.share a.copy { background: #555; color: #fff; }         /* コピー */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  z-index:5;
  position: relative;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background: #d36814;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* x */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(12.5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-12.5px);
}


/*top*/
#top.scrolled {
    padding-top: 94px;
}

#top h1 img {
    width: 100%;
}

#lead {
    background: linear-gradient(-45deg, #dce9ff,#fff);
}

#lead h2,#lead h3 {
    margin-bottom: 30px;
}

#lead h3 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

#lead p {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

#slide {
    color: #fff;
    background: #a1a1a1;
    padding: 0;
    text-align: center;
}

.slider {
  width: 100%;
  height: 283px;
  overflow: hidden;
  position: relative;
}

.slider span {
    position: absolute;
    z-index: 1;
    bottom: 10px;
    right: 10px;
}

.slider-track {
  display: flex;
  width:9350px;
  animation: scroll 60s linear infinite;
}

.slider-track img {
  width: 425px;
  height: auto;
  flex-shrink: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-2975px);
  }
}

.castPWrap {
    padding: 50px;
    margin-bottom: 30px;
}

.castPWrap h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
}

.castPWrap h3 span {
    font-weight: 800;
    font-size: 26px;
}

.castBoxWrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    row-gap: 30px;
}

.castBox{
    cursor: pointer;
}

.castBoxWrap a.castBox {
    text-align: center;
    width: 16%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.castBox .role p {
    line-height: 1;
    font-weight: 900;
}

.castBox .role p .roleE {
    font-size: 0.8em;
}

.castBox .photo,.castBox .photo img {
    width: 100%;
}


.castBox .name p {
    line-height: 1.25em;
    font-size: 18px;
    font-weight: bold;
}

.castBox .name p span {
    font-size: 15px;
}

.cast1011 {
    background: #eef5ff;
}

.cast1011 h3,.cast1011 h3 span {
    color: #204ba0;
}

.cast1012 {
    background: #fff8f0;
}

.cast1012 h3,.cast1012 h3 span {
    color: #c94800;
}

.castNPWrap {
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 30px;
}

.castNPBox .role p {
    color: #204ba0;
    font-weight: 700;
    font-size: 1.25em;
}

.castNPBox p {line-height: 1.5em;}

.castNPBox .name p {
    font-weight: bold;
}

.castNPBox .name p span {
    font-size: 15px;
}

.staffPWrap {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.staffNPWrap {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 30px;
}

.staffPBox a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;  
    width: 190px;
}

.staffNPBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;  
}

.staffPBox .role p,.staffNPBox .role p {
    font-size: 20px;
    line-height: 1em;
    font-weight: 700;
    color: #204ba0;
}

.staffPBox .role p span,.staffNPBox .role p span {
    font-size: 14px;
    color: #204ba0;
}

.staffPBox .photo {
    width: 100%;
}

.staffPBox .photo img {
    width: 100%;
}

.staffPBox .name p,.staffNPBox .name p {
    line-height: 1.5em;
    font-weight:bold;
    font-size: 17px;
}

.creator {
    margin-top: 30px;
    text-align: center;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.modal.show {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    margin: auto;
    background: #fff;
    padding: 30px;
    top: calc(50% - 35%);
    width: 80%;
    height: 70%;
    max-height: 80vh; 
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 8px;
    animation: fadeIn .3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 24px;
    cursor: pointer;
}

.modal-content-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    overflow-y: auto;
    flex: 1;
    padding-right: 10px;
}

.modal-content p.name {
    font-size: 1.2em;
    font-weight: 700;
    color: #204ba0;
    margin-bottom: 0.25em;
}

body.no-scroll {
    overflow: hidden;
    height: 100%;
}


#ticket {
    background: #f7f7f7;
}

#ticket .lead {
    text-align: center;
}

#ticket .value {
    text-align: center;
    margin-top: 1.5em;
}


.sonore {
    margin-top: 30px;
    text-align: center;
    padding:15px;
    background: #fff;
    border: 1px solid #204ba0;
}

.sonore h3 {
    color: #204ba0;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sonore h3 span {
    display: block;
    font-size: 0.8em;
}

dl.price{
    margin-bottom:15px;
}

dl.price dt,dl.price dd {
    display: inline;
    color: #282828;
}

dl.price dt span{
    font-size:0.75em;
}

dl.price dd {
    margin-right:1.25em;
}

dl.price dd:last-child {
    margin-right:0;
}

dl.date {
    margin-bottom: 15px;
}

#ticket .value p span {
    font-size: 1.2em;
    font-weight: 600;
}

.ticketBoxWrap {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.ticketBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: calc(50% - 15px);
    background: #fff;
    border: 1px solid #204ba0;
    padding: 30px;
    text-align: center;
}

.ticketBox h3 {
    font-size: 20px;
    font-weight: 700;
    color: #204ba0;
}

a.tel {
    color: #204ba0;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
    line-height: 1.5em;
}

a.tel span {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
}

.col1 .ticketBox {
    width: 100%;
    padding: 50px;
}

.etcBox {
    background: #eef5ff;
    padding: 45px 60px;
}

.etcBox h3 {
    font-size: 26px;
    font-weight: 800;
    color: #204ba0;
    line-height: 1.1em;
    text-align: center;
    margin-bottom: 30px;
}

.etcBox h3 span {
    font-size: 16px;
    line-height: 2.75em;
}

.etcBox .btnWrap {
    text-align: center;
}

.etcCol2Wrap {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.etcCol2Box {
    width: calc(50% - 15px);
}

.etcLesson {
    margin-bottom: 50px;
}

.etcLesson h4 {
    line-height: 2em;
    margin-bottom: 10px;
}

.etcLesson h4 span {
    font-weight: 800;
    color: #204ba0;
    font-size: 20px;
}

span.lessonTitle {
    display: block;
}

.etcBox span.date {
    font-size: 1.5em;
    line-height: 1em;
    color: #204ba0;
    font-weight: 800;
}

.etcLesson dl {
    display: block;
}

.etcLesson dt,.etcLesson dd {
    display: inline;
}

.etcLesson dd span {
    font-size: 1.6em;
    font-weight: 800;
}

.etcLesson .btnWrap {
    margin-top: 15px;
}

.etcLesson.detail {
    margin-bottom: 0;
    border-top: 1px solid #204ba0;
    padding-top: 30px;
    text-align: center;
}

.etcLesson.detail dl {
    margin-bottom: 7px;
}

.etcPhoto {
    text-align: center;
}

.etcPhoto img {
    margin-bottom: 30px;
}

.etcPhotoDate {
    margin-top: 15px;
}

.etcPhotoDate:nth-of-type(2) {
    margin-bottom: 15px;
}

.etcPhotoDate p {
    line-height: 2.5em;
}

.etcPhoto .btnWrap {
    margin-top: 15px;
}

.etcPhoto a img{
    height:175px;
}

#chirashi {
    text-align: center;
    padding-top: 0;
}

#support {
    background: #eef5ff;
    text-align: center;
    padding:30px 0;
}

.supportWrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.supportBox h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #282828;
}

.supportBox img {
    max-width: 250px;
}

.supportBox img:nth-of-type(2) {
    margin-left: 20px;
}

footer {
    background: #204ba0;
    text-align: center;
    padding: 45px 0;
}

footer p {
    color: #fff;
    line-height: 2em;
}

@media only screen and (max-width: 1200px){
.br1200{display:block;}

.inner{width:100%; padding:0 30px;}
    header .menu {
display: none;
}

.hamburger {
    display: flex;
}

.menu {
    display: none;
}

.menu.active {
    position:fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.menu.active .link ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80vw;
}

.menu.active .link li a {
    display: block;
    border-right: none;
    font-size: 20px;
    padding: 10px 0px;
    border-bottom: 1px solid #d36814;
}

header .link li {
    width: 100%;
    text-align: center;
}

.menu.active .link li:last-of-type a {
    border: 0;
}

.share {
    justify-content: center;
}

.content {
padding: 50px 0;
}


h2 {
    font-size: 22px;
    margin-bottom: 30px;
}

p{
    font-size:14px;
}

a.btn {
    font-size: 14px;
}

#lead h2, #lead h3{
    margin-bottom:15px;
}

#lead h3 {
    font-size: 20px;
}

#lead p {
    font-size: 16px;
}

.castPWrap{
    padding:30px;
}

.castPWrap h3 {
    font-size: 18px;
}

.castPWrap h3 span {
    font-size: 24px;
}

.castBoxWrap a.castBox {
    width: 22%;
}

.castBoxWrap {
    gap: 4%;
    row-gap: 20px;
}

.castBox .role p {
    font-size: 14px;
}

.castBox .name p {
    font-size: 14px;
}

.castBox .name p span {
    font-size: 12px;
}

.staffNPWrap {
    flex-wrap: wrap;
    gap: 50px;
}

.creator li {
    font-size: 14px;
}

.ticketBox h3 {
    font-size: 18px;
}

.ticketBox {
    padding: 15px 30px;
}

.ticketBox a.btn {
    width: 100%;
}

.etcLesson a.btn,.etcPhoto a.btn {
    width: 100%;
}

.etcBox {
    padding: 30px;
}

.etcBox h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.etcBox h3 span {
    font-size: 14px;
}

.etcLesson h4 span {
    font-size: 18px;
}

.etcLesson .btnWrap {
    margin-top: 10px;
}

.etcLesson dd span {
    font-size: 1.45em;
}

.etcLesson h4 span.lessonTitle {
    display: block;
    line-height: 1.5em;
    margin-bottom: 10px;
}

.etcLesson h4 {
    margin-bottom: 0;
}

.supportBox h3 {
    font-size: 20px;
}

.supportBox img {
    max-width: 200px;
}

.supportWrap {
    gap: 20px;
}

}

@media only screen and (max-width: 768px){

.pc{
    display:none;
}

.br768{
    display:block;
}

header {
    padding: 15px 30px;
}

header .logo img {
    max-width: 220px;
}

.ticketBoxWrap {
    flex-direction: column;
    margin-top: 30px;
    gap: 15px;
}

.ticketBox {
    width: 100%;
}

.content {
    padding: 30px 0;
}

.etcCol2Wrap {
    flex-direction: column;
    gap: 15px;
}

.etcCol2Box {
    width: 100%;
    padding: 15px 20px;
}

.etcBox a.btn {
    width: 100%;
}

.etcBox h3 span.sub {
    line-height: 1em;
}

.etcBox span.date {
    font-size: 1.35em;
}

.castPWrap h3{
    text-align:center;
}

.castNPWrap {
    flex-direction: column;
    margin-bottom: 50px;
}

.castBoxWrap a.castBox {
    width: 48%;
}

.castBoxWrap {justify-content: center;}

.castNPBox .role p {
    font-size: 1.1em;
}

.castNPBox .name p span {
    font-size: 14px;
}

.staffNPWrap {
    gap: 30px;
}

.staffPBox .role p, .staffNPBox .role p {
    font-size: 18px;
}

.staffPBox .name p,.staffNPBox .name p {
    font-size:14px;
}

.staffPBox {
    width: 47%;
}

.staffPWrap {
    gap: 6%;
}

.staffPBox a {
    width: 100%;
}

.slider{
    height: 250px
}

.slider-track {
  width:8250px;
}

.slider-track img {
  width: 375px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-2625px);
  }
}

h2 {
    font-size: 18px;
}

#lead h3 {
    font-size: 16px;
}

#lead p {
    font-size: 14px;
}

.castPWrap h3 {
    font-size: 16px;
}

.castPWrap {
    padding: 15px 25px;
}

.inner {
    padding: 0 15px;
}

.ticketBox h3 {
    font-size: 16px;
}

.modal-photo img {
    height: 160px;
}

.modal-content {
    width: 90%;
    height: 70%;
    max-height: 100vh;
    top: 15%;
    padding: 15px 20px;
}

.modal-txt p.datail {
    font-size: 13px;
}

.modal-content p.name {
    font-size: 1em;
}

.etcBox h3 {
    font-size: 18px;
}

.etcBox h3 span {
    font-size: 12px;
}

.etcLesson h4 span {
    font-size: 16px;
}

.etcBox span.date {
    font-size: 1.25em;
}

.etcLesson dd span {
    font-size: 1.3em;
}

}

@media only screen and (max-width: 450px){
    br.br450{display:block;}
    .etcPhoto a img {
        width:100%;
        height:auto;
    }

    #chirashi a.btn{
        width:100%;
    }

a.btn.fin:after {
    top: calc(50% - 0.5em);
}
}

/*250730*/
.con-info-box h3,.ticket-value-wrap h3 {
    font-size: 24px;
    font-weight: 700;
    color: #204ba0;
    text-align: center;
    margin-bottom: 30px;
}

.con-info-box dt {
    background: #204ba0;
    color: #fff;
    display: inline-block;
    width: 6em;
    text-align: center;
    padding: 0.35em 0;
    border-radius: 5px;
    font-size: 24px;    
}

.con-info-box dd {
    font-size: 24px;
}

.con-info-box dl {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.con-info-box dl .row {
    width: 675px;
    display: flex;
    align-content: center;
    align-items: center;
    gap: 15px;
}

.con-info-box dd span {
    display: block;
    font-size: 0.8em;
}

.con-info-box dd span a {
    text-decoration: underline;
}

.ticket-value-wrap table {
    border-collapse: collapse;
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
    text-align: center;
    font-family: sans-serif;
}
.ticket-value-wrap th, .ticket-value-wrap td {
    border: 1px solid #ccc;
    padding: 15px;
    width:200px;
    font-size:22px;
}
.ticket-value-wrap td {
    vertical-align: middle;
    background:#fff;
}
.ticket-value-wrap thead th {
    background-color: #204ba0;
    color: #fff;
    text-align: center;
}
.ticket-value-wrap .note {
    font-size: 0.65em;
}

#theater {
    background: #fceade;
}

#theater .col2 {
    display: flex;
    align-items: center;
    gap: 3%;
}

#theater .col2 .img {width: 43%;}

#theater .col2 .txt {
    width: 55%;
}

#theater .col2 .img img {
    width: 100%;
}

#theater .col2 .txt h3 {
    font-size: 20px;
    margin-bottom: 1em;
    font-weight: bold;
}

@media only screen and (max-width: 768px){
.con-info-box dl .row {
    width: 100%;
    flex-direction: column;
    gap: 5px;
}

.con-info-box h3, .ticket-value-wrap h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.con-info-box dl {
    margin-bottom: 30px;
}

.con-info-box dt {
    width: auto;
    padding: 0.25em 1em;
    font-size: 18px;
}

.con-info-box dd {
    font-size: 18px;
    text-align: center;
}

.ticket-value-wrap th, .ticket-value-wrap td {
    padding: 0.25em;
    font-size: 18px;
}
#theater .col2 {
    flex-direction: column;
    gap: 15px;
    padding: 0 1.5em;
}

#theater .col2 .img {
    width: 100%;
}

#theater .col2 .txt {
    width: 100%;
}

#theater .col2 .txt h3 {
    font-size: 16px;
}

#theater .col2 .txt h3 br {
    display: none;
}
}



a.fixBtn {
    position: fixed;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff385c 0%, #b90028 100%);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    padding: 2.2em 2em 2.2em 1em;
    border-radius: 16px 0 0 16px;
    box-shadow: 0 6px 24px -2px #ff385c66, 0 1.5px 10px #0002;
    letter-spacing: 0.06em;
    transition: right 0.3s, box-shadow 0.2s, background 0.5s, opacity 0.2s;
    opacity: 0.92;
    cursor: pointer;
    overflow-x: visible;
}

.fixBtn-vertical {
    writing-mode: vertical-lr;
    text-align: center;
    display: block;
}

.fixBtn-img {
    width: 40px;
    height: auto;
    margin-top: 8px;
}

/* ホバー時なども従来通り */
a.fixBtn:hover,
a.fixBtn:focus {
    right: 0;
    opacity: 1;
    background: linear-gradient(135deg, #ff5972 0%, #a30022 100%);
}

/* スマホ時は横並び */
@media only screen and (max-width: 750px) {
  a.fixBtn {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    transform: none;
    width: 100vw;
    border-radius: 0;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    letter-spacing: 0.03em;
    padding: 1.5em 0.5em;
    gap: 6px;
    transition: none;
    background: linear-gradient(135deg, #ff385c 0%, #b90028 100%);
  }
  .fixBtn-vertical {
    writing-mode: horizontal-tb;
    display: inline;
  }
  .fixBtn-img {
    width: 30px;
    margin-top: 0;
    margin-left: 8px;
  }
}
