/* =========================================
   MakeShop：会員登録LP（参照画像寄せ：整列・改行・サイズ・余白）
========================================= */

#memberreg{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 12px;
  --contentW: 680px; /* 参照画像の“揃え幅” */
}

#memberreg *, #memberreg *::before, #memberreg *::after{
  box-sizing: border-box;
}

/* intro / title / list を同じ幅で左右揃え */
#memberreg p.intro,
#memberreg .ms-section-title,
#memberreg .ms-benefit-list{
  max-width: var(--contentW);
  margin-left: auto;
  margin-right: auto;
}

/* 見出しを非表示（必要なら削除OK） */
#memberreg .sr-only{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

/* INTRO（改行保持＋中央） */
#memberreg p.intro{
  white-space: normal; 
  word-break: normal;
  overflow-wrap: anywhere;
  margin: 14px auto 44px;
  
  line-height: 1.9;
  font-size: 14px;
  color:#333;
}

/* HERO */
#memberreg .ms-hero-banner{
  max-width: 980px;
  margin: 0 auto;
}
#memberreg .ms-hero-img{
  width: 100%;
  height: auto;
  display: block;
}

/* TITLE */
#memberreg .ms-section-title{
  text-align:center;
  color:#9a8731;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 40px;
  margin: 0 auto 34px;
}

/* BENEFIT LIST */
#memberreg .ms-benefit-list{
  list-style:none;
  padding:0;
  margin:0 auto;
}

#memberreg .ms-benefit-list li{
  display:flex;
  background:#fff;
  border: 1px solid #fff;
  border-radius: 0;
  overflow:hidden;
  margin: 0 0 18px;
  width: 100%;
}

/* 左帯 */
#memberreg .ms-benefit-no{
  width: 52px;
  background:#9a8731;
  color:#fff;
  font-weight: 900;
  font-size: 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 0;
}

/* 本体：Text + Icon を“中央寄せ”で並べる（参照画像の見え方） */
#memberreg .ms-benefit-body{
    
  flex: 1;
  padding: 22px 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 34px;
  min-height: 160px;
}

/* TEXT（中央寄せ＋固定幅で改行を揃える） */
#memberreg .ms-benefit-text{
  font-weight: 700;
  font-size: 22px;
  line-height:1.45;
  color:#111;
  width: 340px;
  text-align: center;
}

#memberreg .ms-benefit-text .big{
  font-size: 86px;
  font-weight: 900;
  color:#d60000;
  line-height:1;
  margin: 6px 0 6px;
}
#memberreg .ms-benefit-text .big .unit{
  font-size: 26px;
  margin-left: 6px;
}

#memberreg .ms-benefit-note{
  font-size: 12px;
  color:#666;
  margin-top: 10px;
  font-weight: 400;
  text-align: center;
}

/* ICON */
#memberreg .ms-benefit-icon{
  width: 240px;
  display:flex;
  align-items:center;
  justify-content:center;
}
#memberreg .ms-benefit-icon img{
  width: 190px;
  max-width: 100%;
  height:auto;
  display:block;
  margin: 0;
}

