@charset "utf-8";

/* =======================================
   recruit.css
   採用ページ（recruit.php）専用スタイル
   - hero は共通CSS / responsive.css 側を利用
   - 特徴（care_point / sec_point / point）
   - 数字でみる（.nummber）
   - 福利厚生（.benefit）
   - 募集職種（.jobtype）
   - 求人モーダル（.job-description）
   - 応募ボタン（.recruit_btn）
   ======================================= */


/*--------------------------------
  採用祝い金バナー（recruit-tokuten）
---------------------------------*/

#recruit .recruit-tokuten {
  width: 975px;
  max-width: calc(100% - 40px);
  margin: 60px auto 0;
  padding: 48px 40px;
  text-align: center;
  background: linear-gradient(135deg, #fdf7ea 0%, #fef9f0 100%);
  border: 2px solid #DDA848;
  border-radius: 20px;
}

#recruit .recruit-tokuten__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#recruit .recruit-tokuten__badge {
  display: inline-block;
  background: #DDA848;
  color: #fff;
  font-size: 0.82rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  padding: 6px 22px;
  border-radius: 999px;
  margin-bottom: 20px;
}

#recruit .recruit-tokuten__ttl {
  font-family: "kinuta-maruminold-stdn", serif;
  font-size: 1.75rem;
  color: #6D7B52;
  margin: 0 0 16px;
}

#recruit .recruit-tokuten__lead {
  font-size: 0.95rem;
  line-height: 2;
  color: rgba(0, 0, 0, 0.68);
  margin: 0 0 12px;
  max-width: 600px;
}

#recruit .recruit-tokuten__note {
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: rgba(0, 0, 0, 0.45);
  margin: 0 0 28px;
}

#recruit .recruit-tokuten__btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 18px 56px;
  border-radius: 5px;
  background-color: #DDA848;
  text-decoration: none;
  cursor: pointer;
  transition: ease 0.2s;
}

#recruit .recruit-tokuten__btn span {
  position: relative;
  z-index: 3;
  color: #fff;
  font-size: 1.0625rem;
}

#recruit .recruit-tokuten__btn.bgleft::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #00A63C;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
}

#recruit .recruit-tokuten__btn.bgleft:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

@media (max-width: 600px) {
  #recruit .recruit-tokuten {
    width: auto;
    max-width: none;
    margin: 10vw 5vw 0;
    padding: 7vw 5vw;
  }

  #recruit .recruit-tokuten__badge {
    font-size: 0.75rem;
    padding: 5px 16px;
    white-space: normal;
    word-break: break-word;
  }

  #recruit .recruit-tokuten__ttl {
    font-size: 1.2rem;
    word-break: break-word;
  }

  #recruit .recruit-tokuten__lead {
    font-size: 0.88rem;
    word-break: break-word;
    max-width: 100%;
  }

  #recruit .recruit-tokuten__note {
    font-size: 0.72rem;
    word-break: break-word;
    margin: 0 0 20px;
  }

  #recruit .recruit-tokuten__btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 16px 10px;
  }
}


/*--------------------------------
  特徴セクション（care_point / sec_point / point）
---------------------------------*/

#recruit .sec_point {
  position: relative;
  margin-top: 75px;
  margin-bottom: 123px;
}

#recruit .sec_point-img img {
  width: 100%;
}

#recruit img[alt="特徴-Point-"] {
  width: 18%;
  margin: 0 auto;
}

#recruit .point {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, auto);
  grid-template-areas:
    "h1-area"
    "h2-area"
    "h3-area";
    justify-content: center;
    text-align: center;
    margin-top: 16px;
}

#recruit .point h2 {
  grid-area: h1-area;
  margin: 0;
}

#recruit .point h3 {
  grid-area: h2-area;
  margin: 0;
}

#recruit .point h4 {
  grid-area: h3-area;
  font-family: "kinuta-maruminold-stdn", serif;
  color: #6D7B52;
  margin: 0.67em 0;
}

#recruit .point p {
  grid-area: text-area;
}


