@charset "UTF-8";
/* ---- reset ----- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Rajdhani:wght@300;400;500;600;700&display=swap");
html, body, main, header, section, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  font-size: 16px;
  color: hsl(0, 0%, 4%);
  background: hsl(0, 0%, 4%);
}

article, header, footer, aside, figure, figcaption, nav, section {
  display: block;
}

* {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

a {
  color: hsl(0, 0%, 4%);
  display: block;
  text-decoration: none;
}

p {
  font-size: 1rem;
  line-height: 1.8;
}

img {
  width: 100%;
  pointer-events: none;
}

main {
  display: block;
  overflow: hidden;
}


/* ---- reset end ----- */
/* ----- keyframes ----- */
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes scrollAnim {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}
@keyframes scrollAnim {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}
@-webkit-keyframes headerAnim1 {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@keyframes headerAnim1 {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@-webkit-keyframes headerAnim2 {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes headerAnim2 {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@-webkit-keyframes lineAnim {
  0% {
    left: -100%;
  }
  100% {
    left: 0%;
  }
}
@keyframes lineAnim {
  0% {
    left: -100%;
  }
  100% {
    left: 0%;
  }
}
/* ----- keyframes end ----- */
section#gallery.galleryContainer .galleryModalContainer {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
section#gallery.galleryContainer .galleryModalContainer::-webkit-scrollbar {
  display: none;
}

/* top style*/
.pcBackground {
  display: none;
}

.kvContainer {
  position: relative;
}
.kvContainer .flowBtn {
  position: absolute;
  top: 68vh;
  right: 5%;
  width: 100px;
}
.kvContainer .ticketBtn {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  background: rgba(255, 255, 255, 0.4);
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.kvContainer .ticketBtn a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.3rem 0;
}
.kvContainer .ticketBtn a span {
  display: inline-block;
}
.kvContainer .ticketBtn a .leftArrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 15px solid #111D41;
  border-right: 0;
}
.kvContainer .ticketBtn a .text {
  color: #111D41;
  font-size: 1.875rem;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  margin: 0 0.625rem;
}
.kvContainer .ticketBtn a .rightArrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 15px solid #111D41;
  border-left: 0;
}
.kvContainer .scroll {
  display: none;
}

section {
  padding: 2.5rem 0;
}
section h2 {
  font-family: "Rajdhani", sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
}
section h2 span {
  display: block;
  width: 26%;
  height: 2px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
section h2 span::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
}
section h2.show {
  -webkit-animation: fadein ease 0.5s forwards;
          animation: fadein ease 0.5s forwards;
}
section h2.show span::before {
  -webkit-animation: lineAnim ease 0.5s 0.5s forwards;
          animation: lineAnim ease 0.5s 0.5s forwards;
}

.gradient {
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#002056));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #002056 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #002056 100%);
}

.slickPic .slick-arrow {
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
}
.slickPic .slick-arrow::before {
  color: transparent;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.slickPic .slick-prev {
  left: 5px;
}
.slickPic .slick-prev::before {
  background-image: url(../images/slide_prev.svg);
}
.slickPic .slick-next {
  right: 5px;
}
.slickPic .slick-next::before {
  background-image: url(../images/slide_next.svg);
}

section#news.newsContainer {
  padding: 2.5rem 0;
  background: hsl(0, 0%, 4%);
  position: static;
}
section#news.newsContainer h2 {
  width: 100%;
  margin: 0 auto 1.5625rem;
  text-align: center;
  opacity: 0;
}
section#news.newsContainer .newsList {
  width: 90%;
  margin: 0 auto;
}
section#news.newsContainer .newsItem {
  margin: 0 0 0.625rem;
}
section#news.newsContainer .newsItem a {
  background: #002056;
  padding: 1.25rem 1rem;
}
section#news.newsContainer .newsItem .title {
  padding: 0 0 1rem;
  margin: 0 0 0.625rem;
  border-bottom: 1px solid #fff;
  font-size: 0.875rem;
}
section#news.newsContainer .newsItem .time {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.875rem;
  font-weight: bold;
}
section#news.newsContainer .moreBtn {
  text-align: right;
  width: 90%;
  margin: 0 auto;
}
section#news.newsContainer .moreBtn a {
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.75rem;
  font-weight: bold;
  display: inline-block;
}
section#news.newsContainer .moreBtn a::after {
  content: "▶︎";
  font-size: 0.625rem;
  margin: 0 0 0 0.3rem;
}

.detailContainer {
  background: #002056;
  position: relative;
  padding: 0 0 1.875rem;
}
.detailContainer .detailImage {
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  width: 100%;
  /*height: 380px;*/
	height: 0;
	padding-bottom: 66.53%;
	margin: 0 0 1.25rem;
}
.detailContainer .detailCopy {
  position: absolute;
  /*top: 1rem;*/
	top: 0rem;
	left: 0;
}
.detailContainer .detailCopy .text p {
  padding: 0 0.625rem 0 1rem;
  font-size: 1.5rem;
  display: inline-block;
  margin: 0 0 0.3rem;
  position: relative;
  background: hsl(0, 0%, 4%);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
.detailContainer .detailCopy .text p{font-size: 1.0rem;}
}

