@charset "utf-8";
/* CSS Document */
/* スライダー */	
        /* CSS変数も競合を避けるために一意の名前に変更 */
        :root {
            --hs-gold: #C28D18;
            --hs-bg: #F7F8F6;
            --hs-shadow: 2px 3px 6px 0px rgba(0, 0, 0, 0.16);
            --hs-gap: clamp(1.5rem, -5.423rem + 12.31vw, 2.313rem);
        }
        /* --- コンテナクエリの準備 --- */
        .herb-slider-wrapper {
            container-type: inline-size;
            width: 100%;
            max-width: 1397px;
            /*margin: 60px auto 0;*/
			margin-inline: auto;
        }

        .herb-slider-container {
            position: relative;
            padding: 0 75px;
            overflow: hidden;
            background-color: var(--hs-bg); /* スライダーエリアの背景 */
        }

        .herb-slider-track {
            display: flex;
            gap: var(--hs-gap);
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            padding: 7px 0;
            -webkit-overflow-scrolling: touch;
        }

        .herb-slider-track::-webkit-scrollbar { display: none; }

        /* --- カードのベーススタイル --- */
        .herb-slider-card {
            flex: 0 0 calc(33.333% - (var(--hs-gap) * 2 / 3));
            min-width: 0;
            background: #fff;
            border-radius: 38px;
            padding: 35px 35px 116px;
            box-shadow: var(--hs-shadow);
            scroll-snap-align: start; 
            box-sizing: border-box;
            transition: transform 0.3s ease;
			border: solid 1px #AC904F;
        }

        /* --- コンテナクエリによるレスポンシブ --- */
 		/* ブレイクポイント1: 1020px以下で「2枚表示」 */
		@container (max-width: 1020px) {
			.herb-slider-card {
				flex: 0 0 calc(50% - (var(--hs-gap) / 2)); /* 2枚の計算式 */
			}
		}
       /* ブレイクポイント2: 749px以下で「1枚表示」 */
    @container (max-width: 749px) {
        .herb-slider-card {
            flex: 0 0 100%; /* 1枚の計算式 */
			padding-bottom:16px;
			padding-inline:20px!important;
        }
        .herb-slider-container {
            padding: 0 40px; /* スマホ時はナビゲーションボタンの余白を少し詰める */
        }
    }
        @container (max-width: 749px) {
			.herb-slider-track {
				padding: 0px 0 20px;
			}
            
			.herb-slider-wrapper {
            margin: 0px auto 0;
        }
			.herb-slider-avatar {
			width: clamp(4.75rem, 3.455rem + 5.52vw, 6.563rem);
			flex: 0 0 clamp(4.75rem, 2.938rem + 7.73vw, 6.563rem);
		}
			.herb-slider-avatar img{
			width: clamp(4.75rem, 2.938rem + 7.73vw, 6.563rem);

		}
			.herb-slider-card h3 {
			font-size: clamp(0.875rem, 0.624rem + 1.07vw, 1.125rem)!important;
			margin: 0;
			line-height: 1.4;
			font-weight: 700;
			font-family: "游ゴシック", "Yu Gothic", "YuGothic", sans-serif;
				
		}
		.herb-slider-badge {
			display: inline-block;
			background: var(--hs-gold);
			color: #fff;
			padding: 4px 10px;
			font-size: clamp(0.688rem, 0.499rem + 0.8vw, 0.875rem)!important;
			font-weight: 700;
			margin-bottom: 15px;
			font-family: "游ゴシック", "Yu Gothic", "YuGothic", sans-serif;
		}
		.herb-slider-content { font-size: clamp(0.813rem, 0.624rem + 0.8vw, 1rem)!important; line-height: 1.538!important; }
		.herb-slider-dot {width: 12px!important; height: 12px!important; border-radius: 50%; }	
        }

        /* --- カード内部のデザイン --- */
        .herb-slider-header { display: flex; align-items: center; gap: clamp(0.938rem, -1.667rem + 5.56vw, 1.063rem); margin-bottom: 8px; align-items: flex-start;}
        .herb-slider-avatar { width: 136px;　flex: 0 0 136px; margin-inline: auto; display: flex; justify-content: center;}
		.harb-title{flex-grow: 2;}
		.herb-slider-avatar img{height: auto;}
        .herb-slider-stars { color: var(--hs-gold); margin-bottom: 9px; }
        .herb-slider-card h3 { font-size: 1.125rem; margin: 0; line-height: 1.4; font-weight: 700; font-family: "游ゴシック", "Yu Gothic", "YuGothic", sans-serif;}
        .herb-slider-badge { 
            display: inline-block; background: var(--hs-gold); color: #fff; 
            padding: 4px 10px; font-size: 0.875rem; font-weight: 700; margin-bottom: 15px; font-family: "游ゴシック", "Yu Gothic", "YuGothic", sans-serif;
        }
        .herb-slider-content { font-size: clamp(0.938rem, 0.423rem + 1.03vw, 1rem); line-height: 2.188; color: #000; margin: 0; }

        /* --- ナビゲーションボタン --- */
        .herb-slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            font-size: 2.5rem;
            color: var(--hs-gold);
            cursor: pointer;
            z-index: 10;
            padding: 10px;
            transition: scale 0.2s;
        }
        /*.herb-slider-btn:hover { scale: 1.1; }*/
        .herb-slider-prev { left: 0; }
        .herb-slider-next { right: 0; }

        /* --- ドットナビゲーション --- */
        .herb-slider-dots-wrap { display: flex; justify-content: center; gap: 12px; margin-top: 30px; }
        .herb-slider-dot {
            width: 20px; height: 20px; border-radius: 50%;
            border: 3px solid #CFC9C0; background: transparent;
            cursor: pointer; transition: all 0.3s ease;
        }
        .herb-slider-is-active { border: 3px solid var(--hs-gold); background: var(--hs-gold); /*transform: scale(1.2);*/ }
