@charset "UTF-8";
/* Scss Document */
:root {
  --light-grey-color: #d5d8da;
  --grey-color: #aeb6ba;
  --orange-color: #eb613b;
  --ave-midashigo: "Avenir Next", "Midashi Go MB1", sans-serif; /* 複合フォント代用。本番ではこちらを書き換えてください */
  --ave-hutogo: "Avenir Next", "Futo Go B101 JIS2004 AP", sans-serif; /* 複合フォント代用。本番ではこちらを書き換えてください */
  --helvetica: "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, "游ゴシック",
    "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo,
    "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --din: "din-2014", sans-serif;
}

html {
  font-size: 62.5%;
}

body {
  background-color: var(--grey-color);
  font-family: var(--ave-hutogo);
  letter-spacing: 2px;
  word-break: break-all;
}

.hiddenx {
  overflow-x: hidden;
}

h2 {
  color: var(--orange-color);
  font-family: var(--din);
  font-weight: 600;
  font-size: 3.2rem;
  padding-top: 2em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #fff;
  margin-bottom: 1.5em;
}

figure img {
  width: 100%;
}

a {
  transition: 0.4s;
}
a:hover {
  color: var(--orange-color) !important;
}

.content_width {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.menu_padding {
  /*
  padding-left: 288px;
  */
  padding-left: 20.5%;
}
@media screen and (max-width: 768px) {
  .menu_padding {
    padding-left: 110px;
  }
}

/* menu */
#menu {
  pointer-events: none;
  width: 100%;
  height: 100vh;
  padding-left: 58px;
  padding-top: 44px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  overflow: scroll;
  padding-bottom: 30px;
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
  /*スクロールバー非表示（Chrome・Safari）*/
}
#menu::-webkit-scrollbar {
  display: none;
}
#menu figure {
  width: 155px;
  margin-bottom: 62px;
}
#menu figure a {
  pointer-events: all;
}
#menu nav {
  padding-left: 38px;
}
#menu li {
  margin-bottom: 30px;
}
@media screen and (max-width: 540px) {
  #menu li {
    margin-bottom: 20px;
  }
}
#menu li a {
  pointer-events: all;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--din);
  color: #fff;
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
}
#menu li a span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #73787b;
  font-weight: 500;
  font-size: 1.7rem;
  padding-left: 0.8em;
  margin-top: 0.8em;
  position: relative;
  mix-blend-mode: multiply;
}
#menu li a span::before {
  content: "■";
  display: block;
  font-size: 6px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
#menu li a.active::before {
  content: "";
  display: block;
  width: 1em;
  height: 3px;
  background-color: var(--orange-color);
  position: absolute;
  left: -0.4em;
  top: 50%;
  transform: translate(-100%, -50%);
}
#menu .icon {
  display: flex;
}
#menu .icon a {
  pointer-events: all;
  display: block;
  width: 16px;
  margin-right: 16px;
}
#menu .icon a img {
  width: 100%;
}

@media screen and (max-width: 1050px) {
  #menu {
    padding-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  #menu figure {
    width: 120px;
    margin-bottom: 40px;
  }
  #menu nav {
    padding-left: 10px;
  }
  #menu li a {
    font-size: 1.6rem;
  }
  #menu li a span {
    font-size: 1.4rem;
  }
  #menu .icon a {
    width: 12px;
    margin-right: 12px;
  }
}
/* mv */
#mv {
  width: 100%;
  height: 790px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
#mv .content_width {
  height: 100%;
}
#mv figure {
  width: 460px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
#mv figure img {
  width: 100%;
}
#mv figure.mv_2025_txt {
  right: 50px;
  top: 55%;
  transform: none;
  filter: drop-shadow(2px 4px 6px black);
}
#mv p {
  color: var(--grey-color);
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1.5;
  position: absolute;
  right: 1em;
  top: 1em;
}
#mv p strong {
  font-weight: 400;
  font-size: 2.2rem;
}
#mv p br {
  display: none;
}
#mv span {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0;
  position: absolute;
  right: 1em;
  bottom: 1em;
}