.detailContainer .detailCopy .text p:last-child {
  display: block;
}
.detailContainer .detailCopy .text p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsl(0, 0%, 4%);
}
.detailContainer .detailCopy .text.show p::before {
  -webkit-animation: headerAnim1 ease-out 0.5s forwards;
          animation: headerAnim1 ease-out 0.5s forwards;
}
.detailContainer .detailCopy .text.show p:nth-child(2n)::before {
  -webkit-animation: headerAnim1 ease-out 0.5s 0.5s forwards;
          animation: headerAnim1 ease-out 0.5s 0.5s forwards;
}
.detailContainer .detailTextContainer dl {
  width: 70%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.detailContainer .detailTextContainer dl dt {
  background: #fff;
  color: #2C2C2C;
  font-size: 14px;
  text-align: center;
  width: 20%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 1rem;
  padding: 0.3rem 0;
  line-height: 1.5;
}
.detailContainer .detailTextContainer dl dd {
  font-size: 0.75rem;
  color: #fff;
  line-height: 1.5;
  width: 75%;
  margin: 0 0 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.detailContainer .detailTextContainer .accessBtn a {
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  padding: 0 0 0.625rem;
  position: relative;
}
.detailContainer .detailTextContainer .accessBtn a::after {
  content: "";
  background-image: url(../images/arrow_icon.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 100%;
  height: 0.625rem;
  position: absolute;
  bottom: 0;
  left: 0;
}

.textContainer {
  padding: 3.75rem 0;
}
.textContainer h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  margin: 0 0 2.5rem;
  opacity: 0;
  line-height: 1.2;
}
.textContainer h2 .line {
  display: block;
  width: 26%;
  height: 2px;
  margin: 1.25rem auto 0;
  position: relative;
  overflow: hidden;
}
.textContainer h2 .line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
}
.textContainer h2.show {
  -webkit-animation: fadein ease 0.5s forwards;
          animation: fadein ease 0.5s forwards;
}
.textContainer h2.show span::before {
  -webkit-animation: lineAnim ease 0.5s 0.5s forwards;
          animation: lineAnim ease 0.5s 0.5s forwards;
}
.textContainer .large {
  font-size: 3.3vw;
  text-align: center;
  margin: 0 0 2.5rem;
  padding: 0 10px;
}
.textContainer .moreText {
  width: 90%;
  margin: 0 auto 1.25rem;
  display: none;
}
.textContainer .moreText p {
  font-size: 0.875rem;
  text-align: justify;
  font-weight: 300;
}
.textContainer .btn {
  font-size: 1rem;
  font-family: "Rajdhani", sans-serif;
  text-align: center;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  cursor: pointer;
}
.textContainer .btn.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.textContainer .btn span {
  display: inline-block;
  width: 0.75rem;
  height: 1.25rem;
  background-image: url(../images/arrow_icon.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 6px 0 0;
}
.textContainer .btn.moreBtn span {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.textContainer .btn.closeBtn span {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

/*AMBASSADOR 名前エリア*/
.ambSection .above .name {
  background: #fff;
  /*padding: 9px 4% 7px;*/
	padding: 0px 4% 7px;
  position: relative;
  top: -1.25rem;
  left: 0;
  z-index: 2;
  display: inline-block;
  line-height: 1;
  max-width: 80%;
  overflow-wrap: anywhere;
  word-break: break-all;
  line-break: strict;
  letter-spacing: 0;
}
/*AMBASSADOR 名前エリア*/

.ambSection .above .name span {
	line-height: 1;
    font-size: 1.25rem;
    font-family: "Rajdhani", sans-serif;
    font-weight: 600;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: cover;
    background-color: hsl(0, 0%, 4%);
    background-image: url(../images/amb_text_bg.png);	
}

/*.ambSection .above .name ruby {
    color: hsl(0, 0%, 4%) !important;
    background: none;
}*/

.ambSection .above .name span ruby rt {
	text-align: center;
	color: hsl(0, 0%, 4%);
	font-size: 0.625rem;
	padding-top: .8em;
	line-height: 1;
}
.ambSection .above .name .small {
  font-size: 0.75rem;
  letter-spacing: 0;
}

.ambSection .above .name.show span {
  -webkit-animation: fadein ease 0.5s forwards;
          animation: fadein ease 0.5s forwards;
}
.ambSection .profile {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

.AmbassadorContainer {
  padding: 2.5rem 0;
}
.AmbassadorContainer h2 {
  margin: 0 0 2.5rem;
  font-size: 1.5625rem;
}
.AmbassadorContainer h2 span {
  margin: 10px auto 0;
  width: 18%;
}
.AmbassadorContainer .slideContainer {
  margin: 0 0 1.25rem;
}
.AmbassadorContainer .slick-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.AmbassadorContainer .slideItem {
  background: #141414;
  padding: 1.25rem 0;
  margin: 0 0.625rem;
  border-radius: 10px;
  cursor: pointer;
  height: auto !important;
}
.AmbassadorContainer .slideItem .image {
  position: relative;
  text-align: center;
  height: 300px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 auto 1rem;
  width: 90%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.AmbassadorContainer .slideItem .name {
  padding: 0 0 0.625rem;
  margin: 0 0 0.625rem;
  font-family: "Noto Sans Japanese", sans-serif, "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  color: #fff;
  font-size: 1.125rem;
  text-align: center;
  font-weight: 600;
  border-bottom: 1px solid #fff;
}
/*.AmbassadorContainer .slideItem .name span {
  display: block;
  font-size: 12px;
  display: none;
}
*/
.AmbassadorContainer .slideItem .text {
  font-size: 0.75rem;
  color: #fff;
  width: 85%;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.AmbassadorContainer .slideBtn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 38%;
  margin: 0 auto;
  border-radius: 50px;
  padding: 0.5rem 0;
}
.AmbassadorContainer .slideBtn p {
  line-height: 1;
  cursor: pointer;
}
.AmbassadorContainer .slideBtn .prev, .AmbassadorContainer .slideBtn .next {
  width: 2.5rem;
}
.AmbassadorContainer .slideBtn .stop {
  width: 1.25rem;
  padding: 0 2px;
}
.AmbassadorContainer .slideBtn .play {
  display: none;
  width: 1.25rem;
}
.AmbassadorContainer .ambModalContainer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.9);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3.125rem 0;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  display: none;
}
.AmbassadorContainer .ambModalContainer::-webkit-scrollbar {
  display: none;
}
.AmbassadorContainer .ambModalContainer.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.AmbassadorContainer .ambModalContainer .modalInner {
  width: 86%;
  max-width: 400px;
}
.AmbassadorContainer .ambModalContainer .closeBtn {
  width: 1.25rem;
  margin: 0 0 0 auto;
}
.AmbassadorContainer .ambModalContainer .ambItem {
  background: #fff;
  border-radius: 7px;
  padding: 10px;
  display: none;
}
.AmbassadorContainer .ambModalContainer .ambItem.is-show {
  display: block;
}
.AmbassadorContainer .ambModalContainer .ambItem .image {
  margin: 0 0 1.875rem;
}
.AmbassadorContainer .ambModalContainer .ambItem .name {
  padding: 0 0 0.625rem;
  margin: 0 0 0.625rem;
  font-family: sans-serif, "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  color: #111D41;
  font-size: 1.125rem;
  text-align: center;
  font-weight: 600;
  border-bottom: 1px solid #111D41;
}
/*.AmbassadorContainer .ambModalContainer .ambItem .name span {
  display: block;
  font-size: 0.75rem;
}
*/
.AmbassadorContainer .ambModalContainer .ambItem .text {
  font-size: 0.75rem;
  color: #111D41;
  width: 90%;
  margin: 0 auto 1.25rem;
  max-height: 150px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.AmbassadorContainer .ambModalContainer .ambItem .text::-webkit-scrollbar {
  display: none;
}

section#program.programContainer {
  position: relative;
  padding: 2.5rem 0 0;
}
section#program.programContainer h2 {
  margin: 0 0 94px;
}
section#program.programContainer .programTextContainer {
  position: absolute;
  top: 134px;
  left: 0;
  z-index: 2;
}
section#program.programContainer .programTextContainer p {
  background: #fff;
  display: inline-block;
  color: #111D41;
  font-size: 4.5vw;
  font-weight: 500;
  margin: 0 3.125rem 0.625rem 0;
  padding: 5px 1rem;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
  opacity: 0;
}
section#program.programContainer .programTextContainer p.small {
  font-size: 2.8vw;
}
section#program.programContainer .programTextContainer p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
section#program.programContainer .programTextContainer.show p {
  -webkit-animation: fadein ease 0.5s 0.2s forwards;
          animation: fadein ease 0.5s 0.2s forwards;
}
section#program.programContainer .programTextContainer.show p::before {
  -webkit-animation: headerAnim1 ease-out 0.5s 0.5s forwards;
          animation: headerAnim1 ease-out 0.5s 0.5s forwards;
}
section#program.programContainer .programTextContainer.show p:nth-child(2n)::before {
  -webkit-animation: headerAnim1 ease-out 0.5s 1s forwards;
          animation: headerAnim1 ease-out 0.5s 1s forwards;
}
section#program.programContainer .programTextContainer.show p:nth-child(3n)::before {
  -webkit-animation: headerAnim1 ease-out 0.5s 1.3s forwards;
          animation: headerAnim1 ease-out 0.5s 1.3s forwards;
}
section#program.programContainer .programTextContainer.show p:nth-child(4n)::before {
  -webkit-animation: headerAnim1 ease-out 0.5s 1.6s forwards;
          animation: headerAnim1 ease-out 0.5s 1.6s forwards;
}
section#program.programContainer .compeContainer .slideContainer {
  margin: 0 0 1.25rem;
}
section#program.programContainer .compeContainer .programInner {
  width: 90%;
  margin: 0 auto;
  padding: 0 1rem 2.5rem;
}
section#program.programContainer .compeContainer .programInner .subTitle {
  text-align: center;
  margin: 1.875rem 0 1.25rem;
  /*font-size: 1.25rem;*/
	font-size: 1.1rem;
}
section#program.programContainer .compeContainer .text {
  font-size: 0.875rem;
  margin: 0 auto 2rem;
}
section#program.programContainer .compeContainer .siteBtn {
  margin: 0 auto;
}
section#program.programContainer .compeContainer .siteBtn a {
  padding: 0.9375rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: #111D41;
  border: 1px solid #fff;
  border-radius: 50px;
  font-weight: bold;
  color: #fff;
}
section#program.programContainer .compeContainer .siteBtn a span {
  width: 0.875rem;
  display: inline-block;
  background-image: url(../images/link_icon.svg);
  height: 0.625rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin: 0 0 0 0.3rem;
}
section#program.programContainer .detailBtn {
  margin: 0 auto 1.25rem;
}
section#program.programContainer .detailBtn a {
  padding: 0.9375rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: #111D41;
  background: #fff;
  border-radius: 50px;
  font-weight: bold;
}

