@charset "UTF-8";


/* 基本情報差し替え */
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  background: #1E0B3B url(../images/halloween2025/bg_pc.png) repeat-y center top;
  background-size: 1440px auto;
}
.font_tombo {
  font-family: "ab-tombo-bold", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.l-header {
  max-width: 1150px;
  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;
}

.is-sp {
  display: none;
}


@media screen and (max-width: 980px) {
body {
  background: #1E0B3B url(../images/halloween2025/bg_pc.png) repeat-y center top;
  background-size: 370px auto;
}

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


@media screen and (max-width: 767px) {
br.is-sp {
  display: inline;
}
}


/* ===========================================
 * MV
 * ======================================== */
.mv2025 {
  margin-top: -56px;
}
.mv2025_inner {
  min-height: 586px;
  position: relative;
  z-index: -1;
  background: url(../images/halloween2025/mv_bg_bottom.png) no-repeat bottom center, url(../images/halloween2025/mv_bg_2.png) no-repeat center top;
  background-size: 1440px auto, 1662px auto;
}
.mv_ttl {
  max-width: 800px;
  margin: 0 auto;
  position: absolute;
  top: 27px;
  right: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .mv2025 {
    margin-top: -15%;
  }
  .mv2025_inner {
    min-height: 304px;
    background: url(../images/halloween2025/mv_bg_bottom.png) no-repeat bottom center, url(../images/halloween2025/mv_bg_2.png) no-repeat center top;
  background-size: 940px auto, 862px auto;
  }
  .mv_ttl {
    max-width: 360px;
    top: 40px;
    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: 1150px;
  margin: 0 auto;
  padding: 0 15px;
  display: none;
}
.content.is-show {
  display: block;
}

.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-bottom: 80px;
}

.content-list li {
  padding: 32px;
  background: rgba(243, 87, 2, 0.8);
  border-radius: 32px;
}
.content-list li:nth-of-type(2n){
  background: rgba(131, 44, 197, 0.8);
}

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

.content-list a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: #fff;
  text-decoration: none;
}
.content-list a:hover {
  opacity: 0.85;
}

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

.content-img img {
  border-radius: 16px;
}

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

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

.content-detail h2 {
  width: 100%;
  margin-bottom: 15px;
  font-size: 24px;
  line-height: 1.2;
}

.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: #fff;
  border-radius: 15px;
  text-align: center;
  color: #F35702;
  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 {
  color: #832CC5;
}

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

@media screen and (max-width: 767px) {
  .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: 10px;
    padding-bottom: 60px;
  }

  .content-list li{
    padding: 16px;
    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;
  }

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

  .content-detail {
    width: 100%;
    padding: 15px 0 0;
    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;
  }
}


/* 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;
  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;
}
}


/* footer */
/* ======================================== */
/* .breadcrumb-wrap {
  background: #201618 !important;
  border-top: 1px solid #7d7678;
  border-bottom: 1px solid #7d7678;
}
.l-banner-white {
  background: #201618 !important;
}
.l-banner-gray {
  background: #201618 !important;
}
.l-footer{
  background: #201618 !important;
}
.l-footer-navi{
  background: #201618 !important;
}
@media screen and (max-width: 980px) {
  footer .l-footer-sub .l-footer-menu {
    background: #201618 !important;
  }
  footer .footer-main .l-footer-menu {
    border-top: 1px solid #7d7678 !important;
  }
  .l-footer-sub .l-footer-menu:last-of-type {
    border-bottom: 1px solid #7d7678;
  }
  footer .l-footer-sub .l-footer-menu {
    border-top: 1px solid #7d7678 !important;
  }
  footer .footer-main .l-footer-menu dd, footer .l-footer-sub .l-footer-menu dd {
    background: #2d2124 !important;
  }
  footer .footer-main .l-footer-menuList li, .footer-access-list li {
    margin: 0 !important;
    padding: 10px 0 10px 25px !important;
    border-top: 1px solid #7d7678;
  }

} */