/*---------------------------------------------

	追従ボタン

---------------------------------------------*/
.button-ticket {
  width: 17.8vw;
  max-width: 228px;
  position: fixed;
  z-index: 2;
  right: 3%;
  bottom: 7%;
  transition: 0.2s;
}

@media screen and (max-width: 600px) {
  .button-ticket {
    width: 32.4vw;
    bottom: 20dvh;
    right: 3%;
  }
}

@media screen and (max-width: 540px) and (max-height: 700px) {
  .button-ticket {
    width: 37vw;
    bottom: 1dvh;
  }
}

.button-ticket.small {
  width: 16vw;
  max-width: 218px;
}

@media screen and (max-width: 600px) {
  .button-ticket.small {
    width: 30vw;
    bottom: 3%;
  }
}

.button-ticket img {
  width: 100%;
}


/* ---------------------- 告知 ---------------------- */

.announcementBanner {
  /* position: fixed; */
  /* top: calc(var(--secGrobalmenu-height, 60px)); */
  top: 10.7%;
  left: 0;
  display: flex;
  width: 100%;
  padding: 1.1875rem 0rem 1.125rem 0rem;
  justify-content: center;
  align-items: center;
  background-color: #000;
  z-index: 20;
  transition: 0.3s;
}

@media screen and (max-width: 600px) {
  .announcementBanner {
    top: 7.8%;
    padding: 1.35rem 0rem 1.3rem 0rem;
  }
}

.announcementBanner__text {
  position: relative;
  color: #FFF;
  font-family: "Zen Kaku Gothic New";
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: normal;
}

@media screen and (max-width: 540px) {
  .announcementBanner__text {
    font-size: 1.14rem;
  }
}

.announcementBanner__text::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-image: url(../img/icon-arrow-white.svg);
  width: 0.9rem;
  height: 0.9rem;
  background-size: cover;
}

/*---------------------------------------------

	ヘッダー

---------------------------------------------*/
header {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
}

.secGrobalmenu {
  /* position: fixed; */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;

  display: flex;
  justify-content: space-around;
  padding: 1rem 0;
  background: var(--main1);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 600px) {
  .secGrobalmenu {
    padding: 0.75rem 0;
  }
}

.secGrobalmenu__inner {
  max-width: 1140px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 4rem;
  max-width: 1140px;
}

@media screen and (max-width: 1170px) {
  .secGrobalmenu__inner {
    width: 100%;
    padding: 0 2rem;
  }
}

.secGrobalmenuLogo {
  display: block;
  width: 5.875rem;
  max-width: 94px;
}

@media screen and (max-width: 600px) {
  .secGrobalmenuLogo {
    width: 5.575rem;
  }
}

.secGrobalmenuLogo img {
  width: 100%;
}

.secGrobalmenu__left {}

.secGrobalmenu__right {
  display: flex;
  column-gap: 1.5rem;
}

@media screen and (max-width: 1170px) {
  .secGrobalmenu__right {
    display: none;
  }
}

.secGrobalmenu__right02 {
  display: none;
}

@media screen and (max-width: 1170px) {
  .secGrobalmenu__right02 {
    display: block;
  }
}

.secGrobalmenuItem {
  position: relative;
  color: var(--main2);
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.055rem;
}

.secGrobalmenuItem:hover {
  opacity: 1;
}

.secGrobalmenuItem::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--main2);
  transition: 0.3s;
}

.secGrobalmenuItem:hover::before {
  left: 0;
  width: 100%;
}

/*  */
/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: relative;
  z-index: 10;
  right: 0;
  top: 0;
  width: 40px;
  height: 32px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 4.5px;
  background-image: url(../img/hamburger.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

.hamburger.active span:nth-child(1) {
  top: 14px;
  -webkit-transform: rotate(-40deg);
  -moz-transform: rotate(-40deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 14px;
  -webkit-transform: rotate(40deg);
  -moz-transform: rotate(40deg);
  transform: rotate(45deg);
}

nav.globalNavOpenBlock {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  color: #fff;
  background-color: var(--main1);
  text-align: center;
  width: 100%;
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  height: 100vh;
}

nav.globalNavOpenBlock.active {
  display: block;
  opacity: 10;
}

.globalNavOpenBlockInner {
  display: flex;
  justify-content: center;
  height: 100%;
  margin: 0 auto;
  margin-top: 10rem;
}

.headerAreaNav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2.5rem;
}

.headerAreaNav__link {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--main2);
}

.headerAreaNav__link:hover {
  opacity: 1;
}

.headerAreaNav__link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--main2);
  transition: 0.3s;
}

