/* ===================
料金ページ
=================== */


/* ─── price-head ─── */
.price-head {
  text-align: center;
  padding-bottom: 56px;
}

@media (min-width: 768px) {
  .price-head {
    padding-bottom: 64px;
  }
}

@media (min-width: 820px) {
  .price-head {
    padding-bottom: 72px;
  }
}

.price-head .page-header__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-head .page-header__inner > nav {
  align-self: flex-start;
  width: 100%;
  text-align: left;
}

.price-head .page-title {
  margin-top: 32px;
}

@media (min-width: 820px) {
  .price-head .page-title {
    margin-top: 40px;
  }
}

/* サブタイトル */
.price-head__subtitle {
  margin-top: 24px;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #6c6969;
  letter-spacing: 0.05em;
}

@media (min-width: 820px) {
  .price-head__subtitle {
    font-size: 1.6rem;
    margin-top: 32px;
  }
}

/* 初期費用０円カード */
.price-head__card-free {
  margin-top: 32px;
  width: 100%;
  max-width: 580px;
}

@media (min-width: 820px) {
  .price-head__card-free {
    margin-top: 40px;
  }
}

/* 料金ページでのカードボーダー override */
.price-head__card-free-inner {
  border: 1px solid #e5e8ef;
}

/* ─── price-plan ─── */
.price-plan {
  background-color: #fff;
  padding: 64px 20px 80px;
}

@media (min-width: 820px) {
  .price-plan {
    padding: 80px 36px 96px;
  }
}

.price-plan__inner {
  max-width: 1148px;
  margin: 0 auto;
}

/* スクロールラッパー */
.price-plan__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-top: 36px;
}

/* テーブル本体 */
.price-plan__table {
  width: 100%;
  min-width: 968px;
  border-collapse: separate;
  border-spacing: 0;
  border: none;
}

@media (min-width: 820px) {
  .price-plan__table {
    min-width: 0;
  }
}

/* 列ヘッダー */
.price-plan__th {
  padding: 20px 12px;
  text-align: center;
  vertical-align: top;
  border-top: 1px solid #e4eceb;
  border-right: 1px solid #e4eceb;
  border-bottom: 1px solid #e4eceb;
  border-left: none;
  background: #fff;
  width: 208px;
}

@media (min-width: 820px) {
  .price-plan__th {
    width: auto;
  }
}

.price-plan__th--label {
  border-left: 1px solid #e4eceb;
  width: 136px;
  position: sticky;
  left: 0;
  z-index: 3;
}

@media (min-width: 820px) {
  .price-plan__th--label {
    width: 260px;
  }
}

.price-plan__th--plus {
  border-left: 2px solid #0069b9;
  border-right: 2px solid #0069b9;
  border-top: 2px solid #0069b9;
  border-bottom: 1px solid #e4eceb;
  position: relative;
}

/* 人気バッジ（Plus列ヘッダー上部に乗っかる吹き出し） */
.price-plan__popular-badge {
  display: inline-block;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  background: #0069b9;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  padding: 12px 32px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  z-index: 1;
}

.price-plan__popular-badge::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -9px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #0069b9;
}

/* プラン名 */
.price-plan__plan-name {
  font-size: 2.6rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
}

.price-plan__th--plus .price-plan__plan-name {
  color: #0069b9;
}

/* プラン説明 */
.price-plan__plan-desc {
  font-size: 1.2rem;
  color: #6c6969;
  line-height: 1.5;
  margin-bottom: 12px;
  font-weight: 400;
}

/* 料金表示 */
.price-plan__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 16px;
}

.price-plan__price-prefix {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0069b9;
}

.price-plan__price-num {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #0069b9;
  line-height: 1;
}

.price-plan__price-unit {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0069b9;
}

/* CTAボタン */
.price-plan__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f56f61;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 10px 8px;
  border-radius: 999px;
  text-decoration: none;
  width: 162px;
  margin: 0 auto;
  transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (hover: hover) {
  .price-plan__cta-btn:hover {
    background: #e05545;
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(245, 111, 97, 0.4);
  }
}

