@charset "UTF-8";
/* ====================================
   サービス特徴セクション
==================================== */
.strength-section {
  padding: 80px 20px;
  background: #fff;
}
@media (max-width: 768px) {
  .strength-section {
    padding: 60px 20px;
  }
}

.strength-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.strength-item {
  display: flex;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(166, 155, 155, 0.08);
}
@media (max-width: 768px) {
  .strength-item {
    padding: 30px 20px;
    flex-direction: column;
  }
}
.strength-item__number {
  width: 50px;
  height: auto;
  flex-shrink: 0;
  background: #e8f5e9;
  color: #006637;
  font-size: 28px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .strength-item__number {
    width: 100%;
    padding: 5px 0;
    margin-bottom: 16px;
    font-size: 22px;
  }
}
.strength-item__content {
  padding: 20px;
}
@media (max-width: 768px) {
  .strength-item__content {
    padding: 0;
  }
}
.strength-item__title {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin: 12px 0;
  padding: 0 15px 10px;
}
.strength-item__title:before {
  display: inline-block;
  position: relative;
  left: -10px;
  content: "";
  width: 20px;
  height: 20px;
  background-color: #006637;
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .strength-item__title {
    font-size: 18px;
  }
}
.strength-item__text {
  font-size: 15px;
  color: #333333;
  line-height: 1.6;
  margin: 0 0 20px;
}

/* ====================================
   サービス詳細セクション
==================================== */
.service-detail-section {
  padding: 80px 20px;
  background: #f8f8f8;
}
@media (max-width: 768px) {
  .service-detail-section {
    padding: 60px 20px;
  }
}

.service-detail-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-detail-item {
  display: flex;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(166, 155, 155, 0.08);
}
@media (max-width: 768px) {
  .service-detail-item {
    padding: 30px 20px;
    flex-direction: column;
  }
}
.service-detail-item__number {
  width: 50px;
  height: auto;
  flex-shrink: 0;
  background: #e8f5e9;
  color: #006637;
  font-size: 28px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .service-detail-item__number {
    width: 100%;
    padding: 5px 0;
    margin-bottom: 16px;
    font-size: 22px;
  }
}
.service-detail-item__content {
  padding: 20px;
}
@media (max-width: 768px) {
  .service-detail-item__content {
    padding: 0;
  }
}
.service-detail-item__title {
  font-size: 22px;
  font-weight: 700;
  color: #333333;
  margin: 12px 0;
  padding: 0 15px 10px;
}
.service-detail-item__title:before {
  display: inline-block;
  position: relative;
  left: -10px;
  content: "";
  width: 20px;
  height: 20px;
  background-color: #006637;
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .service-detail-item__title {
    font-size: 20px;
  }
}
.service-detail-item__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.service-detail-item__list li {
  position: relative;
  margin-left: 28px;
  margin-bottom: 16px;
  font-size: 15px;
  color: #333333;
  line-height: 1.2;
  list-style-type: disc;
}
.service-detail-item__list li:before {
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: #006637;
  border-radius: 50%;
}
.service-detail-item__list li:last-child {
  margin-bottom: 0;
}
.service-detail-item__list--ordered {
  counter-reset: list-counter;
}
.service-detail-item__list--ordered li {
  counter-increment: list-counter;
  padding-left: 32px;
  list-style-type: none;
}
.service-detail-item__list--ordered li:before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: #006637;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* ====================================
   CTAセクション
==================================== */
.service-cta {
  max-width: 1000px;
  margin: 60px auto 0;
  background: #ffffff;
  border: 2px solid #006637;
  border-radius: 12px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 768px) {
  .service-cta {
    flex-direction: column;
    padding: 30px 20px;
    gap: 24px;
    text-align: center;
  }
}
.service-cta__left {
  flex: 1;
}
.service-cta__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #006637;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.service-cta__text {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin: 0;
}
@media (max-width: 768px) {
  .service-cta__text {
    font-size: 18px;
  }
}
.service-cta__buttons {
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  .service-cta__buttons {
    flex-direction: column;
    width: 100%;
  }
}

.btn--service,
.btn--office {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .btn--service,
  .btn--office {
    width: 100%;
    padding: 14px 24px;
  }
}

.btn--service {
  background: #006637;
  color: #ffffff;
}
.btn--service:hover {
  background: #2d5a3d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 55, 0.3);
}

.btn--office {
  background: #ffffff;
  color: #006637;
  border: 2px solid #006637;
}
.btn--office:hover {
  background: #e8f5e9;
  border-color: #2d5a3d;
  color: #2d5a3d;
  transform: translateY(-2px);
}
