@charset "UTF-8";

/* ===========================
   調整
=========================== */
*, ::after, ::before {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

button, input:where([type=button]), input:where([type=reset]), input:where([type=submit]) {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

h1 {
  margin: 0;
}


@media screen and (min-width: 760px) {
  .pane-main:has(.urbantrail) .block-top-event-main h2 {
    font-size: inherit;
  }
}


@media screen and (min-width: 1536px) {
  .pane-contents > .container {
    max-width: none;
  }
}

#header.fixed,
.show.fixed {
  position: static;
}

/* ===========================
   共通・PCスタイル
=========================== */

.urbantrail {
  font-family: "Noto Serif JP", serif;
  background-color: #f4f7e8;
  color: #222222;
  overflow-x: hidden;
  scroll-behavior: smooth;
  line-height: 2.6;
  font-size: 17px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
}

.urbantrail .font-en {
  font-family: "Montserrat", sans-serif;
}

/* フェードインアニメーション */
.urbantrail .fade-in {
  animation: fadeIn 1.2s ease-out forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 発売日の強調アンダーライン */
.urbantrail .release-date-line {
  background: linear-gradient(transparent 80%, #c5d805 65%);
}

/* SP改行（PC非表示） */
.urbantrail .br-sp {
  display: none;
}

/* メインバナー（PCデフォルト） */
.urbantrail .hero-banner {
  width: 100%;
  aspect-ratio: 1360 / 800; /* PC比率 */
  position: relative;
  overflow: hidden;
  background-color: #e8ecda;
}

.urbantrail .banner-overlay {
  background: linear-gradient(
    to bottom,
    rgba(244, 247, 232, 0) 70%,
    rgba(244, 247, 232, 0.9) 100%
  );
}

/* リンクバナーのホバーエフェクト */
.urbantrail .link-banner-container:hover {
  transform: scale(1.05);
}

.urbantrail .block-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 5px;
}

/* アコーディオン展開時のアニメーション */
.urbantrail #monitor-accordion {
  transition:
    max-height 0.8s ease-in-out,
    opacity 0.5s ease;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}
.urbantrail #monitor-accordion.is-open {
  max-height: 2000px;
  opacity: 1;
  margin-top: 2rem;
}

/* PC専用スタイル */
.urbantrail .block-headernav--item-list02 li {
  border: none;
}

.urbantrail .footer-logo,
.urbantrail .footer-container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  text-align: center !important;
  display: block !important;
}

.footer-logo img {
  display: block !important;
  margin: 0 auto !important;
}

/* ===========================
   SP（768px以下）
=========================== */

@media screen and (max-width: 768px) {
  /* SP改行 */
  .urbantrail .br-sp {
    display: block;
  }

  /* メインバナー（SP比率） */
  .urbantrail .hero-banner {
    aspect-ratio: 1080 / 1480;
  }

  .urbantrail .banner-overlay {
    background: linear-gradient(
      to bottom,
      rgba(244, 247, 232, 0) 75%,
      rgba(244, 247, 232, 0.9) 100%
    );
  }
}