@media screen and (max-width: 1050px) {
  #mv {
    height: 520px;
  }
  #mv p {
    font-size: 1.2rem;
  }
  #mv p strong {
    font-size: 1.6rem;
  }
  #mv p br {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #mv figure {
    width: 320px;
  }
}
@media screen and (max-width: 600px) {
  #mv {
    height: 100vh;
  }
  #mv.image-2 {
    background-position-x: -280px;
  }
  #mv.image-3 {
    background-position-x: -170px;
  }
  #mv.image-4 {
    background-position-x: -290px;
  }
  #mv.image-5 {
    background-position-x: -70px;
  }
  #mv figure {
    width: 180px;
    top: 0;
    transform: translate(0);
  }
  #mv figure.mv_2025_txt {
    top: 50px;
    right: 10px;
    width: 250px;
    height: 104px;
  }
  #mv figure.mv_2025_txt img {
    -o-object-fit: contain;
       object-fit: contain;
    height: 100%;
  }
  #mv p {
    color: #fff;
    top: auto;
    bottom: auto;
    top: 100px;
    text-align: right;
    font-size: 1rem;
  }
  #mv p strong {
    font-size: 1rem;
  }
}
.btn {
  display: block;
  width: 322px;
  padding: 0.2em 0.4em;
  background-color: #fff;
  border: 2px solid #44555e;
  color: #44555e;
  font-family: var(--din);
  font-weight: 600;
  font-size: 2.5rem;
  margin-left: auto;
  margin-right: 84px;
  transform: translate(0, -50%);
  position: relative;
}
.btn::after {
  content: "＞";
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.5rem;
  font-weight: 600;
  color: #44555e;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translate(0, -40%);
  z-index: 1;
}

/* news */
#more-news,
#more-column {
  display: none;
  font-family: var(--din);
  color: var(--orange-color);
  font-weight: bold;
  font-size: 2rem;
  padding: 2px 9px;
  border: var(--orange-color) solid 2px;
  background-color: #fff;
}
@media screen and (max-width: 540px) {
  #more-news,
  #more-column {
    display: block;
  }
}

#news,
#pick_up,
#column {
  background-color: var(--light-grey-color);
  padding-bottom: 48px;
}
#news h2,
#pick_up h2,
#column h2 {
  margin-bottom: 0;
}
#news .flex,
#pick_up .flex,
#column .flex {
  margin-top: 16px;
  padding-right: 82px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px;
}
@media screen and (max-width: 540px) {
  #news .flex,
  #pick_up .flex,
  #column .flex {
    gap: 10px;
  }
}
#news .flex::before,
#pick_up .flex::before,
#column .flex::before {
  content: "";
  display: block;
  width: 322px;
  order: 1;
}
#news .flex::after,
#pick_up .flex::after,
#column .flex::after {
  content: "";
  display: block;
  width: 322px;
}
#news article,
#pick_up article,
#column article {
  height: auto;
  width: 322px;
  background-color: #fff;
  opacity: 1;
  transition: all ease 0.5s;
}
#news article.is-hidden,
#pick_up article.is-hidden,
#column article.is-hidden {
  opacity: 0;
  visibility: hidden;
  height: 0;
}
#news article figure,
#pick_up article figure,
#column article figure {
  height: 254px;
}
#news article figure img,
#pick_up article figure img,
#column article figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#news article h3,
#pick_up article h3,
#column article h3 {
  display: block;
  width: 100%;
  color: #fff;
  font-family: var(--din);
  font-family: var(--ave-midashigo);
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.2rem;
  background-color: #494949;
  padding: 0.2em 0.4em;
  position: relative;
}
#news article h3 span,
#pick_up article h3 span,
#column article h3 span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  font-family: var(--din);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.2rem;
  background-color: #44555e;
  padding: 0.2em 2em;
  position: absolute;
  right: 0;
  top: 0;
}
#news article p,
#pick_up article p,
#column article p {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding: 0.8em;
  min-height: 65px;
}