/*--------------------------------
  数字でみる（inc_nummber.php）
---------------------------------*/

 .nummber {
  width: 100%;
  padding: 100px 0;
  margin: 0 auto;
  border-radius: 34px;
  background-color: #C8D9C8;
}

 .nummber .nummber-ttl {
  width: 950px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
 .nummber .nummber-ttl h2 img{
    margin: 0 auto;
}

#nummber .service-container {
  grid-template-columns: repeat(3, 1fr) !important;
}

#nummber .service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #F8F8E6;
  border-radius: 17px;
  box-shadow: #00000029 0 3px 6px;
  padding: 28px 20px 24px;
  box-sizing: border-box;
}

#nummber .service-card .service-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

#nummber .service-card .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  border-radius: 0 !important;
}

.nummber-card-ttl {
  font-size: 1rem;
  font-weight: 700;
  color: #00A63C;
  text-align: center;
  margin: 16px 0 8px;
}

#nummber .service-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #4a4a4a;
  text-align: center;
  margin: 0;
}

/* グループ分け */
.nummber-group {
  width: 975px;
  max-width: calc(100% - 40px);
  margin: 56px auto 0;
  text-align: center;
}

.nummber-group-ttl {
  display: inline-block;
  background: #4a6c3f;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 7px 28px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  margin: 0 0 28px;
}

/* フィーチャードカード（税務調査是認・年間離職率） */
.nummber-featured {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
  background: rgba(255,255,255,0.55);
  border-radius: 20px;
  padding: 32px 36px;
  box-sizing: border-box;
  border: 1px solid rgba(74,108,63,0.18);
}

.nummber-featured .service-card {
  flex-shrink: 0;
  width: 300px;
}

.nummber-featured__body {
  flex: 1;
}

.nummber-featured__eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  color: #4a6c3f;
  letter-spacing: 0.1em;
  margin: 0 0 10px;
}

.nummber-featured__text {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #444;
  margin: 0 0 20px;
}

.nummber-featured__notice {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.nummber-featured__notice-fig {
  flex-shrink: 0;
  margin: 0;
}

.nummber-featured__notice-img {
  width: 180px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  display: block;
}

.nummber-featured__notice-fig figcaption {
  font-size: 0.75rem;
  color: #777;
  text-align: center;
  margin-top: 6px;
}

/* フィーチャードの後に続くグリッド */
#nummber .nummber-featured + .service-container {
  margin-top: 48px;
}

/* 1枚カード（有給消化率）中央配置 */
.nummber-solo {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.nummber-solo .service-card {
  width: 300px;
}

/* 年間離職率 比較バー */
.nummber-compare {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nummber-compare-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nummber-compare-label {
  width: 148px;
  flex-shrink: 0;
  color: #555;
  font-size: 0.82rem;
  line-height: 1.3;
}

.nummber-compare-track {
  flex: 1;
  height: 20px;
  background: rgba(0,0,0,0.08);
  border-radius: 4px;
  overflow: hidden;
}

.nummber-compare-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.8s ease;
}

.nummber-compare-fill--industry {
  width: 100%;
  background: #b0b0b0;
}

.nummber-compare-fill--gf {
  width: 8.6%;
  background: #00A63C;
}

.nummber-compare-value {
  width: 48px;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.9rem;
  color: #444;
}

.nummber-compare-value--gf {
  color: #00A63C;
}

/*--------------------------------
  福利厚生（benefit） - smart minimal
---------------------------------*/
#recruit .benefit {
  margin: 120px auto;
}
#recruit .benefit h2{
  margin-bottom: 60px;
}
#recruit .benefit h2 img{
  margin: 0 auto;
}

#recruit .benefit > p{
  width: 975px;
  max-width: 100%;
  margin: 0 auto 44px;
  line-height: 1.95;
  color: rgba(0,0,0,.72);
}

/* グリッド：詰めてスマートに */
#recruit .benefit-wrap{
  width: 975px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

/* カード：影を捨てて線を極細に */
#recruit .benefit-card{
  background: rgba(255,255,255,.32);
  border: 1px solid rgba(109,123,82,.14);
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: none;
}

/* hoverは“ほんの少し”だけ */
#recruit .benefit-card:hover{
  background: rgba(255,255,255,.46);
  border-color: rgba(109,123,82,.22);
}

