@charset "UTF-8";

/* マーケティングセクション */
.marketing-section {
  background: #4663ac;
  padding: 0;
  margin: 0;
  position: relative;
}

@media (max-width: 750px) {
  .marketing-section {
    padding: 0;
    margin: 0;
  }
}

.marketing-section__header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.marketing-section__title {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
}

@media (max-width: 750px) {
  .marketing-section__title {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
}

.marketing-section__subtitle {
  font-size: 1.2rem;
  color: #e5e7eb;
  line-height: 1.6;
}

@media (max-width: 750px) {
  .marketing-section__subtitle {
    font-size: 1rem;
  }
}

.marketing-section__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* メインボックス（大きな白いエリア） */
.marketing-section__main-box {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 750px) {
  .marketing-section__main-box {
    padding: 40px 20px;
    margin-bottom: 30px;
  }
}

.marketing-section__description {
  margin-bottom: 40px;
}

.marketing-section__description p {
  font-size: 1.2rem;
  color: #374151;
  line-height: 1.7;
  margin: 0;
  font-weight: 600;
}

@media (max-width: 750px) {
  .marketing-section__description p {
    font-size: 1rem;
  }
}

.marketing-section__highlight {
  color: #f97316;
  font-weight: bold;
  font-size: 1.6rem;
}
.marketing-section__highlight2 {
  color: #ff5d7b;
  font-weight: bold;
  font-size: 1.6rem;
}
/* プロセスフロー */
.marketing-section__process {
  margin-top: 40px;
}

.process-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
}

@media (max-width: 750px) {
  .process-flow {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .process-arrow {
    transform: rotate(90deg);
    margin: 5px 0;
    font-size: 1.2rem;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  padding: 25px;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 3px solid #e5e7eb;
}

@media (max-width: 750px) {
  .process-step {
    width: 160px;
    height: 160px;
    padding: 25px;
  }
}

.process-step__icon {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 750px) {
  .process-step__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }
}

.process-step__icon svg {
  width: 100%;
  height: 100%;
}

.process-step__title {
  font-size: 0.9rem;
  font-weight: bold;
  color: #374151;
  text-align: center;
  margin: 0;
}

@media (max-width: 750px) {
  .process-step__title {
    font-size: 0.8rem;
  }
}

.process-arrow {
  font-size: 1.5rem;
  color: #5a6277;
  font-weight: bold;
  margin: 0 10px;
}


.marketing-section__conclusion {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid #e5e7eb;
}

.marketing-section__conclusion p {
  font-size: 1.3rem;
  color: #374151;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 750px) {
  .marketing-section__conclusion p {
    font-size: 1.1rem;
  }
}

/* 特徴ボックス */
.marketing-section__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 750px) {
  .marketing-section__features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.feature-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  border: none;
}

@media (max-width: 750px) {
  .feature-box {
    padding: 25px 20px;
  }
}

.feature-box__number {
  position: absolute;
  top: -18px;
  left: 30px;
  background: #f97316;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  border: 3px solid #ffffff;
}

@media (max-width: 750px) {
  .feature-box__number {
    top: -15px;
    left: 20px;
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
}

.feature-box__title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #4663ac;
  margin: 0 0 15px 0;
  padding-top: 10px;
}

@media (max-width: 750px) {
  .feature-box__title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
}

.feature-box__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.feature-box__list li {
  padding: 6px 0;
  color: #374151;
  position: relative;
  padding-left: 0;
  font-size: 16px;
}

.feature-box__list li::before {
  display: none;
}

.feature-box__result {
  font-size: 18px;
  color: #ff5d7b;
  font-weight: bold;
  margin: 0;
  padding-top: 15px;
  border-top: 1px solid #e5e7eb;
}

@media (max-width: 750px) {
  .feature-box__result {
    font-size: 0.9rem;
    padding-top: 12px;
  }
}

/* レスポンシブ調整 */
@media (max-width: 1024px) {
  .marketing-section__content {
    padding: 0 15px;
  }
  
  .marketing-section__main-box {
    padding: 40px 30px;
  }
  
  .feature-box {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .process-step {
    width: 100px;
    height: 100px;
    padding: 15px;
  }
  
  .process-step__icon {
    width: 35px;
    height: 35px;
  }
  
  .process-step__title {
    font-size: 0.8rem;
    word-break: keep-all;
  }
  
  .process-flow {
    gap: 20px;
  }
}
