  :root{
    --red-start:#ff4d4d;
    --red-end:#b71c1c;
    --orange:#f28c00;
    --green:#06c755;
  }
  * { box-sizing:border-box; }
  body{ margin:0; font-family:"Hiragino Sans","Yu Gothic",sans-serif; background:#eee; }
 
  /* ==== プレビュー用（本体には不要） ==== */
  .preview-frame{
    max-width:400px; margin:40px auto; background:#fff; height:600px;
    position:relative; overflow:hidden; box-shadow:0 0 20px rgba(0,0,0,.15); border-radius:12px;
  }
  .preview-dummy{ display:flex; align-items:center; justify-content:center; height:100%; color:#999; font-size:13px; }
 
  /* ==== sp-fix-box 本体 ==== */
/*   .sp-fix-box{
  position:absolute;
  left:0; bottom:0; width:100%;
  z-index:100;
  box-shadow:0 -2px 8px rgba(0,0,0,.12);
} */
  .sp-fix-box .up-d-flex{
    display:flex;
    flex-wrap:wrap;
    list-style:none;
    margin:0;
    padding:0;
  }
  .sp-fix-box .up-d-flex > li{ display:flex; }
 
  /* 順序制御：DOM順は変更せず、電話を上段（全幅）／お問い合わせ・LINEを下段（各50%）に視覚的に並べ替え */
  .sp-fix-box .up-d-flex > li:nth-child(1){ order:2; flex:1 1 50%; } /* お問い合わせ */
  .sp-fix-box .up-d-flex > li:nth-child(2){ order:1; flex:1 1 100%; } /* 電話 */
  .sp-fix-box .up-d-flex > li:nth-child(3){ order:3; flex:1 1 50%; } /* LINE */
 
  .sp-fix-box .up-d-flex > li,
  .sp-fix-box [data-ab-test-block],
  .sp-fix-box [data-ab-test-contents]{
    width:100%;
  }
 
  /* お問い合わせ・LINE（下段） */
  .sp-fix-box .item.contact a,
  .sp-fix-box .item.line a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    height:52px;
    width:100%;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    font-size:14px;
  }
  .sp-fix-box .item.contact{ background:var(--orange); height:100%; }
  .sp-fix-box .item.line{ background:var(--green); height:100%; }
 
  /* 電話（上段・全幅・赤グラデーション） */
  .sp-fix-box .item.tel{
    background:linear-gradient(135deg, var(--red-start) 0%, var(--red-end) 100%);
    height:64px;
  }
  .sp-fix-box .item.tel a{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:2px;
    width:100%;
    height:100%;
    color:#fff;
    text-decoration:none;
  }
  .sp-fix-box .tel-number{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:20px;
    font-weight:700;
    line-height:1;
  }

  .sp-fix-box .tel-hours{
    font-size:11px;
    font-weight:500;
    letter-spacing:.02em;
    opacity:.9;
  }
 
  /* ==== ブレイクポイント ==== */
  @media (max-width:1024px){
    .sp-fix-box .item.tel{ height:60px; }
    .sp-fix-box .tel-number{ font-size:19px; }
  }
 
  @media (max-width:599px){
    .sp-fix-box .item.tel{ height:56px; }
    .sp-fix-box .tel-number{ font-size:17px; }
    .sp-fix-box .tel-hours{ font-size:10px; }
    .sp-fix-box .item.contact a,
    .sp-fix-box .item.line a{ height:48px; font-size:13px; }
  }
  
  
/* 追記 */

/* ==== sp-fix-box：電話ボタン上段化＋赤グラデーション ==== */
.sp-fix-box .up-d-flex{
  flex-wrap: wrap; /* liの折り返しを許可 */
}
.sp-fix-box .up-d-flex > li:nth-child(1){ width: 50%; order: 2; } /* お問い合わせ */
.sp-fix-box .up-d-flex > li:nth-child(2){ width: 100%; order: 1; } /* 電話 */
.sp-fix-box .up-d-flex > li:nth-child(3){ width: 50%; order: 3; } /* LINE */

.sp-fix-box .tel a{
  background: linear-gradient(135deg, #ff4d4d 0%, #b71c1c 100%) !important;
  padding: 10px 6px;
  gap: 8px;
}
.sp-fix-box .tel a:before{
  margin-right: 0; /* 既存の電話アイコンはそのまま使用、余白だけ調整 */
  font-size: 18px;
}
.sp-fix-box .tel-text{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.3;
}
.sp-fix-box .tel-number{
  font-size: 18px;
  font-weight: bold;
}
.sp-fix-box .tel-hours{
  font-size: 10px;
  font-weight: 500;
  opacity: .9;
}

@media (max-width: 1024px){
  .sp-fix-box .tel a{ padding: 8px 4px; }
  .sp-fix-box .tel-number{ font-size: 22px; }
  .sp-fix-box .tel-hours{
    font-size: 10px; 
    display: block;
    margin-right: auto;
    margin-left: auto;
    margin-top: 3px;
  }
  
  .sp-fix-box .tel-number::before{
    content:"\260E"; /* 電話アイコン代替。実装時はfont-awesomeのfa-phoneに置換 */
    font-size:16px;
  }
  
  .sp-fix-box .item.tel{
    width: 100%;
  }
  
    .sp-fix-box .item.line{
      width: 100%;
    }
  .sp-fix-box .tel a:before{
    display: none;
  }  
  .sp-fix-box .item.contact a, .sp-fix-box .item.line a{
    font-size: 15px;
  }
}

/* PC時画面下部固定ボタン */

  :root{
    --navy:#142341;
    --navy-deep:#0c1830;
    --red-start:#ff4d4d;
    --red-end:#b71c1c;
    --orange:#ff8400;
    --green:#49cf29;
  }
  * { box-sizing:border-box; }
  body{ margin:0; font-family:"Hiragino Sans","Yu Gothic",sans-serif; background:#eee; }
 
  /* ==== プレビュー用（本体には不要） ==== */
  .preview-frame{
    max-width:1300px; margin:40px auto; background:#fff; height:500px;
    position:relative; overflow:hidden; box-shadow:0 0 20px rgba(0,0,0,.15); border-radius:8px;
  }
  .preview-dummy{ display:flex; align-items:center; justify-content:center; height:100%; color:#999; font-size:14px; }
 
  /* ==== PC専用固定バー ==== */
  .pc-fix-box{
    display:none; /* デフォルト非表示（SPでは出さない） */
    position:absolute; /* 実装時は fixed に変更 */
    left:0; bottom:0; width:100%;
    z-index:200;
    background:linear-gradient(90deg, var(--navy) 0%, var(--navy-deep) 100%);
    box-shadow:0 -4px 16px rgba(0,0,0,.2);
  }
  /* 実装時のブレイクポイント：1024px以下(SP/TB)では出さない、1025px以上のPCのみ表示 */
  @media (min-width:1025px){
    .pc-fix-box{ display:block; }
  }
 
  .pc-fix-box__inner{
    max-width:1300px;
    margin:0 auto;
    padding:0 30px;
    height:78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
  }
 
  /* 左：受付案内テキスト */
  .pc-fix-box__text{
    display:flex;
    flex-direction:column;
    justify-content:center;
    color:#fff;
    flex-shrink:0;
  }
  .pc-fix-box__line1{
    font-size:17px;
    font-weight:700;
    letter-spacing:.03em;
  }
  .pc-fix-box__line2{
    font-size:12.5px;
    font-weight:500;
    opacity:.85;
    margin-top:3px;
    letter-spacing:.02em;
  }
 
  /* 右：ボタン群 */
  .pc-fix-box__btns{
    display:flex;
    align-items:center;
    gap:14px;
    list-style:none;
    margin:0;
    padding:0;
  }
  .pc-fix-box__btns a{
    display:flex;
    align-items:center;
    justify-content:center;
    height:54px;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    border-radius:6px;
    white-space:nowrap;
    transition:opacity .2s ease;
  }
  .pc-fix-box__btns a:hover{
    opacity:.85;
  }
 
  /* 電話ボタン（赤グラデーション） */
  .telbtn{
    background:linear-gradient(135deg, var(--red-start) 0%, var(--red-end) 100%);
    padding:6px 22px;
    gap:12px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    border-radius: 5px;
  }
  .pc-fix-box__icon{
    width:34px;
    height:34px;
    flex-shrink:0;
    border-radius:50%;
    background:#fff;
    color:#c81e25;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
  }
  .pc-fix-box__tel-text{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    line-height:1.3;
  }
  .pc-fix-box__tel-label{
    font-size:11px;
    font-weight:500;
    opacity:.9;
  }
  .pc-fix-box__tel-number{
    font-size:21px;
    font-weight:800;
    letter-spacing:.02em;
  }
 
  /* お問い合わせボタン（オレンジ） */
  .pc-fix-box__contact a{
    background:var(--orange);
    padding:0 26px;
    font-size:15px;
  }
 
  /* LINEボタン（グリーン） */
  .pc-fix-box__line a{
    background:var(--green);
    padding:0 26px;
    font-size:15px;
    gap:8px;
  }
  .pc-fix-box__line a i{
    font-size:20px;
  }
  
  /* 2026/818 */


.telbtn{
     position: fixed;
    bottom: 20px;
    right: 30px;
    width: 15%;
    height: 60px;
    z-index: 99;
}

.telbtn a{
      width: 100%;
    display: flex;
    border-radius: 7px;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.telbtn a img{
  display: block;
    width: 20px;
    margin-right: 5px;
    margin-top: 5px;
}

.telbtn span{
      color: #fff;
    font-weight: bolder;
    text-align: center;
    display: block;
    margin-top: 10px;
    font-size: 16px;
}


@media screen and (max-width:1024px) {
.foot02.color-white{
  margin-bottom: 110px;
}
}

@media screen and (max-width:599px) {
.foot02.color-white{
  margin-bottom: 100px;
} 
}

.price-head{
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #2d72b2;
}


#top .tb-num {
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
}

.sp-fix-box li div{
  width: 100%;
}

#top .tb-medal{
  padding: 1px;
}

@media (max-width: 1024px) {
    .sp-fix-box .tel-number::before {
        content: "\260E";
        font-size: 23px;
    }
       #top .tb-medal {
        max-width: 116px;
            box-shadow: 0 2px 2px rgba(0, 0, 0, .22);
    }
    
    
    
}
#top .tb-medal{
      box-shadow: 0 2px 2px rgba(0, 0, 0, .22);
}

@media screen and (max-width:1024px) {
.item.tel{
  position: relative;
} 

.item.tel::after {
        content: "年中無休 9:00〜20:00";
        position: absolute;
        right: 50%;
        bottom: 3%;
        transform: translateX(50%);
        font-size: 12px;
        color: #fff;
        margin-right: auto;
        margin-left: auto;
        margin-top: 3px;
        font-weight: bold;
    }

.item.tel .tel-text{
  margin-top: -10px;
}
}

.telbtn::after {
    content: "年中無休 9:00〜20:00";
    position: absolute;
    right: 50%;
    top: -17%;
    transform: translateX(50%);
    font-size: 12px;
    color: #c72727;
    margin-right: auto;
    margin-left: auto;
    margin-top: 3px;
    font-weight: bold;
    width: max-content;
    background: #fff;
    padding: 3px 10px;
}

@media screen and (max-width:1024px) {
.telbtn{
 display: none; 
}
}

