/* ヘッダー */
.header {
  background: #fff;
  border-bottom: 1px solid var(--sub-color);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}

/* ロゴ */
.logo-img {
  width: 180px;
  height: auto;
  display: block;
}

/* ナビ */
.nav {
  display: none;
}

.nav a {
  margin: 0 10px;
  text-decoration: none;
  color: var(--text-color);
  font-size: 14px;
}

/* ログインボタン */
.login-btn {
  background: #3e3a3a;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

/* キャンペーンバー */
.campaign-bar {
  background: #3e3a3a;
  color: #fff;
  text-align: center;
  padding: 12px 10px;
  font-size: 14px;
  font-weight: bold;
}

.campaign-bar a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}

/* PC表示 */
@media (min-width: 768px) {
  .nav {
    display: block;
  }
}

/* サイトマップ */

.breadcrumb {
  max-width: 1000px;   /* 会社概要と同じ幅 */
  margin: 30px auto 20px;
  padding: 0 20px;
  text-align: left;    /* センターやめる */
  font-size: 14px;
}

.breadcrumb a {
  color: #3e3a3a;
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 5px;
  color: #666;
}


/* フッター */


.footer {
  background: #3e3a3a;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 14px;
  color: #ddd;
  margin-bottom: 30px;
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer-row a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  text-align: center;
}

.footer-copy p {
  font-size: 12px;
  color: #ccc;
}

.footer-logo-img {
  width: 220px;
  height: auto;
  display: block;
  margin: 0 auto 15px;
}

.hero {
  position: relative;
}

.hero img {
  width: 100%;
  display: block;
}

/* ハンバーガー */

.menu-toggle {
  display: none;
}

@media (max-width: 768px) {

  .header-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: #3e3a3a;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    flex-shrink: 0;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 0 auto;
  }

  .logo {
    flex: 1;
  }

  .nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 15px 20px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    z-index: 9999;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #3e3a3a;
  }

  .nav a:last-child {
    border-bottom: none;
  }
}

/* ----------------基本CSS -----------------------------------*/



/* パンくず */
.breadcrumb {
  max-width: 1000px;
  margin: 30px auto 20px;
  padding: 0 20px;
  font-size: 14px;
  color: #666;
  text-align: left;
}

.breadcrumb a {
  color: #3e3a3a;
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 5px;
}


/* 単品料金表 */
.single-price {
  padding: 40px 20px 80px;
  background: #fff;
}

.single-price-heading {
  max-width: 1000px;
  margin: 0 auto 40px;
  text-align: center;
}

.single-price-heading h1 {
  font-size: 38px;
  color: #3e3a3a;
  margin-bottom: 15px;
}

.single-price-heading p {
  color: #666;
  line-height: 1.8;
}

/* 2列レイアウト */
.single-price-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* カード */
.price-card {
  background: #f8f8f8;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.price-card h2 {
  font-size: 24px;
  color: #3e3a3a;
  margin-bottom: 18px;
  padding: 10px 16px;
  background: #e6e5ef;
  border-radius: 30px;
  display: inline-block;
}

/* 表 */
.price-card table {
  width: 100%;
  border-collapse: collapse;
}

.price-card td {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
}

.price-card td:last-child {
  text-align: right;
  font-weight: bold;
  color: #3e3a3a;
}

/* スマホは1列 */
@media (max-width: 768px) {
  .single-price-grid {
    grid-template-columns: 1fr;
  }

  .single-price-heading h1 {
    font-size: 28px;
  }

  .price-card {
    padding: 20px;
  }

  .price-card h2 {
    font-size: 20px;
  }

  .price-card td {
    font-size: 14px;
  }
}



.pack-guide {
  max-width: 900px;
  margin: 60px auto 0;
  padding: 50px 20px;
  background: #e6e5ef;
  border-radius: 14px;
  text-align: center;
}

.pack-guide h2 {
  font-size: 30px;
  color: #3e3a3a;
  margin-bottom: 15px;
}

.pack-guide p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* 上の単体ボタン */
.pack-top-button {
  margin-bottom: 20px;
}

.pack-btn {
  display: inline-block;
  width: 240px;
  padding: 14px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* お得なプラン */
.pack-btn-main {
  background: #3e3a3a;
  color: #fff;
}


/* 単品メニュー */
.single-menu {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
  padding: 40px 20px;
  background: #f8f8f8;
  border-radius: 12px;
}

.single-menu h2 {
  font-size: 28px;
  color: #3e3a3a;
  margin-bottom: 15px;
}

.single-menu p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.single-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #3e3a3a;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
}


/* 最終CTA */
.service-cta {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 20px;
  background: #e6e5ef;
  border-radius: 12px;
}

.service-cta h2 {
  font-size: 30px;
  color: #3e3a3a;
  margin-bottom: 15px;
}

.service-cta p {
  font-size: 15px;
  color: #666;
  margin-bottom: 25px;
}

.service-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.service-btn {
  display: inline-block;
  width: 220px;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

.service-btn-main {
  background: #3e3a3a;
  color: #fff;
}

.service-btn-line {
  background: #06C755;
  color: #fff;
  border: 1px solid #06C755;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .service-price-heading h1 {
    font-size: 28px;
  }

  .service-price-heading p {
    font-size: 14px;
  }

  .compare-box {
    width: 100%;
    max-width: 340px;
  }

  .plan-title {
    font-size: 24px;
  }

  .price-table-box,
  .plan-detail {
    width: 100%;
    max-width: 500px;
  }

  .price-table th,
  .price-table td {
    font-size: 14px;
    padding: 12px;
  }

  .single-menu h2,
  .service-cta h2 {
    font-size: 24px;
  }

  .service-btn,
  .single-btn {
    width: 90%;
    max-width: 300px;
  }
}

.service-btn-main-order {
  background: #ff6b6b;
  color: #fff;
}
