/* ベース変数設定 */
:root {
  --primary: #38b2ac;
  --primary-brown: #8c6239;
  --primary-blue: #2c5282;
  --primary-dark: #2c9d8c;
  --primary-dark-b: #274b70;
  --primary-light: #4fd1ca;
  --primary-light-b: #b08968;
  --primary-bg: #f0fafa;
  --hover: #2980b9;
  --secondary: #6366f1;
  --secondary-dark: #4f46e5;
  --text-dark: #1a202c;
  --text-medium: #4a5568;
  --text-light: #718096;
  --text-light-pretop: #fff;
  --restaurant-primary: #8B4513;
  --restaurant-secondary: #F2D2BD;
  --restaurant-accent: #FFD700;
  --salon-primary: #7851A9;
  --salon-secondary: #E6E6FA;
  --salon-accent: #9370DB;
  --white: #ffffff;
  --accent: #e2b13c;
  --accent-light: #f2d686;
  --gray-100: #f7fafc;
  --gray-200: #edf2f7;
  --gray-300: #e2e8f0;
  --gray-400: #cbd5e0;
  --gray-500: #a0aec0;
  --success: #48bb78;
  --warning: #ed8936;
  --danger: #f56565;
  --border-radius: 8px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s ease;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
}

html {
  scroll-behavior: smooth;
}

.scroll-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #3498db;
  color: white;
  text-decoration: none;
  border: none;
  cursor: pointer;
  margin: 20px;
}

/* ベーススタイル */
body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  /*font-family: var(--font-body);*/
  color: var(--text-dark);
  line-height: 1.7;
  /*background-color: var(--white);*/
  background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

/* ヒーローセクション */
.hero-gift {
  padding-top: 40px;
  position: relative;
  overflow: hidden;
  /*height: 1800px;*/
}

.hero-container {
  position: relative;
  height: 100vh;
  min-height: 700px;
  max-height: 1000px;
  display: flex;
  /*padding-top: 50px;*/
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(22, 89, 82, 0.8) 0%, rgba(47, 201, 186, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
  color: var(--white);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-title-line {
  display: block;
}

.text-accent {
  color: #ffe600;
  position: relative;
}

.text-accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: currentColor;
  opacity: 0.4;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 550px;
  color:white;
}

.hero-cta-group {
  display: flex;
  margin-bottom: 3rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(56, 178, 172, 0.3);
  transition: var(--transition);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(56, 178, 172, 0.4);
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(56, 178, 172, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(56, 178, 172, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(56, 178, 172, 0);
  }
}

.hero-secondary-cta {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 50px;
  transition: var(--transition);
}

.hero-secondary-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

.hero-mockup {
  position: relative;
  height: 600px;
}

.hero-mockup-main {
  width: 100%;
  max-width: 400px;
  position: absolute;
  right: 0;
  bottom: 0px;
  box-shadow: var(--shadow-lg);
  border-radius: 30px;
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) rotateZ(0deg);
  transition: var(--transition);
}

.hero-mockup:hover .hero-mockup-main {
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) rotateZ(0deg);
}

.hero-mockup-floating {
  position: absolute;
  box-shadow: var(--shadow-md);
  border-radius: 15px;
  background: var(--white);
  padding: 10px;
}

.hero-mockup-hands-on {
  width: 300px;
  top: 40%;
  left: 0;
  animation: float-slow 5s ease-in-out infinite;
}

.hero-mockup-sports {
  width: 250px;
  top: 50%;
  left: 100%;
  animation: float-slow 5s ease-in-out infinite;
}

.hero-mockup-culm {
  width: 250px;
  top: 0%;
  left: 10%;
  animation: float-slow 7s ease-in-out infinite;
  animation-delay: 1s;
}

