/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
   :root {
    /* Colors */
    --color-primary: #e66a87; /* スライドのピンク系 */
    --color-secondary: #f2a61f; /* スライドのイエロー・オレンジ系 */
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #fffcf8; /* 温かみのある背景色 */
    --color-bg-secondary: #fce7eb; /* 薄いピンク */
    --color-white: #ffffff;
    
    /* Fonts */
    --font-heading: 'Kiwi Maru', serif;
    --font-body: 'M PLUS Rounded 1c', sans-serif;
    
    /* Layout */
    --container-width: 1000px;
    --border-radius: 16px;
    --transition: 0.3s ease;
  }
  
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }
  
  body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* ==========================================================================
     Typography
     ========================================================================== */
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
  }
  
  .highlight {
    font-weight: 700;
    background: linear-gradient(transparent 60%, rgba(242, 166, 31, 0.4) 60%);
    padding: 0 0.2rem;
  }
  
  .highlight--green {
    background: linear-gradient(transparent 60%, rgba(136, 194, 155, 0.5) 60%);
  }
  
  /* ==========================================================================
     Layout & Components
     ========================================================================== */
  .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section {
    padding: 80px 0;
    scroll-margin-top: 80px;
  }
  
  @media (max-width: 768px) {
    .section {
      padding: 60px 0;
    }
    .section__title {
      font-size: 1.5rem;
      word-break: keep-all;
    }
  }
  
  .section__title {
    font-size: 2.2rem;
    text-align: center;
    margin: 0 auto 3rem;
    color: var(--color-primary);
    position: relative;
    display: table;
  }
  
  .section__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-secondary);
    border-radius: 3px;
  }
  
  .section__title--white {
    color: var(--color-white);
  }
  .section__title--white::after {
    background-color: var(--color-white);
  }
  
  .section--bg-yellow {
    background-color: var(--color-secondary);
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
  }
  
  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .btn--small {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  .btn--large {
    padding: 16px 32px;
    font-size: 1.2rem;
  }
  
  .btn--primary {
    background-color: var(--color-primary);
    color: var(--color-white);
  }
  
  .btn--instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--color-white);
    box-shadow: 0 4px 10px rgba(220, 39, 67, 0.3);
  }
  
  .btn--instagram-gradient {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
    font-weight: 700;
  }
  
  .btn--instagram-gradient:hover {
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.6);
  }
  
  /* ==========================================================================
     Header
     ========================================================================== */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
  }
  
  .header__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header__logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: bold;
  }
  
  .header__nav ul {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-right: 20px;
  }
  
  .header__nav a {
    font-weight: 700;
    color: var(--color-text);
    transition: var(--transition);
  }
  
  .header__nav a:hover {
    color: var(--color-primary);
  }
  
  .header__nav {
    display: flex;
    align-items: center;
  }
  
  .header__hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 101;
  }
  
  .header__hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
    left: 0;
  }
  
  .header__hamburger span:nth-child(1) { top: 0; }
  .header__hamburger span:nth-child(2) { top: 9px; }
  .header__hamburger span:nth-child(3) { bottom: 0; }
  
  .header__hamburger.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .header__hamburger.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  @media (max-width: 768px) {
    .header__logo {
      flex: 1;
      text-align: center;
      padding-right: 30px;
    }

    .header__nav {
      position: fixed;
      top: 0;
      left: -100%;
      width: 80%;
      height: 100vh;
      background-color: var(--color-white);
      flex-direction: column;
      justify-content: center;
      gap: 30px;
      transition: var(--transition);
      box-shadow: 5px 0 15px rgba(0,0,0,0.1);
      z-index: 100;
    }
    
    .header__nav.is-active {
      left: 0;
    }
    
    .header__nav ul {
      flex-direction: column;
      margin-right: 0;
      text-align: center;
      gap: 30px;
      font-size: 1.2rem;
    }
    
    .header__hamburger {
      display: block;
    }
  }
  
  /* ==========================================================================
     Hero Section
     ========================================================================== */
  .hero {
    height: 100vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
  }

  .hero__bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* ユーザー支給のオリジナル水彩背景画像 */
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.8;
  }
  
  .hero::after {
    /* 暗めのグラデーションで文字を見やすく */
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.8));
    z-index: 2;
  }



  .hero__inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--container-width);
    padding: 60px 20px 0; /* Header offset */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__content {
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .hero__title-area {
    position: relative;
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 5px;
  }

  .hero__bubble {
    background-color: #e65100;
    color: #fff;
    font-weight: bold;
    font-size: 1.6rem;
    padding: 12px 20px;
    border-radius: 50%;
    position: absolute;
    top: -65px;
    left: -40px;
    transform: rotate(-10deg);
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    font-family: var(--font-heading);
  }
  
  .hero__bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 15px;
    border-width: 12px 0 0 15px;
    border-style: solid;
    border-color: #e65100 transparent transparent transparent;
    transform: rotate(-15deg);
  }

  .hero__title-main {
    font-size: 4.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
    margin: 0;
  }

  .hero__catchphrase {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #fff;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
    margin: 5px 0 10px;
  }

  .hero__date {
    display: inline-block;
    border-bottom: 2px solid rgba(255,255,255,0.4);
    padding-bottom: 8px;
  }

  .date-text {
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFD54F; /* Yellow */
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }

  .date-wave {
    font-size: 1.4rem;
    color: #fff;
    font-weight: normal;
  }
  
  @media (max-width: 768px) {
    .hero {
      height: auto;
      min-height: 100vw;
      padding-top: 80px;
      padding-bottom: 40px;
    }
    .hero__title-main {
      font-size: 2.5rem;
    }
    .hero__bubble {
      font-size: 1.2rem;
      padding: 10px 14px;
      top: -50px;
      left: -20px;
    }
    .date-text {
      font-size: 1.5rem;
    }
    .hero__catchphrase {
      font-size: 1.1rem;
      margin: 5px 0;
    }
  }
  
  /* ==========================================================================
     About Section (呑らりくらりって？)
     ========================================================================== */
  .about {
    background-color: var(--color-bg);
    padding-bottom: 20px;
  }
  
  .about__inner {
    background-color: #e66a1a; /* Vivid orange */
    color: var(--color-white);
    border-radius: 20px;
    padding: 60px 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(230, 106, 26, 0.2);
    overflow: hidden;
  }
  
  .about__title {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    margin: 0 auto 30px;
    text-align: center;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 15px;
    display: table;
    position: relative;
    z-index: 2;
  }
  
  .about__content {
    position: relative;
    z-index: 2;
    text-align: center;
  }
  
  .about__content p {
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 25px;
    font-weight: 500;
  }
  
  .about__content p:last-child {
    margin-bottom: 0;
  }
  
  /* ==========================================================================
     Page Decorations (Characters)
     ========================================================================== */
  .page-deco-icon {
    position: absolute;
    height: auto;
    opacity: 0.95;
    z-index: 1;
    pointer-events: none;
  }
  
  /* About Section: Sakaya */
  .page-deco-icon--sakaya {
    width: 150px;
    bottom: -15px;
    right: 20px;
    transform: rotate(-10deg);
  }

  @media (max-width: 768px) {
    .about__inner {
      padding: 40px 20px;
    }
    .about__title {
      font-size: 1.8rem;
    }
    .about__content p {
      font-size: 1rem;
    }
    .page-deco-icon {
      width: 90px !important;
      opacity: 0.7;
    }
    .page-deco-icon--sakaya {
      right: 5px;
      bottom: -10px;
      opacity: 0.95;
    }
  }

  /* ==========================================================================
     News Section
     ========================================================================== */
  .news__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .news__item {
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
  }
  
  .news__summary {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    font-weight: bold;
    list-style: none;
    position: relative;
    color: var(--color-text);
  }
  
  .news__summary::-webkit-details-marker {
    display: none;
  }
  
  .news__date {
    color: var(--color-primary);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  
  .news__title {
    flex: 1;
  }
  
  .news__icon {
    transition: transform 0.3s ease;
    color: #999;
  }
  
  .news__item[open] .news__icon {
    transform: rotate(180deg);
  }
  
  .news__content {
    padding: 0 20px 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
  }
  
  .card-grid {
    display: grid;
    gap: 20px;
  }
  
  .card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  }
  
  .card--glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
  }
  
  /* ==========================================================================
     System Section
     ========================================================================== */
  .cup-info {
    max-width: 800px;
    margin: 0 auto 50px;
    background-color: var(--color-white);
    border: 3px solid var(--color-primary);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: left;
  }
  
  .cup-info__title {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  .cup-info__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .cup-info__list li {
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
  }
  
  .cup-info__list li strong {
    color: var(--color-secondary);
    margin-bottom: 5px;
  }
  
  .cup-info__list li:last-child {
    border-bottom: none;
  }
  
  @media (min-width: 768px) {
    .cup-info__list li {
      flex-direction: row;
      align-items: baseline;
    }
    .cup-info__list li strong {
      min-width: 150px;
      margin-bottom: 0;
    }
  }
  .system__info-box {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .info-list__item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
  }
  
  .info-list__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .info-list__item .label {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-right: 20px;
    min-width: 100px;
    text-align: center;
  }
  
  .info-list__item dd {
    font-size: 1.2rem;
    font-weight: 700;
  }
  
  @media (max-width: 768px) {
    .info-list__item {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  }
  
  .timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.5);
  }
  
  .timeline__step {
    position: relative;
    padding-left: 50px;
    margin-bottom: 50px;
  }
  
  .timeline__step::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-primary);
    z-index: 2;
  }
  
  .gallery-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
  }
  
  .timeline__title {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 20px;
    background-color: rgba(255,255,255,0.2);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
  }
  
  .card--step {
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .card__img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    flex-shrink: 0;
    object-fit: cover;
  }
  
  @media (max-width: 768px) {
    .card--step {
      flex-direction: column;
      text-align: center;
    }
    .card__img {
      width: 100%;
      height: 200px;
    }
  }

  /* ==========================================================================
     Onigocco Section
     ========================================================================== */
  .onigocco__box {
    border: 3px dashed var(--color-primary);
    padding: 40px 20px;
    border-radius: var(--border-radius);
    background-color: var(--color-white);
    max-width: 900px;
    margin: 50px auto 0;
    position: relative;
    text-align: center;
  }
  
  .onigocco__header {
    background-color: var(--color-primary);
    color: var(--color-white);
    display: inline-block;
    padding: 10px 30px;
    position: absolute;
    top: -25px;
    left: 40px;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: var(--font-heading);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .onigocco__title {
    margin: 0;
  }
  
  .onigocco__intro {
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 40px;
    line-height: 1.8;
  }
  
  .onigocco__characters {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .onigocco__char {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 270px;
  }
  
  .onigocco__char--center {
    flex-direction: row-reverse;
  }
  
  .onigocco__char-icon {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .onigocco__char-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(0.95);
  }
  
  .onigocco__char-bubble {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 15px;
    border-radius: 53% 47% 43% 57% / 46% 41% 59% 54%;
    position: relative;
    font-size: 0.9rem;
    text-align: center;
    width: 170px;
    height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    animation: blob-bounce 5s infinite alternate;
  }
  
  @keyframes blob-bounce {
    0%   { border-radius: 53% 47% 43% 57% / 46% 41% 59% 54%; }
    50%  { border-radius: 46% 54% 53% 47% / 54% 46% 47% 53%; }
    100% { border-radius: 41% 59% 46% 54% / 59% 41% 54% 46%; }
  }
  
  .onigocco__char-bubble strong {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-family: var(--font-heading);
    white-space: nowrap;
  }
  
  .onigocco__char-bubble::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 15px 0 15px 23px;
    border-color: transparent transparent transparent var(--color-primary);
  }
  
  .onigocco__desc p {
    line-height: 1.8;
    margin-bottom: 0;
  }
  
  @media (max-width: 768px) {
    .onigocco__header {
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      padding: 10px;
      font-size: 1.2rem;
    }
    .onigocco__intro {
      margin-top: 30px;
      font-size: 1rem;
    }
    .onigocco__characters {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
    .onigocco__char {
      width: 100%;
      max-width: 330px;
    }
  }

  /* ==========================================================================
     Feature Section
     ========================================================================== */
  .feature__box {
    background-color: var(--color-bg-secondary);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    position: relative;
  }
  
  .label--special {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 8px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.3rem;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
  
  .feature__title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--color-text);
  }
  
  .feature__desc {
    margin-bottom: 30px;
  }
  
  .card-grid--4cols {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .card__text-small {
    font-size: 0.9rem;
    margin-top: 15px;
  }
  
  /* ==========================================================================
     Results Section
     ========================================================================== */
  .mb-5 { margin-bottom: 3rem; }

  /* Chart Scroll Container */
  .chart-scroll-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 2rem;
  }
  
  .chart-wrapper {
    position: relative;
    height: 400px;
    width: 100%;
    min-width: 600px; /* PC同様の幅を維持してスクロール可能に */
  }

  @media (max-width: 768px) {
    .chart-wrapper {
      height: 350px;
    }
  }

  /* History Table */
  .results__history {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  }
  
  .results__history-title {
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-primary);
    font-size: 1.5rem;
  }
  
  .table-responsive {
    overflow-x: auto;
  }
  
  .history-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    white-space: nowrap;
  }
  
  .history-table th, .history-table td {
    padding: 15px;
    border: 1px solid #eee;
  }
  
  .history-table thead th {
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-weight: bold;
  }
  
  .history-table tbody th {
    background-color: var(--color-bg-secondary);
    color: var(--color-text);
  }
  
  .history-table tbody tr:hover {
    background-color: #fcfcfc;
  }

  /* Target Box */
  .results__target {
    max-width: 600px;
    margin: 4rem auto 0;
    border: 3px dashed var(--color-primary);
    border-radius: var(--border-radius);
    padding: 3.5rem 2rem 2rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5);
    position: relative;
  }
  
  .target-title {
    color: var(--color-primary);
    font-size: 1.8rem;
    font-weight: bold;
    background-color: var(--color-white);
    display: inline-block;
    padding: 10px 30px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(230, 106, 135, 0.2);
    white-space: nowrap;
    line-height: 1.3;
  }

  .target-subtitle {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-text);
  }
  
  .target-content {
    display: flex;
    justify-content: center;
    gap: 40px;
  }
  
  .target-item {
    display: flex;
    flex-direction: column;
  }
  
  .target-label {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 5px;
  }
  
  .target-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-text);
    font-family: var(--font-heading);
    line-height: 1;
  }
  
  .target-value small {
    font-size: 1.2rem;
    font-weight: normal;
    margin-left: 5px;
  }
  
  @media (max-width: 768px) {
    .results__target {
      padding: 4rem 1rem 2rem;
      margin-top: 5rem;
    }
    .target-title {
      font-size: 1.3rem;
      top: -30px;
      padding: 10px 15px;
      width: 90%;
      white-space: normal;
    }
    .target-content {
      flex-direction: column;
      gap: 30px;
    }
  }

  /* ==========================================================================
     Gallery Section
     ========================================================================== */
  .gallery-swiper {
    padding: 20px 40px 50px;
  }
  
  .gallery__img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
  }
  
  .gallery__img:hover {
    transform: scale(1.02);
  }

  /* ==========================================================================
     Goods Section
     ========================================================================== */
  .goods {
    padding-top: 0;
  }

  .goods-header {
    background-color: var(--color-primary);
    padding: 40px 0;
    margin-bottom: 50px;
    text-align: center;
  }

  .goods-header .section__title {
    margin-bottom: 0;
  }
  
  .goods-swiper {
    padding: 20px 40px 50px; /* space for arrows and pagination */
  }

  .goods-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 30px;
    height: 100%;
  }

  .goods-img-placeholder {
    width: 100%;
    max-width: 250px;
    aspect-ratio: 1/1;
    background-color: #f5f5f5;
    border-radius: 10px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .goods-name {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1.3;
    font-family: var(--font-heading);
  }

  .goods-desc {
    font-size: 0.9rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .goods-badge {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: bold;
    font-size: 0.85rem;
    padding: 5px 15px;
    text-align: center;
    display: inline-block;
    line-height: 1.2;
    margin-top: auto;
  }
  
  /* Swiper overrides */
  .swiper-button-next, .swiper-button-prev {
    color: #e0e0e0;
  }
  
  .swiper-button-next::after, .swiper-button-prev::after {
    font-size: 1.5rem;
  }

  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #d8d8d8;
    opacity: 1;
  }
  
  .swiper-pagination-bullet-active {
    background: #333;
  }

  .btn--outline {
    display: inline-block;
    background: transparent;
    border: 1px solid #333;
    color: #333;
    padding: 12px 40px;
    font-size: 0.9rem;
    font-weight: normal;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .btn--outline:hover {
    background: #333;
    color: #fff;
  }

  /* ==========================================================================
     Contact Section
     ========================================================================== */
  .contact {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
  }
  
  .contact__box {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact__text {
    margin-bottom: 30px;
    font-size: 1.1rem;
  }
  
  .contact__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 30px;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  }
  
  .contact__gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
  }
  
  .contact__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .contact__gallery-item:hover img {
    transform: scale(1.1);
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.5rem;
    transition: var(--transition);
  }
  
  .social-icon:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-3px);
  }
  
  /* ==========================================================================
     Pamphlet Section
     ========================================================================== */
  .pamphlet {
    background-color: #f7f9fa;
    padding-top: 20px;
    padding-bottom: 80px;
  }
  
  @media (max-width: 768px) {
    .pamphlet {
      padding-bottom: 60px;
    }
  }
  
  .pamphlet__box {
    background-color: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 50px 30px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border: 4px solid var(--color-secondary);
    overflow: hidden;
  }
  
  .pamphlet__box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 15px;
    background: repeating-linear-gradient(
      45deg,
      var(--color-primary),
      var(--color-primary) 15px,
      var(--color-secondary) 15px,
      var(--color-secondary) 30px
    );
  }
  
  .pamphlet__header {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 40px;
    margin-top: 10px;
    font-family: var(--font-heading);
    line-height: 1.5;
  }
  
  .pamphlet__header .highlight {
    background: linear-gradient(transparent 60%, rgba(24bbc1, 0.3) 60%);
    display: inline-block;
  }
  
  .pamphlet__content {
    display: flex;
    gap: 50px;
    align-items: center;
  }
  
  .pamphlet__image {
    flex: 1;
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }
  
  .pamphlet__img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: block;
  }
  
  .pamphlet__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    position: relative;
  }
  
  .pamphlet__badge {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: bold;
    font-family: var(--font-heading);
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 1rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    display: inline-block;
  }
  
  .pamphlet__desc {
    font-size: 1.15rem;
    font-weight: bold;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 35px;
  }
  
  .pamphlet__buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 320px;
  }
  
  .btn--pamphlet, .btn--map {
    color: var(--color-white);
    padding: 15px 30px;
    font-size: 1.25rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    text-align: center;
    width: 100%;
    border: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  
  .btn--pamphlet {
    background: linear-gradient(135deg, var(--color-primary), #E84D7B);
    box-shadow: 0 5px 15px rgba(228, 122, 154, 0.4);
  }
  
  .btn--map {
    background: linear-gradient(135deg, var(--color-secondary), #d68b20);
    box-shadow: 0 5px 15px rgba(242, 166, 56, 0.4);
  }
  
  .btn--pamphlet:hover, .btn--map:hover {
    transform: translateY(-4px);
    color: var(--color-white);
  }
  
  .btn--pamphlet:hover {
    box-shadow: 0 10px 20px rgba(228, 122, 154, 0.5);
  }

  .btn--map:hover {
    box-shadow: 0 10px 20px rgba(242, 166, 56, 0.5);
  }
  
  @media (max-width: 768px) {
    .pamphlet__header {
      font-size: 1.4rem;
    }
    .pamphlet__content {
      flex-direction: column;
      gap: 30px;
    }
    .pamphlet__info {
      align-items: center;
      text-align: center;
    }
    .pamphlet__desc {
      font-size: 1.05rem;
    }
    .pamphlet__buttons {
      max-width: 100%;
    }
    .btn--pamphlet, .btn--map {
      font-size: 1.15rem;
    }
  }
  
  /* ==========================================================================
     Footer
     ========================================================================== */
  .footer {
    background-color: var(--color-text);
    color: var(--color-white);
    text-align: center;
    padding: 30px 0;
  }
  
  .footer__logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .footer__copyright {
    font-size: 0.8rem;
    opacity: 0.6;
  }
  
  /* ==========================================================================
     Animations (Reveal)
     ========================================================================== */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ==========================================================================
     Shop Count Badge
     ========================================================================== */
  .shop-count-badge {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    padding: 8px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(230, 106, 135, 0.4);
    margin-top: 15px;
    border: 3px solid var(--color-white);
    animation: bounce-badge 2s infinite;
    letter-spacing: 0.05em;
  }
  
  .shop-count-badge i {
    color: #FFD54F;
    margin: 0 5px;
  }
  
  .shop-count-badge--pamphlet {
    font-size: 1.2rem;
    padding: 6px 20px;
    box-shadow: 0 4px 10px rgba(230, 106, 135, 0.3);
  }
  
  @keyframes bounce-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  
  @media (max-width: 768px) {
    .shop-count-badge {
      font-size: 1.2rem;
      padding: 6px 20px;
    }
    .shop-count-badge--pamphlet {
      font-size: 1.1rem;
      padding: 4px 15px;
    }
  }

  /* ==========================================================================
     Sponsors Section
     ========================================================================== */
  .sponsors__list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    background-color: var(--color-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }
  
  .sponsor__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 250px;
  }
  
  .sponsor__img {
    width: 100%;
    max-width: 200px;
    height: 100px;
    object-fit: contain;
  }
  
  .sponsor__name {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-text);
    text-align: center;
    font-family: var(--font-heading);
  }
  
  @media (max-width: 768px) {
    .sponsors__list {
      gap: 30px;
      padding: 30px 20px;
    }
    .sponsor__item {
      width: 150px;
    }
    .sponsor__img {
      max-width: 120px;
    }
    .sponsor__name {
      font-size: 0.9rem;
    }
    
    /* Utility for SP */
    .hide-sp {
      display: none !important;
    }
  }
