@charset "utf-8";

:root {
  --root-font-size: 16;
  --font-color: #180f0d;
  --fighters-blue: #006298;
  --color-blue: #009de0;
  --color-black: #231815;
  --color-gold: #b7a55c;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: calc(16 / var(--root-font-size) * 1rem);
  font-weight: 400;
  color: var(--font-color);
  scroll-behavior: smooth;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

body.is-modal-open {
  overflow: hidden;
}

/* ==========
mv
==========*/
#mv {
  position: relative;
  z-index: 1;
}

/* ==========
lead
==========*/
#lead {
  position: relative;
  margin-top: min(-22px, -5.86vw);
  padding-top: 76px;
  padding-bottom: max(20px, 5.3vw);
  background: center / cover url('../img/contents/lead-bg.webp');
}

#lead::after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -60px;
  left: 0;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 750 / 246;
  background: center/contain no-repeat url(../img/contents/event-border-top.webp);
}

.lead-txt {
  margin: 0 auto;
  width: 316px;
}

.lead-slider {
  position: relative;
  z-index: 2;
  margin-top: 40px;
}

.lead-slider .splide__track {
  transform: skewY(-4deg);
}

.leadSlide {
  transform: skewY(4deg) rotate(-4deg);
}

.leadSlide-img {
  border-radius: 10px;
}

@media screen and (min-width: 769px) {
  #lead {
    margin-top: min(-60px, -4.2vw);
    padding-top: max(calc(60px + 72px), 9.1vw);
    padding-bottom: max(calc(-180px + 322px), 9.8vw);
    background-image: url(../img/contents/lead-bg__l.webp);
  }

  #lead::after {
    bottom: 0;
    aspect-ratio: 1440 / 322;
    background-image: url(../img/contents/event-border-top__l.webp);
  }

  .lead-txt {
    width: 655px;
  }

  .lead-slider {
    margin-top: 48px;
  }

  .leadSlide-img {
    border-radius: 15px;
  }
}

/* ==========
event
==========*/
#event {
  position: relative;
  z-index: 2;
  margin-top: -63px;
  padding-top: 123px;
}

.event-inner {
  padding-bottom: 50px;
  background: top/100% repeat-y url(../img/contents/event-bg.webp);
}

.event-ttl {
  margin: 0 auto;
  width: calc(433px / 2);
}

@media screen and (min-width: 769px) {
  #event {
    margin-top: 0;
    padding-top: 0;
    background: top/100% repeat-y url(../img/contents/event-bg__l.webp);
  }

  .event-inner {
    margin: 0 auto;
    max-width: 1440px;
    padding-top: 0;
    padding-bottom: 184px;
    background: none;
  }

  .event-inner::before,
  .event-inner::after {
    content: '';
    position: absolute;
    display: block;
    height: auto;
    background: center/contain no-repeat;
  }

  .event-inner::before {
    top: 297px;
    left: 0;
    width: 146px;
    aspect-ratio: 146 / 1575;
    background-image: url(../img/contents/event-deco-left__l.webp);
  }

  .event-inner::after {
    top: 490px;
    right: 0;
    width: 117px;
    aspect-ratio: 117 / 1229;
    background-image: url(../img/contents/event-deco-right__l.webp);
  }

  .event-ttl {
    display: flex;
    width: 100%;
    max-width: 1440px;
  }

  .event-ttl::before,
  .event-ttl::after {
    content: '';
    width: 100%;
    height: 268px;
    background: center/contain no-repeat;
  }

  .event-ttl::before {
    background-image: url(../img/contents/event-deco-left-top__l.webp);
  }

  .event-ttl::after {
    background-image: url(../img/contents/event-deco-right-top__l.webp);
  }

  .event-ttl picture {
    flex-shrink: 0;
    width: 100%;
    max-width: 433px;
    padding-top: 28px;
  }
}

@media screen and (min-width: 1456px) {
  .event-inner::before {
    left: 10%;
    width: 10vw;
  }

  .event-inner::after {
    right: 10%;
    width: 8.1vw;
  }
}

.event-group {
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: 450px;
  padding: 0 32px;
}

.event-tab {
  position: relative;
}

.event-tab::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 2px;
  left: 2px;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgb(35 24 21 / 100%);
  border-radius: calc(1px / 0);
}

