/* Microsoft Cloudテクニカルサポートセクション */
.service-page .section-05 {
  background-color: #f8f8f8;
}

.service-page.cloud-manage-page .section-title {
  color: var(--c1);
}

.cloud-manage-page .section-subtitle {
  color: var(--c1);
}

.service-page .section-05 .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.service-page .technical-support-section {
  background-color: #fff;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
  margin-top: 40px;
}

.service-page .technical-support-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.service-page .technical-support-icon {
  margin-right: 20px;
}

.service-page .technical-support-icon img {
  width: 80px;
  height: 80px;
}

.service-page .technical-support-title {
  font-size: 32px;
  font-weight: 700;
  color: #4f4cd7;
  line-height: 1.3;
  text-align: center;
}

.service-page .technical-support-description {
  margin-bottom: 40px;
}

.service-page .technical-support-description p {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.service-page .customer-requests {
  margin-bottom: 50px;
}

.service-page .customer-requests-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.service-page .customer-requests-header img {
  width: 30px;
  margin-right: 15px;
}

.service-page .customer-requests-header h4 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.service-page .microsoft-technical-support {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-page .microsoft-technical-support-content {
  text-align: center;
}

.service-page .microsoft-technical-support-content h4 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: var(--c1);
}

.service-page .request-cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.needs-container {
  padding: 15px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.service-page .request-card {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.service-page .request-card p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}

.service-page .support-flow {
  margin-top: 50px;
  position: relative;
}

.service-page .flow-stages {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-page .flow-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.service-page .flow-polygon {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 25px solid;
  margin-bottom: 10px;
}

.service-page .flow-stage.blue .flow-polygon {
  border-top-color: #4f4cd7;
}

.service-page .flow-stage.green .flow-polygon {
  border-top-color: #50ad8a;
}

.service-page .flow-stage p {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.service-page .flow-stage.blue p {
  color: #4f4cd7;
}

.service-page .flow-stage.green p {
  color: #50ad8a;
}

.service-page .support-services {
  margin-top: 40px;
}

.service-page .service-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.service-page .service-item {
  padding: 10px 20px;
  border-radius: 10px;
  border-width: 2px;
  border-style: solid;
  text-align: center;
  min-width: 150px;
}

.service-page .service-item p {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.service-page .service-item.blue-border {
  border-color: #4f4cd7;
}

.service-page .service-item.blue-border p {
  color: #4f4cd7;
}

.service-page .service-item.green-border {
  border-color: #50ad8a;
}

.service-page .service-item.green-border p {
  color: #50ad8a;
}

.service-page .microsoft-logo {
  margin-top: 40px;
  text-align: center;
}

.service-page .microsoft-logo img {
  max-width: 150px;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
  .service-page .request-cards {
    grid-template-columns: 1fr;
  }

  .service-page .flow-stages {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .service-page .service-row {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .service-page .technical-support-header {
    flex-direction: column;
    text-align: center;
  }

  .service-page .technical-support-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .service-page .technical-support-description p {
    font-size: 20px;
  }

  .service-page .customer-requests-header h4 {
    font-size: 20px;
  }

  .service-page .service-item p {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .service-page .technical-support-section {
    padding: 20px;
  }

  .service-page .technical-support-title {
    font-size: 24px;
  }
}
