@charset "UTF-8";
/**
* Available vars:
* @var --viewport-from: <number> - Number in pixels without the unit. Required if `--font-size` is not exist.
* @var --viewport-to: <number> - Number in pixels without the unit. Required if `--font-size` is not exist.
* @var --font-size-from: <number> - Number in pixels without the unit. Required if `--font-size` and `--min-font-size` is not exist.
* @var --font-size-to: <number> - Number in pixels without the unit. Required if `--font-size` and `--max-font-size` is not exist.
* @var --max-font-size: <number> - Number in pixels without the unit. Optional.
* @var --min-font-size: <number> - Number in pixels without the unit. Optional.
* @var --viewport-unit-converter: 1vw | 1vh | 1vmin | 1vmax - Optional. Default: 1vw.
* @var --font-size: <length> | <percentage> | <absolute-size> | <relative-size> | Global values - Optional.
*/
*,
*::before,
*::after {
  --viewport-unit-converter: 1vw;
  --fz-from: var(--font-size-from, var(--min-font-size));
  --fz-to: var(--font-size-to, var(--max-font-size));
  --fz-slope: (var(--fz-to) - var(--fz-from)) / (var(--viewport-to) - var(--viewport-from)) * 100;
  --fz-intercept: (var(--viewport-to) * var(--fz-from) - var(--viewport-from) * var(--fz-to)) / (var(--viewport-to) - var(--viewport-from));
  --font-size: calc(var(--fz-slope) * var(--viewport-unit-converter) + var(--fz-intercept) * 1px);
  --min-fz-px: calc(var(--min-font-size) * 1px);
  --max-fz-px: calc(var(--max-font-size) * 1px);
  --clamp: clamp(var(--min-fz-px), var(--font-size), var(--max-fz-px));
  --max: var(--has-max, var(--min));
  --min: var(--has-min, var(--font-size));
  --has-max: min(var(--max-fz-px), var(--font-size));
  --has-min: max(var(--min-fz-px), var(--font-size));
  font-size: var(--clamp, var(--max));
}

/*----------------------------------------------------
  basic
----------------------------------------------------*/
/*@media (min-width: 769px) {
}*/
/*@media only screen and (max-width: 768px) {
}*/
/*----------------------------------------------------
  sec-opn
----------------------------------------------------*/
.logo-link {
  width: 9.92857rem;
  height: 8.92857rem;
  padding: 1.28571rem 0;
  background: #FEFEFE;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 5vw;
}

.logo-image {
  width: 7rem;
  line-height: 0;
  display: block;
  margin: 0 auto;
}

.image img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.sec-opn {
  width: 100%;
  height: 100vh;
  background: #444;
  position: relative;
}

.swiper-container {
  height: 100%;
}

.vis {
  position: relative;
  width: 100%;
  height: 100%;
}

.sns-con {
  position: absolute;
  left: 5%;
  bottom: 22%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  z-index: 2;
}
.sns-con__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.sns-con__link {
  display: block;
  color: #ca1315;
  padding-right: 15px;
}
.sns-con__link:last-child {
  padding-right: 0;
}
.sns-con__link:hover .inst {
  background: #ca1315;
  color: #FFF;
}
.sns-con__link:hover .twtt {
  background: #ca1315;
  color: #FFF;
}

.inst, .twtt {
  background: #FFF;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
}

.sns-con a {
  display: block;
  color: #ca1315;
  padding-right: 15px;
}

.sns-con a:last-child {
  padding-right: 0;
}

.sns-con a:hover > .inst {
  background: #ca1315;
  color: #FFF;
}

.sns-con a:hover > .twtt {
  background: #ca1315;
  color: #FFF;
}

.fa-instagram, .fa-facebook-f {
  font-size: 2.4rem;
}

.waiting__link {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .waiting__link {
    max-width: 360px;
  }
}
.waiting__link img {
  width: 100%;
}

.kv-bgimg01 {
  background: url(../img/top/kv_img01.jpg) no-repeat center center;
  background-size: cover;
}

.overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0% !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.5 !important;
  background: #1b1b1b !important;
  display: block !important;
  z-index: 5 !important;
}

