/* =========================================================
   Wonderful Life Recruit LP
   Scope: body.wl-lp / body.wl-recruit-lp
   Structure:
   1) PC / Base (default)
   2) Tablet (<= 1024px)
   3) SP (<= 767px)
========================================================= */

/* =========================================================
  1) PC / Base (default)
========================================================= */

/* --- Base Reset & Variables --- */
:root{
  --primary-color: #d4a024;
  --accent-color: #444488;
  --title-color: #997755;
  --text-color: #333333;
  --light-bg: #f4f7fa;
  --white: #ffffff;
  --font-main: 'Noto Sans JP', sans-serif;
  --wl-frame-w: 1300px;
}

*{ box-sizing: border-box; margin: 0; padding: 0; }

html{ scroll-behavior: smooth; }

body.wl-lp{
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.8;
  background: var(--white);
  font-size: 16px;
  letter-spacing: 0.05em;
}

body.wl-lp a{ text-decoration: none; color: inherit; }
body.wl-lp ul{ list-style: none; }
body.wl-lp img{ height: auto; }

/* --- Layout --- */
body.wl-lp .container{
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

body.wl-lp .section{ padding: 64px 0; }
body.wl-lp .text-center{ text-align: center; }
body.wl-lp .bg-gray{ background: var(--light-bg); }

/* Anchor scroll offset */
body.wl-lp :where(section, div, h2, h3)[id]{ scroll-margin-top: 120px; }

/* --- Section Title --- */
body.wl-lp .section-title,
body.wl-lp .section-title--decorated{
  font-size: 2.4rem;
  text-align: center;
  color: var(--title-color);
  margin-bottom: 50px;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

body.wl-lp .section-title::after{
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 15px auto 0;
}

body.wl-lp .section-title.section-title--small{
  font-size: 1.6rem;
  margin-bottom: 5px;
  padding-bottom: 0;
  padding-top: 10px;
}

/* =========================
   Header (統合版 / 後勝ちをベース)
========================= */
body.wl-lp #wlHeader{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 2000;

  background: rgba(255,255,255,1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  /* 現行CSSでは後勝ちで 15px が効いていたのでベースはこれ */
  padding: 15px 0;

  transition: background-color .25s ease, box-shadow .25s ease, padding .25s ease;
  will-change: background-color, box-shadow, padding;
  transform: translateZ(0);
}

body.wl-lp #wlHeader.is-scrolled{
  background: rgba(255,255,255,1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 12px 0;
}

body.wl-lp .wl-header__inner{
  margin: 0 auto;
  padding: 0 24px;
  max-width: 1200px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
body.wl-lp .wl-header__logo{ flex: 0 0 auto; }

body.wl-lp .wl-header__logo img{
  display: block;
  width: min(300px, 34vw);
  height: auto;
  transition: transform .25s ease;
  transform-origin: left center;
}

body.wl-lp #wlHeader.is-scrolled .wl-header__logo img{
  transform: scale(0.82);
}

/* ENTRY button (base) */
body.wl-lp .wl-header__entry{
  position: static;
  transform: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 180px;
  height: 44px;
  padding: 0 18px;
  border-radius: 6px;

  background: #333333;
  color: #d4a024;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-decoration: none;

  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

body.wl-lp .wl-header__entry:hover{
  background: #222;
  color: #fff;
}

/* Nav */
body.wl-lp .wl-header__nav{
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;

  /* PC/Tabletは後段の(min-width:768)で横並びにする */
  flex-direction: column;
  gap: 10px;
}

body.wl-lp .wl-header__link{
  position: relative;
  display: inline-flex;
  align-items: center;

  color: #111;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  padding: 2px 0 10px;
}

/* =========================
   Hero
========================= */
body.wl-lp .hero{
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 120px 0 90px;
  margin-top: 0;

  text-align: center !important;
}

body.wl-lp .hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/bk_top_pc.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  transform: scale(1.05);
  transform-origin: center;
  animation: heroZoom 12s ease-out forwards;
  z-index: 0;
}

body.wl-lp .hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1;
}

body.wl-lp .hero > .container{
  position: relative;
  z-index: 2;
  padding-top: 120px; /* ヘッダー被り回避 */
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

@keyframes heroZoom{
  from{ transform: scale(1.05); }
  to  { transform: scale(1.18); }
}

body.wl-lp .hero h1{
  font-size: 4.2rem;
  line-height: 1.4;
  margin-bottom: 30px;
  font-weight: 700;

  background: linear-gradient(90deg,#ff5bbd 0%,#5f8dff 45%,#47d6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;

  margin-left: auto;
  margin-right: auto;
}

body.wl-lp .hero p{
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 400;

  margin-left: auto;
  margin-right: auto;
}

body.wl-lp .hero .highlight{
  font-size: 1.2rem;
  font-weight: 400;
  color: #ffffff;
  display: block;
  margin-top: 35px;
  padding: 0 20px;
  line-height: 1.8;

  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
body.wl-lp .cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 360px;
  padding: 16px 0;

  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.08em;

  background: var(--primary-color);
  color: #fff;
  border: 2px solid var(--primary-color);

  transition: background-color .25s ease, color .25s ease, transform .2s ease;

  position: relative;
  overflow: hidden;
  isolation: isolate;
}

body.wl-lp .cta-btn:active{ transform: scale(0.98); }

/* ヘッダー以外のボタンにだけキラッ */
@keyframes wl-sheen{
  0%   { transform: translateX(-140%) skewX(-20deg); }
  100% { transform: translateX(340%)  skewX(-20deg); }
}

body.wl-lp .cta-btn::before{
  content: "";
  position: absolute;
  top: -20%;
  left: -60%;
  width: 45%;
  height: 140%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0) 100%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}

body.wl-lp .cta-btn:hover::before{
  opacity: 1;
  animation: wl-sheen 0.65s ease-in-out;
}

body.wl-lp .cta-btn--hero{
  font-size: 1rem;
  padding: 15px 40px;
  margin-top: 40px;
}

/* =========================
   Problem
========================= */
body.wl-lp .problem-box{
  background: #fff;
  border: 1px solid #ddd;
  padding: 48px 40px;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

body.wl-lp .problem-solution{
  margin-top: 40px;
  font-size: 1.1em;
  font-weight: 400;
  color: var(--text-color);
}

/* Problem cards（LP専用なので recruit-lp に閉じる） */
body.wl-recruit-lp .problem-cards{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 26px;
  max-width: 95%;
  margin-inline: auto;
}
body.wl-recruit-lp .problem-cards .problem-card:last-child{ grid-column: 1 / 2; }

body.wl-recruit-lp .problem-card{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border-radius: 10px;
  padding: 18px 16px;
  box-shadow: 0 8px 18px rgba(0,0,0,.10);
}

body.wl-recruit-lp .problem-card__icon{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 22px;
  background: var(--primary-color);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  margin-top: 2px;
}

body.wl-recruit-lp .problem-card__title{
  margin: 0 0 4px;
  font-weight: 800;
  color: var(--primary-color);
  font-size: 18px;
  line-height: 1.35;
}

body.wl-recruit-lp .problem-card__text{
  margin: 0;
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.55;
}

/* =========================
   Company Table
========================= */
body.wl-lp .company-meta__title{
  padding: 10px 5px;
  font-size: 1.2rem;
  font-weight: 700;
}
body.wl-lp .company-meta{ display: block; margin-bottom: 40px; }
body.wl-lp .company-meta-under{ text-align: center; }
body.wl-lp .company-meta-under p{ font-size: 1.1rem; line-height: 2; }

body.wl-lp .company-table{
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
}

body.wl-lp .company-table th,
body.wl-lp .company-table td{
  border-bottom: 1px solid #eee;
  padding: 15px 10px;
  text-align: left;
  font-size: 1.1rem;
}

body.wl-lp .company-table th{
  width: 30%;
  color: var(--text-color);
  font-weight: 500;
  vertical-align: top;
}

body.wl-lp .company-table strong{
  color: var(--title-color);
  font-weight: 400;
  display: inline-block;
  margin-top: 14px;
}

/* =========================
   Logo Frame
========================= */
body.wl-lp .wl-logoFrame{
  margin: 26px auto 20px;
  max-width: var(--wl-frame-w);
  width: 100%;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  padding: 22px 18px 40px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.04);
}

body.wl-lp .wl-logoFrame__sub{
  margin-top: -6px;
  text-align: center;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--title-color);
  opacity: 0.9;
}

body.wl-lp .wl-logoFrame__lead{
  margin: 16px auto 0;
  max-width: 860px;
  text-align: center;
  line-height: 2.0;
  font-size: 1.1rem;
  color: var(--text-color);
}

body.wl-lp .wl-logoFrame__leadStrong{
  display: inline-block;
  font-weight: 700;
  color: var(--text-color);
  font-size: 1.1rem;
}

body.wl-lp .wl-logoGroups{
  margin-top: 18px;
  display: grid;
  gap: 18px;
}

body.wl-lp .wl-logoGroup__title{
  margin: 0 30px 20px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--title-color);
  text-align: left;
  padding-left: 14px;
  border-left: 4px solid var(--primary-color);
  padding-top: 6px;
  padding-bottom: 6px;
}