/* 行ヘッダー（機能名） */
.price-plan__th-row {
  display: table-cell;
  padding-left: 11px;
  text-align: left;
  font-weight: 700;
  font-size: 1.2rem;
  color: #333;
  background: #f8f9fb;
  border-top: none;
  border-left: 1px solid #e4eceb;
  border-right: 1px solid #e4eceb;
  border-bottom: 1px solid #e4eceb;
  vertical-align: middle;
  width: 136px;
  position: sticky;
  left: 0;
  z-index: 2;
}

@media (min-width: 820px) {
  .price-plan__th-row {
    font-size: 1.6rem;
    padding-left: 14px;
    width: 260px;
  }
}

/* 行の色（交互） */
.price-plan__table tbody tr:nth-child(even) .price-plan__th-row {
  background: #fff;
}

.price-plan__table tbody tr:nth-child(odd) .price-plan__td:not(.price-plan__td--choosable) {
  background: #f8f9fb;
}

/* データセル */
.price-plan__td {
  padding: 14px 12px;
  text-align: center;
  border-top: none;
  border-left: none;
  border-right: 1px solid #e4eceb;
  border-bottom: 1px solid #e4eceb;
  background: #fff;
  vertical-align: middle;
  width: 208px;
}

@media (min-width: 820px) {
  .price-plan__td {
    width: auto;
  }
}

/* Plus列セル */
.price-plan__td--plus {
  border-left: 2px solid #0069b9;
  border-right: 2px solid #0069b9;
  border-bottom: 1px solid #e4eceb;
}

/* Plus列の末端行（下ボーダー） */
.price-plan__td--plus-end {
  border-bottom: 2px solid #0069b9;
}

/* チェックマーク */
.price-plan__check {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 auto;
}

/* 選べる2機能セル */
.price-plan__td--choosable {
  vertical-align: middle;
  padding: 24px 12px;
  background: #EDF4FB;
}

.price-plan__choosable {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #0069b9;
  font-weight: 700;
}

.price-plan__choosable-prefix {
  font-size: 1.4rem;
  line-height: 1.4;
}

.price-plan__choosable-main {
  display: flex;
  align-items: baseline;
}

.price-plan__choosable-num {
  font-family: 'Inter', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.price-plan__choosable-suffix {
  font-size: 1.4rem;
  line-height: 1.4;
}

/* セキュリティ行 */
.price-plan__td--security {
  text-align: left;
  font-size: 1.3rem;
  line-height: 1.9;
  color: #333;
  padding: 16px 20px;
}

.price-plan__link {
  color: #0069b9;
  font-weight: 700;
}

@media (hover: hover) {
  .price-plan__link:hover {
    text-decoration: underline;
  }
}

/* 注記エリア */
.price-plan__notes {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 600px) {
  .price-plan__notes {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 0;
  }
}

.price-plan__note-card {
  border: 1px solid #e5e8ef;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

@media (min-width: 600px) and (max-width: 819px) {
  .price-plan__note-card {
    padding: 20px;
  }

  .price-plan__note-card--mini {
    flex: 0 0 260px;
  }

  .price-plan__note-card--caution {
    flex: 1;
  }
  .price-plan__notes {
    gap: 24px;
  }
}

@media (min-width: 820px) {
  .price-plan__note-card {
    padding: 24px 44px;
  }

  .price-plan__note-card--mini {
    flex: 0 0 340px;
  }

  .price-plan__note-card--caution {
    flex: 1;
    max-width: 775px;
  }

  .price-plan__notes {
    gap: 24px;
  }
}

.price-plan__note-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  color: #6c6969;
  margin: 0;
}

/* 従量課金リスト */
.price-plan__note-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-plan__note-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .price-plan__note-item {
    justify-content: space-around;
  }
}

.price-plan__note-label {
  font-size: 1.8rem;
  color: #6c6969;
  white-space: nowrap;
  flex-shrink: 0;
  width: 73px;
}

