@charset "UTF-8";


.campaign-wrap {
  display: none;
}

.campaign-wrap.is-on {
  display: block;
}

.campaign-wrap-body {
  display: none;
}

.campaign-wrap-body.is-on {
  display: block;
}


/* 全体ラッパー */
.nenmatsu {
  max-width: 750px;
  margin: 0 auto;
  margin-top:clamp(30px,3vw,60px); 
  margin-bottom:clamp(30px,3vw,60px); 
  position: relative;
}

/* 見出し */
.nenmatsu .title{
  max-width: 330px;
  background: #cd3341;
  text-align: center;
  color: #fff;
  padding: 6px 20px;
  margin:0 auto;
  font-size: clamp(14px, 1.4vw ,16px);
  font-weight: bold;
  position: relative;
  z-index: 2; /* 背景より前に出す */
}

/* 内容の外枠（背景：efebcd） */
.nenmatsu .back {
  background: #f4f3e9;
  margin-top: -20px;         /* 見出しと重ねる */
  padding: 16px;
  position: relative;
  z-index: 0;
}

/* 内容の白ブロック */
.nenmatsu .inner {
  background: rgba(255, 255, 255, 0.5);  /* 白50% */
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;

  /* 中央縦積み */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* タイトル */
.nenmatsu .inner h5 {
  font-size:clamp(16px, 1.8vw,20px) !important;
  margin-bottom: 20px;
  padding-top:4px !important;
}

.nenmatsu .inner h5 span{
  font-size:clamp(18px,1.6vw,30px)!important;
}

/* 内容 */
.nenmatsu .inner p {
  line-height: 1.7;
  font-size: clamp(14px,1.4vw,15px);
  margin-top: 1rem;
}

@media (max-width: 768px) {
.nenmatsu .inner {
  padding: 20px;
}

.nenmatsu .inner p {
text-align: left;
}
}


/* カラー変更 */

.cp-1 .back{
  background: #ffeff6;
}

.nenmatsu .inner{
  background: rgba(255, 255, 255, 1);  /* 白50% */
}