/* =========================================================
   HEALTH CHECK JUDGMENT PAGE
   健康診断後の就業判定（slug: health-check-judgment）
   このファイルは当該ページのみで読み込まれます。
========================================================= */

.health-check-judgment-hero {
  --hcj-navy: #07336c;
  --hcj-blue: #168fd3;
  --hcj-cta: #006bc2;
  --hcj-panel: 520px;
  --hcj-sky: #e8f5fb;
  --hcj-text: #243044;
  --hcj-muted: #4a5a70;
  --hcj-white: #ffffff;
  --hcj-image: url("https://kurume-sangyoui.com/wp-content/uploads/2026/09/ChatGPT-Image-2026%E5%B9%B49%E6%9C%885%E6%97%A5-16_48_23.webp");
  --hcj-font: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", YuGothic, Meiryo, sans-serif;
}


/* --- Page chrome: keep SWELL header/footer, hide default title --- */

#body_wrap h1.c-pageTitle {
  display: none;
  margin: 0;
  padding: 0;
  border: none;
}

#body_wrap .p-breadcrumb,
#body_wrap .c-pageTitle,
#body_wrap .l-content {
  padding-top: 0;
}

#body_wrap .p-breadcrumb {
  display: none;
}

#body_wrap .l-mainContent__inner {
  margin-top: 0;
  padding-top: 0;
}

#body_wrap .l-mainContent__inner > .post_content {
  margin-top: 0;
}

#body_wrap .l-content,
#body_wrap .l-mainContent,
#body_wrap .l-mainContent__inner,
#body_wrap .post_content {
  overflow: visible;
}


/* --- Full-bleed hero (do not override SWELL globals) --- */

#body_wrap .wp-block-html:has(> .health-check-judgment-hero),
#body_wrap .wp-block-html:has(> .health-check-judgment-worries),
#body_wrap .post_content > .health-check-judgment-hero,
#body_wrap .health-check-judgment-hero {
  position: relative;
  left: calc(50% - 50vw + var(--swl-scrollbar_width, 0px) / 2);
  width: calc(100vw - var(--swl-scrollbar_width, 0px));
  max-width: none;
  margin: 0;
  padding: 0;
}

#body_wrap .wp-block-html:has(> .health-check-judgment-hero),
#body_wrap .wp-block-html:has(> .health-check-judgment-worries) {
  display: block;
}


/* --- Hero shell --- */

.health-check-judgment-hero {
  position: relative;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  grid-template-rows: 1fr auto;
  align-items: stretch;
  min-height: clamp(740px, 52vw, 900px);
  overflow: hidden;
  color: var(--hcj-navy);
  font-family: var(--hcj-font);
  background-color: #f4f9fc;
}

.health-check-judgment-hero *,
.health-check-judgment-hero *::before,
.health-check-judgment-hero *::after {
  box-sizing: border-box;
}

.health-check-judgment-hero p {
  margin: 0;
}


/* --- Background image: cover + right-weighted position --- */

.health-check-judgment-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #f4f9fc;
  background-image: var(--hcj-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 70% 28%;
}

.health-check-judgment-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.82) 26%,
    rgba(255, 255, 255, 0.38) 48%,
    rgba(255, 255, 255, 0.08) 62%,
    rgba(255, 255, 255, 0) 74%
  );
}


/* --- Left column --- */

.health-check-judgment-hero__inner {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 26px;
  width: 100%;
  max-width: 680px;
  padding: clamp(72px, 6.5vw, 100px) 20px 88px clamp(40px, 5.6vw, 88px);
}

.health-check-judgment-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}


/* --- Badge: hidden (kept in WP HTML until the custom HTML is updated) --- */

.health-check-judgment-hero__badge {
  display: none !important;
}


/* --- Title --- */

.health-check-judgment-hero__title {
  display: flex;
  flex-direction: column;
  gap: 0.08em;
  width: 100%;
  margin: 0;
  color: var(--hcj-navy);
  font-family: var(--hcj-font);
  font-size: clamp(34px, 3.05vw, 42px);
  font-weight: 700;
  font-style: normal;
  line-height: 1.28;
  letter-spacing: 0.04em;
}