/*光のエンターテインメントエリア 上スペース SP*/
section#program.programContainer .areaContainer {
  position: relative;
  padding: 8rem 0 0;
}
/*光のエンターテインメントエリア 上スペース SP*/
/*光のエンターテインメントエリア タイトル SP*/
section#program.programContainer .areaContainer .programTextContainer {
  /*top: 1.875rem;*/
	/*top: 48px;*/
	top:2.98rem
}
/*光のエンターテインメントエリア タイトル SP*/

section#program.programContainer .areaContainer .slideContainer {
  margin: 0 0 1.25rem;
}
section#program.programContainer .areaContainer .programInner {
  width: 90%;
  margin: 0 auto;
  padding: 0 1rem 2.5rem;
}
section#program.programContainer .areaContainer .text {
  font-size: 0.875rem;
  font-weight: 300;
  margin: 0 auto 1.875rem;
}
section#program.programContainer .areaContainer pre.text {
  text-align: left;
  word-break: break-all;
  color: #fff;
  line-height: 1.8;
  white-space: normal;
}

section#gallery.galleryContainer h2 {
  margin: 0 0 2.5rem;
  text-align: center;
}
section#gallery.galleryContainer h2 span {
  width: 19%;
}
section#gallery.galleryContainer .slideContainer {
  position: relative;
}
section#gallery.galleryContainer .slideContainer .slick-dots {
  bottom: -2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
section#gallery.galleryContainer .slideContainer .slick-dots li {
  width: 10px;
  height: 10px;
}
section#gallery.galleryContainer .slideContainer .slick-dots li.slick-active button::before {
  opacity: 1;
}
section#gallery.galleryContainer .slideContainer .slick-dots li.stop, section#gallery.galleryContainer .slideContainer .slick-dots li.play {
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin: 0 0 0 7px;
}
section#gallery.galleryContainer .slideContainer .slick-dots li.stop {
  background-image: url(../images/slide2_stop_icon.svg);
  display: block;
}
section#gallery.galleryContainer .slideContainer .slick-dots li.stop.none {
  display: none;
}
section#gallery.galleryContainer .slideContainer .slick-dots li.play {
  background-image: url(../images/slide2_play_icon.svg);
  display: none;
}
section#gallery.galleryContainer .slideContainer .slick-dots li.play.active {
  display: block;
}
section#gallery.galleryContainer .slideContainer .slick-dots li button {
  position: relative;
  width: 6px;
  height: 6px;
}
section#gallery.galleryContainer .slideContainer .slick-dots li button::before {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: #fff;
  opacity: 0.7;
  width: 100%;
  height: 100%;
}
section#gallery.galleryContainer .moreBtn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 2.125rem;
  height: 2.125rem;
  cursor: pointer;
}
section#gallery.galleryContainer .galleryModalContainer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.8);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2.5rem 0;
  overflow-y: scroll;
  display: none;
}
section#gallery.galleryContainer .galleryModalContainer.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
section#gallery.galleryContainer .galleryModalContainer .modalInner {
  width: 100%;
}
section#gallery.galleryContainer .galleryModalContainer .closeBtn {
  text-align: right;
  cursor: pointer;
}
section#gallery.galleryContainer .galleryModalContainer .closeBtn img {
  width: 1rem;
}
section#gallery.galleryContainer .galleryModalContainer .closeBtn.list {
  width: 86%;
  margin: 0 auto;
}
section#gallery.galleryContainer .galleryModalContainer .galleryList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  width: 86%;
}
section#gallery.galleryContainer .galleryModalContainer .galleryList li {
  width: calc((100% - 20px) / 3);
  margin: 0 10px 10px 0;
}
section#gallery.galleryContainer .galleryModalContainer .galleryList li:nth-child(3n) {
  margin: 0 0 10px;
}
section#gallery.galleryContainer .galleryModalContainer .galleryList li span {
  display: block;
  padding-top: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  cursor: pointer;
}
section#gallery.galleryContainer .modalInner {
  max-width: 500px;
  margin: 0 auto;
}

