@charset "UTF-8";
/* サンプル画像ラベル */
.sample-image-wrapper {
  position: relative;
  display: inline-block;
}

.sample-image-wrapper img {
  display: block;
}

.sample-image-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1rem;
  font-weight: bold;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  white-space: nowrap;
}

/* ページヘッダー画像用 */
.page-header .sample-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-header .sample-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-detail-image .sample-image-wrapper {
  width: 100%;
  display: block;
}

/* CTAボタン */
.service-detail-cta {
  margin-top: 1.5rem;
}

.service-detail-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* サブヘッディング */
.service-detail-subheading {
  font-size: 1.15rem;
  font-weight: bold;
  margin: 1.5rem 0 1rem;
  color: #1f2937;
}

.service-anchor-link {
  padding: 1rem 3rem 1rem 1.6rem;
  position: relative;
}
@media (max-width: 768px) {
  .service-anchor-link {
    padding: 1rem 2.2rem 1rem 1rem;
  }
}
.service-anchor-link::before {
  position: absolute;
  content: "";
  background-color: #047857;
  -webkit-mask: url("../images/icon-arrow.svg") no-repeat;
          mask: url("../images/icon-arrow.svg") no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 1rem;
  height: 1rem;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
}

.service-detail-title {
  padding-left: 1.5rem;
  border-left: 2px solid #047857;
}

.service-detail-grid {
  align-items: flex-start;
}

.service-detail-note {
  margin-top: 1rem;
}/*# sourceMappingURL=service.css.map */