.hero-mockup-food {
  width: 400px;
  bottom: 60%;
  left: 60%;
  animation: float-slow 7s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes float-slow {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

/* アニメーション */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* レスポンシブ調整 */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-container {
    height: auto;
    min-height: 600px;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    justify-content: space-around;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.0rem;
  }
  
  .hero-subtitle {
    font-size: 1.0rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .hero-secondary-cta {
    margin-left: 0 !important;
  }
}


/*横スライダーの実装*/

    .slider-container-gift {
      width: 100%;
      overflow: hidden;
      position: relative;
      padding: 20px 0;
      background-color: #ffffff;
    }
    
    .slider-track {
      display: flex;
      width: calc(200px * 20);
      animation: scroll 60s linear infinite;
    }
    
    .slider-item {
      width: 160px;
      height: 100px;
      margin: 0 20px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .slider-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(calc(-200px * 10));
      }
    }
    
    .header {
      padding: 20px;
      text-align: center;
    }
    
    .content {
      max-width: 800px;
      margin: 0 auto;
      padding: 40px 20px;
    }
    
    h1 {
      color: #333;
    }
    
    p {
      line-height: 1.6;
      color: #666;
    }


/*---------------------------------*/
/* お知らせセクション */
/*---------------------------------*/

        .news-section {
            padding: 80px 0;
            /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
            position: relative;
            overflow: hidden;
        }

        .news-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .container-news {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .news-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
        }

        .news-card:nth-child(1) { animation-delay: 0.1s; }
        .news-card:nth-child(2) { animation-delay: 0.2s; }
        .news-card:nth-child(3) { animation-delay: 0.3s; }

        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .news-image {
            position: relative;
            overflow: hidden;
            height: 200px;
        }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .news-card:hover .news-image img {
            transform: scale(1.05);
        }

        .news-content {
            padding: 30px;
        }

        .news-date {
            display: inline-block;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .news-title {
            font-size: 20px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 15px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .news-card:hover .news-title {
            color: #667eea;
        }

        .news-excerpt {
            color: #718096;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .learn-more {
            display: inline-flex;
            align-items: center;
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .learn-more::after {
            content: '→';
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .learn-more:hover {
            color: #764ba2;
        }

        .learn-more:hover::after {
            transform: translateX(5px);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* モバイル対応 */
        @media (max-width: 768px) {
            .news-section {
                padding: 60px 0;
            }

            .container-news {
                padding: 0 15px;
            }

            .section-title-news {
                font-size: 36px;
            }

            .section-description-news {
                font-size: 16px;
            }

            .news-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .news-content {
                padding: 20px;
            }

            .news-title {
                font-size: 18px;
            }

            .news-excerpt {
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .section-title-news {
                font-size: 28px;
            }

            .news-image {
                height: 180px;
            }

            .news-content {
                padding: 15px;
            }

            .news-title {
                font-size: 16px;
            }
        }


    /* お問い合わせセクション */
    .contact-gift {
      padding: 5rem 2rem;
      background-color: var(--primary-blue);
      color: white;
      text-align: center;
    }
    
    .contact-container-gift {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .contact-title-gift {
      font-size: 2.25rem;
      margin-bottom: 1.5rem;
    }
    
    .contact-text-gift {
      margin-bottom: 2rem;
      opacity: 0.9;
      color: var(--white);
    }

    .primary-btn-gift {
      background-color: white;
      color: var(--primary);
      padding: 0.75rem 2rem;
      border-radius: 4px;
      font-weight: 600;
      text-decoration: none;
      transition: transform 0.3s, box-shadow 0.3s;
      display: inline-block;
    }
    
    .primary-btn-gift:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }


/*使い方手順セクション*/
    
    .section-title-giftusage {
      font-size: 2.5rem;
      color: var(--primary-brown);
      margin-bottom: 1rem;
      font-weight: 700;
    }
    
    .section-subtitle-giftusage {
      font-size: 1.1rem;
      color: var(--gray-600);
      max-width: 800px;
      margin: 0 auto 2rem;
    }
    
    .gift-accent-giftusage {
      display: inline-block;
      position: relative;
    }
    
    .gift-accent-giftusage::after {
      content: "";
      display: block;
      width: 100%;
      height: 10px;
      background-color: var(--accent-light);
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: -1;
    }
    
    /* タブ切り替え */
    .role-tabs-giftusage {
      display: flex;
      justify-content: center;
      margin-bottom: 3rem;
      position: relative;
    }
    
    .role-tab-giftusage {
      padding: 1rem 2rem;
      font-size: 1.1rem;
      font-weight: 600;
      background-color: var(--gray-200);
      color: var(--gray-700);
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      min-width: 200px;
      text-align: center;
      position: relative;
      z-index: 1;
    }
    
    .role-tab-giftusage:first-child {
      border-radius: 8px 0 0 8px;
    }
    
    .role-tab-giftusage:last-child {
      border-radius: 0 8px 8px 0;
    }
    
    .role-tab-giftusage.active {
      background-color: var(--primary-brown);
      color: white;
    }
    
    /* ステップセクション */
    .steps-container-giftusage {
      margin-top: 2rem;
      display: none;
    }
    
    .steps-container-giftusage.active {
      display: block;
      animation: fadeIn 0.5s ease-in-out;
    }
    
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .step-giftusage {
      display: flex;
      margin-bottom: 4rem;
      align-items: center;
      gap: 3rem;
      position: relative;
    }
    
    .step-giftusage:last-child {
      margin-bottom: 0;
    }
    
    .step-giftusage::after {
      content: "";
      position: absolute;
      top: 100%;
      left: 100px;
      transform: translateY(-50%);
      width: 2px;
      height: 80px;
      background-color: var(--gray-300);
      display: none;
    }
    
    .step-giftusage:last-child::after {
      display: none;
    }
    
    .step-number-giftusage {
      width: 80px;
      height: 80px;
      background-color: var(--primary-brown);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      font-weight: 700;
      flex-shrink: 0;
      position: relative;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    }
    
    .step-content-giftusage {
      flex: 1;
    }
    
    .step-image-giftusage {
      flex: 0 0 45%;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    
    .step-image-giftusage img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }
    
    .step-giftusage:hover .step-image-giftusage img {
      transform: scale(1.03);
    }
    
    .step-title-giftusage {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: var(--primary-brown);
    }
    
    .step-description-giftusage {
      margin-bottom: 1.5rem;
      color: var(--gray-700);
      font-size: 1.05rem;
    }
    
    .step-tips-giftusage {
      background-color: var(--accent-light);
      padding: 1rem;
      border-radius: 8px;
      margin-top: 1.5rem;
    }
    
    .step-tips-giftusage h4 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
      color: var(--primary-dark);
    }
    
    .step-tips-giftusage p {
      color: var(--gray-800);
      font-size: 0.95rem;
    }
    
    /* 贈り主・受取人のスタイル */
    .sender-steps-giftusage .step-number-giftusage {
      background-color: var(--primary-brown);
    }
    
    .receiver-steps-giftusage .step-number-giftusage {
      background-color: var(--accent);
    }
    
    /* CTAセクション */
    .cta-section-giftusage {
      text-align: center;
      margin-top: 5rem;
      padding: 3rem;
      background-color: var(--primary-light-b);
      border-radius: 12px;
      color: white;
    }
    
    .cta-title-giftusage {
      font-size: 2rem;
      margin-bottom: 1.5rem;
    }
    
    .cta-description-giftusage {
      margin-bottom: 2rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: white;
    }
    
    .cta-button-giftusage {
      display: inline-block;
      background-color: var(--accent);
      color: var(--dark);
      padding: 1rem 2.5rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1.1rem;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .cta-button-giftusage:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
      background-color: var(--accent-light);
    }
    
    /* アイコン*/
    .icon {
      display: inline-block;
      width: 24px;
      height: 24px;
      margin-right: 0.5rem;
      vertical-align: middle;
    }
    
    /* レスポンシブ対応 */
    @media (max-width: 992px) {
      .step-giftusage {
        flex-direction: column;
        gap: 2rem;
      }
      
      .step-image-giftusage {
        flex: 0 0 100%;
        order: -1;
      }
      
      .step-giftusage::after {
        left: 40px;
      }
      
      .step-number-giftusage {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
      }
    }
    
    @media (max-width: 768px) {
      .container {
        padding: 1.5rem;
      }
      
      .section-title-giftusage {
        font-size: 2rem;
      }
      
      .role-tab-giftusage {
        padding: 0.75rem 1.5rem;
        min-width: 150px;
      }
    }
    
    @media (max-width: 576px) {
      .cta-section-giftusage {
        padding: 2rem 1rem;
      }
      
      .cta-title-giftusage {
        font-size: 1.75rem;
      }
    }




    /* ヘッダー */
    .header-service {
      background: linear-gradient(45deg, var(--primary-dark-b), var(--primary));
      color: white;
      text-align: center;
      padding: 5rem 2rem;
      position: relative;
      overflow: hidden;
    }
    
    .header-service::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('/media/documents/apgift/Cosmetics') center/cover no-repeat;
      opacity: 0.2;
      z-index: 1;
    }
    
    .header-content-service {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      color: white;
    }
    
    .header-service h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }
    
    .header-service p {
      font-size: 1.25rem;
      opacity: 0.9;
      margin-bottom: 2rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .header-buttons-service {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-outline-service {
      border: 2px solid white;
      color: white;
    }
    
    .btn-outline-service:hover {
      background-color: rgba(255, 255, 255, 0.1);
      transform: translateY(-3px);
    }

    .btn-service {
      display: inline-block;
      padding: 0.8rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
    }

    .btn-primary-service {
      background-color: var(--accent);
      color: white;
      box-shadow: var(--shadow);
    }
    
    .btn-primary-service:hover {
      background-color: var(--accent-light);
      transform: translateY(-3px);
    }


      /* サービス概要セクション */
    
/*    .container {
      max-width: 1200px;
      margin: 0 auto;
    }
*/    
    .section-title-service {
      text-align: center;
      margin-bottom: 3rem;
    }
    
    .section-title-service h2 {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
    }
    
    .section-title-service h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      width: 80px;
      height: 4px;
      background-color: var(--accent);
      transform: translateX(-50%);
    }
    
    .section-title-service p {
      color: var(--gray-600);
      max-width: 700px;
      margin: 0 auto;
      font-size: 1.1rem;
    }

    /* サービスタイプ */
    .service-types-service {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
      margin-bottom: 4rem;
    }
    
    .service-card-service {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      background-color: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }
    
    .service-card-service:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    .service-image-service {
      height: 250px;
      overflow: hidden;
    }
    
    .service-image-service img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .service-card-service:hover .service-image-service img {
      transform: scale(1.05);
    }
    
    .service-content-service {
      padding: 2rem;
    }
    
    .service-content-service h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: var(--primary);
    }
    
    .service-content-service p {
      color: var(--gray-700);
      margin-bottom: 1.5rem;
    }
    
    .service-features-service {
      margin-bottom: 1.5rem;
    }
    
    .feature-item-service {
      display: flex;
      align-items: center;
      margin-bottom: 0.75rem;
    }
    
    .feature-icon-service {
      width: 24px;
      height: 24px;
      background-color: var(--primary-light);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 0.75rem;
      flex-shrink: 0;
    }
    
    .feature-text-service {
      font-size: 0.95rem;
      color: var(--gray-700);
    }


    /* サービス概要セクション */
    .section-service {
      padding-top: 5rem;
      padding-bottom: 2rem;
    }

/*    .container {
      max-width: 1200px;
      margin: 0 auto;
    }
*/    

    /* 体験プラン */
/*    .experience-plans-service {
      margin-top: 0rem;
    }
*/    
    .plans-container-service {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 2rem;
    }
    
    .plan-card-service {
      background-color: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }
    
    .plan-card-service:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    .plan-image-service {
      height: 180px;
      overflow: hidden;
      position: relative;
    }
    
    .plan-image-service img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .plan-card-service:hover .plan-image-service img {
      transform: scale(1.05);
    }
    
    .plan-category-service {
      position: absolute;
      top: 15px;
      right: 15px;
      background-color: var(--accent);
      color: white;
      font-size: 0.8rem;
      padding: 0.3rem 1rem;
      border-radius: 50px;
      font-weight: 600;
    }

    .plan-category-service-left {
      position: absolute;
      top: 15px;
      left: 15px;
      background-color: var(--secondary-dark);
      color: white;
      font-size: 0.8rem;
      padding: 0.3rem 1rem;
      border-radius: 50px;
      font-weight: 600;
    }
    
    .plan-content-service {
      padding: 1.5rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    
    .plan-title-service {
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
      color: var(--primary);
    }
    
    .plan-description-service-service {
      font-size: 0.95rem;
      color: var(--gray-700);
      margin-bottom: 1rem;
      flex-grow: 1;
    }
    
    .plan-details-service {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: auto;
    }
    
    .plan-price-service {
      font-weight: 700;
      color: var(--dark);
    }
    
    .plan-price-service span {
      font-size: 0.85rem;
      color: var(--gray-600);
      font-weight: normal;
    }
    
    .plan-link-service {
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: var(--transition);
    }
    
    .plan-link-service:hover {
      color: var(--primary-dark);
    }

    /* 店舗貸し切りセクション */
    .rental-section-service {
      background-color: var(--gray-100);
      position: relative;
    }
    
    .space-features-service {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2rem;
    }
    
    .space-feature-service {
      background-color: white;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }
    
    .space-feature-service:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .feature-header-service {
      display: flex;
      align-items: center;
      margin-bottom: 1.25rem;
    }
    
    .feature-icon-large-service {
      width: 50px;
      height: 50px;
      background-color: var(--primary-light);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      margin-right: 1rem;
    }
    
    .feature-header-service h4 {
      font-size: 1.25rem;
      color: var(--primary);
    }
    
    .space-feature-service p {
      color: var(--gray-700);
      font-size: 0.95rem;
    }

    /* レスポンシブ調整 */
    @media (max-width: 768px) {
      .header-service h1 {
        font-size: 2.5rem;
      }
      
      .section-title-service h2 {
        font-size: 2rem;
      }
      
      .service-types-service {
        flex-direction: column;
        align-items: center;
      }
      
      .service-card-service {
        width: 100%;
      }
    }
    
    @media (max-width: 576px) {
      .header-service h1 {
        font-size: 2rem;
      }
      
      .header-service p {
        font-size: 1.1rem;
      }
      
      .section-service {
        padding: 3rem 1.5rem;
      }
    }


/*横スライダー　モバイル対応　店舗画像*/

        .gallery-pretop {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            /*margin-top: 3rem;*/
        }

        /* スマホ用スライダーレイアウト */
        .shop-slider-pic {
            display: none; /* デフォルトでは非表示 */
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            gap: 0px;
            padding: 20px 10px 40px;
        }

        /* スクロールバーを非表示にする */
        .shop-slider-pic::-webkit-scrollbar {
            display: none;
        }
        
        .shop-slider-pic {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* PC/タブレット用のカードスタイル */
        .gallery-pretop .gallery-item-pretop {
          height: 100%;
        }

        /* スマホ用のカードスタイル */
        .shop-slider-pic .gallery-item-pretop {
            flex: 0 0 auto;
            width: 85%;
            min-width: 250px;
            scroll-snap-align: start;
        }


        /* スライダー用コントロール */
        .slider-controls-s-shop {
            display: none; /* デフォルトでは非表示 */
            justify-content: center;
            margin-top: 20px;
            gap: 10px;
        }

        .slider-dot-s-shop {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
        }

        .slider-dot-s-shop:hover {
            transform: scale(1.2);
        }

        .slider-dot-s-shop.active {
            background: #ff6b6b;
            transform: scale(1.3);
        }


        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            /* スマホサイズでグリッドを非表示、スライダーを表示 */
            .gallery-pretop {
                display: none;
            }
            
            .shop-slider-pic {
                display: flex;
            }

            .slider-controls-s-shop {
                display: flex;
            }

            .slider-nav-s-shop {
                display: flex;
            }
            
        }


/*横スライダー　モバイル対応　プレゼントプラン*/

        /* スマホ用スライダーレイアウト */
        .cards-slider-e-premob {
            display: none; /* デフォルトでは非表示 */
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            gap: 0px;
            padding: 20px 10px 40px;
        }

        /* スクロールバーを非表示にする */
        .cards-slider-e-premob::-webkit-scrollbar {
            display: none;
        }
        
        .cards-slider-e-premob {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* PC/タブレット用のカードスタイル */
        .plans-container-service .plan-card-service {
          height: 100%;
        }

        /* スマホ用のカードスタイル */
        .cards-slider-e-premob .plan-card-service {
            flex: 0 0 auto;
            width: 85%;
            min-width: 250px;
            scroll-snap-align: start;
        }


        /* スライダー用コントロール */
        .slider-controls-e-premob {
            display: none; /* デフォルトでは非表示 */
            justify-content: center;
            margin-top: 20px;
            gap: 10px;
        }

        .slider-dot-e-premob {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
        }

        .slider-dot-e-premob:hover {
            transform: scale(1.2);
        }

        .slider-dot-e-premob.active {
            background: #ff6b6b;
            transform: scale(1.3);
        }


        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            /* スマホサイズでグリッドを非表示、スライダーを表示 */
            .plans-container-service {
                display: none;
            }
            
            .cards-slider-e-premob {
                display: flex;
            }

            .slider-controls-e-premob {
                display: flex;
            }

            .slider-nav-e-premob {
                display: flex;
            }
            
        }

/*横スライダー　モバイル対応　ミートアップの流れ*/

        .container-premob {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .cards-container-premob {
            position: relative;
            margin: 30px 0;
        }

        /* PC・タブレット用グリッドレイアウト */
        .cards-grid-premob {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            padding: 10px 0 30px;
        }

        /* スマホ用スライダーレイアウト */
        .cards-slider-premob {
            display: none; /* デフォルトでは非表示 */
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            gap: 20px;
            padding: 20px 10px 40px;
        }

        /* スクロールバーを非表示にする */
        .cards-slider-premob::-webkit-scrollbar {
            display: none;
        }
        
        .cards-slider-premob {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .card-premob {
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        /* PCとタブレット用のカードスタイル */
        .cards-grid-premob .card-premob {
            height: 100%;
        }

        /* スマホ用のカードスタイル */
        .cards-slider-premob .card-premob {
            flex: 0 0 auto;
            width: 85%;
            min-width: 250px;
            scroll-snap-align: start;
        }

        .card-premob:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .icon-container-premob {
            height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--start-color), var(--end-color));
            color: white;
            position: relative;
            overflow: hidden;
        }

        .icon-container-premob::before {
            content: '';
            position: absolute;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -50px;
            right: -50px;
            z-index: 1;
        }

        .icon-container-premob::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            bottom: -30px;
            left: -30px;
        }

        .icon-premob {
            font-size: 50px;
            z-index: 2;
            filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
        }

        .card-number-premob {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(255, 255, 255, 0.3);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 16px;
            z-index: 5;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

        .card-content-premob {
            padding: 25px 20px;
            position: relative;
        }

        .card-content-premob::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 5px;
            background: rgba(0, 0, 0, 0.05);
            border-radius: 10px;
        }

        .card-title-premob {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 12px;
            color: #333;
        }

        .card-description-premob {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* スライダー用コントロール */
        .slider-controls-premob {
            display: none; /* デフォルトでは非表示 */
            justify-content: center;
            margin-top: 20px;
            gap: 10px;
        }

        .slider-dot-premob {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
        }

        .slider-dot-premob:hover {
            transform: scale(1.2);
        }

        .slider-dot-premob.active {
            background: #ff6b6b;
            transform: scale(1.3);
        }

        /* 矢印ナビゲーション */
        .slider-nav-premob {
            display: none; /* デフォルトでは非表示 */
            position: absolute;
            top: 40%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 10;
            border: none;
            color: #333;
            font-size: 20px;
            transition: all 0.3s ease;
        }

        .slider-nav-premob:hover {
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transform: translateY(-50%) scale(1.1);
        }

        .slider-nav-premob.prev {
            left: 10px;
        }

        .slider-nav-premob.next {
            right: 10px;
        }

        .scroll-prompt-premob {
            display: none;
            text-align: center;
            color: #888;
            font-size: 14px;
            margin-top: 15px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { opacity: 0.6; }
            50% { opacity: 1; }
            100% { opacity: 0.6; }
        }

        /* アイコンアニメーション */
        @keyframes wobble {
            0% { transform: translateX(0%); }
            15% { transform: translateX(-15%) rotate(-5deg); }
            30% { transform: translateX(10%) rotate(3deg); }
            45% { transform: translateX(-5%) rotate(-3deg); }
            60% { transform: translateX(5%) rotate(2deg); }
            75% { transform: translateX(-2%) rotate(-1deg); }
            100% { transform: translateX(0%); }
        }

        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            /* スマホサイズでグリッドを非表示、スライダーを表示 */
            .plans-container-service {
                display: none;
            }

            .cards-grid-premob {
                display: none;
            }
            
            .cards-slider-premob {
                display: flex;
            }
            
            .slider-controls-premob {
                display: flex;
            }
            
            .slider-nav-premob {
                display: flex;
            }
            
            .scroll-prompt-premob {
                display: block;
            }
            
            h1 {
                font-size: 22px;
            }
        }

/*----------------------*/
/*店舗ページ　トップ*/
/*----------------------*/


        .hero-section-giftop {
            position: relative;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-background-giftop {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            /*background-image: url(2_top.jpg);*/
            background-size: cover;
            background-position: center;
            z-index: 1;
        }

        /* 実際の画像を使用する場合のスタイル */
        .hero-image-giftop {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                45deg,
                rgba(0, 0, 0, 0.4) 0%,
                rgba(0, 0, 0, 0.2) 50%,
                rgba(0, 0, 0, 0.3) 100%
            );
            z-index: 2;
        }

        .hero-content-giftop {
            position: relative;
            z-index: 3;
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 20px;
            animation: fadeInUp 1.2s ease-out;
            width: 100%;
        }

        .store-name-giftop {
            color: white;
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            letter-spacing: 2px;
            background: linear-gradient(45deg, #fff, #f0f0f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .store-name-giftop::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(45deg, #ff6b6b, #ffa500);
            border-radius: 2px;
        }

        .hero-text-giftop {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 30px;
            font-weight: 300;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            opacity: 0.95;
            line-height: 1.8;
        }

        .hero-subtitle-giftop {
            color: white;
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 40px;
            font-style: italic;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(45deg, #ff6b6b, #ffa500);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
            background: linear-gradient(45deg, #ff5252, #ff9800);
        }

        .decorative-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .floating-element {
            position: absolute;
            width: 20px;
            height: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: -1s;
        }

        .floating-element:nth-child(2) {
            top: 60%;
            right: 15%;
            animation-delay: -3s;
        }

        .floating-element:nth-child(3) {
            bottom: 30%;
            left: 20%;
            animation-delay: -2s;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            color: white;
            text-align: center;
            animation: bounce 2s infinite;
        }

        .scroll-indicator::before {
            content: '';
            display: block;
            width: 2px;
            height: 30px;
            background: white;
            margin: 0 auto 10px;
            border-radius: 1px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        /* レスポンシブデザイン */
        @media (max-width: 768px) {
            .hero-section-giftop {
                height: 100vh;
                min-height: 500px;
            }
            
            .hero-content-giftop {
                padding: 0 15px;
                max-width: 90%;
            }
            
            .store-name-giftop {
                font-size: 2.8rem;
                margin-bottom: 15px;
                letter-spacing: 1px;
            }
            
            .hero-text-giftop {
                font-size: 1.1rem;
                margin-bottom: 25px;
                line-height: 1.6;
            }
            
            .hero-subtitle-giftop {
                font-size: 0.95rem;
                margin-bottom: 35px;
            }
            
            .cta-button {
                padding: 12px 30px;
                font-size: 1rem;
            }
            
            .floating-element {
                width: 15px;
                height: 15px;
            }
        }

        @media (max-width: 480px) {
            .hero-section-giftop {
                height: 100vh;
                min-height: 450px;
            }
            
            .hero-content-giftop {
                padding: 0 10px;
                max-width: 95%;
            }
            
            .store-name-giftop {
                font-size: 2.2rem;
                margin-bottom: 12px;
                letter-spacing: 0.5px;
            }
            
            .store-name-giftop::after {
                width: 60px;
                height: 2px;
            }
            
            .hero-text-giftop {
                font-size: 1rem;
                margin-bottom: 20px;
                line-height: 1.5;
            }
            
            .hero-subtitle-giftop {
                font-size: 0.9rem;
                margin-bottom: 30px;
            }
            
            .cta-button {
                padding: 10px 25px;
                font-size: 0.95rem;
            }
            
            .floating-element {
                width: 12px;
                height: 12px;
            }
            
            .scroll-indicator {
                bottom: 20px;
            }
        }

        @media (max-width: 320px) {
            .hero-section-giftop {
                min-height: 400px;
            }
            
            .store-name-giftop {
                font-size: 1.8rem;
            }
            
            .hero-text-giftop {
                font-size: 0.95rem;
            }
            
            .hero-subtitle-giftop {
                font-size: 0.85rem;
            }
            
            .cta-button {
                padding: 8px 20px;
                font-size: 0.9rem;
            }
        }

        /* 横向きスマートフォン対応 */
        @media (max-height: 500px) and (orientation: landscape) {
            .hero-section-giftop {
                height: 100vh;
                min-height: 100vh;
            }
            
            .hero-content-giftop {
                padding: 0 20px;
            }
            
            .store-name-giftop {
                font-size: 2rem;
                margin-bottom: 8px;
            }
            
            .hero-text-giftop {
                font-size: 1rem;
                margin-bottom: 15px;
            }
            
            .hero-subtitle-giftop {
                font-size: 0.9rem;
                margin-bottom: 20px;
            }
            
            .cta-button {
                padding: 8px 25px;
                font-size: 0.9rem;
            }
            
            .scroll-indicator {
                bottom: 15px;
            }
        }

        /* 高解像度デバイス対応 */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .hero-background-giftop {
                background-image: 
                    linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            }
        }

        .hero-pretop {
            padding-top: 20px !important;
            height: 70vh;
            /*background: url(/media/documents/top/背景_ホワイト.jpg) !important;*/
            /*background: url("/media/documents/apgift/kichikichi_pic03.png") center center repeat;*/
            /*background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('');*/
            background-size: cover;
            background-position: center;
            color: var(--text-light-pretop);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            /*padding: 0 1rem;*/
        }

        .hero-pretop h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            opacity: 0;
            color:var(--primary-light);
            /*background-color: var(--primary-light);*/
            /*border-radius: 20px;*/
        }

        .hero-pretop p {
            font-size: 1.5rem;
            max-width: 800px;
            margin-bottom: 2rem;
            color: white;
            opacity: 0;            
        }

        .hero-buttons-pretop {
            display: flex;
            gap: 1rem;
            opacity: 0;
        }

        .section-pretop {
            padding: 5rem 10%;
        }

        .section-title-pretop {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title-pretop::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
        }

        .restaurant-pretop .section-title-pretop::after {
            background-color: var(--restaurant-accent);
        }

        .salon-pretop .section-title-pretop::after {
            background-color: var(--salon-primary);
        }

        .features-pretop {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card-pretop {
            background-color: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            text-align: center;
        }

        .feature-card-pretop:hover {
            transform: translateY(-10px);
        }

        .feature-icon-pretop {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .restaurant-pretop .feature-icon-pretop {
            color: var(--restaurant-primary);
        }

        .salon-pretop .feature-icon-pretop {
            color: var(--salon-primary);
        }

        .animated-icon-pretop {
            display: inline-block;
        }

        .feature-title-pretop {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .feature-desc-pretop {
            color: #666;
        }

        .gallery-item-pretop {
            height: 250px;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .gallery-item-pretop img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item-pretop:hover img {
            transform: scale(1.1);
        }

        .testimonials-pretop {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
            overflow-x: auto;
            padding-bottom: 1rem;
        }

        .testimonial-card-pretop {
            flex: 0 0 350px;
            background-color: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .testimonial-text-pretop {
            font-style: italic;
            margin-bottom: 1rem;
        }

        .testimonial-author-pretop {
            font-weight: 600;
        }

        .cta-pretop {
            text-align: center;
            margin-top: 3rem;
        }

        .btn-pretop {
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, background-color 0.3s;
        }

        .btn-pretop:hover {
            transform: translateY(-3px);
        }

        .btn-restaurant-pretop {
            background-color: var(--restaurant-primary);
            color: var(--white);
        }

        .btn-restaurant-pretop:hover {
            background-color: var(--restaurant-accent);
        }

        .btn-salon-pretop {
            background-color: var(--salon-primary);
            color: var(--text-light);
        }

        .btn-salon-pretop:hover {
            background-color: var(--salon-accent);
        }

        /* レスポンシブデザイン */
        @media (max-width: 768px) {
            .hero-pretop h1 {
                font-size: 2.5rem;
            }

            .hero-pretop p {
                font-size: 1.2rem;
            }

            .section-pretop {
                padding: 3rem 5%;
            }

        }

        /* モバイル向け */
        @media (max-width: 480px) {
            .hero-pretop h1 {
                font-size: 2rem;
            }

            .hero-buttons-pretop {
                flex-direction: column;
            }

        }

/*------------------------
お店紹介エリア
------------------------        
*/

        /* セクション */
        .section-shopinf {
          /*text-align: center;*/
          margin-top: 5rem;
          padding: 3rem;
          /*background-color: var(--primary-light-b);*/
          /*background: url(/media/documents/top/背景シルバー.jpg)*/
          background: url('/media/documents/top/背景シルバー.jpg') center/cover no-repeat;
          border-radius: 12px;
          color: block;
        }

        .container-shopinf {
            max-width: 1200px;
            margin: 0 auto;
            /*padding: 0 0px;*/
        }
                
        .header-content-shopinf {
            position: relative;
            z-index: 1;
            text-align: center;
        }
        .tagline-shopinf {
            font-size: 1.2rem;
            margin-bottom: 30px;
            font-weight: 300;
        }
        
        .highlight-bar-shopinf {
            display: flex;
            justify-content: space-between;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-top: -30px;
            position: relative;
            z-index: 2;
            flex-wrap: wrap;
        }
        
        .highlight-item-shopinf {
            flex: 1;
            text-align: center;
            padding: 20px 10px;
            transition: all 0.3s ease;
            position: relative;
            min-width: 120px;
        }
        
        .highlight-item-shopinf:not(:last-child)::after {
            content: "";
            position: absolute;
            right: 0;
            top: 25%;
            height: 50%;
            width: 1px;
            background-color: #eee;
        }
        
        .highlight-item-shopinf i {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: #ff7e5f;
        }
        
        .highlight-label-shopinf {
            font-weight: bold;
            font-size: 0.9rem;
            color: #888;
        }
        
        .highlight-value-shopinf {
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        .main-shopinf {
            padding: 30px 0;
        }
        
        
        .h2-shopinf {
            font-size: 2rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ff7e5f;
            display: inline-block;
        }
        
        /* タブスタイル */
        .tabs-shopinf {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            white-space: nowrap;
            padding-bottom: 5px;
        }
        
        .tab-btn-shopinf {
            padding: 12px 20px;
            background-color: #f1f1f1;
            border: none;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            border-radius: 8px 8px 0 0;
            margin: 0 5px;
            color: #666;
        }
        
        .tab-btn-shopinf:hover {
            background-color: #e1e1e1;
        }
        
        .tab-btn-shopinf.active {
            background-color: #ff7e5f;
            color: white;
        }
        
        .tab-content-shopinf {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .tab-content-shopinf.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .info-grid-shopinf {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }
        
        .info-card-shopinf {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .info-card-shopinf:hover {
            transform: translateY(-5px);
        }
        
        .info-header-shopinf {
            background-color: #ff7e5f;
            color: white;
            padding: 15px;
            font-weight: bold;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
        }
        
        .info-header-shopinf i {
            margin-right: 10px;
        }
        
        .info-content-shopinf {
            padding: 20px;
        }
        
        .info-list-shopinf {
            list-style: none;
        }
        
        .info-list-shopinf li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .info-list-shopinf li:last-child {
            margin-bottom: 0;
        }
        
        .info-list-shopinf i {
            color: #ff7e5f;
            margin-right: 10px;
            margin-top: 4px;
            min-width: 16px;
            text-align: center;
        }
        
        .map-container-shopinf {
            height: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-top: 20px;
        }
        
        .gallery-shopinf {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .gallery-item-shopinf {
            border-radius: 10px;
            overflow: hidden;
            height: 150px;
            position: relative;
        }
        
        .gallery-item-shopinf img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .gallery-item-shopinf:hover img {
            transform: scale(1.05);
        }
        
        .cta-shopinf {
            text-align: center;
            margin: 40px 0;
            padding: 30px 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .cta-title-shopinf {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #333;
        }
        
        .cta-text-shopinf {
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }
        
        .btn-shopinf {
            display: inline-block;
            background: linear-gradient(135deg, #ff7e5f, #feb47b);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255,126,95,0.3);
        }
        
        .btn-shopinf:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255,126,95,0.4);
        }
                
        .social-links-shopinf {
            margin: 20px 0;
        }
        
        .social-links-shopinf a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: #444;
            color: white;
            border-radius: 50%;
            line-height: 40px;
            margin: 0 5px;
            transition: all 0.3s ease;
        }
        
        .social-links-shopinf a:hover {
            background-color: #ff7e5f;
            transform: translateY(-3px);
        }
        
        .copyright-shopinf {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #aaa;
        }
        
        /* モバイルメニュー */
        .mobile-menu-btn-shopinf {
            display: none;
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff7e5f, #feb47b);
            color: white;
            border: none;
            font-size: 24px;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .mobile-nav-shopinf {
            display: none;
            position: fixed;
            bottom: 90px;
            right: 20px;
            z-index: 999;
        }
        
        .mobile-nav-shopinf.active {
            display: block;
        }
        
        .mobile-nav-item-shopinf {
            display: block;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: white;
            color: #ff7e5f;
            margin-bottom: 10px;
            text-align: center;
            line-height: 50px;
            text-decoration: none;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .mobile-nav-item-shopinf:hover {
            transform: scale(1.1);
        }
        
        @media (max-width: 768px) {
            h2 {
                font-size: 3.0rem;
            }
            
            .highlight-bar-shopinf {
                flex-direction: column;
                margin-left: 10px;
                margin-right: 10px;
            }
            
            .highlight-item-shopinf:not(:last-child)::after {
                width: 100%;
                height: 1px;
                right: 10%;
                top: auto;
                bottom: 0;
            }
            
            .info-grid-shopinf {
                grid-template-columns: 1fr;
            }
            
            .tabs-shopinf {
                padding-bottom: 10px;
            }
            
            .tab-btn-shopinf {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
            
            .mobile-menu-btn-shopinf {
                display: block;
            }
            
            .gallery-shopinf {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .cta-title-shopinf {
                font-size: 1.8rem;
            }
        }

        /* 追加: テキストのスタイル統一 */
        .simple-title-shopinf {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }
        
        .simple-text-shopinf {
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        /* 追加: コンテンツカード */
        .content-card-shopinf {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 20px;
            margin-bottom: 20px;
        }

        .stor_acccess_map {
          width: 100%;
          height: 100%;
          object-fit: cover
        }


/*---------------------------------------------
ポイント購入エリアCSS
---------------------------------------------
*/
        .plans-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .plan-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            border: 2px solid transparent;
        }
        
        .plan-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        
        .plan-header {
            padding: 20px;
            text-align: center;
            color: white;
            position: relative;
        }
        
        .bronze .plan-header {
            background: linear-gradient(135deg, #cd7f32, #a56c2e);
        }
        
        .silver .plan-header {
            background: linear-gradient(135deg, #c0c0c0, #a8a9ad);
        }
        
        .gold .plan-header {
            background: linear-gradient(135deg, #ffd700, #daa520);
        }
        
        .premium .plan-header {
            background: linear-gradient(135deg, #9b59b6, #8e44ad);
        }
        
        .custom .plan-header {
            background: linear-gradient(135deg, #2ecc71, #27ae60);
        }
        
        .plan-name {
            font-size: 24px;
            font-weight: bold;
            margin: 0;
            letter-spacing: 1px;
        }
        
        .plan-points {
            font-size: 18px;
            font-weight: 300;
            margin: 10px 0;
        }
        
        .custom-input {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }
        
        .custom-input input {
            width: 100px;
            padding: 5px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 16px;
            text-align: center;
            font-weight: bold;
        }
        
        .custom-input input:focus {
            outline: none;
            border-color: white;
        }
        
        .plan-price {
            font-size: 22px;
            font-weight: bold;
            margin: 15px 0 5px;
        }
        
        .plan-content {
            padding: 20px;
            text-align: center;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .plan-description {
            color: #7f8c8d;
            font-size: 14px;
        }
        
        .plan-select {
            padding: 15px;
            border-top: 1px solid #eee;
            text-align: center;
            background: var(--light-bg);
        }
        
        .radio-container {
            position: relative;
            padding: 10px;
        }
        
        .custom-radio {
            display: inline-block;
            position: relative;
            cursor: pointer;
            user-select: none;
            width: 100%;
        }
        
        .custom-radio input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }
        
        .radio-button {
            height: 22px;
            width: 22px;
            background-color: #eee;
            border: 2px solid #ddd;
            border-radius: 50%;
            display: inline-block;
            position: relative;
            transition: var(--transition);
        }
        
        .custom-radio:hover .radio-button {
            background-color: #ccc;
        }
        
        .custom-radio input:checked ~ .radio-button {
            border-color: var(--primary);
            background-color: white;
        }
        
        .radio-button:after {
            content: "";
            position: absolute;
            display: none;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary);
        }
        
        .custom-radio input:checked ~ .radio-button:after {
            display: block;
        }
        
        .select-text {
            margin-left: 10px;
            font-weight: 500;
            color: #555;
        }
        
        .purchase-btn {
            display: block;
            width: 100%;
            padding: 15px;
            margin-top: 20px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 20px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
            text-align: center;
        }
        
        .purchase-btn:hover {
            background-color: var(--hover);
        }
        
        .purchase-note {
            display: block;
            font-size: 12px;
            color: var(--secondary-dark);
            /*color: #95a5a6;*/
            margin-top: 5px;
        }
        
        .selected {
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.3);
        }
        
        .icon {
            font-size: 20px;
            margin-right: 8px;
        }
        
        .recommended {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #e74c3c;
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            box-shadow: var(--shadow);
            transform: rotate(15deg);
            z-index: 2;
        }
        
        @media (max-width: 768px) {
            .plans-container {
                grid-template-columns: 1fr;
            }
            
            .container {
                padding: 15px;
            }
        }


/*---------------------------------------------
提携店舗リスト画面　CSS
---------------------------------------------
*/

        .container-storelist {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header-storelist {
            color: white;
            /*background-color: #fff;*/
            background: linear-gradient(45deg, var(--primary-dark-b), var(--primary));
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 20px 0;
            margin-bottom: 20px;
        }

        .header-storelist h1 {
            /*color: #2c5530;*/
            color: white;
            font-size: 28px;
            text-align: center;
            font-weight: bold;
        }

        /* Search Section */
        .search-section-storelist {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }

        .search-title-storelist {
            font-size: 20px;
            font-weight: bold;
            color: #2c5530;
            margin-bottom: 20px;
            text-align: center;
        }

        .search-form-storelist {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: end;
        }

        .search-group-storelist {
            flex: 1;
            min-width: 200px;
        }

        .search-group-storelist label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #555;
        }

        .form-select-storelist,
        .form-input-storelist {
            width: 100%;
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 6px;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        .form-select-storelist:focus,
        .form-input-storelist:focus {
            outline: none;
            border-color: #2c5530;
        }

        .search-btn-storelist {
            background-color: #2c5530;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
            height: fit-content;
            text-decoration: none;
            display: inline-block;
        }

        .search-btn-storelist:hover {
            background-color: #1e3a21;
        }

        /* Results Section */
        .results-section-storelist {
            margin-bottom: 30px;
        }

        .results-header-storelist {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding: 0 10px;
        }

        .results-count-storelist {
            font-size: 18px;
            font-weight: bold;
            color: #2c5530;
        }

        .sort-select-storelist {
            padding: 8px 12px;
            border: 2px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
        }

        /* Store Grid */
        .store-grid-storelist {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .store-card-storelist {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .store-card-storelist:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .store-image-storelist {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            font-weight: bold;
            position: relative;
            overflow: hidden;
        }

        .store-image-storelist img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .store-image-storelist::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255,255,255,0.1) 10px,
                rgba(255,255,255,0.1) 20px
            );
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { transform: translate(-100%, -100%) rotate(45deg); }
            100% { transform: translate(100%, 100%) rotate(45deg); }
        }

        .store-content-storelist {
            padding: 20px;
        }

        .store-name-storelist {
            font-size: 18px;
            font-weight: bold;
            color: #2c5530;
            margin-bottom: 8px;
        }

        .store-category-storelist {
            color: #666;
            font-size: 14px;
            margin-bottom: 8px;
        }

        .store-location-storelist {
            color: #888;
            font-size: 14px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }

        .store-location-storelist::before {
            content: '📍';
            margin-right: 5px;
        }

        .store-description-storelist {
            color: #666;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .store-price-storelist {
            font-size: 16px;
            font-weight: bold;
            color: #e74c3c;
            text-align: right;
        }

        /* Pagination */
        .pagination-storelist {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 40px;
        }

        .pagination-storelist a,
        .pagination-storelist span {
            padding: 10px 15px;
            border: 2px solid #ddd;
            background-color: #fff;
            color: #666;
            border-radius: 6px;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 14px;
        }

        .pagination-storelist a:hover {
            border-color: #2c5530;
            color: #2c5530;
        }

        .pagination-storelist .current-storelist {
            background-color: #2c5530;
            color: white;
            border-color: #2c5530;
        }

        .pagination-storelist .disabled-storelist {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container-storelist {
                padding: 0 15px;
            }

            .header-storelist h1 {
                font-size: 24px;
            }

            .search-section-storelist {
                padding: 20px;
            }

            .search-form-storelist {
                flex-direction: column;
                gap: 15px;
            }

            .search-group-storelist {
                min-width: auto;
            }

            .results-header-storelist {
                flex-direction: column;
                gap: 15px;
                align-items: stretch;
            }

            .store-grid-storelist {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .store-card-storelist {
                margin: 0 5px;
            }

            .pagination-storelist {
                flex-wrap: wrap;
                gap: 5px;
            }

            .pagination-storelist a,
            .pagination-storelist span {
                padding: 8px 12px;
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .store-grid-storelist {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .store-content-storelist {
                padding: 15px;
            }

            .search-section-storelist {
                padding: 15px;
            }

            .pagination-storelist a,
            .pagination-storelist span {
                padding: 6px 8px;
                font-size: 11px;
            }
        }