body.wl-lp .wl-logos{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

body.wl-lp .wl-logoItem{
  border: none;
  background: transparent;
  height: 60px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

body.wl-lp .wl-logoItem img{
  transform: scale(1.2);
  transform-origin: center;
  max-height: 60px;
  max-width: 100%;
  opacity: 0.95;
}

/* =========================
   Insight Block (旧 pie-chart + legend)
   ※ ここは残しておく（コメントアウトを復活しても壊れない）
========================= */
body.wl-lp .wl-insightBlock{
  margin: 22px auto 0;
  max-width: var(--wl-frame-w);
  width: 100%;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  padding: 26px 18px 22px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.04);
  display: block;
}

body.wl-lp .wl-insightBlock__frameTitle{
  text-align: center;
  margin-bottom: 18px;
}

body.wl-lp .wl-insightBlock__figure{
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  align-items: center;
  gap: 28px;
  margin-top: 18px;
}

body.wl-lp .pie-chart{
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: conic-gradient(#8ab6e9 0% 62.9%,#4a90e2 62.9% 72.6%,#005bb5 72.6% 89.6%,#8e44ad 89.6% 98.6%,#e67e22 98.6% 100%);
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transform: scale(0.8) rotate(-90deg);
  transition: all 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

body.wl-lp .pie-chart.is-visible{
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

body.wl-lp .chart-text{
  position: absolute;
  z-index: 10;
  width: 140px;
  height: 140px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--text-color);
  line-height: 1.4;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);

  transform: scale(0);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: 0.6s;
}
body.wl-lp .pie-chart.is-visible .chart-text{ transform: scale(1); }

body.wl-lp .chart-legend{
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
  color: #333;
  font-size: 1rem;
  line-height: 1.9;
}

body.wl-lp .chart-legend li{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

body.wl-lp .wl-insightBlock__text{ width: 100%; margin-top: 22px; }

body.wl-lp .wl-insightBlock__note{
  max-width: 920px;
  margin: 0 auto;
  padding-top: 30px;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 30px;
  line-height: 2;
  text-align: left;
  font-size: 1.1rem;
  color: var(--text-color);
}

/* =========================
   Mission / Vision / Message
========================= */
body.wl-lp .mission-box,
body.wl-lp .vision-box{
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

body.wl-lp .message-box{
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

body.wl-lp .mission-title,
body.wl-lp .vision-title{
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--text-color);
}

body.wl-lp .mission-box p,
body.wl-lp .vision-box p,
body.wl-lp .message-box p{
  font-size: 1.1rem;
  line-height: 2;
  margin-bottom: 30px;
  font-weight: 400;
}

body.wl-lp .message-box span{
  font-weight: 700;
}

body.wl-lp .vision-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

body.wl-lp .vision-card{
  background: var(--white);
  padding: 30px;
  border-top: 4px solid var(--primary-color);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

body.wl-lp .vision-card h3{
  color: var(--text-color);
  margin-bottom: 15px;
  font-size: 1.1rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

body.wl-lp .vision-card ul li{
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  font-size: 1.1rem;
  color: var(--text-color);
}
body.wl-lp .vision-card ul li::before{
  content: "・";
  position: absolute;
  left: 0;
}

/* Vision 強調 */
body.wl-lp .vision-emphasis{
  max-width: 900px;
  margin: 60px auto 0;
  text-align: center;
}
body.wl-lp .vision-emphasis__lead{
  font-size: 1.1rem;
  line-height: 2;
  font-weight: 400;
  color: var(--text-color);
  margin: 0;
}
body.wl-lp .vision-emphasis__lead > span,
body.wl-lp .vision-emphasis__sub{
  display: block;
  margin-top: 24px;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 2;
  color: var(--text-color);
}

/* Vision 見出しデザイン */
/*
body.wl-lp .vision-title{
  max-width: 980px;
  margin: 0 auto 36px;
  color: var(--primary-color);
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.03em;
  font-size: clamp(22px, 2.2vw, 34px);
}
*/
/* Vision 写真カード（スコープを閉じる） */
body.wl-recruit-lp .vision-photoGrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 32px 0;
}

body.wl-recruit-lp .vision-photoCard{
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

body.wl-recruit-lp .vision-photoCard::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

body.wl-recruit-lp .vision-photoCard--01{ background-image: url("../images/pic_vision01.jpg"); }
body.wl-recruit-lp .vision-photoCard--02{ background-image: url("../images/pic_vision02.jpg"); }
body.wl-recruit-lp .vision-photoCard--03{ background-image: url("../images/pic_vision03.jpg"); }

body.wl-recruit-lp .vision-photoText{
  position: absolute;
  top: 2px;
  left: 2px;
  padding: 0 8px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  z-index: 2;
}

/* =========================
   Need chart（新ドーナツ：JS連動）
========================= */
body.wl-recruit-lp .wl-needLayout{
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  gap: 32px;
  align-items: center;
}

body.wl-recruit-lp .wl-needContent .section-title{
  text-align: left;
  margin-bottom: 14px;
  padding-left: 5%;
}
body.wl-recruit-lp .wl-needContent .wl-insightBlock__note{
  margin: 0;
  line-height: 2;
}

body.wl-recruit-lp .wl-needChartWrap{
  display: flex;
  justify-content: center;
}

body.wl-recruit-lp .wl-needChart{
  --wl-sweep: 0turn;
  width: min(330px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  position: relative;
  overflow: visible;
  background: none;
  box-shadow: none;
}

body.wl-recruit-lp .wl-needChart::after{
  content:"";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: conic-gradient(#ffe56f 0 62.9%, #ffb4f2 62.9% 100%);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  z-index: 0;
  pointer-events: none;
}

@supports ((mask-image: conic-gradient(#000 0turn, transparent 0turn)) or (-webkit-mask-image: conic-gradient(#000 0turn, transparent 0turn))){
  body.wl-recruit-lp .wl-needChart::after{
    -webkit-mask-image: conic-gradient(#000 0 var(--wl-sweep), transparent 0);
    mask-image: conic-gradient(#000 0 var(--wl-sweep), transparent 0);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }
}

body.wl-recruit-lp .wl-needChart::before{
  content:"";
  position: absolute;
  inset: 36%;
  background: #fff;
  border-radius: 999px;
  z-index: 1;
  pointer-events: none;
}

body.wl-recruit-lp .wl-needCenter{
  position: absolute;
  inset: 22%;
  display: grid;
  place-content: center;
  text-align: center;
  z-index: 3;
}
body.wl-recruit-lp .wl-needYear{
  font-weight: 800;
  font-size: 14px;
  color: #123a63;
}
body.wl-recruit-lp .wl-needPeriod{
  margin-top: 4px;
  font-size: 12px;
  color: #666;
}

body.wl-recruit-lp .wl-needLabel{
  position: absolute;
  z-index: 3;
  max-width: 220px;
  line-height: 1.2;
}
body.wl-recruit-lp .wl-needLabel__title{
  font-size: 0.6rem;
  color: var(--accent-color);
  font-weight: 700;
}
body.wl-recruit-lp .wl-needLabel__num{
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--accent-color);
}

body.wl-recruit-lp .wl-needLabel--main{
  right: -13px;
  top: 60%;
  transform: translateY(-50%);
  text-align: left;
}
body.wl-recruit-lp .wl-needLabel--sub{
  left: -6px;
  top: 24%;
  text-align: left;
}

/* pop animation */
body.wl-recruit-lp .wl-needChart::before,
body.wl-recruit-lp .wl-needCenter,
body.wl-recruit-lp .wl-needLabel{
  opacity: 0;
  transform: scale(.96);
}
body.wl-recruit-lp .wl-insightBlock.is-pop .wl-needChart::before,
body.wl-recruit-lp .wl-insightBlock.is-pop .wl-needCenter,
body.wl-recruit-lp .wl-insightBlock.is-pop .wl-needLabel{
  animation: wlNeedPop 360ms cubic-bezier(.2,1.1,.2,1) both;
}
@keyframes wlNeedPop{
  from{ opacity: 0; transform: scale(.96); }
  to  { opacity: 1; transform: scale(1); }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce){
  body.wl-recruit-lp .wl-needChart{ --wl-sweep: 1turn; }
  body.wl-recruit-lp .wl-needChart::after{
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
  body.wl-recruit-lp .wl-needChart::before,
  body.wl-recruit-lp .wl-needCenter,
  body.wl-recruit-lp .wl-needLabel{
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* =========================
   Interview（スコープ漏れ防止）
========================= */
body.wl-lp .interview-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

body.wl-lp .interview-card{
  position: relative;
  width: 100%;
  padding: 0;
  border: 1px solid #e6e6e6;
  background: #fff;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
  transition: transform .15s ease, box-shadow .15s ease;

  display: flex;
  flex-direction: column;
}

body.wl-lp .interview-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,.12);
}

body.wl-lp .interview-image{
  margin: 0;
  padding: 0;
  line-height: 0;
  height: 260px;
  overflow: hidden;
  flex: 0 0 auto;
}
body.wl-lp .interview-image img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

body.wl-lp .interview-body{
  padding: 26px 20px 28px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

body.wl-lp .interview-title{
  margin: 0 0 14px;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  color: #0aa0b7;
}

body.wl-lp .interview-pos,
body.wl-lp .interview-name,
body.wl-lp .interview-meta{
  margin: 0;
  text-align: center;
}
body.wl-lp .interview-pos{ margin-top: 6px; font-weight: 700; }
body.wl-lp .interview-name{
  margin-top: auto; /* 下寄せ */
  font-size: 18px;
  font-weight: 700;
}
body.wl-lp .interview-meta{ margin-top: 6px; color: #9a7a62; font-weight: 400; }

body.wl-lp .interview-pos:empty{ display: none; }

body.wl-lp .interview-tag{
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  border-radius: 4px;
  z-index: 3;
}
body.wl-lp .interview-tag--pink{ background:#cc49b6; }
body.wl-lp .interview-tag--green{ background:#3aa656; }

body.wl-lp .interview-new{
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #2db7d1;
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  z-index: 3;
}

body.wl-lp .interview-arrow{
  position: absolute;
  right: 18px;
  bottom: 18px;
  font-size: 22px;
  color: #222;
  opacity: .7;
}

/* Modal（JS: .is-open / body.interview-lock） */
body.wl-lp .interview-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
body.wl-lp .interview-modal.is-open{ display: block; }

body.wl-lp .interview-modal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
}

body.wl-lp .interview-modal__panel{
  position: relative;
  width: min(980px, calc(100% - 80px));
  max-height: calc(100vh - 80px);
  margin: 40px auto;
  background: #fff;
  overflow: auto;
  border-radius: 6px;
}

body.wl-lp .interview-modal__close{
  position: absolute;
  top: 12px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
  line-height: 44px;
}

body.wl-lp .interview-modal__content{ padding: 44px 44px 40px; }

body.wl-lp .interview-modal__headline{
  margin: 0 0 18px;
  text-align: center;
  color: #0aa0b7;
  font-size: 28px;
  line-height: 1.45;
  font-weight: 900;
}

body.wl-lp .interview-modal__center{
  text-align: center;
  padding: 12px 0 10px;
}

body.wl-lp .interview-modal__photo{
  width: 320px;
  max-width: 100%;
  margin: 0 auto 10px;
}
body.wl-lp .interview-modal__photo img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

body.wl-lp .interview-modal__pos{ margin: 6px 0 0; font-weight: 800; }
body.wl-lp .interview-modal__name{
  margin: 6px 0 0;
  font-weight: 900;
  font-size: 20px;
  color: #0aa0b7;
}
body.wl-lp .interview-modal__en{
  margin: 4px 0 0;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .08em;
  color: #0aa0b7;
}
body.wl-lp .interview-modal__meta{
  margin: 6px 0 0;
  font-weight: 800;
  color: #2db7d1;
  font-size: 12px;
}

body.wl-lp .interview-modal__title{
  margin: 56px 0 40px;
  text-align: center;
}
body.wl-lp .interview-modal__title p{
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

body.wl-lp .interview-modal__text{ margin-bottom: 32px; }
body.wl-lp .interview-modal__text p{
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 2;
  color: #333;
}
body.wl-lp .interview-modal__text p:last-child{ margin-bottom: 0; }
body.wl-lp .interview-modal__text p:first-child{
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #0aa0b7;
}

/* scroll lock */
body.interview-lock{ overflow: hidden; }

/* =========================
   Recruit Table
========================= */
body.wl-lp .recruit-meta{ display: block; margin-bottom: 40px; }

body.wl-lp .recruit-table{
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 1.1rem;
}

body.wl-lp .recruit-table th{
  background: var(--title-color);
  color: #fff;
  padding: 15px;
  width: 30%;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  text-align: center;
}
body.wl-lp .recruit-table td{
  padding: 15px 20px;
  border-bottom: 1px solid #ddd;
}
body.wl-lp .recruit-table tr:last-child td{ border-bottom: none; }

/* =========================
   FAQ
========================= */
body.wl-lp .faq-item{
  background: #fff;
  margin-bottom: 15px;
  border: 1px solid #eee;
  border-radius: 5px;
  transition: all 0.3s;
}

body.wl-lp .faq-q{
  padding: 15px 20px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-color);
  background: #fdfdfd;
  cursor: pointer;
  position: relative;
  padding-right: 50px;
  user-select: none;
}

body.wl-lp .faq-q::before{ content: 'Q. '; color: var(--title-color); font-size: 1.1rem; }

body.wl-lp .faq-q::after{
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  font-weight: 400;
}

body.wl-lp .faq-item.active .faq-q::after{ transform: translateY(-50%) rotate(45deg); }

body.wl-lp .faq-a{
  display: none;
  padding: 15px 20px;
  border-top: 1px solid #eee;
  line-height: 1.6;
  background: #fff;
  animation: fadeIn 0.3s ease;
}
body.wl-lp .faq-a::before{ content: 'A. '; font-weight: bold; margin-right: 5px; }
body.wl-lp .faq-item.active .faq-a{ display: block; }

@keyframes fadeIn{
  from{ opacity: 0; transform: translateY(-5px); }
  to  { opacity: 1; transform: translateY(0); }
}

/* =========================
   CTA section
========================= */
body.wl-lp .cta-section{
  background: rgba(255,255,255,0.4);
  color: var(--text-color);
  text-align: center;
  padding: 80px 20px;
}

body.wl-lp .cta-lead{
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
}

body.wl-lp .cta-lead--accent{
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 700;
  color: var(--title-color);
}

/* =========================
   Scroll Animation
========================= */
body.wl-lp .animate-up{
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
body.wl-lp .animate-up.is-visible{ opacity: 1; transform: translateY(0); }

body.wl-lp .hero-anim{
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 1s ease-out forwards;
}
body.wl-lp .delay-100{ animation-delay: 0.2s; }
body.wl-lp .delay-300{ animation-delay: 0.5s; }
body.wl-lp .delay-500{ animation-delay: 0.8s; }

@keyframes heroFadeIn{
  to{ opacity: 1; transform: translateY(0); }
}

/* =========================
   ToTop button
========================= */
body.wl-lp .wl-toTop{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #f3f3f3;
  color: #111;
  cursor: pointer;

  display: grid;
  place-items: center;

  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;

  transition: opacity .25s ease, transform .25s ease, background-color .2s ease;
  z-index: 99999;
  -webkit-tap-highlight-color: transparent;
}

body.wl-lp .wl-toTop span{
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
  transform: translateY(-1px);
}
body.wl-lp .wl-toTop:hover{ background: #fff; }
body.wl-lp .wl-toTop.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* =========================
   LP背景 / 装飾H2
========================= */
body.wl-recruit-lp{
  background-image: url("../images/body-bg.gif");
  background-repeat: repeat;
}

body.wl-recruit-lp .section.bg-gray{
  background: rgba(255,255,255,0.4);
}

/* 下線を無効化（Recruit LP） */
body.wl-recruit-lp h2::after,
body.wl-recruit-lp .section-title::after{
  content: none;
}

/* Decorated H2 */
body.wl-recruit-lp h2.section-title--decorated{
  position: relative;
  text-align: center;
  padding: 0.4em 0 1.8em;
}

body.wl-recruit-lp h2.section-title--decorated::before{
  content: attr(data-en);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--title-color);
  pointer-events: none;
}

body.wl-recruit-lp h2.section-title--decorated::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.6em;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--title-color);
  pointer-events: none;
}

/* =========================
   Footer（テンプレfooter.phpに合わせる）
========================= */
body.wl-recruit-lp .wl-footer{
  padding: 40px 0 24px;
  text-align: center;
}

body.wl-recruit-lp .wl-footer__logo{
  margin-bottom: 16px;
}

body.wl-recruit-lp .wl-footer__logo img{
  max-width: 200px;
  width: 100%;
  height: auto;
}

body.wl-recruit-lp .wl-footer__copyright{
  font-size: 13px;
  color: #666;
}

/* br utility */
br.sp{ display:none; }
br.pc{ display:inline; }
@media (max-width: 767px){
  br.sp{ display:inline; }
  br.pc{ display:none; }
}

/* =========================================================
  2) Tablet (<= 1024px)
========================================================= */
@media (max-width: 1020px){

  body.wl-lp .container{ padding: 0 16px; }
  body.wl-lp .section{ padding: 52px 0; }

  /* titles */
  body.wl-lp .section-title,
  body.wl-lp .section-title--decorated{
    font-size: 1.6rem; /* 既存TAB調整を尊重 */
  }

  body.wl-lp .section-title{
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.35;
    margin-bottom: 34px;
    padding-bottom: 16px;
    max-width: 22em;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
  }

  body.wl-lp .section-title.section-title--small{
    font-size: clamp(20px, 2.2vw, 26px);
    margin-bottom: 16px;
    max-width: 24em;
    text-wrap: balance;
  }

  body.wl-lp .section-title::after{ margin-top: 12px; }

  body.wl-lp .mission-title,
  body.wl-lp .vision-title{
    font-size: clamp(20px, 2.4vw, 30px);
    line-height: 1.4;
    max-width: 24em;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
  }

  /* hero */
  body.wl-lp .hero{ min-height: 70vh; padding: 90px 0 60px; }
  body.wl-lp .hero h1{ font-size: 2.8rem; }
  body.wl-lp .hero p{ font-size: 1rem; }
  body.wl-lp .hero .highlight{ font-size: 1.1rem; }
	
  /* problem */
  body.wl-lp .problem-solution{
    font-size: 0.8em;
  }
	
  body.wl-recruit-lp .problem-card__text{
    font-size: 0.8rem;
  }

  /* company */
  body.wl-lp .company-table th,
  body.wl-lp .company-table td{
    font-size: 0.8rem;
  }
  body.wl-lp .company-meta-under p{ font-size: 0.8rem; }
  body.wl-lp .wl-logoFrame__lead{font-size: 0.8rem;  }
	
  body.wl-recruit-lp .wl-needLayout{
    display: grid;
    grid-template-columns: minmax(320px, 350px) 1fr;
    gap: 12px;
  }
	
  body.wl-lp .section-title.section-title--small{
    font-size: clamp(1.1rem, 2.2vw, 26px);
  }
	
  body.wl-lp .wl-insightBlock__note{font-size: 0.8rem; }
	
  body.wl-lp .mission-box p,
  body.wl-lp .vision-box p,
  body.wl-lp .message-box p{
    font-size: 0.8rem;
  }
  body.wl-lp .message-box .ceo-name{
	font-size: 1.1rem;
  }
  /* environment*/
  body.wl-lp .vision-card ul li{font-size: 0.8rem; }
  body.wl-lp .vision-emphasis__lead{font-size: 0.8rem; }
  body.wl-lp .vision-emphasis__lead > span,
  body.wl-lp .vision-emphasis__sub{
    font-size: 0.8rem;
  }
  /* vision grid */
  body.wl-lp .vision-grid{ grid-template-columns: 1fr; }
	
  /* recruit */
  body.wl-lp .recruit-table{font-size: 0.8rem; }
  
  body.wl-lp .cta-lead{font-size: 0.8rem; }
  
  /* logos */
  body.wl-lp .wl-logoGroup__title{ margin: 0 10px 20px; }

  /* message padding（現行TABの意図を残す） */
  body.wl-lp .mission-box p,
  body.wl-lp .vision-box p,
  body.wl-lp .message-box p{
    padding: 0 10px;
  }

  /* interview */
  body.wl-lp .interview-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* =========================================================
  3) SP (<= 767px)
========================================================= */
@media (max-width: 767px){

  /* overflow insurance */
  body.wl-lp .section-title,
  body.wl-lp .mission-title,
  body.wl-lp .vision-title,
  body.wl-lp .message-title,
  body.wl-lp .hero h1{
    overflow-wrap: anywhere;
    word-break: normal;
  }

  /* titles */
  body.wl-lp .section-title{
    font-size: 1.55rem;
    line-height: 1.35;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
    padding-bottom: 14px;
    line-break: strict;
    text-wrap: balance;
  }
  body.wl-lp .section-title--decorated{
    font-size: 1.6rem; /* 既存TAB調整を尊重 */
  }
  /* Decorated H2 */
  body.wl-recruit-lp h2.section-title--decorated{
    padding: 0.8em 0 1.8em;
  }
  body.wl-lp .section-title.section-title--small{
    font-size: 1.25rem;
    margin-bottom: 14px;
  }

  body.wl-lp .mission-title,
  body.wl-lp .vision-title,
  body.wl-lp .message-title{
    font-size: 1.1rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    line-break: strict;
    text-wrap: balance;
  }

  body.wl-lp .mission-box p,
  body.wl-lp .vision-box p,
  body.wl-lp .message-box p{
    font-size: 0.8rem;
    line-height: 2.0;
	padding: 0 30px;
	text-align:left;
  }

  /* hero */
  body.wl-lp .hero{
    padding: 86px 0 56px;
    min-height: 72vh;
  }
  body.wl-lp .hero h1{
    font-size: 1.65rem;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-wrap: balance;
  }
  body.wl-lp .hero p{
    font-size: 0.95rem;
    line-height: 1.9;
  }
  body.wl-lp .hero .highlight{
    font-size: 1.0rem;
    line-height: 1.9;
  }
  body.wl-lp .hero .cta-btn{
    min-width: 240px;
    padding: 14px 0;
  }

  /* header: SPは nav非表示＋スクロール後だけENTRY表示（JSと一致） */
  body.wl-lp .wl-header__nav{ display: none; }
  body.wl-lp .wl-header__right{ display: block; }

  body.wl-lp .wl-header__entry{
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    min-width: 70px;
	height: 36px;
    padding: 4px 14px;
    border-radius: 4px;
    background: #333333;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, background-color .2s ease, border-color .2s ease;
  }

  body.wl-lp #wlHeader.is-scrolled .wl-header__inner{ justify-content: space-between; }
  body.wl-lp #wlHeader.is-scrolled .wl-header__entry{
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  body.wl-lp #wlHeader:not(.is-scrolled) .wl-header__entry{
    opacity: 0;
    pointer-events: none;
  }

  /* problem */
  body.wl-lp .problem-box{ padding: 24px 24px; }
  body.wl-lp .problem-solution{
    text-align: left;
  }
  /* problem cards */
  body.wl-recruit-lp .problem-cards{
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 520px;
  }
  body.wl-recruit-lp .problem-cards .problem-card:last-child{ grid-column: auto; }
	
  /* company */
  body.wl-lp .company-meta-under{ text-align: left; padding: 0px 20px; } 
  body.wl-lp .company-meta-under p{ font-size: 0.8rem; line-height: 2; }
  body.wl-lp .wl-logoFrame__leadStrong{font-size: 0.8rem; }
  body.wl-lp .company-meta__title{font-size: 1.1rem;}
	
  body.wl-lp .wl-logoFrame__sub{font-size: 0.8rem; }
	
  /* logos */
  body.wl-lp .wl-logoGroup__title{ margin: 0 10px 20px; }
  body.wl-recruit-lp .wl-needContent .section-title{text-align: center; padding-left: 0;}
  
  /* insight note */
  body.wl-lp .wl-insightBlock__note{ padding: 20px 20px; }

  /* need layout */
  body.wl-recruit-lp .wl-needLayout{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  body.wl-recruit-lp .wl-needContent{ order: 1; }
  body.wl-recruit-lp .wl-needChartWrap{ order: 2; }
  body.wl-recruit-lp .wl-needContent .wl-insightBlock__note{ order: 3; }

  body.wl-recruit-lp .wl-needContent .section-title{ text-align: center; }
  body.wl-recruit-lp .wl-needLabel--main{ right: -6px; }
  body.wl-recruit-lp .wl-needLabel--sub{ left: -6px; }

  /* vision photo cards */
  body.wl-recruit-lp .vision-photoGrid{
    grid-template-columns: 1fr;
	gap: 16px;
  }
  body.wl-recruit-lp .vision-photoText{
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1.4rem;
	}
  body.wl-recruit-lp .vision-photoCard{
	border-radius:10px;
  }
	
  /* environment */
  body.wl-lp .vision-emphasis__sub{
	text-align:left;
    padding: 0 30px;
  }
  /* interview */
  body.wl-lp .interview-grid{ grid-template-columns: 1fr; }
  body.wl-lp .interview-image{ height: 200px; }

  /* modal */
  body.wl-lp .interview-modal__panel{
    width: calc(100% - 24px);
    max-height: calc(100vh - 24px);
    margin: 12px auto;
  }
  body.wl-lp .interview-modal__content{ padding: 28px 18px 24px; }
  body.wl-lp .interview-modal__title{ margin: 40px 0 28px; }
  body.wl-lp .interview-modal__title p{ font-size: 22px; }
  body.wl-lp .interview-modal__text p{ font-size: 14px; line-height: 1.9; }
  body.wl-lp .interview-modal__text p:first-child{ font-size: 17px; }
	
  body.wl-lp .message-box .ceo-name{
	text-align: right;
  }
  body.wl-lp .message-box span{
	font-size: 1.1rem;
  }
	
  /* recruit table: 縦積み（現行挙動維持） */
  body.wl-lp .recruit-table th,
  body.wl-lp .recruit-table td{
    display: block;
    width: 100%;
  }
  body.wl-lp .recruit-table th{
    /*margin-top: 10px;*/
    border-bottom: none;
  }

	/* CTA button */
  body.wl-lp .cta-lead--accent{font-size: 1.0rem;}
  body.wl-lp .cta-lead{padding: 0 10px; }
  body.wl-lp .cta-btn{ width: 100%; max-width: 360px; }

  /* footer */
  body.wl-recruit-lp .wl-footer__logo img{ max-width: 160px; }
  body.wl-recruit-lp .wl-footer__copyright{ font-size: 13px; }
}

/* =========================
   SAFETY PATCH (append-only)
   - scope leak fix
   - prevent other pages impact
========================= */

/* interview / modal / footer / vision-photo はスコープ漏れしやすいので閉じる */
body.wl-recruit-lp .interview-grid{ display: grid; }
body.wl-recruit-lp .interview-card{ position: relative; }
body.wl-recruit-lp .interview-modal{ position: fixed; inset: 0; }

body.wl-recruit-lp .vision-photoGrid{ display: grid; }
body.wl-recruit-lp .vision-photoCard{ position: relative; }

body.wl-recruit-lp .wl-footer{ padding: 40px 0 24px; }

/* =========================================================
   FIX PATCH (PC崩れ対応)
   1) Header nav をPCで横並びに戻す
   2) CEO message をPCで2カラムに戻す
   3) Footer 背景を不透明に戻す（Recruit LPだけ）
========================================================= */

/* 1) Header: PC/TAB(>=768) は nav を横並び */
@media (min-width: 768px){
  body.wl-lp .wl-header__right{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }

  body.wl-lp .wl-header__nav{
    display: flex;
    flex-direction: row;        /* ←縦→横 */
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
  }

  body.wl-lp .wl-header__link{
    position: relative;
    font-weight: 500;
    font-size: 0.6rem;          /* 既存PCの見た目を尊重 */
    padding-bottom: 0.6rem;
  }

  /* 下三角 */
  body.wl-lp .wl-header__link::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #111;
    opacity: .8;
  }

  /* スクロール後は right を1列化（JS: is-scrolled と整合） */
  body.wl-lp #wlHeader.is-scrolled .wl-header__right{
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  body.wl-lp #wlHeader.is-scrolled .wl-header__nav{ order: 1; }
  body.wl-lp #wlHeader.is-scrolled .wl-header__entry{
    order: 2;
    height: 40px;
    min-width: 150px;
    font-size: 14px;
  }
}

/* 2) CEO message: PCは2カラムに戻す（SPだけ縦積み） */
body.wl-lp .message-box--ceo .message-box__inner{
  display: flex;
  align-items: center;
  gap: 40px;
}

body.wl-lp .message-box--ceo .message-box__photo{
  flex: 0 0 360px;
}

body.wl-lp .message-box--ceo .message-box__photo img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

body.wl-lp .message-box--ceo .message-box__content{
  flex: 1 1 auto;
}

@media (max-width: 767px){
  body.wl-lp .message-box--ceo .message-box__inner{
    flex-direction: column;
    gap: 24px;
  }
  body.wl-lp .message-box--ceo .message-box__photo{
    flex: none;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* 3) Footer: Recruit LPだけ背景を不透明に（透明化の逆）
   ※ footer.php は .wl-footer なので、そこにだけ当てるのが安全 */
body.wl-recruit-lp .wl-footer{
  background: #333333;
  color: #ffffff;
}

body.wl-recruit-lp .wl-footer *{
  color: #ffffff;
}

body.wl-recruit-lp .wl-footer__copyright{
  opacity: .9;
  font-size: 13px;
}