@media screen and (max-width: 1050px) {
  #news .btn,
  #pick_up .btn,
  #column .btn {
    display: block;
    width: 120px;
    font-size: 2rem;
    margin-left: auto;
    margin-right: 10px;
  }
  #news .btn::after,
  #pick_up .btn::after,
  #column .btn::after {
    font-size: 2rem;
  }
  #news .flex,
  #pick_up .flex,
  #column .flex {
    padding-right: 10px;
  }
}
/* about */
#about {
  padding-bottom: 300px;
}
#about h3 {
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 54px;
}
#about .flex {
  padding-right: 132px;
  display: flex;
  justify-content: space-between;
}
#about .flex figure {
  max-width: 395px;
  width: 100%;
  position: relative;
}
#about .flex figure span {
  display: block;
  font-size: 1rem;
  letter-spacing: 0;
  margin-top: 1.5em;
}
#about .flex p {
  width: calc(100% - 395px);
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.75;
  padding-left: 88px;
  position: relative;
}
#about .flex p::before {
  content: "";
  display: block;
  width: 68px;
  height: 280px;
  background-image: url(../img/about_deco.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(0, -75%);
  z-index: -1;
}

@media screen and (max-width: 1050px) {
  #about h3 {
    font-size: 2.4rem;
  }
  #about .flex {
    padding-right: 10px;
    flex-direction: column;
  }
  #about .flex p {
    width: 100%;
    padding: 0;
    margin-top: 20px;
    z-index: 2;
  }
  #about .flex p::before {
    width: 50px;
  }
}
@media screen and (max-width: 768px) {
  #about {
    padding-bottom: 100px;
  }
  #about .flex p {
    font-size: 1.5rem;
  }
}
/* bridge */
#bridge .pc {
  width: 100%;
}
#bridge .sp {
  width: 100%;
  display: none;
}
#bridge figure {
  margin-bottom: 2px;
}
#bridge .content_width span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--din);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.2rem;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  #bridge .content_width span {
    padding-right: 1rem;
  }
}

@media screen and (max-width: 768px) {
  #bridge .pc {
    display: none;
  }
  #bridge .sp {
    display: block;
  }
}
/* program */
#program {
  margin-top: 100px;
}
#program article {
  padding-right: 82px;
  padding-top: 100px;
  padding-bottom: 280px;
  overflow: hidden;
  position: relative;
  margin-bottom: -120px;
}
#program article::before {
  content: "";
  display: block;
  width: 200%;
  height: 40px;
  background-color: var(--orange-color);
  position: absolute;
  right: 0;
  top: 0;
  transform-origin: right;
  transform: translate(220px, -150px) rotate(-45deg);
  z-index: -1;
}
#program .content {
  display: flex;
  justify-content: space-between;
}
#program .head {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}
#program .head h3 {
  color: #fff;
  font-family: var(--helvetica);
  font-style: italic;
  font-weight: 700;
  font-size: 13.5rem;
  letter-spacing: 0.04em;
  padding-left: 6px;
}
#program .head h3.small {
  font-size: 7.6rem;
}
#program .head .date p {
  padding: 0.8em 1.5em;
  display: flex;
  align-items: center;
  background-color: var(--light-grey-color);
  border: 1px solid var(--orange-color);
  margin-bottom: -1px;
}
#program .head .date p span {
  display: block;
  width: 126px;
  font-family: var(--helvetica);
  font-style: italic;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
