/* LINEで簡単応募・相談セクション */
.line-cta {
  background: #f9f3eb;
}

.line-cta__container {
  position: relative;
  background: #ffd04d;
  border-top-left-radius: 300px;
  padding: 100px 24px;
  box-sizing: border-box;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  z-index: 2;
}

/* LINEアイコン */
.line-cta__icon {
  width: 170px;
  height: 170px;
  flex-shrink: 0;
}

.line-cta__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ヘッダー（タイトル・説明文） */
.line-cta__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.line-cta__title {
  font-weight: bold;
  font-size: 32px;
  line-height: 1.5;
  color: #ff6666;
  margin: 0;
}

.line-cta__description {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
}

.line-cta__description p {
  margin: 0;
}

/* 3ステップ */
.line-cta__steps {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 940px;
  gap: 0;
}

.line-cta__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.line-cta__step-image {
  width: 280px;
  height: 280px;
  flex-shrink: 0;
}

.line-cta__step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.line-cta__step-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.line-cta__step-number {
  background: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;
  font-size: 24px;

  flex-shrink: 0;
  box-sizing: border- and box;
}

.line-cta__step-text {
  font-weight: bold;
  font-size: 20px;
  line-height: normal;

  text-align: center;
  white-space: nowrap;
}

.line-cta__step-text p {
  margin: 0;
}

/* CTA部分 */
.line-cta__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 513px;
}

.line-cta__cta-header {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  height: 42px;
  width: 484.5px;
}

.line-cta__arrow {
  width: 24px;
  height: 30px;
  flex-shrink: 0;
}

.line-cta__cta-text {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
  .line-cta__steps {
    max-width: 940px;
    width: 100%;
    gap: 12px;
  }

  .line-cta__container {
    padding: 80px 40px;
  }

  .line-cta__step-image {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .line-cta__container {
    gap: 40px;
    border-top-left-radius: 100px;
    padding: 40px 24px;
  }

  .line-cta__icon {
    width: 170px;
    height: 170px;
  }

  .line-cta__title {
    font-size: 24px;
  }

  .line-cta__description {
    font-size: 16px;
    font-weight: bold;
  }

  .line-cta__steps {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 40px;
  }

  .line-cta__step {
    gap: 24px;
    align-items: center;
  }

  .line-cta__step-image {
    width: 140px;
    height: 140px;
  }

  .line-cta__step-content {
    gap: 8px;
    align-items: center;
  }

  .line-cta__step-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
    padding: 0;
  }

  .line-cta__step-text {
    font-size: 16px;
    line-height: 32px;
    white-space: normal;
    text-align: center;
  }

  .line-cta__cta {
    width: 100%;
    max-width: 342px;
  }

  .line-cta__cta-header {
    width: 323px;
    height: 28px;
    gap: 8px;
  }

  .line-cta__arrow {
    width: 16px;
    height: 20px;
  }

  .line-cta__cta-text {
    font-size: 16px;
  }

  /* CTAボタンのレスポンシブスタイルはcta-button.cssに移行しました */
}
