.bg{

position:fixed;

top:0;
left:0;

width:100%;
height:100vh;

background:url("../../Images/whietplus/BG.png") center/cover no-repeat;

z-index:-1;

}
body{
  margin: 0; /* ←追加 */
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;

}
.a-text{
  font-size: 9px;
  color: #666666;
  margin-top: 10px;
  text-align: right;
}

/* LP */



.lp-container{
background:#fff;
max-width:500px;
margin:0 auto;

}

.lp-container img{

width:100%;
display:block;

}
.lp-container{
box-shadow:0 10px 40px rgba(73, 73, 73, 0.226);
}
/* offer */

.offer{
    background-color: #FBF7EF;
}


/* CTA */

.floating-cta {
  position: fixed;
  bottom: 0;
  left: 50%;

  width: 100%;
  max-width: 500px;

  transform: translateX(-50%) translateY(100%);
  transition: .4s;

  z-index: 9999;

  pointer-events: none;
}

.floating-cta.show {
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.floating-cta img{
  width:100%;
  display:block;
}


.offer-section {
  background: url("../../Images/whietplus/offer-bg.webp") no-repeat center / cover;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

/* 白ボックス */
.offer-box {
  position: relative;
  max-width: 520px;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 20px 16px 30px;
  box-shadow: 0 15px 30px rgba(147, 106, 40, 0.25);

  overflow: visible; /* 重要 */
}

/* ゴールド枠（角丸対応） */
.offer-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px; 
  background: linear-gradient(90deg, #936A28, #E3B567, #936A28);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}
/* 上の画像 */
.offer-img {
  width: 100%;
  display: block;
  margin-bottom: 10px;
}

/* CTAエリア*/
.cta-area {
  display: flex;
  justify-content: center;
  margin-top: -20px; 
}

/* CTAボタン */
.cta-button {
  display: inline-block;
  width: 100%;
}

/* CTA画像 */
.cta-button img {
  width: 100%;
  display: block;
}

.offer3-img {
  position: relative;
  top: -30px;
}


/* ドキドキアニメーション */
@keyframes heartbeat {
  0%   { transform: scale(1); }
  25%  { transform: scale(1.08); }
  40%  { transform: scale(0.95); }
  60%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}


.cta-button {
  animation: heartbeat 1.5s infinite;
}




/* ホバーで強調 */
.cta-button:hover {
  animation: none;
  transform: scale(1.08);
}

/* スマホ最適化 */
@media (max-width: 480px) {
  .cta-area {
    margin-top: -15px;
  }
}


/* セクション全体 */
.sc5 {
  background: #f7f4ef;
  text-align: center;
  padding-bottom: 10%;
}

/* タイトル */
.sc5-title {
  width: 100%;
  margin: 0 auto;
  display: block;
}

img.sc5-title02 {
    width: 50%;
    margin: 25px auto;
}

/* 白ボックス */
/* 白ボックス（親要素） */
.sc5-box {
  position: relative; 
  width: 90%;
  max-width: 500px;
  margin: 0 auto ; 
  background: #fff;
  border-radius: 20px;
  padding: 40px 16px 24px;
  border: 1px solid #E3B567;
  box-sizing: border-box;
}

.sc5-label-text {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%); 
  background-color: #f7a052;
  color: #fff;
  font-size:22.58px;
  font-weight: normal;
  padding: 5px 20px;
  white-space: nowrap;
  z-index: 10; 
}

/* 見出し */
.sc5-heading {
  width: 100%;
  margin-bottom: 20px;
}

/* ラベル（茶色） */
.sc5-label {
  width: 200px;
  margin: 24px auto 12px;
  display: block;
}

/* =========================
   横並びブロック
========================= */

.sc5-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 24px;
  align-items: flex-start;
}



/* 左：GIF */
.sc5-main {
  width: 50% !important;
  height: auto;
  display: block;
}

/* 右：テキスト */
.sc5-text {
  width: 50% !important;
  height: auto;
  display: block;
}

/* 中央パーツ */
.sc5-center {
  width: 80%;
  max-width: 320px;
  margin: 20px auto;
  display: block;
}





/* footer */

.footer{
max-width:500px;
margin:0 auto;
padding:20px;
margin-top:35px;

text-align:center;

background:#313131;
color:#fff;

}


.footer-links{

display:flex;
flex-wrap:wrap;
gap:10px;
justify-content:center;
margin: 10px auto;;
font-size:12px;

}

.footer-links a{

color:#ffffff;
text-decoration:none;

}

.sns-links{

margin-top:20px;

display:flex;
justify-content:center;
gap:20px;
}

.sns-links img{

width:32px;
height:32px;

}


/* PC */

@media (min-width:768px){

body{

background-image:url("../../Images/whietplus/bg.webp");
background-size:100% auto;
background-position:center;
background-repeat:no-repeat;

}

}

.margin{
  margin-top: 30px;
}


/* SP版フッター */
footer.sp-only {
  display: block;
}

@media (min-width:768px){
  footer.sp-only {
    display: none;
  }
}


/* カートエリア背景 */

.cartlist__wrapper{
background:#ffffff;
padding:20px;
border-radius:8px;
}

.cart__heading{
background:#ffffff;
}

.form__section--content{
background:#ffffff;
max-width: 1140px;
margin: 0 auto;
}