.health-check-judgment-hero__title-line {
  display: block;
  white-space: nowrap;
}

#body_wrap .health-check-judgment-hero h1.health-check-judgment-hero__title,
#body_wrap .post_content .health-check-judgment-hero h1.health-check-judgment-hero__title {
  margin: 0 !important;
  color: var(--hcj-navy) !important;
  font-family: var(--hcj-font) !important;
  font-size: clamp(34px, 3.05vw, 42px) !important;
  font-weight: 700 !important;
  line-height: 1.28 !important;
  letter-spacing: 0.04em;
}


/* --- Lead --- */

.health-check-judgment-hero__lead,
#body_wrap .health-check-judgment-hero p.health-check-judgment-hero__lead {
  margin: 14px 0 0;
  max-width: 28em;
  color: var(--hcj-navy);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}


/* --- Feature cards --- */

.health-check-judgment-hero__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  box-sizing: border-box;
  width: var(--hcj-panel);
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

#body_wrap .health-check-judgment-hero ul.health-check-judgment-hero__features {
  width: var(--hcj-panel);
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.health-check-judgment-hero__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 0;
  padding: 18px 10px 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(196, 222, 236, 0.9);
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(7, 51, 108, 0.05);
  text-align: center;
}

.health-check-judgment-hero__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  overflow: visible;
  color: var(--hcj-blue);
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 0;
}

.health-check-judgment-hero__feature:nth-child(1) .health-check-judgment-hero__feature-icon {
  background-image: url("https://kurume-sangyoui.com/wp-content/uploads/2026/09/ChatGPT-Image-2026%E5%B9%B49%E6%9C%885%E6%97%A5-19_53_33-1.webp");
}

.health-check-judgment-hero__feature:nth-child(2) .health-check-judgment-hero__feature-icon {
  background-image: url("https://kurume-sangyoui.com/wp-content/uploads/2026/09/ChatGPT-Image-2026%E5%B9%B49%E6%9C%885%E6%97%A5-19_53_34-2.webp");
}

.health-check-judgment-hero__feature:nth-child(3) .health-check-judgment-hero__feature-icon {
  background-image: url("https://kurume-sangyoui.com/wp-content/uploads/2026/09/ChatGPT-Image-2026%E5%B9%B49%E6%9C%885%E6%97%A5-19_53_34-3.webp");
}

.health-check-judgment-hero__feature-icon:has(img) {
  background-image: none;
}

.health-check-judgment-hero__feature-icon svg {
  display: none !important;
}

.health-check-judgment-hero__feature-icon img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 44px;
  max-height: 44px;
  object-fit: contain;
  object-position: center;
}

#body_wrap .health-check-judgment-hero .health-check-judgment-hero__feature-text,
#body_wrap .health-check-judgment-hero .health-check-judgment-hero__feature p {
  margin: 0;
  color: var(--hcj-navy);
  font-size: 12.5px !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
  letter-spacing: 0.01em;
}


/* --- CTA --- */

.health-check-judgment-hero__cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  box-sizing: border-box;
  width: var(--hcj-panel);
  max-width: 100%;
}