#program .head .date p strong {
  display: block;
  font-weight: 600;
  font-size: 2.2rem;
  letter-spacing: 0.03em;
}
#program .left {
  padding-right: 32px;
}
#program .left h4 {
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 56px;
}
#program .left h4 span {
  font-weight: 500;
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}
#program .left p {
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 28px;
  letter-spacing: 0.1em;
  line-height: 1.75;
}
#program .left h5 {
  font-weight: 600;
  font-size: 1.5rem;
  padding-left: 0.8em;
  line-height: 1.5;
  position: relative;
  margin-bottom: 28px;
}
#program .left h5::before {
  content: "";
  display: block;
  width: 3px;
  height: 1.5em;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 0;
}
#program .left h5 span {
  display: block;
  margin-top: 16px;
}
#program .right {
  max-width: 686px;
  width: 100%;
}
#program .right .slide_outer {
  width: 100%;
}
#program .right .slide_outer span {
  font-size: 1rem;
  letter-spacing: 0;
}
#program .right .slide {
  width: 100%;
  /*
  figure {
    height: 450px;
    img {
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
  }
  */
}
#program .right .choreograper {
  margin-top: 20px;
}
#program .right .choreograper h4 {
  font-family: var(--helvetica);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  border-bottom: 1px solid #000;
}
#program .right .choreograper .flex {
  display: flex;
  justify-content: space-between;
}
#program .right .choreograper .flex figure {
  width: 128px;
  position: relative;
}
#program .right .choreograper .flex figure span {
  display: block;
  font-size: 1rem;
  letter-spacing: 0;
  margin-top: 1em;
}
#program .right .choreograper .flex figure.large {
  width: 304px;
}
#program .right .choreograper .flex p {
  width: calc(100% - 128px);
  padding-left: 1em;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.5;
}
#program .right .choreograper .flex p strong {
  display: block;
  font-size: 1.5rem;
}
#program .right .choreograper .flex p span {
  display: block;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.2em;
}
#program .right .choreograper .flex p.large {
  width: calc(100% - 304px);
}
#program .right .date {
  display: none;
}
#program .right .date p {
  padding: 0.8em 1.5em;
  display: flex;
  align-items: center;
  background-color: var(--light-grey-color);
  border: 1px solid var(--orange-color);
  margin-bottom: -1px;
}
#program .right .date p span {
  display: block;
  width: 126px;
  font-family: var(--helvetica);
  font-style: italic;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
#program .right .date p strong {
  display: block;
  font-weight: 600;
  font-size: 2.2rem;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 1050px) {
  #program article {
    padding-right: 10px;
  }
  #program .head {
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  #program .head .date {
    display: none;
  }
  #program .left h4 {
    margin-bottom: 24px;
  }
  #program .right .date {
    display: inline-block;
    margin-bottom: 24px;
    width: 100%;
    margin-top: 1rem;
  }
  #program .right .date p span {
    width: 100px;
  }
  #program .content {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  #program article {
    padding-top: 40px;
    padding-bottom: 80px;
    margin-bottom: 0;
  }
  #program article::before {
    width: 400%;
    height: 80px;
    transform: translate(100px, -150px) rotate(-65deg);
  }
  #program .head h3 {
    font-size: 5.5rem;
  }
  #program .head h3.small {
    font-size: 4.2rem;
  }
  #program .left {
    padding-right: 0;
  }
  #program .left p {
    font-size: 1.5rem;
  }
  #program .right {
    /*
    .slide {
      figure {
        height: 350px;
      }
    }
    */
  }
  #program .right .slide_outer span {
    display: block;
    transform: translate(0, -150%);
  }
  #program .right .choreograper .flex {
    flex-direction: column;
  }
  #program .right .choreograper .flex p,
  #program .right .choreograper .flex p.large {
    width: 100%;
    padding: 0;
    font-size: 1.3rem;
  }
}
.slide_outer.sp {
  display: none;
}

@media screen and (max-width: 600px) {
  #program .right {
    /*
    .slide {
      figure {
        height: 250px;
      }
    }
    */
  }
  #program .right .choreograper .flex figure.large {
    width: 200px;
  }
  .slide_outer.pc {
    display: none;
  }
  .slide_outer.sp {
    display: block;
  }
}
/* schedule */
#schedule {
  padding-top: 140px;
  padding-bottom: 114px;
}
#schedule h2 {
  margin-bottom: 2em;
}
#schedule .inner {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}
#schedule .flex {
  display: flex;
  width: auto;
  height: 435px;
  margin-bottom: 24px;
}
#schedule .head {
  width: auto;
  height: 100%;
}
#schedule .head figure {
  width: auto;
  height: 100%;
}
#schedule .head figure img {
  width: auto;
  height: 100%;
}
#schedule .body {
  width: auto;
  height: 100%;
  overflow-x: scroll;
}
#schedule .body figure {
  width: auto;
  height: 100%;
}
#schedule .body figure img {
  width: auto;
  height: 100%;
}
#schedule p {
  font-weight: 600;
  font-size: 1.9rem;
  line-height: 1.5;
}