.event-tab>span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 40px;
  padding: 0 15px;
  background-color: var(--color-blue);
  border: 2px solid var(--color-black);
  border-radius: calc(1px / 0);
  line-height: 1.2;
  text-align: center;
  font-size: calc(14 / var(--root-font-size) * 1rem);
  font-weight: 700;
  color: #fff;
}

.js-tab-btns>li {
  pointer-events: all;
  cursor: pointer;
}

@media (hover: hover) {
  .js-tab-btns>li:not(.is-choiced):hover {
    opacity: 0.8;
  }
}

.js-tab-btns>li.is-choiced .event-tab::after {
  content: none;
}

.js-tab-btns>li.is-choiced .event-tab>span {
  background-color: #fff;
  color: var(--color-blue);
}

.js-tab-contents>li {
  display: none;
}

.js-tab-contents>li.is-choiced {
  display: block;
}

@media screen and (min-width: 769px) {
  .event-group {
    margin-top: 32px;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    padding: 0;
  }

  .event-tab::after {
    top: 3px;
    left: 3px;
  }

  .event-tab>span {
    width: 240px;
    height: 60px;
    border-width: 3px;
    font-size: calc(20 / var(--root-font-size) * 1rem);
  }
}

.event-list {
  margin: 24px auto 0;
  padding: 0 32px;
}

.eventCard {
  margin: 0 auto;
  max-width: 450px;
  display: flex;
  flex-direction: column;
}

.eventCard+.eventCard {
  margin-top: 30px;
}

.eventCard-img {
  position: relative;
  z-index: 1;
  flex: none;
}

/* 白いテキスト枠：上端をカード間で揃え、高さは行内で伸縮 */
.eventCard-body {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  margin: 2px auto 0;
  width: 92%;
  padding: 0 6px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border: 2px solid var(--color-black);
  border-radius: 20px;
}

.eventCard-img::after {
  content: '';
  position: absolute;
  z-index: 0;
  top: 15px;
  left: 2px;
  display: block;
  width: 100%;
  height: 97%;
  background-color: var(--color-black);
  border-radius: 15px;
}

.eventCard-img>img {
  position: relative;
  z-index: 1;
  border: 4px solid var(--color-black);
  border-radius: 15px;
}

.eventCard-ttl {
  position: relative;
  z-index: 2;
  margin: -17px auto 0;
  width: fit-content;
  padding: 5px 40px;
  background-color: var(--color-gold);
  border: 2px solid var(--color-black);
  border-radius: calc(1px / 0);
  line-height: 1.2;
  text-align: center;
  font-size: calc(20 / var(--root-font-size) * 1rem);
  font-weight: 700;
  color: #fff;
}

.eventCard-body > .eventCard-ttl {
  margin: -21px 0 0;
  width: 100%;
  max-width: none;
  padding-right: 8px;
  padding-left: 8px;
  font-size: min(calc(20 / var(--root-font-size) * 1rem), 5.2vw);
}

.eventCard-txt {
  margin-top: 12px;
  width: 100%;
  padding: 0 14px;
  line-height: 1.7;
  text-align: center;
  font-size: calc(14 / var(--root-font-size) * 1rem);
  font-weight: 700;
  color: var(--color-black);
}

@media screen and (min-width: 769px) {
  .event-list {
    margin-top: 32px;
    padding: 0 8.6%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px 56px;
  }

  .eventCard {
    margin: 0 auto;
    width: 360px;
  }

  .eventCard+.eventCard {
    margin-top: 0;
  }

  .eventCard-img::after {
    top: 10px;
    left: 10px;
    height: 100%;
    border-radius: 30px;
  }

  .eventCard-img>img {
    border-radius: 30px;
  }

  .eventCard-body {
    width: 86%;
    padding: 0 10px 24px;
    border-width: 3px;
    border-radius: 24px;
  }

  .eventCard-body > .eventCard-ttl {
    margin-top: -22px;
    font-size: calc(20 / var(--root-font-size) * 1rem);
  }

  /* PCではタイトルを2行に収める */
  .eventCard-ttl br._sp {
    display: none;
  }

  .eventCard-txt {
    margin-top: 14px;
    padding: 0 10px;
    font-size: calc(16 / var(--root-font-size) * 1rem);
  }
}