.headerAreaNav__link:hover::before {
  left: 0;
  width: 100%;
}

/*---------------------------------------------

	ファーストビュー

---------------------------------------------*/

.secFv {
  position: relative;
  background-image: url(../img/bg-mv.png?20240806);
  background-color: #690f0d;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  aspect-ratio: 1280 / 760;
  /* margin-top: 9rem; */
  margin-top: 130px;
  /* 仮の高さ */
  transition: margin-top 0.2s ease;
}

@media screen and (max-width: 600px) {
  .secFv {
    height: 74vh;
    background-size: cover;
    aspect-ratio: 0;
    background-image: url(../img/bg-mv-sp.png?20240806);
    margin-top: 120px;
  }
}

.secFvContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 3.3rem;
  height: 100%;
  padding: 4.5rem 0 8.8rem 0;
}

.secFvContent__title {
  width: 50vw;
}

@media screen and (max-width: 600px) {
  .secFvContent__title {
    width: 88vw;
  }
}

.secFvContent__title img {
  width: 100%;
}

.secFvContent__dayBg {
  position: relative;
  width: 100%;
  padding: 0.7rem;
  text-align: center;
}

.secFvContent__dayBg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #000 0%, #08040c 4%, #21122f 16%, #341c4a 28%, #42245d 41%, #4a2869 53%, #4d2a6d 67%);
  opacity: 0.66;
  z-index: 0;
  /* 画像の後ろに配置 */
}

.secFvContent__day {
  position: relative;
  width: 35vw;
  z-index: 1;
}

@media screen and (max-width: 600px) {
  .secFvContent__day {
    width: 75vw;
  }
}

/*---------------------------------------------

	ニュース

---------------------------------------------*/
.secNews {
  padding: 4rem 0;
  background: url(../img/bg-orange.png?20240806) lightgray 50%;
  background-size: 400px 400px;
  mix-blend-mode: multiply;
}

@media screen and (max-width: 600px) {
  .secNews {
    padding: 3.1rem 0;
  }
}

/* ---------------------- タイトル ---------------------- */

/* ---------------------- ニュースリスト ---------------------- */
.secNewsListItems {
  display: flex;
  flex-direction: column;
}

.secNewsListItem {
  display: flex;
  border-bottom: solid 2px var(--main2);
  padding: 0.8rem 0.5rem;
  column-gap: 1.4rem;
}

@media screen and (max-width: 600px) {
  .secNewsListItem {
    flex-direction: column;
    padding: 0.5rem 0.5rem;
    border-bottom: solid 1.5px var(--main2);
  }
}

.secNewsListItem:first-child {
  border-top: solid 2px var(--main2);
}

@media screen and (max-width: 600px) {
  .secNewsListItem:first-child {
    border-top: solid 1.5px var(--main2);
  }
}

.secNewsListItem__day {
  color: var(--main2);
  font-family: "Zen Kaku Gothic New";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.045rem;
}

@media screen and (max-width: 600px) {
  .secNewsListItem__day {
    font-size: 1rem;
  }
}