.ticketContainer {
  padding-bottom: 0;
}
.ticketContainer h2 {
  margin: 0 0 2.5rem;
}
.ticketContainer h2 span {
  margin: 0 auto;
  width: 18%;
}
.ticketContainer .topText {
  text-align: center;
  font-size: 0.875rem;
  margin: 0 0 1.25rem;
}
.ticketContainer .ticketDetailContainer {
  width: 90%;
  margin: 0 auto 1.5rem;
  /*background: #002056;*/
  /*padding: 1.25rem 0;*/
	padding: 0 0;
}
.ticketContainer .ticketDetailContainer .title {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-weight: bold;
  font-size: 1.25rem;
  margin: 0 0 1.25rem;
  line-height: 1.5;
}
.ticketContainer .ticketDetailContainer .title span {
  display: block;
  font-size: 1.5rem;
  margin: 0 0 1.25rem;
  border-bottom: 1px solid #fff;
}
.ticketContainer .ticketDetailContainer .text {
  width: 90%;
  margin: 0 auto 0.625rem;
  background: #fff;
  text-align: center;
  color: #111D41;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 10px;
  line-height: 1.5;
}
.ticketContainer .ticketDetailContainer .text span {
  display: inline-block;
  font-weight: 900;
}
.ticketContainer .ticketDetailContainer .text .special {
  position: relative;
}
.ticketContainer .ticketDetailContainer .text .lineText {
  position: relative;
  z-index: 2;
}
.ticketContainer .ticketDetailContainer .text .line {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 5px;
  background: rgba(255, 167, 0, 0.7);
}
.ticketContainer .ticketDetailContainer.typeB .text .line {
  background: rgba(255, 245, 0, 0.7);
}
.ticketContainer .ticketDetailContainer .graph {
  /*width: 90%;*/
	width: 100%;
  margin: 0 auto 0.625rem;
}
.ticketContainer .ticketDetailContainer .graph table {
  color: #fff;
  border-collapse: collapse;
  border: 0.5px solid #fff;
  font-size: 0.625rem;
  width: 100%;
}
.ticketContainer .ticketDetailContainer .graph table .head {
  border-bottom: 0.5px solid #fff;
}
.ticketContainer .ticketDetailContainer .graph table .head th {
  vertical-align: middle;
  border-right: 0.5px solid #fff;
  padding: 5px 3px;
  background-color: rgba(255, 255, 255, 0.2);
}
.ticketContainer .ticketDetailContainer .graph table .head th.day, .ticketContainer .ticketDetailContainer .graph table .head th.type {
  width: 23%;
}
.ticketContainer .ticketDetailContainer .graph table .head th.time {
  width: 54%;
  border-right: none;
}
.ticketContainer .ticketDetailContainer .graph table .contents {
  border-bottom: 0.5px solid #fff;
}
.ticketContainer .ticketDetailContainer .graph table .contents td {
  text-align: center;
  vertical-align: middle;
  border-right: 0.5px solid #fff;
  padding: 10px 3px;
}
.ticketContainer .ticketDetailContainer .graph table .contents td.type {
  padding: 0;
}
.ticketContainer .ticketDetailContainer .graph table .contents td.type span {
  padding: 5px 0;
  display: block;
  border-bottom: 0.5px solid #fff;
}
.ticketContainer .ticketDetailContainer .graph table .contents td.type span:last-child {
  border-bottom: none;
}
.ticketContainer .ticketDetailContainer .graph table .contents td.time {
  border-right: none;
  padding: 0;
  vertical-align: top;
}
.ticketContainer .ticketDetailContainer .graph table .contents td.time div {
  display: block;
  border-bottom: 0.5px solid #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.ticketContainer .ticketDetailContainer .graph table .contents td.time div:last-child {
  border-bottom: none;
}
.ticketContainer .ticketDetailContainer .graph table .contents td.time div span {
  padding: 5px;
  display: inline-block;
}
.ticketContainer .ticketDetailContainer .graph table .contents td.time div span:first-child {
  width: 30%;
  border-right: 0.5px solid #fff;
}
.ticketContainer .ticketDetailContainer .graph table .contents td.time div span:last-child {
  width: 70%;
  text-align: left;
}
.ticketContainer .ticketDetailContainer .linkBtn {
  width: 86%;
  margin: 0 auto 1.25rem;
}
.ticketContainer .ticketDetailContainer .linkBtn a {
  padding: 0.9375rem 0;
  text-align: center;
  font-size: 0.75rem;
  background: #fff;
  border-radius: 50px;
  font-weight: bold;
  color: #111D41;
}
.ticketContainer .ticketDetailContainer .linkBtn a span {
  width: 0.875rem;
  display: inline-block;
  background-image: url(../images/link_icon_bl.svg);
  height: 0.625rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin: 0 0 0 0.3rem;
}
.ticketContainer .ticketDetailContainer .attention {
  /*width: 90%;*/
	width: 100%;
	margin: 0 auto;
}

.ticketBottomContainer {
  width: 90%;
  margin: 0 auto 1.25rem;
}
.ticketBottomContainer .linkBtn {
  width: 86%;
  margin: 0 auto 3.125rem;
}
.ticketBottomContainer .linkBtn a {
  padding: 0.9375rem 0;
  text-align: center;
  font-size: 0.75rem;
  background: #fff;
  border-radius: 50px;
  font-weight: bold;
  color: #111D41;
}
.ticketBottomContainer .linkBtn a span {
  width: 0.875rem;
  display: inline-block;
  background-image: url(../images/link_icon_bl.svg);
  height: 0.625rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin: 0 0 0 0.3rem;
}
.ticketBottomContainer .attention p {
  /*font-size: 0.75rem;*/
  /*line-height: 1.5;*/
	font-size: 10px;
	line-height: 1.8;
}

.ticketAreaMapCotainer {
  width: 90%;
  margin: 1.875rem auto 0;
}
.ticketAreaMapCotainer .title {
  text-align: center;
  margin: 0 0 1.875rem;
  position: relative;
}
.ticketAreaMapCotainer .title::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
}
.ticketAreaMapCotainer .title span {
  font-size: 1.25rem;
  font-weight: 900;
  padding: 0 10px;
  background: hsl(0, 0%, 4%);
  position: relative;
  z-index: 2;
}

.accessContainer h2 {
  margin: 0 0 2.5rem;
}
.accessContainer > .image {
  margin: 0 auto 1.25rem;
  width: 90%;
}
.accessContainer .accessDetail {
  width: 86%;
  margin: 0 auto;
}
.accessContainer .accessDetail .image {
  margin: 0 0 0.625rem;
}
.accessContainer .accessDetail .place {
  padding: 0 0 0 0.8125rem;
  margin: 0 0 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.accessContainer .accessDetail .place dt {
  width: 20%;
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2C2C2C;
  line-height: 1.5;
}
.accessContainer .accessDetail .place dd {
  width: 74%;
  line-height: 1.5;
  color: #fff;
  font-size: 0.9375rem;
}
.accessContainer .accessDetail .linkBtn {
  margin: 0 0 1.25rem 13px;
}
.accessContainer .accessDetail .linkBtn a {
  padding: 0.9375rem 0;
  text-align: center;
  font-size: 0.75rem;
  border-radius: 50px;
  font-weight: bold;
  color: #fff;
  position: relative;
  border: 1px solid #fff;
}
.accessContainer .accessDetail .linkBtn a::after {
  content: "";
  width: 1rem;
  background-image: url(../images/link_icon.svg);
  height: 0.8125rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  top: 38%;
  right: 10%;
}
.accessContainer .attention {
  width: 90%;
  margin: 0 auto;
}

#faq {
  background: #202020;
}

section#faq {
  padding: 2.5rem 0 0;
}
section#faq .inner {
  padding: 0 0 2.5rem;
  border-bottom: 1px solid #fff;
}

section#contact {
  margin-top: 0;
  padding: 2.5rem 0;
}

.section_midashi.txtsvg h2 {
  line-height: inherit;
}

#attention {
  background: #202020;
}
#attention .b_box {
  background: hsl(0, 0%, 4%);
}

section#attention.flex-attention {
  padding: 2.5rem 0;
}

section#partner .p-title {
  width: 90%;
  margin: 0 auto;
}

section#partner .p-title p {
  position: relative;
  font-size: 1.25rem;
  border-bottom: 1px solid #2C2C2C;
  line-height: 1.5;
  padding: 0 0 10px;
}

section#partner {
  margin-top: 0;
  background: #202020;
}
section#partner .inner.partner_head {
  background: #fff;
  padding: 3.75rem 0 0;
  margin: 0;
}
section#partner .inner {
  width: 100%;
}
section#partner .inner:last-child {
  padding-bottom: 3.75rem;
}
section#partner .imgbox a span {
  display: block;
  width: 60%;
  line-height: 1.5;
  margin: 1rem auto 0;
  font-size: 0.78rem;
}

section#partner .inner.partner_head {
  border-top: 1px solid #fff;
}

#footer-header .pc_nav ul li p {
  font-family: "Rajdhani", sans-serif;
  font-weight: bold;
}