/* ==========
modal
==========*/
#modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: rgb(4 0 0 / 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

#modal.is-active {
  display: flex;
}

.modal-container {
  position: relative;
  width: 340px;
}

#modal-close {
  position: absolute;
  z-index: 2;
  top: -15px;
  right: -10px;
  width: 40px;
  height: 40px;
  pointer-events: all;
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  #modal-close {
    top: -24px;
    right: -24px;
    width: min(6.25vw, 90px);
    height: min(6.25vw, 90px);
  }
}

.modal-content {
  max-height: calc(100vh - (40px * 2));
  overflow-y: auto;
  padding: 0 15px 40px;
  background-color: var(--color-blue);
  border-radius: 15px;
  font-size: calc(16 / var(--root-font-size) * 1rem);
  color: #fff;
}

.modal-ttl {
  margin: 0 -15px;
}

.modal-list {
  margin-top: 40px;
}

.modal-ttl+.modal-list {
  margin-top: 0;
}

.modal-card+.modal-card {
  margin-top: 30px;
}

.modal-img {
  position: relative;
  z-index: 1;
}

.modal-img::after {
  content: '';
  position: absolute;
  z-index: 0;
  top: 15px;
  left: 2px;
  display: block;
  width: 100%;
  height: 97%;
  background-color: var(--color-black);
  border-radius: 15px;
}

.modal-img>img {
  position: relative;
  z-index: 1;
  border: 4px solid var(--color-black);
  border-radius: 15px;
}

.modal-info {
  margin-top: 12px;
}

.modal-name {
  line-height: 1.3;
  font-size: calc(24 / var(--root-font-size) * 1rem);
  font-weight: 700;
}

.modal-name-label {
  display: block;
  font-size: 0.5em;
}

.modal-txt {
  margin-top: 8px;
  font-weight: 400;
}

#modalSchedule {
  margin: 40px auto 0;
}

.modalSchedule-table {
  margin-top: 20px;
  background-color: rgb(255 255 255 / 60%);
  border-radius: 8px;
}

.modalSchedule-table td {
  border: 1px solid var(--color-blue);
  vertical-align: middle;
  text-align: center;
}

.circle {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: var(--color-black);
  border-radius: 50%;
}

.modal-btn {
  position: relative;
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 270px;
  height: 50px;
  padding: 12px;
  background-color: #fff;
  border: 2px solid var(--color-black);
  border-radius: calc(1px / 0);
  box-shadow: 2px 2px 0 0 rgb(0 42 60 / 100%);
  font-weight: 700;
  color: var(--font-color);
}

.modal-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  translate: 0 -50%;
  display: block;
  width: 0;
  height: 0;
  border-left: 15px solid var(--color-black);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

@media (hover: hover) {
  .modal-btn:hover {
    translate: 2px 2px;
    box-shadow: none;
  }
}

.js-modal-trigger {
  pointer-events: all;
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .modal-container {
    width: 84%;
    max-width: 1200px;
  }

  .modal-content {
    border-radius: 20px;
  }

  .modal-deco {
    background: top/100% repeat-y url(../img/contents/modal-bg-deco__l.webp);
  }

  .modal-ttl img {
    margin: 0 auto;
    max-width: 1000px;
  }

  .modal-list {
    margin: 0 auto;
    max-width: 1000px;
  }

  .modal-card {
    display: flex;
    align-items: center;
    gap: 45px;
  }

  .modal-card+.modal-card {
    margin-top: 40px;
  }

  .modal-img {
    width: 36.4%;
  }

  .modal-img::after {
    content: none;
  }

  .modal-img>img {
    border-width: 8px;
    border-radius: 30px;
  }

  .modal-info {
    width: calc(100% - 36.4% - 45px);
  }

  .modal-name {
    font-size: calc(32 / var(--root-font-size) * 1rem);
  }

  .modal-name-label {
    margin-bottom: 8px;
    font-size: 0.4em;
  }

  .modal-txt {
    margin-top: 14px;
  }

  #modalSchedule {
    margin-top: 64px;
    max-width: 810px;
  }

  .modalSchedule-table {
    margin-top: 36px;
    border-radius: 10px;
  }

  .modalSchedule-table td {
    border-width: 2px;
  }

  .circle {
    width: 18px;
    height: 18px;
  }

  .modal-btn {
    margin-top: 40px;
    width: 540px;
    height: 80px;
    padding: 24px;
    border-width: 3px;
    box-shadow: 4px 4px 0 0 rgb(0 42 60 / 100%);
    font-size: calc(24 / var(--root-font-size) * 1rem);
  }

  .modal-btn::after {
    right: 32px;
    border-left-width: 24px;
    border-top-width: 7px;
    border-bottom-width: 7px;
  }

  @media (hover: hover) {
    .modal-btn:hover {
      translate: 4px 4px;
    }
  }
}