@media screen and (max-width: 1050px) {
  #schedule {
    padding-top: 0;
  }
  #schedule .flex {
    height: 350px;
    position: relative;
    margin-bottom: 40px;
  }
  #schedule .flex.en::after {
    content: "scroll →";
  }
  #schedule .flex::after {
    content: "右にスクロール →";
    display: block;
    font-size: 1.4rem;
    margin-top: 0.5em;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate(0, 150%);
  }
  #schedule p {
    font-size: 1.4rem;
    padding-right: 10px;
  }
}
@media screen and (max-width: 600px) {
  #schedule .flex {
    height: 230px;
  }
}
/* movie */
#movie {
  background-color: #f5f3f3;
  padding-bottom: 118px;
}
#movie h2 {
  border-color: var(--light-grey-color);
  margin-bottom: 3em;
}

@media screen and (max-width: 1050px) {
  #movie h2 {
    padding-top: 2em;
  }
}
/* ticket */
#ticket {
  background-color: var(--light-grey-color);
  letter-spacing: 0.1em;
}
#ticket article {
  padding-bottom: 64px;
}
#ticket h3 {
  color: var(--orange-color);
  font-family: var(--din);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 2em;
}
#ticket h3 span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #000;
  font-family: var(--ave-hutogo);
  font-weight: 600;
  font-size: 3.2rem;
  border-bottom: 2px solid #fff;
  padding-bottom: 0.1em;
}
#ticket .flex {
  display: flex;
  position: relative;
}
#ticket .flex .left {
  width: 42%;
}
#ticket .flex .right {
  width: 58%;
}
#ticket .flex .ear_icon {
  width: 74px;
  position: absolute;
  left: 0;
  bottom: 0;
  mix-blend-mode: multiply;
}
#ticket .venue {
  background-color: #fff;
  padding: 24px;
  margin-right: 82px;
  margin-bottom: 24px;
}
#ticket .venue p {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 600;
}
#ticket .venue p span {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
}
#ticket .info {
  padding: 24px;
  border: 2px solid #fff;
  margin-right: 82px;
}
#ticket .info .text {
  border-top: 2px solid #fff;
  padding-top: 24px;
  margin-top: 24px;
  position: relative;
}
#ticket .info .text .support_icon {
  width: 180px;
  position: absolute;
  right: 24px;
  top: 24px;
  mix-blend-mode: multiply;
}
#ticket .info .text .student_icon {
  width: 71px;
  position: absolute;
  right: 124px;
  top: 24px;
  mix-blend-mode: multiply;
}
#ticket .info .orange {
  color: var(--orange-color);
}
#ticket .info p {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.8;
}
#ticket .info .large {
  font-size: 1.8rem;
}
#ticket .info .small {
  font-size: 1.5rem;
}
#ticket .info strong {
  font-size: 2rem;
  font-weight: 600;
}

