@charset "UTF-8";
/* CSS INFORMATION -====================================================
File name : base.css
Description : 共通
===================================================================== */
/* =====================================================================
    共通（大枠）
======================================================================*/
html {
  min-height: 100vh;
  font-size: calc(10 / 750 * 100vw);
  overflow-x: hidden;
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  html {
    font-size: calc(10 / 1920 * 100vw);
  }
}
@media screen and (min-width: 1920px) {
  html {
    font-size: 10px;
  }
}

body {
  position: relative;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000000;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 2rem;
    font-size: max(2rem, 14px);
  }
}
body img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
body a,
body button {
  display: block;
  color: currentColor;
  word-wrap: break-word;
  line-break: anywhere;
}
@media screen and (min-width: 768px) {
  body a,
  body button {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
  body a:hover,
  body button:hover {
    opacity: 0.7;
  }
}

section,
main,
header,
footer {
  position: relative;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

@supports (aspect-ratio: 1) {
  .main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.main > * {
  padding-bottom: 24rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .main > * {
    padding-bottom: 16rem;
  }
}

.inner {
  position: relative;
  margin: 0 auto;
  padding: 0 calc(20 / 750 * 100%);
  width: calc(640 / 750 * 100%);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .inner {
    padding: 0 calc(100 / 1280 * 100%);
    width: 90%;
    max-width: 1280px;
  }
}
@media screen and (min-width: 1280px) {
  .inner {
    padding: 0 100px;
  }
}

.main p,
.main dd {
  line-height: 1.5;
}
.main p a,
.main dd a {
  display: inline;
  color: #c30d23;
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  *[data-popup] {
    cursor: pointer;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  *[data-popup]:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
/* =====================================================================
    共通
======================================================================*/
/*  title
-----------------------------------------*/
.sec-ttl {
  text-align: center;
  margin-bottom: 6.4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 6.4rem;
  letter-spacing: 0.2em;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .sec-ttl {
    margin-bottom: 8rem;
  }
}

.sec-ttl-en {
  text-align: center;
  margin-bottom: 6.4rem;
  font-family: "Cormorant Infant", serif;
  font-size: 9.6rem;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .sec-ttl-en {
    margin-bottom: 8rem;
  }
}

.ttl01 {
  text-align: center;
  margin-bottom: 8rem;
}
.ttl01 span {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 6rem;
  font-weight: 600;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .ttl01 span {
    font-size: 4.8rem;
    font-size: max(4.8rem, 26px);
  }
}

.ttl02 {
  text-align: center;
  margin-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .ttl02 {
    margin-bottom: 4rem;
  }
}
.ttl02 span {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 133%;
  font-weight: 700;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .ttl02 span {
    font-size: 160%;
  }
}

.ttl03 {
  text-align: center;
  margin-bottom: 8rem;
  font-family: "Noto Serif JP", serif;
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .ttl03 {
    font-size: 4rem;
  }
}

/*  list
-----------------------------------------*/
.list01 > li {
  position: relative;
  padding-top: 1.7em;
}
.list01 > li:not(:last-child) {
  margin-bottom: 8rem;
}
@media screen and (min-width: 768px) {
  .list01 > li:not(:last-child) {
    margin-bottom: 4rem;
  }
}
.list01 > li::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1.68em;
  height: 1.5em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.list01 > li:nth-child(3n+1)::before {
  background-image: url(../images/icon_note01.png);
}
.list01 > li:nth-child(3n+2)::before {
  background-image: url(../images/icon_note02.png);
}
.list01 > li:nth-child(3n+3)::before {
  background-image: url(../images/icon_note03.png);
}
.list01 > li p {
  text-align: center;
  line-height: 1.866;
}

/*  その他
-----------------------------------------*/
.scrollAnime {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.3s ease-in;
  transition: opacity 0.5s ease, -webkit-transform 0.3s ease-in;
  transition: opacity 0.5s ease, transform 0.3s ease-in;
  transition: opacity 0.5s ease, transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
}
.scrollAnime.is-appear {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.movie-embed {
  position: relative;
  padding-top: 56.25%;
}
.movie-embed iframe,
.movie-embed video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.date01 {
  text-align: center;
  margin-bottom: 5rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  line-height: 1.1 !important;
}
.date01 small {
  display: block;
}
@media screen and (min-width: 768px) {
  .date01 {
    margin-bottom: 4rem;
    font-size: 130%;
  }
}
.date01 strong {
  font-family: "Cormorant Infant", serif;
  font-size: 180%;
  color: #c30d23;
}
.date01 .ff-en {
  font-size: 120%;
}

.btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem 0;
}
@media screen and (min-width: 768px) {
  .btn-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4rem calc(120 / 1080 * 100%);
  }
}
@media screen and (min-width: 768px) {
  .btn-list li {
    width: calc(480 / 1080 * 100%);
  }
}
.btn-list li.compe a {
  background: -webkit-gradient(linear, left top, right top, from(#2e70b8), to(#9973bf));
  background: linear-gradient(90deg, #2e70b8 0%, #9973bf 100%);
}
@media screen and (min-width: 768px) {
  .btn-list li.compe a::before {
    background: -webkit-gradient(linear, right top, left top, from(#2e70b8), to(#9973bf));
    background: linear-gradient(270deg, #2e70b8 0%, #9973bf 100%);
  }
}
.btn-list li.festa a {
  background: -webkit-gradient(linear, left top, right top, from(#00a485), to(#f2a73d));
  background: linear-gradient(90deg, #00a485 0%, #f2a73d 100%);
}
@media screen and (min-width: 768px) {
  .btn-list li.festa a::before {
    background: -webkit-gradient(linear, right top, left top, from(#00a485), to(#f2a73d));
    background: linear-gradient(270deg, #00a485 0%, #f2a73d 100%);
  }
}
.btn-list li a {
  position: relative;
  text-align: center;
  width: 100%;
  padding: 0.8em;
  font-size: 120%;
  color: #ffffff;
  line-height: 1.3;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .btn-list li a::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
    -webkit-transition: 0.5s linear;
    transition: 0.5s linear;
  }
  .btn-list li a:hover {
    opacity: 1;
  }
  .btn-list li a:hover::before {
    opacity: 1;
  }
}

.btn01 {
  text-align: center;
  margin-top: 6.4rem;
}
@media screen and (min-width: 768px) {
  .btn01 {
    margin-top: 8rem;
  }
}
.btn01 a {
  display: inline-block;
  padding: 1em;
  min-width: 13em;
  font-size: 120%;
  line-height: 1.2;
  color: #ffffff;
  background-color: #000000;
}
@media screen and (min-width: 768px) {
  .btn01 a {
    -webkit-transition-property: background-color;
    transition-property: background-color;
  }
  .btn01 a:hover {
    opacity: 1;
    background-color: #c59a3a;
  }
}

.ff-en {
  font-family: "Cormorant Infant", serif;
}

/* =====================================================================
*    header
* =================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10.4rem;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .header {
    padding: 1.6rem 0;
    height: auto;
  }
}
.header > .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .header > .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    width: calc(1850 / 1920 * 100%);
    max-width: initial;
  }
}
.header h1 {
  margin-left: 3.5rem;
  width: 40rem;
}
@media screen and (min-width: 768px) {
  .header h1 {
    margin: 0;
    width: 41.8rem;
  }
}
.header.is-active .btn-menu span:nth-of-type(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header.is-active .btn-menu span:nth-of-type(2) {
  right: 100%;
  opacity: 0;
}
.header.is-active .btn-menu span:nth-of-type(3) {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.btn-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 10.4rem;
  height: 10.4rem;
  font-size: 1rem;
  background-color: #000000;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .btn-menu {
    display: none !important;
  }
}
.btn-menu-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 5em;
  height: 3.8em;
}
.btn-menu span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 0.4em;
  background-color: #ffffff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.btn-menu span:nth-of-type(1) {
  top: 0;
  -webkit-transform-origin: top right;
          transform-origin: top right;
}
.btn-menu span:nth-of-type(2) {
  top: calc(50% - 1px);
}
.btn-menu span:nth-of-type(3) {
  bottom: 0;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}

.nav {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 80vw;
  height: 100vh;
  padding: 15rem 10% 120px;
  background-color: #000000;
  overflow-y: auto;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .nav {
    position: relative;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 0;
    width: auto;
    height: 100%;
    overflow: visible;
    background-color: transparent;
  }
}
.nav-menu {
  margin-bottom: 20rem;
}
@media screen and (min-width: 768px) {
  .nav-menu {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
  }
}
.nav-menu > li {
  margin-bottom: 3em;
  font-size: 3rem;
}
@media screen and (min-width: 768px) {
  .nav-menu > li {
    margin: 0 0 0 2em;
    font-size: 1.8rem;
  }
}
.nav-menu > li > a {
  position: relative;
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .nav-menu > li > a {
    color: #000000;
    -webkit-transition-property: color;
    transition-property: color;
  }
  .nav-menu > li > a:hover {
    opacity: 1;
    color: #c59a3a;
  }
}
.nav-menu > li.nolink a {
  pointer-events: none;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .nav-top {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 2.5rem;
  }
}
.nav-en {
  margin-bottom: 8rem;
}
@media screen and (min-width: 768px) {
  .nav-en {
    margin: 0 0.5em 0 0;
  }
}
.nav-en a {
  display: inline-block;
  padding: 0.5em 1.5em;
  font-family: "Cormorant Infant", serif;
  font-size: 3.6rem;
  font-weight: 600;
  color: #000000;
  background-color: #ffffff;
  border-radius: 3em;
}
@media screen and (min-width: 768px) {
  .nav-en a {
    font-size: 1.8rem;
    color: #ffffff;
    background-color: #000000;
    -webkit-transition-property: background-color;
    transition-property: background-color;
  }
  .nav-en a:hover {
    opacity: 1;
    background-color: #c59a3a;
  }
}
.nav-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 5rem;
}
@media screen and (min-width: 768px) {
  .nav-sns {
    font-size: 2.8rem;
  }
}
.nav-sns li {
  margin: 0 1em 0 0;
}
@media screen and (min-width: 768px) {
  .nav-sns li {
    margin: 0 0 0 1em;
  }
}
.nav-sns li a {
  width: 1em;
  height: 1em;
}
@media screen and (min-width: 768px) {
  .nav-sns li a:hover {
    opacity: 1;
  }
  .nav-sns li a:hover svg {
    fill: #c59a3a;
  }
}
.nav-sns li a svg {
  width: 100%;
  height: 100%;
  fill: #ffffff;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
@media screen and (min-width: 768px) {
  .nav-sns li a svg {
    fill: #000000;
  }
}

/* =====================================================================
    mv
======================================================================*/
.mv {
  background: url(../images/bg_mv-sp.jpg) no-repeat top center/100% auto;
}
.mv .inner {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .mv .inner {
    width: 75%;
  }
}
@media screen and (min-width: 768px) {
  .mv {
    background-image: url(../images/bg_mv-pc.jpg);
  }
}
.mv-top {
  position: relative;
  padding: 48.1rem 0 11.5rem;
}
@media screen and (min-width: 768px) {
  .mv-top {
    padding: 23.6rem 0 0;
  }
}
.mv-top h1 {
  margin: 0 auto 43.7rem;
  width: calc(613 / 640 * 100%);
}
@media screen and (min-width: 768px) {
  .mv-top h1 {
    margin-bottom: 7.5rem;
    width: calc(768 / 1080 * 100%);
  }
}
.mv-date dt {
  margin-bottom: 0;
  white-space: nowrap;
  font-size: 122%;
  letter-spacing: 0.075em;
}
@media screen and (min-width: 768px) {
  .mv-date dt {
    font-size: 180%;
  }
}
.mv-date dd {
  text-align: center;
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .mv-date dd {
    margin-top: 4rem;
    font-size: 120%;
  }
}
.mv-ptoto01 {
  position: absolute;
  top: 4rem;
  right: -4rem;
  width: 37.5rem;
}
@media screen and (min-width: 768px) {
  .mv-ptoto01 {
    top: 23.3rem;
    right: -4.5rem;
    width: 48.8rem;
  }
}
.mv-ptoto02 {
  position: absolute;
  top: 79.1rem;
  left: -9rem;
  width: 43.6rem;
}
@media screen and (min-width: 768px) {
  .mv-ptoto02 {
    top: 19.9rem;
    left: 0;
  }
}
.mv-ptoto03 {
  margin: 0 auto;
  width: 74rem;
}
@media screen and (min-width: 768px) {
  .mv-ptoto03 {
    position: absolute;
    top: -110px;
    left: -0.8rem;
    width: 59.2rem;
  }
}
.mv-ptoto04 {
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .mv-ptoto04 {
    position: absolute;
    top: -310px;
    right: -0.8rem;
    width: 59.2rem;
  }
}
.mv-ptoto05 {
  margin: 0 auto;
  width: 74rem;
}
@media screen and (min-width: 768px) {
  .mv-ptoto05 {
    position: absolute;
    top: 310px;
    right: -0.8rem;
    width: 59.2rem;
  }
}
.mv-bottom {
  position: relative;
}
@media screen and (min-width: 768px) {
  .mv-bottom {
    padding-top: 24rem;
  }
}
.mv-catch01 {
  margin: 22rem 0 8rem;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 6.8rem;
  color: #c30d23;
}
@media screen and (min-width: 768px) {
  .mv-catch01 {
    margin-top: 0;
    font-size: 5.6rem;
    font-size: max(5.6rem, 30px);
  }
}
.mv-catch_en {
  margin: 22rem auto 8rem;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 2.8rem;
  color: #c30d23;
}
.mv-catch_en span {
  display: block;
  margin: 0 0 1em;
}
@media screen and (min-width: 768px) {
  .mv-catch_en {
    margin-top: 0;
    font-size: 2.6rem;
    font-size: max(2.6rem, 30px);
  }
}
.mv-catch02 {
  text-align: center;
  line-height: 2 !important;
}
@media screen and (min-width: 768px) {
  .mv-catch02 {
    font-size: 140%;
  }
}
.mv-date dt h5 {
  font-size: 1em;
  padding: 0.5em 0;
  line-height: 1.6;
}
.mv-date dt h5.compe_catch {
  background: -webkit-gradient(linear, left top, right top, from(#2e70b8), to(#9973bf));
  background: linear-gradient(90deg, #2e70b8 0%, #9973bf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mv-date dt h5.festa_catch {
  background: -webkit-gradient(linear, left top, right top, from(#00a485), to(#f2a73d));
  background: linear-gradient(90deg, #00a485 0%, #f2a73d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mv-date dt h5 em {
  font-style: normal;
  display: block;
  padding: 0.5em;
}
@media screen and (min-width: 768px) {
  .mv-date dt h5 {
  font-size: 0.7em;
}
}

/* =====================================================================
    movie
======================================================================*/
@media screen and (min-width: 768px) {
  .movie-wrap {
    margin: 0 auto;
    max-width: 800px;
  }
}
.movie-wrap a {
  position: relative;
}
.movie-wrap a::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 13%;
  background: url(../images/icon_play.png) no-repeat center/contain;
}

/* =====================================================================
    news
======================================================================*/
@media screen and (min-width: 768px) {
  .news > .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 0;
    width: 100%;
    max-width: initial;
  }
  .news .sec-ttl-en {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0 calc(120 / 1920 * 100%) 0 0;
  }
}
.news-list {
  border-top: 1px solid currentColor;
}
@media screen and (max-width: 767px) {
  .news-list {
    margin: 0 calc(50% - 50vw);
  }
}
@media screen and (min-width: 768px) {
  .news-list {
    width: calc(1400 / 1920 * 100%);
  }
}
.news-list li {
  padding: 4rem calc(55 / 750 * 100%);
  border-bottom: 1px solid currentColor;
}
@media screen and (min-width: 768px) {
  .news-list li {
    padding: 4rem 3.2142857143%;
  }
  .news-list li,
  .news-list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.news-list li time {
  display: block;
  margin-bottom: 0.3em;
  font-family: "Cormorant Infant", serif;
  font-weight: 600;
  font-size: 120%;
  color: #c59a3a;
}
@media screen and (min-width: 768px) {
  .news-list li time {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0 1.5em 0 0;
  }
}
.news-list li h3 {
  line-height: 1.5;
}

/* =====================================================================
    entry
======================================================================*/
.entry {
  padding-bottom: 0;
}
.entry-wrap {
  position: relative;
  padding: 24rem 0;
}
@media screen and (min-width: 768px) {
  .entry-wrap {
    padding: 16rem 0;
  }
}
.entry-wrap::before {
  content: "";
  position: absolute;
  display: block;
  top: 22rem;
  left: 0;
  width: 100vw;
  height: 100%;
  margin: 0 calc(50% - 50vw);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .entry-wrap::before {
    top: 0;
  }
}
.entry-column {
  margin-left: -3.125%;
  width: calc(680 / 640 * 100%);
}
@media screen and (min-width: 768px) {
  .entry-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-left: -14.8148148148%;
    width: calc(1400 / 1080 * 100%);
  }
}
@media screen and (min-width: 1920px) {
  .entry-column {
    margin-left: -28.7037037037%;
    width: calc(1700 / 1080 * 100%);
  }
}
.entry-group {
  margin-top: 12rem;
}
@media screen and (min-width: 768px) {
  .entry-group {
    width: 45.8823529412%;
  }
}
.entry-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8rem 0;
}
.entry-list li {
  width: calc(304 / 680 * 100%);
}
@media screen and (min-width: 768px) {
  .entry-list li {
    width: 46.1538461538%;
  }
}
.entry-list li figure {
  position: relative;
  font-size: 17rem;
}
@media screen and (min-width: 768px) {
  .entry-list li figure {
    font-size: 20rem;
  }
}
.entry-list li figure::before {
  content: "";
  position: absolute;
  display: block;
  top: -0.2em;
  left: -0.117em;
  width: 1em;
  height: 1em;
  z-index: -1;
}
.entry-list li dl {
  margin-top: 0.8em;
}
.entry-list li dl dt {
  margin-bottom: 0.3em;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.5;
}
.entry-list li dl dd {
  font-size: 80%;
}
.entry .compe {
  padding-bottom: 0;
}
.entry .compe::before {
  background-image: url(../images/bg_compe-sp.jpg);
}
@media screen and (min-width: 768px) {
  .entry .compe::before {
    background-image: url(../images/bg_compe-pc.jpg);
  }
}
.entry .compe .ttl01 span,
.entry .compe .ttl02 span {
  background: -webkit-gradient(linear, left top, right top, from(#2e70b8), to(#9973bf));
  background: linear-gradient(90deg, #2e70b8 0%, #9973bf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.entry .compe .first .ttl03,
.entry .compe .first .entry-list li dl dt {
  color: #2e70b8;
}
.entry .compe .first .entry-list li figure::before {
  background-color: #2e70b8;
}
.entry .compe .second .ttl03,
.entry .compe .second .entry-list li dl dt {
  color: #9973bf;
}
.entry .compe .second .entry-list li figure::before {
  background-color: #9973bf;
}
.entry .festa::before {
  background-image: url(../images/bg_festa-sp.jpg);
}
@media screen and (min-width: 768px) {
  .entry .festa::before {
    background-image: url(../images/bg_festa-pc.jpg);
  }
}
.entry .festa .ttl01 span,
.entry .festa .ttl02 span {
  background: -webkit-gradient(linear, left top, right top, from(#00a485), to(#f2a73d));
  background: linear-gradient(90deg, #00a485 0%, #f2a73d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.entry .festa .toyama .ttl03,
.entry .festa .toyama .entry-list li dl dt {
  color: #00a485;
}
.entry .festa .toyama .entry-list li figure::before {
  background-color: #00a485;
}
.entry .festa .mie .ttl03,
.entry .festa .mie .entry-list li dl dt {
  color: #f2a73d;
}
.entry .festa .mie .entry-list li figure::before {
  background-color: #f2a73d;
}

/* =====================================================================
    schedule
======================================================================*/
.schedule > .inner {
  padding: 0;
}
.schedule-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem 0;
  margin-bottom: 8rem;
  font-size: 93%;
}
@media screen and (min-width: 768px) {
  .schedule-item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3rem calc(50 / 1080 * 100%);
    font-size: 100%;
  }
}
.schedule-item li {
  position: relative;
  padding-left: 1.3em;
  width: 50%;
}
@media screen and (min-width: 768px) {
  .schedule-item li {
    width: auto;
  }
}
.schedule-item li::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  border-radius: 50%;
}
.schedule-wrap-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
  padding: 0 1em;
}
.schedule-wrap-head li {
  color: #c59a3a;
}
.schedule-list > li {
  margin-bottom: 6rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid currentColor;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .schedule-list > li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 2rem 1em;
  }
}
.schedule-list > li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.schedule-list > li > dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.5em;
  font-size: 133%;
}
@media screen and (min-width: 768px) {
  .schedule-list > li > dl {
    margin-bottom: 0;
    font-size: 100%;
  }
}
@media screen and (max-width: 767px) {
  .schedule-list > li > dl dt {
    margin-right: 1em;
  }
}
.schedule-list > li > dl dt {
  font-weight: normal;
}
.schedule-list > li.line2 .schedule-list-desc::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 50%;
}
@media screen and (min-width: 768px) {
  .schedule-list > li.line2 .schedule-list-desc::after {
    width: 4px;
  }
}
.schedule-list-desc {
  position: relative;
  padding-left: 2rem;
}
@media screen and (min-width: 768px) {
  .schedule-list-desc {
    display: contents;
  }
}
.schedule-list-desc::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .schedule-list-desc::before {
    top: 0;
    margin: auto 0;
    height: 80%;
    width: 4px;
  }
}
.schedule-list-desc dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 0.3em;
}
@media screen and (min-width: 768px) {
  .schedule-list-desc dl {
    margin: 0 0.5em 0 0;
  }
}
.schedule-list-desc dl dt {
  padding-right: 0.8em;
  width: 40%;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .schedule-list-desc dl dt {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .schedule-list-desc dl dd {
    width: 60%;
  }
}
.schedule-list-desc dl dd span {
  position: relative;
  display: block;
  padding-left: 1.2em;
}
.schedule-list-desc dl dd span::before {
  content: "";
  position: absolute;
  display: block;
  top: 0.35em;
  left: 0;
  width: 0.9em;
  height: 0.9em;
  border-radius: 50%;
}

@media screen and (min-width: 768px) {
  .schedule-wrap-head li:nth-child(1),
  .schedule-list > li > dl dt {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 8em;
  }
  .schedule-wrap-head li:nth-child(2),
  .schedule-list > li > dl dd {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 10em;
  }
  .schedule-wrap-head li:nth-child(3),
  .schedule-list-desc dl:nth-child(1) {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 16em;
  }
  .schedule-wrap-head li:nth-child(4),
  .schedule-list-desc dl:nth-child(2) {
    width: 10em;
  }
  .schedule-wrap-head li:nth-child(5),
  .schedule-list-desc dl:nth-child(3) {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 14em;
  }
}
.schedule-item li.blue::before,
.schedule-list > li.blue .schedule-list-desc::before,
.schedule-list > li.blue dl dd span::before{
  background-color: #2e70b8;
}

.schedule-item li.purple::before,
.schedule-list > li.purple .schedule-list-desc::before,
.schedule-list > li.purple dl dd span::before,
.schedule-list > li.line2 .schedule-list-desc::after,
.schedule-list > li.line2 dl dd span:last-child:before  {
  background-color: #9973bf;
}

.schedule-item li.green::before,
.schedule-list > li.green .schedule-list-desc::before,
.schedule-list > li.green dl dd span::before {
  background-color: #90cc5c;
}

.schedule-item li.red::before,
.schedule-list > li.red .schedule-list-desc::before,
.schedule-list > li.red dl dd span::before {
  background-color: #c30d23;
}

/* =====================================================================
    event
======================================================================*/
.event h3 {
  color: #c59a3a;
  font-size: 0.8em;
}
.event h4 {
  font-size: 1em;
  font-weight: bold;
  color: #c59a3a;
  padding: 2em 0 0.5em;
  margin-bottom: 0.5em;
  border-bottom: 1px solid #c59a3a;
}
.event .inner strong {
  display: block;
  margin: 0 0 1em;
}
.event .inner span {
  color: #c59a3a;
  font-weight: bold;
}

/* =====================================================================
    ticket
======================================================================*/
@media screen and (min-width: 768px) {
  .ticket > .inner {
    padding: 0;
  }
}
.ticket-list > li {
  margin-bottom: 8rem;
}
@media screen and (min-width: 768px) {
  .ticket-list > li {
    margin-bottom: 12rem;
  }
}
.ticket-list > li dl {
  margin-bottom: 1em;
  padding-left: 0.6em;
  line-height: 1.5;
  border-left: 2px solid #c59a3a;
}
@media screen and (min-width: 768px) {
  .ticket-list > li dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    font-size: 120%;
    border-left: 0;
  }
  .ticket-list > li dl > * {
    width: 50%;
  }
}
.ticket-list > li dl dt {
  margin-bottom: 0.3em;
  color: #c59a3a;
}
@media screen and (min-width: 768px) {
  .ticket-list > li dl dt {
    text-align: right;
    margin: 0 1em 0 0;
    padding-right: 1em;
    border-right: 2px solid #c59a3a;
  }
}
.ticket-list > li dl dd {
  font-weight: 700;
}
.ticket-list > li p {
  position: relative;
  margin-top: 1.5em;
  padding-left: 1em;
  font-size: 93%;
}
@media screen and (min-width: 768px) {
  .ticket-list > li p {
    text-align: center;
    padding: 0;
  }
}
.ticket-list > li p::before {
  content: "※";
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .ticket-list > li p::before {
    position: relative;
  }
}

.access-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem 0;
}
@media screen and (min-width: 768px) {
  .access-list > li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.access-list > li:not(:last-child) {
  margin-bottom: 8rem;
}
@media screen and (min-width: 768px) {
  .access-list > li:not(:last-child) {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .access-list-map {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media screen and (min-width: 768px) {
  .access-list-map {
    width: calc(640 / 1280 * 100%);
  }
}
.access-list-map iframe {
  width: 100%;
}
.access-list-right {
  display: contents;
}
@media screen and (min-width: 768px) {
  .access-list-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem 0;
    width: calc(560 / 1280 * 100%);
  }
}
.access-list-date {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .access-list-date {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.access-list-date em {
  font-style: normal;
  font-size: 150%;
  color: #c59a3a;
}
.access-list-venue {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .access-list-venue {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.access-list-venue strong {
  display: inline-block;
  margin-top: 0.3em;
  font-size: 145%;
}
.access-list-desc {
  padding-left: 0.8em;
  border-left: 2px solid #c59a3a;
}
@media screen and (max-width: 767px) {
  .access-list-desc {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

.ticket_sale {
  text-align: center;
  line-height: 1.6;
}
.ticket_sale h4 {
  color: #c59a3a;
  font-weight: bold;
  font-size: 1.2em;
  padding-bottom: 0.5em;
}

/* =====================================================================
    about
======================================================================*/
.about-catch {
  margin-bottom: 6rem;
  line-height: 1.866 !important;
}
@media screen and (min-width: 768px) {
  .about-catch {
    text-align: center;
  }
}
.about-list {
  counter-reset: number 0;
}
.about-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem 0;
  padding-top: 13rem;
  counter-increment: number 1;
}
@media screen and (min-width: 768px) {
  .about-list > li {
    padding-top: 8rem;
  }
}
.about-list > li::before {
  content: counter(number);
  text-align: center;
  height: auto;
  font-family: "Cormorant Infant", serif;
  font-size: 9.6rem;
  color: #c59a3a;
  line-height: 0.8;
  background: none !important;
}
@media screen and (min-width: 768px) {
  .about-list > li::before {
    font-size: 7.2rem;
  }
}
.about-list > li:not(:last-child) {
  padding-bottom: 8rem;
  border-bottom: 1px solid currentColor;
}
@media screen and (min-width: 768px) {
  .about-list > li:not(:last-child) {
    padding-bottom: 4rem;
  }
}
.about-list > li .ttl02 {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .about-list > li .ttl02 {
    text-align: left;
  }
}
.about-list > li .ttl02 span {
  color: #c59a3a;
}
@media screen and (max-width: 767px) {
  .about-list > li p {
    text-align: left;
  }
}
.about-list-bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.6rem calc(32 / 640 * 100%);
}
@media screen and (min-width: 768px) {
  .about-list-bnr {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.6rem calc(40 / 1080 * 100%);
  }
}
.about-list-bnr a {
  width: calc(304 / 640 * 100%);
}
@media screen and (min-width: 768px) {
  .about-list-bnr a {
    width: calc(304 / 1080 * 100%);
  }
}

/* =====================================================================
    judging
======================================================================*/
.judging {
  padding-bottom: 0;
}
.judging-wrap {
  position: relative;
  padding: 24rem 0;
  z-index: 1;
}
.judging-wrap::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  margin: 0 calc(50% - 50vw);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  z-index: -1;
}
.judging-wrap::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 16rem;
  margin: 0 calc(50% - 50vw);
  background: -webkit-gradient(linear, left bottom, left top, from(#ffffff), to(transparent));
  background: linear-gradient(to top, #ffffff 0%, transparent 100%);
  z-index: -1;
}
.judging-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4rem 0;
  margin-left: -3.125%;
  width: calc(680 / 640 * 100%);
}
.judging-list:not(:last-child) {
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .judging-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 4rem calc(40 / 1080 * 100%);
    margin-left: -5%;
    width: calc(1188 / 1080 * 100%);
  }
}
.judging-list > li {
  width: calc(304 / 680 * 100%);
}
@media screen and (min-width: 768px) {
  .judging-list > li {
    width: 22.2222222222%;
  }
}
.judging-list > li figure {
  margin-bottom: 2.4rem;
}
.judging-list > li .pos {
  font-weight: normal;
  font-size: 80%;
}
.judging-list > li .name {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}
.judging-list.large {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.judging-list.large > li {
  width: calc(640 / 680 * 100%);
}
@media screen and (min-width: 768px) {
  .judging-list.large > li {
    width: calc(560 / 1280 * 100%);
  }
}
.judging-list.large > li .judging-list-name {
  font-size: 120%;
}
.judging-list dl > *:not(:last-child) {
  margin-bottom: 0.8rem;
}
.judging-list dl dt {
  line-height: 1.266;
}
.judging-list dl dd {
  font-size: 80%;
}
.judging-notice {
  margin-top: 8rem;
  font-size: 80%;
}
@media screen and (min-width: 768px) {
  .judging-notice {
    text-align: center;
  }
}
.judging .compe {
  padding-bottom: 0;
}
.judging .compe::before {
  background-image: url(../images/bg_compe-sp.jpg);
}
@media screen and (min-width: 768px) {
  .judging .compe::before {
    background-image: url(../images/bg_compe-pc.jpg);
  }
}
.judging .compe .ttl01 span,
.judging .compe .judging-list dl dt span {
  background: -webkit-gradient(linear, left top, right top, from(#2e70b8), to(#9973bf));
  background: linear-gradient(90deg, #2e70b8 0%, #9973bf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.judging .festa::before {
  background-image: url(../images/bg_festa-sp.jpg);
}
@media screen and (min-width: 768px) {
  .judging .festa::before {
    background-image: url(../images/bg_festa-pc.jpg);
  }
}
.judging .festa .ttl01 span,
.judging .festa .judging-list dl dt span {
  background: -webkit-gradient(linear, left top, right top, from(#00a485), to(#f2a73d));
  background: linear-gradient(90deg, #00a485 0%, #f2a73d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =====================================================================
    footer
======================================================================*/
.footer {
  padding: 16rem 0;
}
.footer::before, .footer::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 7rem;
  background: url(../images/img_5senfu.svg) repeat-x center/auto 100%;
}
.footer::after {
  top: auto;
  bottom: 0;
}

.outline-list > li .ttl02 span {
  color: #c59a3a;
}
.outline-list > li:nth-child(7n+1)::before {
  background-image: url(../images/icon_note04.png);
}
.outline-list > li:nth-child(7n+2)::before {
  background-image: url(../images/icon_note05.png);
}
.outline-list > li:nth-child(7n+3)::before {
  background-image: url(../images/icon_note06.png);
}
.outline-list > li:nth-child(7n+4)::before {
  background-image: url(../images/icon_note07.png);
}
.outline-list > li:nth-child(7n+5)::before {
  background-image: url(../images/icon_note08.png);
}
.outline-list > li:nth-child(7n+6)::before {
  background-image: url(../images/icon_note09.png);
}
.outline-list > li:nth-child(7n+7)::before {
  background-image: url(../images/icon_note10.png);
}
.outline-list > li p a {
  display: inline;
  text-decoration: underline;
}

.banner-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5rem 0;
  margin-left: -8.59375%;
  width: calc(750 / 640 * 100%);
}
@media screen and (min-width: 768px) {
  .banner-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4rem calc(10 / 1080 * 100%);
    margin-left: -14.8148148148%;
    width: calc(1400 / 1080 * 100%);
  }
}
@media screen and (min-width: 1920px) {
  .banner-list {
    margin-left: -24.0740740741%;
    width: calc(1600 / 1080 * 100%);
  }
}
.banner-list li {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .banner-list li {
    width: 15.625%;
  }
}

.pagetop {
  position: fixed;
  bottom: 0;
  right: 0;
  display: none;
  z-index: 10;
}
.pagetop a {
  position: relative;
  margin-left: auto;
  width: 10.4rem;
  height: 10.4rem;
  background-color: #000000;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.pagetop a::after {
  content: "";
  position: absolute;
  display: block;
  top: 45%;
  left: 50%;
  width: 25%;
  height: 25%;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: translateX(-50%) rotate(315deg);
          transform: translateX(-50%) rotate(315deg);
}
@media screen and (min-width: 768px) {
  .pagetop a:hover {
    opacity: 1;
    -webkit-transform: translateY(-1rem);
            transform: translateY(-1rem);
  }
}

/* =====================================================================
*    popup
* =================================================================== */
.popup {
  position: fixed !important;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 50;
}
.popup-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 120px 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
}
.popup-area::-webkit-scrollbar {
  width: 0;
}
.popup-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
}
@media screen and (min-width: 768px) {
  .popup-bg {
    cursor: pointer;
  }
}
.popup-inner {
  position: relative;
  margin: auto;
  -ms-flex-item-align: start;
  align-self: flex-start;
  width: calc(680 / 750 * 100%);
}
@media screen and (min-width: 768px) {
  .popup-inner {
    width: 90%;
    max-width: 1080px;
  }
}
@media screen and (max-width: 767px) {
  .popup-movie .popup-inner {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .popup-movie .popup-inner {
    max-width: 120vh;
  }
}
.popup-close {
  position: absolute;
  top: -4em;
  right: 0;
  width: 3em;
  height: 3em;
  z-index: 3;
}
.popup-close::before, .popup-close::after {
  content: "";
  display: block;
  width: 1px;
  margin: 0 auto;
  padding-top: 90%;
  border-left: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.popup-close::after {
  position: absolute;
  top: 51%;
  left: 0;
  right: 0;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
.popup-list {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
}
.popup-list > li {
  position: relative;
  display: none;
  margin: 0 auto;
  padding: 8rem calc(50 / 680 * 100%);
  line-height: 1.5;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .popup-list > li {
    padding: 8rem calc(60 / 1080 * 100%);
  }
}
.popup-list > li::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.6rem;
}
.popup-list > li figure {
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .popup-list > li figure {
    margin: 0 5.2083333333% 0 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 37.5%;
  }
}
.popup-list > li[id^=compe_01]::after {
  background: #2e70b8;
}
.popup-list > li[id^=compe_01] .popup-list-right dl {
  color: #2e70b8;
}
.popup-list > li[id^=compe_02]::after {
  background: #9973bf;
}
.popup-list > li[id^=compe_02] .popup-list-right dl {
  color: #9973bf;
}
.popup-list > li[id^=festa_01]::after {
  background: #00a485;
}
.popup-list > li[id^=festa_01] .popup-list-right dl {
  color: #00a485;
}
.popup-list > li[id^=festa_02]::after {
  background: #f2a73d;
}
.popup-list > li[id^=festa_02] .popup-list-right dl {
  color: #f2a73d;
}
.popup-list > li[id^=judging_compe]::after {
  background: -webkit-gradient(linear, left top, right top, from(#2e70b8), to(#9973bf));
  background: linear-gradient(90deg, #2e70b8 0%, #9973bf 100%);
}
.popup-list > li[id^=judging_compe] .popup-list-right dl {
  color: #2e70b8;
}
.popup-list > li[id^=judging_compe] .popup-list-right dl dt span {
  background: -webkit-gradient(linear, left top, right top, from(#2e70b8), to(#9973bf));
  background: linear-gradient(90deg, #2e70b8 0%, #9973bf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.popup-list > li[id^=judging_festa]::after {
  background: -webkit-gradient(linear, left top, right top, from(#00a485), to(#f2a73d));
  background: linear-gradient(90deg, #00a485 0%, #f2a73d 100%);
}
.popup-list > li[id^=judging_festa] .popup-list-right dl {
  color: #00a485;
}
.popup-list > li[id^=judging_festa] .popup-list-right dl dt span {
  background: -webkit-gradient(linear, left top, right top, from(#00a485), to(#f2a73d));
  background: linear-gradient(90deg, #00a485 0%, #f2a73d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .popup-list-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.popup-list-right {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.popup-list-right dl {
  margin-bottom: 4rem;
  padding-left: 0.8em;
  border-left: 2px solid currentColor;
}
.popup-list-right dl > *:not(:last-child) {
  margin-bottom: 0.8rem;
}
.popup-list-right dl .pos {
  font-weight: normal;
  font-size: 80%;
}
.popup-list-right dl .name {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 133%;
  line-height: 1.5;
}
.popup-list-right dl dd {
  font-size: 80%;
  color: #000000;
}
.popup-list-desc > *:not(:last-child) {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #bcbcbc;
}
.popup-list-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.popup-list-link > a {
  position: relative;
  width: 1.7em;
  height: 1.7em;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (min-width: 768px) {
  .popup-list-link > a:hover {
    opacity: 1;
  }
  .popup-list-link > a:hover svg {
    fill: #c59a3a;
  }
}
.popup-list-link > a:not(:last-child) {
  margin-right: 2.5em;
}
.popup-list-link > a:not(:last-child)::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: -0.8em;
  width: 1px;
  height: 80%;
  background-color: currentColor;
  -webkit-transform: skewX(327deg) translateY(-50%);
          transform: skewX(327deg) translateY(-50%);
}
.popup-list-link > a svg {
  width: 100%;
  height: 100%;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

/*-- 追加 --*/
.color_gold {
  font-weight: bold;
  color: #c59a3a;
}

.left_txt {
  text-align: left!important;
}
@media screen and (min-width: 768px) { 
  .left_txt {
    width: 70%;
    margin: 0 auto;
  }
  }
.flow h5 {
  text-align: center;
  line-height: 1.6;
  font-weight: bold;
  color: #c59a3a;
  padding-top: 2em;
}
.flow h5:first-child {
  padding-top: 0;
}
.flow h5 strong {
  font-size: 1.2em;
}
.ticket_sale a {
  display: inline;
  padding: 0 1em 0.2em;
  margin: 0 auto;
  background-color: #c30d23;
  color: #ffffff;
  border-radius: 20px;
}
/*# sourceMappingURL=base.css.map */