.secNewsListItem__textArea {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.secNewsListItem__text {
  width: 90%;
  color: var(--main2);
  font-family: "Zen Kaku Gothic New";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.75rem;
  /* 155.556% */
  letter-spacing: -0.045rem;
}

@media screen and (max-width: 600px) {
  .secNewsListItem__text {
    font-size: 1rem;
    width: 91%;
  }
}

.secNewsListItem__icon {
  width: 1.5rem;
}

@media screen and (max-width: 600px) {
  .secNewsListItem__icon {
    width: 1.4rem;
    padding-bottom: 1.5rem;
  }
}

/*---------------------------------------------

	アバウト

---------------------------------------------*/

.secAbout {
  position: relative;
  padding: 7rem 0 9rem 0;
  background-image: url(../img/bg-beige.png);
  background-position: top center;
  background-repeat: repeat;
  background-size: 500px 500px;
  overflow: hidden;
}

@media screen and (max-width: 600px) {
  .secAbout {
    padding: 7.6rem 0 9rem 0;
  }
}

.secAboutInner {
  position: relative;
  background-image: url(../img/bg-about.png?20240731);
  filter: drop-shadow(5px 4px 10px rgba(125, 62, 16, 0.45));
  background-position: top center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

@media screen and (max-width: 600px) {
  .secAboutInner {
    position: relative;
    background-image: url(../img/bg-about-sp.png?20240731);
    filter: drop-shadow(5px 4px 20px rgba(125, 62, 16, 0.45));
    background-position: top center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
}

.secAbout__decoInner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.secAbout__deco {
  position: absolute;
  z-index: 0;
}

.secAbout__deco img {
  width: 100%;
}

.secAbout__deco--right {
  width: 38vw;
  max-width: 25.81663rem;
  right: -2%;
  bottom: -9%;
}

@media screen and (max-width: 600px) {
  .secAbout__deco--right {
    width: 63vw;
    max-width: 20rem;
    right: -10%;
    bottom: -10%;
  }
}

.secAbout__deco--left {
  width: 32vw;
  max-width: 24.05888rem;
  left: -4%;
  top: -5%;
}

@media screen and (max-width: 600px) {
  .secAbout__deco--left {
    width: 71vw;
    max-width: 20rem;
    left: -22%;
    top: -8%;
  }
}

.secAboutTextArea {
  position: relative;
  width: 80%;
  margin: 0 auto;
  padding: 6.7rem 0 8rem 0;
  z-index: 1;
}

@media screen and (max-width: 600px) {
  .secAboutTextArea {
    padding: 2rem 0 3rem 0;
  }
}

.secAboutInner::before {
  position: absolute;
  content: "";
  background-image: url(../img/top.png?20240731);
  background-size: contain;
  background-repeat: no-repeat;
  width: 54px;
  height: 160px;
  top: 0;
  left: 99.9%;
}

@media screen and (max-width: 600px) {
  .secAboutInner::before {
    background-image: url(../img/top-sp.png?20240731);
    background-size: contain;
    width: 23px;
    height: 65px;
    top: 0;
  }
}

.secAboutInner::after {
  position: absolute;
  content: "";
  background-image: url(../img/bottom.png?20240731);
  background-size: contain;
  background-repeat: no-repeat;
  width: 54px;
  height: 160px;
  bottom: 0%;
  right: 100%;
}

@media screen and (max-width: 600px) {
  .secAboutInner::after {
    background-image: url(../img/bottom-sp.png?20240731);
    background-size: contain;
    width: 23px;
    height: 65px;
    bottom: 0;
  }
}

.bg-about-top img,
.bg-about-bottom img {
  width: 100%;
}

.bg-about-top {
  position: absolute;
  left: 0;
}

.secAboutSubTitle {
  margin-bottom: 1.7rem;
  color: var(--main1);
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 900;
  line-height: 2.875rem;
  /* 153.333% */
  letter-spacing: -0.075rem;
}

@media screen and (max-width: 600px) {
  .secAboutSubTitle {
    margin-bottom: 1.4rem;
    font-size: 1.3rem;
    line-height: 1.6375rem;
    letter-spacing: -0.045rem;
  }
}

.secAbout__text {
  color: var(--main2);
  font-family: "Zen Kaku Gothic New";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.125rem;
  /* 170% */
  letter-spacing: -0.05rem;
}

@media screen and (max-width: 600px) {
  .secAbout__text {
    font-size: 1rem;
    line-height: 1.8rem;
  }
}

/*---------------------------------------------

	キャスト

---------------------------------------------*/
.secCast {
  position: relative;
  padding: 6rem 0 7rem 0;
  background-image: url(../img/bg-cast.png?20240723);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  /* aspect-ratio: 1323 / 1021; */
}

@media screen and (max-width: 600px) {
  .secCast {
    padding: 4rem 0;
    background-image: url(../img/bg-cast-sp.png);
  }
}

.secCastStaffList {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 860px) {
  .secCastStaffList {
    flex-direction: column;
    width: 70%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 600px) {
  .secCastStaffList {
    width: 100%;
  }
}

.secCastStaffList ul:first-child {
  padding-right: 5%;
  border-right: 2px solid var(--main1);
}

.secCastStaffList ul:nth-child(2) {
  padding-left: 5%;
}

@media screen and (max-width: 860px) {
  .secCastStaffList ul:first-child {
    padding-right: 0;
    padding-bottom: 5%;
    border-right: none;
    border-bottom: 2px solid var(--main1);
  }

  .secCastStaffList ul:nth-child(2) {
    padding-left: 0;
    padding-top: 5%;
  }
}

@media screen and (max-width: 600px) {
  .secCastStaffList ul:first-child {
    padding-right: 0;
    padding-bottom: 11%;
  }

  .secCastStaffList ul:nth-child(2) {
    padding-left: 0;
    padding-top: 11%;
  }
}

.secCastStaffList ul {
  width: 50%;
  line-height: 1.5;
}

@media screen and (max-width: 860px) {
  .secCastStaffList ul {
    width: 100%;
  }
}

.secCastStaffList__item {
  display: flex;
  justify-content: space-between;
  /* margin-bottom: 0.4rem; */
}

.secCastStaffList__itemText {
  color: #eb6d00;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.05rem;
}

@media screen and (max-width: 1000px) {
  .secCastStaffList__itemText {
    font-size: 1.1rem;
  }
}

.secCastStaffList__itemTitle {
  margin-bottom: 2rem;
  color: var(--main1);
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.24rem;
}

.secCastStaffList__left,
.secCastStaffList__right {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
  color: var(--main1);
  text-align: right;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.05rem;
}

@media screen and (max-width: 1000px) {

  .secCastStaffList__left,
  .secCastStaffList__right {
    font-size: 1.1rem;
  }
}

.secCastStaffList__right {}

/*---------------------------------------------

	チケット

---------------------------------------------*/
.secTicket {
  position: relative;
  padding: 6rem 0 6rem 0;
  background: #fab42b;
}

@media screen and (max-width: 600px) {
  .secTicket {
    position: relative;
    padding: 3rem 0;
  }
}

.secTicketBgTop {
  position: absolute;
  top: -1%;
  background-image: url(../img/deco-schedule-top.png);
  background-position: top center;
  background-size: 1220px 100%;
  background-repeat: repeat-x;
  width: 100%;
  height: 200px;
}

@media screen and (max-width: 600px) {
  .secTicketBgTop {
    top: -1%;
    background-image: url(../img/deco-schedule-top-sp.png);
    background-position: top center;
    background-size: 370px 100%;
    background-repeat: repeat-x;
    width: 100%;
    height: 30px;
  }
}

.secTicketBgBottom {
  position: absolute;
  bottom: -2%;
  background-image: url(../img/deco-schedule-bottom.png);
  background-position: top center;
  background-size: 1220px 100%;
  background-repeat: repeat-x;
  width: 100%;
  height: 100px;
  z-index: 1;
}

@media screen and (max-width: 600px) {
  .secTicketBgBottom {
    position: absolute;
    bottom: -2%;
    background-image: url(../img/deco-schedule-bottom-sp.png);
    background-position: top center;
    background-size: 370px 100%;
    background-repeat: repeat-x;
    width: 100%;
    height: 35px;
    z-index: 1;
  }
}

.secTicketSchedule {
  display: flex;
  flex-direction: column;
  row-gap: 5rem;
  width: 94%;
  margin: 0 auto 3.8rem auto;
}

@media screen and (max-width: 600px) {
  .secTicketSchedule {
    margin: 0 auto 2rem auto;
    width: 100%;
    row-gap: 3rem;
  }
}

.secTicketSchedule__textArea {
  display: flex;
  flex-direction: column;
  row-gap: 2.2rem;
}

.secTicketSchedule__text {
  color: var(--main2);
  font-family: "Zen Kaku Gothic New";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: normal;
}

@media screen and (max-width: 540px) {
  .secTicketSchedule__textArea {
    row-gap: 2rem;
  }

  .secTicketSchedule__text {
    font-size: 1rem;
    row-gap: 2rem;
  }
}

.secTicketSchedule img {
  width: 100%;
}

.secTicket__decoInner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 1;
  overflow: hidden;
}

.secTicket__deco {
  position: absolute;
  z-index: -1;
}

.secTicket__deco img {
  width: 100%;
}

.secTicket__deco--right {
  width: 18.375rem;
  right: 8%;
  bottom: 12%;
}

@media screen and (max-width: 600px) {
  .secTicket__deco--right {
    width: 25.4%;
    right: -4%;
    bottom: 18%;
  }
}

.secTicket__deco--left {
  width: 11.375rem;
  left: 8%;
  top: 7%;
}

@media screen and (max-width: 600px) {
  .secTicket__deco--left {
    width: 4.375rem;
    left: -1%;
    top: 12%;
  }
}

.purchase-button {
  width: 28.7875rem;
}

@media screen and (max-width: 600px) {
  .purchase-button {
    width: 73%;
  }
}

.purchase-button img {
  width: 100%;
}

/*---------------------------------------------

	チケット

---------------------------------------------*/
.secAccess {
  padding: 7rem 0 7rem 0;
  background-color: #fab42b;
}

@media screen and (max-width: 600px) {
  .secAccess {
    padding: 4.5rem 0 4rem 0;
  }
}

.secAccessTextArea {
  margin-bottom: 2rem;
  color: var(--main2);
  font-family: "Zen Kaku Gothic New";
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2rem;
  letter-spacing: -0.05rem;
}

@media screen and (max-width: 600px) {
  .secAccessTextArea {
    margin-bottom: 2.1rem;
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
}

.secAccessTextArea span {
  display: block;
  color: var(--main2);
  font-family: "Zen Kaku Gothic New";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2rem;
  /* 133.333% */
  letter-spacing: -0.06rem;
}

.secAccessText:first-child {
  padding-left: 1rem;
  margin-bottom: 1.7rem;
  border-left: solid #111111 2px;
}

@media screen and (max-width: 600px) {
  .secAccessText:first-child {
    margin-bottom: 1.15rem;
  }
}

.secAccessMapArea {
  width: 100%;
  height: 21.5rem;
}

@media screen and (max-width: 600px) {
  .secAccessMapArea {
    width: 100%;
    height: 13.5rem;
  }
}

.secAccessMap {
  width: 100%;
  height: 100%;
}

/*---------------------------------------------

	動画

---------------------------------------------*/

.secMovie {
  position: relative;
  padding: 5rem 0 7rem 0;
  background-image: url(../img/bg-movie.png?20240723);
  background-position: top center;
  background-repeat: repeat;
  aspect-ratio: 1280 / 545;
}

@media screen and (max-width: 830px) {
  .secMovie {
    aspect-ratio: 0;
  }
}

.secMovieBoxs {
  width: 60.4%;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  .secMovieBoxs {
    width: 100%;
  }
}

.secMovieBoxs.multiple {
  display: flex;
  justify-content: center;
  width: 100%;
}

.secMovieBox {
  width: 100%;
  max-width: 100%;
  height: 0;
  /* padding-bottom: 56.25%; */
  position: relative;
}

.secMovieBox.multiple {
  width: 30%;
}

.secMovieBox iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}

.secMovieBox {
  width: 100%;
  max-width: 100%;
  height: auto;
  /* padding-bottom: 56.25%; */
  aspect-ratio: 16 / 9;
  position: relative;
}

.secMovieBoxs.multiple {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 0px auto;
  column-gap: 2rem;
}

@media screen and (max-width: 1000px) {
  .secMovieBoxs.multiple {
    flex-direction: column;
    align-items: center;
    width: 50%;
    row-gap: 2rem;
  }
}

@media screen and (max-width: 600px) {
  .secMovieBoxs.multiple {
    width: 100%;
  }
}

.secMovieBoxs.multiple .secMovieBox {
  text-align: center;
  width: 31%;
}

@media screen and (max-width: 1000px) {
  .secMovieBoxs.multiple .secMovieBox {
    width: 100%;
  }
}

.secMovieBox>iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  position: static;
}

/*---------------------------------------------

	グッズ情報

---------------------------------------------*/

.secGoods {
  padding: 6rem 0 7rem 0;
  background: url(../img/bg-orange.png?20240806) lightgray 50%;
  background-size: 400px 400px;
  mix-blend-mode: multiply;
  overflow: hidden;
}

@media screen and (max-width: 600px) {
  .secGoods {
    padding: 5rem 0 3rem 0;
  }
}

.secGoods__decoInner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 1;
}

.secGoods__deco {
  position: absolute;
  z-index: -1;
}

.secGoods__deco img {
  width: 100%;
}

.secGoods__deco--right {
  width: 11.96313rem;
  right: 8%;
  top: -2%;
}

@media screen and (max-width: 600px) {
  .secGoods__deco--right {
    width: 7.36313rem;
    right: -5%;
    top: 0%;
  }
}

.secGoodsItems {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 2rem;
}

.secGoodsItem__text {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.secGoodsItems.no-posts {
  justify-content: center;
}

@media screen and (max-width: 600px) {
  .secGoodsItems {
    row-gap: 1rem;
  }
}

.secGoodsItem {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 46%;
  padding: 1.3rem 1.5rem;
  border-radius: 0.625rem;
  background: #fff;
}

@media screen and (max-width: 600px) {
  .secGoodsItem {
    width: 48.2%;
    padding: 0.8rem 0.9rem;
  }
}

.secGoodsItem__photo {
  width: 100%;
  margin-bottom: 1.1rem;
}

.secGoodsItem__photo img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.secGoodsItem__title {
  margin-bottom: 0.5rem;
  color: var(--main2);
  font-family: "Zen Kaku Gothic New";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2rem;
  /* 160% */
  letter-spacing: -0.05rem;

  flex: 1;
  height: 100%;
  min-height: 0%;
}

@media screen and (max-width: 600px) {
  .secGoodsItem__title {
    font-size: 1.1rem;
    line-height: 130%;
    /* 1.21875rem */
    letter-spacing: -0.0375rem;
  }
}

.secGoodsItem__price {
  margin-bottom: 1rem;
  color: var(--main2);
  font-family: "Zen Kaku Gothic New";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2rem;
  /* 160% */
  letter-spacing: -0.05rem;
}

@media screen and (max-width: 600px) {
  .secGoodsItem__price {
    font-size: 1.1rem;
  }
}

.secGoodsItem__button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0.6rem 0;
  color: var(--main2);
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2rem;
  /* 160% */
  letter-spacing: -0.05rem;
  border-radius: 5rem;
  background: #e4591c;
}

@media screen and (max-width: 600px) {
  .secGoodsItem__button {
    padding: 0.1rem 0;
    font-size: 0.8rem;
    margin-top: auto;
  }
}

.secGoodsItem__button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 6px solid transparent;
  border-right: 0 solid transparent;
  border-left: 9px solid #111111;
  border-bottom: 6px solid transparent;
}

