@charset "UTF-8";
/* =========================================================
   健康経営への取り組み ページ専用スタイル
   ========================================================= */
.kenko-page {
  font-family: 'Noto Sans JP', "メイリオ", -webkit-body, sans-serif, "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, Meiryo;
  color: #333;
  overflow-x: hidden;
}
.kenko-page a {
  font-size: inherit;
}
.kenko-page section {
  position: relative;
}

/* ---- 共通: 丸グラデーションの見出し飾り ---- */
.kenko-heading {
  text-align: center;
  padding: 40px 20px 0;
}
.kenko-heading__dot {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #161b8b 0%, #d83396 100%);
}
.kenko-heading h2 {
  margin: 18px 0 0;
  font-size: 28px;
  font-weight: 700;
  color: #34a853;
  letter-spacing: 0.02em;
}
.kenko-heading__line {
  width: 48px;
  height: 5px;
  margin: 14px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, #8bb41a 0%, #fd6e9b 100%);
}

/* ---- Hero ---- */
.kenko-hero {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #143 no-repeat center center;
  background-image: url("../images/kenko/hero-bg.jpg");
  background-size: cover;
}
.kenko-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 10, 0.35);
}
.kenko-hero__blob {
  position: absolute;
  width: 420px;
  height: 320px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.kenko-hero__blob svg {
  width: 100%;
  height: 100%;
}
.kenko-hero h1 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.1em;
  margin: 0;
}

/* ---- TOC カード ---- */
.kenko-toc {
  max-width: 1085px;
  margin: -30px auto 0;
  position: relative;
  z-index: 3;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  padding: 24px 24px;
}
.kenko-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: kenko-toc;
}
.kenko-toc li {
  counter-increment: kenko-toc;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}
.kenko-toc li a {
  color: #222;
  text-decoration: none;
}
.kenko-toc li a:hover {
  color: #161b8b;
  text-decoration: underline;
}
.kenko-toc li a::before {
  content: counter(kenko-toc) ".";
  display: inline-block;
  width: 1.4em;
  color: #161b8b;
  font-weight: 700;
}

/* ---- 健康経営の目的 / 健康宣言 ---- */
.kenko-lead {
  max-width: 790px;
  margin: 18px auto 0;
  padding: 0 20px 56px;
  text-align: center;
}
.kenko-lead p {
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 0.4em;
}
.kenko-lead p strong {
  font-weight: 700;
}
.kenko-lead__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 24px;
}
.kenko-pill-outline {
  display: inline-block;
  padding: 10px 26px;
  border: 2px solid #ccc;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  background: #fff;
}
.kenko-lead--wide {
  max-width: 900px;
  padding-bottom: 32px;
}

/* ---- 健康経営推進体制 ---- */
.kenko-structure {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 56px;
  display: grid;
  gap: 14px;
}
.kenko-structure__item {
  background: #f9f9f9;
  border-left: 4px solid #161b8b;
  padding: 14px 18px;
  text-align: left;
}
.kenko-structure__item dt {
  font-size: 15px;
  font-weight: 700;
  color: #161b8b;
  margin: 0 0 4px;
}
.kenko-structure__item dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