/* ヘッダー：高さを低く、アイコンは控えめ */
/* ヘッダー帯 */
#recruit .b-card_head{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: -18px -18px 12px; /* カード端まで広げる */
  padding: 10px 16px;
  background: rgba(109,123,82,.10); /* ←薄いグリーン */
  border-bottom: 1px solid rgba(109,123,82,.12);
  border-radius: 16px 16px 0 0;
}



#recruit .b-card_icon{
  width: 32px;
  height: 32px;
  padding: 6px;
  background: rgba(109,123,82,.18);
  border-radius: 50%;
  opacity: 1;
}


/* 見出し：少しだけ強く、短く見せる */
#recruit .b-card_title{
  margin: 0;
  font-family: "kinuta-maruminold-stdn", serif;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: #5f6b48;
  line-height: 1.2;
}

/* 本文：小さめ・行間広めで“整理された感” */
#recruit .b-card_text{
  margin: 0;
  font-size: .92rem;
  line-height: 1.9;
  color: rgba(0,0,0,.70);
}

/* 箇条書き：カード内を“情報ブロック”として整える */
#recruit .b-card_list{
  margin: 0;
  padding-left: 0;
  list-style: none;
}

#recruit .b-card_list li{
  position: relative;
  padding-left: 14px;
  margin: 6px 0;
  font-size: .92rem;
  line-height: 1.85;
  color: rgba(0,0,0,.70);
}

#recruit .b-card_list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .78em;
  width: 6px;
  height: 1px;
  background: rgba(109,123,82,.65);
}

/* 注釈は一段落“別枠感” */
#recruit .b-card_note{
  margin: 12px 0 0;
  padding-top: 10px;
  border-top: 1px solid rgba(109,123,82,.10);
  font-size: .86rem;
  line-height: 1.8;
  color: rgba(0,0,0,.62);
}



/* SP */
@media (max-width: 768px){
  #recruit .benefit{
    margin: 14vw auto;
  }

  #recruit .benefit > p{
    width: 90vw;
    margin: 0 auto 7vw;
  }

  #recruit .benefit-wrap{
    width: 90vw;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #recruit .benefit-card{
    padding: 16px 14px 14px;
    border-radius: 14px;
  }

  #recruit .b-card_icon{
    width: 30px;
    height: 30px;
  }

  #recruit .b-card_title{
    font-size: 1rem;
  }

  #recruit .benefit-card--wide .b-card_list{
    grid-template-columns: 1fr;
  }

  #recruit .b-card_head {
    margin: -16px -14px 12px;
  }
}

/*--------------------------------
  募集職種一覧（jobtype）
---------------------------------*/

#recruit .jobtype {
  width: 975px;
  max-width: 100%;
  margin: 150px auto;
}

#recruit .job-ttl {
  text-align: center;
  margin-bottom: 40px;
}

#recruit .job-ttl h2 img {
  max-width: 100%;
}

#recruit .jobtype > h3 {
  margin: 40px 0 25px;
  font-size: 1.5rem;
  font-family: "kinuta-maruminold-stdn", serif;
  color: #6D7B52;
}

/* 数か所で使う recruit_bnr-img（上部画像） */

#recruit .recruit_bnr-img {
  width: 975px;
  max-width: 100%;
  margin: 0 auto 40px;
}

#recruit .recruit_bnr-img img {
  width: 100%;
}




/*--------------------------------
  モーダル共通（モーダルプラグイン前提）
---------------------------------*/

#recruit .hide-area {
  display: none;
}

/* モーダル close ボタン */

#recruit .modaal-close::after,
#recruit .modaal-close::before {
  background: #ccc;
}

#recruit .modaal-close:focus::after,
#recruit .modaal-close:focus::before,
#recruit .modaal-close:hover::after,
#recruit .modaal-close:hover::before {
  background: #666;
}


/*--------------------------------
  求人票レイアウト（job-description）
---------------------------------*/

#recruit .job-description dl {
  display: grid;
  grid-template-columns: 28% 72%;
  border-top: 2px solid #6D7B52;
  overflow: hidden;
  border-radius: 0 0 8px 8px;
}

