@charset "utf-8";
.l-wrapper {
  margin: 0 auto;
  max-width: 100%;
  padding: 0;
}
h1 {
  text-align: center;
}
h1 img {
  width: 262px;
  max-width: 100%;
  height: auto;
}
.heading.heading-primary {
  text-align: center;
  line-height: 1em;
  margin: 60px 0;
}
#page_bottom {
  margin: 80px auto;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 20px;
}
#page_bottom .btn {
  width: auto;
}
#page_bottom .btn:last-child {
  margin-bottom: 0;
}
#page_bottom .btn .btn__link {
  background-color: #f29600;
  color: #fff;
  width: 300px;
  max-width: 100%;
}
@media (max-width: 599px) {
  #page_bottom {
    display: flex;
    flex-direction: column;
  }
}
:root {
  --fd-orange: #f2994a; /* ロゴの色味に合わせたオレンジ */
  --fd-orange-dark: #e08330;
  --fd-text-main: #333;
  --fd-text-sub: #666;
  --fd-bg-light: #f9f9f9;
  --fd-border: #eee;
}
/* ベーススタイル（既存サイトのリセットCSSがある場合は不要な可能性があります） */
.fd-price-wrapper {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: var(--fd-text-main);
  line-height: 1.6;
  box-sizing: border-box;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.fd-price-wrapper * {
  box-sizing: border-box;
}
/* 見出し関連 */
.fd-sub-title {
  font-size: 21px;
  margin-top: 60px;
  margin-bottom: 30px;
  border-left: 5px solid var(--fd-orange);
  padding-left: 15px;
  font-weight: bold;
}
.fd-intro-text {
  text-align: center;
  margin-bottom: 50px;
}
/* 料金プランカード（3カラム） */
.fd-plans-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.fd-plan-card {
  background: #fff;
  border: 1px solid var(--fd-border);
  border-radius: 8px;
  padding: 30px;
  width: 31%; /* 3列表示 */
  min-width: 280px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.fd-plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-top: 4px solid var(--fd-orange);
}
.fd-plan-name {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  color: var(--fd-orange-dark);
}
.fd-plan-price {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--fd-text-main);
}
.fd-plan-price span {
  font-size: 14px;
  font-weight: normal;
}
.fd-plan-desc {
  font-size: 14px;
  margin-bottom: 20px;
  color: var(--fd-text-sub);
  min-height: 3em; /* 高さ揃え */
}
.fd-plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--fd-border);
  padding-top: 20px;
}
.fd-plan-features li {
  margin-bottom: 10px;
  padding-left: 1.2em;
  position: relative;
  font-size: 14px;
}
.fd-plan-features li::before {
  content: "✔";
  color: var(--fd-orange);
  position: absolute;
  left: 0;
  top: 0;
}
/* 共通仕様ボックス */
.fd-common-specs {
  background-color: var(--fd-bg-light);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 60px;
}
.fd-common-specs h4 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 14px;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 10px;
}
.fd-common-specs ul {
  list-style: none;
  padding-left: 20px;
  margin: 0;
}
.fd-common-specs li {
  margin-bottom: 8px;
  color: var(--fd-text-sub);
  position: relative;
  padding-left: 1em;
}
.fd-common-specs li:before {
  content: "・";
  position: absolute;
  left: 0;
}
/* テーブルスタイル */
.fd-price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
.fd-price-table th,
.fd-price-table td {
  padding: 15px;
  border-bottom: 1px solid var(--fd-border);
  text-align: left;
  vertical-align: top;
}
.fd-price-table th {
  background-color: var(--fd-bg-light);
  width: 25%;
  font-weight: bold;
  color: var(--fd-text-main);
}
.fd-price-table td:nth-child(2) {
  font-weight: bold;
  width: 20%;
  white-space: nowrap;
}
.fd-price-table td:last-child {
  font-size: 12px;
  color: var(--fd-text-sub);
}
.fd-tax-note {
  text-align: right;
  font-size: 12px;
  margin-top: -30px;
  margin-bottom: 60px;
  color: var(--fd-text-sub);
}
/* スマホ対応 */
@media (max-width: 599px) {
  .fd-intro-text {
    text-align: left;
  }
  .fd-plans-container {
    flex-wrap: wrap;
  }
  .fd-plan-card {
    width: 100%; /* カードを縦積み */
  }
  .fd-price-table th,
  .fd-price-table td {
    display: block;
    width: 100%;
  }
  .fd-price-table th {
    background-color: #eee;
    border-bottom: none;
    padding-bottom: 5px;
  }
  .fd-price-table td {
    padding-top: 5px;
  }
  .fd-price-table td:nth-child(2) {
    color: var(--fd-orange-dark);
    border-bottom: 0;
    width: 100%;
    padding-top: 13px;
    padding-bottom: 0;
  }
}