#gotop {
  position: fixed;
  bottom: 15%;
  right: 1rem;
  width: 40px;
  opacity: 0;
  z-index: 5;
}
#gotop.active {
  -webkit-animation: fadein ease 0.5s forwards;
          animation: fadein ease 0.5s forwards;
}

#site-footer {
  padding: 2.5rem 0 8.125rem;
}
#site-footer .copy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 1.875rem 0 0;
}
#site-footer .copy p {
  width: auto;
  margin: 0 1rem 0 0;
}

.policyContainer {
  width: 90%;
  margin: 0 auto 1.875rem;
  position: relative;
}
.policyContainer a {
  color: #fff;
  display: inline-block;
}
.policyContainer h2 {
  opacity: 1 !important;
}

@media screen and (max-width: 400px) {
  .kvContainer .flowBtn {
    top: 68vh;
  }
  section#program.programContainer .programTextContainer p {
    font-size: 4.3vw;
  }
}
@media (orientation: landscape) {
  .spContainer {
    max-width: 400px;
    margin: 0 auto;
    -webkit-box-shadow: 0 0 10px #fff;
            box-shadow: 0 0 10px #fff;
  }
  .kvContainer .flowBtn {
    top: 68vh;
  }
  .b_box {
    padding: 1.875rem 1.25rem;
  }
  section#partner .logoset_flex {
    display: block;
  }
  section#partner .logoset_flex .imgbox {
    margin: 0 auto 1.875rem;
  }
  section#partner .logoset_flex .imgbox:last-child {
    margin: 0 auto;
  }
  .footer-header__banner__img {
    display: block;
  }
  .footer-header__banner__img a {
    margin: 0 0 1.875rem;
  }
  .footer-header__banner__img a img {
    width: 100%;
    max-height: 100%;
  }
  header#site-header .inner, #footer-header .inner {
    display: block;
  }
  .header_imgbox, .footer_imgbox {
    float: none;
  }
  header#site-header .pc_nav, header#site-header .sp_nav, #footer-header .pc_nav, #footer-header .sp_nav {
    float: none;
  }
  header#site-header .pc_nav ul, #footer-header .pc_nav ul {
    text-align: left;
  }
  header#site-header .pc_nav ul li, header#site-header .sp_nav ul li, #footer-header .pc_nav ul li, #footer-header .sp_nav ul li {
    padding: 0;
  }
  #footer-header .h_sns {
    margin: 1.875rem 0;
  }
  section#program.programContainer .programTextContainer p.small {
    font-size: 0.75rem;
  }
  section#program.programContainer .areaContainer .programTextContainer {
    top: 1.875rem;
  }
  section#program.programContainer .programTextContainer p {
    font-size: 1.375rem;
  }
  .textContainer .large {
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 768px) {
  .spContainer {
    max-width: 400px;
    margin: 0 auto;
    -webkit-box-shadow: 0 0 10px #fff;
            box-shadow: 0 0 10px #fff;
  }
  .b_box {
    padding: 1.875rem 1.25rem;
  }
  section#partner .logoset_flex {
    display: block;
  }
  section#partner .logoset_flex .imgbox {
    margin: 0 auto 1.875rem;
  }
  section#partner .logoset_flex .imgbox:last-child {
    margin: 0 auto;
  }
  .footer-header__banner__img {
    display: block;
  }
  .footer-header__banner__img a {
    margin: 0 0 1.875rem;
  }
  .footer-header__banner__img a img {
    width: 100%;
    max-height: 100%;
  }
  .footer_imgbox {
    margin-bottom: 25px;
  }
  header#site-header .inner, #footer-header .inner {
    display: block;
  }
  .header_imgbox, .footer_imgbox {
    float: none;
  }
  header#site-header .pc_nav, header#site-header .sp_nav, #footer-header .pc_nav, #footer-header .sp_nav {
    float: none;
  }
  header#site-header .pc_nav ul, #footer-header .pc_nav ul {
    text-align: left;
  }
  header#site-header .pc_nav ul li, header#site-header .sp_nav ul li, #footer-header .pc_nav ul li, #footer-header .sp_nav ul li {
    padding: 0;
  }
  #footer-header .h_sns {
    margin: 1.875rem 0;
  }
  section#program.programContainer .programTextContainer p.small {
    font-size: 0.75rem;
  }
	
/*光のエンターテインメントエリア 上スペース PC*/
section#program.programContainer .areaContainer {
  position: relative;
  /*padding: 6rem 0 0;*/
	padding: 10rem 0 0;
}
/*光のエンターテインメントエリア 上スペース PC*/	
/*光のエンターテインメントエリア タイトル PC*/
  section#program.programContainer .areaContainer .programTextContainer {
	/*top: 1.875rem;*/
	top: 3.50rem;
  }