.health-check-judgment-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 12px 18px 12px 20px;
  border-radius: 999px;
  font-family: var(--hcj-font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.health-check-judgment-hero__btn::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.health-check-judgment-hero__btn--primary {
  color: var(--hcj-white);
  background: var(--hcj-cta);
  border: 1.5px solid var(--hcj-cta);
  box-shadow: 0 6px 14px rgba(0, 107, 194, 0.28);
}

.health-check-judgment-hero__btn--secondary {
  color: var(--hcj-cta);
  background: rgba(255, 255, 255, 0.96);
  border: 1.5px solid var(--hcj-cta);
  box-shadow: none;
}

.health-check-judgment-hero__btn--primary:hover,
.health-check-judgment-hero__btn--primary:focus-visible {
  color: var(--hcj-white);
  background: #0059a8;
  border-color: #0059a8;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 107, 194, 0.34);
}

.health-check-judgment-hero__btn--secondary:hover,
.health-check-judgment-hero__btn--secondary:focus-visible {
  color: var(--hcj-cta);
  background: #f4fbff;
  transform: translateY(-1px);
}


/* --- Bottom wave: image waves + white/sky blend into next section --- */

.health-check-judgment-hero__wave {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 3;
  height: 80px;
  pointer-events: none;
  line-height: 0;
}

.health-check-judgment-hero__wave svg {
  display: block;
  width: 100%;
  height: 80px;
}


/* --- Entrance --- */

.health-check-judgment-hero__badge,
.health-check-judgment-hero__title,
.health-check-judgment-hero__lead,
.health-check-judgment-hero__feature,
.health-check-judgment-hero__cta {
  animation: healthCheckJudgmentFadeUp 0.7s ease both;
}

.health-check-judgment-hero__badge { animation-delay: 0.06s; }
.health-check-judgment-hero__title { animation-delay: 0.16s; }
.health-check-judgment-hero__lead { animation-delay: 0.28s; }
.health-check-judgment-hero__feature:nth-child(1) { animation-delay: 0.4s; }
.health-check-judgment-hero__feature:nth-child(2) { animation-delay: 0.5s; }
.health-check-judgment-hero__feature:nth-child(3) { animation-delay: 0.6s; }
.health-check-judgment-hero__cta { animation-delay: 0.72s; }

@keyframes healthCheckJudgmentFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .health-check-judgment-hero__badge,
  .health-check-judgment-hero__title,
  .health-check-judgment-hero__lead,
  .health-check-judgment-hero__feature,
  .health-check-judgment-hero__cta {
    animation: none;
  }
}


/* --- Wide PC --- */

@media (min-width: 1440px) {
  .health-check-judgment-hero {
    grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  }

  .health-check-judgment-hero__media {
    background-position: 68% 26%;
  }
}


/* --- Laptop / small PC --- */

@media (max-width: 1279px) {
  .health-check-judgment-hero {
    min-height: clamp(660px, 60vw, 860px);
    grid-template-columns: minmax(0, 50%) minmax(0, 50%);
  }

  .health-check-judgment-hero__media {
    background-position: 74% 30%;
  }

  .health-check-judgment-hero__inner {
    gap: 24px;
    padding: 80px 20px 88px clamp(28px, 4vw, 56px);
  }

  .health-check-judgment-hero__title,
  #body_wrap .health-check-judgment-hero h1.health-check-judgment-hero__title {
    font-size: clamp(30px, 3.3vw, 40px) !important;
  }

  .health-check-judgment-hero__feature {
    padding: 16px 8px 14px;
  }
}


@media (max-width: 1100px) {
  .health-check-judgment-hero__overlay {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(255, 255, 255, 0.84) 30%,
      rgba(255, 255, 255, 0.32) 52%,
      rgba(255, 255, 255, 0) 70%
    );
  }

  .health-check-judgment-hero__features,
  .health-check-judgment-hero__cta {
    width: 100%;
    max-width: 100%;
    gap: 10px;
  }

  #body_wrap .health-check-judgment-hero .health-check-judgment-hero__feature-text,
  #body_wrap .health-check-judgment-hero .health-check-judgment-hero__feature p {
    font-size: 12.5px !important;
  }

  .health-check-judgment-hero__btn {
    min-height: 46px;
    font-size: 14.5px;
  }
}


/* --- Smartphone / tablet: stack by priority --- */

