/* @Reference site */
/* @MEMO */
/* -------------------------------- 
  
  Modal window 
  
  -------------------------------- */
.cd-modal {
  background: url(../../assets/img/common/bg/ph_bg_main.png) repeat-y top center;
  background-size: 100% auto;
  height: 100%;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  overflow: hidden;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  width: 100%;
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
}

@media (min-width: 769px) {
  .cd-modal {
    background-image: url(../../assets/img/common/bg/ph_bg_main_wide.jpg);
  }
}

.cd-modal.visible {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
  -webkit-transition: opacity 0.7s, visibility 0s;
  transition: opacity 0.7s, visibility 0s;
}

.cd-modal.visible .modal-close {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/* -------------------------------- 
  
  Transition Layer 
  
  -------------------------------- */
.cd-transition-layer {
  height: 100%;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  overflow: hidden;
  visibility: hidden;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.cd-transition-layer .bg-layer {
  -webkit-transform: translateY(-50%) translateX(-2%);
          transform: translateY(-50%) translateX(-2%);
  position: absolute;
  top: 50%;
  left: 50%;
  /* its dimentions will be overwritten using jQuery to proportionally fit the viewport */
  height: 100%;
  /* our sprite is composed of 25 frames */
  width: 2500%;
  background: url(../../assets/img/common/bg/ink.png) no-repeat 0 0;
  background-size: 100% 100%;
}

.cd-transition-layer.visible {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
}

.cd-transition-layer.opening .bg-layer {
  -webkit-animation: cd-sequence 0.8s steps(24);
          animation: cd-sequence 0.8s steps(24);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.cd-transition-layer.closing .bg-layer {
  -webkit-animation: cd-sequence-reverse 0.8s steps(24);
          animation: cd-sequence-reverse 0.8s steps(24);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.no-cssanimations .cd-transition-layer {
  display: none;
}

@-webkit-keyframes cd-sequence {
  0% {
    /* translateX(-2%) is used to horizontally center the first frame inside the viewport */
    -webkit-transform: translateY(-50%) translateX(-2%);
            transform: translateY(-50%) translateX(-2%);
  }
  100% {
    /* translateX(-98%) (2% + 96) is used to horizontally center the last frame inside the viewport  */
    -webkit-transform: translateY(-50%) translateX(-98%);
            transform: translateY(-50%) translateX(-98%);
  }
}

@keyframes cd-sequence {
  0% {
    /* translateX(-2%) is used to horizontally center the first frame inside the viewport */
    -webkit-transform: translateY(-50%) translateX(-2%);
            transform: translateY(-50%) translateX(-2%);
  }
  100% {
    /* translateX(-98%) (2% + 96) is used to horizontally center the last frame inside the viewport  */
    -webkit-transform: translateY(-50%) translateX(-98%);
            transform: translateY(-50%) translateX(-98%);
  }
}

@-webkit-keyframes cd-sequence-reverse {
  0% {
    -webkit-transform: translateY(-50%) translateX(-98%);
            transform: translateY(-50%) translateX(-98%);
  }
  100% {
    -webkit-transform: translateY(-50%) translateX(-2%);
            transform: translateY(-50%) translateX(-2%);
  }
}

@keyframes cd-sequence-reverse {
  0% {
    -webkit-transform: translateY(-50%) translateX(-98%);
            transform: translateY(-50%) translateX(-98%);
  }
  100% {
    -webkit-transform: translateY(-50%) translateX(-2%);
            transform: translateY(-50%) translateX(-2%);
  }
}

.noticemodal .event_notice {
  margin-top: 0;
}

.noticemodal .event_notice__inner {
  padding: 28px;
}

@media (min-width: 769px) {
  .noticemodal .event_notice__inner {
    padding: 80px;
  }
}

.event_notice {
  margin-top: 40px;
}

@media (min-width: 769px) {
  .event_notice {
    margin-top: 80px;
  }
}

.event_notice__inner {
  background: #fff;
  border: 4px double #ccc;
  padding: 40px;
  color: #333;
}

@media (min-width: 769px) {
  .event_notice__inner {
    padding: 80px;
  }
}

.event_notice__inner h2 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 1em;
  color: #aa2200;
}

@media (min-width: 769px) {
  .event_notice__inner h2 {
    font-size: 1.5rem;
    margin: 0 0 1.5em;
  }
}

.event_notice__inner h3 {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 2em 0 1em;
  color: #aa2200;
  padding-bottom: 0.25em;
  border-bottom: 1px solid #ccc;
}

@media (min-width: 769px) {
  .event_notice__inner h3 {
    margin: 3em 0 1.5em;
    font-size: 1.125rem;
  }
}

.event_notice__inner h4,
.event_notice__inner h5 {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  margin: 2em 0 1em;
  color: #aa2200;
  font-family: sans-serif;
}

@media (min-width: 769px) {
  .event_notice__inner h4,
  .event_notice__inner h5 {
    font-size: 1rem;
  }
}

.event_notice__inner h6 {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: sans-serif;
}

.event_notice__inner a {
  color: #aa2200;
}

.event_notice__inner a:hover {
  text-decoration: underline;
}

.event_notice__inner p {
  font-size: 12.5px;
  font-size: 0.78125rem;
  margin-top: 1em;
  line-height: 1.7;
  font-family: sans-serif;
}

@media (min-width: 769px) {
  .event_notice__inner p {
    font-size: 0.875rem;
  }
}

.event_notice__inner p.bigger {
  font-size: 14px;
  font-size: 0.875rem;
}

@media (min-width: 769px) {
  .event_notice__inner p.bigger {
    font-size: 1rem;
  }
}

.event_notice__inner .offer {
  display: block;
  font-size: 11px;
  font-size: 0.6875rem;
  margin-top: 1em;
  font-family: sans-serif;
}

@media (min-width: 769px) {
  .event_notice__inner .offer {
    font-size: 0.75rem;
  }
}

.event_notice__inner ul {
  font-size: 12.5px;
  font-size: 0.78125rem;
  margin-top: 1em;
}

@media (min-width: 769px) {
  .event_notice__inner ul {
    font-size: 0.875rem;
  }
}

.event_notice__inner li {
  margin-top: 1.5em;
  line-height: 1.7;
  font-family: sans-serif;
  margin-left: 1em;
  text-indent: -1em;
}

.event_notice__inner li .offer {
  text-indent: 0;
}

.event_notice__inner li ul li {
  margin-top: 0em;
}

.event_notice__inner .nomt {
  margin-top: 0;
}

.event_notice__inner .table {
  margin: 1em 0 0;
  padding: 10px 20px;
  background: #eee;
  border-radius: 5px;
}

@media (min-width: 769px) {
  .event_notice__inner .table {
    padding: 20px;
  }
}

.event_notice__inner dl {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
  font-family: sans-serif;
  text-indent: 0;
  margin-top: 0.5em;
}

@media (min-width: 769px) {
  .event_notice__inner dl {
    font-size: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0;
  }
}

@media (min-width: 769px) {
  .event_notice__inner dt {
    width: 45%;
  }
}

.event_notice__inner dd {
  font-weight: 700;
}

@media (min-width: 769px) {
  .event_notice__inner dd {
    width: 55%;
  }
}

.feather {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.-onscroll .feather {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.modal_full_image {
  background: whitesmoke;
}

.modal_full_image__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100%;
  padding: 50px 0;
}

@media (min-width: 769px) {
  .modal_full_image__inner {
    padding: 40px;
  }
}

.modal_full_image__ph {
  position: relative;
  margin: 0 auto;
}

.goods {
  padding-bottom: 13.3vw;
  position: relative;
  z-index: 1;
  margin-top: 80px;
}

@media (min-width: 769px) {
  .goods .c-inner {
    max-width: 1080px;
    padding: 0 60px;
  }
}

.goods__information {
  max-width: 768px;
  margin: 12px auto 26px;
}

.goods__information dt {
  color: #d2283c;
  padding-left: 22px;
  position: relative;
}

@media (min-width: 769px) {
  .goods__information dt {
    padding-left: 30px;
  }
}

.goods__information dt:before {
  background: url(../../assets/img/top/information/ico_star.svg);
  content: "";
  display: inline-block;
  height: 23px;
  width: 18px;
  position: absolute;
  left: 0;
  bottom: -3px;
}

@media (min-width: 769px) {
  .goods__information dt:before {
    height: 31px;
    width: 24px;
    position: absolute;
    top: 25px;
    left: 0;
    bottom: auto;
  }
}

.goods__information dt:after {
  background: #4d4d4d;
}

.goods__information dt:first-of-type {
  margin-top: 0;
}

@media (min-width: 769px) {
  .goods__information dt:first-of-type {
    padding-top: 32px;
  }
}

.goods__information dt:last-of-type:before {
  display: none;
}

.goods__information .c-btn {
  margin-left: 0;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 16px 24px;
}

@media (min-width: 769px) {
  .goods__information .c-btn {
    margin-top: 20px;
    font-size: 1rem;
  }
}

.goods__information .c-btn .c-logo {
  display: block;
  margin: auto auto 6px;
  width: 140px;
}

@media (min-width: 769px) {
  .goods__information .c-btn .c-logo {
    width: 180px;
  }
}

.goods__information .-blank {
  height: 1px;
  padding: 0;
}

.goods__head {
  margin: 0 auto 16px;
  position: relative;
}

@media (min-width: 769px) {
  .goods__head {
    margin: 0 auto;
    width: 480px;
  }
}

.goods__head .c-rose__01,
.goods__head .c-rose__02 {
  position: absolute;
  top: 8.2%;
  left: 33%;
}

.goods__ttl {
  font-weight: bold;
  line-height: calc(46 / 28);
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}

@media (min-width: 769px) {
  .goods__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -90px;
  }
}

@media (min-width: 769px) {
  .goods__list__item {
    margin: 90px 0 0 90px;
    width: calc(50% - 90px);
  }
}

@media (min-width: 769px) {
  .goods__list__item:nth-of-type(1), .goods__list__item:nth-of-type(2) {
    margin-top: 24px;
  }
}

.goods__list__item .ph {
  background: #fff;
  padding-top: 68%;
  position: relative;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
}

.goods__list__item .ph img {
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
}

.goods__list__item .ph:hover img {
  -webkit-transform: translate(-50%, -50%) scale(1.05);
          transform: translate(-50%, -50%) scale(1.05);
}

.goods__list__item .ph.-np {
  pointer-events: none;
}

.goods__list__item__plus {
  position: absolute;
  top: 0;
  left: 0;
  background: #a99365;
  width: 20px;
  height: 20px;
  z-index: 1;
  display: block;
}

@media (min-width: 769px) {
  .goods__list__item__plus {
    width: 20px;
    height: 20px;
  }
}

.goods__list__item__plus:before, .goods__list__item__plus:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  width: 1px;
  height: 50%;
  background: #fff;
}

@media (min-width: 769px) {
  .goods__list__item__plus:before, .goods__list__item__plus:after {
    width: 1px;
  }
}

.goods__list__item__plus:after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.goods__list__item .ttl {
  color: #d2283c;
  font-weight: bold;
  margin-top: 16px;
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  font-size: 0.9375rem;
}

@media (min-width: 769px) {
  .goods__list__item .ttl {
    padding-left: 20px;
    font-size: 1.25rem;
  }
}

.goods__list__item .ttl:before {
  background: url(../../assets/img/top/goods/ico_star.svg) no-repeat;
  content: "";
  display: inline-block;
  height: 20px;
  width: 21px;
  position: absolute;
  top: 0;
  left: 0;
}

@media (min-width: 769px) {
  .goods__list__item .ttl:before {
    height: 15px;
    width: 16px;
    position: absolute;
    top: 8px;
    left: 0;
  }
}

.goods__list__item .price {
  color: #4d4d4d;
  font-weight: bold;
  padding-left: 24px;
  font-size: 16px;
  font-size: 1rem;
}

@media (min-width: 769px) {
  .goods__list__item .price {
    padding-left: 20px;
    font-size: 1.125rem;
  }
}

.goods__list__item .price span {
  font-size: 12px;
  font-size: 0.75rem;
}

.goods__list__item .txt {
  color: #4d4d4d;
  font-weight: 500;
  margin-top: 16px;
  font-size: 12px;
  font-size: 0.75rem;
}

@media (min-width: 769px) {
  .goods__list__item .txt {
    line-height: calc(23 / 13);
    font-size: 0.8125rem;
  }
}

.goods__list__item .offer {
  color: #7c7c7c;
  display: inline-block;
  font-weight: normal;
  line-height: calc(32 / 20);
  margin-top: 16px;
  font-size: 11px;
  font-size: 0.6875rem;
}

.goods__list__item .variation {
  margin-top: 16px;
  color: #7c7c7c;
  line-height: calc(32 / 20);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.goods__list__item .variation__ttl {
  font-size: 11px;
  font-size: 0.6875rem;
  width: 100%;
}

.goods__list__item .variation__list {
  width: 100%;
  padding-right: 1em;
}

@media (min-width: 769px) {
  .goods__list__item .variation__list {
    width: 50%;
  }
}

.goods__list__item .variation__item {
  font-size: 11px;
  font-size: 0.6875rem;
}

.goods__list__item .variation + .offer {
  margin-top: 16px;
}

@media (min-width: 769px) {
  .goods__list__item .variation + .offer {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .goods__list__item + .goods__list__item {
    margin-top: 40px;
  }
}

@media (min-width: 769px) {
  .goods__list__item .swiper-container {
    padding-bottom: 0;
  }
}

.goods__list__item .swiper-container .goods__list__item__plus {
  pointer-events: none;
}

.goods__list__item .swiper-container .swiper-slide {
  pointer-events: auto;
}

@media (max-width: 768px) {
  .goods__list__item .swiper-container + .ttl {
    margin-top: 8px;
  }
}

.goods__list__item .swiper-pagination {
  bottom: 0;
}

.goods__pv {
  position: relative;
  max-width: 768px;
  margin: 20px auto 40px;
}

@media (min-width: 769px) {
  .goods__pv {
    margin: 40px auto 80px;
  }
}

.goods__pv:before {
  content: "";
  padding-top: 56.25%;
  display: block;
}

.goods__pv iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.information {
  position: relative;
  z-index: 1;
}

.information .c-list {
  margin-top: 18px;
}

@media (min-width: 769px) {
  .information .c-list {
    margin-top: 32px;
  }
}

.information .c-list dt {
  color: #d2283c;
  padding-left: 22px;
  position: relative;
}

@media (min-width: 769px) {
  .information .c-list dt {
    padding-left: 30px;
  }
}

.information .c-list dt:before {
  background: url(../../assets/img/top/information/ico_star.svg);
  content: '';
  display: inline-block;
  height: 23px;
  width: 18px;
  position: absolute;
  left: 0;
  bottom: -3px;
}

@media (min-width: 769px) {
  .information .c-list dt:before {
    height: 31px;
    width: 24px;
    position: absolute;
    top: 25px;
    left: 0;
    bottom: auto;
  }
}

.information .c-list dt:first-of-type {
  margin-top: 0;
}

@media (min-width: 769px) {
  .information .c-list dt:first-of-type {
    padding-top: 32px;
  }
}

.information .c-list dt:last-of-type:before {
  display: none;
}

@media (min-width: 769px) {
  .information .c-btn {
    margin-left: 0;
  }
}

.information__ttl {
  background-image: url(../../assets/img/top/information/ph_bg_corner_top.png), url(../../assets/img/top/information/ph_bg_corner_bottom.png);
  background-position: left top, right bottom;
  background-repeat: no-repeat;
  background-size: 36px 36px;
  font-weight: bold;
  line-height: calc(48 / 30);
  margin: 10px auto 0;
  padding: 16px 0;
  text-align: center;
  width: 86.6vw;
  font-size: 15px;
  font-size: 0.9375rem;
}

@media (min-width: 769px) {
  .information__ttl {
    margin: 40px auto 0;
    width: 768px;
    font-size: 1.375rem;
  }
}

.information__head .c-rose__01,
.information__head .c-rose__02 {
  position: absolute;
  top: 13.2%;
  left: 22.8%;
}

.livestreaming {
  position: relative;
  z-index: 1;
}

@media (min-width: 769px) {
  .livestreaming {
    margin-top: 80px;
  }
}

.livestreaming + .livestreaming {
  margin-top: 60px;
}

@media (min-width: 769px) {
  .livestreaming + .livestreaming {
    margin-top: 100px;
  }
}

@media (min-width: 769px) {
  .livestreaming .c-list {
    margin-top: 16px;
  }
}

.livestreaming .c-list dt {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
}

@media (min-width: 769px) {
  .livestreaming .c-list dt {
    line-height: 28px;
  }
}

.livestreaming .c-list dt p {
  font-size: 16px;
  font-size: 1rem;
}

.livestreaming .c-list dt:after {
  background: #fff;
}

@media (min-width: 769px) {
  .livestreaming .c-list dt:after {
    background: rgba(255, 255, 255, 0.3);
  }
}

.livestreaming .c-list dd:after {
  display: none;
}

@media (min-width: 769px) {
  .livestreaming .c-list dd:after {
    background: rgba(255, 255, 255, 0.3);
    display: block;
  }
}

@media (min-width: 769px) {
  .livestreaming .c-btn {
    margin-left: 0;
  }
}

.livestreaming__head {
  margin-bottom: -6vw;
  position: relative;
  z-index: 1;
}

@media (min-width: 769px) {
  .livestreaming__head {
    margin: 0 auto -18px;
    width: 480px;
  }
}

.livestreaming__head .c-rose__01,
.livestreaming__head .c-rose__02 {
  position: absolute;
  top: 13.2%;
  left: 22.8%;
}

.livestreaming__inner {
  margin: 0 0 0 8vw;
}

@media (min-width: 769px) {
  .livestreaming__inner {
    margin: 0 auto;
    width: 960px;
  }
}

.livestreaming__cont {
  padding: 10.6vw 9.3vw 16vw;
  position: relative;
}

@media (min-width: 769px) {
  .livestreaming__cont {
    padding: 40px 96px 80px;
  }
}

.livestreaming__bg {
  -webkit-animation: gradient 1s ease infinite;
          animation: gradient 1s ease infinite;
  background: -webkit-linear-gradient(bottom, #6393e7 0%, #7e98e7 10.49%, #a69ee7 27.78%, #bea2e7 41.55%, #c7a4e7 50%, #ff80a7 100%) no-repeat;
  background: linear-gradient(0deg, #6393e7 0%, #7e98e7 10.49%, #a69ee7 27.78%, #bea2e7 41.55%, #c7a4e7 50%, #ff80a7 100%) no-repeat;
  height: 100%;
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.livestreaming__bg:before {
  border-bottom: solid 20px #ff80a7;
  border-left: solid 20px transparent;
  content: "";
  display: block;
  height: 0;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 100%;
}

@media (min-width: 769px) {
  .livestreaming__bg:before {
    border-bottom: solid 40px #ff80a7;
    border-left: solid 40px transparent;
  }
}

.livestreaming__bg2 {
  -webkit-animation: gradient 1s ease infinite;
          animation: gradient 1s ease infinite;
  background: -webkit-linear-gradient(top, #6393e7 0%, #73b95e 100%) no-repeat;
  background: linear-gradient(180deg, #6393e7 0%, #73b95e 100%) no-repeat;
  height: 100%;
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.livestreaming__bg2:before {
  border-bottom: solid 20px #6393e7;
  border-left: solid 20px transparent;
  content: "";
  display: block;
  height: 0;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 100%;
}

@media (min-width: 769px) {
  .livestreaming__bg2:before {
    border-bottom: solid 40px #6393e7;
    border-left: solid 40px transparent;
  }
}

.livestreaming__row {
  position: relative;
}

.livestreaming__ttl {
  color: #4d4d4d;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
}

@media (min-width: 769px) {
  .livestreaming__ttl {
    font-size: 1.5rem;
  }
}

.livestreaming__ttlblock {
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-bottom: 0.25em;
}

.livestreaming__ttlblock.-mt {
  margin-top: 100px;
}

@media (min-width: 769px) {
  .livestreaming__ttlblock {
    font-size: 1.125rem;
  }
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.livestreaming__nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

@media (min-width: 769px) {
  .livestreaming__nav {
    margin: 10px 0 40px;
  }
}

.livestreaming__nav a {
  display: block;
  margin: 0.5em;
  font-size: 12px;
  font-size: 0.75rem;
  width: 50%;
  font-weight: 700;
  color: #ff80a7;
  padding: 0.5em 1em;
  line-height: 1.2;
  background: #fff;
  border: 4px double gainsboro;
  -webkit-transition: all 0.4s 0s ease;
  transition: all 0.4s 0s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

@media (min-width: 769px) {
  .livestreaming__nav a {
    font-size: 0.9375rem;
    width: 240px;
    padding: 0.75em 0;
  }
}

.livestreaming__nav a:hover {
  background: #ffabc4;
  color: #fff;
  border: 4px double white;
}

.mv__bnr {
  z-index: 1;
  width: 75vw;
  margin: 20px auto;
  -webkit-transition: all 0.4s 0s ease;
  transition: all 0.4s 0s ease;
}

@media (min-width: 769px) {
  .mv__bnr {
    margin: 20px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 240px;
  }
}

@media (min-width: 769px) {
  .mv__bnr.-hide {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
  }
}

.mv__bnr__item {
  margin-top: 15px;
}

@media (min-width: 769px) {
  .mv__bnr__item {
    margin-top: 10px;
  }
}

#top {
  height: 100vh;
}

.mainvisual {
  width: 100vw;
  height: 100vh;
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
}

@media (min-width: 769px) {
  .mainvisual {
    height: 100vh;
  }
}

.mainvisual:before {
  background: rgba(255, 143, 151, 0.4);
  content: "";
  display: block;
  height: 100vh;
  width: 100%;
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
}

.mainvisual canvas {
  position: fixed;
  top: 0;
  left: 0;
}

.mainvisual__fxdcontent {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.mainvisual__txt__01 {
  -webkit-animation: bgtxt 2s infinite alternate-reverse;
          animation: bgtxt 2s infinite alternate-reverse;
  width: 26.66vw;
  position: absolute;
  top: 0;
  left: 0;
}

@media (min-width: 769px) {
  .mainvisual__txt__01 {
    width: 76%;
    position: absolute;
    top: 0.64%;
    left: 18.8%;
  }
}

.mainvisual__txt__02 {
  -webkit-animation: bgtxt 3s infinite alternate-reverse;
          animation: bgtxt 3s infinite alternate-reverse;
  width: 50vw;
  position: absolute;
  top: 0;
  right: 0;
}

@media (min-width: 769px) {
  .mainvisual__txt__02 {
    width: 61%;
    position: absolute;
    top: 16.75%;
    left: 26.19%;
  }
}

.mainvisual__txt__03 {
  -webkit-animation: bgtxt 2.5s infinite alternate-reverse;
          animation: bgtxt 2.5s infinite alternate-reverse;
  display: none;
}

@media (min-width: 769px) {
  .mainvisual__txt__03 {
    display: block;
    width: 162.5%;
    position: absolute;
    left: -0.64%;
    bottom: -5%;
  }
}

.mainvisual__ph {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

@media (min-width: 769px) {
  .mainvisual__ph {
    position: absolute;
    top: 9%;
    left: auto;
    bottom: auto;
    right: -12.05%;
  }
}

.mainvisual__ph img {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 100%;
}

@media (min-width: 769px) {
  .mainvisual__ph img {
    position: relative;
    top: auto;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    max-width: none;
    width: 100%;
  }
}

.mainvisual__10thlogo {
  width: 27.8vw;
  position: fixed;
  top: -0.3vw;
  left: 36vw;
}

@media (min-width: 769px) {
  .mainvisual__10thlogo {
    width: 15.72vw;
    position: fixed;
    top: -0.41vw;
    left: -0.52vw;
  }
}

.mainvisual__10thlogo img {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

@media (min-width: 769px) {
  .mainvisual__10thlogo img {
    max-width: none;
    width: 100%;
  }
}

@media (min-width: 769px) {
  .mainvisual__inner {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 70.83vw;
    position: absolute;
    top: 50%;
    left: 50%;
  }
}

.mainvisual__inner:before {
  content: "";
  display: block;
  padding-top: 79.41%;
}

.mainvisual__ttl {
  position: fixed;
  top: 17vw;
  left: 0;
  z-index: -1;
}

@media (min-width: 769px) {
  .mainvisual__ttl {
    width: 32.8%;
    position: absolute;
    top: 28.6%;
    left: -7.64%;
  }
}

.mainvisual__ttl img {
  max-width: none;
  width: 100%;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.mainvisual__scrollhide {
  -webkit-transition: 1s all ease;
  transition: 1s all ease;
}

.-onscroll .mainvisual__scrollhide {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: translate(0, -2.5vw);
          transform: translate(0, -2.5vw);
}

.mainvisual__scrollhide .-onscroll {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: translate(0, -2.5vw);
          transform: translate(0, -2.5vw);
}

@media (min-width: 769px) {
  .mainvisual__scrollhide .-onscroll {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: none;
            transform: none;
  }
}

.mainvisual__scroll {
  color: #000000;
  display: inline-block;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1;
  overflow: hidden;
  padding: 10px 10px 110px;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  position: absolute;
  left: 10px;
  bottom: 0;
  font-size: 12px;
  font-size: 0.75rem;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

@media (min-width: 769px) {
  .mainvisual__scroll {
    position: absolute;
    left: auto;
    bottom: 0;
    right: 40px;
    font-size: 0.875rem;
  }
}

.mainvisual__scroll:after {
  -webkit-animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
          animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
  background: #000000;
  content: "";
  height: 100px;
  width: 1px;
  position: absolute;
  left: 50%;
  bottom: 0;
}

@-webkit-keyframes bgtxt {
  from {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  to {
    opacity: 0.5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  }
}

@keyframes bgtxt {
  from {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  to {
    opacity: 0.5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  }
}

@-webkit-keyframes sdl {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes sdl {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

.noticemodal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: rgba(250, 95, 108, 0.5);
  overflow-y: scroll;
  padding: 24px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  -webkit-transition: all 0.4s 0s ease;
  transition: all 0.4s 0s ease;
}

@media (min-width: 769px) {
  .noticemodal {
    margin-top: 0;
    padding: 80px;
  }
}

.noticemodal.-active {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
}

body.-inmodal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.noticemodal__close {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50%;
  background: #000;
}

@media (min-width: 769px) {
  .noticemodal__close {
    position: fixed;
    top: 40px;
    left: auto;
    bottom: auto;
    right: 40px;
    width: 64px;
    height: 64px;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
}

.noticemodal__close:before, .noticemodal__close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 50%;
  height: 2px;
  background: #fff;
}

.noticemodal__close:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.noticemodal__close:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.noticemodal__close:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@-webkit-keyframes blockscrollanim {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0.25;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
}

@keyframes blockscrollanim {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0.25;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
}

.fire-blockscrollanim {
  -webkit-animation: blockscrollanim 2s 0s cubic-bezier(0.785, 0.135, 0.15, 0.86);
          animation: blockscrollanim 2s 0s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.scroll_trigger {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100px;
  height: 100px;
  background: red;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  pointer-events: none;
}

.scroll_trigger.-m {
  position: absolute;
  top: 10px;
  left: 0;
}

.scroll_trigger.-s {
  position: absolute;
  top: -80vh;
  left: 0;
}

.information + .ticket {
  margin-top: 160px;
}

.ticket {
  margin-top: -24vw;
  position: relative;
  z-index: 1;
}

@media (min-width: 769px) {
  .ticket {
    margin-top: -400px;
    padding: 115px 0 0;
  }
}

.ticket .c-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 5.3vw;
}

@media (min-width: 769px) {
  .ticket .c-inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
    max-width: 960px;
  }
}

@media (min-width: 769px) {
  .ticket .c-list {
    margin: 32px auto 0;
  }
}

.ticket .c-list dt {
  font-weight: 500;
}

@media (min-width: 769px) {
  .ticket .c-list dt {
    line-height: 28px;
    padding: 20px 0 0 0;
    width: 90px;
  }
}

@media (min-width: 769px) {
  .ticket .c-list dt:after {
    background: rgba(124, 124, 124, 0.6);
  }
}

.ticket .c-list dt:last-of-type {
  padding: 0;
}

@media (min-width: 769px) {
  .ticket .c-list dd {
    padding: 20px 0;
    width: calc(100% - 90px);
  }
}

.ticket .c-list dd:after {
  display: none;
}

@media (min-width: 769px) {
  .ticket .c-list dd:after {
    background: rgba(124, 124, 124, 0.6);
    display: block;
  }
}

.ticket .c-list dd p {
  color: #fff;
}

@media (min-width: 769px) {
  .ticket .c-list dd p .offer {
    color: #a2a2a2;
  }
}

.ticket .c-list dd p.-nottl {
  margin: 0;
}

@media (min-width: 769px) {
  .ticket .c-list dd p.-nottl {
    margin-left: -90px;
    width: auto;
  }
}

.ticket__cont {
  background: #000;
  padding: 80px 0 40px;
}

@media (min-width: 769px) {
  .ticket__cont {
    padding: 80px 0;
  }
}

.ticket__head {
  position: relative;
}

@media (min-width: 769px) {
  .ticket__head {
    margin: 0 auto;
    width: 480px;
  }
}

.ticket__head .c-rose__01,
.ticket__head .c-rose__02 {
  position: absolute;
  top: 8.2%;
  left: 15.2%;
}

.ticket__col {
  border-style: solid;
  border-width: 30px;
  -webkit-border-image: url(../../assets/img/top/ticket/line.svg) 30 30 round;
          border-image: url(../../assets/img/top/ticket/line.svg) 30 30 round;
  image-rendering: crisp-edges;
  margin-top: 30px;
  width: 100%;
}

@media (min-width: 769px) {
  .ticket__col {
    width: calc(436 / 960 * 100%);
  }
}

.ticket__ttl {
  color: #d2a064;
  font-weight: bold;
  line-height: calc(46 / 28);
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
}

@media (min-width: 769px) {
  .ticket__ttl {
    margin-top: 16px;
    font-size: 1.25rem;
  }
}

.ticket__entry {
  margin-top: 30px;
}

.ticket__entry__ttl {
  color: #ff788c;
  font-weight: bold;
  padding-left: 22px;
  position: relative;
  font-size: 17px;
  font-size: 1.0625rem;
}

@media (min-width: 769px) {
  .ticket__entry__ttl {
    padding-left: 30px;
  }
}

.ticket__entry__ttl:before {
  background: url(../../assets/img/top/ticket/ico_star.svg);
  content: "";
  display: inline-block;
  height: 23px;
  width: 18px;
  position: absolute;
  top: 0;
  left: 0;
}

@media (min-width: 769px) {
  .ticket__entry__ttl:before {
    height: 31px;
    width: 24px;
    position: absolute;
    top: -2px;
    left: 0;
  }
}

.ticket__entry__txt {
  margin-top: 8px;
}

.ticket__entry__txt .offer {
  color: #7c7c7c;
  display: inline-block;
  font-weight: normal;
  line-height: calc(32 / 20);
  font-size: 11px;
  font-size: 0.6875rem;
}

@media (min-width: 769px) {
  .ticket__entry__txt .offer {
    font-size: 0.8125rem;
  }
}

.ticket__entry__txt .offer a {
  text-decoration: underline;
}

.cloud_top {
  height: 160px;
  position: relative;
  pointer-events: none;
  width: 100%;
  position: absolute;
  top: -160px;
  left: 0;
}

@media (min-width: 769px) {
  .cloud_top {
    height: 150px;
    position: absolute;
    top: -34px;
    left: 0;
  }
}

.cloud1 {
  width: 100%;
}

.cloud1__pixi {
  height: 160px;
  pointer-events: none;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -20px;
}

@media (min-width: 769px) {
  .cloud1__pixi {
    position: absolute;
    top: 0;
    left: 0;
    bottom: auto;
  }
}

.cloud1__image {
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url(../../assets/img/top/ticket/ph_bg_cloud.png);
  background-position: center;
  background-repeat: repeat-x;
  background-size: auto 100%;
  height: 60px;
  width: 100%;
}

@media (min-width: 769px) {
  .cloud1__image {
    background-image: url(../../assets/img/top/ticket/ph_bg_cloud_wide.png);
    height: 115px;
  }
}

.cloud_bottom {
  height: 160px;
  position: relative;
}

@media (min-width: 769px) {
  .cloud_bottom {
    height: 150px;
  }
}

.cloud2 {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.cloud2__pixi {
  pointer-events: none;
  width: 100%;
  position: absolute;
  top: -20px;
  left: 0;
}

@media (min-width: 769px) {
  .cloud2__pixi {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.cloud2__image {
  background-image: url(../../assets/img/top/ticket/ph_bg_cloud2.png);
  background-position: center;
  background-repeat: repeat-x;
  background-size: auto 100%;
  height: 60px;
  width: 100%;
}

@media (min-width: 769px) {
  .cloud2__image {
    background-image: url(../../assets/img/top/ticket/ph_bg_cloud2_wide.png);
    height: 115px;
  }
}