/* ==========
useful
==========*/
#useful {
  position: relative;
  z-index: 3;
  margin-top: min(-55px, -14.7vw);
  padding-top: max(150px, 40vw);
  padding-bottom: 40px;
  background: top/100% url(../img/contents/useful-bg.webp);
}

.useful-ttl {
  margin: 0 auto;
  width: calc(497px / 2);
}

@media screen and (min-width: 769px) {
  #useful {
    margin-top: 0;
    padding-top: min(16vw, 231px);
    padding-bottom: 80px;
    background-image: url(../img/contents/useful-bg__l.webp);
    background-size: cover;
  }

  #useful::before {
    content: '';
    position: absolute;
    top: max(-8.5vw, -123px);
    left: 0;
    right: 0;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1440 / 354;
    background: center/contain no-repeat url(../img/contents/useful-bg-top__l.webp);
  }

  #useful::after {
    content: '';
    position: absolute;
    top: max(-11.25vw, -162px);
    right: 0;
    display: block;
    width: 98px;
    height: auto;
    aspect-ratio: 98 / 168;
    background: center/contain no-repeat url(../img/contents/useful-deco-right__l.webp);
  }

  .useful-inner {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    max-width: 1440px;
  }

  .useful-ttl {
    width: 433px;
  }
}

@media screen and (min-width: 1456px) {
  #useful::before {
    top: -8.5vw;
  }

  #useful::after {
    width: 6.8vw;
  }
}

.useful-list {
  margin-top: 6px;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 15px;
}

.usefulItem {
  position: relative;
  width: 160px;
}

@media screen and (max-width: 374px) {
  .usefulItem {
    width: 150px;
  }
}

.usefulItem::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 2px;
  left: 2px;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgb(0 42 60 / 100%);
  border-radius: calc(1px / 0);
}

@media (hover: hover) {
  .usefulItem:hover {
    translate: 2px 2px;
  }

  .usefulItem:hover::after {
    opacity: 0;
  }
}

.usefulItem-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 50px;
  padding: 0 5px 0 15px;
  background-color: #fff;
  border: 2px solid var(--color-black);
  border-radius: calc(1px / 0);
  line-height: 1.2;
  font-size: calc(13 / var(--root-font-size) * 1rem);
  font-weight: 700;
}

.usefulItem-link::after {
  content: '';
  display: block;
  width: 26px;
  height: auto;
  aspect-ratio: 52 / 52;
  background: center/contain no-repeat url(../img/contents/useful-arrow.webp);
}

@media screen and (min-width: 769px) {
  .useful-list {
    margin-top: 30px;
    padding: 0 8.6%;
    justify-content: flex-start;
    gap: 40px 24px;
  }

  .usefulItem {
    width: 280px;
  }

  .usefulItem-link {
    height: 80px;
    padding: 0 8px 0 40px;
    border-width: 3px;
    font-size: calc(20 / var(--root-font-size) * 1rem);
  }

  .usefulItem-link::after {
    width: 44px;
  }
}

/* ==========
float btn
==========*/
.ticketbtn {
  position: fixed;
  z-index: 10;
  bottom: 40px;
  right: 15px;
  display: block;
  width: 104px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgb(255 255 255 / 60%);
}

@media screen and (min-width: 769px) {
  .ticketbtn {
    bottom: min(3.6vw, 52px);
    right: min(7vw, 104px);
    width: min(14.4vw, 208px);
  }
}