@media screen and (max-width: 600px) {
  .secGoodsItem__button::after {
    top: 1px;
    bottom: 0;
    right: 11px;
    border-top: 4px solid transparent;
    border-right: 0 solid transparent;
    border-left: 6px solid #111111;
    border-bottom: 4px solid transparent;
  }
}

.secGoodsItem__noData {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.secGoodsItem__noDataText {
  margin-bottom: 2.8rem;
  color: var(--main2);
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.25rem;
  /* 150% */
  letter-spacing: -0.06rem;
}

@media screen and (max-width: 600px) {
  .secGoodsItem__noDataText {
    margin-bottom: 2rem;
    font-size: 1.1rem;
  }
}

/*---------------------------------------------

	よくある質問

---------------------------------------------*/

.secFaq {
  position: relative;
  padding: 7rem 0 5rem 0;
  background-image: url(../img/bg-beige.png);
  background-position: top center;
  background-repeat: repeat;
  background-size: 500px 500px;
  overflow: hidden;
}

@media screen and (max-width: 600px) {
  .secFaq {
    padding: 3.4rem 0 3rem 0;
  }
}

/*---------------------------------------------

	▼質問と回答の背景色が別

---------------------------------------------*/

.accordionArea .accordionOne {
  margin-bottom: 1.8rem;
  width: 100%;
  filter: drop-shadow(0px 4px 4px rgba(125, 62, 16, 0.25));
}

.accordionArea .accordionOne .acHeader {
  background-color: #eb6d00;
  padding: 1rem 4rem 1rem 2rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: 0.2s;
  border-radius: 0.625rem;
}

@media screen and (max-width: 600px) {
  .accordionArea .accordionOne .acHeader {
    padding: 1rem 2.8rem 1rem 1rem;
  }
}

.accordionArea .accordionOne .acHeader.open {
  border-radius: 0.625rem 0.625rem 0 0;
}

/* 質問文章 */
.accordionArea .accordionOne .acHeader p {
  display: flex;
  align-items: center;
  column-gap: 1.7rem;
  color: #f6ecd5;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.75rem;
  /* 127.273% */
  letter-spacing: -0.055rem;
}

@media screen and (max-width: 600px) {
  .accordionArea .accordionOne .acHeader p {
    font-size: 1.1rem;
    column-gap: 1rem;
  }
}

/* Q */
.accordionArea .accordionOne .acHeader p span {
  min-width: 3.25rem;
}

@media screen and (max-width: 600px) {
  .accordionArea .accordionOne .acHeader p span {
    min-width: 3.15rem;
  }
}

.accordionArea .accordionOne .acHeader p span img {
  width: 100%;
}

.accordionArea .accordionOne .acHeader {
  position: relative;
  cursor: pointer;
}

.accordionArea .accordionOne .acHeader .i_box {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}

@media screen and (max-width: 600px) {
  .accordionArea .accordionOne .acHeader .i_box {
    right: 1rem;
    width: 15px;
  }
}

.accordionArea .accordionOne .acHeader .i_box:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(135deg);
  box-sizing: border-box;
  transition: transform 0.3s, border 0.3s;
}