@media (max-width: 899px) {
  .health-check-judgment-hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: visible;
    overflow-x: hidden;
    background: var(--hcj-white);
  }

  .health-check-judgment-hero__inner {
    display: contents;
  }

  .health-check-judgment-hero__overlay {
    display: none;
  }

  .health-check-judgment-hero__content {
    order: 1;
    width: 100%;
    padding: 32px 20px 8px;
    background: var(--hcj-white);
  }

  .health-check-judgment-hero__badge {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .health-check-judgment-hero__title,
  #body_wrap .health-check-judgment-hero h1.health-check-judgment-hero__title {
    font-size: clamp(26px, 7vw, 34px) !important;
    line-height: 1.4 !important;
    letter-spacing: 0.03em;
  }

  .health-check-judgment-hero__lead {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.85;
    letter-spacing: 0.02em;
  }

  .health-check-judgment-hero__br {
    display: none;
  }

  .health-check-judgment-hero__cta {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: none;
    padding: 20px 20px 24px;
    background: var(--hcj-white);
  }

  .health-check-judgment-hero__btn {
    width: 100%;
    min-width: 0;
    min-height: 52px;
  }

  .health-check-judgment-hero__media {
    position: relative;
    order: 3;
    inset: auto;
    width: 100%;
    height: 280px;
    background-position: 84% 22%;
    background-size: cover;
  }

  .health-check-judgment-hero__media::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 36px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath fill='%23f7fbfe' d='M0 18c180 14 360-12 540-8 180 4 270 18 450 14 180-4 330-20 450-12v36H0V18z'/%3E%3Cpath fill='%23ffffff' d='M0 28c160 10 320-8 500-4 180 4 280 14 460 10 180-4 320-16 480-8v22H0V28z'/%3E%3C/svg%3E") center bottom / 100% 36px no-repeat;
    pointer-events: none;
  }

  .health-check-judgment-hero__features {
    order: 4;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: none;
    padding: 20px 20px 8px;
    background: linear-gradient(180deg, #f7fbfe 0%, #ffffff 100%);
  }

  .health-check-judgment-hero__feature {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    min-height: 0;
    padding: 16px 18px;
    text-align: left;
    background: var(--hcj-white);
  }

  .health-check-judgment-hero__feature-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
  }

  .health-check-judgment-hero__feature-icon img {
    max-width: 44px;
    max-height: 44px;
  }

  #body_wrap .health-check-judgment-hero .health-check-judgment-hero__feature-text,
  #body_wrap .health-check-judgment-hero .health-check-judgment-hero__feature p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .health-check-judgment-hero__feature-text br {
    display: none;
  }

  .health-check-judgment-hero__wave {
    position: relative;
    order: 5;
    height: 48px;
    background: var(--hcj-white);
  }

  .health-check-judgment-hero__wave svg {
    height: 48px;
  }
}


@media (max-width: 440px) {
  .health-check-judgment-hero__content {
    padding: 28px 18px 8px;
  }

  .health-check-judgment-hero__title,
  #body_wrap .health-check-judgment-hero h1.health-check-judgment-hero__title {
    font-size: clamp(24px, 7.4vw, 30px) !important;
  }

  .health-check-judgment-hero__cta {
    padding: 18px 18px 22px;
  }

  .health-check-judgment-hero__media {
    height: 270px;
    background-position: 86% 20%;
  }

  .health-check-judgment-hero__features {
    padding: 16px 18px 4px;
  }
}


@media (max-width: 400px) {
  .health-check-judgment-hero__content {
    padding: 24px 16px 6px;
  }

  .health-check-judgment-hero__badge {
    padding: 5px 12px 5px 8px;
    font-size: 11.5px;
  }

  .health-check-judgment-hero__title,
  #body_wrap .health-check-judgment-hero h1.health-check-judgment-hero__title {
    font-size: 23px !important;
    letter-spacing: 0.01em;
  }

  .health-check-judgment-hero__lead {
    font-size: 13.5px;
  }

  .health-check-judgment-hero__cta {
    padding: 16px 16px 20px;
  }

  .health-check-judgment-hero__media {
    height: 252px;
    background-position: 88% 18%;
  }

  .health-check-judgment-hero__features {
    padding: 14px 16px 0;
  }

  .health-check-judgment-hero__feature {
    padding: 14px 14px;
  }
}


/* =========================================================
   WORRIES SECTION
   こんなお悩みありませんか？
========================================================= */

