@charset "UTF-8";
.present-section {
  background-color: #FFF5ED;
  padding: 40px 0;
  text-align: center;
}

.present-icon {
  margin: 0 24px 24px;
  display: block;
  text-align: center;
}
.present-icon img {
  width: 100%;
  height: auto;
  animation: floaty-smooth 3.5s ease-in-out infinite;
  will-change: transform;
}

@keyframes floaty-smooth {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* 各カード */
.present-card {
  background-color: #FCEBC6;
  border-radius: 16px;
  margin: 0 24px 24px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border: 2px solid #333;
  height: 140px;
}

/* 左エリア */
.present-card-left {
  flex: 1;
  text-align: center;
}

/* 「特典1」ボタン風 */
.present-label {
  display: inline-block;
  background-color: #F36A3A;
  color: #fff;
  border-radius: 24px;
  padding: 4px 12px;
  font-size: 3.5vw;
  margin-bottom: 11px;
}

/* 「加盟数を一気に伸ばす！」 */
.present-title {
  font-size: 3.1vw;
  font-weight: 700;
  color: #000;
  margin-bottom: 11px;
}

/* 「加盟10倍テンプレート」 */
.present-main {
  font-size: 4.5vw;
  font-weight: 900;
  color: #F36A3A;
  line-height: 1.3;
}

/* 右エリア（画像） */
.present-card-right {
  flex-shrink: 0;
}
.present-card-right img {
  width: 110px;
  height: auto;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .present-label {
    font-size: 1rem;
  }
  .present-title {
    font-size: 1.1rem;
  }
  .present-main {
    font-size: 1.4rem;
  }
  .present-card-right img {
    width: 100px;
  }
}
.present-cta {
  margin-top: 40px;
  text-align: center;
}

.line-button {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  width: 20rem;
  margin: auto;
  padding: 1rem 4rem;
  font-weight: 700;
  font-size: 4vw;
  color: #fff;
  border-radius: 50px;
  background: #00C300;
  border: none;
  position: relative;
  box-shadow: 0 6px 0 rgb(0, 90, 0);
  transition: 0.4s ease;
  animation: bounce-line 2s infinite;
}
.line-button:hover {
  color: #00C300;
  background: #fff;
  box-shadow: 0 4px 0 rgba(0, 90, 0, 0.8);
  transform: translateY(-2px);
}

@keyframes bounce-line {
  0% {
    box-shadow: 0 6px 0 rgb(0, 90, 0);
    top: 0px;
  }
  10% {
    box-shadow: 0 0 0 rgb(0, 90, 0);
    top: 5px;
  }
  20% {
    box-shadow: 0 6px 0 rgb(0, 90, 0);
    top: 0px;
  }
  30% {
    box-shadow: 0 0 0 rgb(0, 90, 0);
    top: 5px;
  }
  40% {
    box-shadow: 0 6px 0 rgb(0, 90, 0);
    top: 0px;
  }
  100% {
    box-shadow: 0 6px 0 rgb(0, 90, 0);
    top: 0px;
  }
}
.present-limited {
  background-color: #FFF5ED;
  padding: 48px 0;
  text-align: center;
}
.present-limited-title {
  color: #F36A3A;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .line-button {
    font-size: 1.5rem;
    padding: 24px 16px;
    width: 23rem;
  }
  .present-card {
    height: 176px;
    padding: 37px;
  }
  .present-card-right img {
    width: 142px;
  }
}
@media (min-width: 1024px) {
  .present-wrapper {
    max-width: 960px;
    margin: 0 auto;
  }
  .pc-present {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 細かく6分割 */
    grid-auto-rows: auto;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
    align-items: start;
  }
  .present-card:nth-child(1) {
    grid-column: 1/3;
    grid-row: 1;
  }
  .present-card:nth-child(2) {
    grid-column: 3/5;
    grid-row: 1;
  }
  .present-card:nth-child(3) {
    grid-column: 5/7;
    grid-row: 1;
  }
  .present-card:nth-child(4) {
    grid-column: 2/4;
    grid-row: 2;
  }
  .present-card:nth-child(5) {
    grid-column: 4/6;
    grid-row: 2;
  }
  .present-card {
    margin: 0;
    height: 341px;
    padding: 20px;
    flex-direction: column;
    gap: 25px;
  }
  .present-label {
    font-size: 1.3rem;
    margin-bottom: 25px;
  }
  .present-title {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .present-card-right img {
    width: 140px;
  }
  .line-button {
    width: 21rem;
    margin-top: 36px;
  }
  .present-section {
    max-width: 960px;
    margin: 0 auto 25px;
  }
}
@media (max-width: 400px) {
  .present-title {
    font-size: 2.8vw;
    white-space: nowrap;
  }
  .present-card {
    gap: 8px;
    padding: 12px;
  }
  .present-card-right img {
    width: 90px;
  }
}/*# sourceMappingURL=present.css.map */