.accordionArea .accordionOne .acHeader.open .i_box:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: #fff;
  border: none;
  transform: translate(-50%, -50%) rotate(0deg);
}

/* 回答 */
.accordionArea .accordionOne .acInner {
  display: none;
  padding: 2rem 3.2rem;
  box-sizing: border-box;
  background-color: #f6ecd6;
  border-radius: 0 0 0.625rem 0.625rem;
}

@media screen and (max-width: 600px) {
  .accordionArea .accordionOne .acInner {
    padding: 1rem 1.1rem;
  }
}

.accordionArea .accordionOne .acInner p {
  color: var(--main2);
  font-family: "Zen Kaku Gothic New";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.75rem;
  /* 155.556% */
  letter-spacing: -0.045rem;
}

@media screen and (max-width: 600px) {
  .accordionArea .accordionOne .acInner p {
    font-size: 1.05rem;
  }
}

.faq__bodyinner a {
  text-decoration: underline;
  color: #eb6d00;
}

/*---------------------------------------------

	▼質問と回答の背景色が別

---------------------------------------------*/
Footer {
  margin-top: auto;
}

.secFooter {
  position: relative;
  background-image: url(../img/bg-beige.png);
  background-position: top center;
  background-repeat: repeat;
  background-size: 500px 500px;
}