.price-plan__note-dots {
  flex-shrink: 0;
  width: 62px;
  height: 12px;
  background-image: radial-gradient(circle, #c8c8c8 1.5px, transparent 1.5px);
  background-size: 7px 4px;
  background-repeat: repeat-x;
  background-position: center;
}

.price-plan__note-val {
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: baseline;
  width: 52px;
  justify-content: flex-end;
}

.price-plan__note-price {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0069b9;
  line-height: 1;
}

.price-plan__note-price-unit {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0069b9;
}

/* SP専用改行 */
.price-plan__sp-br {
  display: inline;
}

@media (min-width: 820px) {
  .price-plan__sp-br {
    display: none;
  }
}

/* ご留意事項リスト */
.price-plan__note-caution {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.price-plan__note-caution li {
  position: relative;
  padding-left: 1em;
  font-size: 1.4rem;
  line-height: 1.625;
  color: #6c6969;
}

.price-plan__note-caution li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.38em;
  height: 0.38em;
  border-radius: 50%;
  background-color: #6c6969;
}

/* ─── price-option ─── */
.price-option {
  padding: 64px 20px 80px;
}

@media (min-width: 820px) {
  .price-option {
    padding: 80px 36px 96px;
  }
}

.price-option__inner {
  max-width: 1148px;
  margin: 0 auto;
}

.price-option .sec-ttl {
  margin-bottom: 0;
}

.price-option__grid {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 600px) {
  .price-option__grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }
}


@media (min-width: 1025px) {
  .price-option__grid {
    gap: 48px;
  }
}

/* iPad Air/Pro：zoom適用時もPC 2列レイアウトを維持 */
@media (min-width: 769px) and (max-width: 1279px) {
  .price-option__grid {
    gap: 48px;
  }
  .price-option__card {
    width: 550px;
    padding: 40px 48px;
    gap: 24px;
  }
}

/* カード */
.price-option__card {
  background: #fff;
  border: 1px solid #e5e8ef;
  border-radius: 8px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 600px) and (max-width: 768px) {
  .price-option__card {
    width: calc(50% - 12px);
    padding: 28px 20px;
  }
}

@media (min-width: 1025px) {
  .price-option__card {
    width: 550px;
    padding: 40px 48px;
    gap: 24px;
  }
}

/* カード情報エリア（ヘッダー行 + バッジ） */
.price-option__card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

@media (min-width: 820px) {
  .price-option__card-info {
    align-items: flex-end;
    gap: 8px;
  }
}

/* ヘッダー行：アイコン+タイトル / 価格 */
.price-option__card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

@media (min-width: 820px) {
  .price-option__card-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* アイコン + タイトル */
.price-option__title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

@media (min-width: 820px) {
  .price-option__title-group {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
}

.price-option__icon {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

.price-option__card-name {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  text-align: center;
}

@media (min-width: 820px) {
  .price-option__card-name {
    font-size: 2.6rem;
    text-align: left;
  }
}

/* 価格 */
.price-option__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.price-option__price-num {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: #0069b9;
}

.price-option__price-unit {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0069b9;
}

.price-option__price-monthly {
  font-size: 1.4rem;
  color: #6c6969;
  padding-bottom: 2px;
}

.price-option__price-consult {
  font-family: 'Inter', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0069b9;
}

@media (min-width: 820px) {
  .price-option__price-consult {
    font-size: 2.6rem;
  }
}

/* バッジ（2026年より順次対応予定） */
.price-option__badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid #0069b9;
  border-radius: 99px;
  padding: 3px 12px 4px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #0069b9;
  letter-spacing: 0.04em;
  background: #fff;
  white-space: nowrap;
}

/* 説明文 */
.price-option__card-desc {
  font-size: 1.4rem;
  color: #6c6969;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* ─── share-block override ─── */
.share-block {
  background-color: #ffffff;
}

/* ─── scroll-hint override ─── */
.scroll-hint-shadow {
  opacity: 0.4;
}

.scroll-hint-icon-wrap {
  z-index: 10;
}

.scroll-hint-icon {
  background: #fdfefe !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  color: #6c6969;
}

.scroll-hint-icon::before,
.scroll-hint-icon::after {
  color: #6c6969;
  filter: brightness(0) saturate(100%) invert(44%) sepia(3%) saturate(138%) hue-rotate(314deg) brightness(95%) contrast(89%);
}

.scroll-hint-icon-wrap .scroll-hint-text {
  color: #6c6969;
}

