/*
Theme Name: LC Child
Template: astra
Version: 1.0
*/

body {
  background: #fff;
  color: #000;
}

.lurematch_top {
  background: #fff;
  color: #000;
  min-height: 100vh;
  padding-bottom: 60px;
}

.lm_hero {
  background: #000;
  padding: 32px 20px 20px;
  text-align: center;
}

.lm_hero_inner {
  max-width: 1200px;
  margin: 0 auto;
}

.lm_logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.lm_site_title {
  color: #fff;
  font-size: 36px;
  margin: 0;
}

.lm_subtitle {
  color: #d8d8d8;
  font-size: 15px;
  margin: 14px 0 0;
}

.lm_filters {
  padding: 20px;
  background: #fff;
}

.lm_filters_inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.lm_filter_group label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #333;
}

.lm_filter_select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid #dcdcdc;
  background: #fff;
  color: #000;
  box-shadow: none;
}

.lm_cards_section {
  padding: 10px 20px 0;
  background: #fff;
}

.lm_cards_grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.lm_card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.lm_card_thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lm_card_thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.lm_no_image {
  color: #888;
  font-size: 14px;
}

.lm_card_body {
  padding: 18px;
}

.lm_card_title {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 14px;
  color: #000;
}

.lm_price_compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.lm_price_box {
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 10px 10px;
  text-align: center;
}

.lm_price_box_ali {
  border-color: #7cff00;
}

.lm_price_label {
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
}

.lm_price_value {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.lm_price_box_ali .lm_price_value {
  color: #4e9a00;
}

/* 中央ブロック */
.lm_center_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* VS */
.lm_vs {
  font-size: 20px;
  font-weight: 800;
  color: #000;
  margin-bottom: 0px;
  line-height: 1;
}
.lm_vs svg {
	width: 30px;
}
/* 差額（ここ重要） */
.lm_diff_price {
  font-size: 13px;
  font-weight: 700;
  color: #ff7a00;
}

.lm_comment {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 14px;
}

.lm_buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lm_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.lm_btn:hover {
  opacity: 0.85;
}

.lm_btn_amazon {
  background: #ff9900;
  color: #111;
}

.lm_btn_rakuten {
  background: #bf0000;
  color: #fff;
}

.lm_btn_yahoo {
  background: #ff0033;
  color: #fff;
}

.lm_btn_ali {
  background: #d3031c;
  color: #111;
}

.lm_btn_temu {
  background: #ff6a00;
  color: #fff;
}

.lm_no_posts {
  max-width: 1200px;
  margin: 40px auto 0;
  color: #666;
}

@media (max-width: 920px) {
  .lm_filters_inner,
  .lm_cards_grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .lm_hero {
	padding: 24px 16px 12px;
  }
  .site-header-above-section-center.site-header-section.ast-flex.ast-grid-section-center p {
	  font-size: 12px;
  }

  .lm_filters,
  .lm_cards_section {
	padding-left: 16px;
	padding-right: 16px;
  }
.lm_filters_inner {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
  .lm_cards_grid {
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 16px;
  }
  .lm_card_body {
	  padding: 16px;
  }

  .lm_card_title {
	font-size: 12px;
  }
  .lm_price_box {
	  padding: 10px;
  }
  .lm_price_label {
	  font-size: 13px;
  }

  .lm_price_value {
	font-size: 14px;
  }
  .lm_vs svg {
	  width: 20px;
  }
  .lm_price_compare {
	  gap: 10px;
  }
  .lm_diff_price {
	  font-size: 14px;
  }
}


/* DC reel */
.dc_reel_page {
  background: #fff;
  color: #000;
  padding: 40px 20px 60px;
}

.dc_reel_inner {
  max-width: 100%;
	width: 100%;
  margin: 0 auto;
}

.dc_reel_head {
  margin-bottom: 20px;
}

.dc_reel_title {
  font-size: 32px;
  margin: 0 0 8px;
}

.dc_reel_lead {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.dc_reel_sort {
  margin-bottom: 20px;
}

.dc_reel_sort label {
  margin-right: 10px;
  font-weight: 700;
}

.dc_reel_sort select {
  height: 42px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
}

.dc_reel_table_wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
}

.dc_reel_table {
  width: 100%;
  min-width: 1600px;
  border-collapse: collapse;
  background: #fff;
  border: none;
}

.dc_reel_table th,
.dc_reel_table td {
  border-bottom: 1px solid #eee;
  padding: 14px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.6;
  border-right: 1px solid #eee;
}

.dc_reel_table th {
  background: #f8f8f8;
  font-weight: 700;
  white-space: nowrap;
}

.dc_reel_name {
  min-width: 150px;
  font-weight: 700;
}

.dc_reel_image_cell {
  width: 180px;
}

.dc_reel_image_cell img {
  width: 100px;
  height: auto;
  display: block;
  margin: 0px auto 10px auto;
}

.dc_reel_buy_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.dc_reel_videos {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 320px;
}

.dc_reel_videos iframe {
  width: 320px;
  max-width: 100%;
  height: 180px;
  display: block;
  border: 0;
}

@media (max-width: 768px) {
  .dc_reel_page {
	padding: 24px 16px 40px;
  }

  .dc_reel_title {
	font-size: 24px;
  }

  .dc_reel_table th,
  .dc_reel_table td {
	padding: 12px;
  }

  .dc_reel_image_cell,
  .dc_reel_image_cell img {
	width: 140px;
  }

  .dc_reel_videos {
	min-width: 260px;
  }

  .dc_reel_videos iframe {
	width: 260px;
	height: 146px;
  }
}