.pcOn {
  display: block;
}
@media screen and (max-width: 620px) {
  .pcOn {
    display: none;
  }
}

.spOn {
  display: none;
}
@media screen and (max-width: 620px) {
  .spOn {
    display: block;
  }
}

body {
  position: relative;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  line-height: 1;
}
body::before {
  content: "";
  background: url(../images/bg.png) no-repeat;
  background-size: cover;
  background-position: center top;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 620px) {
  body::before {
    content: none;
  }
}

.ticket-btn a {
  color: #3b0606;
  background: #ffdf4c;
  font-size: 30px;
  font-weight: 700;
  border-radius: 60px;
  display: inline-block;
  width: 70%;
  padding: 28px 0;
  -webkit-box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.6);
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
@media screen and (max-width: 620px) {
  .ticket-btn a {
    font-size: clamp(19px, 5.066vw, 30px);
    border-radius: 40px;
    width: 76%;
    padding: 5% 0;
  }
}
.ticket-btn a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 620px) {
  .ticket-btn a:hover {
    opacity: 1;
  }
}
.ticket-btn a span {
  position: relative;
  display: inline-block;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}
@media screen and (max-width: 620px) {
  .ticket-btn a span {
    -webkit-transform: translateX(16%);
            transform: translateX(16%);
  }
}
.ticket-btn a span::before {
  content: "";
  background: url(../images/ico_ticket.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: -72px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 64px;
  height: 64px;
}
@media screen and (max-width: 620px) {
  .ticket-btn a span::before {
    left: -38%;
    width: 34%;
    height: 253%;
  }
}

.list-btn a {
  color: #3b0606;
  background: #ffdf4c;
  font-size: 30px;
  font-weight: 700;
  border-radius: 60px;
  display: inline-block;
  width: 68.5%;
  padding: 28px 0;
  -webkit-box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.6);
          box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.6);
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
@media screen and (max-width: 620px) {
  .list-btn a {
    font-size: clamp(19px, 5.066vw, 30px);
    border-radius: 40px;
    padding: 5% 0;
  }
}
.list-btn a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 620px) {
  .list-btn a:hover {
    opacity: 1;
  }
}
.list-btn a span {
  position: relative;
  display: inline-block;
}

