@charset "UTF-8";
/*FS デフォTOPへ戻るボタン*/
.fs-c-buttonContainer--topPage{margin:30px 0;}

/* 右下固定バナー */
#fixed-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 160px;
  height: 160px;
  z-index: 9999;
}

/*// バナー画像 //*/
#fixed-banner a {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  overflow: hidden;
}

#fixed-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*// 閉じるボタン（外に出す） //*/
#banner-close {
  position: absolute;
  top: -14px;
  right: 0;
  width: 28px;
  height: 28px;
  padding-left: 4px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
}

/*// スマホ調整 //*/
@media (max-width: 768px) {
  #fixed-banner {
    width: 160px;
    height: 160px;
    right: 12px;
    bottom: 12px;
  }

  #banner-close {
    width: 24px;
    height: 24px;
    top: -12px;
    font-size: 16px;
  }
}

