/*
 * Salon Ranking V3 Stylesheet
 * Version: 3.0.0
 * Description: 店舗ランキング表示プラグイン（バージョン3）のスタイルシート - V2ベース + 画像配置変更版
 * Author: Your Name
 * Last Modified: 2025-12-27
 * 
 * Changelog:
 * v3.0.0 - 2025-12-27
 *   - V2ベースで作成
 *   - ページネーション追加
 *   - type1/type2の画像配置変更（PC: 横長画像+右に情報 / SP: 横長画像が上）
 */

/* ===================== 店舗ランキングV3スタイル ===================== */

/* コンテナ */
.srv3-ranking-container {
    font-family: sans-serif;
    margin: 20px 0;
    /* iOS対応 */
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* エラーメッセージ */
.srv3-error {
    color: #d63384;
    background-color: #f8d7da;
    border: 1px solid #f5c2c7;
    padding: 12px 16px;
    border-radius: 4px;
    margin: 16px 0;
}

/* メインタイトル */
.srv3-main-title {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

/* 王冠アイコン */
.srv3-crown-icon {
    color: #FFD700;
    margin-right: 8px;
}

/* サマリー・説明文 */
.srv3-summary {
    font-size: 1em;
    color: #333;
    margin-bottom: 5px;
    font-weight: bold;
}

.srv3-description {
    font-size: 1.05em;
    color: #333;
    line-height: 1.6;
    background: transparent;
    padding: 8px 0;
}

/* 説明文ボックス */
.srv3-description-box {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin-bottom: 16px;
}

.srv3-description-box .srv3-summary {
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.srv3-description-text {
    font-size: 0.8em;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* ===================== セマンティックリスト構造 ===================== */

/* 店舗一覧リスト */
.srv3-shop-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* 店舗リスト項目 */
.srv3-shop-item {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.srv3-shop-item::before {
    content: none !important;
    display: none !important;
}

/* ===================== ランキングカード ===================== */

/* ランキングカード全体（article要素） */
.srv3-card {
    border: 1px solid #CDD6DD;
    padding: 20px;
    border-radius: 0;
    margin-bottom: 40px;
    background: #fff;
    font-family: sans-serif;
    margin-left: var(--swl-h2-margin--x, 0);
    margin-right: var(--swl-h2-margin--x, 0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
}

/* プレミアムカード */
.srv3-card.srv3-card--premium {
    background: linear-gradient(135deg, #FFFEF5 0%, #FFF9E6 50%, #FFFEF5 100%) !important;
    border: 2px solid #B8860B !important;
    border-radius: 0 !important;
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.2) !important;
}

/* バナーカード */
.srv3-card--banner {
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 0;
}

/* 無料カード */
.srv3-card--free {
    background: #F9F9F9;
    border: 1px solid #E0E0E0;
    border-radius: 0;
}

/* ヘッダー部分 */
.srv3-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

/* ランキングバッジ */
.srv3-badge {
    background-color: #81D6FC;
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    padding: 6px 20px;
    border-radius: 4px;
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
}

.srv3-card.srv3-card--premium .srv3-badge {
    background: linear-gradient(180deg, #BFAE6B 0%, #D4C78A 50%, #BFAE6B 100%) !important;
    box-shadow: 0 2px 6px rgba(191, 174, 107, 0.4) !important;
}

.srv3-card--banner .srv3-badge {
    background-color: #999;
}

.srv3-card--free .srv3-badge {
    background-color: #999;
}

.srv3-badge__area {
    font-size: 1.0em;
}

.srv3-badge__rank {
    font-size: 2.0em;
    margin-top: 5px;
}

/* タイトル部分 */
.srv3-title h3,
.srv3-title h3::before,
.srv3-title h3::after {
    all: unset !important;
    display: inline !important;
    font-weight: bold !important;
    color: #0073aa !important;
    line-height: 1.3 !important;
    text-decoration: underline !important;
    cursor: pointer;
    font-size: 1.6em !important;
}

.srv3-title__name,
.srv3-title__name h3 {
    font-size: 1.6em !important;
}

.srv3-title__access {
    font-size: 0.9em;
    color: #666;
    margin-top: 4px;
}

/* ===================== V3専用: 画像+情報の横並びレイアウト ===================== */

/* PC版: 横長画像(左) + 右側に情報リスト */
.srv3-content--with-image {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 16px;
}

.srv3-image-col {
    flex: 0 0 45%;
    max-width: 45%;
}

.srv3-image-col a {
    display: block;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.srv3-image-col img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    border-radius: 0;
}

.srv3-content--with-image .srv3-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* スマホ版: 横長画像（上部） */
.srv3-main-image {
    width: 100%;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.srv3-main-image a {
    display: block;
}

.srv3-main-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    border-radius: 0;
}

/* ===================== 画像なしコンテンツ（type3, type4用）===================== */

.srv3-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.srv3-content--free {
    display: block;
}

.srv3-content--no-image {
    display: block;
}

/* 詳細エリア */
.srv3-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.srv3-details--full {
    justify-content: flex-start;
}

/* 評価エリア */
.srv3-rating {
    display: flex;
    align-items: center;
    font-size: 1.8em;
    color: #e2b007;
    margin-bottom: 8px;
}

.srv3-rating__score {
    margin-left: 8px;
    font-weight: bold;
    color: #333;
}

.srv3-rating__count {
    margin-left: 8px;
    font-size: 0.6em;
    color: #007BFF;
}

.srv3-rating__count a {
    color: #007BFF;
    text-decoration: underline;
}

/* 星評価 */
.srv3-stars {
    display: inline-flex;
    gap: -2px;
    vertical-align: middle;
}

.srv3-star {
    display: inline-block;
    width: 1.0em;
    height: 1.0em;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
}

.srv3-star--full {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='%23f5b301'%3E%3Cpath%20d='M12%2017.27L18.18%2021l-1.64-7.03L22%209.24l-7.19-.61L12%202%209.19%208.63%202%209.24l5.46%204.73L5.82%2021z'/%3E%3C/svg%3E");
}

.srv3-star--half {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cdefs%3E%3ClinearGradient%20id='half'%3E%3Cstop%20offset='50%25'%20stop-color='%23f5b301'/%3E%3Cstop%20offset='50%25'%20stop-color='white'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath%20fill='url(%23half)'%20stroke='%23f5b301'%20d='M12%2017.27L18.18%2021l-1.64-7.03L22%209.24l-7.19-.61L12%202%209.19%208.63%202%209.24l5.46%204.73L5.82%2021z'/%3E%3C/svg%3E");
}

.srv3-star--empty {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23f5b301'%20stroke-width='1'%3E%3Cpath%20d='M12%2017.27L18.18%2021l-1.64-7.03L22%209.24l-7.19-.61L12%202%209.19%208.63%202%209.24l5.46%204.73L5.82%2021z'/%3E%3C/svg%3E");
}

/* ===================== 情報セクション（シンプル2カラム） ===================== */

.srv3-info {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 10px 0 !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.srv3-info__item {
    display: flex !important;
    align-items: flex-start !important;
    font-size: 1.05em !important;
    color: #444 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.srv3-info__item::before {
    content: none !important;
}

/* ラベル（アイコン含む） */
.srv3-info__label {
    display: flex;
    align-items: center;
    width: 120px;
    flex-shrink: 0;
    font-weight: 600;
    color: #555;
}

/* アイコン */
.srv3-info__icon {
    flex-shrink: 0;
    width: 20px;
    font-size: 1.1em;
    margin-right: 8px;
    text-align: center;
}

/* アイコン個別カラー */
.srv3-info__icon--access,
.srv3-info__icon--access.fas,
.srv3-info__icon--access.fa-map-marker-alt {
    color: #ea4335 !important;
}

.srv3-info__icon--hours,
.srv3-info__icon--hours.fas,
.srv3-info__icon--hours.fa-clock {
    color: #f57c00 !important;
}

.srv3-info__icon--price,
.srv3-info__icon--price.fas,
.srv3-info__icon--price.fa-yen-sign {
    color: #2196f3 !important;
}

.srv3-info__icon--phone,
.srv3-info__icon--phone.fas,
.srv3-info__icon--phone.fa-phone {
    color: #4caf50 !important;
}

/* 値 */
.srv3-info__value {
    flex: 1;
    font-size: 1em;
    color: #333;
    line-height: 1.5;
}

/* 電話番号の値を太字に */
.srv3-info__item--phone .srv3-info__value {
    font-weight: 700;
}

/* 特徴タグ（スラッシュ区切り表示） */
.srv3-features {
    margin: 16px 0 0 0;
    text-align: left;
    font-size: 1.0em;
    color: #666;
    line-height: 1.5;
}

/* 見出し（h4タグ）- テーマの影響を完全に排除 */
.srv3-tab-headline,
h4.srv3-tab-headline {
    all: unset !important;
    display: block !important;
    font-weight: bold !important;
    color: #FF6B8B !important;
    font-size: 1.4em !important;
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
    border: none !important;
    background: none !important;
    text-align: left !important;
    font-family: sans-serif !important;
}

/* PC版の中見出し（画像横に配置時） */
.srv3-tab-headline--pc {
    margin-top: 12px !important;
}

/* 本文スタイル */
.srv3-tab-body {
    font-size: 1.05em;
    color: #333;
    line-height: 1.6;
}

.srv3-tab-body p {
    margin: 0 0 1em 0;
    padding: 0;
    line-height: 1.6;
}

.srv3-tab-body p:last-child {
    margin-bottom: 0;
}

/* 割引情報 */
.srv3-campaign-info {
    margin: 16px 0;
    position: relative;
}

.srv3-campaign-label,
h4.srv3-campaign-label {
    all: unset !important;
    display: inline-block !important;
    background: #FF555F !important;
    color: #fff !important;
    font-weight: bold !important;
    font-size: 14px !important;
    padding: 6px 16px !important;
    border-radius: 4px 4px 0 0 !important;
    position: relative !important;
    margin: 0 0 0 10px !important;
    box-shadow: 0 2px 4px rgba(255, 85, 95, 0.3) !important;
    border: none !important;
    line-height: 1.4 !important;
    text-align: left !important;
    font-family: sans-serif !important;
}

.srv3-campaign-content {
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE8CC 100%);
    border: 3px solid #FF555F;
    border-radius: 4px;
    padding: 16px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.srv3-campaign-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    font-weight: 500;
}

/* 割引情報の強調部分 */
.srv3-campaign-highlight {
    color: #CC5777;
    font-weight: bold;
}

/* アクションセクション */
.srv3-action {
    background: none;
    text-align: center;
    padding: 10px 0;
    margin-top: 5px;
}

.srv3-action__microcopy {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #333;
}

.srv3-action__highlight {
    font-weight: bold;
    color: #00a6b4;
}

.srv3-action__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px !important;
}

/* ボタンスタイル */
.srv3-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 290px;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 8px;
    transition: top 0.1s ease, box-shadow 0.1s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid transparent;
}

.srv3-btn--orange {
    background-color: #fff;
    color: #f4a800;
    border: 1px solid #f4a800;
}

.srv3-btn--orange .srv3-btn__icon img {
    filter: brightness(0) saturate(100%) invert(58%) sepia(84%) saturate(2498%) hue-rotate(17deg) brightness(102%) contrast(97%);
}

.srv3-btn--blue {
    background-color: #fff;
    color: #007aa3;
    border: 1px solid #007aa3;
}

.srv3-btn--blue .srv3-btn__icon img {
    filter: brightness(0) saturate(100%) invert(33%) sepia(95%) saturate(1352%) hue-rotate(174deg) brightness(93%) contrast(101%);
}

/* プレミアム枠・バナー枠専用ボタン */
.srv3-card--premium .srv3-btn--orange,
.srv3-card--banner .srv3-btn--orange {
    background-color: #fff;
    color: #FF6B8B;
    border: 1px solid #FF6B8B;
}

.srv3-card--premium .srv3-btn--orange .srv3-btn__icon img,
.srv3-card--banner .srv3-btn--orange .srv3-btn__icon img {
    filter: brightness(0) saturate(100%) invert(74%) sepia(27%) saturate(3207%) hue-rotate(310deg) brightness(101%) contrast(89%);
}

.srv3-btn__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.srv3-btn__text {
    flex: 1;
    font-size: 1.14em;
    line-height: 1.3;
    white-space: nowrap;
    text-align: center;
    padding-right: 35px;
}

.srv3-btn__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.srv3-btn__icon img {
    width: 28px;
    height: 28px;
    vertical-align: middle;
}

/* ===================== ページネーション（V3専用） ===================== */

.srv3-pagination {
    margin: 40px 0 20px;
    text-align: center;
}

.srv3-pagination__list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.srv3-pagination__item {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.srv3-pagination__item::before {
    content: none !important;
    display: none !important;
}

.srv3-pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #81D6FC;
    border-radius: 8px;
    background: #fff;
    color: #81D6FC;
    transition: all 0.2s ease;
}

.srv3-pagination__link:hover {
    background: #81D6FC;
    color: #fff;
}

.srv3-pagination__link--current {
    background: #81D6FC;
    color: #fff;
    cursor: default;
}

/* ===================== レスポンシブデザイン ===================== */

/* スマホ対応 */
@media (max-width: 599px) {
    .srv3-card {
        padding: 15px;
    }
    
    /* V3専用: スマホでは横長画像を縦並びに */
    .srv3-content--with-image {
        display: block;
    }
    
    .srv3-image-col {
        display: none; /* PC用の画像カラムは非表示 */
    }
    
    .srv3-main-image {
        margin: 0 0 12px 0;
    }

    .srv3-badge {
        min-width: 70px;
        padding: 8px 8px;
        font-size: 0.85em;
        line-height: 1.2;
        word-break: keep-all;
        white-space: nowrap;
    }

    .srv3-badge__area {
        font-size: 0.9em;
        line-height: 1;
        white-space: nowrap;
    }

    .srv3-badge__rank {
        font-size: 1.6em;
        line-height: 1.1;
        margin-top: 2px;
    }

    .srv3-title h3,
    .srv3-title h3::before,
    .srv3-title h3::after {
        font-size: 1.2em !important;
    }

    .srv3-title__name,
    .srv3-title__name h3 {
        font-size: 1.35em !important;
    }

    .srv3-rating {
        font-size: 1.3em;
    }

    .srv3-rating .srv3-star {
        width: 1.3em;
        height: 1.3em;
    }

    .srv3-rating__score {
        font-size: 1em;
    }

    .srv3-content {
        display: flex;
        flex-direction: row;
        gap: 12px;
        align-items: flex-start;
    }

    .srv3-details {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    /* スマホ版情報セクション */
    .srv3-info {
        gap: 4px !important;
        margin-bottom: 8px !important;
    }

    .srv3-info__item {
        font-size: 0.95em !important;
    }
    
    /* スマホ版：ラベルテキストも表示、PC版と同じレイアウト */
    .srv3-info__label {
        width: 100px !important;
        flex-shrink: 0 !important;
    }
    
    .srv3-info__label-text {
        display: inline !important;
    }

    .srv3-info__icon {
        font-size: 1.0em;
        width: 18px;
        margin-right: 6px;
        text-align: center;
    }
    
    /* スマホ版：アイコン個別カラー */
    .srv3-info__icon--access,
    .srv3-info__icon--access.fas,
    .srv3-info__icon--access.fa-map-marker-alt {
        color: #ea4335 !important;
    }
    
    .srv3-info__icon--hours,
    .srv3-info__icon--hours.fas,
    .srv3-info__icon--hours.fa-clock {
        color: #f57c00 !important;
    }
    
    .srv3-info__icon--price,
    .srv3-info__icon--price.fas,
    .srv3-info__icon--price.fa-yen-sign {
        color: #2196f3 !important;
    }
    
    .srv3-info__icon--phone,
    .srv3-info__icon--phone.fas,
    .srv3-info__icon--phone.fa-phone {
        color: #4caf50 !important;
    }
    
    /* スマホ版：電話番号を太字に */
    .srv3-info__item--phone .srv3-info__value {
        font-weight: 700 !important;
    }

    .srv3-info__value {
        font-size: 0.95em;
    }

    .srv3-features {
        margin: 12px 0 0 0;
        text-align: left;
        font-size: 0.9em;
        color: #666;
        line-height: 1.5;
    }

    /* スマホ版見出し */
    .srv3-tab-headline,
    h4.srv3-tab-headline {
        font-size: 1.2em !important;
        margin: 0 0 8px 0 !important;
        line-height: 1.2 !important;
    }
    
    .srv3-tab-body {
        font-size: 0.95em;
        line-height: 1.8;
    }

    .srv3-description {
        font-size: 0.9em;
        color: #333;
        line-height: 1.8;
        background: transparent;
        padding: 8px 0;
    }

    .srv3-action__microcopy {
        font-size: 0.9em;
        margin-bottom: 5px;
        color: #333;
    }

    /* スマホボタン2列表示の修正（強制適用版） */
    .srv3-action__buttons {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        justify-content: space-between !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .srv3-btn {
        flex: 1 1 calc(50% - 4px) !important;
        max-width: calc(50% - 4px) !important;
        min-width: calc(50% - 4px) !important;
        font-size: 0.9em !important;
        padding: 12px 6px !important;
        text-align: center !important;
        box-sizing: border-box !important;
        width: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        outline: none !important;
        text-decoration: none !important;
        border-radius: 8px !important;
        font-weight: 600 !important;
        transition: none !important;
        position: relative !important;
        overflow: hidden !important;
    }

    /* スマホ版ボタン色とボーダーの強制適用 */
    .srv3-btn--orange {
        background-color: #fff !important;
        color: #f4a800 !important;
        border: 1px solid #f4a800 !important;
    }

    .srv3-btn--blue {
        background-color: #fff !important;
        color: #007aa3 !important;
        border: 1px solid #007aa3 !important;
    }

    .srv3-card--premium .srv3-btn--orange,
    .srv3-card--banner .srv3-btn--orange {
        background-color: #fff !important;
        color: #FF6B8B !important;
        border: 1px solid #FF6B8B !important;
    }

    /* スマホ版アイコン色の強制適用 */
    .srv3-btn--orange .srv3-btn__icon img {
        filter: brightness(0) saturate(100%) invert(58%) sepia(84%) saturate(2498%) hue-rotate(17deg) brightness(102%) contrast(97%) !important;
    }

    .srv3-btn--blue .srv3-btn__icon img {
        filter: brightness(0) saturate(100%) invert(33%) sepia(95%) saturate(1352%) hue-rotate(174deg) brightness(93%) contrast(101%) !important;
    }

    .srv3-card--premium .srv3-btn--orange .srv3-btn__icon img,
    .srv3-card--banner .srv3-btn--orange .srv3-btn__icon img {
        filter: brightness(0) saturate(100%) invert(74%) sepia(27%) saturate(3207%) hue-rotate(310deg) brightness(101%) contrast(89%) !important;
    }

    .srv3-btn__inner {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        flex-direction: row !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        text-align: center !important;
        position: relative !important;
    }

    .srv3-btn__text {
        flex: 1 !important;
        font-size: 1.08em !important;
        line-height: 1.2 !important;
        text-align: center !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        margin: 0 !important;
        padding: 0 30px 0 0 !important;
        border: none !important;
        background: transparent !important;
        display: block !important;
        width: auto !important;
        max-width: none !important;
        min-width: auto !important;
        float: none !important;
        position: static !important;
        transform: none !important;
    }

    .srv3-btn__icon {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
        width: auto !important;
        height: auto !important;
        float: none !important;
        transform: translateY(-50%) !important;
        position: absolute !important;
        right: 8px !important;
        top: 50% !important;
    }

    .srv3-btn__icon img {
        width: 16px;
        height: 16px;
        margin-right: 4px;
    }

    /* 割引情報のスマホ調整 */
    .srv3-campaign-label,
    h4.srv3-campaign-label {
        font-size: 13px !important;
        padding: 5px 14px !important;
    }
    
    .srv3-campaign-content {
        padding: 14px;
    }
    
    .srv3-campaign-text {
        font-size: 14px;
        line-height: 1.7;
    }
    
    /* ページネーションスマホ */
    .srv3-pagination__link {
        min-width: 40px;
        height: 40px;
        padding: 0 10px;
        font-size: 1em;
    }
}

/* PC用調整 */
@media (min-width: 600px) {
    .srv3-btn__icon {
        width: auto;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .srv3-btn__icon img {
        width: 20px;
        height: 20px;
    }
}
