@charset "utf-8";

/********************************************
service (サービス紹介) ページ個別
共通の .ba(before/after)・.faq__(FAQ)・.fadeIn は base.css を再利用
********************************************/

/* FV 背景 */
.subfv{ background-image: url(../images/service/service_fv_pc.jpg); }
@media (max-width: 768px){
    .subfv{ background-image: url(../images/service/service_fv_sp.jpg); }
}

/********************************************
導入(intro)
********************************************/
.svc-intro{ padding: 80px 0 90px; }
.svc-intro__catch{
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: .04em;
}
.svc-intro__text{
    margin-top: 22px;
    text-align: center;
    line-height: 2;
}
/* 4サービスへの誘導カード */
.svc-nav{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 85px;
}
.svc-nav__item{
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}
@media (min-width: 769px){
    .svc-nav__item:hover{ transform: translateY(-4px); box-shadow: 0 8px 18px rgba(20,60,100,.12); }
}
.svc-nav__icon{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 240px;
}
.svc-nav__icon img{ width: 180px; height: 180px; object-fit: contain; }
.svc-nav__foot{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 60px;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}
/* 下向きシェブロン(セクションへスクロール) */
.svc-nav__foot .arrow{
    position: absolute;
    right: 16px;
    top: 42%;
    transform: rotate(135deg);
}
/* 相談ボタン群 */
.svc-actions{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding: 30px;
    background: var(--color-bg-light);
}
.svc-actions .btn{ min-width: 0; width: 470px; }
.btn--green{ background: #06c755; color: #fff; border-color: #06c755; }

@media (max-width: 768px){
    .svc-intro{ padding: 12vw 0 14vw; }
    .svc-intro__catch{ font-size: 4.8vw; }
    .svc-intro__text{ font-size: 3.2vw; margin-top: 4vw; }
    .svc-nav{ grid-template-columns: repeat(2, 1fr); gap: 2vw; margin-top: 8vw; }
    .svc-nav__icon{ height: 40vw; }
    .svc-nav__icon img{ width: 36vw; height: 36vw; }
    .svc-nav__foot{ font-size: 3.2vw; height:10.66vw; padding: 0 7vw 0 3vw; }
    .svc-actions{ flex-direction: column; gap: 3vw; margin-top: 7vw; padding: 5vw; }
    .svc-actions .btn{ width: 100%; }
}

/********************************************
帯見出し(各サービスの見出しバンド)
背景：sub_ttl_*_bg(左＝青／右＝写真)
********************************************/
.svc-band{
    display: flex;
    align-items: center;
    height: 300px;
    background: var(--color-primary) center right no-repeat;
    background-size: auto 100%;
    color: #fff;
}
.svc-band .inner{ width: 100%; }
.svc-band .ttl__area{ margin-bottom: 0; }
.svc-band--house{ background-image: url(../images/service/sub_ttl_house_bg_pc.jpg); }
.svc-band--coating{ background-image: url(../images/service/sub_ttl_coating_bg_pc.jpg); }
.svc-band--corpo{ background-image: url(../images/service/sub_ttl_corpo_bg_pc.jpg); }
.svc-band--agency{ background-image: url(../images/service/sub_ttl_agency_bg_pc.jpg); }.inner.sub__inner{
    padding: 0 60px;
}
@media (max-width: 768px){
    .svc-band{ height: 40vw; }
    .svc-band--house{ background-image: url(../images/service/sub_ttl_house_bg_sp.jpg); }
    .svc-band--coating{ background-image: url(../images/service/sub_ttl_coating_bg_sp.jpg); }
    .svc-band--corpo{ background-image: url(../images/service/sub_ttl_corpo_bg_sp.jpg); }
    .svc-band--agency{ background-image: url(../images/service/sub_ttl_agency_bg_sp.jpg); }
    .inner.sub__inner{
        padding: 0 2.933vw;
    }
}

/********************************************
| ラベル サブ見出し(.svc-sub)
********************************************/
.svc-sub{
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding-left: 16px;
    border-left: 4px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
}
.svc-sub small{
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.1em;
}
@media (max-width: 768px){
    .svc-sub{ font-size: 6.4vw; gap: 2vw; padding-left: 2.6vw; border-left-width: 3px;margin-bottom: 5.33vw;flex-wrap: wrap; }
    .svc-sub small{ font-size: 3.2vw; }
}

/********************************************
セクション本文の共通余白・リード
********************************************/
.svc-sec{ padding: 80px 0 90px; }
.svc-lead{ margin: 0 0 30px; }
.svc-lead b{ display: block; font-size: 20px; font-weight: 700; color: var(--color-text); }
.svc-lead span{ display: block; margin-top: 6px; color: var(--color-text-sub); }

/* before/after を2枚並べる */
.ba-pair{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}
.ba-item__ttl{ margin-top: 16px; font-size: 18px; font-weight: 700; }
.ba-item__meta{ margin-top: 4px; font-size: 13px; color: var(--color-text-sub); }

/* 「もっと見る」ボタン中央 */
.svc-more{ text-align: center; margin-top: 46px; }

@media (max-width: 768px){
    .svc-sec{ padding: 5.33vw 0 6vw; }
    .svc-lead{margin-bottom: 4vw;}
    .svc-lead b{ font-size: 4.2vw; }
    .svc-lead span{ font-size: 3.2vw; }
    .ba-pair{ grid-template-columns: 1fr; gap: 7vw;padding: 0 2vw;margin-bottom: 8vw; }
    .ba-item__ttl{ font-size: 4.2vw; }
    .ba-item__meta{ font-size: 3.2vw; }
    .svc-more {margin-top:4vw;padding: 0 2vw;}
}

/********************************************
Price(料金)― 青グラデ背景
********************************************/
.svc-price{
    background: var(--grad-back);
    color: #fff;
    padding: 80px 0 90px;
}
.svc-price .svc-sub{ color: #fff; border-left-color: #fff; }
.svc-price .svc-sub small{ color: #fff; }
.price-card{
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    color: var(--color-text);
    padding: 10px;
    margin-bottom: 20px;
}
.price-card__img{ width: 350px; flex-shrink: 0; }
.price-card__img img{ display: block; width: 100%; }
.price-card__body{ flex: 1;margin-top: -50px;}
.price-card__ttl{ font-size: 20px; font-weight: 700; }
.price-card__desc{ margin-top: 10px; line-height: 1.9; color: var(--color-text-sub); }
.price-card__price{ position: absolute; right: 30px; bottom: 24px; text-align: right; font-size: 30px; color: var(--color-primary); font-weight: 700; }
.price-card__unit{
    position: absolute;
    right: 0;
    bottom: -1em;
    display: block;
    margin-top: 4px;
    font-size: 16px;
    font-weight: 500;
}
.price-card__estimate{
    position: absolute;
    top: 22px;
    right: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 48px 0 22px;
    background: #fff;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
}
.price-card__estimate::after{
    content: "＋";
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    font-size: 14px;
    line-height: 1;
}
/* オプション表 */
.price-option{
    background: #fff;
    color: var(--color-text);
    padding: 34px 180px 30px;
}
.price-option__ttl{ text-align: center; font-size: 20px; font-weight: 700; color: var(--color-primary); margin-bottom: 15px; }
.price-option table{ width: 100%; border-collapse: collapse; }
.price-option th,
.price-option td{
    padding: 13px 16px;
    border: 1px solid var(--color-primary-light);
    font-size: 14px;
    text-align: left;
    vertical-align: middle;
    color: var(--color-primary);
}
.price-option th{ font-weight: 500; }
.price-option td{ font-weight: 500; width: 210px; }
.price-option__note{ text-align: right; font-size: 12px; color: var(--color-text-note); }

@media (max-width: 768px){
    .svc-price{ padding: 5.33vw 0 6vw; }
    /* SP：①画像＋テキスト行 ②価格(全幅左) ③見積ボタン(全幅・オレンジ枠) */
    .price-card{ flex-direction: row; flex-wrap: wrap; align-items:center; gap: 2vw; padding: 2vw; }
    .price-card__img{ width: 42%; }
    .price-card__body{ flex: 1; min-width: 0;margin: 0;}
    .price-card__ttl{ font-size: 3.73vw;}
    .price-card__desc{
        font-size: 2.66vw;
        margin-top: 1.466vw;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        overflow: hidden;
    }
    .price-card__price{ position: static; width: 100%; order: 3; line-height: 1; font-size: 5.2vw;text-align: left; }
    .price-card__estimate{
        position: relative;
        top: 0;
        right: auto;
        order: 4;
        width: 80%;
        justify-content: center;
        margin: 2vw auto 0;
        height: 9vw;
        background: #fff;
        color: var(--color-accent);
        border: 1px solid var(--color-accent);
        border-radius: 5px;
        font-size: 3.4vw;
    }
    .price-card__estimate::after{
        position: absolute;
        right: 4vw;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 5vw;
        height: 5vw;
        border-radius: 50%;
        background: var(--color-accent);
        color: #fff;
        font-size: 3.4vw;
    }
    .price-card__unit{
        position: static;
        display: inline-block;
        font-size: 2.4vw;
        margin: 0 0 0 3.333vw;
    }
    .price-option__ttl{margin-bottom: 10px;font-size: 3.73vw;}
    .price-option{ padding: 6vw 4vw; }
    .price-option th, .price-option td{ font-size: 3.2vw; padding: 2.6vw 2vw; }
    .price-option td{ width: 25vw; white-space: nowrap; }
}

/********************************************
Service Area(対応エリア)
********************************************/
.svc-area{ padding: 80px 0 90px; }
.area-group{ margin-bottom: 30px; }
.area-group__ttl{ font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.area-row,
.area-box{
    border: 1px solid var(--color-primary-light);
    margin-bottom: 10px;
    overflow: hidden;
}
.area-row{ display: flex; }
.area-row__label{
    flex-shrink: 0;
    width: 220px;
    background: var(--color-primary);
    color: #fff;
    padding: 14px 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
}
.area-row__val,
.area-box{ padding: 14px 20px; line-height: 1.9; }
.svc-area__note{ margin-top: -20px; font-size: 13px; color: #999; line-height: 1.8; }

@media (max-width: 768px){
    .svc-area{ padding: 5.33vw 0 6vw; }
    .area-group{margin-bottom: 4.8vw;}
    .area-group__ttl{ font-size: 3.73vw;margin-bottom: 5px; }
    .area-row{ flex-direction: column; }
    .area-row__label{ width: 100%; padding: 2.6vw 4vw; font-size: 3.2vw;text-align: center; }
    .area-row__val,
    .area-box{ padding: 2vw; font-size: 3.2vw; }
    .svc-area__note{ font-size: 3vw;margin-top: -10px;}
}

/********************************************
Reason(選ばれる理由)01-03 ＋ 3アイコンカード
********************************************/
.svc-reason__item{ display: flex; gap: 28px; margin-top: 60px; }
.svc-reason__num{
    font-family: var(--font-num);
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
    color: #333333;
    flex-shrink: 0;
}
.svc-reason__ttl{ font-size: 36px; line-height: 1.3;padding-top: 5px; font-weight: 500; color: var(--color-text); }
.svc-reason__desc{ margin-top: 40px; line-height: 1.9; color: var(--color-text-sub); }
.svc-reason__cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 60px;
    padding: 0 150px;
}
.svc-reason__card{
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    overflow: hidden;
}
.svc-reason__card-ico{ display: flex; align-items: center; justify-content: center; height: 200px; }
.svc-reason__card-ico img{ width: 140px; height: 140px; object-fit: contain; }
.svc-reason__card-label{
    padding: 12px;
    background: var(--color-primary);
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
}
@media (max-width: 768px){
    .svc-reason__item{ gap: 4vw; margin-top: 8.66vw; }
    .svc-reason__num{ font-size: 10vw; }
    .svc-reason__ttl{ font-size: 4.5vw;padding: 0; }
    .svc-reason__desc{ font-size: 3.2vw; margin-top: 3vw; }
    .svc-reason__cards{ gap: 2vw;padding: 0;margin-top: 8.66vw; }
    .svc-reason__card-ico{ height: 24vw; }
    .svc-reason__card-ico img{ width: 20vw; height: 20vw; }
    .svc-reason__card-label{ font-size: 3.2vw; padding: 2.6vw 1vw; }
}

/********************************************
Process(施工手順)STEP 01-04
********************************************/
.svc-process__list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
}
.svc-step{ position: relative; text-align: center; }
/* STEP間の二重「≫」矢印(CSS描画・縦長シェブロン) */
.svc-step:not(:last-child)::before,
.svc-step:not(:last-child)::after{
    content: "";
    position: absolute;
    top: 50%;
    width: 13px;
    height: 38px;
    background: var(--color-primary-light);
    clip-path: polygon(0 0, 42% 0, 100% 50%, 42% 100%, 0 100%, 58% 50%);
    transform: translateY(-50%);
}
.svc-step:not(:last-child)::after{ right: -22px; }
.svc-step:not(:last-child)::before{ right: -32px; }
.svc-step__head{ display: flex; align-items: center; justify-content: center; }
.svc-step__no{ display: flex; flex-direction: column; align-items: center; line-height: 1; }
.svc-step__no small{ font-family: var(--font-num); font-size: 24px; font-weight: 700; color: #999999; letter-spacing: .1em; }
.svc-step__no b{ font-family: var(--font-num); font-size: 60px; font-weight: 700; color: #333333; }
.svc-step__ttl{ font-size: 20px; font-weight: 700; text-align: left; line-height: 1.3;    padding:0 0 15px 20px;}
.svc-step__ico{ width: 100%; margin: 30px auto 15px; }
.svc-step__ico img{ width: 100%; height: 100%; object-fit: contain; }
.svc-step__desc{ color: var(--color-text-sub);font-weight: 500; }
@media (max-width: 768px){
    .svc-process__list{ grid-template-columns: 1fr 1fr; gap: 8vw 4vw; }
    .svc-step:not(:last-child)::before,
    .svc-step:not(:last-child)::after{
        top: 30vw;
        width: 1.733vw;
        height: 5.06vw;
        transform: translateY(0);
    }
    .svc-step:not(:last-child)::before{right: -2vw;}
    .svc-step:not(:last-child)::after{right: -3.5vw;}
    .svc-step__no small{ font-size: 3.2vw; }
    .svc-step__no b{ font-size: 8vw; }
    .svc-step__ttl{ font-size: 3.2vw;padding: 0 0 2vw 2.66vw; }
    .svc-step__ico{ width: 38vw; height: 38vw;margin: 2.16vw auto 2.66vw; }
    .svc-step__desc{ font-size: 3vw; }
}

/********************************************
FAQ(共通 .faq__ を利用)
********************************************/
.svc-faq .faq__list{ max-width: none; padding: 0; margin-top: 6px; }

/********************************************
セクション間のボタン(公式LINE@ / HPから相談する)
********************************************/
.svc-btns{ display: flex; justify-content: center; gap: 40px; }
.svc-btns .btn{ min-width: 0; width: 470px; }
@media (max-width: 768px){
    .svc-btns{ flex-direction: column; gap: 3vw; }
    .svc-btns .btn{ width: 100%; }
}

/********************************************
Public(法人向け 3枚写真＋キャプション)
********************************************/
.svc-public__list{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;text-align: center;margin-bottom: 80px; }
.svc-public__item{ background: #fff; border-radius: 8px; overflow: hidden;border: 1px solid var(--color-primary); box-shadow: 0 4px 14px rgba(20,60,100,.08); }
.svc-public__img{ aspect-ratio: 16 / 9; background: #e8eef3; }
.svc-public__img img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-public__cap{ background: var(--color-primary); color: #fff; padding: 16px 18px; }
.svc-public__cap b{ display: block; font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.svc-public__cap span{ font-size: 13px; line-height: 1.7;display: block; }
@media (max-width: 768px){
    /* SP：写真(左)＋青キャプション(右)の横型カードを縦積み */
    .svc-public__list{ grid-template-columns: 1fr; gap: 4vw; margin-bottom: 8vw; text-align: left; }
    .svc-public__item{ display: flex; }
    .svc-public__img{ width: 42%; flex-shrink: 0; aspect-ratio: auto; }
    .svc-public__cap{ flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 4vw 3vw; }
    .svc-public__cap b{ font-size: 3.73vw; margin-bottom: 2vw; }
    .svc-public__cap span{ font-size: 3.2vw; }
}

/********************************************
縦型 Process(法人向け STEP 01-05)
********************************************/
.svc-vprocess{ background: var(--color-bg-light); }
.svc-vstep{ position: relative; display: flex; gap: 40px; padding-bottom: 44px; }
.svc-vstep:not(:last-child)::before{
    content: "";
    position: absolute;
    left: 105px;
    top: 24px;
    bottom: 0;
    width: 8px;
    background: #fff;
    transform: translateX(-50%);
}
.svc-vstep__ico{
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.svc-vstep__no{ display: flex; flex-direction: column; align-items: center; line-height: 1;transform: translateY(15px); }
.svc-vstep__no small{ font-family: var(--font-num); font-size: 24px; font-weight: 700; color: #999999; letter-spacing: .1em; }
.svc-vstep__no b{ font-family: var(--font-num); font-size: 60px; font-weight: 700; color: #333333; }
.svc-vstep__ico img{ width: 110px; height: 110px; object-fit: contain; }
.svc-vstep__body{ flex: 1; padding-top: 34px; }
.svc-vstep__ttl{ font-size: 20px; font-weight: 700; padding-bottom: 12px; border-bottom: 2px solid var(--color-primary-light); }
.svc-vstep__desc{ margin-top: 14px; line-height: 1.9;  }
@media (max-width: 768px){
    .svc-vstep{ gap: 2vw; padding-bottom: 6vw; }
    .svc-vstep:not(:last-child)::before{ left: 15vw; }
    .svc-vstep__ico{ width: 28.66vw; height: 28.66vw; }
    .svc-vstep__no {transform: translateY(3vw);}
    .svc-vstep__no small{ font-size: 3.2vw;}
    .svc-vstep__no b{ font-size: 8vw; }
    .svc-vstep__ico img{ width: 18vw; height: 18vw; }
    .svc-vstep__body{ padding-top: 0; }
    .svc-vstep__ttl{ font-size: 3.8vw;line-height: 1.3;border-width: 1px; }
    .svc-vstep__desc{ font-size: 2.66vw;line-height: 1.5; }
}

/********************************************
EC Agency
********************************************/
/* Ultimate Guardian リード */
.svc-eclead{ text-align: center; }
.svc-eclead__logo{ max-width: 380px; margin: 0 auto 40px; }
.svc-eclead__logo img{ display: block; width: 100%; }
.svc-eclead__text{ font-size: 15px; line-height: 2;margin-bottom: 80px; }

/* BASE / Amazon ストアボタンは共通コンポーネント .store(common.css)を使用 */

/* Guidance(代理店募集)― 青グラデ背景 */
.svc-guidance{ background: var(--grad-back); color: #fff; padding: 80px 0 90px; }
.svc-guidance .svc-sub{ color: #fff; border-left-color: #fff; }
.svc-guidance .svc-sub small{ color: #fff; }
.svc-guidance__lead{ margin-bottom: 20px; line-height: 1.9; }
.svc-guidance__sub{ font-size: 20px; font-weight: 700; margin: 0 0 20px; }
.gtable{ background: #fff; color: var(--color-text); overflow: hidden;padding:20px;margin-bottom: 40px; }
.gtable__row{ display: flex; }
.gtable__row{
    border-top: 1px solid var(--color-line);
    border-right: 1px solid var(--color-line);
}
.gtable__row:last-child{ border-bottom: 1px solid var(--color-line); }
.gtable__label{
    flex-shrink: 0;
    width: 230px;
    background: var(--color-primary);
    color: #fff;
    padding: 15px 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
}
.gtable__val{ flex: 1; padding: 15px 20px; }
.gtable__val em{ color: var(--color-accent); font-style: normal; font-weight: 700; }

@media (max-width: 768px){
    .svc-eclead__logo{ width: 56vw;margin-bottom:2vw; }
    .svc-eclead__text{ font-size: 3.2vw;width: 110%;margin-left: -5%;margin-bottom: 8vw; }
    .svc-guidance{ padding: 12vw 0 14vw; }
    .svc-guidance__lead{ font-size: 3.2vw; }
    .svc-guidance__sub{ font-size: 3.2vw;margin-bottom: 2.66vw; }
    .gtable{padding: 2vw 1.33vw;margin-bottom: 4vw;}
    .gtable__row{ flex-direction: column;border-left: 1px solid var(--color-line); }
    .gtable__label{ width: 100%;justify-content: center;padding: 1.6vw 0; font-size: 3.2vw; }
    .gtable__val{ padding: 2vw; font-size: 3.2vw; }
}

/********************************************
ページ内メニュー(.svc-fixnav)
右端固定・House Cleaning通過後に右からスライドイン／SPは下部横並び
********************************************/
.svc-fixnav{
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transform: translate(calc(100% + 20px), -50%);
    transition: transform .45s ease;
    pointer-events: none;
}
.svc-fixnav.is-show{ transform: translate(0, -50%); pointer-events: auto; }
.svc-fixnav__item{
    display: flex;
    flex-direction: column;
    width: 90px;
    overflow: hidden;
    transition: transform .3s;
}
@media (min-width: 769px){
    .svc-fixnav__item:hover{ transform: translateX(-4px); }
}
.svc-fixnav__ico{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    border: 2px solid var(--color-primary);
    border-radius: 8px 0 0 0;
    background: #fff;
}
.svc-fixnav__ico img{ width: 60px; height: 60px; object-fit: contain; }
.svc-fixnav__label{
    position: relative;
    padding: 6px 0px 15px;
    background: var(--color-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    border: 2px solid var(--color-primary);
    border-radius: 0 0 0 8px;
}
.svc-fixnav__label .arrow{
    position: absolute;
    left: 50%;
    bottom: 7px;
    transform: translateX(-50%) rotate(135deg);
}

@media (max-width: 768px){
    .svc-fixnav{
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        flex-direction: row;
        gap: 0;
        width: 100%;
        transform: translateY(100%);
    }
    .svc-fixnav.is-show{ transform: translateY(0); }
    .svc-fixnav__item{
        flex: 1;
        width: auto;
        border-radius: 0;
        box-shadow: 0 -2px 8px rgba(0,0,0,.12);
    }
    .svc-fixnav__ico{ height: 11vw;border-radius: 0px;border-width: 1px; }
    .svc-fixnav__item:not(:last-child) .svc-fixnav__ico{border-right: none;}
    .svc-fixnav__ico img{ width: 10vw; height: 10vw; }
    .svc-fixnav__label{ padding: 1vw 1vw 1vw; font-size: 2.66vw;border-radius: 0px;border-width: 1px; }
    .svc-fixnav__label .arrow{ display: none; }
    /* ページトップボタンは下部固定メニュー（.svc-fixnav）の上に表示 */
    .pagetop{ bottom: 23vw; }
}