.opening-area {
  -webkit-filter: drop-shadow(5px 6px 3px rgba(0, 0, 0, 0.6));
          filter: drop-shadow(5px 6px 3px rgba(0, 0, 0, 0.6));
  text-align: center;
  position: absolute;
  z-index: 2;
  top: 45%;
  left: 27%;
  width: 49vw;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.opening-area img {
  width: 100%;
  height: auto;
}

.stop-img {
  max-width: 300px;
  display: block;
  margin: 0 auto;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
}

.opening-cap {
  margin-top: 30px;
  letter-spacing: 0.1rem;
  line-height: 1.8;
  color: #FFF;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  /*    background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%…19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E) !important;*/
  left: 2% !important;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  /*  background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%…2L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E) !important;*/
  right: 2% !important;
}

.kv-header {
  position: absolute;
  top: 0;
  width: 100%;
  /*  background: rgba(255,2555,255,.7);*/
  padding: 2vw;
  z-index: 2;
}

.kv-logo {
  -webkit-filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
}

.kv-logo img {
  display: block;
  width: 26vw;
}

.date-and-time img {
  display: block;
  width: 26vw;
  height: auto;
}

.date-area {
  width: 100%;
}

.date-img {
  position: absolute;
  right: 20%;
  bottom: 20%;
  z-index: 2;
}

.ld {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 767px) {
  .ld {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
  }
}
.ld__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.ld__multi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  padding: 1.5rem;
  border-radius: 100px;
  -webkit-filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
}
@media (max-width: 767px) {
  .ld__multi {
    padding: 0.75rem 1rem;
  }
}
.ld__multi-link {
  display: inline-block;
  font-weight: bold;
  color: #ca1315;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .ld__multi-link {
    font-size: 12px;
    line-height: 1;
  }
}
.ld__multi-link:hover {
  opacity: 0.5;
}
.ld__hr {
  display: inline-block;
  padding: 0 1rem;
  color: #ca1315;
  opacity: 0.5;
}
@media (max-width: 767px) {
  .ld__hr {
    line-height: 1;
  }
}

@media (min-width: 769px) {
  .swiper-container img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  .kv-bgimg01 {
    position: absolute;
    top: 0;
    left: 0% !important;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
  }
  .stop-img {
    max-width: 450px;
  }
}
@media only screen and (max-width: 768px) {
  .swiper-container {
    height: 100%;
  }
  .kv-bgimg01 {
    position: absolute;
    top: 0;
    left: 0% !important;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
  }
  .opening-area {
    top: 50%;
    width: 100%;
  }
  .logo-link {
    width: 7.92857rem;
    height: 7.92857rem;
    padding: 1.28571rem 0;
    background: #FEFEFE;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
  }
  .sec-opn {
    height: 32vh;
  }
  .kv-header {
    display: none;
  }
  .catch_sp {
    -webkit-filter: drop-shadow(3px 1px 1px rgba(0, 0, 0, 0.5));
            filter: drop-shadow(3px 1px 1px rgba(0, 0, 0, 0.5));
    margin-top: -20%;
    z-index: 2;
    position: relative;
  }
  .catch_sp img {
    width: 100%;
    height: auto;
  }
  .sns-con {
    left: 3%;
    top: 5%;
  }
  .sns-con a {
    padding-right: 10px;
  }
  .inst, .twtt {
    width: 50px;
    height: 50px;
  }
}
/*----------------------------------------------------
  sec01
----------------------------------------------------*/
.sec01 {
  background: #ca1315;
}

.sec01_bg {
  position: relative;
  z-index: 3;
  background: url(../img/share/header_bg.svg) no-repeat center;
  background-size: cover;
  padding: 0px 20px 20px 20px;
}

.ttl {
  font-family: "Palanquin Dark", sans-serif;
  font-size: 3.2rem;
  margin-bottom: 3rem;
  line-height: 1.4;
}

.ttl span {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}

.ttl-cap {
  line-height: 2.1;
}

.p-relative {
  position: relative;
  width: 100%;
}

.kv-layer {
  position: absolute;
  right: -6%;
  bottom: -4%;
  z-index: 2;
  width: 60%;
  max-width: 720px;
}

.kv-layer-img {
  display: block;
  height: 0;
  padding-top: 79.43%;
  background: url(../img/top/konyudo.png) 0 0 no-repeat;
  background-size: contain;
}