.health-check-judgment-worries {
  --hcj-navy: #07336c;
  --hcj-blue: #168fd3;
  --hcj-sky: #e8f5fb;
  --hcj-text: #243044;
  --hcj-white: #ffffff;
  --hcj-font: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  position: relative;
  left: calc(50% - 50vw + var(--swl-scrollbar_width, 0px) / 2);
  box-sizing: border-box;
  width: calc(100vw - var(--swl-scrollbar_width, 0px));
  max-width: none;
  margin: 0;
  padding: 8px 0 72px;
  overflow: hidden;
  color: var(--hcj-navy);
  font-family: var(--hcj-font);
  background: linear-gradient(180deg, #ffffff 0%, #f4fbfe 18%, #f7fbfe 100%);
}

.health-check-judgment-worries *,
.health-check-judgment-worries *::before,
.health-check-judgment-worries *::after {
  box-sizing: border-box;
}

#body_wrap .health-check-judgment-worries p,
#body_wrap .health-check-judgment-worries h2,
#body_wrap .health-check-judgment-worries h3 {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

#body_wrap .health-check-judgment-worries h2::before,
#body_wrap .health-check-judgment-worries h2::after,
#body_wrap .health-check-judgment-worries h3::before,
#body_wrap .health-check-judgment-worries h3::after {
  content: none !important;
  display: none !important;
}

.health-check-judgment-worries__inner {
  position: relative;
  z-index: 1;
  width: min(880px, calc(100% - 48px));
  margin: 0 auto;
}

.health-check-judgment-worries__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 0 36px;
  text-align: center;
}

#body_wrap .post_content .health-check-judgment-worries h2.health-check-judgment-worries__title,
#body_wrap .health-check-judgment-worries h2.health-check-judgment-worries__title {
  color: var(--hcj-navy) !important;
  font-family: var(--hcj-font) !important;
  font-size: clamp(24px, 3.2vw, 42px) !important;
  font-weight: 700 !important;
  font-style: normal !important;
  line-height: 1.5 !important;
  letter-spacing: 0.06em;
  text-align: center;
  -webkit-text-stroke: 0;
}

.health-check-judgment-worries__title-line {
  display: block;
  width: 72px;
  height: 2px;
  margin: 14px auto 18px;
  background: #8ec8ea;
  border: none;
}

#body_wrap .health-check-judgment-worries p.health-check-judgment-worries__lead {
  max-width: 36em;
  color: var(--hcj-navy);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-align: center;
}

.health-check-judgment-worries__cards,
#body_wrap .health-check-judgment-worries ul.health-check-judgment-worries__cards {
  display: grid !important;
  grid-template-columns: repeat(3, 268px);
  justify-content: center;
  gap: 28px;
  align-items: stretch;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.health-check-judgment-worry {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  container-type: inline-size;
  width: 100%;
  max-width: 268px;
  min-height: 100%;
  padding: 10px 10px 16px;
  background: var(--hcj-white);
  border: 1px solid rgba(196, 222, 236, 0.95);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(7, 51, 108, 0.06);
  text-align: center;
}

.health-check-judgment-worry__media {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 100%;
  height: 156px;
  min-height: 156px;
  max-height: 156px;
  margin: 0 0 10px;
  overflow: hidden;
  background-color: #eef7fc;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 8px;
}

.health-check-judgment-worry:nth-child(1) .health-check-judgment-worry__media {
  background-image: url("https://kurume-sangyoui.com/wp-content/uploads/2026/09/ChatGPT-Image-2026%E5%B9%B49%E6%9C%885%E6%97%A5-21_12_35.webp");
}

.health-check-judgment-worry:nth-child(2) .health-check-judgment-worry__media {
  background-image: url("https://kurume-sangyoui.com/wp-content/uploads/2026/09/ChatGPT-Image-2026%E5%B9%B49%E6%9C%885%E6%97%A5-21_21_51.webp");
}

.health-check-judgment-worry:nth-child(3) .health-check-judgment-worry__media {
  background-image: url("https://kurume-sangyoui.com/wp-content/uploads/2026/09/ChatGPT-Image-2026%E5%B9%B49%E6%9C%885%E6%97%A5-21_23_32.webp");
}