/*光のエンターテインメントエリア タイトル PC*/
	
  section#program.programContainer .programTextContainer p {
    font-size: 1.375rem;
  }
  .textContainer .large {
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 1025px) {
  .pcBackground {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 65%;
    height: 100vh;
    z-index: 1;
  }
  .pcBackground .videoWrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
  }
  .pcBackground .video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .pcBackground .videoText {
    position: absolute;
    bottom: 22px;
    right: 22px;
    font-size: 0.875rem;
  }
  .pcBackground .flowBtnPc {
    position: absolute;
    bottom: 6%;
    right: 5%;
    width: 180px;
  }
  .spContainer {
    margin: 0 0 0 auto;
    width: 35%;
    position: relative;
    z-index: 11;
    background: hsl(0, 0%, 4%);
    max-width: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-left: 1px solid #fff;
  }
  .spContainer .inner {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .kvContainer .ticketBtn {
    display: none;
  }
  .kvContainer {
    height: 100vh;
  }
  .kvContainer .flowBtn {
    /*display: none;*/
    top: 42vh;
  }
  .kvContainer .kvImage {
    height: 100%;
  }
  .kvContainer .kvImage::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15vh;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgb(29, 29, 29)));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgb(29, 29, 29) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(29, 29, 29) 100%);
  }
  .kvContainer .kvImage img.pc {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .kvContainer .scroll {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    font-family: "Rajdhani", sans-serif;
    font-weight: 600;
    height: 10vh;
    font-size: 1.25rem;
  }
  .kvContainer .scroll span {
    display: block;
    width: 1px;
    height: 70%;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
  }
  .kvContainer .scroll span::after {
    content: "";
    width: 1px;
    height: 5px;
    background: #111D41;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: scrollAnim ease 1s infinite;
            animation: scrollAnim ease 1s infinite;
  }
  #footer-header .inner {
    width: 90%;
    margin: 0 auto;
   padding-bottom: 6.25rem;
  }
  #site-footer {
    padding: 6.25rem 0;
  }
  #site-footer .footer_bot {
    margin: 1.875rem auto 0;
    width: 94%;
  }
  section#gallery.galleryContainer .modalInner {
    max-width: 900px;
  }
  section#program.programContainer .programTextContainer p.small {
    font-size: 0.875rem;
  }
  #gotop {
    bottom: 5%;
    width: 50px;
  }
  .AmbassadorContainer .slideItem {
    margin: 0 1.5rem;
  }
}
@media screen and (min-width: 1500px) {
  .pcBackground {
    width: calc(100% - 550px);
  }
  .spContainer {
    width: 550px;
  }
  .spContainer .inner {
    max-width: 100%;
  }
  section h2 {
    font-size: 2.5rem;
  }
  section h2 span {
    margin: 0 auto;
  }
/*archive-2023-sep PC*/
.singlePage .grad_2022 .ambSection h2 {
	font-size: 2.5rem;
}
/*archive-2023-sep PC*/	
  section#program.programContainer .programTextContainer p {
    margin: 0 4.375rem 0.625rem 0;
    font-size: 24px;
  }
  section#news.newsContainer .newsItem .title,
  section#news.newsContainer .moreBtn a,
  section#program.programContainer .detailBtn a,
  .ticketContainer .ticketDetailContainer .linkBtn a,
  .accessContainer .accessDetail .linkBtn a,
  .detailContainer .detailTextContainer dl dt,
  .detailContainer .detailTextContainer dl dd {
    font-size: 1rem;
  }
  .ticketContainer .ticketDetailContainer .linkBtn a span {
    width: 1rem;
    height: 1rem;
  }
}
/* header */
.headerContainer {
  overflow: hidden;
  height: auto;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.headerContainer h1 {
  display: none;
}
.headerContainer.header-active {
  background: hsl(0, 0%, 4%);
  height: 100vh;
}
.headerContainer .headerBottom {
  display: none;
}
.headerContainer .hamburger {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 1000;
}
.headerContainer .hamburger.header-active {
  color: #fff;
}
.headerContainer .hamburgerIcon {
  cursor: pointer;
  margin: 0 0 0.3rem;
  position: relative;
  height: 20px;
  width: 30px;
}
.headerContainer .hamburgerIcon span {
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  height: 1px;
  width: 100%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.headerContainer .hamburgerIcon span:nth-child(2) {
  top: 50%;
}
.headerContainer .hamburgerIcon span:nth-child(3) {
  top: auto;
  bottom: 0;
}
.headerContainer .hamburgerIcon.header-active span {
  background: #fff;
}
.headerContainer .hamburgerIcon.header-active span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-135deg);
          transform: translateY(10px) rotate(-135deg);
}
.headerContainer .hamburgerIcon.header-active span:nth-child(2) {
  opacity: 0;
}
.headerContainer .hamburgerIcon.header-active span:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(135deg);
          transform: translateY(-9px) rotate(135deg);
}
.headerContainer .langContainer {
  width: 3.125rem;
  position: fixed;
  top: 1.3125rem;
  right: 3.75rem;
  z-index: 20;
}
.headerContainer .langContainer .icon {
  cursor: pointer;
}
.headerContainer .langContainer .langList {
  width: 4.375rem;
  background: #fff;
  margin: 0.625rem 0 0 -0.76rem;
  padding: 0.625rem 0.3rem;
  display: none;
}
.headerContainer .langContainer .langList.active {
  display: block;
}
.headerContainer .langContainer .langList li:first-child {
  margin: 0 0 0.3rem;
}
.headerContainer .langContainer .langList li a {
  font-size: 3vw;
  padding: 0.3rem;
  text-align: center;
}
.headerContainer .langContainer .langList li a.active {
  background: #ddd;
}
.headerContainer .langContainer .langList li a:hover {
  background: #ccc;
}
.headerContainer .menuContainer {
  display: none;
  height: 100%;
  width: 100%;
  padding: 5rem 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.headerContainer .menuContainer::-webkit-scrollbar {
  display: none;
}
.headerContainer .menuContainer.header-active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-animation: fadein 0.5s ease forwards;
          animation: fadein 0.5s ease forwards;
}
.headerContainer .menuContainer .menuContainerInner {
  width: 100%;
}
.headerContainer .menuContainer .navi {
  width: 100%;
}
.headerContainer .menuContainer .naviList {
  width: 77%;
  margin: 0 auto 10vh;
}
.headerContainer .menuContainer .naviList li {
  margin: 0 0 1.875rem;
}
.headerContainer .menuContainer .naviList li a {
  font-family: "Rajdhani", sans-serif;
  font-weight: bold;
  color: #fff;
  font-size: 1.375rem;
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.headerContainer .menuContainer .naviList li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsl(0, 0%, 4%);
  -webkit-animation: headerAnim1 ease 0.1s forwards;
          animation: headerAnim1 ease 0.1s forwards;
}
.headerContainer .menuContainer .naviList li a:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-animation: headerAnim2 ease 1s forwards;
          animation: headerAnim2 ease 1s forwards;
}
.headerContainer .menuContainer .naviList li:nth-child(2n) a::before {
  -webkit-animation: headerAnim1 ease 0.1s 0.2s forwards;
          animation: headerAnim1 ease 0.1s 0.2s forwards;
}
.headerContainer .menuContainer .naviList li:nth-child(3n) a::before {
  -webkit-animation: headerAnim1 ease 0.1s 0.3s forwards;
          animation: headerAnim1 ease 0.1s 0.3s forwards;
}
.headerContainer .menuContainer .naviList li:nth-child(4n) a::before {
  -webkit-animation: headerAnim1 ease 0.1s 0.4s forwards;
          animation: headerAnim1 ease 0.1s 0.4s forwards;
}
.headerContainer .menuContainer .naviList li:nth-child(5n) a::before {
  -webkit-animation: headerAnim1 ease 0.1s 0.5s forwards;
          animation: headerAnim1 ease 0.1s 0.5s forwards;
}
.headerContainer .menuContainer .naviList li:nth-child(6n) a::before {
  -webkit-animation: headerAnim1 ease 0.1s 0.6s forwards;
          animation: headerAnim1 ease 0.1s 0.6s forwards;
}
.headerContainer .menuContainer .naviList li:nth-child(7n) a::before {
  -webkit-animation: headerAnim1 ease 0.1s 0.7s forwards;
          animation: headerAnim1 ease 0.1s 0.7s forwards;
}
.headerContainer .menuContainer .naviList li:nth-child(8n) a::before {
  -webkit-animation: headerAnim1 ease 0.1s 0.8s forwards;
          animation: headerAnim1 ease 0.1s 0.8s forwards;
}
.headerContainer .menuContainer .snsContainer {
  width: 100%;
}
.headerContainer .menuContainer .snsList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 45%;
  max-width: 220px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  -webkit-animation: fadein ease 0.5s 0.5s forwards;
          animation: fadein ease 0.5s 0.5s forwards;
}
.headerContainer .menuContainer .snsList li {
  width: calc((100% - 30px) / 4);
  margin: 0 10px 0 0;
}
.headerContainer .menuContainer .snsList li:last-child {
  margin: 0;
}
.headerContainer .menuContainer .logo {
  max-width: 220px;
  width: 45%;
  margin: 0 auto;
  opacity: 0;
  -webkit-animation: fadein ease 0.5s 0.5s forwards;
          animation: fadein ease 0.5s 0.5s forwards;
}
@media screen and (min-width: 768px) {
  .headerContainer .main {
    min-height: 100px;
    padding: 1rem 2.5rem;
  }
  .headerContainer .logoText {
    font-size: 1.56rem;
  }
  .headerContainer .hamburgerIcon {
    height: 25px;
  }
  .headerContainer .hamburgerIcon.header-active span:nth-child(1) {
    -webkit-transform: translateY(11px) rotate(-45deg);
            transform: translateY(11px) rotate(-45deg);
  }
  .headerContainer .hamburgerIcon.header-active span:nth-child(3) {
    -webkit-transform: translateY(-13px) rotate(45deg);
            transform: translateY(-13px) rotate(45deg);
  }
  .headerContainer .menuContainer {
    height: 100vh;
    padding: 0;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .headerContainer .menuContainer::-webkit-scrollbar {
    display: none;
  }
  .headerContainer .menuContainer .menuContainerInner {
    margin: 0;
    padding: 2.5rem 0;
  }
  .headerContainer .menuContainer .naviList {
    margin: 0 auto 6.25rem;
  }
  .headerContainer .menuContainer .naviList li a {
    text-align: center;
  }
  .headerContainer .menuContainer .snsList, .headerContainer .menuContainer .logo {
    max-width: 220px;
  }
  .headerContainer .langContainer .langList li a {
    font-size: 12px;
  }
}
@media screen and (min-width: 1025px) {
  .headerContainer {
    display: block;
    width: 15%;
    height: 100vh;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.22);
    -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(8.4px);
            backdrop-filter: blur(8.4px);
  }
  .headerContainer .headerBottom {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
  }
  .headerContainer .hamburger {
    display: none;
  }
  .headerContainer .langContainer {
    right: auto;
    left: 1rem;
  }
  .headerContainer .langContainer .langList {
    margin: 0.625rem 0 0;
  }
  .headerContainer .menuContainer {
    display: block;
    height: auto;
    overflow-y: initial;
  }
  .headerContainer .menuContainer .menuContainerInner {
    padding: 0;
  }
  .headerContainer .menuContainer .naviList {
    /*width: 40%;*/
    /*margin: 17vh auto 0;*/
	width: 45%;
	margin: 10vh auto 0;
  }
  .headerContainer .menuContainer .naviList li a {
    text-align: left;
    font-size: 1rem;
  }
  .headerContainer .menuContainer .naviList li a::before {
    display: none;
  }
  .headerContainer .snsContainer, .headerContainer .logo {
    display: none;
  }
  .headerContainer .pcNewsContainer {
    width: 86%;
    background: #111D41;
    padding: 1.25rem 1.25rem 1.875rem;
    margin: 0 auto 1rem;
    position: relative;
    background: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 0, 0)), to(rgb(24, 41, 93)));
    background: -webkit-linear-gradient(bottom, rgb(0, 0, 0) 0%, rgb(24, 41, 93) 100%);
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(24, 41, 93) 100%);
    min-height: 20vh;
  }
  .headerContainer .pcNewsContainer .title {
    display: inline-block;
    font-family: "Rajdhani", sans-serif;
    font-weight: 500;
    font-size: 1.375rem;
    border-bottom: 1px solid #fff;
    line-height: 1.2;
    position: absolute;
    top: -20px;
    left: -6px;
  }
  .headerContainer .pcNewsContainer .text {
    margin: 0 0 1.25rem;
  }
  .headerContainer .pcNewsContainer .text a {
    font-size: 0.75rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    letter-spacing: 0;
    color: #fff;
  }
  .headerContainer .pcNewsContainer .moreBtn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40%;
  }
  .headerContainer .pcNewsContainer .moreBtn a {
    font-size: 0.625rem;
    color: #fff;
    font-family: "Rajdhani", sans-serif;
    padding: 0 6px 0 3px;
  }
  .headerContainer .ticketLinkBtn a {
    background: #fff;
    color: #111D41;
    font-size: 0.75rem;
    padding: 1rem 0;
    text-align: center;
    font-weight: bold;
  }
  .headerContainer .ticketLinkBtn a::after {
    content: "▶︎";
  }
}

