:root {
  --blue: #007bc8;
  --ink: #111;
  --muted: #646464;
  --paper: #f7f5f0;
  --line: #c8c8c8;

  /* フォント指定 */
  --font-yugo: "YuGothic StdN", "Yu Gothic StdN", "游ゴシック体", "YuGothic", "Yu Gothic M", "Yu Gothic", "toppan-bunkyu-gothic-pr6n", sans-serif;
  --font-times: "Times New Roman", Times, serif;
  --font-hiramin: "shippori-mincho", "Shippori Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ryumin-pr6n", "tsukuamin-pro", serif;
  --font-arial-bold: "Arial", sans-serif;
  --font-hirakaku: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Noto Sans JP", sans-serif;
  --font-script: "Dancing Script", cursive, "Times New Roman", serif;
}

body {
  font-family: var(--font-hirakaku);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.9;
  letter-spacing: .04em;
  background-image: url('../images/paper-texture.jpg');
}

/* ========================================
   HEADER & NAVIGATION (PC版)
   ======================================== */
.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.header-logo-area {
  width: 35% !important;
  height: 100%;
  display: flex !important;
  align-items: center !important;
  padding-left: 2.5vw !important; 
}

.site-logo img {
  width: 90px !important; 
  max-width: none !important;
  display: block !important;
}

.header-nav-area {
  width: 65%;
  height: 100%;
  background-color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 7.5vw;
}

.global-nav {
  display: flex;
  gap: 38px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  font-family: var(--font-yugo);
}

.global-nav a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), text-shadow 0.3s ease;
}

