/* =========================
   ベース
========================= */

*{
  box-sizing: border-box;
}


/* =========================
   スマホレイアウト（標準）
========================= */

.recruit-hero{
  padding: 20px 16px;
}

/*2_2_1*/
.card2_2_1{
	display: flex;
	flex-wrap: wrap;
}
.card2_2_1 ul{
}
.card2_2_1 li{
	width: 98%;
	margin: 1%;
}



/* =========================
  CTAボタン（新規）
========================= */

.btn-group{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ボタン本体 */
.cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  min-height: 44px;
  border: 2px solid #000;
  border-radius: 999px;
  background: #fff !important;
  color: #000 !important;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.3;
  transition: .2s;
}
.cta-btn:hover{
  background: #000 !important;
  color: #fff !important;
}
.card4_2{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:16px;
  padding:0;
  list-style:none;
}

/* カード */
.card4_2 li {
  width: calc(50% - 8px);
  background:#0ec000;
  color:#fff;
  font-weight:bold;
  text-align:center;
  border-radius:16px;

  /* ← ここが重要 */
  padding:6px 12px;
  min-height:96px;

  /* 中央揃えを安定させる */
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  line-height:1.4;
}
.info-dl{
  margin: 0;
}

.info-dl dt{
  font-weight: 700;
  margin-top: 18px;
  color: #333;
}

.info-dl dd{
  margin: 6px 0 0;
  padding: 12px 14px;
  background: #f3f1cf;   /* 薄いクリーム色 */
  border-radius: 8px;
  line-height: 1.7;
}

/*企業出店*/
.company-plan {
  padding: 50px 2%;
}

.section-title {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 30px;
}

.plan-wrap {
  display: grid;
  grid-template-columns: 1fr; /* ← スマホは縦並び */
  gap: 20px;
}

.plan-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.plan-card h3 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.price {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.catch {
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}
/* デフォルト＝スマホ → 非表示 */
.catch-pc {
  display: none;
}
.catch-sp {
  display: block;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-card li {
  padding: 10px 0;
  border-bottom: 1px dotted #ddd;
  font-size: 1.6rem;
}

/* プラン別アクセント */
.light { border-top: 6px solid #bbb; }
.standard { border-top: 6px solid #f2a900; }
.premium { border-top: 6px solid #c59b2d; }


/* ===== カートスマホ ===== */
/* 外側ラッパー */
.cart-wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.cart-pc{
	display: none;
}
.cart-sp{
	display: block;
}

/* script吐き出し要素の中央固定を無効化 */
.cart-card table,
.cart-card div{
  margin-left: auto !important;
  margin-right: auto !important;
}


/* =========================
   タブレット以上：2カラム化
========================= */
@media (min-width: 768px){
  .card2_2_1{
    display: flex;
    flex-wrap: wrap;
    align-items: center;   /* ← ここが正解 */
  }
.card2_2_1 li{
	width: 48%;
}
.logomark   { order: 1; }
.catch  { order: 2; }
.kaisaibi   { order: 4; }
.btn-group   { order: 3; }
.bosyu{ order: 5; }
	
 .btn-group{
    justify-content: center;
    gap: 16px;
  }	
.cta-btn{
    padding: 14px 22px;
  }	
.card4_2 li{
    width: calc(25% - 12px);
    min-height:110px;
}
  .info-dl{
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 16px 24px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .info-dl dt{
    margin: 0;
    text-align: right;
    padding-top: 12px;
  }

  .info-dl dd{
    margin: 0;
  }
h2{
font-size: 3.4rem;/*  */
	letter-spacing: 0.1em
}	
h3{
font-size: 2.6rem;/*  */
	letter-spacing: 0.1em
}
  .catch-pc {
    display: block;
  }
/*企業出店*/
  .company-plan {
    padding: 80px 5%;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 50px;
  }

  .plan-wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .price {
    font-size: 2rem;
  }

/*カートPC*/
 .cart-card{
  }
.cart-pc {
  display: block;
}
.cart-sp {
  display: none;
}
	
}



