@charset "utf-8";
/*
Theme Name: Lightning Pro Child
Theme URI: ★ テーマの公式サイトなどのURL（空欄でも可） ★
Template: lightning
Description: ★ テーマの説明（空欄でも可） ★
Author: ★ テーマ作成者の名前（空欄でも可） ★
Tags: 
Version: 0.2.0
*/



/* 親猫：子どもカード */
/* 親猫：子どもカード（強制適用テスト） */
.parent-children { margin-top: 2rem !important; }

.parent-children__grid{
  display: grid !important;
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin-bottom: 40px;
  max-width: 1110px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px){
  .parent-children__grid{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (min-width: 1024px){
  .parent-children__grid{
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

.parent-children__card{
  border: 1px solid #e5e5e5 !important;
  background: #fff !important;
  overflow: hidden !important;
}

.parent-children__link{
  display: block !important;
  text-decoration: none !important;
  color: inherit !important;
}

.parent-children__thumb{
  aspect-ratio: 4 / 3 !important;
  overflow: hidden !important;
  background: #f5f5f5 !important;
}

.parent-children__thumb-img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.parent-children__thumb-placeholder{
  width: 100% !important;
  height: 100% !important;
  display: grid !important;
  place-items: center !important;
  color: #777 !important;
  font-size: 14px !important;
}

.parent-children__body{ padding: 12px !important; }

.parent-children__name{
  font-size: 16px !important;
  margin: 0 0 6px !important;
  line-height: 1.4 !important;
}

.parent-children__meta{
  margin: 0 !important;
  font-size: 13px !important;
  color: #666 !important;
}

.parent-children__kv{
  margin: 10px 0 0 !important;
  font-size: 13px !important;
  color: #555 !important;
}

.parent-children__kv-row{
  display: grid !important;
  grid-template-columns: 3.5em 1fr !important;
  gap: 8px !important;
  margin-top: 6px !important;
}

.parent-children__kv dt{ color: #777 !important; margin: 0 !important; }
.parent-children__kv dd{ margin: 0 !important; }











/* 子猫：父猫・母猫カード */
.kitten-parents { margin-top: 2rem; }
.kitten-parents__title { margin-bottom: 1rem; }

.kitten-parents__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1110px;
  margin: 0 auto;
}



/* スマホ時：父猫・母猫カード全体に左右余白 */
@media (max-width: 767px){

  .kitten-parents{
    padding-left: 16px;
    padding-right: 16px;
  }

}


@media (min-width: 768px){
  .kitten-parents__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); padding:0 20px;}
}

.kitten-parents__card{
  border: 1px solid #e5e5e5;
  background: #fff;
  overflow: hidden;
}

.kitten-parents__link{
  display: block;
  text-decoration: none;
  color: inherit;
}

.kitten-parents__thumb{
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f5f5f5;
}

.kitten-parents__thumb-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kitten-parents__thumb-placeholder{
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #777;
  font-size: 14px;
}

.kitten-parents__body{ padding: 12px; }

.kitten-parents__role{
  margin: 0 0 4px;
  font-size: 12px;
  color: #777;
}

.kitten-parents__name{
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.4;
}

.kitten-parents__meta{
  margin: 0;
  font-size: 13px;
  color: #666;
}

.kitten-parents__kv{
  margin: 10px 0 0;
  font-size: 13px;
  color: #555;
}

.kitten-parents__kv-row{
  display: grid;
  grid-template-columns: 3.5em 1fr;
  gap: 8px;
  margin-top: 6px;
}

.kitten-parents__kv dt{ margin: 0; color: #777; }
.kitten-parents__kv dd{ margin: 0; }












/* ボタンラッパー：中央配置 */
.kitten-parents__btn-wrap {
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center; /* ←中央に */
}

/* 角丸ボタン */
.kitten-parents__btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 13px;
  background: #EC6BA4;
  color: #fff;
  border-radius: 10px; /* ←完全丸み */
  text-decoration: none;
  transition: all .25s ease;
  border: 0px solid #333;
}

/* ホバー */
.kitten-parents__btn:hover {
  background: #d3508b;
  color: #fff;
}




/* 角丸ボタン パパママ用 */
.parents__btn-wrap {
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center; /* ←中央に */
}
.parents__btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 13px;
  background: #8ABDF4;
  color: #fff;
  border-radius: 10px; /* ←完全丸み */
  text-decoration: none;
  transition: all .25s ease;
  border: 0px solid #333;
}

/* ホバー */
.parents__btn:hover {
  background: #659bd4;
  color: #fff;
}








/*2カラム用*/

.kitten-2col-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.kitten-left {
  width: 100%;
}

.kitten-right {
  width: 100%;
}

@media (max-width: 768px) {

  .kitten-2col-wrapper {
    grid-template-columns: 1fr;
  }

}






/*thumbnail-sliderギャラリー*/
#thumbnail-slider {
	margin-top: 15px;
}

