@charset "UTF-8";
/* ============================================================
   ランニングコストが安価（OKカード）— 再利用パーツ
   ・複数ページで利用するため、ページ非依存・独立スタイル
   ・.run-cost 名前空間で完結（既存CSSと競合しない）
   ============================================================ */

/* box-sizing と、reset.css のクリアフィックス疑似要素が
   flex 子要素化するのを無効化（ホスト側の reset 対策） */
.run-cost,
.run-cost *,
.run-cost *::before,
.run-cost *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.run-cost__cards::before,
.run-cost__cards::after,
.run-cost__card::before,
.run-cost__card::after {
  display: none;
}

.run-cost {
  background: #f9f9f9;
  padding: 50px 0;
}
.run-cost__inner {
  width: 760px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
}

/* 見出し */
.run-cost__title {
  margin: 0;
  color: #004693;
  font-size: 34px;
  font-weight: bold;
  line-height: 1.2;
  text-align: left;
}
.run-cost__title-p {
  font-size: 28px;
}

/* リード文 */
.run-cost__lead {
  margin: 14px 0 0;
  color: #1a273e;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}

/* OKカード */
.run-cost__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.run-cost__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  gap: 10px;
  height: 80px;
  padding: 0 10px;
  border: 2px solid #00a3f7;
  border-radius: 10px;
  background: #fff;
}
.run-cost__ok {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #00a3f7;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: -1px;
}
.run-cost__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  gap: 4px;
}
.run-cost__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  padding: 1px 4px;
  border-radius: 4px;
  background: #d8ebf5;
  color: #1a273e;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}
.run-cost__note-mark {
  font-size: 9px;
}
.run-cost__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #004693;
}
.run-cost__price .num {
  font-size: 36px;
  font-weight: bold;
  line-height: 0.8;
}
.run-cost__price .u {
  font-size: 14px;
}
.run-cost__price .slash {
  margin: 0 1px;
  font-size: 19px;
}

/* 注釈 */
.run-cost__notes {
  margin: 14px 0 0;
}
.run-cost__note {
  margin: 0;
  padding-left: 1em;
  color: #1a273e;
  font-size: 12px;
  line-height: 1.6;
  text-align: left;
  text-indent: -1em;
}

/* ============================================================
   SP（max-width: 768px）
   ============================================================ */
@media screen and (max-width: 768px) {
  .run-cost {
    padding: 36px 0;
  }
  .run-cost__title {
    font-size: 24px;
    text-align: center;
  }
  .run-cost__title-p {
    font-size: 20px;
  }
  .run-cost__lead {
    margin-top: 10px;
    font-size: 14px;
  }
  .run-cost__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
  }
  .run-cost__card {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    max-width: 340px;
    padding: 0 16px;
  }
  .run-cost__notes {
    text-align: center;
  }
  .run-cost__note {
    display: inline-block;
    text-align: left;
  }
}
