/* =============================================
   SERVICE MAIN SECTION
============================================= */
.service-main {
  padding: 150px 0;
}

.service-top-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 150px;
}

.service-main-heading-wrap {
  /* reveal-wrap displayed as block by default */
}

.service-main-heading {
  font-size: clamp(60px, 8.3vw, 120px);
  line-height: 0.8;
}

.service-watermark {
  position: absolute;
  top: -162px;
  left: 204px;
  width: 535px;
  height: 536px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
.service-watermark img { width: 100%; height: 100%; object-fit: cover; }

/* Service list */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.service-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 100px 0;
}

/* Service item */
.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
}

.service-item-img {
  flex: 0 0 330px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service-item-img--rotate img {
  transform: rotate(5.65deg);
}

.service-item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
}

/* Service item header */
.service-item-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-en-label {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-en-name {
  font-family: var(--font-body-en);
  font-size: clamp(18px, 2.1vw, 30px);
  font-weight: 500;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  padding-bottom: 0.1em;
  white-space: nowrap;
}

.service-sep {
  display: block;
  width: 22px;
  height: 1px;
  background: #aaa;
  flex-shrink: 0;
}

.service-ja-name {
  font-family: var(--font-body-ja);
  font-size: 16px;
  color: #444;
  line-height: 0.8;
}

.service-catchcopy {
  font-family: var(--font-body-ja);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 700;
  color: #333;
  line-height: 1.5;
}

.service-desc {
  font-family: var(--font-body-en);
  font-size: 15px;
  color: #000;
  line-height: 1.8;
}

/* Tags */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 30px;
  background: var(--grad);
  font-family: var(--font-body-en);
  font-size: 13px;
  color: #fff;
  line-height: 1.5;
  white-space: nowrap;
}

/* Recommend block */
.service-recommend {
  display: flex;
  align-items: center;
  gap: 18px;
}

.service-recommend-label {
  flex: 0 0 auto;
  height: 135px;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
}

.service-recommend-label p {
  font-family: var(--font-body-ja);
  font-size: 14px;
  font-weight: 700;
  color: #000;
  text-align: center;
  line-height: 1.5;
}

.service-recommend-list {
  list-style: none;
}

.service-recommend-list li {
  font-family: var(--font-body-ja);
  font-size: 15px;
  color: #000;
  line-height: 1.8;
  white-space: nowrap;
}


/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1200px) {
  .service-item-img { flex: 0 0 260px; }
  .service-recommend-list li { white-space: normal; }
}

@media (max-width: 1024px) {
  .service-item { gap: 40px; }
  .service-item-img { flex: 0 0 220px; }
  .service-catchcopy { font-size: 36px; }
}

@media (max-width: 768px) {
  .service-main { padding: 80px 0; }
  .service-top-header { margin-bottom: 60px; }
  .service-main-heading { font-size: 48px; }

  .service-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .service-item-img {
    flex: none;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .service-item-body { gap: 20px; }

  .service-divider { margin: 60px 0; }

  .service-catchcopy { font-size: 28px; }

  .service-en-label { flex-wrap: wrap; }
  .service-en-label .service-en-name { flex-basis: 100%; }

  .service-recommend { flex-direction: column; align-items: center; gap: 16px; }
  .service-recommend-label { height: auto; flex: none; width: 100%; text-align: center; }
  .service-recommend-label p { font-size: 14px; font-weight: 700; white-space: nowrap; display: inline; }
  .service-recommend-label p br { display: none; }
  .service-recommend-list { width: 100%; text-align: center; }
  .service-recommend-list li {white-space: normal;font-size: 14px;text-align: left;}

  .service-watermark { display: none; }
}
