/* ▼ ベース設定 */
body.service-page {
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.8;
  background: url("http://asagi-tax.jp.testrs.jp/002/wp-content/uploads/2025/07/trimmed_top_bg_16_9.png") no-repeat center center / cover;
  margin: 0;
  padding: 0;
  color: #333;
}

/* ▼ 共通ヘッダー（TOPと統一） */
.custom-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 12px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Zen Old Mincho", serif;
}

.custom-header-left {
  display: flex;
  align-items: center;
  font-family: 'Zen Old Mincho', serif;
  font-weight: normal;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #333;
}

.custom-header-left::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('http://asagi-tax.jp.testrs.jp/002/wp-content/uploads/2025/06/cropped-Asagi_zeirishi_logoDesign-A.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 8px;
}

.custom-header-right {
  padding-right: 80px;
}

.custom-header-right a {
  margin-left: 20px;
  text-decoration: none;
  color: #555;
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.2s ease;
}

.custom-header-right a:first-child {
  margin-left: 0;
}

.custom-header-right a:hover {
  color: #333;
  text-decoration: underline;
}

.custom-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.custom-header-right a.sns-icon {
  margin-left: 12px;
}

.custom-header-right a.sns-icon img {
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 4px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.custom-header-right a.sns-icon:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}


/* ▼ コンテンツ */
.service-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 120px 5% 80px; /* ← ヘッダーの高さぶん余白調整 */
  font-family: "Noto Sans JP", sans-serif;
}

.section-title {
  font-size: 28px;
  margin-bottom: 48px;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-item {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 24px 32px;
  border-left: 6px solid #6c9bd2;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.service-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-family: "Zen Old Mincho", serif;
}

.service-item p {
  font-size: 15px;
  margin: 0;
}

/* ▼ 強制左寄せ（.profile-box 用） */
.service-page .profile-box p {
  text-align: left !important;
}

/* ▼ 余白追加（任意） */
.service-page .profile-box {
  padding-left: 24px;
  padding-right: 24px;
}



/* ▼ スマホ対応 */
@media (max-width: 768px) {
  .service-item {
    padding: 20px;
  }

  .service-item h3 {
    font-size: 18px;
  }

  .service-item p {
    font-size: 14px;
  }
}
