/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 23 2025 | 08:44:48 */
/* =========================
   共通：フッター追従メニュー
========================= */

body{
  padding-bottom: 90px;
}

/* 上に戻るボタン */
.p-fixBtnWrap{
  bottom: 7em;
}

/* 背景帯 */
#fixed-bottom-wrap{
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #f9faff;
  z-index: 90;
  padding: 16px 0 18px;
  box-sizing: border-box;
}

/* メニュー本体 */
#fixed-bottom-menu{
  position: relative;
  z-index: 99;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
}

#fixed-bottom-menu .swell-block-columns{
  display: flex;
  gap: 0;
  margin: 0;
}

#fixed-bottom-menu .swell-block-column{
  padding: 0;
  flex: 1 1 33.333%;
}

/* ボタン本体 */
#fixed-bottom-menu .swell-block-button__link[data-has-icon]{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  height: 64px;
  padding: 0 15px;
  border-radius: 999px;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,.16);

  /* ★ここが原因なので削除（ラベルを切らない） */
  /* overflow: hidden; */
}

/* ===== マウスオン白マスク ===== */
#fixed-bottom-menu .swell-block-button__link[data-has-icon]::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.25);
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
  border-radius: inherit;
  z-index: 1;
}

#fixed-bottom-menu .swell-block-button__link[data-has-icon]:hover::after{
  opacity: 1;
}

/* アイコン＋テキスト */
#fixed-bottom-menu .btn-inner{
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 2;
}
#fixed-bottom-menu .btn-icon i{
  font-size: 18px;
}

/* テキスト切り替え */
#fixed-bottom-menu .btn-text--pc{
  display: inline;
}
#fixed-bottom-menu .btn-text--sp{
  display: none;
}

/* 上ラベル */
#fixed-bottom-menu .swell-block-button__link[data-has-icon]::before{
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  padding: 2px 12px;
  border-radius: 999px;
  background: #fff;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
  border: 1px solid transparent;
  color: #333;
  z-index: 3;
}

/* ========= PC ========= */
@media screen and (min-width: 768px){

  #fixed-bottom-menu .is-sp-tel{
    display: none;
  }

  /* 左：赤 */
  #fixed-bottom-menu .swell-block-column:nth-child(1) .swell-block-button__link[data-has-icon]{
    background-color: #e60012;
  }
  #fixed-bottom-menu .swell-block-column:nth-child(1) .swell-block-button__link[data-has-icon]::before{
    content: "無料お相手診断";
    border-color: #e60012;
  }

  /* 中：緑 */
  #fixed-bottom-menu .swell-block-column:nth-child(2) .swell-block-button__link[data-has-icon]{
    background-color: #239b91;
  }
  #fixed-bottom-menu .swell-block-column:nth-child(2) .swell-block-button__link[data-has-icon]::before{
    content: "オーネットに来店";
    border-color: #239b91;
  }

  /* 右：黄 */
  #fixed-bottom-menu .swell-block-column:nth-child(3) .swell-block-button__link[data-has-icon]{
    background-color: #eca51b;
  }
  #fixed-bottom-menu .swell-block-column:nth-child(3) .swell-block-button__link[data-has-icon]::before{
    content: "オンライン";
    border-color: #eca51b;
  }
}

/* ========= SP ========= */
@media screen and (max-width: 767px){

  body{
    padding-bottom: 80px;
  }

  #fixed-bottom-wrap{
    padding: 0;
  }

  #fixed-bottom-menu .swell-block-columns{
    gap: 0 !important;
  }

  #fixed-bottom-menu .swell-block-column{
    padding: 0 !important;
    margin: 0 !important;
    flex: 1 1 0;
    min-width: 0;
  }

  /* 並び順 */
  #fixed-bottom-menu .swell-block-column:nth-child(2){ order: 1; }
  #fixed-bottom-menu .is-sp-tel{ order: 2; }
  #fixed-bottom-menu .swell-block-column:nth-child(1){ order: 3; }

  /* 黄は非表示 */
  #fixed-bottom-menu .swell-block-column:nth-child(3){
    display: none !important;
  }

  /* 赤だけ広く */
  #fixed-bottom-menu .swell-block-column:nth-child(1){
    flex: 1.35 1 0;
  }

  /* ボタン */
  #fixed-bottom-menu .swell-block-button__link[data-has-icon]{
    height: 72px;
    border-radius: 0;
    padding: 12px 12px 6px;
    font-size: 14px;
    line-height: 1.3;
    box-shadow: none;
  }

  /* アイコン非表示 */
  #fixed-bottom-menu .btn-icon{
    display: none;
  }

  /* SPテキスト */
  #fixed-bottom-menu .btn-text--pc{
    display: none;
  }
  #fixed-bottom-menu .btn-text--sp{
    display: inline;
  }

  /* ラベル */
  #fixed-bottom-menu .swell-block-button__link[data-has-icon]::before{
    top: -8px;
    font-size: 12px;
    padding: 1px 8px;
  }

  /* 緑 */
  #fixed-bottom-menu .swell-block-column:nth-child(2) .swell-block-button__link[data-has-icon]{
    background-color: #239b91;
  }
  #fixed-bottom-menu .swell-block-column:nth-child(2) .swell-block-button__link[data-has-icon]::before{
    content: "来店予約";
    border-color: #239b91;
  }

  /* 橙 */
  #fixed-bottom-menu .is-sp-tel .swell-block-button__link[data-has-icon]{
    background-color: #ee7800;
    letter-spacing: -0.11rem;
  }
  #fixed-bottom-menu .is-sp-tel .swell-block-button__link[data-has-icon]::before{
    content: "通話無料";
    border-color: #ee7800;
    letter-spacing: 0;
  }

  /* 赤 */
  #fixed-bottom-menu .swell-block-column:nth-child(1) .swell-block-button__link[data-has-icon]{
    background-color: #e60012;
  }
  #fixed-bottom-menu .swell-block-column:nth-child(1) .swell-block-button__link[data-has-icon]::before{
    content: "カンタン60秒";
    border-color: #e60012;
  }
}
