/* ============================================================
 * homepage.css — ホームページ制作ページ
 * ============================================================ */

/* #page-hero */
#page-hero {
  position: relative;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) { #page-hero { height: 360px; } }

#page-hero .page-hero-bg { position: absolute; inset: 0; }
#page-hero .page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
#page-hero .page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(230,126,0,.85) 0%, rgba(34,34,34,.7) 100%);
}
#page-hero .page-hero-inner { position: relative; z-index: 1; padding: 24px 0; }
#page-hero .page-hero-en {
  font-size: 12px; font-weight: 700; letter-spacing: .28em;
  color: rgba(255,255,255,.65); margin-bottom: 10px;
}
#page-hero .page-hero-title {
  font-size: 32px; font-weight: 900; color: #fff; line-height: 1.25; margin-bottom: 20px;
}
@media (min-width: 768px) { #page-hero .page-hero-title { font-size: 48px; } }

#page-hero .breadcrumb-nav .breadcrumb-list {
  display: flex; align-items: center; list-style: none; padding: 0; margin: 0;
}
#page-hero .breadcrumb-nav .breadcrumb-list li {
  font-size: 12px; color: rgba(255,255,255,.65);
}
#page-hero .breadcrumb-nav .breadcrumb-list li::after {
  content: '/'; margin: 0 6px; opacity: .5;
}
#page-hero .breadcrumb-nav .breadcrumb-list li:last-child::after { display: none; }
#page-hero .breadcrumb-nav .breadcrumb-list li a {
  color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s;
}
#page-hero .breadcrumb-nav .breadcrumb-list li a:hover { color: #fff; }

/* #hp-intro */
#hp-intro {
  padding: 72px 0 64px;
  background: #fff8ee;
}
.hp-intro-inner {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 992px) {
  .hp-intro-inner { grid-template-columns: 1fr 1fr; }
}

.hp-intro-lead {
  font-size: 17px;
  line-height: 2;
  color: #333;
  margin-bottom: 28px;
}
.hp-intro-points {
  display: grid;
  gap: 12px;
}
.hp-intro-point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  font-size: 14px;
  font-weight: 700;
  color: #333;
}
.hp-intro-point i { color: #f39800; font-size: 18px; width: 22px; text-align: center; }

.hp-intro-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

/* #hp-accordion */
#hp-accordion {
  padding: 80px 0 96px;
  background: #fff;
}

/* accordion-list */
.accordion-list { margin-top: 48px; }

.accordion-item {
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  background: #fff8ee;
  border-bottom: 1px solid #f3e0b0;
  font-family: 'Noto Sans JP', sans-serif;
}

.accordion-num {
  font-size: 13px;
  font-weight: 900;
  color: #f39800;
  letter-spacing: .08em;
  min-width: 28px;
}
.accordion-title-text {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  color: #222;
  line-height: 1.45;
}
@media (min-width: 768px) { .accordion-title-text { font-size: 18px; } }

.accordion-body {
  display: block;
}

.accordion-inner {
  padding: 24px 28px 28px;
  font-size: 14px;
  line-height: 1.85;
  color: #444;
}
@media (min-width: 768px) { .accordion-inner { padding: 28px 32px 32px; } }

/* リスト */
.hp-list { list-style: none; padding: 0; margin: 16px 0 0; }
.hp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
}
.hp-list li i { color: #f39800; margin-top: 3px; flex-shrink: 0; }

.hp-note {
  font-size: 12px;
  color: #888;
  margin-top: 12px;
}
.hp-note a { color: #f39800; }

/* 料金テーブル */
.hp-price-table { margin-bottom: 16px; }
.hp-price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 6px;
  margin-bottom: 8px;
  background: #fafafa;
  border: 1px solid #eee;
}
.hp-price-plan { font-size: 14px; font-weight: 700; color: #222; min-width: 100px; }
.hp-price-detail { flex: 1; font-size: 13px; color: #666; }
.hp-price-amount { font-size: 16px; font-weight: 900; color: #f39800; }

/* CTA */
.hp-cta {
  text-align: center;
  margin-top: 64px;
  padding: 56px 24px;
  background: #fff8ee;
  border-radius: 14px;
}
.hp-cta p {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}
