@charset "UTF-8";

/* ============================================
   Service Page — service.css
   ============================================ */

/* ─── Page Hero ─────────────────────────────── */
.page-hero {
  position: relative;
  margin-top: var(--header-h);
  height: 200px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 0 max(40px, calc((100% - 1100px) / 2));
  height: 100%;
  display: flex;
  align-items: center;
}
.page-hero-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 36px;
  color: #fff;
  line-height: 1.4;
  margin: 0;
}

/* ─── Breadcrumb ────────────────────────────── */
.breadcrumb {
  background: #fff;
}
.breadcrumb-inner {
  padding: 10px max(40px, calc((100% - 1100px) / 2));
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}
.breadcrumb-top {
  color: var(--primary);
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
}
.breadcrumb-top:hover { text-decoration: underline; }
.breadcrumb-sep {
  color: var(--dark);
  font-size: 18px;
  line-height: 1;
}
.breadcrumb-current {
  color: var(--dark);
  font-family: 'Noto Sans JP', sans-serif;
}

/* ─── Lead Text ─────────────────────────────── */
.page-lead {
  background: #fff;
}
.page-lead-inner {
  padding: 70px max(40px, calc((100% - 1100px) / 2));
  text-align: center;
}
.page-lead-inner p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: var(--dark);
  line-height: 1.5;
  margin: 0;
}

/* ─── Section Heading ───────────────────────── */
.svc-heading-wrap {
  margin-bottom: 60px;
}
/* .sub-heading スタイルは style.css で共通定義 */

/* ─── 業務領域 Section ──────────────────────── */
.svc-field {
  background: #fff;
  position: relative;
  padding-bottom: 60px;
}
/* Decorative gray panel left side */
.svc-field::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 69.7%; /* 1004/1440 */
  height: 100%;
  background: #f6f6f6;
  z-index: 0;
}
.svc-field-inner {
  position: relative;
  z-index: 1;
  padding: 60px max(40px, calc((100% - 1100px) / 2));
}
.svc-cards {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.svc-card {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Card image */
.svc-card-image {
  position: relative;
  height: 207px;
  overflow: hidden;
}
.svc-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}
.svc-card-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 0;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 2;
}
.svc-card-label .material-icons {
  color: var(--primary);
  font-size: 24px;
  line-height: 2;
}

/* Card body (below image) */
.svc-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-card-subtitle {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
  line-height: 1.5;
  margin: 0;
}
.svc-card-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: var(--dark);
  line-height: 1.5;
  margin: 0;
}

/* ─── 管理業務詳細 Section ──────────────────── */
.svc-details {
  background: #fff;
  padding: 60px 0 90px;
}
.svc-details-inner {
  padding: 0 max(40px, calc((100% - 1100px) / 2));
}
.svc-detail-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.svc-detail-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-detail-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
  line-height: 1.5;
  margin: 0;
}
.svc-detail-content {
  display: flex;
  align-items: flex-start;
  gap: 26px;
}
.svc-detail-img {
  flex-shrink: 0;
  width: 170px;
  height: 113px;
  overflow: hidden;
  border-radius: 2px;
}
.svc-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-detail-text {
  flex: 1;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: var(--dark);
  line-height: 2;
}
.svc-detail-text p {
  margin: 0;
}

/* .support-banner スタイルは style.css で共通定義 */

/* ─── CV エリア ─────────────────────────────── */
.svc-cta {
  background: var(--dark);
  padding: 60px 0;
}
.svc-cta-inner {
  padding: 0 max(40px, calc((100% - 1100px) / 2));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.svc-cta-text {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
  margin: 0;
  line-height: 1.4;
}
.svc-cta-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: var(--white);
  margin: 0;
  line-height: 1.6;
}
.svc-cta-btn {
  flex-shrink: 0;
  height: 52px;
  padding: 0 48px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .svc-cta { padding: 40px 0; }
  .svc-cta-inner {
    flex-direction: column;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    gap: 24px;
    text-align: center;
  }
  .svc-cta-text { font-size: 18px; }
  .svc-cta-btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ─── オーナーズサイト バナー ──────────────────── */
.owners-banner-section {
  background: #fff;
  padding: 0 0 80px;
}
.owners-banner-inner {
  padding: 0 max(40px, calc((100% - 1100px) / 2));
}
.owners-banner-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  padding: 36px 48px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.owners-banner-link:hover {
  opacity: 0.85;
}
.owners-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.owners-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.owners-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.owners-banner-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.owners-banner-en {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.12em;
  margin: 0;
  line-height: 1;
}
.owners-banner-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  font-size: 22px;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}
.owners-banner-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.6;
}
.owners-banner-icon {
  position: relative;
  z-index: 1;
  font-size: 36px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ============================================
   Responsive — Tablet (1100px and below)
   ============================================ */
@media (max-width: 1100px) {
  .page-hero-inner,
  .breadcrumb-inner,
  .page-lead-inner,
  .svc-field-inner,
  .svc-details-inner,
  .owners-banner-inner {
    padding-left: 40px;
    padding-right: 40px;
  }

  .svc-cards {
    gap: 30px;
  }
  .svc-card {
    flex: 0 0 calc(50% - 15px);
  }
}

/* ============================================
   Responsive — Mobile (768px and below)
   ============================================ */
@media (max-width: 768px) {

  /* Hero */
  .page-hero {
    height: 150px;
  }
  .page-hero-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-hero-title {
    font-size: 22px;
  }

  /* Breadcrumb */
  .breadcrumb-inner {
    padding: 8px 20px;
    font-size: 12px;
    flex-wrap: wrap;
  }

  /* Lead */
  .page-lead-inner {
    padding: 40px 20px;
  }
  .page-lead-inner p {
    font-size: 14px;
    text-align: left;
  }

  /* Section heading */
  .svc-heading-wrap {
    margin-bottom: 30px;
  }

  /* 業務領域 */
  .svc-field::before {
    width: 85%;
  }
  .svc-field-inner {
    padding: 40px 20px;
  }
  .svc-cards {
    flex-direction: column;
    gap: 40px;
  }
  .svc-card {
    flex: none;
    width: 100%;
  }
  .svc-card-image {
    height: 200px;
  }
  .svc-card-label {
    font-size: 15px;
  }
  .svc-card-subtitle {
    font-size: 16px;
  }
  .svc-card-text {
    font-size: 14px;
  }

  /* 管理業務詳細 */
  .svc-details {
    padding: 40px 0 60px;
  }
  .svc-details-inner {
    padding: 0 20px;
  }
  .svc-detail-list {
    gap: 40px;
  }
  .svc-detail-title {
    font-size: 15px;
  }
  .svc-detail-content {
    flex-direction: column;
    gap: 16px;
  }
  .svc-detail-img {
    width: 100%;
    height: 180px;
  }
  .svc-detail-text {
    font-size: 14px;
    line-height: 1.8;
  }

  /* support-banner レスポンシブは style.css で共通定義 */

  /* オーナーズサイト バナー */
  .owners-banner-section {
    padding-bottom: 60px;
  }
  .owners-banner-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .owners-banner-link {
    height: 150px;
  }
  .owners-banner-text{
    font-size: 13px;
  }
  .owners-banner-title {
    font-size: 18px;
  }
  .owners-banner-link{
    padding: 24px 20px;
  }
    
}

/* ============================================
   Responsive — Small Mobile (480px and below)
   ============================================ */
@media (max-width: 480px) {
  .page-hero-title {
    font-size: 18px;
  }
  .svc-card-image {
    height: 160px;
  }
}
