/* =====================
   Service ページ
   ===================== */
#service {
  max-width: 80%;
}

.service-intro {
  margin-top: 24px;
  line-height: 2;
  text-align: center;}

/* パッケージ */
.service-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 20px 0 40px;
}

.service-pkg {
  display: flex;
  flex-direction: column;
  padding: 25px;
  background: #EEEDEA;
  border-radius: 12px;
  color: #000;
  text-align: left;
}

.service-pkg:nth-child(2) {
  background: #FFE900;
}

.service-pkg-no {
  font-size: 24px;
  letter-spacing: 0.15em;
  color: #21B8D6;
  text-align: left;
  margin-bottom: 8px;
}

.service-pkg h3,
.service-package-body h3 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 5px;
}

.service-pkg-lead {
  font-size: 14px;
  text-align: left;
  margin-bottom: 20px;
}

.service-pkg h4,
.service-package-body h4 {
  font-size: 16px;
  letter-spacing: 0.15em;
  color: #21B8D6;
  border-left: 2px solid #21B8D6;
  padding-left: 10px;
  margin-bottom: 5px;
}

.service-pkg-target {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.service-pkg-target li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.5;
}

.service-pkg-target li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: #21B8D6;
  font-weight: 700;
}

.service-pkg .service-pkg-includes,
.service-package-body .service-pkg-includes {
  font-size: 13px;
  text-align: left;
  color: #555;
  margin-bottom: 0;
}

.service-price {
  margin: 0 0 20px;
}

.service-price-amount {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.2;
  color: #21B8D6;
}

.service-price-term {
  font-size: 12px;
  color: #555;
  margin-top: 2px;
}

/* 開業応援パック（横長枠） */
.service-package {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #f5f5f5;
  border-radius: 12px;
  color: #000;
  padding: 40px;
  margin: 0 0 80px;
  text-align: left;
}

.service-package-body {
  flex: 1;
}

.service-package-body .service-pkg-includes {
  margin-bottom: 0;
}

.service-package-thumb {
  flex-shrink: 0;
  width: 300px;
  aspect-ratio: 4 / 3;
  background: #ddd;
  border-radius: 12px;
  overflow: hidden;
}

.service-package-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-subhead {
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 24px;
}
.service-subhead+p{
    margin-bottom: 50px;
}
.service-options {
  max-width: 640px;
  margin: 0 auto 80px;
}

.service-options table {
  width: 100%;
  border-collapse: collapse;
}

.service-options th,
.service-options td {
  padding: 14px 16px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 14px;
}

.service-options th {
  text-align: left;
  font-weight: 500;
}

.service-options td {
  text-align: right;
  white-space: nowrap;
  color: #fff;
  font-weight: 700;
}

.service-notes {
  max-width: 640px;
  margin: 0 auto 80px;
}

.service-notes h4 {
  font-size: 13px;
  letter-spacing: 0.15em;
  border-left: 2px solid #fff;
  padding-left: 12px;
  margin-bottom: 16px;
}

.service-notes ul {
  padding-left: 1.2em;
  margin: 0;
}

.service-notes li {
  font-size: 14px;
  line-height: 2;
}

.service-light {
  background: #21B8D6;
  color: #fff;
  text-align: center;
  padding: 48px 24px;
  margin-bottom: 60px;
}

.service-light h3 {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.service-light p {
  font-size: 14px;
  line-height: 2;
}

.service-cta {
  text-align: center;
}

.btn-service {
  display: inline-block;
  min-width: 280px;
  box-sizing: border-box;
  padding: 16px 32px;
  border: 1px solid #FFE900;
  background: #FFE900;
  text-align: center;
  text-decoration: none;
  color: #21B8D6;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}

.btn-service:hover {
  background: #333;
  color: #fff;
  border: 1px solid #333;
}

/* トップページのService「詳しくはこちら」ボタン */
.home-service-more {
  text-align: center;
  margin-top: 32px;
}

.btn-service-more {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid #fff;
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}

.btn-service-more:hover {
  background: #333;
  color: #fff;
  border: 1px solid #333;
}

@media screen and (max-width: 749px) {
  #service {
    max-width: 90%;
  }

  .service-packages {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 40px 0 40px;
  }

  .service-pkg {
    padding: 24px;
  }

  .service-package {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 24px;
  }

  .service-package-thumb {
    width: 100%;
  }
}
