/* ------------------------
   共通スタイル（初期）
------------------------ */
body {
  font-family: "Helvetica Neue", "Yu Gothic", "YuGothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  margin: 0;
  padding: 0;
  color: #000;
  background: #b0c4de;
  font-size: 17px;
  line-height: 30px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.img-20 {
  padding: 0 20px;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

/* PCとSPの改行切り替え */
@media screen and (min-width: 650px) {
  .br-pc {
    display: block;
  }

  .br-sp {
    display: none;
  }
}

@media screen and (max-width: 650px) {
  .br-pc {
    display: none;
  }

  .br-sp {
    display: block;
  }
}

/* 画像の回り込み */
.image_area {
  width: 240px;
  display: block;
}

@media only screen and (min-width: 737px) {
  .image_right {
    float: right;
    margin: 0 0 21px 25px;
  }

  .image_left {
    float: left;
    margin: 0 25px 30px 0;
  }
}

@media only screen and (max-width: 736px) {
  .image_right {
    float: none;
    margin: 25px auto;
  }

  .image_left {
    float: none;
    margin: 25px auto;
  }
}

.space_m {
  height: 20px;
}

.space_l {
  height: 35px;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.font90 {
  font-size: 90%;
}

.font120 {
  font-size: 120%;
}

.price-font {
  font-size: 140%;
  line-height: 200%;
  font-weight: 600;
}

.font39800 {
  font-size: 150%;
}

.color-red {
  color: #cc0000;
}

.color-blue {
  color: #0c1fae;
}

.marker-yellow {
  background: #fbe57f;
}

.marker-yellow-w {
  background: #fbf17f;
  font-weight: 600;
}

.red-marker-yellow {
  color: #cc0000;
  background: #fbf17f;
  font-weight: 600;
}

#wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-left: 1px solid #f4f4f4;
  border-right: 1px solid #f4f4f4;
}

.lp-header {
  background: url("../image/lp-header-bg.jpg") no-repeat top center;
  background-size: cover;
  /* 必要に応じて contain や auto に調整 */
  background-color: #fffef8;
  /* 画像が読み込まれない場合の背景色 */
  padding: 0px;
  text-align: center;
  margin-bottom: 30px;
}

.main-catch {
  font-size: 22px;
  color: #cc0000;
  line-height: 32px;
  font-weight: 600;
  padding: 20px 0px;
  background: #ffff00;
}

.sub-catch {
  font-size: 18px;
  color: #010f3b;
  line-height: 28px;
  padding: 10px 0 20px 0;
  font-weight: 600;
}

.top-kore {
  width: 320px;
  margin: 0 auto 20px;
  font-size: 22px;
  padding: 7px 15px;
  font-weight: 600;
  border: 1px solid #555151;
}

.top-text {
  padding: 30px 0px 50px 0px;
}

.lp-section {
  padding: 40px 20px;
  text-align: center;
}

.section-ttl {
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  color: #010f3b;
}

.section-ttl:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 120px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #cc0000;
  border-radius: 2px;
}

.section-main-text {
  max-width: 720px;
  margin: 20px auto;
  text-align: left;
}

.section-main-text-none {
  max-width: 720px;
  margin: 0px auto 20px;
  text-align: left;
}

.section-main-text-center {
  max-width: 720px;
  margin: 20px auto;
  text-align: center;
  font-size: 18px;
}

.monthly-income-table {
  width: 100%;
  max-width: 420px;
  margin: 30px auto;
  border-collapse: collapse;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 1.2rem;
}

.monthly-income-table .row {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid #ccc;
}

.monthly-income-table .month {
  width: 20%;
  font-weight: bold;
  color: #333;
}

.monthly-income-table .amount {
  text-align: right;
  min-width: 100px;
  font-variant-numeric: tabular-nums;
  /* 数字の幅を揃える */
  font-feature-settings: "tnum";
  color: #cc0000;
  font-weight: 600;
}

.monthly-income-table-2 {
  width: 100%;
  max-width: 420px;
  margin: 30px auto;
  border-collapse: collapse;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  font-size: 1.2rem;
}

.monthly-income-table-2 .row {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid #ccc;
}

.monthly-income-table-2 .month {
  width: 100px;
  font-weight: bold;
  color: #333;
}

.monthly-income-table-2 .amount {
  text-align: right;
  min-width: 100px;
  font-variant-numeric: tabular-nums;
  /* 数字の幅を揃える */
  font-feature-settings: "tnum";
  color: #010f3b;
  font-weight: 600;
}

.dekiru-ttl {
  display: flex;
  align-items: center;
  /* 垂直中央揃え */
  justify-content: center;
  /* 横方向中央揃え */
  font-size: 22px;
  font-weight: 600;
  color: #cc0000;
  gap: 10px;
  /* マークとテキストの間隔 */
  margin-bottom: 20px;
}

.check-green {
  font-size: 34px;
  color: #2f8007;
  line-height: 1;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  /* ← ここが重要！上端に揃える */
  margin-bottom: 10px;
}

.check-list-riyu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list-riyu li {
  display: flex;
  align-items: flex-start;
}

.check-icon {
  font-family: "Arial Black", "Segoe UI Symbol", sans-serif;
  font-size: 24px;
  margin-right: 8px;
  color: #cc0000;
  font-weight: 400;
}

.toushi-2025 {
  margin: 30px 0px;
  border: 3px solid #bcbcbb;
  padding: 20px;
}

.toushi-check {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  font-weight: 600;
}

.toushi-check li {
  display: flex;
  align-items: flex-start;
  /* ← ここが重要！上端に揃える */
  margin-bottom: 10px;
}

.check-icon-green {
  font-family: "Arial Black", "Segoe UI Symbol", sans-serif;
  font-size: 24px;
  margin-right: 8px;
  color: #2f8007;
  font-weight: 400;
}

.jyouken-box {
  margin: 2em 0;
  background: #f1f1f1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
}

.jyouken-box .box-title {
  font-size: 1.2em;
  background: #333;
  padding: 10px;
  text-align: center;
  color: #FFF;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.jyouken-check {
  list-style: none;
  padding: 0 20px 20px 20px;
  margin: 20px 0 0 0;
}

.jyouken-check li {
  display: flex;
  align-items: flex-start;
  /* ← ここが重要！上端に揃える */
  margin-bottom: 10px;
}

.check-icon-black {
  font-family: "Arial Black", "Segoe UI Symbol", sans-serif;
  font-size: 24px;
  margin-right: 8px;
  color: #333;
  font-weight: 400;
}

.rieki-box {
  background: #f4f4f4;
  padding: 20px;
  margin-top: 25px;
  border: 3px solid #f2f2f2;
}

.rieki-ttl {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin-top: 15px;
}

.lp-footer {
  width: auto;
  max-width: 100%;
  background: #333;
  color: #fff;
  text-align: center;
  padding: 0px;
  font-size: 14px;
  box-sizing: border-box;
  overflow-x: hidden;
}




.price-gentei {
  max-width: 680px;
  margin: 20px auto;
  text-align: center;
  background: #fffef8;
  border: 7px solid #e2dbb4;
  padding: 20px;
}

.suryou-text {
  font-size: 130%;
  font-weight: 600;
}

.timer {
  width: 100%;
  text-align: center;
  background: #fffef8;
  padding: 8px 0px;
}

.syouhin-box {
  margin: 2em 0;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
}

.syouhin-box .box-title {
  font-size: 1.2em;
  background: #cc0000;
  padding: 10px;
  text-align: center;
  color: #FFF;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.syouhin-check {
  max-width: 320px;
  width: auto;
  list-style: none;
  padding: 0 10px 20px 10px;
  margin: 20px auto;
  text-align: left;
}

.dl-ttl {
  font-size: 120%;
  text-align: center;
  margin: 30px 0px 20px 0;
}

.tokuten-gentei {
  max-width: 680px;
  margin: 20px auto;
  text-align: center;
  background: #fff;
  border: 7px solid #dcd4d2;
  padding: 20px;
}

.tokuten-ttl {
  font-size: 140%;
  color: #cc0000;
  font-weight: 600;
}

.tokuten-naiyou {
  font-size: 125%;
  color: #010f3b;
  font-weight: 600;
  margin: 20px 0px;
}

.tokuten-text {
  text-align: left;
}

.sign-sample-ttl {
  font-size: 120%;
  margin: 20px 0px;
  color: #091e9f;
  font-weight: 600;
  text-align: center;
}

.sing-sample-box {
  max-width: 380px;
  margin: 0 auto;
  border: 3px double #333;
  padding: 20px;
}

.sign {
  text-align: right;
  margin-top: 10px;
}

.tokutei-link {
  text-align: center;
  font-weight: 600;
}

.toushi-lisk-box {
  max-width: 720px;
  margin: 20px auto;
  border: 1px solid #333;
  padding: 20px;
}

.toushi-lisk-ttl {
  color: #cc0000;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

/*よくある質問*/
.Qa-Box {
  width: auto;
  margin: 0 auto;
}

.Qa-Box .Qa {
  padding: 20px 0;
  border-bottom: 1px solid #c8c8c8;
}

.Qa-Box .Qa dt,
.Qa-Box .Qa dd {
  display: flex;
  align-items: baseline;
  margin: 15px 0;
}

.Qa-Box .Qa dt p {
  margin: 0;
  padding-left: 15px;
  font-weight: bold;
  width: 100%;
}

.Qa-Box .Qa dd p {
  margin: 0;
  padding-left: 15px;
  width: 100%;
}

.Qa-Box .Qa:last-of-type {
  border-bottom: none;
}

.Qa-Box .Qa dt::before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #08538d;
  width: 2em;
  height: 2em;
}

.Qa-Box .Qa dd::before {
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #a21c0a;
  width: 2em;
  height: 2em;
}

.toiawase {
  text-align: center;
  font-weight: 600;
  margin-top: 20px;
}

.hanbaihouhou-box {
  margin: 2em 0;
  background: #f1f1f1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
}

.hanbaihouhou-box .box-title {
  font-size: 1.2em;
  background: #555151;
  padding: 10px;
  text-align: center;
  color: #FFF;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.hanbaihouhou-box-in {
  padding: 20px;
}

@media screen and (max-width: 960px) {
  .Qa-Box {
    width: 95%;
  }
}

.tokutei-ttl {
  background: #555151;
  color: #fff;
  font-size: 24px;
  text-align: center;
  padding: 20px 0px;
}

.tokutei {
  border-collapse: collapse;
  width: 100%;
}

.tokutei th,
.tokutei td {
  border: 1px solid #dbe1e8;
  padding: 8px;
}

.tokutei th {
  background: #f9fafc;
  text-align: left;
  width: 25%;
}

@media only screen and (max-width: 800px) {

  .tokutei tr,
  .tokutei th,
  .tokutei td {
    display: block;
    width: auto;
  }

  .tokutei tr:first-child {
    border-top: 1px solid #dbe1e8;
  }

  .tokutei th,
  .tokutei td {
    border-top: none;
  }
}


/* ------------------------
   レスポンシブ設定
------------------------ */

/* ▼ タブレット以下：1079px以下 */
@media screen and (max-width: 1079px) {}

/* ▼ スマホ以下：767px以下 */
@media screen and (max-width: 767px) {
  .lp-header {
    background: url("../image/lp-header-bg-sp.jpg") no-repeat top center;
    background-size: cover;
    /* 必要に応じて contain や auto に調整 */
    background-color: #fffef8;
    /* 画像が読み込まれない場合の背景色 */
    padding: 0px;
    text-align: center;
    margin-bottom: 30px;
  }

  #wrapper {
    width: auto;
    margin: 0;
    background: #fff;
    padding: 0;
    border-left: 0px solid #f4f4f4;
    border-right: 0px solid #f4f4f4;
  }

  .price-font {
    font-size: 125%;
    line-height: 180%;
    font-weight: 600;
  }

  .main-catch {
    font-size: 20px;
    color: #cc0000;
    line-height: 22px;
    font-weight: 600;
    padding: 10px;
  }

  .lp-header {
    padding: 20px 15px 0 15px;
  }

  .lp-section {
    padding: 15px;
  }

  .section-ttl {
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
    color: #010f3b;
  }

  .price-gentei {
    width: auto;
    margin: 20px 0px;
    padding: 15px;
  }

  .syouhin-check {
    width: auto;
    margin: 20px 5px;
  }

  .honjitsu-sign {
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
    margin: 20px 0px 0 0;
    padding: 10px 0px;
  }

  .dekiru-ttl {
    display: flex;
    align-items: center;
    /* 垂直中央揃え */
    justify-content: center;
    /* 横方向中央揃え */
    font-size: 20px;
    font-weight: 600;
    color: #cc0000;
    gap: 10px;
    /* マークとテキストの間隔 */
    margin-bottom: 20px;
  }

  .tokuten-naiyou {
    font-size: 115%;
    color: #010f3b;
    font-weight: 600;
    margin: 20px 0px;
  }

  .toushi-lisk-box {
    width: auto;
    margin: 20px 15px;
    border: 1px solid #333;
    padding: 20px;
  }

  .timer {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0 auto;
    padding: 0;
    margin-left: -12px;
    background: #fffef8;
  }

  .timer table {
    max-width: 100% !important;
    width: 100% !important;
    table-layout: fixed !important;
  }

  .timer td {
    word-break: break-word;
  }

  .section-main-text {
    max-width: 720px;
    margin: 20px 5px;
    text-align: left;
  }
}

/* ▼ 超小型スマホ対応：480px以下（任意） */
@media screen and (max-width: 480px) {
  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 18px;
  }
}

/*daysrich2026追加css*/
.syouhin-box {
  margin: 2em 0;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
  padding: 15px;
}

.syouhin-box-tokutei {
  margin: 2em 0;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
  padding: 15px;
}

.syouhin-box-2 {
  margin: 2em 0;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
  padding: 20px 0px;
}

.syouhin-box-ttl {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 15px;
}