/* ============================================================
 * price.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;
  object-position: center;
}

#page-hero .page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230, 126, 0, 0.85) 0%, rgba(34, 34, 34, 0.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: 0.28em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  #page-hero .page-hero-en {
    font-size: 13px;
  }
}

#page-hero .page-hero-title {
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  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, 0.65);
  display: flex;
  align-items: center;
}

#page-hero .breadcrumb-nav .breadcrumb-list li::after {
  content: '/';
  margin: 0 6px;
  opacity: 0.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, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

#page-hero .breadcrumb-nav .breadcrumb-list li a:hover {
  color: #ffffff;
}

/* ============================================================
 * #price-intro
 * ============================================================ */
#price-intro {
  padding: 80px 0 48px;
  background: #ffffff;
}

@media (min-width: 768px) {
  #price-intro {
    padding: 96px 0 56px;
  }
}

#price-intro .section-subtitle {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #f39800;
  margin-bottom: 10px;
}

#price-intro .section-title {
  font-size: 26px;
  font-weight: 900;
  color: #222222;
  line-height: 1.4;
  margin-bottom: 20px;
  text-wrap: pretty;
}

#price-intro .section-title span {
  color: #f39800;
}

@media (min-width: 768px) {
  #price-intro .section-title {
    font-size: 36px;
  }
}

#price-intro .price-intro-text {
  font-size: 14px;
  color: #666666;
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  #price-intro .price-intro-text {
    font-size: 15px;
  }
}

/* ============================================================
 * #price-plans
 * ============================================================ */
#price-plans {
  padding: 0 0 80px;
  background: #ffffff;
}

@media (min-width: 768px) {
  #price-plans {
    padding: 0 0 96px;
  }
}

.price-plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .price-plans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* カード共通 */
.price-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.14);
}

/* スタンダードカード */
.price-card--standard .price-card-head {
  background: linear-gradient(135deg, #f39800 0%, #e67e00 100%);
  padding: 36px 32px 28px;
  text-align: center;
  color: #ffffff;
}

.price-card--premium .price-card-head {
  background: linear-gradient(135deg, #333333 0%, #555555 100%);
  padding: 36px 32px 28px;
  text-align: center;
  color: #ffffff;
}

.price-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  padding: 4px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.price-card-plan {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1.3;
}

.price-card-amount {
  line-height: 1;
  margin-bottom: 6px;
}

.price-card-amount .price-currency {
  font-size: 24px;
  font-weight: 700;
  vertical-align: top;
  padding-top: 8px;
  display: inline-block;
}

.price-card-amount .price-value {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.price-card-amount .price-unit {
  font-size: 16px;
  font-weight: 700;
  opacity: 0.85;
}

.price-card-tax {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 4px;
}

.price-card-pages {
  font-size: 13px;
  font-weight: 700;
  opacity: 0.9;
}

/* カード本体 */
.price-card-body {
  background: #ffffff;
  padding: 28px 32px 36px;
}

.price-card-body-title {
  font-size: 13px;
  font-weight: 700;
  color: #999999;
  letter-spacing: 0.08em;
  padding-bottom: 14px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 18px;
}

.price-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.price-card-list li {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  padding: 11px 0;
  border-bottom: 1px dashed #e8e8e8;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-card-list li:last-child {
  border-bottom: none;
}

.price-card-list li i {
  font-size: 14px;
  color: #f39800;
  flex-shrink: 0;
}

.price-card--premium .price-card-list li i {
  color: #555555;
}

.price-card-note {
  font-size: 12px;
  color: #888888;
  line-height: 1.7;
  background: #f9f9f9;
  border-radius: 6px;
  padding: 12px 16px;
}

/* 追加料金バナー */
.price-addition-banner {
  margin-top: 40px;
  background: #fff3e0;
  border: 2px solid rgba(243, 152, 0, 0.3);
  border-radius: 12px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.price-addition-banner .price-addition-label {
  font-size: 14px;
  font-weight: 700;
  color: #666666;
}

.price-addition-banner .price-addition-value {
  font-size: 24px;
  font-weight: 900;
  color: #f39800;
}

.price-addition-banner .price-addition-value span {
  font-size: 14px;
  color: #888888;
  font-weight: 500;
  margin-left: 4px;
}

/* ============================================================
 * #price-options
 * ============================================================ */
#price-options {
  padding: 80px 0;
  background: #f9f9f9;
}

@media (min-width: 768px) {
  #price-options {
    padding: 96px 0;
  }
}

#price-options .price-options-title {
  font-size: 22px;
  font-weight: 900;
  color: #222222;
  margin-bottom: 32px;
  padding-left: 16px;
  border-left: 4px solid #f39800;
  line-height: 1.4;
}

@media (min-width: 768px) {
  #price-options .price-options-title {
    font-size: 26px;
  }
}

.price-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.price-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #ffffff;
  font-size: 14px;
}

.price-table thead th {
  background: #f39800;
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 16px 20px;
  text-align: left;
}

.price-table thead th:last-child {
  text-align: right;
  white-space: nowrap;
}

.price-table tbody tr {
  border-bottom: 1px solid #e8e8e8;
  transition: background 0.15s;
}

.price-table tbody tr:last-child {
  border-bottom: none;
}

.price-table tbody tr:hover {
  background: #fffaf4;
}

.price-table tbody td {
  padding: 18px 20px;
  color: #333333;
  vertical-align: top;
  line-height: 1.7;
}

.price-table tbody td:first-child {
  font-weight: 700;
  color: #222222;
  white-space: nowrap;
}

.price-table tbody td:nth-child(3) {
  white-space: nowrap;
  color: #666666;
  font-size: 13px;
}

.price-table tbody td:last-child {
  text-align: right;
  white-space: nowrap;
  font-weight: 700;
  color: #f39800;
}

.price-table tbody td .price-table-note {
  font-size: 12px;
  color: #999999;
  margin-top: 4px;
  font-weight: 400;
}

.price-table .price-estimate {
  color: #888888;
  font-weight: 500;
}

/* ============================================================
 * #price-cta
 * ============================================================ */
#price-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #f39800 0%, #e67e00 100%);
}

@media (min-width: 768px) {
  #price-cta {
    padding: 96px 0;
  }
}

#price-cta .price-cta-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

#price-cta .price-cta-title {
  font-size: 26px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.45;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  #price-cta .price-cta-title {
    font-size: 36px;
  }
}

#price-cta .price-cta-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.85;
  margin-bottom: 36px;
}

#price-cta .price-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

#price-cta .btn--outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 15px 36px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #ffffff;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

#price-cta .btn--outline-white:hover {
  background: #ffffff;
  color: #f39800;
  transform: translateY(-2px);
}

/* nav current */
.is-current {
  color: #f39800 !important;
  font-weight: 700;
}