/* 左ラベル列 */
#recruit .job-description .area-border {
  display: flex;
  align-items: flex-start;
  padding: 18px 14px;
  background: rgba(109, 123, 82, 0.07);
  border-bottom: 1px solid rgba(109, 123, 82, 0.2);
}

#recruit .job-description dt {
  font-family: "kinuta-maruminold-stdn", serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6D7B52;
  line-height: 1.6;
}

/* 右コンテンツ列 */
#recruit .job-description dd {
  display: block;
  margin: 0;
  padding: 18px 20px;
  color: #6D7B52;
  font-size: 0.92rem;
  line-height: 1.85;
  border-bottom: 1px solid rgba(109, 123, 82, 0.2);
}

#recruit .job-description dd p {
  margin: 0;
}

/*--------------------------------
  選考プロセス内 応募エリア（job-apply）
---------------------------------*/

#recruit .job-apply {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
}

#recruit .job-apply__badge {
  display: inline-block;
  background: #DDA848;
  color: #fff;
  font-size: 0.78rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 999px;
}

#recruit .job-apply p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.8;
  color: #6D7B52;
}

#recruit .job-apply__btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
  padding: 14px 40px;
  border-radius: 5px;
  background-color: #DDA848;
  text-decoration: none;
  cursor: pointer;
  transition: ease 0.2s;
}

#recruit .job-apply__btn span {
  position: relative;
  z-index: 3;
  color: #fff;
  font-size: 1rem;
}

#recruit .job-apply__btn.bgleft::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #00A63C;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
}

#recruit .job-apply__btn.bgleft:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

@media (max-width: 600px) {
  #recruit .job-apply__btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }
}


/* 求人票内リンク */

#recruit .job-description a {
  text-decoration: underline;
}

#recruit .job-description a:hover {
  color: #00A63C;
}

#recruit .job-description .job-apply__btn,
#recruit .job-description .job-apply__btn:hover {
  text-decoration: none;
}


/*--------------------------------
  応募ボタン（recruit_btn）
---------------------------------*/

#recruit .recruit_btn {
  position: relative;
  overflow: hidden;
  display: block;
  width: 30%;
  margin: 5vw auto;
  padding: 20px 10px;
  text-align: center;
  border: none;
  border-radius: 5px;
  background-color: #DDA848;
  text-decoration: none;
  cursor: pointer;
  transition: ease 0.2s;
}

#recruit .recruit_btn span {
  position: relative;
  z-index: 3;
  color: #fff;
  font-size: 1.0625rem;
}

/* 背景が左から右へ流れるエフェクト */

#recruit .recruit_btn.bgleft::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #00A63C;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
}

#recruit .recruit_btn.bgleft:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}


/* =======================================
   スマホ（max-width:600px）
   ======================================= */

@media (max-width: 600px) {

  /* 特徴セクション */

  #recruit .sec_point {
    margin-top: 10vw;
    margin-bottom: 10vw;
  }

  #recruit .point {
    width: 90vw;
    margin: 0 auto;
    grid-template-columns: 90vw;
    grid-template-rows: auto;
    grid-template-areas:
      "h1-area"
      "img-area"
      "h2-area"
      "h3-area"
      "text-area";
    margin: 5vw auto;
    grid-row-gap: 2vw;
    align-items: center;
  }

  #recruit .sec_point-img {
    width: 90vw;
    margin: 0 auto 5vw;
  }

  #recruit img[alt="特徴-Point-"] {
    width: 27vw;
  }


  /* 数字でみる */

.nummber {
    padding: 12vw 0;
    border-radius: 20px;
  }

.nummber .nummber-ttl {
    width: 90vw;
  }
.nummber .nummber-ttl h2 img{
    width: 30%;
}

.nummber-group {
  max-width: 90vw;
  margin: 8vw auto 0;
}

/* 3列グリッド → 1列に切り替え（2列だと180px画像がはみ出るため） */
#nummber .service-container {
  grid-template-columns: 1fr !important;
}

/* グリッドカードを有給消化率カードと同じ幅感に揃える */
#nummber .service-container .service-card {
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
}

