@charset "UTF-8";


/* 基本情報差し替え */
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  background: url(../images/halloween2024/bg_repeat.png) repeat calc(50% - 218px) calc(0% + 78px),
              repeating-linear-gradient(-50deg, transparent, transparent 16px, rgba(255, 255, 255, 0.04) 16px, rgba(255, 255, 255, 0.04) 36px),
              #00925B url(../images/halloween2024/bg_pc.png) repeat-x center top;
  background-size: 808px auto, auto, 10px auto;
}
.font_tombo {
  font-family: "ab-tombo-bold", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.l-header {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}

.l-header-inner .header-lp-black {
  background-color: rgba(1, 3, 6, 0);
  padding: 15px 15px;
}

.header-logo img {
  width: 160px;
}

.l-main {
  margin-top: -56px;
}

.breadcrumb a {
  color: #fff;
}


@media screen and (max-width: 980px) {
.header-logo img {
  width: 110px;
}
}


/* ===========================================
 * MV
 * ======================================== */
.mv2024 {
  margin-top: -56px;
}
.mv2024_inner {
  min-height: 655px;
  position: relative;
  z-index: -1;
  background: url(../images/halloween2024/mv_txt_l.png) no-repeat bottom 323px left calc(50% - 274px),
              url(../images/halloween2024/mv_txt_r.png) no-repeat bottom 82px right calc(50% - 328px),
              url(../images/halloween2024/mv_item_l.png) no-repeat bottom 192px left calc(50% - 490px),
              url(../images/halloween2024/mv_item_r.png) no-repeat bottom 130px right calc(50% - 442px),
              url(../images/halloween2024/mv_pumpkin.webp) no-repeat bottom center;
  background-size: 305px auto,
                   380px auto,
                   245px auto,
                   335px auto,
                   1122px auto;
}
.mv_ttl {
  max-width: 835px;
  margin: 0 auto;
  position: absolute;
  bottom: 165px;
  right: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .mv2024 {
    margin-top: -15%;
  }
  .mv2024_inner {
    min-height: 244px;
    background: url(../images/halloween2024/mv_txt_l.png) no-repeat bottom 0px left calc(50% - 274px),
                url(../images/halloween2024/mv_txt_r.png) no-repeat bottom 0px right calc(50% - 328px),
                url(../images/halloween2024/mv_item_l.png) no-repeat bottom 0px left calc(50% - 490px),
                url(../images/halloween2024/mv_item_r.png) no-repeat bottom 0px right calc(50% - 442px),
                url(../images/halloween2024/mv_pumpkin.webp) no-repeat bottom center;
    background-size: 0% auto,
                     0% auto,
                     0% auto,
                     0% auto,
                     106% auto;
  }
  .mv_ttl {
    max-width: 310px;
    bottom: 55px;
    right: 0;
    left: 0;
  }
}



/* ===========================================
 * タブ切り替え
 * ======================================== */
.tab_list_wrap{
  position: relative;
  margin-top: -105px;
}
.tab_list {
  margin: 0 auto;
  max-width: 1000px;
  display: flex;
  border-radius: 15px;
  box-shadow: 0px 0px 3px 3px rgb(75 12 132 / 0.15);
  color: #fff;
  font-size: 22px;
}
.tab {
  width: calc(100% / 3);
  cursor: pointer;
  text-align: center;
  line-height: 60px;
  color: #BBB9BA;
  background: #201618;
}
.tab:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .tab_list_wrap{
    margin-top: -26px;
  }
  .tab_list {
    margin: 0 auto;
    width: 100%;
    display: flex;
    border-radius: 0px;
    font-size: 14px;
  }
  .tab {
    width: calc(100% / 3);
    cursor: pointer;
    text-align: center;
    line-height: 60px;
    color: #BBB9BA;
  }
}