/*Edgeのみ*/
@supports (-ms-ime-align: auto) {
  .headerContainer .menuContainer .naviList li {
    margin: 0 0 0.875rem;
  }
  .headerContainer .pcNewsContainer .text a {
    -webkit-line-clamp: 3;
  }
  .headerContainer .pcNewsContainer {
    min-height: 13vh;
  }
}
_:-ms-lang(x)::-ms-backdrop {
  margin: 0 0 0.875rem;
}
_:-ms-lang(x)::backdrop, .headerContainer .menuContainer .naviList li {
  margin: 0 0 0.875rem;
}

_:-ms-lang(x)::-ms-backdrop {
  -webkit-line-clamp: 3;
}

_:-ms-lang(x)::backdrop, .headerContainer .pcNewsContainer .text a {
  -webkit-line-clamp: 3;
}

_:-ms-lang(x)::-ms-backdrop {
  min-height: 13vh;
}

_:-ms-lang(x)::backdrop, .headerContainer .pcNewsContainer {
  min-height: 13vh;
}

@media screen and (min-width: 1500px) {
  .headerContainer .langContainer {
    width: 3.75rem;
  }
  .headerContainer .menuContainer .naviList.edgeStyle {
    margin: 12vh auto 0;
  }
  .headerContainer .menuContainer .naviList.edgeStyle li {
    margin: 0 0 1.25rem;
  }
  .headerContainer .headerBottom.edgeStyle .text {
    margin: 0 0 1rem;
  }
  .headerContainer .headerBottom.edgeStyle .text a {
    font-size: 0.875rem;
  }
  .headerContainer .menuContainer .naviList li a {
    font-size: 1.25rem;
  }
  .headerContainer .pcNewsContainer .title {
    font-size: 2.125rem;
  }
  .headerContainer .pcNewsContainer {
    padding: 2.5rem 1.25rem;
  }
  .headerContainer .pcNewsContainer .text a {
    font-size: 1rem;
  }
  .headerContainer .pcNewsContainer .moreBtn a {
    font-size: 0.75rem;
  }
  .headerContainer .ticketLinkBtn a {
    font-size: 1rem;
  }
}
/* news style*/
.archive section#news.newsContainer h2 {
  position: static;
  text-align: center;
  width: 100%;
  margin: 0 auto 2.5rem;
  opacity: 1;
}
.archive section#news.newsContainer h2 span {
  margin: 0 auto;
}

section#news.newsContainer.singlePage .sectionInner {
  width: 90%;
  margin: 0 auto;
}
section#news.newsContainer.singlePage h2 {
  position: static;
  text-align: center;
  width: 100%;
  margin: 1.875rem auto 2.5rem;
}
section#news.newsContainer.singlePage h2 span {
  margin: 0 auto;
}
section#news.newsContainer.singlePage .titleContainer {
  margin: 0 0 2.25rem;
}
section#news.newsContainer.singlePage .titleContainer .title {
  padding: 0 0 1rem;
  border-bottom: 1px solid #fff;
  font-size: 0.875rem;
}
section#news.newsContainer.singlePage .titleContainer .time {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.875rem;
  font-weight: bold;
  margin: 6px 0 0;
}
section#news.newsContainer.singlePage .contentContainer {
  margin: 0 0 1.875rem;
}
section#news.newsContainer.singlePage .contentContainer p {
  font-size: 0.875rem;
  margin: 0 0 1.25rem;
  text-align: left;
}
section#news.newsContainer.singlePage .contentContainer p a {
  font-size: 0.875rem;
  display: inline;
  text-decoration: underline;
  color: #fff;
}
section#news.newsContainer.singlePage .contentContainer p strong {
  color: #ff0000;
}
section#news.newsContainer.singlePage .contentContainer img {
  margin: 1rem auto;
}
section#news.newsContainer.singlePage .snsContainer {
  width: 30%;
  margin: 0 auto 3.125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 120px;
}
section#news.newsContainer.singlePage .snsContainer li {
  margin: 0 10px 0 0;
}
section#news.newsContainer.singlePage .snsContainer li:last-child {
  margin: 0;
}
section#news.newsContainer.singlePage .snsContainer li a {
  padding: 0;
}
section#news.newsContainer.singlePage .backBtn a {
  font-size: 0.75rem;
  color: #fff;
}
section#news.newsContainer.singlePage .backBtn a::before {
  content: "◀︎";
  font-size: 0.625rem;
}