@media screen and (max-width: 1050px) {
  #ticket .flex {
    flex-direction: column;
  }
  #ticket .flex .left {
    width: 100%;
  }
  #ticket .flex .right {
    width: 100%;
    margin-top: 20px;
  }
  #ticket .flex .ear_icon {
    position: static;
    margin-top: 20px;
  }
  #ticket .venue,
  #ticket .info {
    margin-right: 10px;
  }
  #ticket .venue .text .support_icon,
  #ticket .venue .text .student_icon,
  #ticket .info .text .support_icon,
  #ticket .info .text .student_icon {
    position: static;
    margin-top: 20px;
  }
}
@media screen and (max-width: 600px) {
  #ticket h3 span {
    font-size: 2.4rem;
  }
  #ticket .venue {
    padding: 20px 10px;
  }
  #ticket .venue p {
    font-size: 1.4rem;
  }
  #ticket .venue p span {
    font-size: 1.4rem;
  }
  #ticket .info {
    padding: 20px 10px;
  }
  #ticket .info p {
    font-size: 1.4rem;
  }
  #ticket .info .large {
    font-size: 1.4rem;
  }
  #ticket .info .small {
    font-size: 1.4rem;
  }
  #ticket .info strong {
    font-size: 1.4rem;
  }
}
/* access */
#access {
  background-color: var(--light-grey-color);
  padding-bottom: 110px;
}
#access h2 {
  margin-bottom: 3rem;
}
#access .flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-right: 82px;
}
#access article {
  max-width: 330px;
  width: 100%;
}
#access article iframe {
  width: 100%;
  height: 258px;
}
#access article p {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
#access article p span {
  display: block;
  font-size: 2rem;
  margin-top: 0.5em;
  margin-bottom: 0.2em;
}

@media screen and (max-width: 600px) {
  #access .flex {
    padding-right: 10px;
  }
  #access article p span {
    font-size: 1.6rem;
  }
}
/* footer */
footer {
  background-color: var(--light-grey-color);
  padding-bottom: 150px;
  padding-right: 82px;
  padding-top: 5rem;
}
footer p {
  color: #231815;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 54px;
}
footer p br {
  display: none;
}
footer .venue {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 54px;
}
footer .venue figure {
  height: auto;
}
footer .venue figure:nth-of-type(1) {
  width: 152px;
}
footer .venue figure:nth-of-type(2) {
  width: 200px;
}
footer .venue figure:nth-of-type(3) {
  width: 170px;
}
footer .venue figure img {
  width: 100%;
  height: auto;
}
footer .production {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 72px;
}
footer .production figure {
  width: auto;
  height: 80px;
}
footer .production figure img {
  width: auto;
  height: 100%;
}

@media screen and (max-width: 600px) {
  footer {
    padding-right: 10px;
  }
  footer p {
    line-height: 2;
    letter-spacing: 0;
    font-size: 1.3rem;
  }
  footer p br {
    display: block;
  }
  footer .venue {
    gap: 20px;
  }
  footer .venue figure:nth-of-type(1) {
    width: 107px;
  }
  footer .venue figure:nth-of-type(2) {
    width: 140px;
  }
  footer .venue figure:nth-of-type(3) {
    width: 120px;
  }
  footer .production figure {
    height: 60px;
  }
}
.news_single .content_width {
  padding-top: 44px;
  padding-left: 20.5%;
  min-height: 60vh;
  padding-right: 3rem;
}
.news_single h3 {
  font-size: 3rem;
  line-height: 1.75;
  font-family: "Futo Go B101 JIS2004 AP", sans-serif;
}
.news_single strong {
  font-size: 2.2rem;
}
.news_single .date {
  font-size: 1.8rem;
  margin-top: 1rem;
}
.news_single .news_contents {
  font-size: 1.6rem;
  margin-top: 4rem;
  line-height: 1.75;
  font-family: "Futo Go B101 JIS2004 AP", sans-serif;
  text-align: justify;
  font-feature-settings: "palt";
}
.news_single a {
  color: #fff;
}
@media screen and (max-width: 840px) {
  .news_single div {
    width: 100% !important;
  }
}
.news_single img {
  width: 100%;
}
.news_single img.mini_photo {
  max-width: 300px;
  height: auto;
  margin: 1rem 0 0.5rem;
}
.news_single .credit {
  display: block;
  font-size: 1rem;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-family: var(--ave-hutogo);
  font-weight: normal;
}
@media screen and (max-width: 600px) {
  .news_single .content_width {
    padding-left: 32.5%;
    padding-right: 1rem;
  }
  .news_single h3 {
    font-size: 2.2rem;
    line-height: 1.6;
  }
  .news_single .date {
    font-size: 1.6rem;
    margin-top: 1rem;
  }
  .news_single .news_contents {
    font-size: 1.4rem;
    margin-top: 4rem;
    line-height: 1.6;
  }
  .news_single iframe {
    width: 100%;
    height: auto;
  }
  .news_single iframe.instagram-media {
    width: 100% !important;
    height: revert-layer;
  }
  .news_single .mini_photo {
    width: 100%;
    height: auto;
  }
}

