@charset "UTF-8";

/* ===========================================
   Service Page Styles (Clean & Modern)
   =========================================== */

/* --- Service Overview --- */
.service-overview {
  padding: 8rem 0 0;
  background: #fff;
}

.service-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 6rem;
}

.service-intro-title {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: var(--c-navy);
}

.service-intro-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #666;
}

.service-content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.service-content-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-content-image img {
  width: 100%;
  height: auto;
  display: block;
}

.service-content-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: var(--c-navy);
}

.service-content-desc {
  font-size: 1rem;
  line-height: 1.9;
  color: #666;
  margin-bottom: 2rem;
}

.service-check-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-check-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  color: #333;
}

.service-check-list i {
  font-size: 1.5rem;
  color: var(--c-cyan);
}

/* --- Service Details --- */
.service-details {
  padding: 8rem 0 4rem;
  background: #f8f8f8;
}

.service-strategy {
  padding: 8rem 0 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-detail-item {
  background: #fff;
  padding: 3rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.service-detail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-icon {
  width: 60px;
  height: 60px;
  background: var(--c-cyan);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.service-detail-icon i {
  font-size: 2rem;
  color: #fff;
}

.service-detail-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 1rem;
}

.service-detail-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1.5rem;
}

.service-detail-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-detail-list li {
  font-size: 0.95rem;
  color: #666;
  padding-left: 1.2rem;
  position: relative;
}

.service-detail-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--c-cyan);
  font-weight: 700;
}

/* --- Process Section --- */
.service-process {
  padding: 8rem 0;
  background: #fff;
}

.process-steps {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.process-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.process-step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--c-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-en);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}

.process-step-content {
  flex: 1;
  padding-top: 0.5rem;
}

.process-step-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 1rem;
}

.process-step-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
}

/* --- Case Studies --- */
.service-cases {
  padding: 8rem 0;
  background: #f8f8f8;
}

.featured-case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 4rem;
}

.featured-case-content {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-case-tag {
  font-family: var(--f-en);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-cyan);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.featured-case-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--c-navy);
  margin-bottom: 1.5rem;
}

.featured-case-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2.5rem;
}

.featured-case-results {
  display: flex;
  gap: 3rem;
}

.case-result-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.case-result-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #999;
}

.case-result-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--c-cyan);
}

.featured-case-visual {
  background: #f0f4f8;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.case-mockup {
  max-width: 300px;
}

.case-mockup img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.case-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.case-card-image {
  height: 200px;
  overflow: hidden;
}

.case-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.case-card:hover .case-card-image img {
  transform: scale(1.05);
}

.case-card-content {
  padding: 2rem;
}

.case-card-tag {
  font-family: var(--f-en);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-cyan);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.8rem;
}

.case-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 0.8rem;
}

.case-card-result {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-cyan);
}

/* --- FAQ Section --- */
.service-faq {
  padding: 8rem 0;
  background: #fff;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-question {
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-navy);
  cursor: pointer;
}

.faq-question i {
  font-size: 1.5rem;
  color: var(--c-cyan);
  flex-shrink: 0;
}

.faq-answer {
  padding: 0 2rem 2rem 4.5rem;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
}

/* --- CTA Section --- */
.service-cta {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--c-navy) 0%, #0d1e40 100%);
  text-align: center;
  color: #fff;
}

.service-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.service-cta-title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.service-cta-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.service-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 3rem;
  background: var(--c-cyan);
  color: var(--c-navy);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.service-cta-button:hover {
  background: #00b8e6;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.service-cta-button i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.service-cta-button:hover i {
  transform: translateX(5px);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .service-content-row,
  .featured-case,
  .case-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .featured-case-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .service-overview,
  .service-details,
  .service-process,
  .service-cases,
  .service-faq,
  .service-cta {
    padding: 5rem 0;
  }

  .service-intro {
    margin-bottom: 4rem;
  }

  .service-intro-title {
    font-size: 1.8rem;
  }

  .service-content-title {
    font-size: 1.5rem;
  }

  .service-detail-item {
    padding: 2rem 1.5rem;
  }

  .process-step {
    flex-direction: column;
    gap: 1rem;
  }

  .process-step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .process-step-content {
    padding-top: 0;
  }

  .process-step-title {
    font-size: 1.2rem;
  }

  .featured-case-content {
    padding: 3rem 2rem;
  }

  .featured-case-title {
    font-size: 1.6rem;
  }

  .featured-case-results {
    flex-direction: column;
    gap: 1.5rem;
  }

  .faq-question {
    padding: 1.5rem;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1.5rem 1.5rem 3.5rem;
  }

  .service-cta-title {
    font-size: 2rem;
  }

  .service-cta-desc {
    font-size: 1rem;
  }

  .service-cta-button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }
}


/* --- Service Details (Modern Overlay Layout) --- */
.service-details {
  background: #fff;
  overflow: hidden;
}

.service-modern-list {
  display: flex;
  flex-direction: column;
  gap: 12rem; /* 各セクション間の十分なマージン */
  /* max-width: 1300px; */
  margin: 6rem auto 0;
}

.service-modern-item {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: stretch;
  position: relative;
}

/* 反転設定 */
.service-modern-item.reverse {
  grid-template-columns: 1fr 1.5fr;
}
.service-modern-item.reverse .service-modern-content {
  order: 2;
}
.service-modern-item.reverse .service-modern-visual {
  order: 1;
}

/* テキストコンテンツエリア */
.service-modern-content {
  background-color: var(--c-navy); /* サイト統一のネイビー */
  color: #fff;
  padding: 5rem 4rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* 背景にうっすらグラデーション */
.service-modern-content::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.03) 0%, transparent 100%);
  pointer-events: none;
}

.service-cat-en {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--c-cyan); /* サイト統一のシアン */
  display: block;
  margin-bottom: 1.5rem;
}

.service-modern-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.service-modern-desc {
  font-size: 1rem;
  line-height: 1.9;
  opacity: 0.85;
  margin-bottom: 2.5rem;
}

/* 特徴リスト */
.service-modern-features {
  list-style: none;
  padding: 0;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-modern-features li {
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
  opacity: 0.8;
}

.service-modern-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--c-cyan);
  border-radius: 50%;
}

/* View More ボタン */
.service-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--c-navy);
  background-color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.service-more-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.service-more-btn:hover {
  background-color: var(--c-cyan);
  color: var(--c-navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
}

.service-more-btn:hover i {
  transform: translateX(5px);
}

/* ビジュアルエリア */
.service-modern-visual {
  position: relative;
  z-index: 3;
  height: 100%;
}

.image-wrapper {
  position: relative;
  width: 100%;
  left: 0;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}
.image-wrapper img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .service-modern-item,
  .service-modern-item.reverse {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .service-modern-content {
    padding: 4rem 2rem;
    order: 2 !important;
  }
  
  .service-modern-visual {
    order: 1 !important;
    width: 90%;
    margin: 0 auto -3rem; /* 画像を上に浮かせる */
  }
  
  .image-wrapper {
    width: 100%;
    left: 0;
    right: 0;
  }
  
  .service-modern-title {
    font-size: 2rem;
  }
}