.global-nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.global-nav a:hover {
  color: #ffffff;
  transform: scale(1.15) translateY(-2px);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.global-nav a:hover::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 18px;
  position: relative;
  z-index: 40;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.drawer {
  display: none;
}

/* ========================================
   HERO & STORY & CONTENTS
   ======================================== */
.hero {
  display: grid;
  grid-template-columns: 35% 65%;
  min-height: 100vh;
}

.hero__copy {
  padding: 18vh 7.5vw 8vh;
  background-image: url("../images/wallpaper.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

.eyebrow {
  color: var(--blue);
  font-weight: 700;
  font-family: var(--font-yugo);
  font-size: 30px;
}

.num {
  color: var(--blue) !important;
  font-weight: 700 !important;
  font-family: var(--font-times) !important;
  font-size: 44px !important;
  line-height: 1.1;
  margin-bottom: 8px;
}

.catch {
  font-family: var(--font-yugo) !important;
  font-size: 20px !important; 
  font-weight: 700 !important;
  color: #0087ca !important;
  letter-spacing: 0.02em;
  margin-bottom: 26px;
  display: block;
}

.hero h1 {
  font-family: var(--font-times);
  font-weight: 400;
  line-height: 1.05;
  font-size: clamp(80px, 6vw, 104px);
  margin: 28px 0;
}

.story h2 {
  font-family: var(--font-times);
  font-weight: 400;
  line-height: 1.05;
  font-size: clamp(48px, 4.5vw, 64px);
  margin-bottom: 32px;
}

.contents h2 {
  font-family: var(--font-times);
  font-weight: 400;
  line-height: 1.05;
  font-size: clamp(48px, 4.5vw, 64px);
}

.feature h2 {
  font-family: var(--font-times);
  font-weight: 400;
  line-height: 1.1;
  font-size: clamp(32px, 3.5vw, 56px) !important; 
  display: flex;
  flex-wrap: wrap !important;    
  align-items: baseline;
  white-space: normal !important; 
}

.hero__lead {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 28px;
  font-family: var(--font-yugo);
}

.feature h2 span {
  font-family: var(--font-yugo) !important;
  font-size: 26px !important; 
  font-weight: 700 !important;
  margin-left: 15px;
  padding: 0;
  background: none;
  display: inline-block !important;
  white-space: nowrap !important; 
}

.hero__text {
  font-size: 18px;
  color: #333;
  font-family: var(--font-hiramin);
  font-weight: 400;
}

.story p, .feature p {
  font-size: 18px;
  color: #333;
  font-family: var(--font-hiramin);
  font-weight: 400;
}

.scroll-sign {
  display: inline-block;
  margin-top: 50px;
  font-size: 18px;
  font-weight: 700;
  writing-mode: vertical-rl;
  letter-spacing: .2em;
  position: relative;
  padding-bottom: 70px;
  width: fit-content;
  font-family: var(--font-times);
}

.scroll-sign::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 50px;
  background: rgba(0, 135, 202, 0.2);
  transform: translateX(-50%);
}

.scroll-sign::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 50px;
  background: var(--blue);
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  animation: scrollLineAnimation 2s cubic-bezier(0.45, 0, 0.25, 1) infinite;
}

@keyframes scrollLineAnimation {
  0% { transform: translateX(-50%) scaleY(0); transform-origin: top; }
  50% { transform: translateX(-50%) scaleY(1); transform-origin: top; }
  50.1% { transform: translateX(-50%) scaleY(1); transform-origin: bottom; }
  100% { transform: translateX(-50%) scaleY(0); transform-origin: bottom; }
}

.story {
  display: grid;
  grid-template-columns: 57% 43%;
  align-items: stretch;
  background-image: url("../images/wallpaper.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.story__copy { order: 2; padding: 1vw 2vw; background: transparent !important; border-left: 4px solid #bcd8e5; margin: 7vw 0 7vw 9vw; }
.story__image { order: 1; margin: 0; padding: 0; }
.story__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.contents {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 52px 8vw;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background: #fff; 
}

.contents ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  flex: 1;
}

/* Contents内リンク */
.contents a {
  display: block;
  border-left: 2px solid #8ebdd2;
  padding: 0 0 0 14px;
  font-family: var(--font-times);
  font-size: clamp(24px, 2.2vw, 36px);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease;
}

.contents a:hover {
  transform: scale(1.08) translateX(4px);
  border-left-color: var(--blue);
}

.contents span {
  display: block;
  color: var(--blue) !important;
  font-family: var(--font-times) !important;
  font-size: 44px !important; 
  font-weight: 700 !important;
  margin-bottom: 4px;
  line-height: 1.1;
}

.hero__visual {
  background: var(--blue);
  overflow: hidden;
  padding-top: 82px;
  box-sizing: border-box; 
  display: block !important; 
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  object-position: right center; 
  display: block;
}

/* ========================================
   FEATURES (COMMON)
   ======================================== */
.feature {
  display: grid;
  margin-bottom: 0px !important;
}

#event { grid-template-columns:47% 53%; background: #fff; padding-bottom: 0px !important; } 
#fashion { grid-template-columns:60% 40%; background-image: url("../images/wallpaper.jpg"); background-size: cover; background-position: center; background-repeat: no-repeat; padding-bottom: 0px !important; } 
#gourmet { grid-template-columns:40% 60%; background: #fff; padding-bottom: 0px !important; } 
#kids { grid-template-columns:40% 60%; background-image: url("../images/wallpaper.jpg"); background-size: cover; background-position: center; background-repeat: no-repeat; padding-bottom: 0px !important; } 

.feature--reverse .feature__image {
  order: 2;
}

.feature--reverse .feature__body {
  order: 1;
}

.feature__image {
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: auto;
  background-color: #ffffff;
}

.feature--event .feature__image {
  aspect-ratio: 3061 / 3827 !important;
}

.feature--reverse:not(.feature--event) .feature__image,
.feature:not(.feature--event) .feature__image {
  aspect-ratio: 4 / 3;
}

.feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center top !important;
  background-color: #ffffff;
}

.feature__body {
  position: relative;
  padding: 4vw 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.decor-fire {
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: auto;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

.decor-water {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 280px;
  height: auto;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

.decor-ice {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 220px;
  height: auto;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

.feature--event .feature__body {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.feature--event .feature__body > *:not(.decor-fire):not(.decor-water) {
  position: relative;
  z-index: 3;
}

#gourmet .feature__body {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

#gourmet .feature__body > *:not(.decor-ice) {
  position: relative;
  z-index: 3;
}

.pickup, .pickup-area {
  margin: 54px 0 15px 0 !important; 
}

.pickup .pickup-script,
.pickup p.pickup-script,
.pickup-area p {
  font-family: 'Arizonia', cursive !important;
  font-size: 42px !important;
  color: #e21b70 !important; 
  line-height: 1.1 !important;
  letter-spacing: 0.03em !important;
  font-style: normal !important;
  text-transform: none !important;
  margin-bottom: 2px;
}

.pickup-title, .pickup strong {
  font-family: var(--font-yugo) !important;
  font-size: 40px !important;
  font-weight: 700;
  color: #e21b70 !important;
  letter-spacing: 0.02em;
  display: block;
  margin-top: 2px;
}

.fun-area {
  margin: 20px 0 10px 0;
}

.fun-title {
  font-family: var(--font-yugo) !important;
  font-size: 28px !important;
  font-weight: 700;
  color: #0087ca; 
  letter-spacing: 0.02em;
  display: block;
}

.event-list {
  margin: 5px 0 15px 0;
}

.event-list a {
  display: grid !important;
  grid-template-columns: 140px 1fr auto !important; 
  align-items: center;
  border-top: 1px solid #222;
  padding: 10px 24px 10px 0px; 
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-arial-bold);
  white-space: nowrap; 
  text-overflow: ellipsis;
  overflow: hidden; 
  transition: color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.event-list a:hover {
  color: var(--blue);
  padding: 10px 16px 10px 8px; 
}

.event-list li:last-child a {
  border-bottom: 1px solid #222;
}

.event-list .arrow {
  font-family: var(--font-times);
  font-size: 16px;
  font-weight: 400;
  color: #222;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.event-list a:hover .arrow {
  transform: translateX(6px);
}

/* ========================================
   VIEW MORE 
   ======================================== */
.view-more {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-top: 48px !important;
  font-size: 18px !important; 
  font-weight: 700 !important; 
  letter-spacing: .08em;
  font-family: var(--font-yugo) !important; 
  color: var(--ink) !important; 
  border-bottom: 2px solid var(--blue) !important; 
  padding-bottom: 2px !important;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease !important;
  width: fit-content;
  position: relative !important;
}

.view-more::after {
  content: '→' !important;
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  color: var(--ink) !important;
  font-family: var(--font-times) !important;
  font-size: 22px !important; 
  line-height: 1 !important;
  transform-origin: left center !important;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.3s ease !important;
  vertical-align: middle !important;
}

.view-more:hover {
  color: var(--blue) !important;
  border-color: #005fa3 !important;
  transform: translateY(-2px) !important;
}

.view-more:hover::after {
  color: var(--blue) !important;
  transform: translateX(6px) scaleX(1.18) !important;
}

/* ========================================
   SWIPER AUTOMATIC SLIDERS (REPLACED)
   ======================================== */
.slider-container.swiper {
  overflow: hidden;
  position: relative;
  width: 100%;
  background-color: #ffffff !important;
}

.slider-track.swiper-wrapper {
  display: flex !important;
  height: 100%;
  width: auto !important; 
  animation: none !important; 
}

/* スライドアイテム */
.slider-item.swiper-slide {
  flex-shrink: 0;
  width: 100% !important;
  height: 100%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #ffffff !important;
}

.slider-item.swiper-slide a {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  -webkit-user-drag: none;
  user-select: none;
}

.slider-item.swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;    
  -webkit-user-drag: none;  
  user-select: none;    
}

.slider-track .swiper-slide img {
  object-fit: cover !important;
  object-position: center center !important;
  width: 100% !important;
  height: 100% !important;
}

/* スクエア画像や特定の画像で切れないように上下余白を入れて全画面表示 */
.slider-track .swiper-slide img[src*="lottery"],
.slider-track .swiper-slide img[src*="app-point"] {
  object-fit: contain !important;
  background-color: #ffffff !important;
}

.slider-dots.swiper-pagination {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  gap: 10px;
  z-index: 10;
  width: auto !important;
}

.slider-dots .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ffffff !important;
  opacity: 0.4;
  margin: 0 !important;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.slider-dots .swiper-pagination-bullet-active {
  background-color: #ffffff !important;
  opacity: 1 !important;
  transform: scale(1.3);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  position: relative;
  background: var(--blue);
  color: #fff;
  min-height: 210px;
  padding: 48px 7vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
}

.site-footer img {
  width: 92px;
}

.site-footer nav {
  display: flex;
  gap: 42px;
  font-size: 13px !important; 
  font-weight: 700 !important;
  letter-spacing: .08em !important;
  font-family: var(--font-yugo) !important; 
}

.site-footer nav a {
  position: relative !important;
  display: inline-block !important;
  color: #ffffff !important;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), text-shadow 0.3s ease !important;
}

.site-footer nav a::after {
  content: '' !important;
  position: absolute !important;
  bottom: -6px !important;
  left: 0 !important;
  width: 100% !important;
  height: 2px !important;
  background-color: #ffffff !important;
  transform: scaleX(0) !important;
  transition: transform 0.3s ease !important;
}

.site-footer nav a:hover {
  color: #ffffff !important;
  transform: scale(1.15) translateY(-2px) !important; 
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6) !important;
}

.site-footer nav a:hover::after {
  transform: scaleX(1) !important; 
}

.site-footer small {
  grid-column: 1/4;
  text-align: center;
  font-size: 11px;
  opacity: .9;
  font-family: var(--font-hirakaku);
}

.page-top {
  position: absolute;
  right: 7vw;
  bottom: 42px;
  font-size: 11px;
  font-family: var(--font-times);
  transition: transform 0.3s ease;
  color: #ffffff !important; 
}

.page-top:hover {
  transform: translateY(-4px);
}

.page-top:after {
  content: '⌃';
  margin-left: 12px;
}

/* ========================================
   RESPONSIVE (スマホ & タブレット)
   ======================================== */
@media (max-width: 900px) {
  .site-header {
    position: fixed !important;
    height: 66px !important;
    padding: 0 16px !important;
    background: #eaeaea;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex !important;
    justify-content: space-between !important;
  }

  .header-logo-area {
    width: auto !important;
    height: 100% !important;
    padding-left: 0 !important;
  }

  .header-nav-area {
    width: auto;
    height: 100%;
    background: transparent;
    padding: 0;
  }

  .site-logo img {
    width: 72px !important;
  }

  .global-nav {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .menu-button span {
    background-color: var(--blue);
  }

  .drawer {
    display: grid;
    position: fixed;
    z-index: 30;
    inset: 0 0 auto auto;
    width: min(76vw, 360px);
    height: 100vh;
    background: var(--blue);
    color: #fff;
    padding: 120px 36px 96px;
    gap: 24px;
    align-content: start;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(0.45, 0, 0.25, 1);
    box-shadow: -5px 0 25px rgba(0,0,0,0.25);
    font-family: var(--font-times);
  }

  .drawer.is-open {
    transform: translateX(0);
  }

  .drawer-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    color: #ffffff;
    font-size: 26px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .drawer-close:hover {
    background: #ffffff;
    color: var(--blue);
  }

  .drawer a {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 12px;
    transition: padding-left 0.3s ease;
  }

  .drawer a:hover {
    padding-left: 10px;
  }

  .menu-button.is-active span {
    background-color: #ffffff;
  }

  .menu-button.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-button.is-active span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 66px;
  }

  .hero__copy {
    order: 2;
    padding: 48px 28px 56px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__visual {
    order: 1;
    min-height: 58vh;
    width: 100%;
    display: grid !important; 
    place-items: center;
    padding-top: 0px !important;
  }

  .hero__visual img {
    object-fit: cover !important;
    object-position: center center !important;
  }

  .story { grid-template-columns: 1fr; }
  .story__copy { margin: 0; padding: 56px 32px; border-left: 3px solid #bcd8e5; }
  .story h2 { font-size: 44px; margin-bottom: 26px; }
  .story__image { height: 250px; }

  .contents {
    display: block;
    padding: 46px 28px;
  }

  .contents h2 {
    font-size: 42px;
    margin-bottom: 24px;
    font-family: var(--font-times);
    border: none;
  }

  .contents ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid var(--line);
    gap: 0;
  }

  .contents li {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  .contents a {
    display: flex !important;
    align-items: center;
    padding: 20px 24px 20px 0px !important; 
    font-size: 22px !important;             
    font-family: var(--font-times);
    border-left: none;
    transform: none !important;
    transition: color 0.3s ease, padding 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  }

  .contents a:hover {
    transform: none !important;
    border-left-color: transparent !important;
    color: var(--blue);
    padding: 20px 16px 20px 8px !important;
  }

  .contents span {
    display: inline;
    font-size: 38px !important; 
    color: var(--blue);
    font-family: var(--font-times);
    font-weight: 700;
    margin-bottom: 0;
    margin-right: 18px !important; 
  }

  .contents-illust {
    height: 55px !important;     
    width: auto !important;
    object-fit: contain !important;
    margin-left: 15px !important;
  }

  .contents a::after {
    content: '>' !important;
    font-family: var(--font-arial-bold) !important;
    font-size: 24px !important;  
    color: #646464;
    font-weight: 700;
    margin-left: auto !important;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.3s ease !important;
  }

  .contents a:hover::after {
    transform: translateX(6px) !important;
    color: var(--blue);
  }

  .feature, .feature--reverse {
    display: grid !important;
    grid-template-columns: 1fr !important;
    position: relative;
    overflow: hidden;
    background: transparent !important; 
    padding-bottom: 0px !important; 
  }

  #event { grid-template-columns: 1fr !important; background: #fff !important; background-image: none !important; }
  #fashion { grid-template-columns: 1fr !important; background-image: url("../images/wallpaper.jpg") !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
  #gourmet { grid-template-columns: 1fr !important; background: #fff !important; background-image: none !important; }
  #kids { grid-template-columns: 1fr !important; background-image: url("../images/wallpaper.jpg") !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }

  .feature__body {
    display: contents !important; 
    padding: 0;
    background: transparent !important;
  }

  .feature__body > :not(.decor-fire):not(.decor-water):not(.decor-ice):not(.num):not(h2) {
    order: 4 !important;
    margin-left: 32px;
    margin-right: 32px;
  }

  .feature__body .num {
    order: 1 !important;
    margin: 0 32px 8px;
    padding-top: 56px;
  }

  .feature h2 {
    order: 2 !important;
    font-size: 36px !important;
    margin-bottom: 18px;
    margin-left: 32px;
    margin-right: 32px;
  }

  .feature h2 span {
    display: inline-block !important; 
    font-size: 18px !important;
    margin: 0 0 0 14px !important; 
  }

  .feature__image {
    order: 3 !important;
    min-height: 0;
    height: auto;
    width: 100%;
    margin-top: 0;
  }

  .feature--event .feature__image {
    aspect-ratio: 3061 / 3827 !important;
  }

  .feature--reverse:not(.feature--event) .feature__image,
  .feature:not(.feature--event) .feature__image {
    aspect-ratio: 4 / 3;
  }

  .decor-fire { width: 150px; }
  .decor-water { width: 170px; }
  .decor-ice { width: 130px; }

  .feature__body .pickup {
    margin-top: 54px !important;    
    margin-left: 32px !important;   
    margin-right: 32px !important;  
    margin-bottom: 15px !important;
  }

  .feature__body .catch {
    margin-top: 32px;
  }

  .event-list a {
    display: grid !important;
    grid-template-columns: 145px 1fr !important; 
    font-size: 14px;
    align-items: center;
    padding: 10px 24px 10px 0 !important;
    transition: color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  }

  .event-list a:hover {
    padding: 10px 16px 10px 8px !important;
  }

  .event-list span:not(.arrow) {
    display: block;
    margin: 0 !important;
    padding: 0;
    width: auto;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }

  .event-list .arrow {
    display: none;
  }

  /* FOOTER (スマホ版) */
  .site-footer {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    grid-template-columns: none !important; 
    padding: 48px 24px 48px !important;    
    gap: 0 !important;
    position: relative !important;
  }

   .site-footer img {
    width: 140px !important; 
    height: auto !important;
    margin: 0 auto 32px auto !important;
    display: block !important;
  }

   .site-footer nav {
    display: grid !important;
    grid-template-columns: repeat(2, auto) !important; 
    justify-content: center !important;
    gap: 16px 54px !important; 
    margin: 0 0 42px 0 !important;
    width: 100% !important;
  }

    .site-footer nav a {
    width: fit-content !important;      
    justify-self: center !important;    
  }

    .site-footer small {
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    font-size: 11px;
    opacity: .9;
    margin-bottom: 0 !important; 
  }

  .page-top {
    position: static !important;        
    display: inline-block !important;
    align-self: flex-end !important;    
    margin: 48px 0 -12px auto !important;
    color: #ffffff !important;
    font-size: 11px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    z-index: 99 !important;
  }
}
/* ========================================
   追加コンテンツ
   ======================================== */

/* グルメクーポン */
.gourmet-coupon-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 32px;
}

.gourmet-coupon-item p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 700;
}

.gourmet-coupon-item .view-more {
  margin-top: 12px !important;
}

/* 赤く点滅するNEW */
.new-attention {
  display: inline-block;
  flex-shrink: 0;
  color: #e60012;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  animation: new-blink 1s ease-in-out infinite;
}

@keyframes new-blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.15;
  }
}

/* Contents・GourmetのNEW */
.contents .contents-new {
  display: inline-block;
  margin-right: 10px;
  color: #e60012;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  vertical-align: middle;
  animation: new-blink 1s ease-in-out infinite;
}

/* イベントリスト共通設定 */
.event-list-container {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 32px;
}

.event-item__title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 28px !important;
  line-height: 1.4;
  font-weight: 700 !important;
}