#single,
#page {
  background-color: var(--light-grey-color);
}
#single .btn,
#page .btn {
  font-size: 2rem;
  font-family: var(--ave-hutogo);
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.2em 4rem 0.2em 1rem;
}
@media screen and (max-width: 600px) {
  #single .btn,
  #page .btn {
    margin-right: 0;
    font-size: 1.8rem;
  }
}
#single .btn::after,
#page .btn::after {
  transform: translate(0, -46%);
}
#single .under_btn,
#page .under_btn {
  margin-top: 5rem;
}

.youtube-link {
  position: relative;
  padding-bottom: 56.2%; /*アスペクト比 16:9の場合の縦幅 縦幅ここで調整*/
  height: 0;
  overflow: hidden;
  width: 100%; /*大きさはここで調整*/
  background-image: url("");
  margin-top: 2rem;
}
.youtube-link iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.link {
  transition: all ease 0.5s;
}
.link.white {
  color: #fff;
  font-size: 1.4rem;
}

/*2024-03-12*/
#media {
  padding: 10rem 0;
}
#media ul li {
  font-size: 1.6rem;
  font-family: var(--ave-hutogo);
  border-bottom: 0.5px solid #000;
  padding: 1rem 0;
}
#media ul li span {
  margin-right: 2rem;
}
@media screen and (max-width: 600px) {
  #media ul li span {
    display: block;
    margin-bottom: 1rem;
  }
}

.langswitch {
  position: fixed;
  top: 2rem;
  right: 0;
  border: var(--orange-color) 1.5px solid;
  background-color: #fff;
  width: 80px;
  height: 30px;
  font-size: 1.4rem;
  font-family: var(--ave-hutogo);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 0.5s;
  font-weight: 500;
  letter-spacing: 0;
  z-index: 10000;
}
@media screen and (max-width: 600px) {
  .langswitch {
    top: initial;
    bottom: 3rem;
  }
}
.langswitch li {
  list-style: none;
}
.langswitch li a {
  color: var(--orange-color);
}
.langswitch li a:hover {
  color: #fff !important;
}
.langswitch:hover {
  background-color: var(--orange-color);
}
.langswitch:hover li a {
  color: #fff;
}

dl.price {
  display: flex;
  flex-flow: row wrap;
}
dl.price dt,
dl.price dd {
  font-size: 2rem;
  font-weight: 600;
}
dl.price dt {
  width: 40%;
}
dl.price dd {
  padding-left: 1rem;
  width: 60%;
}

.pr_200px {
  padding-right: 200px;
}
@media screen and (max-width: 600px) {
  .pr_200px {
    padding-right: 0;
  }
}

/* 20240702　追加*/
.small-cap {
  font-size: 1.5rem;
  padding-right: 10px;
}
@media screen and (max-width: 600px) {
  .small-cap {
    font-size: 1.3rem;
    text-align: initial;
    padding-right: 0;
  }
}

/*2024-07-11追加*/
.fix_btn {
  position: fixed;
  right: 0;
  bottom: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--orange-color);
  color: #fff;
  width: 240px;
  height: 80px;
  font-size: 2rem;
  z-index: 100;
  padding-right: 24px;
  transition: all ease 0.5s;
}
.fix_btn:hover {
  background-color: #fff;
}
.fix_btn::after {
  content: "＞";
  display: block;
  width: 32px;
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  /* transform: translate(0, -40%); */
  z-index: 1;
  background-color: #c85130;
  height: 100%;
  /* mix-blend-mode: multiply; */
  display: flex;
  align-items: center;
}

.img-logo {
  width: 180px;
  height: 140px;
  display: inline-block;
  margin: 0 20px 30px 0;
}
.img-logo img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 100%;
}/*# sourceMappingURL=style.css.map */