@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template: cocoon-master
Version: 1.1.3
*/

/************************************
** ここから下に、あなた専用のCSSを書く
************************************/

/* =========================================
   ▼ ガス会社一覧・エリアページ用のデザイン
========================================= */

/* 地方・都道府県・市区町村のリンク一覧 */
.area-list-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin: 20px 0 30px;
}
.area-list-wrap a {
  display: block;
  padding: 10px 14px;
  background: #f5f5f5;
  border-radius: 6px;
  text-align: center;
  font-size: 15px;
  transition: 0.2s;
}
.area-list-wrap a:hover {
  background: #e6f0ff;
}

/* ガス会社一覧カード */
.company-card {
  padding: 16px 20px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: 0.2s;
}
.company-card:hover {
  background: #fafafa;
}

/* =========================================
   ▼ シングル投稿（会社詳細ページ）
========================================= */

.company-info-box {
  padding: 20px;
  margin: 25px 0;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fcfcfc;
}
.company-info-box .label {
  display: inline-block;
  width: 90px;
  background: #eee;
  padding: 5px 8px;
  font-size: 13px;
  text-align: center;
  border-radius: 5px;
  margin-right: 10px;
}
.company-info-box p {
  margin-bottom: 10px;
}

/************************************
** ▼ レスポンシブ（スマホ対応）
************************************/

/*1030px以下*/
@media screen and (max-width: 1030px){
  .area-list-wrap {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

/*768px以下（タブレット）*/
@media screen and (max-width: 768px){
  .company-card {
    padding: 14px 16px;
  }
}

/*480px以下（スマホ）*/
@media screen and (max-width: 480px){
  .area-list-wrap {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}
/* LPガス会社一覧デザイン調整 */
.lp-gas-archive .wrap {
  max-width: 960px;
  margin: 0 auto;
}

/* リストの余白とポチ消す */
.lp-gas-archive .company-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 1社ごとのカード */
.lp-gas-archive .company-card {
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 16px 0;
  background: #fff;
  max-width: 520px;   /* ← ここで横幅を制限して「びよーん」を防ぐ */
}

/* 会社名 */
.lp-gas-archive .company-card__title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}

/* 行ごとのラベル＋値 */
.lp-gas-archive .company-card__row {
  display: flex;
  gap: 8px;
  margin: 4px 0;
  font-size: 14px;
}

.lp-gas-archive .company-card__row .label {
  display: inline-block;
  min-width: 72px;
  padding: 4px 8px;
  border-radius: 4px;
  background: #f3f3f3;
  font-size: 12px;
  color: #555;
  text-align: center;
}

.lp-gas-archive .company-card__row .value {
  padding: 4px 0;
}

.lp-gas-archive .company-card__row .value a {
  text-decoration: none;
}
.lp-gas-archive .company-card__row .value a:hover {
  text-decoration: underline;
}
