/* ヘッダー */
.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 -----------------------------------*/

.line-page {
  padding: 50px 20px 90px;
  background: #fff;
}

.line-box {
  max-width: 900px;
  margin: 0 auto;
  background: #f8f8f8;
  border-radius: 18px;
  padding: 50px 35px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.line-box h1 {
  font-size: 40px;
  color: #3e3a3a;
  margin-bottom: 18px;
  line-height: 1.4;
}

.line-lead {
  color: #555;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 30px;
}

.line-cta-area,
.line-bottom-cta {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.line-btn {
  display: inline-block;
  width: 240px;
  padding: 15px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: 0.25s;
}

.line-btn-main {
  background: #06C755;
  color: #fff;
}

.line-btn-sub {
  background: #3e3a3a;
  color: #fff;
}

.line-btn:hover {
  opacity: 0.85;
}

.line-section {
  margin-top: 40px;
  text-align: left;
}

.line-section h2 {
  display: inline-block;
  background: #e6e5ef;
  color: #3e3a3a;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 28px;
  margin-bottom: 22px;
}

.line-section p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 16px;
}

.line-benefit {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
}

.line-benefit h3 {
  font-size: 22px;
  color: #3e3a3a;
  margin-bottom: 12px;
  line-height: 1.5;
}

.line-note {
  font-size: 13px;
  color: #777;
}

@media (max-width: 768px) {
  .line-page {
    padding: 35px 15px 70px;
  }

  .line-box {
    padding: 35px 20px;
    border-radius: 14px;
  }

  .line-box h1 {
    font-size: 28px;
  }

  .line-lead {
    font-size: 15px;
  }

  .line-section h2 {
    font-size: 22px;
    padding: 10px 18px;
  }

  .line-benefit {
    padding: 20px;
  }

  .line-benefit h3 {
    font-size: 18px;
  }

  .line-btn {
    width: 90%;
    max-width: 300px;
  }
}