/* ------------------------------
 PORT */

#add_customizer_0_wrapper {
  --card-height: 240px;
}

/* 浮かせた白いカード型ブロック */
.feature-box {
  background: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 4rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  width: 70%;
  margin: -120px auto 0;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

/* 各カラムアイテム */
.feature {
  flex: 1 1 calc(33.333% - 2rem); /* 3カラム */
  text-align: center;
  min-width: 240px;
  align-self: center;
  position: relative;
}

.icon {
  font-size: 24px;
  color: #2271b1;
}

/* タブレット・スマホ対応 */
@media screen and (max-width: 768px) {
  .feature {
    flex: 1 1 100%; /* 1カラム */
  }
  .feature-box {
    padding: 1.5rem;
  }
}