/* ニュースページ */
.not-top,
.not-top .secFooter {
  position: relative;
  background: url(../img/bg-orange.png?20240806) lightgray 50%;
  background-size: 400px 400px;
  background-position: top center;
  background-repeat: repeat;
}

.secFooterBg {
  position: relative;
  background-image: url(../img/bg-footer.svg);
  background-position: top center;
  background-repeat: repeat;
  background-size: cover;
  aspect-ratio: 1280 / 376;
}

@media screen and (max-width: 600px) {
  .secFooterBg {
    position: relative;
    background-image: url(../img/bg-footer-sp.svg);
    background-position: top center;
    background-repeat: repeat;
    background-size: cover;
    aspect-ratio: 390 / 163;
  }
}

.secFooter__copy {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  color: var(--main1);
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.75rem;
  /* 155.556% */
  width: 100%;
}

@media screen and (max-width: 600px) {
  .secFooter__copy {
    font-size: 0.95rem;
  }
}

/*---------------------------------------------

	ニュース 一覧ページ

---------------------------------------------*/
.secNewsList {
  padding: 4rem 0;
  margin-top: 5rem;
}

@media screen and (max-width: 600px) {
  .secNewsList {
    padding: 4rem 0;
    margin-top: 3.8rem;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  width: 22.4%;
  margin: 0 auto;
}

.wp-pagenavi {
  display: flex;
  column-gap: 2rem;
}

.pagination .current,
.pagination a {
  font-size: 2rem;
  color: #111111;
}

@media screen and (max-width: 600px) {

  .pagination .current,
  .pagination a {
    font-size: 1.7rem;
  }

  .pagination {
    width: 40%;
  }
}

.pagination .current {
  position: relative;
  color: var(--main1);
}

.current::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  content: "";
  background-color: #111111;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  z-index: -1;
}