/* ---- 健康経営への取り組み: タブナビ ---- */
.kenko-tabs {
  max-width: 1085px;
  margin: 24px auto 0;
  padding: 0 20px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.kenko-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 59px;
  padding: 12px 16px;
  border-radius: 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  line-height: 1.4;
}
.kenko-tab:hover {
  filter: brightness(1.08);
}
.kenko-tab--01 { background: linear-gradient(135deg, #161b8b 0%, #d83396 100%); }
.kenko-tab--02 { background: linear-gradient(135deg, #16688b 0%, #d83396 100%); }
.kenko-tab--03 { background: linear-gradient(135deg, #208b16 0%, #d83396 100%); }
.kenko-tab--04 { background: linear-gradient(135deg, #161b8b 0%, #33d8d8 100%); }

/* ---- 取り組みアコーディオン ---- */
.kenko-effort {
  padding: 0 20px 48px;
}
.kenko-effort__label {
  max-width: 1109px;
  margin: 0 auto;
  padding: 0 16px;
  font-size: 19px;
  font-weight: 700;
}
.kenko-effort--01 .kenko-effort__label { color: #d874c8; }
.kenko-effort--02 .kenko-effort__label { color: #d99a4f; }
.kenko-effort--03 .kenko-effort__label { color: #3fae66; }
.kenko-effort--04 .kenko-effort__label { color: #8fce4f; }

.kenko-effort__panel {
  max-width: 1109px;
  margin: 10px auto 0;
  background: #f9f9f9;
  padding: 24px 16px 32px;
}
.kenko-effort__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 700px) {
  .kenko-effort__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.kenko-effort__card {
  background: #f2f2f8;
  border-top: 3px solid #383f9d;
  padding: 16px 18px 20px;
}
.kenko-effort--01 .kenko-effort__card,
.kenko-effort--01 .kenko-effort__photo { border-top-color: #d874c8; }
.kenko-effort--02 .kenko-effort__card,
.kenko-effort--02 .kenko-effort__photo { border-top-color: #d99a4f; }
.kenko-effort--03 .kenko-effort__card,
.kenko-effort--03 .kenko-effort__photo { border-top-color: #3fae66; }
.kenko-effort--04 .kenko-effort__card,
.kenko-effort--04 .kenko-effort__photo { border-top-color: #8fce4f; }
.kenko-effort__card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}
.kenko-effort__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}
.kenko-effort__photo {
  border-top: 3px solid #383f9d;
  padding: 0;
  overflow: hidden;
}
.kenko-effort__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kenko-tabs--3 {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 700px) {
  .kenko-tabs--3 { grid-template-columns: repeat(3, 1fr); }
}
.kenko-effort__lead {
  max-width: 1109px;
  margin: 0 auto 20px;
  padding: 0 2px;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}
.kenko-effort__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 700px) {
  .kenko-effort__body { grid-template-columns: 1.4fr 1fr; }
}
.kenko-effort__actions,
.kenko-effort__goal {
  background: #f2f2f8;
  border-top: 3px solid #383f9d;
  padding: 16px 18px 20px;
}
.kenko-effort--01 .kenko-effort__actions,
.kenko-effort--01 .kenko-effort__goal { border-top-color: #d874c8; }
.kenko-effort--02 .kenko-effort__actions,
.kenko-effort--02 .kenko-effort__goal { border-top-color: #d99a4f; }
.kenko-effort--03 .kenko-effort__actions,
.kenko-effort--03 .kenko-effort__goal { border-top-color: #3fae66; }
.kenko-effort__actions--full { max-width: 1109px; margin: 0 auto 20px; }
.kenko-effort__actions h3,
.kenko-effort__goal h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: #111;
}
.kenko-effort__actions ul {
  margin: 0;
  padding-left: 1.2em;
}
.kenko-effort__actions li {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 4px;
}
.kenko-effort__goal-label {
  margin: 0 0 10px;
  font-size: 13px;
  color: #555;
}
.kenko-effort__goal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.kenko-effort__goal-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  background: #fff;
  padding: 8px 12px;
  border-radius: 4px;
}
.kenko-effort__goal-list span {
  font-size: 13px;
  color: #555;
}
.kenko-effort__goal-list strong {
  font-size: 20px;
  color: #373e9c;
}
.kenko-effort__photo--wide {
  max-width: 1109px;
  margin: 0 auto;
  height: 220px;
}
@media screen and (min-width: 860px) {
  .kenko-effort__photo--wide { height: 320px; }
}

/* ---- 数字で見る健康経営 ---- */
.kenko-stats {
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 0 20px 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 24px;
}
@media screen and (min-width: 700px) {
  .kenko-stats { grid-template-columns: repeat(4, 1fr); }
}
.kenko-stat {
  text-align: center;
}
.kenko-stat__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #373e9c;
}
.kenko-stat__icon svg {
  width: 40px;
  height: 40px;
}
.kenko-stat__icon img {
  width: auto;
  height: 44px;
}
.kenko-stat h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: #111;
}
.kenko-stat__num {
  font-size: 30px;
  font-weight: 700;
  color: #373e9c;
  white-space: nowrap;
}
.kenko-stat__line {
  width: 70%;
  max-width: 160px;
  height: 2px;
  margin: 10px auto 0;
  background: #abaed6;
}

/* ---- ブライト500 ---- */
.kenko-bright500 {
  max-width: 1090px;
  margin: 24px auto 0;
  padding: 0 20px 56px;
}
.kenko-bright500__card {
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.kenko-bright500__badge {
  flex: 0 0 auto;
  width: 160px;
  margin: 0 auto;
}
.kenko-bright500__badge img {
  display: block;
  width: 100%;
  height: auto;
}
.kenko-bright500__text {
  flex: 1 1 320px;
}
.kenko-bright500__text p {
  margin: 0 0 0.8em;
  font-size: 14px;
  line-height: 1.8;
}
.kenko-bright500__text p.kenko-note {
  font-size: 12px;
  color: #777;
  margin-top: 1.2em;
}

/* ---- 福利厚生サービス ---- */
.kenko-benefits {
  max-width: 1090px;
  margin: 24px auto 0;
  padding: 0 20px 56px;
}
.kenko-benefits__table-wrap {
  overflow-x: auto;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}
.kenko-benefits__table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 14px;
}
.kenko-benefits__table th,
.kenko-benefits__table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}
.kenko-benefits__table th {
  background: #f2f2f8;
  color: #161b8b;
  font-weight: 700;
  white-space: nowrap;
}
.kenko-benefits__table tr:last-child td {
  border-bottom: none;
}
.kenko-benefits__table td:first-child {
  font-weight: 700;
  white-space: nowrap;
}
.kenko-benefits__table td a {
  color: #161b8b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.kenko-benefits__table td a:hover {
  text-decoration: underline;
}
.kenko-extlink {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: #888;
}
.kenko-benefits__table td:last-child {
  white-space: nowrap;
  color: #555;
}

/* ---- CONTACT ---- */
.kenko-contact {
  position: relative;
  padding: 64px 20px;
  text-align: center;
  background: #0e1550 no-repeat center center;
  background-image: linear-gradient(rgba(20, 12, 60, 0.72), rgba(20, 12, 60, 0.72)), url("../images/kenko/contact-bg.jpg");
  background-size: cover;
}
.kenko-contact h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}
.kenko-contact h3 {
  margin: 6px 0 0;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.kenko-contact p {
  margin: 20px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.8;
}
.kenko-contact p .kenko-tel {
  display: block;
  font-size: 20px;
  color: #9fd0ff;
  margin-top: 4px;
}
.kenko-contact__btn {
  display: inline-block;
  margin-top: 28px;
  padding: 16px 48px;
  border-radius: 30px;
  background: linear-gradient(135deg, #161b8b 0%, #d83396 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
.kenko-contact__btn:hover {
  filter: brightness(1.1);
}

/* =========================================================
   PC (min-width: 860px)
   ========================================================= */
@media screen and (min-width: 860px) {
  .kenko-hero { height: 400px; }
  .kenko-hero h1 { font-size: 38px; }
  .kenko-heading h2 { font-size: 38px; }
  .kenko-toc { padding: 32px 60px; margin-top: -50px; }
  .kenko-toc li { font-size: 16px; }
  .kenko-lead p { font-size: 16px; }
  .kenko-tabs { grid-template-columns: repeat(2, 1fr); }
  .kenko-effort__label { font-size: 24px; }
  .kenko-bright500__card { padding: 40px 56px; flex-wrap: nowrap; }
  .kenko-bright500__badge { width: 190px; }
  .kenko-contact h2 { font-size: 56px; }
  .kenko-contact p .kenko-tel { font-size: 24px; }
}
