/* =========================================================
   幼稚園・保育園向けLP 専用CSS
   ========================================================= */

/* ---------------------------------
   課題と提案（3つ構成）
--------------------------------- */
.lp-features-list {
  display: grid;
  gap: 32px;
}

/* PC（800px以上）は3列固定） */
@media (min-width: 800px) {
  .lp-features-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* スマホ（799px以下）は1列 */
@media (max-width: 799px) {
  .lp-features-list {
    grid-template-columns: 1fr;
  }
}

.lp-feature {
  background: #fff;
  border: 1px solid rgba(255,140,80,0.15);
  padding: 22px;
  border-radius: 10px;
  text-align: center;
}

.lp-feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #d9534f;
  margin-bottom: 10px;
}


/* -----------------------------------------
   ガイドライン（色調整：淡いピンク〜オレンジ）
----------------------------------------- */

.lp-guidelines {
  background: linear-gradient(180deg, #fff7f4 0%, #fff2ea 100%);
  border: 1px solid rgba(255,140,80,0.15);
  padding: 26px;
  border-radius: 14px;
  margin: 60px 0;
  box-shadow: 0 6px 18px rgba(255,140,80,0.12);
}

.lp-guidelines-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: #d9534f;
  margin: 0 0 10px;
}

.lp-guidelines-lead {
  font-size: 0.95rem;
  color: #d9534f;
  margin: 0 0 16px;
}

.lp-guidelines-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-guidelines-item a {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(255,140,80,0.15);
  box-shadow: 0 2px 6px rgba(255,140,80,0.12);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, background .12s ease;
  color: #7a2600;
  font-weight: 600;
  text-decoration: none;
}

.lp-guidelines-item a .g-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg,#ffe6df,#ffd7c7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9d4500;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(255,140,80,0.2);
}

.lp-guidelines-item a .g-meta {
  display: block;
  font-size: 0.86rem;
  color: #6b5850;
  font-weight: 400;
  margin-top: 4px;
}

.lp-guidelines-item a::after {
  content: "↗";
  margin-left: auto;
  color: #cc8e62;
  font-size: 0.95rem;
  opacity: 0.9;
}

.lp-guidelines-item a:hover,
.lp-guidelines-item a:focus {
  transform: translateY(-4px);
  background: #fff5ef;
  box-shadow: 0 8px 26px rgba(255,140,80,0.18);
  border-color: rgba(255,140,80,0.25);
}

.lp-guidelines-item a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255,140,80,0.25), 0 6px 18px rgba(255,140,80,0.12);
}

@media (max-width: 520px) {
  .lp-guidelines {
    padding: 18px;
  }
  .lp-guidelines-item a {
    padding: 12px;
  }
  .lp-guidelines-item a .g-icon {
    width: 38px;
    height: 38px;
  }
}

/* -----------------------------------------
   園向け商品リスト（完成版）
----------------------------------------- */

.lp-hoikuen .lp-products {
  max-width: 1100px;
  margin: 120px auto 80px;
  padding: 0 20px;
}

.lp-hoikuen .lp-products-title {
  font-size: 1.7rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
  color: #d9534f;
}

/* ガイドラインと同じ幅感 */
.lp-hoikuen .lp-products-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* カード */
.lp-hoikuen .lp-product {
  background: #fff7f4;
  border: 1px solid #ffd8c7;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(255,160,120,0.12);
  transition: transform .15s ease, box-shadow .15s ease;
}

.lp-hoikuen .lp-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(255,160,120,0.22);
}

/* リンクをカード全体に */
.lp-product-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  text-decoration: none;
  color: inherit;
}

/* 画像枠（ここが肝） */
.lp-product-img-wrap {
  width: 100%;
  height: 180px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ffffff;
  border-radius: 10px;
}

/* 画像本体 */
.lp-product-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* タイトル */
.lp-hoikuen .lp-product-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 6px 0 6px;
  color: #e63b63;
  text-align: center;
}

/* 説明文 */
.lp-hoikuen .lp-product-text {
  font-size: 0.9rem;
  color: #864f2b;
  line-height: 1.45;
  margin-top: auto;
  text-align: center;
}

/* スマホ微調整 */
@media (max-width: 520px) {
  .lp-product-img-wrap {
    height: 160px;
  }
}


/* -----------------------------------------
   カテゴリーリンク（大きめピル型・淡いピンク〜オレンジ）
----------------------------------------- */

.lp-category-links {
  margin: 120px auto;
  text-align: center;
}

.lp-category-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #d9534f;
  margin-bottom: 28px;
}

/* グリッド */
.lp-category-list {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 780px;
}

/* ピル型ボタン（大きめ） */
.lp-category-list a {
  display: block;
  padding: 16px 20px;
  background: #ffe9e2;
  color: #d9534f;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  border: 1px solid rgba(255,140,80,0.15);
  transition: background .18s ease, transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 3px 10px rgba(255,140,80,0.12);
  font-size: 1rem;
}

.lp-category-list a:hover {
  background: #ffd6c7;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255,140,80,0.18);
}

.lp-category-list a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255,140,80,0.22);
}

@media (max-width: 480px) {
  .lp-category-list a {
    padding: 14px 16px;
    font-size: 0.95rem;
  }
}