/* .masa-page-hero__crumb は site.css に移動済み */

/* ======================
   en-tag（セクション小見出しラベル）
   ====================== */
.en-tag {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #853257;
  margin-bottom: 12px;
}

/* ======================
   事業内容紹介 イントロ
   ====================== */
.svc-intro {
  padding: 110px 0 80px;
}
.svc-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.svc-intro__head {
  position: sticky;
  top: 100px;
}
.svc-intro__title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.03em;
  margin: 12px 0 24px;
  color: #2d1a24;
}
.svc-intro__title em {
  color: #853257;
  font-style: normal;
}
.svc-intro__nav {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.svc-intro__nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid #e8d5e0;
  border-radius: 6px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d1a24;
  text-decoration: none;
  background: #fff;
  transition: all 0.15s;
}
.svc-intro__nav a small {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #853257;
  letter-spacing: 0.15em;
}
.svc-intro__nav a:hover {
  background: #853257;
  color: #fff;
  border-color: #853257;
}
.svc-intro__nav a:hover small {
  color: #E5F0A5;
}
.svc-intro__body {
  padding-top: 20px;
}
.svc-intro__body p {
  font-size: 1.5rem;
  line-height: 2.2;
  margin: 0 0 18px;
  color: #333;
}
.svc-intro__body p strong {
  color: #853257;
  font-weight: 600;
}
@media (max-width: 960px) {
  .svc-intro {
    padding: 64px 0 40px;
  }
  .svc-intro__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .svc-intro__head {
    position: static;
  }
  .svc-intro__title {
    font-size: 2.4rem;
  }
  .svc-intro__nav {
    grid-template-columns: 1fr;
  }
}

/* ======================
   各事業リスト
   ====================== */
.svc-list {
  padding: 60px 0 110px;
}
.svc-item {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0 80px;
  border-top: 1px solid #e8d5e0;
}
.svc-item:nth-child(even) {
  grid-template-columns: 1fr 1.2fr;
}
.svc-item:nth-child(even) .svc-item__photo {
  order: 2;
}
.svc-item__photo {
  position: relative;
  aspect-ratio: 5 / 4;
}
.svc-ph {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(133, 50, 87, 0.15);
}
.svc-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.svc-item:hover .svc-ph img {
  transform: scale(1.04);
}
.svc-ph-sub {
  position: absolute;
  width: 44%;
  aspect-ratio: 1 / 1;
  bottom: -32px;
  right: -24px;
  border-radius: 12px;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 8px 32px rgba(133, 50, 87, 0.15);
  z-index: 1;
}
.svc-ph-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc-item:nth-child(even) .svc-ph-sub {
  right: auto;
  left: -24px;
}
.svc-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 76px;
  height: 76px;
  background: #853257;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 2;
  font-size: 1rem;
  letter-spacing: 0.2em;
  line-height: 1;
}
.svc-badge strong {
  font-family: "Inter", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  display: block;
}
.svc-item__num {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  color: #853257;
  font-weight: 500;
}
.svc-item__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin: 12px 0 8px;
  color: #2d1a24;
}
.svc-item__title small {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  color: #888;
  letter-spacing: 0.25em;
  margin-top: 8px;
  font-weight: 500;
}
.svc-item__body {
  font-size: 1.5rem;
  line-height: 2.1;
  color: #333;
  margin: 24px 0;
}
.svc-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.svc-item__tags span {
  font-size: 1.2rem;
  padding: 6px 14px;
  background: rgba(133, 50, 87, 0.08);
  color: #853257;
  border-radius: 99px;
  font-weight: 500;
}
@media (max-width: 960px) {
  .svc-list {
    padding: 32px 0 64px;
  }
  .svc-item,
  .svc-item:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0 60px;
  }
  .svc-item:nth-child(even) .svc-item__photo {
    order: -1;
  }
  .svc-item__title {
    font-size: 2.4rem;
  }
  .svc-ph-sub {
    bottom: -16px;
    right: -12px;
    width: 38%;
  }
  .svc-item:nth-child(even) .svc-ph-sub {
    right: auto;
    left: -12px;
  }
}

/* ======================
   対応エリア・お問い合わせ
   ====================== */
.masa-area-section {
  background: #F0F7E0;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.masa-area-section > .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
}
.masa-area__title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 12px 0 24px;
  color: #2d1a24;
}
.masa-area__title em {
  color: #853257;
  font-style: normal;
}
.masa-area__body {
  font-size: 1.5rem;
  line-height: 2.1;
  color: #333;
}
.masa-area-map {
  margin-top: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.masa-area-dot {
  color: #853257;
  font-size: 2.2rem;
  flex: 0 0 auto;
  line-height: 1;
}
.masa-area-map small {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: #853257;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}
.masa-area-map strong {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d1a24;
}
.masa-area-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(133, 50, 87, 0.15);
}
.masa-area-card__h {
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  color: #853257;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
}
.masa-area-card__title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #2d1a24;
}
.masa-area-card__phone {
  font-family: "Inter", sans-serif;
  font-size: 3.4rem;
  font-weight: 600;
  color: #853257;
  letter-spacing: 0.04em;
  display: block;
  margin: 16px 0 8px;
  text-decoration: none;
  transition: opacity 0.25s;
}
.masa-area-card__phone::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f095";
  font-size: 0.75em;
  margin-right: 10px;
  opacity: 0.7;
}
.masa-area-card__phone:hover {
  opacity: 0.75;
}
.masa-area-card__hours {
  font-size: 1.3rem;
  color: #888;
  margin: 0 0 24px;
}
.masa-area-card .btn {
  width: 100%;
  justify-content: center;
  padding: 16px 20px;
}
@media (max-width: 960px) {
  .masa-area-section {
    padding: 64px 0;
  }
  .masa-area-section > .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .masa-area__title {
    font-size: 2.4rem;
  }
  .masa-area-card {
    padding: 28px 22px;
  }
  .masa-area-card__phone {
    font-size: 2.8rem;
  }
}
