* {
  margin: 0;
  padding: 0;   /* ← 修正 */
  box-sizing: border-box;
}

section + section {
  margin-top: 100px!important;
}
header.banner {
  margin: 0;
  padding: 0;
  line-height: 0;   /* ← img の下にできる隙間を消す */
}

header.banner img {
  width: 90%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}


html {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", sans-serif;
}

header.banner img {
  width: 70%;       
  height: auto;      
  display: block;
  margin: 0 auto;    
}

@media screen and (max-width:900px){
header.banner img {
  width: 100%; 
  margin: 0 auto;         
}
}
  

.main-section {
  position: relative;
  padding: 20px 0;
  text-align: center;
  overflow-x:hidden; 
  /*background: repeating-linear-gradient( 
    -25deg,         
    #c11830 0%,
    #c11830 35%,
    #1c2652 35%,
    #1c2652 65%,
    #c11830 65%,
    #c11830 100%
  );*/
  background: #c11830;
}
.main-section::after {
  content: '';
  position: fixed;
  width: 180%;
  height: 180%;
  left: -60%;
  top: -55%;
  background: url("../images/bg_iwakifcdenki.svg") center center no-repeat;
  background-size: contain;
  z-index: -1;
  mix-blend-mode: multiply;
}

.button-wrapper {
  margin: 15px 0;
}

.btn {
display: block;           /* 横並びじゃなく縦に並ぶ */
  width: 80%;               /* 親要素の幅に対して90%にする */
  max-width: 400px;         /* 最大幅を設定して大きくなりすぎないように */
  margin: 10px auto;        /* 上下に10px、左右中央寄せ */
  padding: 15px 20px;       /* ボタン内の余白 */
  font-size: 20px;
  border-radius: 7px;
  text-align: center;
  background-color: #fff;
  color: #000;
  box-shadow: 0 5px 7px rgb(0, 0, 0);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.3;
}
.button-wrapper:first-child .btn {
  color: #c11830;
}
.button-wrapper:nth-child(2) .btn {
  color: #1c2652;
}

.btn:hover {
  background-color: #ddd;
}
.btn.blue-btn {
  background-color: #1c2652;
  color: #fff;
}
.btn.blue-btn:hover {
  background-color: #2d3d85;
}

.sinki {
  text-align: center;
  padding: 10px 10px;
  color: #000000;
}

.sinki h2 {
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: 800;
}

/* 新規ご契約者限定特典 */



.sinki p {
  font-size: 25px;
  margin-bottom: 20px;
}

.white-box {
  background-color: white; /* 白い背景 */
  padding: 20px;           /* 内側の余白 */
  border-radius: 10px;     /* 角丸（任意） */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* 影で浮かせる（任意） */
  width: 90%;
  max-width: 600px;        /* 幅の調整（任意） */
  margin: 0 auto;          /* 中央寄せ（任意） */
}


.sticker-img {
  width: 50%;
  display: block;
  margin: 10px;
}

@media screen and (max-width:768px){
.sticker-img {
  width: 50%; 
  margin: 0 auto 10px;         
}
  
  .main-section::after {
  width: 250%;
  height: 250%;
  left: -90%;
  top: -100%;
  background: url("../images/bg_iwakifcdenki.svg") center center no-repeat;
  background-size: contain;
}
}

.mascot {
  width: 15%;
  display: block;
  margin: 20px;
}

@media screen and (max-width:768px){
.mascot {
  width: 30%; 
  margin: 0 auto;         
}
}


.campaign {
  display: flex;       /* 横並びにする */
  gap: 10px;           /* 画像同士の間隔 */
  align-items: center; /* 高さを揃える */
  justify-content: center;
}


/* === いわきFCでんき 3つのPoint セクション === */

/* セクション全体 */
.points-section {
  text-align: center;
  /* 背景は指定しない → body のストライプがそのまま使われる */
}

/* 見出し */
.points-section h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #fff; 
  font-weight: 800;
}

/* ポイント全体の並び */
.point-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;            /* 画面幅が狭いときは折り返し */
  gap: 30px;                  /* カード間のスペース */
}

/* 各カード */
.point-item {
  background: #fff;           /* カードの白背景 */
  width: 30%;
  padding: 10px;
  border-radius: 0%;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

   display: flex;
  flex-direction: column;    /* 縦方向に並べる */
  justify-content: center;   /* 縦方向中央 */
  align-items: center;       /* 横方向中央 */
}

/* ホバーで浮き上がる */
.point-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* 画像 */
.point-item img {
  width: 100%;
  
}

/* 説明テキスト */
.point-item p {
  font-size: 16px;
  color: #333;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .point-list {
    flex-direction: column;
    align-items: center;
  }

  .point-item {
    width: 90%;
  }
}

.sumaho {
display: none;
}
@media not all and (min-width: 768px){
.sumaho {
display: block;}
}



.button-wrapper:nth-child(4) .btn {
  color: #000;
  margin-top: 50px;
}
.btn-note {
  text-align: center;
  font-size: 14px;
  color: #fff;
}
footer {
  width: 90%;
  margin: 0 auto;
  padding: 80px 0 20px;
}
.footer-text {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}
.footer-logo {
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
}
.footer-logo img {
  width: 100%;
}