#thumbnail-slider .splide__slide {
	opacity: 0.5;
	cursor: pointer;
}

#thumbnail-slider .is-active {
	opacity: 1;
	border: 1px solid #b4b4b4;
}

#main-slider img {
	width: 100%;
	height: auto;
}






.catch_single {border: none;margin-top: 30px;}







/* 子猫スペックテーブル */

.kitten-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.kitten-spec-table th,
.kitten-spec-table td {
  border: 1px solid #cfcfcf;
  padding: 10px 14px;
  vertical-align: middle;
}

/* 左カラム（項目名） */
.kitten-spec-table th {
  width: 35%;
  background: #e8e4d8;
  text-align: left;
  font-weight: 600;
}

/* 右カラム（内容） */
.kitten-spec-table td {
  background: #ffffff;
}

/* 価格強調 */
.kitten-spec-table .price {
  color: #ff6a00;
  font-size: 20px;
  font-weight: bold;
}

/* 注釈文字 */
.kitten-spec-table .note {
  font-size: 12px;
  color: #666;
  margin-left: 6px;
}






/* Gridカラムのはみ出し防止（重要） */

.kitten-left {
  min-width: 0;
}

.kitten-right {
  min-width: 0;
}












/*親猫ページ*/

.parent-two-column {
	display: flex;
	gap: 40px;
	align-items: flex-start;
	margin-bottom: 40px;
}

.parent-two-column__left,
.parent-two-column__right {
	width: 50%;
}

.parent-two-column__left img {
	width: 100%;
	height: auto;
	display: block;
}

/* スマホ対応 */

@media (max-width: 768px) {

.parent-two-column {
	flex-direction: column;
}

.parent-two-column__left,
.parent-two-column__right {
	width: 100%;
}

}







/* 親猫スペックテーブル */

.parent-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.parent-spec-table th,
.parent-spec-table td {
  border: 1px solid #cfcfcf;
  padding: 10px 14px;
  vertical-align: middle;
}

/* 左カラム（項目名） */
.parent-spec-table th {
  width: 35%;
  background: #d8e7f5;
  text-align: left;
  font-weight: 600;
}

/* 右カラム（内容） */
.parent-spec-table td {
  background: #ffffff;
}

/* 価格強調 */
.parent-spec-table .price {
  color: #ff6a00;
  font-size: 20px;
  font-weight: bold;
}

/* 注釈文字 */
.parent-spec-table .note {
  font-size: 12px;
  color: #666;
  margin-left: 6px;
}






#konekotachi_outer {
	margin-bottom: 50px;
}







/* 親猫ページ：左カラムのはみ出し防止 */

.parent-two-column__left {
  min-width: 0;
}

.parent-two-column__right {
  min-width: 0;
}

/* ギャラリー安全化 */

.parent-two-column__left img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Splide使用時の追加安全策 */

.parent-two-column__left .splide {
  max-width: 100%;
  overflow: hidden;
}

.parent-two-column__left .splide__slide {
  min-width: 0;
}






/*子猫を探すページ　のカード表示の中の猫種、性格などの下余白を0*/
.vk_post_taxonomy {
	margin-bottom: 0 !important;
}