.pagination img {
  width: 100%;
}

/*---------------------------------------------

	ニュース 詳細ページ

---------------------------------------------*/
.secPost {
  position: relative;
  padding: 5rem 0 6rem 0;
  margin-top: 5rem;
}

@media screen and (max-width: 600px) {
  .secPost {
    padding: 2.5rem 0 6rem 0;
    margin-top: 3.8rem;
  }
}

.ssecPostInner {
  width: 960px;
  max-width: 80%;
  margin: 0 auto;
}

.secPost p {
  color: var(--main2);
  font-family: "Zen Kaku Gothic New";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  /* 1.8rem */
  letter-spacing: -0.04rem;
}

@media screen and (max-width: 600px) {
  .secPost p {
    font-size: 1.15rem;
  }
}

.secPost img {
  display: block;
  width: 79.2%;
  margin: 0 auto 2.5rem auto;
}

@media screen and (max-width: 600px) {
  .secPost img {
    width: 100%;
  }
}

.secPostHead {
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 540px) {
  .secPostHead {
    margin-bottom: 1.8rem;
  }
}

.secPostTitle {
  margin-bottom: 1.25rem;
  color: var(--main2);
  font-family: "Zen Kaku Gothic New";
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 3rem */
  letter-spacing: -0.08rem;
}

@media screen and (max-width: 600px) {
  .secPostTitle {
    margin-bottom: 0rem;
    font-size: 1.5rem;
  }
}

.secPostDay {
  color: var(--main2);
  font-family: "Zen Kaku Gothic New";
  font-size: 1.5rem !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: normal !important;
  letter-spacing: 0.12rem !important;
}

@media screen and (max-width: 600px) {
  .secPostDay {
    font-size: 1.3rem !important;
  }
}

/* ---------------------- メモ ---------------------- */