.swiper {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.swiper .swiper-slide img {
  border-radius: 40px;
}
@media screen and (max-width: 620px) {
  .swiper .swiper-slide img {
    border-radius: 20px;
  }
}
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  top: 50%;
  -webkit-transform: translateY(-15%);
          transform: translateY(-15%);
  width: 80px;
  height: 88px;
}
@media screen and (max-width: 620px) {
  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
    width: 13.5%;
    height: 36%;
  }
}
.swiper .swiper-button-prev {
  left: 30px;
}
@media screen and (max-width: 620px) {
  .swiper .swiper-button-prev {
    left: 3%;
  }
}
.swiper .swiper-button-next {
  right: 30px;
}
@media screen and (max-width: 620px) {
  .swiper .swiper-button-next {
    right: 3%;
  }
}
.swiper .swiper-button-prev:after,
.swiper .swiper-button-next:after {
  content: "";
  background: url(../images/ico_swiper_btn.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 100%;
}
.swiper .swiper-button-prev:after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.swiper .swiper-button-next:after {
  -webkit-transform: scale(-1, 1) translateY(-50%);
          transform: scale(-1, 1) translateY(-50%);
}

.top-logo {
  position: fixed;
  top: 4.5%;
  left: 2.75%;
  max-width: 400px;
  width: 21%;
}
@media screen and (max-width: 1280px) {
  .top-logo {
    display: none;
  }
}
.top-logo a {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.top-logo a:hover {
  opacity: 0.8;
}

.content {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  -webkit-box-shadow: 0px 10px 5px 10px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 10px 5px 10px rgba(0, 0, 0, 0.2509803922);
  z-index: 1;
}
@media screen and (max-width: 620px) {
  .content {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.content__info {
  position: relative;
  overflow: hidden;
  background: #5E0000;
  text-align: center;
  padding: 116px 28px 72px;
  z-index: 0;
}
@media screen and (max-width: 620px) {
  .content__info {
    padding: 19% 5% 12%;
  }
}
.content__info::before {
  content: "";
  background: url(../images/info_bg.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 78px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 780px;
  height: 500px;
  z-index: -1;
}
@media screen and (max-width: 620px) {
  .content__info::before {
    top: 25%;
    width: 100%;
    height: 80%;
    -webkit-transform: scale(1.45) translateX(-34.5%);
            transform: scale(1.45) translateX(-34.5%);
  }
}
.content__info__head {
  color: #fff;
  font-size: 32px;
}
@media screen and (max-width: 620px) {
  .content__info__head {
    font-size: clamp(20px, 5.333vw, 32px);
  }
}
.content__info__tit {
  color: #EBD462;
  font-size: 34px;
  font-weight: 700;
  line-height: 2;
  margin-top: 16px;
}
@media screen and (max-width: 620px) {
  .content__info__tit {
    font-size: clamp(20px, 5.333vw, 34px);
    margin-top: 7%;
  }
}
.content__info__tit .sm {
  font-size: 24px;
}
@media screen and (max-width: 620px) {
  .content__info__tit .sm {
    font-size: clamp(16px, 4.266vw, 24px);
  }
}
.content__info__held {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  line-height: 2;
  margin-top: 12px;
}
@media screen and (max-width: 620px) {
  .content__info__held {
    font-size: clamp(18px, 4.8vw, 28px);
    margin-top: 7%;
  }
}
.content__info .ticket-btn {
  margin: 20px auto 0;
}
@media screen and (max-width: 620px) {
  .content__info .ticket-btn {
    margin: 6% auto 0;
  }
}
.content__info__youtube {
  margin-top: 64px;
}
@media screen and (max-width: 620px) {
  .content__info__youtube {
    margin-top: 12%;
  }
}
.content__info__youtube iframe {
  border-radius: 20px;
  aspect-ratio: 335/188;
  width: 100%;
  height: 100%;
}
.content__border {
  background: #E1C027;
  border-top: 2px solid #23191A;
  border-bottom: 2px solid #23191A;
  height: 12px;
}
@media screen and (max-width: 620px) {
  .content__border {
    height: 10px;
  }
}
.content__highlight {
  background: #ba3529;
  text-align: center;
  padding: 80px 0;
}
@media screen and (max-width: 620px) {
  .content__highlight {
    padding: 13.5% 0;
  }
}
.content__highlight__head {
  color: #ebd462;
  font-size: 40px;
  font-weight: 900;
}
@media screen and (max-width: 620px) {
  .content__highlight__head {
    font-size: clamp(24px, 6.4vw, 40px);
  }
}
.content__highlight__head span {
  position: relative;
  display: inline-block;
}
.content__highlight__head span::before, .content__highlight__head span::after {
  content: "";
  background: url(../images/ico_oshiri_yellow.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 56px;
  height: 36px;
}
@media screen and (max-width: 620px) {
  .content__highlight__head span::before, .content__highlight__head span::after {
    width: 34%;
    height: 112%;
  }
}
.content__highlight__head span::before {
  left: -72px;
}
@media screen and (max-width: 620px) {
  .content__highlight__head span::before {
    left: -42%;
  }
}
.content__highlight__head span::after {
  right: -72px;
}
@media screen and (max-width: 620px) {
  .content__highlight__head span::after {
    right: -42%;
  }
}
.content__highlight__tit {
  color: #eeef92;
  font-size: 48px;
  font-weight: 900;
  margin-top: 28px;
}
@media screen and (max-width: 620px) {
  .content__highlight__tit {
    font-size: clamp(28px, 6.4vw, 48px);
    margin-top: 5%;
  }
}
.content__highlight__txt {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 32px;
}
@media screen and (max-width: 620px) {
  .content__highlight__txt {
    font-size: clamp(17px, 4.533vw, 36px);
    margin-top: 5%;
  }
}
.content__highlight .swiper {
  margin-top: 36px;
}
@media screen and (max-width: 620px) {
  .content__highlight .swiper {
    margin-top: 5%;
  }
}
.content__ticket-wrap {
  background: #720000;
  text-align: center;
  padding: 28px 0;
}
@media screen and (max-width: 620px) {
  .content__ticket-wrap {
    padding: 16px 0;
  }
}
.content__ticket-wrap .ticket-btn a {
  width: 63.5%;
}
@media screen and (max-width: 620px) {
  .content__ticket-wrap .ticket-btn a {
    border-radius: 60px;
    width: 68.25%;
    margin: 0 auto;
  }
}
.content__yellow-bg {
  color: #3b0606;
  background: #f9f3d0;
  text-align: center;
  padding: 80px 0;
}
@media screen and (max-width: 620px) {
  .content__yellow-bg {
    padding: 13.5% 0;
  }
}
.content__yellow-bg__tit {
  color: #ba3529;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.5;
}
@media screen and (max-width: 620px) {
  .content__yellow-bg__tit {
    font-size: clamp(24px, 6.4vw, 48px);
  }
}
.content__yellow-bg__tit span {
  position: relative;
  display: inline-block;
}
.content__yellow-bg__tit span::before, .content__yellow-bg__tit span::after {
  content: "";
  background: url(../images/ico_oshiri_red.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 56px;
  height: 36px;
}
.content__yellow-bg__tit span::before {
  left: -72px;
}
.content__yellow-bg__tit span::after {
  right: -72px;
}
@media screen and (max-width: 620px) {
  .content__yellow-bg__tit--workshop span::before, .content__yellow-bg__tit--workshop span::after {
    width: 21%;
    height: 37%;
  }
}
@media screen and (max-width: 620px) {
  .content__yellow-bg__tit--workshop span::before {
    left: -26%;
  }
}
@media screen and (max-width: 620px) {
  .content__yellow-bg__tit--workshop span::after {
    right: -26%;
  }
}
@media screen and (max-width: 620px) {
  .content__yellow-bg__tit--greeting span::before, .content__yellow-bg__tit--greeting span::after {
    width: 17%;
    height: 37%;
  }
}
@media screen and (max-width: 620px) {
  .content__yellow-bg__tit--greeting span::before {
    left: -20%;
  }
}
@media screen and (max-width: 620px) {
  .content__yellow-bg__tit--greeting span::after {
    right: -20%;
  }
}
@media screen and (max-width: 620px) {
  .content__yellow-bg__tit--goods span::before, .content__yellow-bg__tit--goods span::after {
    width: 15%;
    height: 72%;
  }
}
@media screen and (max-width: 620px) {
  .content__yellow-bg__tit--goods span::before {
    left: -19%;
  }
}
@media screen and (max-width: 620px) {
  .content__yellow-bg__tit--goods span::after {
    right: -17%;
  }
}
.content__yellow-bg__txt {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 24px;
}
@media screen and (max-width: 620px) {
  .content__yellow-bg__txt {
    font-size: clamp(17px, 4.533vw, 28px);
    margin-top: 4%;
  }
}
.content__yellow-bg__note {
  font-size: 21px;
  font-weight: 500;
  margin-top: 32px;
}
@media screen and (max-width: 620px) {
  .content__yellow-bg__note {
    font-size: clamp(13px, 3.466vw, 21px);
    margin-top: 3%;
  }
}
.content__yellow-bg__note-list{
  margin-top: 36px;
  padding: 0 24px;
}
@media screen and (max-width: 620px) {
  .content__yellow-bg__note-list{
    padding: 0 3.25% 0;
  }
}
.content__yellow-bg__note-list-item{
  color: #3b0606;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 620px) {
  .content__yellow-bg__note-list-item{
    font-size: clamp(12px, 3.2vw, 18px);
  }
}



.content__yellow-bg__note-list2{
  margin: 10px 0 20px;
  padding: 0 24px;
}
@media screen and (max-width: 620px) {
  .content__yellow-bg__note-list2{
    padding: 0 3.25% 0;
  }
}
.content__yellow-bg__note-list-item2{
  color: #3b0606;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 620px) {
  .content__yellow-bg__note-list-item2{
    font-size: clamp(12px, 3.2vw, 18px);
  }
}



.yellow-bg .swiper {
  margin-top: 40px;
}
@media screen and (max-width: 620px) {
  .content__yellow-bg .swiper {
    margin-top: 5.5%;
  }
}
.content__yellow-bg__img {
  width: 76%;
  margin: 28px auto 0;
}
@media screen and (max-width: 620px) {
  .content__yellow-bg__img {
    margin: 5% auto 0;
  }
}
.content__yellow-bg__img img {
  border-radius: 32px;
}
@media screen and (max-width: 620px) {
  .content__yellow-bg__img img {
    border-radius: 20px;
  }
}
.content__yellow-bg__schedule {
    border: 2px solid #3b0606;
    width: 90%;
    padding: 28px 20px 24px;
    margin: 30px auto 0;
    text-align: left;
    font-size: 1.5rem;
    line-height: 2rem;
    position:relative;
}
.content__yellow-bg__schedule p.ticket {
    position: absolute;
    top: -12%;
    width: 22%;
    right: -2%;
    transform: rotate(15deg);
}
@media screen and (max-width: 620px) {
		p.ticket {
		    position: absolute;
		    top: -6%;
		    width: 26%;
		    right: -7%;
		    transform: rotate(15deg);
		}
  }
@media screen and (max-width: 620px) {
  .content__yellow-bg__schedule {
    border: 1px solid #3b0606;
    width: 82%;
    padding: 5% 3% 4%;
    margin: 5% auto 0;
    font-size: 3.888888vw;
    position:relative;
  }
  .content__yellow-bg__schedule span{
    display: none;
  }
}
.content__yellow-bg__schedule .tit {
  font-size: 28px;
  font-weight: 500;
}
@media screen and (max-width: 620px) {
  .content__yellow-bg__schedule .tit {
    font-size: clamp(17px, 4.533vw, 28px);
  }
}
.content__yellow-bg__schedule .time {
  color: #ba3529;
  font-size: 32px;
  font-weight: 900;
  margin-top: 12px;
}
@media screen and (max-width: 620px) {
  .content__yellow-bg__schedule .time {
    font-size: clamp(20px, 5.333vw, 32px);
    margin-top: 3%;
  }
}



.content__yellow-bg .list-btn {
  margin: 32px auto 0;
}
@media screen and (max-width: 620px) {
  .content__yellow-bg .list-btn {
    margin: 5.5% auto 0;
  }
}
.content__ticket-detail {
  background-color: #ffdf4c;
  background-image: url(../images/ico_ticket-bg.svg);
  background-repeat: repeat;
  background-position: top left;
  background-size: 130px 130px;
  text-align: center;
  padding: 80px 24px;
}
@media screen and (max-width: 620px) {
  .content__ticket-detail {
    background-size: 80px 80px;
    padding: 13% 3.25% 16%;
  }
}
.content__ticket-detail__tit {
  color: #BA3529;
  font-size: 40px;
  font-weight: 900;
}
@media screen and (max-width: 620px) {
  .content__ticket-detail__tit {
    font-size: clamp(24px, 6.4vw, 40px);
  }
}
.content__ticket-detail__tit span {
  position: relative;
  display: inline-block;
}
.content__ticket-detail__tit span::before, .content__ticket-detail__tit span::after {
  content: "";
  background: url(../images/ico_oshiri_red.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 56px;
  height: 36px;
}
@media screen and (max-width: 620px) {
  .content__ticket-detail__tit span::before, .content__ticket-detail__tit span::after {
    width: 21%;
    height: 109%;
  }
}
.content__ticket-detail__tit span::before {
  left: -72px;
}
@media screen and (max-width: 620px) {
  .content__ticket-detail__tit span::before {
    left: -26%;
  }
}
.content__ticket-detail__tit span::after {
  right: -72px;
}
@media screen and (max-width: 620px) {
  .content__ticket-detail__tit span::after {
    right: -26%;
  }
}
.content__ticket-detail__head {
  color: #3b0606;
  font-size: 28px;
  font-weight: 500;
  border: 2px solid #3b0606;
  text-align: center;
  width: 58%;
  padding: 14px 0;
  margin: 40px auto 0;
}
@media screen and (max-width: 620px) {
  .content__ticket-detail__head {
    font-size: clamp(17px, 4.533vw, 28px);
    border: 1px solid #3b0606;
    padding: 2.5% 0;
    margin: 8% auto 0;
  }
}
.content__ticket-detail__adult-child, .content__ticket-detail__family {
  color: #3b0606;
  font-size: 28px;
  font-weight: 500;
  margin-top: 24px;
}
@media screen and (max-width: 620px) {
  .content__ticket-detail__adult-child, .content__ticket-detail__family {
    font-size: clamp(17px, 4.533vw, 28px);
    margin-top: 4%;
  }
}
.content__ticket-detail__adult-child .note, .content__ticket-detail__family .note {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 620px) {
  .content__ticket-detail__adult-child .note, .content__ticket-detail__family .note {
    font-size: clamp(13px, 3.466vw, 20px);
  }
}
.content__ticket-detail .red {
  color: #BA3529;
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 620px) {
  .content__ticket-detail .red {
    font-size: clamp(20px, 5.333vw, 32px);
  }
}
.content__ticket-detail__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.25rem 1.875rem;
  margin-top: 56px;
}
@media screen and (max-width: 620px) {
  .content__ticket-detail__list {
    gap: 14px;
    margin-top: 16%;
  }
}
.content__ticket-detail__list-item {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 620px) {
  .content__ticket-detail__list-item {
    width: 84%;
  }
}
.content__ticket-detail__list-item a {
  background: #fff;
  text-align: center;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 80px;
  margin: 0 auto;
  -webkit-box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.3);
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
@media screen and (max-width: 620px) {
  .content__ticket-detail__list-item a {
    height: 60px;
  }
}
.content__ticket-detail__list-item a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 620px) {
  .content__ticket-detail__list-item a:hover {
    opacity: 1;
  }
}
.content__ticket-detail__list-item .code {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  margin: 12px 0 8px;
}
@media screen and (max-width: 620px) {
  .content__ticket-detail__list-item .code {
    font-size: 16px;
    margin: 8px 0 4px;
  }
}
.content__ticket-detail__note-list {
  margin-top: 36px;
}
@media screen and (max-width: 620px) {
  .content__ticket-detail__note-list {
    margin-top: 6%;
  }
}
.content__ticket-detail__note-list-item {
  color: #3b0606;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 620px) {
  .content__ticket-detail__note-list-item {
    font-size: clamp(12px, 3.2vw, 18px);
  }
}
.content__ticket-detail__img {
  width: 90%;
  margin: 52px auto 0;
}
@media screen and (max-width: 620px) {
  .content__ticket-detail__img {
    width: 85%;
    margin: 12% auto 0;
  }
}
.content__support {
  background: #5e0000;
  padding: 64px 48px;
}
@media screen and (max-width: 620px) {
  .content__support {
    padding: 12.5% 10%;
  }
}
.content__support__img + .content__support__img {
  margin-top: 28px;
}
@media screen and (max-width: 620px) {
  .content__support__img + .content__support__img {
    margin-top: 7%;
  }
}
.content__sns {
  background: #fff;
  padding: 50px 20px;
}
@media screen and (max-width: 620px) {
  .content__sns {
    padding: 13.5% 5.5%;
  }
}
.content__sns__bnr a {
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.content__sns__bnr a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 620px) {
  .content__sns__bnr a:hover {
    opacity: 1;
  }
}
.content__sns__hash-tag {
  color: #5E4338;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  margin-top: 20px;
}
@media screen and (max-width: 620px) {
  .content__sns__hash-tag {
    font-size: clamp(16px, 4.266vw, 24px);
    gap: 16px;
    margin-top: 4%;
  }
}
.content__outline {
  background: #5e0000;
  padding: 80px 22px 40px;
}
@media screen and (max-width: 620px) {
  .content__outline {
    padding: 13.5% 4% 7%;
  }
}
.content__outline__tit {
  color: #fff;
  font-size: 40px;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 620px) {
  .content__outline__tit {
    font-size: clamp(24px, 6.4vw, 40px);
  }
}
.content__outline__tit span {
  position: relative;
  display: inline-block;
}
.content__outline__tit span::before, .content__outline__tit span::after {
  content: "";
  background: url(../images/ico_oshiri_white.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 56px;
  height: 36px;
}
@media screen and (max-width: 620px) {
  .content__outline__tit span::before, .content__outline__tit span::after {
    width: 42%;
    height: 109%;
  }
}
.content__outline__tit span::before {
  left: -72px;
}
@media screen and (max-width: 620px) {
  .content__outline__tit span::before {
    left: -56%;
  }
}
.content__outline__tit span::after {
  right: -72px;
}
@media screen and (max-width: 620px) {
  .content__outline__tit span::after {
    right: -56%;
  }
}
.content__outline__detail {
  color: #3B0606;
  background: #fff;
  border-radius: 28px;
  padding: 48px 20px;
  margin-top: 44px;
}
@media screen and (max-width: 620px) {
  .content__outline__detail {
    border-radius: 20px;
    padding: 11.5% 4%;
    margin-top: 8%;
  }
}
.content__outline__detail dl:not(:first-child) {
  margin-top: 24px;
}
@media screen and (max-width: 620px) {
  .content__outline__detail dl:not(:first-child) {
    margin-top: 5%;
  }
}
.content__outline__detail dt {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 620px) {
  .content__outline__detail dt {
    font-size: clamp(15px, 4vw, 24px);
    line-height: 1.46;
  }
}
.content__outline__detail dt a {
  text-decoration: underline;
}
.content__outline__detail dd {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  padding-left: 1.05em;
}
@media screen and (max-width: 620px) {
  .content__outline__detail dd {
    font-size: clamp(15px, 4vw, 24px);
    line-height: 1.46;
  }
}
.content__outline__detail dd.sub {
  font-size: 18px;
  padding-left: 1.4em;
}
@media screen and (max-width: 620px) {
  .content__outline__detail dd.sub {
    font-size: clamp(11px, 2.933vw, 18px);
  }
}
.content__outline__detail dd.logo {
  padding-left: 0;
  margin-top: 16px;
}
@media screen and (max-width: 620px) {
  .content__outline__detail dd.logo {
    margin-top: 3%;
  }
}
.content__precautions {
  background: #5e0000;
  padding: 40px 24px 60px;
}
@media screen and (max-width: 620px) {
  .content__precautions {
    padding: 7% 4% 5.5%;
  }
}
.content__precautions__tit {
  color: #fff;
  font-size: 40px;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 620px) {
  .content__precautions__tit {
    font-size: clamp(24px, 6.4vw, 40px);
  }
}
.content__precautions__tit span {
  position: relative;
  display: inline-block;
}
.content__precautions__tit span::before, .content__precautions__tit span::after {
  content: "";
  background: url(../images/ico_oshiri_white.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 56px;
  height: 36px;
}
@media screen and (max-width: 620px) {
  .content__precautions__tit span::before, .content__precautions__tit span::after {
    width: 42%;
    height: 109%;
  }
}
.content__precautions__tit span::before {
  left: -72px;
}
@media screen and (max-width: 620px) {
  .content__precautions__tit span::before {
    left: -56%;
  }
}
.content__precautions__tit span::after {
  right: -72px;
}
@media screen and (max-width: 620px) {
  .content__precautions__tit span::after {
    right: -56%;
  }
}
.content__precautions__detail {
  color: #3B0606;
  background: #fff;
  border-radius: 28px;
  padding: 48px 20px;
  margin-top: 44px;
}
@media screen and (max-width: 620px) {
  .content__precautions__detail {
    padding: 11.5% 4%;
    margin-top: 8%;
  }
}
.content__precautions__detail dl:not(:first-child) {
  margin-top: 20px;
}
@media screen and (max-width: 620px) {
  .content__precautions__detail dl:not(:first-child) {
    margin-top: 5%;
  }
}
.content__precautions__detail dt {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 620px) {
  .content__precautions__detail dt {
    font-size: clamp(15px, 4vw, 24px);
    line-height: 1.46;
  }
}
.content__precautions__detail dd {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  padding-left: 1.05em;
}
@media screen and (max-width: 620px) {
  .content__precautions__detail dd {
    font-size: clamp(15px, 4vw, 24px);
    line-height: 1.46;
  }
}
.content__precautions__detail dd a {
  text-decoration: underline;
}
.content__precautions__note-list {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 24px;
}
@media screen and (max-width: 620px) {
  .content__precautions__note-list {
    font-size: clamp(11px, 2.933vw, 16px);
    margin-top: 5%;
  }
}
.content__precautions__note-list li {
  text-indent: -1em;
  padding-left: 1em;
}
.content__bnr {
  background: #5E0000;
  padding: 20px 56px 44px;
}
@media screen and (max-width: 620px) {
  .content__bnr {
    padding: 5.5% 8.5% 11.5%;
  }
}
.content__bnr__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: 28px;
}
@media screen and (max-width: 620px) {
  .content__bnr__list {
    gap: 20px;
  }
}
.content__bnr__list li a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.content__bnr__list li a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 620px) {
  .content__bnr__list li a:hover {
    opacity: 1;
  }
}
.content__footer {
  background: #fff;
  text-align: center;
  padding: 18px 0;
}
@media screen and (max-width: 620px) {
  .content__footer {
    padding: 4% 0 3%;
  }
}
.content__footer__copyright {
  color: #5E4338;
  font-size: 16px;
}
@media screen and (max-width: 620px) {
  .content__footer__copyright {
    font-size: clamp(11px, 2.933vw, 16px);
  }
}

.copyright {
  color: #fff;
  font-size: 12px;
  position: fixed;
  bottom: 40px;
  left: 50px;
}
@media screen and (max-width: 1280px) {
  .copyright {
    display: none;
  }
}
.iframe-wrap{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.iframe-wrap iframe{
  border-radius: 20px;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.movie{
  text-align: center;
  padding: 80px 24px;
  background-color: #fff;
}
.movie .content__ticket-detail__tit{
  margin-bottom: 24px;
}

.swiper.workshop{
  margin: 32px 0;
}
.swiper.workshop .swiper-slide p{
  margin: 20px 20px 0;
  text-align: left;
  line-height: 1.2;
}
.content__greeting {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.content__greeting__txt{
  text-align: left;
}
.content__greeting__time{
  font-size: 28px;
  text-align: left;
  margin: 5% 5px 5% 0;
  line-height: 1.5;
}
.content__greeting__list{
  font-size: 18px;
  text-align: left;
  margin: 5% 5px 5% 0;
  line-height: 1.5;
}
@media screen and (max-width: 620px) {
  .content__greeting__time{
    font-size: clamp(17px, 4.533vw, 36px);
  }
  .content__greeting__list{
    font-size: clamp(12px, 3.2vw, 18px);
  }
}
.greeting-ph{border-radius:20px;width:55%;margin:0 auto;}
.greeting-text{padding:0 20px;font-size: 1.55rem;padding: 0 10px;}
.greeting-time-text{padding:0 40px;text-align:left;}