
@charset "utf-8";
.egift_section h2 {
  font-size: 1.8em;
  color: #d42a19;
  text-align: center;
  margin-bottom: 20px;
}

.egift_catchcopy {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.8;
}

.egift_steps h3 {
  background: #f5f5f5;              /* 淡いグレー背景 */
  text-align: center;               /* 中央寄せ */
  font-size: 1.6em;
  font-weight: bold;
  color: #333;
  padding: 16px 0;
  margin: 40px 0 30px;              /* セクションの間に余白 */
  width: 100%;                      /* 横幅いっぱい */
  border-radius: 0;                 /* 丸みなし */
  box-shadow: none;                 /* 影を削除 */
}



.egift_row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
  list-style: none;
  padding: 0;
}

.egift_row li {
  width: 32%;
  text-align: center;
  border-radius: 10px;
}

.egift_row img {
  max-width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}

.egift_row p {
  padding:10px 5px 0 0;
  margin: 0;
}

.egift_step {
  color: #ff204f;
  font-size: 1.6em;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: 0.05em;
}


.egift_main {
  color: #333;
  font-size: 1.2em;
  font-weight: normal;
  text-align: center;
  margin-bottom: 4px;
}

.egift_caption {
  color: red;
  text-align: center;
  line-height: 1.4;
}

/* ✅ スマホ対応：縦並び表示 */
@media screen and (max-width: 768px) {
  .egift_row {
    flex-direction: column;
  }
  .egift_row li {
    width: 100%;
  }

  .egift_section h2 {
    font-size: 5vw;
  }

  .egift_catchcopy {
    font-size: 4vw;
  }

  .egift_steps h3 {
    font-size: 6vw;
    padding: 16px 0;
  }

  .egift_step {
    font-size: 6vw;
  }

  .egift_main {
    font-size: 5vw;
  }

  .egift_caption {
    font-size: 4.2vw;
  }
}