.event-item .view-more {
  margin-top: 12px !important;
}

/* スマホ表示 */
@media (max-width: 900px) {
  .gourmet-coupon-list {
    gap: 48px;
    margin: 32px 32px 80px !important;
  }

  .gourmet-coupon-item p {
    gap: 10px;
    font-size: 23px;
  }

  .gourmet-coupon-item .view-more {
    margin: 12px 0 0 !important;
  }

  .new-attention {
    font-size: 13px;
  }

  .contents .contents-new {
    margin-right: 8px;
    font-size: 12px;
  }

  /* イベントリストのスマホ表示設定（グルメと揃える） */
  .event-list-container {
    gap: 48px;
    margin: 32px 32px 80px !important;
  }

  .event-item__title {
    gap: 10px;
    font-size: 23px !important;
  }

  .event-item .view-more {
    margin: 12px 0 0 !important;
  }
}

/* すべてのVIEW MOREを小さくしてグレー75%に統一 */
.view-more {
  font-size: 14px !important;
  color: #666666 !important;
  border-bottom-color: #666666 !important;
}

.view-more::after {
  font-size: 18px !important;
  color: #666666 !important;
}

.view-more:hover {
  color: #666666 !important;
  border-bottom-color: #666666 !important;
}

.view-more:hover::after {
  color: #666666 !important;
}