/* イベントボタン */
/* ======================================== */
.tab_event.is-active {
  position: relative;
  background-color: #9E03FF;
  color: #fff;
}
.tab_event.is-active:before {
  position: relative;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 16px;
  background-color: #9E03FF;
  content: '';
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.tab_event {
  background-color: none;
  border-right: 1px solid #392f2f;
  border-radius: 15px 0 0 15px;
}
@media screen and (max-width: 767px) {
  .tab_event.is-active {
    border-radius: 0px;
  }
  .tab_event {
    border-radius: 0;
  }
  .tab_event.is-active:before {
    width: 15px;
    height: 8px;
    bottom: -8px;
  }
  .tab {
    line-height: 54px;
  }
}


/* スケジュールボタン */
/* ======================================== */
.tab_date.is-active {
  position: relative;
  background-color: #4500FF;
  color: #fff;
}
.tab_date.is-active:before {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 16px;
  background-color: #4500FF;
  content: '';
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.tab_date{
  background-color: none;
}
@media screen and (max-width: 767px) {
  .tab_date.is-active {
    border-radius: 0px;
  }
  .tab_date.is-active:before {
    width: 15px;
    height: 8px;
    bottom: -8px;
  }
}


/* マップボタン  */
/* ======================================== */
.tab_map.is-active {
  position: relative;
  background-color: #12A500;
  color: #fff;
}
.tab_map.is-active:before {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 16px;
  background-color: #12A500;
  content: '';
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.tab_map {
  background-color: none;
  border-left: 1px solid #392f2f;
  border-radius: 0 15px 15px 0;
}
@media screen and (max-width: 767px) {
  .tab_map.is-active {
    border-radius: 0px;
  }
  .tab_map {
    border-radius: 0;
  }
  .tab_map.is-active:before {
    width: 15px;
    height: 8px;
    bottom: -8px;
  }
}


/* ===========================================
 * content
 * ======================================== */

/* event */
/* ======================================== */
.content {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  display: none;
}
.content.is-show {
  display: block;
}

.content-inner {
  margin-top: 75px;
}
.content-event-wrap {
  text-align: center;
  color: #fff;
}
.content-event-heading {
  font-size: 40px;
  padding-bottom: 20px;
}
.content-event-txt01 {
  font-size: 22px;
  font-weight: bold;
  text-shadow: 0 0 2px rgba(0,0,0,0.1);
  line-height: 1.8em;
}
.event-txt02 {
  padding-top: 10px;
}

.content-list {
  padding-top: 65px;
  padding-bottom: 80px;
}

.content-list li{
  box-shadow: 0 0 2px rgba(0,0,0,0.1);
  border-radius: 20px;
}

.content-list li + li{
  margin-top: 40px;
}

.content-list a {
  width: 100%;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  text-decoration: none;
  background: rgba(0,0,0,0.65);
  box-shadow: 0 1px 5px rgba(47, 0, 65, 0.15);
}
.content-list a:hover {
  opacity: 0.85;
}

.content-img {
  width: 380px;
  height: 280px;
}

.content-img img {
  border-radius: 20px 0 0 20px;
}

.content-img img.img-fit {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.content-detail {
  width: calc(100% - 350px);
  padding: 25px 30px;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}

.content-detail h2 {
  width: 100%;
  margin-bottom: 15px;
  font-size: 24px;
  color: #C971FF;
  line-height: 1.2;
}
/*.txt_02 h2,*/
.content-list li:nth-of-type(2n) h2 {
  color: #F9841A;
}

.h2-narrow {
  letter-spacing: -0.08rem;
}

.content-spot,
.content-date {
  width: 100%;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}
.content-spot .content-spot-small {
  padding-top: 3px;
  font-size: 14px;
}

.content-date {
  margin-bottom: 10px;
}

.content-spot span,
.content-date span {
  width: calc(100% - 95px);
}

span.event-label {
  width: 88px;
  line-height: 30px;
  background: #9E03FF;
  border-radius: 15px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  font-weight: bold;
}
/*span.label_02,
.txt_02 span.event-label,*/
.content-list li:nth-of-type(2n) span.event-label {
  background: #F9841A;
}

.content-txt {
  margin-top: 5px;
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .content-inner{
    margin-top: 30px;
  }
  .content-event-wrap {
    text-align: center;
    color: #fff;
  }
  .content-event-heading {
    font-size: 22px;
    padding-bottom: 20px;
  }
  .content-event-txt01 {
    font-size: 13px;
    font-weight: bold;
    text-shadow: 0 0 2px rgba(0,0,0,0.1);
    line-height: 1.8em;
  }
  .event-txt02 {
    padding-top: 10px;
  }
  .content-list {
    padding-top: 30px;
    padding-bottom: 60px;
  }

  .content-list li{
    border-radius: 16px;
  }

  .content-list li + li{
    margin-top: 30px;
  }

  .content-list a {
    display: block;
    border-radius: 10px;
  }

  .content-img {
    width: 100%;
    height: 210px;
  }

  .content-img img {
    border-radius: 10px 10px 0 0;
  }

  .content-img img.img-fit {
    width: 100%;
    height: 210px;
    object-fit: cover;
  }

  .content-detail {
    width: 100%;
    padding: 15px;
    display: block;
  }

  .content-detail h2 {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .content-detail h2.narrow {
    letter-spacing: -0.08rem;
  }

  .content-spot,
  .content-date {
    font-size: 14px;
  }

  .content-spot span,
  .content-date span {
    border-radius: 13px;
    font-size: 12px;
    width: calc(100% - 77px);
  }

  .content-spot span + span,
  .content-date span + span {
    padding-top: 4px;
  }

  span.event-label {
    width: 70px;
    height: 26px;
    line-height: 26px;
    font-size: 12px;
  }

  .content-txt {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
  }
}

/* event-end */
.event-end {
  /*  opacity: 0.5;*/
    position: relative;
  }
  .event-end .content-list a {
    background: #ccc;
  }
  
  .event-end::before {
    content: 'イベントは終了しました'; /* data-hoverの値を表示 */
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    line-height: 2;
    white-space: pre; /* これがないと改行が効かない */
    z-index: 103;
    text-shadow: 0 0 8px rgba(0,0,0,0.6);
  }
  
  .event-end::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a001a;
    opacity: 0.6;
    transition: opacity 0.3s;
    z-index: 102;
    border-radius: 20px;
  }

  @media screen and (max-width: 767px) {
    .event-end::after {
      border-radius: 10px;
    }
  }


/* schedule */
/* ======================================== */
.content-schedule{
  margin-top: 75px;
  padding-bottom: 80px;
}
.content-schedule-inner{
  text-align: center;
}
.content-schedule-heading {
  font-size: 32px;
  color: #fff;
}
.content-schedule-txt01{
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

.schedule-body {
  display: flex;
  justify-content: space-between;
}


/* イベントリスト */
.schedule-list {
  width: 176px;
}

.schedule-list-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 92px;
  background: linear-gradient(180deg, rgba(234,118,39,0.8) 0%, rgba(234,118,39,1) 100%);
  border-radius: 8px;
  position: relative;
  text-shadow: rgba(145,92,7,0.4);
}

.schedule-list-ttl img {
  width: 61px;
  height: auto;
  position: absolute;
  left: -14px;
  top: -39px;
}

.schedule-list li + li{
  margin-top: 10px;
}

.schedule-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  background: linear-gradient(180deg, rgba(250,164,26,0.7) 0%, rgba(250,164,26,0.85) 100%);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 0 3px rgba(145,92,7,0.4);
}

.narrow-style a {
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: -0.02rem;
}

.schedule-list li:nth-of-type(2n + 1) a {
  background: linear-gradient(180deg, rgba(249,132,26,0.7) 0%, rgba(249,132,26,0.85) 100%)
  /*background: linear-gradient(180deg, rgba(250,164,26,0.5) 0%, rgba(250,164,26,0.65) 100%);*/
  /*background: linear-gradient(180deg, rgba(249,132,26,0.6) 0%, rgba(249,132,26,0.75) 100%);*/
  /*background: linear-gradient(180deg, rgba(249,132,26,0.7) 0%, rgba(249,132,26,0.85) 100%);*/
}


.event-spot a {
  /*background: rgba(244,125,174,0.8) !important;*/
  background: linear-gradient(180deg, rgba(244,125,174,0.7) 0%, rgba(244,125,174,0.85) 100%) !important;
  text-shadow: 0 0 3px rgba(114,14,55,0.4) !important;
}
.event-spot2 a {
  /*background: rgba(208,77,181,0.8) !important;*/
  background: linear-gradient(180deg, rgba(208,77,181,0.7) 0%, rgba(208,77,181,0.85) 100%) !important;
  text-shadow: 0 0 3px rgba(114,14,55,0.4) !important;
}


@media screen and (max-width: 767px) {
.schedule-list {
  width: 110px;
}

.schedule-list-ttl {
  font-size: 13px;
  line-height: 76px;
}

.schedule-list-ttl img {
  width: 36px;
  left: -8px;
  top: -20px;
}

.schedule-list a {
  font-size: 11px;
}
}


/* カレンダー */
.schedule-calendar {
  width: calc(100% - 186px);
  overflow-x: scroll;
  border-radius: 8px 8px 0 0;
}

.schedule-calendar table {
  width: 100%;
}

@media screen and (max-width: 767px) {
.schedule-calendar {
  width: calc(100% - 120px);
}
}


/* 日付：9月 */
.schedule-calendar th {
  padding: 10px 10px 0;
  background: #E79920;
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 0 2px rgba(145,92,7,0.2);
}
.schedule-calendar th.calendar-month {
  font-size: 25px;
}

.schedule-calendar th span {
  padding: 7px 0 10px;
  font-size: 12px;
  display: block;
}
.schedule-calendar tr th:nth-of-type(2n) {
  background: #EDA025;
}

@media screen and (max-width: 767px) {
.schedule-calendar th {
  padding: 10px 5px 0;
  font-size: 13px;
}
.schedule-calendar th.calendar-month {
  font-size: 15px;
}

.schedule-calendar th span {
  font-size: 11px;
}
}


/* 日付：10月 */
.schedule-calendar th.schedule-oct-01 {
  background: #DA710D;
}
.schedule-calendar th.schedule-oct-02 {
  background: #E67E19 !important;
}
.schedule-calendar th.schedule-txt-sat {
  color: #006BFD;
  text-shadow: 0 0 2px rgba(145,92,7,0.2);
}
.schedule-calendar th.schedule-txt-sun {
  color: #d70000;
  text-shadow: 0 0 2px rgba(255,255,255,0.3);
}
.schedule-calendar th.schedule-txt-holiday {
  color: #d70000;
  padding: 10px 5px 0;
  text-shadow: 0 0 2px rgba(255,255,255,0.3);
}
.schedule-calendar span.schedule-txt02-holiday{
  letter-spacing: -1.5px;
}
@media screen and (max-width: 767px){
  .schedule-calendar th.schedule-txt-holiday{
    color: #d70000;
    padding: 10px 1px 0;
  }
  .schedule-calendar span.schedule-txt02-holiday{
    letter-spacing: -1.5px;
  }
}


/* ガンドチャート */
.schedule-calendar td {
  background: rgba(32, 22, 24, 0.8);
  padding-top: 10px;
  line-height: 50px;
  text-align: center;
}

.schedule-calendar td:nth-of-type(2n) {
  background: rgba(32, 22, 24, 0.7);
}

.schedule-calendar td.calendar-on {
  background: rgba(32, 22, 24, 0.8) url(../images/halloween2024/schedule_line.png) repeat-x calc(0%) calc(50% + 5.5px);
  background-size: 10px auto;
}

.schedule-calendar tr td:nth-of-type(2n).calendar-on {
  background: rgba(32, 22, 24, 0.7) url(../images/halloween2024/schedule_line.png) repeat-x calc(0%) calc(50% + 5.5px);
  background-size: 10px auto;
}
/* 一日のみ */
.schedule-calendar td.calendar-oneday {
  color: #C971FF;
  font-size: 21px;
}
/* 開始,奇数 */
.schedule-calendar td.calendar-start {
  background: rgba(32, 22, 24, 0.8) url(../images/halloween2024/schedule_line.png) no-repeat calc(50% + 50px) calc(50% + 5.5px);
  background-size: 100px 4px;
  color: #C971FF;
  font-size: 21px;
}
/* 開始,偶数 */
.schedule-calendar tr td:nth-of-type(2n).calendar-start {
  background: rgba(32, 22, 24, 0.7) url(../images/halloween2024/schedule_line.png) no-repeat calc(50% + 50px) calc(50% + 5.5px);
  background-size: 100px 4px;
  color: #C971FF;
}
/* 終了,奇数 */
.schedule-calendar tr td.calendar-end {
  background: rgba(32, 22, 24, 0.8) url(../images/halloween2024/schedule_line.png) no-repeat calc(50% - 50px) calc(50% + 5.5px);
  background-size: 100px 4px;
  color: #C971FF;
  font-size: 21px;
}
/* 終了,偶数 */
.schedule-calendar tr td:nth-of-type(2n).calendar-end {
  background: rgba(32, 22, 24, 0.7) url(../images/halloween2024/schedule_line.png) no-repeat calc(50% - 50px) calc(50% + 5.5px);
  background-size: 100px 4px;
  color: #C971FF;
}


/* スポット用 */
.schedule-calendar .event-spot td {
  background: rgba(32, 22, 24, 0.9);
  color: #E67E19;
}

.schedule-calendar .event-spot td:nth-of-type(2n) {
  background: rgba(32, 22, 24, 0.8);
}

/* 開始,奇数 */
.schedule-calendar .event-spot td.calendar-start {
  background: rgba(32, 22, 24, 0.9) url(../images/halloween2024/schedule_line_or.png) no-repeat calc(50% + 50px) calc(50% + 5.5px) !important;
  background-size: 100px 4px !important;
  color: #E67E19;
}
/* 開始,偶数 */
.schedule-calendar tr.event-spot td:nth-of-type(2n).calendar-start {
  background: rgba(32, 22, 24, 0.8) url(../images/halloween2024/schedule_line_or.png) no-repeat calc(50% + 50px) calc(50% + 5.5px) !important;
  background-size: 100px 4px !important;
  color: #E67E19;
}
/* 終了,奇数 */
.schedule-calendar tr.event-spot td.calendar-end {
  background: rgba(32, 22, 24, 0.9) url(../images/halloween2024/schedule_line_or.png) no-repeat calc(50% - 50px) calc(50% + 5.5px) !important;
  background-size: 100px 4px !important;
  color: #E67E19;
}
/* 終了,偶数 */
.schedule-calendar tr.event-spot td:nth-of-type(2n).calendar-end {
  background: rgba(32, 22, 24, 0.8) url(../images/halloween2024/schedule_line_or.png) no-repeat calc(50% - 50px) calc(50% + 5.5px) !important;
  background-size: 100px 4px !important;
  color: #E67E19;
}




@media screen and (max-width: 767px) {
  .content-schedule{
    margin-top: 30px;
  }
  .content-schedule-inner{
    text-align: center;
  }
  .content-schedule-heading {
    font-size: 18px;
    color: #fff;
  }
  .content-schedule-txt01{
    font-size: 12px;
    font-weight: bold;
    color: #fff;
  }
}


/* map */
/* ======================================== */
.content-map{
  margin-top: 75px;
  padding-bottom: 50px;
}
.content-map-inner {
  padding-bottom: 20px;
  text-align: center;
}
.content-map-heading {
  font-size: 32px;
  color: #fff;
}
.map{
  width: 100%;
  height: auto;
}
.map img{
  border-radius: 10px;
}

.mymap-list {
  padding-top: 30px;
  display: flex;
  /*justify-content: space-between;*/
  flex-wrap: wrap;
}

.mymap-list li {
  width: calc((50% - 45px) / 2);
  padding-bottom: 30px;
}

.mymap-list li + li {
  margin-left: 30px;
}

.mymap-list li:nth-of-type(4n + 1) {
  margin-left: 0;
}

.mymap-list li a {
  display: block;
  text-decoration: none;
}

.mymap-list-img {
  height: 160px;
  width: 100%;
}

.mymap-list-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.mymap-list p {
  padding-top: 7px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 0 3px rgba(0,0,0,0.4);
}
.mymap-list p span {
  font-weight: normal;
  color: rgba(255,255,255,0.85);
}

@media screen and (max-width: 767px) {
.content-map{
  margin-top: 30px;
}
.content-map-inner {
  padding-bottom: 20px;
  text-align: center;
}
.content-map-heading {
  font-size: 18px;
  color: #fff;
}
.map-wrap {
  overflow-x: scroll;
  min-width: 337px;
  min-height: 400px;
}
.map img{
  vertical-align: bottom;
  height: 440px;
  width: auto;
}

.content-mymap {
  border-radius: 10px;
}

.mymap-list {
  padding-top: 20px;
  justify-content: space-between;
}

.mymap-list li {
  width: calc(50% - 10px);
  padding-bottom: 20px;
}

.mymap-list li + li {
  margin-left: 0;
}

.mymap-list-img {
  height: 120px;
  width: 100%;
}

.mymap-list p {
  font-size: 12px;
  line-height: 1.25;
}
}


/* event-end-map */
.event-end-map {
  /*  opacity: 0.5;*/
    position: relative;
  }
  .event-end-map .content-list a {
    background: #ccc;
  }
  
  .event-end-map::before {
    content: 'イベントは終了しました'; /* data-hoverの値を表示 */
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    line-height: 2;
    white-space: pre; /* これがないと改行が効かない */
    z-index: 103;
    text-shadow: 0 0 8px rgba(0,0,0,0.6);
  }
  
  .event-end-map::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a001a;
    opacity: 0.8;
    transition: opacity 0.3s;
    z-index: 102;
  }
  @media screen and (max-width: 767px) {
    .event-end-map::before {
      font-size: 12px;
    }
  }