.nummber-featured {
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  padding: 24px 28px;
}

.nummber-featured .service-card {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 24px 28px;
}

/* フィーチャード本文は左揃え */
.nummber-featured__body {
  text-align: left;
  min-width: 0;
}

/* responsive.css の p { width: 90vw } を打ち消す */
.nummber-featured__body p {
  width: auto;
  margin: 0;
}

.nummber-solo {
  width: 100%;
  margin-bottom: 6vw;
}

.nummber-solo .service-card {
  width: 100%;
  max-width: 300px;
}

.nummber-compare-label {
  width: 100px;
  font-size: 0.78rem;
}

.nummber-featured__notice {
  flex-direction: column;
}

.nummber-featured__notice-img {
  width: 100%;
  max-width: 240px;
}


  /* 福利厚生 */
  #recruit .benefit{
    margin: 14vw auto;
  }

  #recruit .benefit > p{
    width: 90vw;
    margin: 0 auto 7vw;
  }

  #recruit .benefit-wrap{
    width: 90vw;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #recruit .benefit-card{
    padding: 16px 14px 14px;
    border-radius: 14px;
  }

  #recruit .b-card_icon{
    width: 30px;
    height: 30px;
  }

  #recruit .b-card_title{
    font-size: 1rem;
  }

  #recruit .benefit-card--wide .b-card_list{
    grid-template-columns: 1fr;
  }

  /* responsive.css の p { width: 90vw } がカード内に適用されてはみ出すのを打ち消す */
  #recruit .b-card_text,
  #recruit .b-card_note {
    width: auto;
    margin: 0;
  }



  /* 募集職種 */

  #recruit .jobtype {
    width: 90vw;
    margin: 15vw auto;
  }

  #recruit .recruit_bnr-img {
    width: 90vw;
    margin-bottom: 8vw;
  }

  #recruit .job-ttl h2 img {
    width: 45%;
  }

  #recruit .jobtype > h3 {
    font-size: 1.25rem;
  }

  /* SP: 募集職種 リスト表示 */
  #recruit .jobtype .service-container {
    grid-template-columns: 1fr !important;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(109, 123, 82, 0.22);
  }

  #recruit .jobtype .service-card {
    border-radius: 0;
    box-shadow: none;
    background: #fff;
    padding: 0;
    border-bottom: 1px solid rgba(109, 123, 82, 0.12);
  }

  #recruit .jobtype .service-card:last-child {
    border-bottom: none;
  }

  #recruit .jobtype .info {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    text-decoration: none;
  }

  #recruit .jobtype .info::after {
    content: "›";
    margin-left: auto;
    font-size: 1.6rem;
    line-height: 1;
    color: #6D7B52;
    flex-shrink: 0;
  }

  #recruit .jobtype .service-img {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
  }

  #recruit .jobtype .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #recruit .jobtype .service-card p {
    width: auto;
    margin: 0;
    font-size: 0.875rem;
    text-align: left;
    line-height: 1.45;
    color: #333;
  }

  .service-container {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  #care .service-container {
    width: 100%;
    grid-auto-rows: auto;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px;
    margin-top: 30px;
  }
  /* スマホで3列にしたくなければ 1列に変更してOK
     grid-template-columns: 1fr; に変えるだけ
  */

  .service-card p {
    font-size: 3.4vw;
    width: auto;
  }


  /* モーダル */

  .modaal-container {
    max-width: calc(100vw - 40px);
    overflow: hidden;
  }

  /* modaalはbody直下にDOMを移動するため #recruit なしで指定 */
  .job-description {
    width: 100%;
    overflow: hidden;
  }

  .job-description dl {
    grid-template-columns: 1fr;
  }

  .job-description .area-border {
    padding: 12px 14px 6px;
    border-bottom: none;
  }

  .job-description dt {
    font-size: 0.85rem;
    word-break: break-word;
  }

  .job-description dd {
    padding: 6px 14px 16px;
    font-size: 0.88rem;
    line-height: 1.75;
    word-break: break-word;
  }


  /* 応募ボタン */

  #recruit .recruit_btn {
    width: 80vw;
    margin: 10vw auto 0;
  }
}
/* =========================
  Certifications Section
  ========================= */
  .certs {
    --bg: #0b1220;
    --panel: rgba(255, 255, 255, 0.08);
    --panel2: rgba(255, 255, 255, 0.10);
    --text: rgba(255, 255, 255, 0.92);
    --muted: rgba(255, 255, 255, 0.68);
    --line: rgba(255, 255, 255, 0.14);
    --accent: #8bd5ff;
    background: #C8D9C8;
    color: var(--text);
    padding: clamp(40px, 4vw, 72px) 16px;
    border-radius: 34px;
    width: 100%;
    margin: 120px 0;
  }
  
  .certs__inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .certs__head {
    max-width: 720px;
    margin: 0 0 28px 0;
    height: auto;
    gap: 16px;
  }
  
  .certs__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 10px;
  }
  
  .certs__eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--line);
  }
  
  .certs__title {
    font-size: clamp(22px, 2.4vw, 30px);
    margin: 0 0 10px;
    letter-spacing: 0.02em;
  }
  
  .certs__lead {
    margin: 0;
    line-height: 1.9;
  }
  
  .certs__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
  }
  
  .certCard {
    grid-column: span 12;
    background: var(--color-bg);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px 18px 16px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
  }
  
  .certCard:hover {
    transform: translateY(-3px);
  }
  
  /* フィーチャーカード（えるぼし）：常に横幅100% */
  .certCard--featured {
    grid-column: 1 / -1;
  }

  /* タブレット以上：左にロゴ・右にテキストの2カラム構成 */
  @media (min-width: 720px) {
    .certCard { grid-column: span 6; }
    .certCard--featured {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: 220px 1fr;
      column-gap: 40px;
      align-items: start;
    }
    .certCard--featured .certCard__top {
      grid-column: 1;
      grid-row: 1;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 16px;
      margin-bottom: 0;
    }
    .certCard--featured .certCard__logo {
      width: 100%;
      max-width: 100%;
    }
    .certCard--featured .certCard__body {
      grid-column: 2;
      grid-row: 1;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .certCard--featured .certCard__title {
      font-size: 20px;
      margin-bottom: 0;
    }
    .certCard--featured .certCard__desc {
      font-size: 15px;
      margin-bottom: 0;
    }
  }
  @media (min-width: 1024px) {
    .certCard { grid-column: span 4; }
    .certCard--featured {
      grid-column: 1 / -1;
      grid-template-columns: 280px 1fr;
    }
    .certCard--featured .certCard__title {
      font-size: 22px;
    }
  }

  /* 評価基準リスト */
  .certCard__criteria {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .certCard__criteria li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text);
    line-height: 1.6;
  }

  .certCard__criteria-label {
    flex-shrink: 0;
    width: 110px;
    text-align: center;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--color-main);
    color: #fff;
    letter-spacing: 0.04em;
  }
  
  .certCard__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
  }
  
  .certCard__logo {
    width: 160px;
    max-width: 65%;
    padding: 10px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.80);
    box-shadow: 5px 5px 5px rgba(0,0,0,.1);
    display: grid;
    place-items: center;
  }
  
  .certCard__logo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
  }
  
  .certCard__badge {
    font-size: 12px;
    line-height: 1;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--color-main);
    color: rgba(255, 255, 255, 0.86);
    white-space: nowrap;
  }
  
  .certCard__badge--soft {
    background: var(--color-main);
    border-color: rgba(139, 213, 255, 0.25);
  }
  
  .certCard__title {
    margin: 0 0 8px;
    font-size: 16px;
    letter-spacing: 0.02em;
  }
  
  .certCard__desc {
    margin: 0 0 12px;
    color: var(--color-text);
    line-height: 1.85;
    font-size: 14px;
    width: 100%;
  }
  
  .certCard__link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--color-text);
    text-decoration: none;
    font-size: 14px;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(139, 213, 255, 0.35);
  }
  
  .certCard__link:hover {
    color: var(--color-main);
    border-bottom-color: var(--color-main);
  }
  
  .certs__note {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 12px;
  }
  