/* 整理済みCSS */
body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #ffffff;
  color: #1C1F33;
}

.sidekit-hero h1,
.sidekit-hero p {
  color: #1C1F33;
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.6);
}

.sidekit-cta {
  background-color: #00B8A9;
  color: #fff;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: clamp(1rem, 2vw, 1.2rem);
  display: inline-block;
}

.sidekit-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 1rem 2rem;
}

.sidekit-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.sidekit-logo img {
  height: 48px;
}

.sidekit-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.sidekit-nav a {
  text-decoration: none;
  color: #1C1F33;
  font-weight: bold;
}

.sidekit-nav a:hover {
  color: #00B8A9;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #1C1F33;
  display: block;
}

.sidekit-hero {
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.sidekit-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.sidekit-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.sidekit-hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 2rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  background: linear-gradient(90deg, #00B8A9, #1C1F33);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-feature {
  background-color: #F3FAF9;
  padding: 60px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  margin-top: 60px;
}

.feature-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-card {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  flex: 1 1 250px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.feature-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.section-templates {
  padding: 60px 20px;
  background-color: #fff;
}

.template-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.template-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  flex: 1 1 300px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.template-card img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.template-card h3 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
}

.template-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.btn-more {
  display: inline-block;
  background-color: #00B8A9;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn-more:hover {
  background-color: #019e93;
}

.section-plan {
  padding: 60px 20px;
  background: #f0f4f8;
}

.plan-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto;
}

.plan-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  flex: 1 1 280px;
  text-align: center;
}

.plan-card.recommended {
  border: 2px solid #00B8A9;
}

.plan-card .price {
  font-size: 1.5rem;
  margin: 1rem 0;
  color: #1C1F33;
}

.plan-card ul {
  text-align: left;
  margin: 1rem 0;
  padding-left: 1.2rem;
}

.btn-plan {
  background: #00B8A9;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
}

.btn-plan:hover {
  background: #019e93;
}

.section-cta {
  background: #1C1F33;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.section-cta .cta-inner h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.section-cta .btn-cta {
  background: #00B8A9;
  color: #fff;
  padding: 0.75rem 2rem;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .sidekit-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .sidekit-nav ul {
    flex-direction: column;
    display: none;
    background-color: #fff;
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  .sidekit-nav ul.active {
    display: flex;
  }

  .feature-cards,
  .template-grid,
  .plan-grid {
    flex-direction: column;
    align-items: center;
  }

  .feature-card,
  .template-card,
  .plan-card {
    width: 100%;
    max-width: 320px;
  }
}

.template-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.template-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  text-align: center;
  flex: 1 1 300px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.template-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.template-card img, .template-thumb img {
  max-width: 100%;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.template-card h2 {
  font-size: 1.25rem;
  margin: 0.5rem 0;
  color: #1C1F33;
}

.template-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .template-card {
    max-width: 100%;
  }
}

.template-category-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem auto;
  padding: 0;
  list-style: none;
}
.template-category-filter li a {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: #f0f0f0;
  border-radius: 4px;
  text-decoration: none;
  color: #1C1F33;
  font-size: 0.95rem;
}
.template-category-filter li a:hover {
  background: #00B8A9;
  color: #fff;
}

.template-single {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}
.template-single h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.template-thumb {
  margin-bottom: 1rem;
}
.template-body {
  font-size: 1rem;
  line-height: 1.8;
}

.template-single {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.template-header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.template-cat {
  text-align: center;
  margin-bottom: 1rem;
}

.template-cat .badge {
  display: inline-block;
  background: #00B8A9;
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  margin: 0 0.3rem;
  transition: background 0.3s;
}

.template-cat .badge:hover {
  background: #019e93;
}

.template-thumb img {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.template-meta {
  background: #F3FAF9;
  padding: 1rem;
  border-radius: 8px;
  margin: 20px 0;
  font-size: 0.95rem;
}

.template-content {
  line-height: 1.8;
  margin: 30px 0;
}

.template-download {
  text-align: center;
  margin: 40px 0;
}

.btn-download {
  display: inline-block;
  background: #00B8A9;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.btn-download:hover {
  background: #019e93;
  transform: translateY(-2px);
}


.template-category-filter {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.template-category-filter a {
  display: inline-block;
  background: #f0f0f0;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  color: #1C1F33;
  font-weight: bold;
  transition: all 0.3s;
}

.template-category-filter a.active,
.template-category-filter a:hover {
  background: #00B8A9;
  color: #fff;
}


.template-hero {
  background: #f0f4f8;
  padding: 60px 20px;
  text-align: center;
}
.template-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.template-badge {
  display: inline-block;
  background: #00B8A9;
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.85rem;
}

.template-content {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}
.template-thumbnail img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}
.template-note {
  background: #f9f9f9;
  padding: 1rem;
  border-left: 4px solid #00B8A9;
  margin-top: 1.5rem;
}

.btn-download {
  display: inline-block;
  background: #00B8A9;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1.5rem;
}

.btn-back {
  display: inline-block;
  margin: 40px auto;
  text-align: center;
  color: #00B8A9;
}


/* LPCSS */

.lp-hero {
  background: #f0f4f8;
  text-align: center;
  padding: 80px 20px;
}
.lp-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #1C1F33;
}
.lp-hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-top: 1rem;
  color: #555;
}
.btn-cta {
  background: #00B8A9;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  display: inline-block;
  margin-top: 1.5rem;
  text-decoration: none;
  font-weight: bold;
}

/* thanksページ　*/

.thanks-hero {
  text-align: center;
  padding: 80px 20px;
  background: #f0f4f8;
}
.thanks-hero h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #1C1F33;
}
.thanks-hero p {
  font-size: 1.2rem;
  color: #555;
  margin: 1rem 0;
}
.btn-download {
  display: inline-block;
  background: #00B8A9;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1.5rem;
}
.thanks-follow {
  text-align: center;
  padding: 40px 20px;
}
.thanks-follow h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.thanks-follow ul {
  list-style: none;
  padding: 0;
}
.thanks-follow li {
  margin: 0.5rem 0;
  font-size: 1rem;
}


/* フッターメニューの見た目調整 */
.footer-nav {
  text-align: center;
  margin: 20px 0;
}

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

.footer-menu li {
  display: inline-block;
  margin: 0 15px;
}

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

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

/* フッターエリア全体の背景色と文字色を統一 */
footer, .footer-nav, .l-footer__copy {
  background-color: #04384c;  /* ダークネイビー */
  color: #fff;  /* 白文字 */
}

/* メニューリンクも白色に */
.footer-menu a {
  color: #fff;
  text-decoration: none;
}

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

/* コピーライト部分の文字サイズと色を明確に */
.l-footer__copy {
  font-size: 12px;
  color: #ccc;
  text-align: center;
  padding: 10px 0;
}

/* メニューリストの見た目 */
.footer-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 10px 0;
}

.footer-menu li {
  display: inline;
}

/* コピーライト部分 */
.l-footer__copy {
  text-align: center;
  font-size: 12px;
  color: #ccc;
  padding: 10px 0;
}


