@charset "UTF-8";
.catalog .catalog-item-wrap {
  margin: 60px 0;
}
.catalog .catalog-item-wrap .catalog-item {
  width: 300px;
  margin: 0 auto;
}
.catalog .catalog-item-wrap .catalog-item h4 {
  font-size: 24px;
}
.catalog .catalog-item-wrap .catalog-item p {
  margin: 0 0 10px;
}
.catalog .catalog-item-wrap .catalog-item img {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 0.168627451);
}
.catalog .catalog-item-wrap .catalog-item img:hover {
  transition: 0.5s;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.plan-2026 .plans-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  width: 100%;
}
@media (max-width: 768px) {
  .plan-2026 .plans-grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.plan-2026 .plan-card {
  background-color: #ffffff;
  border-radius: 36px;
  border: 6px solid var(--theme-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan-2026 .plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .plan-2026 .plan-card {
    border-radius: 28px;
    border-width: 5px;
  }
}
.plan-2026 .plan-card .card-header {
  background-color: var(--theme-color);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 900;
  text-align: center;
  padding: 15px 15px;
  letter-spacing: 0.05em;
  border-bottom: 3px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}
@media (max-width: 768px) {
  .plan-2026 .plan-card .card-header {
    font-size: 0.95rem;
    padding: 12px 10px;
    min-height: auto;
  }
}
.plan-2026 .plan-card .card-body {
  padding: 45px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
  background-size: 7px 7px;
}
@media (max-width: 768px) {
  .plan-2026 .plan-card .card-body {
    padding: 35px 15px;
  }
}
.plan-2026 .plan-card .plan-title {
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  background: linear-gradient(to bottom, var(--text-gradient-start), var(--text-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .plan-2026 .plan-card .plan-title {
    font-size: 1.85rem;
  }
}
.plan-2026 .plan-card .plan-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: var(--theme-color);
}
@media (max-width: 768px) {
  .plan-2026 .plan-card .plan-subtitle {
    font-size: 16px;
  }
}
.plan-2026 .card-testfree {
  --theme-color: #2ca5da;
  --text-gradient-start: #568ec5;
  --text-gradient-end: #3aa6d4;
}
.plan-2026 .card-pay-once {
  --theme-color: #33bfa8;
  --text-gradient-start: #35b3aa;
  --text-gradient-end: #49dbbd;
}
.plan-2026 .card-pay-after {
  --theme-color: #ee7063;
  --text-gradient-start: #e06e78;
  --text-gradient-end: #f59685;
}
.plan-2026 .card-zero-plan {
  --theme-color: #4a82cb;
  --text-gradient-start: #4789ce;
  --text-gradient-end: #77bdfb;
}
.plan-2026 {
  /* 表専用コンテナ（幅いっぱい、適度な余白） */
}
.plan-2026 .table-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}
@media (max-width: 992px) {
  .plan-2026 .table-container {
    padding: 10px;
    margin: 15px auto;
  }
}
.plan-2026 .comparison-headers {
  display: flex;
  margin-bottom: 20px;
  /* テーブルとの間に隙間を作り、下矢印が境界をまたぐようにする */
  position: relative;
  z-index: 10;
  /* 下向き矢印（▼）を下のテーブルに美しく重ねるため */
}
@media (max-width: 992px) {
  .plan-2026 .comparison-headers {
    display: none;
    /* スマホでは非表示 */
  }
}
.plan-2026 {
  /* 左側の項目名ラベルと同じ幅のプレースホルダー（空きスペース） */
}
.plan-2026 .header-label-placeholder {
  flex: 0 0 180px;
}
.plan-2026 {
  /* 各ヘッダーカードを包むラッパー */
}
.plan-2026 .header-card-wrapper {
  flex: 1;
  padding: 0 10px;
  /* カード同士の間に絶妙な抜け感を演出 */
  display: flex;
  justify-content: center;
}
.plan-2026 {
  /* プランヘッダーカード共通の立体デザイン */
}
.plan-2026 .plan-header-card {
  width: 100%;
  height: 130px;
  border: 3px solid var(--plan-color);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #ffffff;
  position: relative;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan-2026 .plan-header-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.plan-2026 .plan-header-card .plan-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--plan-color);
  line-height: 1.3;
  text-align: center;
}
.plan-2026 .plan-header-card .plan-subtitle {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--plan-color);
  margin-top: 6px;
}
.plan-2026 .plan-header-card {
  /* 下向きの三角矢印（▼）のデザイン再現 */
}
.plan-2026 .plan-header-card::after {
  content: "";
  position: absolute;
  bottom: -15px;
  /* カードのフチから半分突き抜けさせる */
  left: 50%;
  transform: translateX(-50%);
  border-width: 15px 12px 0;
  border-style: solid;
  border-color: var(--plan-color) transparent transparent;
  display: block;
  width: 0;
  height: 0;
  z-index: 5;
}
.plan-2026 .comparison-table {
  display: flex;
  background: #ffffff;
  border-radius: 16px;
  /* ヘッダー外出しに伴い、テーブル上部も綺麗な角丸に */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 2px solid #cbd5e1;
  /* 外枠で全周囲んで一体感をアップ */
  position: relative;
  z-index: 0;
}
@media (max-width: 992px) {
  .plan-2026 .comparison-table {
    flex-direction: column;
    background: transparent;
    border: none;
    box-shadow: none;
    gap: 25px;
  }
}
.plan-2026 .table-column {
  display: flex;
  flex-direction: column;
  flex: 1;
  transition: all 0.3s ease;
  position: relative;
}
.plan-2026 .table-column:not(:last-child) {
  border-right: 2px solid #cbd5e1;
}
@media (max-width: 992px) {
  .plan-2026 .table-column:not(:last-child) {
    border-right: none;
  }
}
@media (max-width: 992px) {
  .plan-2026 .table-column {
    background: #ffffff;
    border-radius: 16px;
    border: 2.5px solid var(--plan-color) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
  }
}
.plan-2026 .labels-column {
  flex: 0 0 180px;
  background-color: #f8fafc;
  font-weight: 700;
  border-radius: 14px 0 0 14px;
}
@media (max-width: 992px) {
  .plan-2026 .labels-column {
    display: none;
  }
}
.plan-2026 .labels-column .cell {
  justify-content: flex-start;
  text-align: left;
  padding-left: 15px;
  color: #334155;
  font-size: 0.95rem;
}
.plan-2026 .labels-column .cell-sub {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: normal;
  display: block;
  margin-top: 4px;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .plan-2026 .plan-column:hover {
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
}
.plan-2026 .cell {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
  border-bottom: 2px solid #cbd5e1;
  font-size: 0.95rem;
}
.plan-2026 .cell:last-child {
  border-bottom: none;
}
@media (max-width: 992px) {
  .plan-2026 .cell {
    height: auto !important;
    padding: 15px 20px;
    flex-direction: column;
    /* 横並びから「1列の縦積み」へ変更 */
    align-items: center;
    /* 左右を中央寄せに変更 */
    text-align: center;
    /* テキスト配置を中央揃えに変更 */
  }
  .plan-2026 .cell:not(:last-child) {
    border-bottom: 1.5px dashed #cbd5e1;
  }
  .plan-2026 .cell::before {
    content: attr(data-label);
    font-weight: 700;
    color: #475569;
    font-size: 0.85rem;
    text-align: center;
    /* ラベルを中央揃えに変更 */
    margin-bottom: 8px;
    /* ラベル下の余白を確保 */
    margin-right: 0;
    display: block;
    width: 100%;
  }
  .plan-2026 .cell > div {
    width: 100%;
    text-align: center;
    /* 中央揃えに変更 */
  }
}
.plan-2026 .cell-otokudo {
  height: 80px;
}
.plan-2026 .cell-chosa {
  height: 120px;
}
.plan-2026 .cell-system {
  height: 180px;
}
.plan-2026 .cell-running {
  height: 120px;
}
.plan-2026 .cell-support {
  height: 110px;
}
.plan-2026 .cell-refund {
  height: 180px;
}
.plan-2026 .cell-owner {
  height: 110px;
}
.plan-2026 .cell-hoshu {
  height: 110px;
}
.plan-2026 .sp-only-header {
  display: none;
  /* PCでは表示を隠す */
}
@media (max-width: 992px) {
  .plan-2026 .sp-only-header {
    display: flex;
    background: var(--plan-color);
    padding: 20px;
    border-bottom: none;
    justify-content: center;
  }
  .plan-2026 .sp-only-header::before {
    display: none;
    /* 左側のSP用自動ラベルを非活性に */
  }
  .plan-2026 .sp-only-header .plan-header-card {
    border: none;
    background: transparent;
    padding: 0;
    height: auto;
    box-shadow: none;
  }
  .plan-2026 .sp-only-header .plan-header-card:hover {
    transform: none;
  }
  .plan-2026 .sp-only-header .plan-header-card .plan-title {
    color: #ffffff;
    font-size: 1.35rem;
  }
  .plan-2026 .sp-only-header .plan-header-card .plan-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
  }
  .plan-2026 .sp-only-header .plan-header-card::after {
    display: none;
    /* スマホ表示時は下矢印(▼)を非表示に */
  }
}
.plan-2026 .plan-testfree {
  --plan-color: #2ca5da;
  --star-color: #2ca5da;
}
.plan-2026 .plan-pay-once {
  --plan-color: #00bba2;
  --star-color: #00bba2;
}
.plan-2026 .plan-pay-after {
  --plan-color: #f57c00;
  --star-color: #f57c00;
}
.plan-2026 .plan-zero-plan {
  --plan-color: #1d50a2;
  --star-color: #1d50a2;
}
.plan-2026 {
  /* お得度 (星の描画) */
}
.plan-2026 .star-rating {
  display: flex;
  gap: 3px;
}
@media (max-width: 992px) {
  .plan-2026 .star-rating {
    width: 120px !important;
    margin: 0 auto;
  }
}
.plan-2026 .star-rating svg {
  width: 20px;
  height: 20px;
  fill: var(--star-color);
}
.plan-2026 .star-rating svg.inactive {
  fill: #e2e8f0;
}
.plan-2026 {
  /* 費用表示の0円大文字 */
}
.plan-2026 .price-zero-badge {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: var(--plan-color);
  font-weight: 900;
}
@media (max-width: 992px) {
  .plan-2026 .price-zero-badge {
    justify-content: center;
    /* スマホ1列時も完全に中央寄せにする */
  }
}
.plan-2026 .price-zero-badge .number {
  font-size: 3.5rem;
  line-height: 1;
  font-style: italic;
}
.plan-2026 .price-zero-badge .unit {
  font-size: 1.3rem;
  margin-left: 2px;
}
.plan-2026 {
  /* プランカラー強調テキスト */
}
.plan-2026 .text-plan-color {
  color: var(--plan-color);
  font-weight: 700;
}
.plan-2026 {
  /* 注釈小文字 */
}
.plan-2026 .text-small {
  font-size: 0.75rem;
  font-weight: normal;
  display: block;
  margin-top: 5px;
  line-height: 1.4;
  color: #475569;
}
@media (max-width: 992px) {
  .plan-2026 .text-small {
    display: inline;
    margin-left: 4px;
  }
}
.plan-2026 {
  /* お試しと返金保証バッジ (中をくり抜くタイプ) */
}
.plan-2026 .badge-outline {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  border: 2px solid var(--plan-color);
  color: var(--plan-color);
  background-color: #ffffff;
}
.plan-2026 {
  /* お試しと返金保証バッジ (色で塗りつぶすタイプ) */
}
.plan-2026 .badge-fill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  background-color: var(--plan-color);
  color: #ffffff;
}
.plan-2026 {
  /* お試しと返金保証の文章説明 */
}
.plan-2026 .refund-desc {
  font-size: 0.8rem;
  text-align: left;
  line-height: 1.4;
}
@media (max-width: 992px) {
  .plan-2026 .refund-desc {
    text-align: center;
    /* 左揃えから「中央揃え」に変更 */
    max-width: 100%;
    /* 横幅制限を解除して全幅に変更 */
  }
}
.plan-2026 {
  /* 保守サービスの角丸ボーダーラベル */
}
.plan-2026 .badge-rect {
  border: 2px solid var(--plan-color);
  color: var(--plan-color);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.4;
}
.plan-2026 .badge-rect.fill {
  background-color: var(--plan-color);
  color: #ffffff;
}/*# sourceMappingURL=ecomira-life.css.map */