@media (min-width: 769px) {
  .sec01_bg {
    padding: 120px 0;
  }
}
@media only screen and (max-width: 768px) {
  .date-and-time img {
    display: block;
    width: 100%;
    max-width: 180px !important;
    margin: 0 auto;
  }
  .date-img {
    right: 24%;
    bottom: 14%;
  }
  #timer {
    width: 70%;
    margin: 0 auto;
  }
  .sec01-con {
    padding: 8vw;
    background: #FFF;
  }
}
/*----------------------------------------------------
  sec02
----------------------------------------------------*/
.sec02_bg {
  position: relative;
  z-index: 3;
  background: url(../img/top/sec02_bg.jpg) no-repeat center;
  background-size: cover;
  padding: 30px 20px;
}

.post-link {
  position: relative;
  width: 100%;
  display: block;
}

.post-link:before {
  content: "";
  display: block;
  min-width: 3px;
  min-height: 30px;
  background: #ca1315;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  margin: auto;
}

.post-thumbnail {
  width: 100%;
  padding: 5vw 5vw 0 5vw;
  background: #FFF;
}
@media (min-width: 768px) {
  .post-thumbnail {
    padding: 1.5vw 1.5vw 0 1.5vw;
  }
}

.post-thumbnail img {
  width: 100%;
  height: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.post-txt-area {
  position: relative;
  padding: 1.5vw;
  background: #FFF;
}

.news {
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  padding: 0.3rem 0.6rem;
  color: #ca1315;
  border: 1px solid #ca1315;
  border-radius: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.post-ttl {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: #252525;
  letter-spacing: 0.075rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.date {
  display: block;
  color: #727171;
  font-size: 1.2rem;
  letter-spacing: 0.075rem;
}

.post-link:hover > .post-container > .post-txt-area:before {
  color: #ca1315;
  right: 0.6vw;
}

.post-link:hover > .post-container > .post-txt-area > .post-cat > .news {
  color: #727171;
  border-color: #727171;
}

.post-link:hover > .post-container > .post-txt-area > .post-ttl {
  color: #727171;
}

.post-link:hover > .post-container > .post-thumbnail img {
  opacity: 0.6;
}

.sec-ttl_01 {
  text-align: center;
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #FFF;
  padding: 1rem 2rem;
  letter-spacing: -0.2rem;
  border: 5px solid #252525;
  background: #ca1315;
  display: block;
  width: 30%;
  margin: 0 auto;
}

.post-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
@media (min-width: 768px) {
  .post-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 769px) {
  .sec02_bg {
    padding: 120px 0;
  }
}
@media only screen and (max-width: 768px) {
  .sec-ttl_01 {
    width: 100%;
    padding: 0;
  }
  .post-list {
    padding: 1.5rem 1.5rem 0rem 1.5rem;
  }
  .post-link:before {
    display: none;
  }
  .post-txt-area {
    width: 100%;
    padding: 5vw;
  }
  /*  .post-txt-area:before{
      display: none;
    }*/
  .post-thumbnail {
    max-width: 100%;
  }
  .post-thumbnail img {
    width: 100%;
  }
  .post-ttl {
    font-size: 1.4rem;
  }
  .sec-ttl-img img {
    max-width: 200px;
  }
}
/*----------------------------------------------------
  sec03
----------------------------------------------------*/
.sec03 {
  background: #c9a12b;
}

.sec03_bg {
  z-index: 3;
  position: relative;
  background: url(../img/share/header_bg.svg) no-repeat center;
  background-size: cover;
  padding: 30px 20px;
}

/*.kv-layer{
  position: absolute;
  right: -6%;
  bottom: -4%;
  z-index: 2;
  width: 60%;
  max-width: 720px;
}*/
.sec-item_bg01 {
  position: absolute;
  right: 0%;
  top: -13%;
  width: 12%;
  max-width: 186px;
}

.sec-item_bg01-img {
  display: block;
  height: 0;
  padding-top: 127.42%;
  background: url(../img/top/h_01.png) 0 0 no-repeat;
  background-size: contain;
}

.sec-item_bg02 {
  position: absolute;
  right: 10%;
  top: 2%;
  width: 12%;
  max-width: 270px;
  z-index: 2;
}

.sec-item_bg02-img {
  display: block;
  height: 0;
  padding-top: 132.96%;
  background: url(../img/top/h_02.png) 0 0 no-repeat;
  background-size: contain;
}

.sec-item_bg03 {
  position: absolute;
  left: 5%;
  top: -3%;
  width: 12%;
  max-width: 298px;
  z-index: 2;
}

.sec-item_bg03-img {
  display: block;
  height: 0;
  padding-top: 134.9%;
  background: url(../img/top/h_03.png) 0 0 no-repeat;
  background-size: contain;
}

.sec-item_bg04 {
  position: absolute;
  right: 5%;
  bottom: 18%;
  width: 10%;
  max-width: 127px;
}

.sec-item_bg04-img {
  display: block;
  height: 0;
  padding-top: 156.85%;
  background: url(../img/top/h_04.png) 0 0 no-repeat;
  background-size: contain;
}

.sec-img-cap {
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  font-weight: 600;
  text-align: center;
}

.img-box img {
  width: 100%;
  height: auto;
}

.map-img img {
  width: 100%;
  height: auto;
  -webkit-filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
}

.map-note {
  width: 80%;
  margin: 0 auto 30px;
  font-weight: bold;
  text-align: right;
}

.map-atn {
  padding: 3vw;
  background: #CA1315;
  border: 3px solid #252525;
  color: #FFF;
  font-weight: 600;
}

.atn-txt {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
}
@media (min-width: 768px) {
  .atn-txt {
    font-size: 2rem;
  }
}

@media (min-width: 769px) {
  .sec03_bg {
    padding: 120px 0;
    background: url(../img/top/sec03_bg.svg) no-repeat center;
    background-size: cover;
  }
  .map-img img {
    width: 80%;
    margin: 0 auto;
    height: auto;
    display: block;
  }
  .map-atn {
    width: 80%;
    margin: 0 auto;
  }
  .atn-txt {
    width: 85%;
    margin: 0 auto;
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .sec-img-cap {
    font-size: 1.6rem;
  }
  .sec-item_bg01 {
    display: none;
  }
  .sec-item_bg02 {
    right: 9%;
    top: -12%;
    width: 17%;
    padding-top: 25.96%;
  }
  .sec-item_bg03 {
    left: 5%;
    width: 17%;
    padding-top: 12.96%;
  }
  .sec-item_bg04 {
    display: none;
  }
  .map-note {
    width: 100%;
  }
}
/*----------------------------------------------------
  sec04
----------------------------------------------------*/
.sec04_bg {
  position: relative;
  z-index: 3;
  background: url(../img/top/sec04_bg.svg) no-repeat center;
  background-size: cover;
  padding: 30px 20px;
}

.atn-ttl {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ca1315;
}
@media (min-width: 768px) {
  .atn-ttl {
    font-size: 1.6rem;
  }
}

.atn-cap {
  font-weight: 600;
}

.atn-cap02 {
  font-weight: 600;
  font-size: 1.3rem;
}

.atn-cap__link {
  display: inline-block;
  color: #ca1315;
  text-decoration: underline;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.atn-cap__link:hover {
  opacity: 0.6;
  text-decoration: underline;
}

.ticket-img {
  position: relative;
  width: 100%;
  padding-top: 50.32%;
}

.ticket-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.txt-indent {
  padding-left: 1rem;
  text-indent: -1rem;
}

.sec-item_bg05 {
  position: absolute;
  right: 5%;
  top: -15%;
  width: 12%;
  max-width: 265px;
  z-index: 2;
}

.sec-item_bg05-img {
  display: block;
  height: 0;
  padding-top: 156.6%;
  background: url(../img/top/h_05.png) 0 0 no-repeat;
  background-size: contain;
}

.sec-item_bg06 {
  position: absolute;
  left: 5%;
  top: -16%;
  width: 8%;
  max-width: 148px;
  z-index: 2;
}

.sec-item_bg06-img {
  display: block;
  height: 0;
  padding-top: 222.97%;
  background: url(../img/top/h_06.png) 0 0 no-repeat;
  background-size: contain;
}

.sec-item_bg07 {
  position: absolute;
  right: 5%;
  bottom: -1%;
  width: 12%;
  max-width: 426px;
}

.sec-item_bg07-img {
  display: block;
  height: 0;
  padding-top: 119.95%;
  background: url(../img/top/h_07.png) 0 0 no-repeat;
  background-size: contain;
}

.sec-item_bg08 {
  position: absolute;
  left: 3%;
  bottom: 3%;
  width: 10%;
  max-width: 193px;
}

.sec-item_bg08-img {
  display: block;
  height: 0;
  padding-top: 134.72%;
  background: url(../img/top/h_08.png) 0 0 no-repeat;
  background-size: contain;
}

.sec-ttl-img img {
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .txt-con_01 {
    max-width: 1000px;
  }
}
@media (min-width: 769px) {
  .sec04_bg {
    padding: 120px 0;
  }
}
@media only screen and (max-width: 768px) {
  .sec-ttl-img img {
    max-width: 240px;
  }
  .sec-item_bg05 {
    right: 2%;
    top: -12%;
    width: 14%;
    padding-top: 21.41%;
  }
  .sec-item_bg06 {
    position: absolute;
    left: 4%;
    top: -8%;
    width: 10%;
    padding-top: 15.96%;
  }
  .sec-item_bg07 {
    display: none;
  }
  .sec-item_bg08 {
    display: none;
  }
}
/*----------------------------------------------------
  sec05
----------------------------------------------------*/
.sec05 {
  position: relative;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1f2772+1,5976ba+100 */
  background: #1f2772; /* Old browsers */ /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #1f2772 1%, #5976ba 100%); /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #1f2772), to(#5976ba));
  background: linear-gradient(to bottom, #1f2772 1%, #5976ba 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#1f2772", endColorstr="#5976ba",GradientType=0 ); /* IE6-9 */
}

.sec05_bg {
  position: relative;
  /*  background: url(../img/top/sec04_bg.svg) no-repeat center;
    background-size: cover;*/
  padding: 30px 20px;
}

.sec05-img_bg01 {
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  min-height: 120px;
  background: url(../img/top/sec05-top_bg.svg) no-repeat center;
  background: cover;
}

.sec05-img_bg02 {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  min-height: 96px;
  background: url(../img/top/sec05-bottom_bg.svg) no-repeat center;
  background: cover;
}

.sponsor-item {
  width: 100%;
  min-height: 60px;
  background: #ddd;
}

.p-custom {
  padding: 0.5rem;
}

@media (min-width: 769px) {
  .sec05_bg {
    padding: 120px 5vw;
  }
  .sponsor-item {
    min-height: 100px;
  }
}
@media (min-width: 768px) {
  .col-md-20 {
    position: relative;
    width: 100%;
    -ms-flex: 0 0 20%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
}
/*----------------------------------------------------
  timer
----------------------------------------------------*/
#timer2 {
  position: relative;
}

.timer-design {
  display: block;
}

.timer-design img {
  width: 100%;
  height: auto;
}

.yycountdown-box {
  position: relative;
  text-align: center;
  margin: 0 !important;
}

.yycountdown-box:before {
  content: "";
  position: absolute;
  display: block;
  top: -11%;
  width: 100%;
  height: 0;
  padding-top: 8%;
  background: url(../img/top/timer-line.svg) 0 0 no-repeat;
  background-size: contain;
}

.yyc-day {
  width: 100%;
  display: inline-block;
  padding: 1rem;
  font-size: 3.2rem;
  font-weight: 600;
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  letter-spacing: 0.5rem;
  text-indent: 0.5rem;
  background: #00204c;
  color: #c9a12b;
}

.yyc-day-text,
.yyc-hou,
.yyc-hou-text,
.yyc-min,
.yyc-min-text,
.yyc-sec,
.yyc-sec-text {
  display: none;
}

@media (min-width: 769px) {
  .yyc-day {
    min-width: 206px;
  }
}
@media only screen and (max-width: 768px) {
  .yyc-day {
    font-size: 3.2rem;
  }
  #timer .yycountdown-box .yyc-day {
    color: #c9a12b !important;
  }
}
@media (min-width: 768px) {
  .position-md-center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.ticket-img__item {
  width: 90%;
}
@media (min-width: 768px) {
  .ticket-img__item {
    width: 100%;
  }
}

.sec-ttl-img02 {
  width: 100%;
  max-width: 313px;
  margin: 0 auto;
}/*# sourceMappingURL=index.css.map */