@charset "UTF-8";
/* CSS Document */

/* 固定ボタン */
.campaign-toggle {
  position: fixed;
  bottom: 6px;
  left: 10px;
  z-index: 1000;
  background: #ff7b00;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 4px 18px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
/* パネル本体 */
.campaign-panel {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 1000;
}
/* 開いた状態 */
.campaign-panel.active {
  transform: translateY(0);
}
/* 中身 */
.campaign-inner {
  position: relative;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 50px 40px 30px;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
  max-width: 740px;
  margin: 0 auto;
  background-image: url(/img/common/bg_campain.jpg);
  background-size: cover;
}
.campaign-inner p {
	line-height: 1.5;
}
.campaign-inner p span {
	font-size: 1.2em;
	color: #ff0000;
	font-weight: bold;
}
/* パネルが開いたら固定ボタンを非表示 */
.campaign-panel.active + .campaign-toggle,
.campaign-toggle.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* 閉じるボタン */
.campaign-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #eee;
  cursor: pointer;
  text-align: center;
  line-height: 1;
}
/* CTAボタン */
.campaign-btn {
  display: block;
  width: fit-content;
  margin: 20px auto 0;
  padding: 8px 28px;
  background: #ff7b00;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
}