: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;
  --text-yellow: #ffff00;
  --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;
}

/*-------------------------------------
-------------------------------------
トップ　CSS
-------------------------------------
-------------------------------------*/

        .section-oimo {
            padding: 6rem 0;
        }

        /* Features Section */
        .features-oimo {
            /*background: #f8faff;*/
            position: relative;
        }

        .features-oimo::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            /*background: linear-gradient(180deg, rgba(102, 126, 234, 0.1), transparent);*/
        }

        /* Layout Components */
        .container-oimo {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header-oimo {
            text-align: center;
            margin-bottom: 6rem;
        }

        .section-title-oimo {
            font-size: 3.6rem;
            font-weight: 900;
            color: #2c3e50;
            margin-bottom: 2rem;
            position: relative;
        }

        .section-subtitle-oimo {
            font-size: 1.8rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid-oimo {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .feature-card-oimo {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card-oimo::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(45deg, #667eea, #764ba2);
        }

        .feature-card-oimo:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .feature-card-oimo h3 {
            font-size: 2.4rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1.5rem;
        }

        .feature-card-oimo p {
            /*color: #666;*/
            line-height: 1.8;
        }

        .feature-icon-oimo {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
        }

        /* ヘッダー */
        .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-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-content-service {
          position: relative;
          z-index: 2;
          max-width: 900px;
          margin: 0 auto;
          color: white;
        }

        .header-buttons-service {
          display: flex;
          gap: 1rem;
          justify-content: center;
          flex-wrap: wrap;
        }

        .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);
        }

        .btn-outline-service {
          border: 2px solid white;
          color: white;
        }
        
        .btn-outline-service:hover {
          background-color: rgba(255, 255, 255, 0.1);
          transform: translateY(-3px);
        }


        /*-----------------------------
         セクション店舗紹介 
        -----------------------------*/
        /* セクション */
        .section-shopinf {
          /*text-align: center;*/
          margin-top: 0.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.0rem;
            margin-bottom: 30px;
            padding-bottom: 40px;
            font-weight: 300;
            text-align: left;
        }
        
        .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);
        }

        .stor_acccess_map {
          width: 100%;
          height: 100%;
          object-fit: cover
        }

/*        .feature-icon-pretop {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }*/

        .animated-icon-pretop {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            display: inline-block;
        }


        /* ボタン（店舗受取注文） */
        .btn-pickup,
        a.btn-pickup {
          font-size: 1.6em;
          color: #000000;
          background-color: #faebd7;
          border-bottom: 5px solid #ffdead;
          border-radius: 100vh;
        }

        .btn-pickup:hover,
        a.btn-pickup:hover {
          margin-top: 3px;
          color: #808080;
          background: #fffaf0;
          border-bottom: 2px solid #ffdead;
        }

        a.btn-pickup-shadow {
          -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
          box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
        }


        @media (max-width: 768px) {

            h2 {
                font-size: 1.8rem;
            }
            
            .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;
            }

            .block-heading {
                font-size: 1.2rem;   
            }

            /* ボタン（店舗受取注文） */
            .btn-pickup,
            a.btn-pickup {
                font-size: 1.4em;
                color: #000000;
                background-color: #faebd7;
                border-bottom: 5px solid #ffdead;
                border-radius: 100vh;
            }

        }

        /* 追加: テキストのスタイル統一 */
        .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
        }

        .learn-more {
            padding: 10px 10px 10px 10px;
            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);
        }

        /*-----------------------------
         セクション店舗紹介 ここまで
        -----------------------------*/


        /* Responsive Design */
        @media (max-width: 1024px) {
            .container-oimo {
                padding: 0 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .courses-grid-oimo,
            .features-grid-oimo,
            .audience-grid-oimo {
                grid-template-columns: 1fr;
            }

            .section-title-oimo {
                font-size: 2.8rem;
            }

          .header-service h1 {
            font-size: 2.5rem;
          }

        }

        @media (max-width: 576px) {

          .header-service h1 {
            font-size: 2rem;
          }
          
          .header-service p {
            font-size: 1.1rem;
          }

        }


        /* Loading Animation */
/*        .loading {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .loading.loaded {
            opacity: 1;
            transform: translateY(0);
        }*/


/* ナビゲーションとの余白 */
.hero-section {
  position: relative;
  overflow: hidden;
  margin-top: 80px; /* ← ナビゲーションと離す */
  min-height: 90vh; /* 大きくインパクトある高さ */
  display: flex;
  align-items: center;
}

/* 大きな背景画像（PC用） */
.parallax-bg {
  background-image: url('/media/documents/top/LPocaretimo_imo02.jpg'); /* PC用背景 */
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* スマホ用背景（切替） */
@media (max-width: 768px) {
  .parallax-bg {
    background-image: url('/media/documents/top/LPocaretimo_imo02.jpg'); /* スマホ用背景 */
    background-attachment: scroll; /* モバイルはfixed効かないため */
  }
}

/* ★ iPad / タブレット用（769〜1024px） */
@media (min-width: 769px) and (max-width: 1024px) {
  .parallax-bg {
    background-image: url('/media/documents/top/LPocaretimo_imo02.jpg');
    background-attachment: scroll;      /* iPadではfixed無効なのでscroll */
    background-size: cover;
    background-position: center;
    position: absolute;
    inset: 0;
    z-index: 0;
  }
}

/* 黒オーバーレイ */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.30);
  z-index: 1;
}
.z-2 { z-index: 2; }

/* アニメーション */
@keyframes fadein {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}
.animate-fadein { animation: fadein 1s ease forwards; }
.animate-fadein-delay { animation: fadein 1.5s ease forwards; }
.animate-slideup { animation: fadein 2s ease forwards; }
.animate-bounce {
  animation: bounce 2s infinite;
}
.animate-bounce-delay {
  animation: bounce 2s infinite 0.5s;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/*-------------------------------------
-------------------------------------
トップ　CSS　ここまで
-------------------------------------
-------------------------------------*/

/*-------------------------------------
-------------------------------------
商品一覧ラインナップ　CSS　ここから
-------------------------------------
-------------------------------------*/

  .bg-yellow {
    --bs-bg-opacity: 1;
    background-color: var(--text-yellow);
  }

  .oimo-list .product img {
    width: 100%;
    aspect-ratio: 1 / 1; /* 正方形に */
    object-fit: cover;   /* 中央をトリミング */
  }


/* スマホ表示用 */
@media (max-width: 768px) {
  .oimo-list .product-img {
    max-width: 100%;
    aspect-ratio: 1 / 1; /* 正方形に */
    object-fit: cover;   /* 中央をトリミング */
  }
  .oimo-list .col-6 {
    padding: 5px; /* スマホで隙間を少なく */
  }

}

/*-------------------------------------
-------------------------------------
商品一覧ラインナップ　CSS　ここまで
-------------------------------------
-------------------------------------*/