.archive {
  padding: 3.125rem 0;
}
.archive section h2 {
  opacity: 1 !important;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.archive section h2 span {
  display: block;
  width: 26%;
  height: 2px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.archive section h2 span::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-animation: lineAnim ease 0.5s 0.5s forwards;
          animation: lineAnim ease 0.5s 0.5s forwards;
}
.archive #gallery h2 {
  text-align: center;
}
.archive #gallery .gallery-items {
  width: 90%;
  margin: 0 auto;
}
.archive #gallery .gallery-item {
  margin: 0 0 2.5rem;
}

.singlePage {
  padding: 3.125rem 0;
  background: hsl(0, 0%, 4%);
}
.singlePage h2 {
  opacity: 1;
}
.singlePage #archive .archive-title h1 {
  font-family: "Rajdhani", sans-serif;
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 1;
}
.singlePage #archive .archive-title h1 span {
  display: block;
  width: 26%;
  height: 2px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.singlePage #archive .archive-title h1 span::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-animation: lineAnim ease 0.5s 0.5s forwards;
          animation: lineAnim ease 0.5s 0.5s forwards;
}
.singlePage .gaiyo_area p {
  font-family: "Noto Sans JP", "Avenir", "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
}
.singlePage #archive .section_midashi h2 {
  letter-spacing: 5px;
}
.singlePage .grad_2022 {
  background: hsl(0, 0%, 4%);
}
.singlePage .grad_2022 h2 {
  font-size: 1.75rem;
}
/*archive-2023-sep SP*/
.singlePage #archive .archive-title h1.archive-2024-sep_title{letter-spacing: 0.05em;}
/*h2タイトル部分*/
.singlePage .grad_2022 section#gallery.galleryContainer > h2 {
  font-size: 2rem;
}
.singlePage .grad_2022 .ambSection h2 {
  font-size: 2rem;
}
/*タイトル部分*/
/*archive-2023-sep SP*/
.singlePage #archive #gallery {
  margin: 0 auto;
}
.singlePage #archive #program {
  margin: 0 auto;
  padding: 0 0 2.5rem;
}
.singlePage #archive .archive-title {
  margin: 0 auto;
}
.singlePage #archive #gallery .gallery-items {
  display: block;
}
.singlePage #archive #gallery .gallery-item {
  width: 100%;
}
.singlePage .flex {
  display: block;
}
.singlePage .flex.double_box .imgbox, .singlePage .flex.double_box .flex_box {
  width: 100%;
}
.singlePage #archive .archive-title h1 {
  padding: 2.5rem 0 0;
}
.singlePage section#creators ul li .imgbox, .singlePage section#ambassador ul li .imgbox {
  width: 100%;
}
.singlePage section#sinsa ul li .imgbox {
  width: 80%;
}
.singlePage section#creators ul li .infobox, .singlePage section#ambassador ul li .infobox, .singlePage section#sinsa ul li .infobox {
  width: 100%;
}
.singlePage .archive-hikarinosaiten__content img {
  width: 100%;
}
.singlePage .page-grand-prix {
  padding: 1.875rem 1rem;
}

@media screen and (min-width: 1025px) {
  .singlePage #archive #program .inner .mbox {
    width: 100%;
  }
}
.under-wrapper-contact {
  margin-bottom: 2.5rem;
}

.under-wrapper-contact .contact-attention .txt-box h3 {
  font-weight: bold;
  border-left: 4px solid #fff;
  padding: 0 0 0 6px;
  margin: 0 0 1.25rem;
}

.under-wrapper-contact .txt-center,
.under-wrapper-contact .wpcf7,
.under-wrapper-contact .txt-left {
  width: 90%;
  margin: 0 auto;
}

.under-wrapper-contact .check {
  font-size: 0.875rem;
  margin: 0 0 0.75rem;
}

.under-wrapper-contact .contact-attention .txt-box a {
  color: #fff;
}

.under-wrapper-contact .contact-attention .txt-box {
  width: 100%;
}

.under-wrapper-contact .contact-attention .txt-box:nth-of-type(1) {
  width: 100%;
  margin: 0 0 1.875rem;
}

.under-wrapper-contact .thanks-btn {
  margin: 1.875rem auto 0;
}

.under-wrapper-all {
  padding: 3.125rem 0;
}
.under-wrapper-all h2 {
  color: #fff;
  opacity: 1;
}

.under-title-01,
.unit-link-back {
  font-family: "Rajdhani", sans-serif, "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
}

.txt-box p {
  word-break: break-all;
}

section#creators ul li .imgbox, section#ambassador ul li .imgbox, section#sinsa ul li .imgbox {
  width: 100%;
  margin: 0 auto 1.875rem;
}

section#sinsa ul li .imgbox {
  width: 60%;
}

section#creators ul li .infobox, section#ambassador ul li .infobox, section#sinsa ul li .infobox {
  width: 100%;
}

.flex {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

#page-hikarinosaiten .red_table {
  display: block;
}

#page-hikarinosaiten .red_table .rt01,
#page-hikarinosaiten .red_table .rt02,
.page-foodarea-body01 .foodbox01 .fb01,
.page-foodarea-body01 .foodbox01 .fb02 {
  display: block;
  width: 100%;
}

.page-foodarea-body01 .foodbox01 .fb01 {
  padding: 0 0 1.875rem;
}

#page-hikarinosaiten .red_table .rt02,
.page-foodarea-body01 .foodbox01 .fb02 {
  padding: 0;
}

.page-foodarea-body01 .foodbox01 {
  display: block;
}

.page-foodarea-body01 ul li .imgbox {
  margin: 0 auto 1.875rem;
  width: 100%;
}

.page-foodarea-body01 ul li .infobox {
  width: 100%;
}

#page-hikarinosaiten .programarea dl dt {
  line-height: 1.5;
}

.page-foodarea-body01 {
  margin: 0 auto;
}

.page-foodarea-title h3 {
  text-align: center;
}

.grad_2021 section#program ul h3,
.grad_2022 section#program ul h3,
.grad_2023 section#program ul h3 {
  font-family: "Rajdhani", sans-serif, "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
}

.archive section.page-1minpm h2 {
  font-size: 1.75rem;
}
.archive section.page-1minpm h2 span {
  margin: 1rem auto 0;
}

section#news ul li {
  background: transparent;
}

section#faq ul li .q p {
  text-align: left;
}


@media screen and (min-width: 1025px) {
  #page-1minpm #page-1minpm-program .page-1minpm-inner .b_box {
    padding: 3.125rem 1rem;
  }
}
.noto-font {
 font-family: "Noto Sans Japanese", "Rajdhani", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif !important;
}

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