.health-check-judgment-worry__media:has(img) {
  background-image: none;
}

.health-check-judgment-worry__placeholder {
  display: none !important;
}

#body_wrap .health-check-judgment-worries img.health-check-judgment-worry__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border: none;
  box-shadow: none;
  background: none;
}

#body_wrap .health-check-judgment-worries h3.health-check-judgment-worry__heading {
  width: 100%;
  margin: 0 0 8px !important;
  color: var(--hcj-navy) !important;
  font-family: var(--hcj-font) !important;
  font-size: 16.5px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  letter-spacing: 0;
  text-align: center;
  overflow-wrap: normal !important;
  word-break: keep-all !important;
  line-break: strict !important;
}

#body_wrap .health-check-judgment-worries p.health-check-judgment-worry__text {
  width: 100%;
  color: var(--hcj-navy);
  font-size: 14.5px !important;
  font-weight: 500 !important;
  line-height: 1.75 !important;
  letter-spacing: 0.03em;
  text-align: center;
}

.health-check-judgment-worries__foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 0 8px;
  text-align: center;
}

.health-check-judgment-worries__arrow {
  display: block;
  width: 0;
  height: 0;
  margin: 0 auto 16px;
  border-top: 12px solid #9fd0ee;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}

#body_wrap .health-check-judgment-worries p.health-check-judgment-worries__closing {
  color: var(--hcj-navy);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.06em;
  text-align: center;
}

@media (max-width: 980px) {
  .health-check-judgment-worries__cards,
  #body_wrap .health-check-judgment-worries ul.health-check-judgment-worries__cards {
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 16px;
    max-width: 520px;
    margin: 0 auto;
  }

  .health-check-judgment-worry {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: none;
    gap: 0 16px;
    padding: 14px;
    text-align: left;
  }

  .health-check-judgment-worry__media {
    flex: none;
    width: 132px;
    height: 110px;
    min-height: 110px;
    max-height: 110px;
    margin: 0;
  }

  #body_wrap .health-check-judgment-worries h3.health-check-judgment-worry__heading,
  #body_wrap .health-check-judgment-worries p.health-check-judgment-worry__text {
    text-align: left;
  }

  #body_wrap .health-check-judgment-worries h3.health-check-judgment-worry__heading {
    flex: 1 1 calc(100% - 148px);
    margin: 0 0 8px !important;
    font-size: 18px !important;
    overflow-wrap: break-word !important;
    word-break: normal;
    line-break: auto;
  }

  #body_wrap .health-check-judgment-worries p.health-check-judgment-worry__text {
    flex: 1 1 100%;
    padding-left: 148px;
    font-size: 14px !important;
  }

  #body_wrap .health-check-judgment-worries h3.health-check-judgment-worry__heading br,
  #body_wrap .health-check-judgment-worries p.health-check-judgment-worry__text br {
    display: none;
  }
}

@media (max-width: 560px) {
  .health-check-judgment-worries {
    padding: 0 0 48px;
  }

  .health-check-judgment-worries__inner {
    width: min(100% - 32px, 880px);
  }

  .health-check-judgment-worries__intro {
    padding: 32px 0 24px;
  }

  #body_wrap .health-check-judgment-worries h2.health-check-judgment-worries__title {
    font-size: 24px !important;
  }

  #body_wrap .health-check-judgment-worries p.health-check-judgment-worries__lead {
    font-size: 14px;
    line-height: 1.85;
  }

  .health-check-judgment-worry {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .health-check-judgment-worry__media {
    flex: none;
    width: 100%;
    height: 160px;
    min-height: 160px;
    max-height: 160px;
    margin: 0 0 10px;
  }

  #body_wrap .health-check-judgment-worries h3.health-check-judgment-worry__heading,
  #body_wrap .health-check-judgment-worries p.health-check-judgment-worry__text {
    flex: none;
    width: 100%;
    padding: 0;
    text-align: center;
  }

  #body_wrap .health-check-judgment-worries p.health-check-judgment-worries__closing {
    font-size: 16.5px;
  }
}