.scrolltopbtn {
  position: fixed;
  z-index: 10;
  bottom: 40px;
  left: 15px;
  display: block;
  width: 40px;
}

@media screen and (min-width: 769px) {
  .scrolltopbtn {
    bottom: min(8vw, 115px);
    left: min(7vw, 104px);
    width: min(5.5vw, 80px);
  }
}

/* ==========
footer
==========*/
#footer {
  width: 100%;
  padding: 25px 20px 10px;
  background-color: var(--color-gold);
  color: #fff;
}

.footer-logo {
  margin: 0 auto;
  display: block;
  width: 160px;
}

@media (hover: hover) {
  .footer-logo:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 769px) {
  #footer {
    padding: 40px;
  }

  .footer-logo {
    width: 270px;
  }
}

.footerShare {
  margin-top: 20px;
}

.footerShare-ttl {
  line-height: 1;
  text-align: center;
  font-size: calc(20 / var(--root-font-size) * 1rem);
  font-weight: 400;
}

.footerShare-list {
  margin-top: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
}

.footerShare-item {
  width: 35px;
  height: 35px;
}

.footerShare-link {
  display: block;
}

.footerShare-item._x .footerShare-link {
  padding: 3px;
}

@media (hover: hover) {
  .footerShare-link:hover {
    opacity: 0.7;
  }
}

.footer-copyright {
  margin-top: 20px;
  display: block;
  width: 100%;
  line-height: 1.4;
  text-align: center;
  font-size: calc(10 / var(--root-font-size) * 1rem);
}

@media screen and (min-width: 769px) {
  .footerShare {
    margin-top: 40px;
  }

  .footerShare-ttl {
    font-size: calc(32 / var(--root-font-size) * 1rem);
  }

  .footerShare-list {
    gap: 40px;
  }

  .footerShare-item {
    width: 45px;
    height: 45px;
  }

  .footer-copyright {
    margin-top: 36px;
    font-size: calc(14 / var(--root-font-size) * 1rem);
  }
}

/* エスコンフレンズのスケジュールだけ非表示 */
.js-tab-contents>li:first-child .schedule {
  display: none;
}

.date-label {
  position: absolute;
  z-index: 3;
  top: -15px;
  left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 58px;
  padding: 0 18px;
  background: #fff;
  border: 3px solid var(--color-black);
  border-radius: 999px;
  line-height: 1.1;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black);
}


@media screen and (min-width: 769px) {
  .modal-finished {
    inset: 12px;
    border-radius: 20px;
  }
}


.modal-img {
  position: relative;
}

.modal-img .date-label {
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 3;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 130px;
  height: 50px;
  padding: 0 24px;

  background: #fff;
  color: #231815;

  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  border-radius: 9999px;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 768px) {
  .modal-img .date-label {
top: -8px;
left: -8px;
font-size: 13px;
height: 32px;
    font-size: 12px;
  }
}


.modal-name-label {
  display: none;
}


.modal-img {
  position: relative;
}

.modal-finished {
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  left: 4px;

  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
}

.modal-finished span {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 768px) {
  .modal-finished span {
    font-size: 20px;
    padding: 0 20px;
  }
}

/* モーダル画像 */
.modal-img {
  position: relative;
}

/* nameの小見出しを非表示 */
.modal-name-label {
  display: none;
}

/* 日付ラベル */
.modal-img .date-label {
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 3;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 130px;
  height: 50px;
  padding: 0 24px;

  background: #fff;
  color: #231815;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 15%);

  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

/* 出演終了オーバーレイ：SP共通 */
.modal-finished {
  position: absolute;
  inset: 4px;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgb(0 0 0 / 50%);
  border-radius: 12px;
}

.modal-finished span {
  padding: 0 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-shadow: 0 2px 8px rgb(0 0 0 / 40%);
}

/* SP */
@media screen and (max-width: 768px) {
  .modal-img .date-label {
    top: -8px;
    left: -8px;
    min-width: 90px;
    height: 32px;
    padding: 0 12px;
    font-size: 12px;
  }
}

/* PC：必ず共通指定より後ろに置く */
@media screen and (min-width: 769px) {
  .modal-finished {
    inset: 8px;
    border-radius: 22px;
  }

  .modal-finished span {
    font-size: 32px;
  }
}