.bg_onetime_popup {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

body.open_popup {
  overflow: hidden;
  width: 100%;
}

body.open_popup .bg_onetime_popup {
  opacity: 1;
  visibility: visible;
}

.onetime_popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56.7vw;
  min-width: 450px;
  border-radius: 0.625rem;
  border: 2px solid #fff;
  background: #000;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  overflow: auto;
}

@media screen and (max-width: 450px) {
  .onetime_popup {
    width: 90%;
    min-width: auto;
    max-width: 90%;
    max-height: 98dvh;
  }
}

.onetime_popup_content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 0;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .onetime_popup_content {
    padding: 0.5rem 0 1.8rem 0;
  }
}

.onetime_popup_logo {
  width: 16.50275rem;
  margin-bottom: 1.8rem;
}

@media screen and (max-width: 600px) {
  .onetime_popup_logo {
    width: 16rem;
    margin-bottom: 1.6rem;
  }
}

.onetime_popup_logo img {
  width: 100%;
}

.onetime_popup_dayBg {
  width: 100%;
  margin-bottom: 2rem;
  padding: 0.5rem;
  background: rgba(202, 112, 7, 0.8);
}

@media screen and (max-width: 600px) {
  .onetime_popup_dayBg {
    padding: 0.4rem;
  }
}

.onetime_popup_day {
  position: relative;
  width: 25.5vw;
  max-width: 21rem;
  z-index: 1;
}

@media screen and (max-width: 450px) {
  .onetime_popup_day {
    width: 63vw;
  }
}

.onetime_popup_scheduleBpx {
  display: flex;
  flex-direction: column;
  column-gap: 1rem;
  margin-bottom: 0.6rem;
}

@media screen and (max-width: 700px) {
  .onetime_popup_scheduleBpx {
    flex-direction: column;
    row-gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
}

.onetime_popup_scheduleTitle {
  color: #fff;
  font-family: "Noto Serif JP";
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: 1px solid #fff;
  padding: 0.25rem 0.625rem;
}

.onetime_popup_scheduleDay {
  color: #fff;
  font-family: "Noto Serif JP";
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: normal;
}

@media screen and (max-width: 810px) {
  .onetime_popup_scheduleTitle {
    font-size: 1.05rem;
    letter-spacing: normal;
  }

  .onetime_popup_scheduleDay {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 450px) {
  .onetime_popup_scheduleTitle {
    font-size: 1.1rem;
  }

  .onetime_popup_scheduleDay {
    font-size: 1rem;
  }
}

.onetime_popup_buttonBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70%;
  min-width: 380px;
  max-width: 540px;
}

.onetime_popup_buttonBox .onetime_popup_buttonGroup {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.onetime_popup_buttonGroup:first-child {
  border-bottom: solid 1px #fff;
  padding-bottom: 1.1rem;
  margin-bottom: 1.1rem;
}


@media screen and (max-width: 700px) {
  .onetime_popup_buttonBox .onetime_popup_buttonGroup {
    column-gap: 1.5rem;
  }
}

@media screen and (max-width: 450px) {
  .onetime_popup_buttonBox .onetime_popup_buttonGroup {
    align-items: center;
  }

  .onetime_popup_buttonGroup:first-child {
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
  }
}

@media screen and (max-width: 450px) {
  .onetime_popup_buttonBox {
    flex-direction: column;
    align-items: center;
    row-gap: 0rem;
    min-width: auto;
  }

  .onetime_popup_buttonGroup {
    flex-direction: column;
    align-items: center;
    row-gap: 0.4rem;
  }
}

.subtitle {
  color: #fff;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.125rem;
  /* 128.571% */
}

@media screen and (max-width: 965px) {
  .subtitle {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 450px) {
  .subtitle {
    font-size: 1rem;
  }
}

.onetime_popup_button {
  width: 19vw;
  min-width: 11rem;
  max-width: 241px;
}

.onetime_popup_button.family {
  width: 19vw;
}

@media screen and (max-width: 600px) {
  .onetime_popup_button {
    min-width: 10rem;
  }

  .onetime_popup_button.family {
    min-width: 10rem;
  }
}

@media screen and (max-width: 450px) {
  .onetime_popup_button {
    width: 62vw;
  }

  .onetime_popup_button.family {
    width: 62vw;
  }
}

.onetime_popup_button img {
  width: 100%;
}

.onetime_popup_title_close {
  position: absolute;
  top: 5.5%;
  right: 1.5%;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  cursor: pointer;
}

@media screen and (max-width: 450px) {
  .onetime_popup_title_close {
    position: sticky;
    top: 3%;
    left: 90%;
    width: 24px;
    height: 24px;
  }
}

.onetime_popup_title_close img {
  width: 100%;
  vertical-align: baseline;
}