/* =====================
   Hero A
   Scoped under .hero-a to avoid conflicts with base.css
===================== */
.hero-a{
  position: relative;
  overflow: hidden;
  padding: 0 0 34px;

  /* ===== Section layout ===== */
  --hero-wrap-max: 1200px;
  --hero-wrap-pad: 22px;
  --hero-copy-width: 310px;
  --hero-header-height: 86px;

  /* Text overlap */
  --hero-copy-overlap: 56px;

  /* ===== Background settings ===== */
  --bg-base: #dcdcdc;

  /* Left white fade */
  --left-fade-mid: 8%;
  --left-fade-end: 30%;

  /* Base colors */
  --base-left: #dfdfdf;  /* Left */
  --base-right: #717171; /* Right */

  /* Navigation colors */
  --nav-bg-1: #cfcfcf; /* Our Products */
  --nav-bg-2: #bbbbbb; /* Custom Made */
  --nav-bg-3: #a6a6a6; /* Quality Assurance */
  --nav-bg-4: #969696; /* About Us */
  --nav-bg-5: #7c7c7c; /* Contact Us */

  /* Vertical bands */
  --stripe-width: 148px;
  --stripe-alpha: 0.065;
  /* ================================= */

  background:
    /* Left white fade */
    linear-gradient(
      90deg,
      rgba(255,255,255,0.34) 0%,
      rgba(255,255,255,0.14) var(--left-fade-mid),
      rgba(255,255,255,0) var(--left-fade-end)
    ),

    /* Navigation 1 */
    linear-gradient(
      90deg,
      transparent 0,
      transparent var(--nav-x-1, 0px),
      var(--nav-bg-1) var(--nav-x-1, 0px),
      var(--nav-bg-1) calc(var(--nav-x-1, 0px) + var(--nav-w-1, 0px)),
      transparent calc(var(--nav-x-1, 0px) + var(--nav-w-1, 0px)),
      transparent 100%
    ),

    /* Navigation 2 */
    linear-gradient(
      90deg,
      transparent 0,
      transparent var(--nav-x-2, 0px),
      var(--nav-bg-2) var(--nav-x-2, 0px),
      var(--nav-bg-2) calc(var(--nav-x-2, 0px) + var(--nav-w-2, 0px)),
      transparent calc(var(--nav-x-2, 0px) + var(--nav-w-2, 0px)),
      transparent 100%
    ),

    /* Navigation 3 */
    linear-gradient(
      90deg,
      transparent 0,
      transparent var(--nav-x-3, 0px),
      var(--nav-bg-3) var(--nav-x-3, 0px),
      var(--nav-bg-3) calc(var(--nav-x-3, 0px) + var(--nav-w-3, 0px)),
      transparent calc(var(--nav-x-3, 0px) + var(--nav-w-3, 0px)),
      transparent 100%
    ),

    /* Navigation 4 */
    linear-gradient(
      90deg,
      transparent 0,
      transparent var(--nav-x-4, 0px),
      var(--nav-bg-4) var(--nav-x-4, 0px),
      var(--nav-bg-4) calc(var(--nav-x-4, 0px) + var(--nav-w-4, 0px)),
      transparent calc(var(--nav-x-4, 0px) + var(--nav-w-4, 0px)),
      transparent 100%
    ),

    /* Navigation 5 */
    linear-gradient(
      90deg,
      transparent 0,
      transparent var(--nav-x-5, 0px),
      var(--nav-bg-5) var(--nav-x-5, 0px),
      var(--nav-bg-5) calc(var(--nav-x-5, 0px) + var(--nav-w-5, 0px)),
      transparent calc(var(--nav-x-5, 0px) + var(--nav-w-5, 0px)),
      transparent 100%
    ),

    /* Base color split */
    linear-gradient(
      90deg,
      var(--base-left) 0,
      var(--base-left) var(--nav-zone-start, 0px),
      var(--base-right) var(--nav-zone-start, 0px),
      var(--base-right) 100%
    ),

    /* Vertical bands */
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0) 0px,
      rgba(255,255,255,0) var(--stripe-width),
      rgba(255,255,255,var(--stripe-alpha)) var(--stripe-width),
      rgba(255,255,255,var(--stripe-alpha)) calc(var(--stripe-width) * 2)
    ),

    var(--bg-base);
}

/* =====================
   Hero A body with overlapping text and media
===================== */
.hero-inner{
  position: relative;
  z-index: 1;
  max-width: var(--hero-wrap-max, 1200px);
  margin: 0 auto;
  padding: 0 var(--hero-wrap-pad, 22px);
  display: flex;
  align-items: flex-start;
  gap: 0;

  /* ===== Layout settings ===== */
  --copy-width: 480px;   /* Text width */
  --media-width: 720px;  /* Media width */
  --overlap: 60px;       /* Overlap width */
  --header-height: 86px; /* Header height */
}

.hero-copy{
  position: relative;
  z-index: 3;
  flex: 0 0 var(--copy-width);
  width: var(--copy-width);
  min-width: 0;
  padding-top: calc(var(--header-height) + 118px);
  margin-right: calc(var(--overlap) * -1);
}

.hero-media{
  position: relative;
  z-index: 2;
  flex: 0 0 var(--media-width);
  width: var(--media-width);
  min-width: 0;
  margin-left: auto;
  padding-top: calc(var(--header-height) + 95px);
}

.hero-img{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  /*border: 1px solid rgba(0,0,0,.07);*/
  background: #b9c0cf;
  overflow: hidden;
}

.hero-img > img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Typography */
.hero-copy h1{
  margin: 0;
  color: #13216b;
  font-size: 66px;
  line-height: 0.98;
  font-weight: 700;
}

.hero-copy p{
  margin: 22px 0 0;
  color: #222;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
}

.hero-btn{
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 230px;
  height: 54px;
  padding: 0 20px;
  background: #28449f;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.hero-link{
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  color: #28449f;
  font-size: 17px;
  font-weight: 700;
}

/* Tablet */
@media (max-width: 1200px){
  .hero-inner{
    --copy-width: 430px;
    --media-width: 700px;
    --overlap: 44px;
    --header-height: 86px;
    padding: 0 20px;
  }

  .hero-copy{
    padding-top: calc(var(--header-height) + 102px);
  }

  .hero-copy h1{
    font-size: 56px;
  }

  .hero-copy p{
    font-size: 14px;
  }

  .hero-media{
    padding-top: calc(var(--header-height) + 86px);
  }
}

/* Mobile */
@media (max-width: 768px){
  .hero-inner{
    display: block;
    padding: 0 16px;
    --header-height: 72px;
  }

  .hero-copy{
    width: 100%;
    margin-right: 0;
    padding-top: calc(var(--header-height) + 26px);
  }

  .hero-media{
    width: 100%;
    margin-left: 0;
    padding-top: 14px;
  }

  .hero-copy h1{
    font-size: 40px;
    line-height: 1.02;
  }

  .hero-copy p{
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.6;
  }

  .hero-btn{
    width: 100%;
    min-width: 0;
    height: 48px;
    font-size: 16px;
    margin-top: 16px;
  }

  .hero-link{
    width: 100%;
    margin-top: 8px;
    font-size: 14px;
  }
}


/* =========================
   Orthopedic Instruments
========================= */
.ortho-inst {
  background: #000 !important;
  padding: 96px 20px 110px;
}

.ortho-inst__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.ortho-inst__title {
  margin: 0;
  text-align: center;
  color: #c3a978;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.ortho-inst__grid {
  margin-top: 54px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 70px;
}

.ortho-inst__card {
  position: relative;
  display: block;
  width: 330px;
  flex: 0 0 330px;
  text-decoration: none;
}

.ortho-inst__back {
  position: absolute;
  z-index: 0;
  top: -26px;
  left: 34px;
  right: -26px;
  bottom: 42px;
  background: rgba(122, 105, 93, 0.42);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.48);
  pointer-events: none;
}

.ortho-inst__img {
  position: relative;
  z-index: 1;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.75);
  background: #050505;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.38);
}

.ortho-inst__img img {
  display: block;
  width: 100%;
  height: auto;
}

.ortho-inst__cta {
  margin-top: 58px;
  text-align: center;
}

.ortho-inst__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 232px;
  min-height: 72px;
  padding: 0 20px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  color: #fff;
  text-decoration: none;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: background-color .2s ease, color .2s ease;
}

.ortho-inst__btn:hover {
  background: #fff;
  color: #000;
}

.ortho-inst__btnArrow {
  font-size: 22px;
  line-height: 1;
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  .ortho-inst {
    padding: 72px 18px 86px;
  }

  .ortho-inst__inner {
    max-width: 980px;
  }

  .ortho-inst__grid {
    margin-top: 38px;
    gap: 28px;
  }

  .ortho-inst__card {
    width: calc((100% - 56px) / 3);
    flex: 0 0 calc((100% - 56px) / 3);
  }

  .ortho-inst__back {
    top: -18px;
    left: 24px;
    right: -16px;
    bottom: 26px;
  }

  .ortho-inst__cta {
    margin-top: 42px;
  }

  .ortho-inst__btn {
    min-height: 64px;
  }
}

@media (max-width: 767px) {
  .ortho-inst {
    padding: 60px 16px 76px;
  }

  .ortho-inst__title {
    font-size: 34px;
    line-height: 1.15;
  }

  .ortho-inst__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 30px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .ortho-inst__card {
    width: 100%;
    flex: initial;
  }

  .ortho-inst__back {
    top: -14px;
    left: 28px;
    right: -14px;
    bottom: 22px;
  }

  .ortho-inst__cta {
    margin-top: 34px;
  }

  .ortho-inst__btn {
    width: 100%;
    max-width: 320px;
    min-height: 62px;
  }
}

/* =========================
   Custom Design
========================= */
.custom-design {
  background: #c4aa79;
  padding: 90px 20px 100px;
}

.custom-design__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  /*gap: 74px;*/
  gap: 40px;
}

.custom-design__media {
  /*width: 645px;
  flex: 0 0 645px;*/
  width: 600px;
  flex: 0 0 600px;
}

.custom-design__media img {
  display: block;
  width: 100%;
  height: auto;
}

.custom-design__body {
  /*width: 560px;
  flex: 0 0 560px;*/
  width: 560px;
  flex: 0 0 560px;
  padding-top: 2px;
}

.custom-design__title {
  margin: 0;
  color: #122169;
  font-size: clamp(42px, 4vw, 78px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.custom-design__text {
  margin: 24px 0 0;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
}

.custom-design__text--spacer {
  margin-top: 22px;
}

.custom-design__cta {
  margin-top: 48px;
}

/* Smaller button */
.custom-design__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 248px;
  height: 70px;
  padding: 0 22px;
  background: #122169;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: opacity .2s ease;
}

.custom-design__btn:hover {
  opacity: 0.88;
}

.custom-design__btnArrow {
  font-size: 22px;
  line-height: 1;
  transform: translateY(-1px);
}

/* Tablet */
@media (max-width: 1200px) {
  .custom-design {
    padding: 72px 18px 84px;
  }

  .custom-design__inner {
    gap: 36px;
    align-items: center;
  }

  .custom-design__media {
    width: calc(50% - 18px);
    flex: 0 0 calc(50% - 18px);
  }

  .custom-design__body {
    width: calc(50% - 18px);
    flex: 0 0 calc(50% - 18px);
  }

  .custom-design__title {
    font-size: clamp(36px, 4vw, 56px);
  }

  .custom-design__text {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.75;
  }

  .custom-design__text--spacer {
    margin-top: 16px;
  }

  .custom-design__cta {
    margin-top: 30px;
  }

  .custom-design__btn {
    min-width: 210px;
    height: 58px;
    padding: 0 18px;
    font-size: 14px;
    gap: 10px;
  }

  .custom-design__btnArrow {
    font-size: 18px;
  }
}

/* SP */
@media (max-width: 767px) {
  .custom-design {
    padding: 56px 16px 64px;
  }

  .custom-design__inner {
    display: block;
    max-width: 520px;
  }

  .custom-design__media {
    width: 100%;
  }

  .custom-design__body {
    width: 100%;
    margin-top: 22px;
    padding-top: 0;
  }

  .custom-design__title {
    font-size: 38px;
    line-height: 1.08;
  }

  .custom-design__text {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.7;
  }

  .custom-design__text--spacer {
    margin-top: 12px;
  }

  .custom-design__cta {
    margin-top: 22px;
  }

  .custom-design__btn {
    min-width: 0;
    width: 220px;
    height: 52px;
    padding: 0 16px;
    font-size: 14px;
    gap: 8px;
  }

  .custom-design__btnArrow {
    font-size: 16px;
  }
}

/* =========================
   Quality & Regulatory
========================= */
.quality-reg {
  background: #dfdfdf;
  padding: 86px 20px 96px;
}

.quality-reg__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.quality-reg__title {
  margin: 0;
  text-align: center;
  color: #000;
  font-size: clamp(42px, 4vw, 74px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.quality-reg__grid {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
}

.quality-reg__item {
  width: 220px;
  text-align: center;
}

.quality-reg__icon {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quality-reg__icon img {
  display: block;
  width: 84px;
  height: 84px;
  object-fit: contain;
  opacity: 0.92;
}

.quality-reg__label {
  margin: 12px 0 0;
  color: #111;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}

.quality-reg__textWrap {
  max-width: 1200px;
  margin: 52px auto 0;
}

.quality-reg__text {
  margin: 0;
  color: #3d3d3d;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.95;
  text-align: left;
}

.quality-reg__text + .quality-reg__text {
  margin-top: 2px;
}

.quality-reg__cta {
  margin-top: 34px;
  text-align: center;
}

.quality-reg__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 240px;
  height: 78px;
  padding: 0 22px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: opacity .2s ease;
}

.quality-reg__btn:hover {
  opacity: 0.88;
}

.quality-reg__btnArrow {
  font-size: 22px;
  line-height: 1;
  transform: translateY(-1px);
}

/* Tablet */
@media (max-width: 1200px) {
  .quality-reg {
    padding: 72px 18px 84px;
  }

  .quality-reg__grid {
    gap: 20px;
    margin-top: 42px;
  }

  .quality-reg__item {
    width: calc((100% - 60px) / 4);
  }

  .quality-reg__icon {
    height: 90px;
  }

  .quality-reg__icon img {
    width: 68px;
    height: 68px;
  }

  .quality-reg__label {
    font-size: 16px;
  }

  .quality-reg__textWrap {
    margin-top: 38px;
  }

  .quality-reg__text {
    font-size: 15px;
    line-height: 1.8;
  }

  .quality-reg__cta {
    margin-top: 28px;
  }

  .quality-reg__btn {
    min-width: 216px;
    height: 64px;
    font-size: 14px;
  }

  .quality-reg__btnArrow {
    font-size: 18px;
  }
}

/* SP */
@media (max-width: 767px) {
  .quality-reg {
    padding: 56px 16px 64px;
  }

  .quality-reg__title {
    font-size: 40px;
    line-height: 1.08;
  }

  .quality-reg__grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .quality-reg__item {
    width: 100%;
  }

  .quality-reg__icon {
    height: 72px;
  }

  .quality-reg__icon img {
    width: 56px;
    height: 56px;
  }

  .quality-reg__label {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.25;
  }

  .quality-reg__textWrap {
    margin-top: 28px;
  }

  .quality-reg__text {
    font-size: 13px;
    line-height: 1.75;
  }

  .quality-reg__cta {
    margin-top: 22px;
  }

  .quality-reg__btn {
    width: 220px;
    height: 52px;
    padding: 0 16px;
    gap: 8px;
    font-size: 14px;
  }

  .quality-reg__btnArrow {
    font-size: 16px;
  }
}


/* =========================
   About Us
========================= */
.about-us {
  background: #969696;
  padding: 96px 20px 104px;
}

.about-us__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  /*gap: 88px;*/
  gap: 0px;
}

.about-us__body {
  /*width: 640px;
  flex: 0 0 640px;*/
  width: 600px;
  flex: 0 0 600px;
  padding-top: 2px;
}

.about-us__title {
  margin: 0;
  color: #c4aa78;
  font-size: clamp(44px, 4.2vw, 82px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

.about-us__text {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
}

.about-us__text--spacer {
  margin-top: 34px;
}

.about-us__cta {
  margin-top: 42px;
}

.about-us__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 272px;
  height: 70px;
  padding: 0 22px;
  background: #c4aa79;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: opacity .2s ease;
}

.about-us__btn:hover {
  opacity: 0.88;
}

.about-us__btnArrow {
  font-size: 22px;
  line-height: 1;
  transform: translateY(-1px);
}

.about-us__media {
  /*width: 604px;
  flex: 0 0 604px;*/
  width: 600px;
  flex: 0 0 600px;
  margin-top: 28px;
}

.about-us__media img {
  display: block;
  width: 100%;
  height: auto;
}

/* Tablet */
@media (max-width: 1200px) {
  .about-us {
    padding: 72px 18px 84px;
  }

  .about-us__inner {
    gap: 36px;
    align-items: center;
  }

  .about-us__body {
    width: calc(50% - 18px);
    flex: 0 0 calc(50% - 18px);
  }

  .about-us__media {
    width: calc(50% - 18px);
    flex: 0 0 calc(50% - 18px);
    margin-top: 0;
  }

  .about-us__title {
    font-size: clamp(36px, 4vw, 58px);
  }

  .about-us__text {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.75;
  }

  .about-us__text--spacer {
    margin-top: 20px;
  }

  .about-us__cta {
    margin-top: 28px;
  }

  .about-us__btn {
    min-width: 220px;
    height: 58px;
    padding: 0 18px;
    font-size: 14px;
    gap: 10px;
  }

  .about-us__btnArrow {
    font-size: 18px;
  }
}

/* SP */
@media (max-width: 767px) {
  .about-us {
    padding: 56px 16px 64px;
  }

  .about-us__inner {
    display: block;
    max-width: 520px;
  }

  .about-us__body {
    width: 100%;
    padding-top: 0;
  }

  .about-us__title {
    font-size: 40px;
    line-height: 1.08;
  }

  .about-us__text {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.7;
  }

  .about-us__text--spacer {
    margin-top: 16px;
  }

  .about-us__cta {
    margin-top: 22px;
  }

  .about-us__btn {
    min-width: 0;
    width: 220px;
    height: 52px;
    padding: 0 16px;
    font-size: 14px;
    gap: 8px;
  }

  .about-us__btnArrow {
    font-size: 16px;
  }

  .about-us__media {
    width: 100%;
    margin-top: 24px;
  }
}

/* =========================
   Our Latest News
========================= */
.latest-news {
  background: #dfdfdf;
  padding: 86px 20px 92px;
}

.latest-news__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.latest-news__title {
  margin: 0;
  text-align: center;
  color: #13216a;
  font-size: clamp(42px, 4vw, 72px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
}

.latest-news__grid {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
}

.latest-news__card {
  width: 286px;
  flex: 0 0 286px;
  display: flex;
  flex-direction: column;
  background: #f7f7f7;
  color: #111;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.latest-news__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.latest-news__cardBody {
  padding: 18px 22px 10px;
  min-height: 148px;
}

.latest-news__cardTitle {
  margin: 0;
  color: #111;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.latest-news__date {
  margin: 26px 0 0;
  color: #222;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}

.latest-news__thumb {
  width: 100%;
  aspect-ratio: 252 / 170;
  overflow: hidden;
  background: #ddd;
}

.latest-news__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-news__cardFoot {
  padding: 8px 22px 18px;
  flex: 1 1 auto;
}

.latest-news__excerpt {
  margin: 0;
  color: #222;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.latest-news__cta {
  margin-top: 42px;
  text-align: center;
}

.latest-news__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 228px;
  height: 74px;
  padding: 0 20px;
  background: #13216a;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: opacity .2s ease;
}

.latest-news__btn:hover {
  opacity: 0.88;
}

.latest-news__btnArrow {
  font-size: 22px;
  line-height: 1;
  transform: translateY(-1px);
}

/* Tablet */
@media (max-width: 1200px) {
  .latest-news {
    padding: 72px 18px 84px;
  }

  .latest-news__grid {
    gap: 16px;
    margin-top: 36px;
  }

  .latest-news__card {
    width: calc((100% - 48px) / 4);
    flex: 0 0 calc((100% - 48px) / 4);
  }

  .latest-news__cardBody {
    padding: 14px 14px 8px;
    min-height: 130px;
  }

  .latest-news__cardTitle {
    font-size: 15px;
  }

  .latest-news__date {
    margin-top: 18px;
    font-size: 14px;
  }

  .latest-news__cardFoot {
    padding: 8px 14px 14px;
  }

  .latest-news__excerpt {
    font-size: 13px;
  }

  .latest-news__btn {
    min-width: 210px;
    height: 62px;
    font-size: 14px;
  }

  .latest-news__btnArrow {
    font-size: 18px;
  }
}

/* SP */
@media (max-width: 767px) {
  .latest-news {
    padding: 56px 16px 64px;
  }

  .latest-news__title {
    font-size: 40px;
    line-height: 1.08;
  }

  .latest-news__grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .latest-news__card {
    width: 100%;
    flex: initial;
  }

  .latest-news__cardBody {
    min-height: 0;
    padding: 14px 14px 8px;
  }

  .latest-news__cardTitle {
    font-size: 16px;
    -webkit-line-clamp: 3;
  }

  .latest-news__date {
    margin-top: 14px;
    font-size: 14px;
  }

  .latest-news__cardFoot {
    padding: 8px 14px 14px;
  }

  .latest-news__excerpt {
    font-size: 13px;
    line-height: 1.45;
  }

  .latest-news__cta {
    margin-top: 24px;
  }

  .latest-news__btn {
    width: 220px;
    height: 52px;
    padding: 0 16px;
    gap: 8px;
    font-size: 14px;
  }

  .latest-news__btnArrow {
    font-size: 16px;
  }
}

/* =========================
   Hero video support
========================= */
.hero-img > video{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Align with the title */
.hero-media{
  padding-top: calc(var(--header-height) + 118px);
}

/*@media (max-width: 1200px){
  .hero-media{
    padding-top: calc(var(--header-height) + 102px);
  }
}*/

@media (max-width: 1200px){
  .hero-media{
    padding-top: calc(var(--header-height) + 10px);
  }
}


/* ==================================================
   Orthopedic Instruments Layout Update
   Updated: 2026-07-13
   Change: Display four product cards within 1200px
================================================== */

#top .ortho-inst__inner {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1101px) {
  #top .ortho-inst__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
    width: calc(100% - 26px);
    max-width: 1174px;
    margin: 54px auto 0;
  }

  #top .ortho-inst__card {
    width: 100%;
    min-width: 0;
    flex: none;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  #top .ortho-inst__inner {
    max-width: 980px;
  }

  #top .ortho-inst__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 28px;
    width: calc(100% - 16px);
    max-width: 760px;
    margin: 38px auto 0;
  }

  #top .ortho-inst__card {
    width: 100%;
    min-width: 0;
    flex: none;
  }
}

/* ==================================================
   Orthopedic Instruments Hover Effect
   Updated: 2026-07-13
   Change: Shift the front image on hover
================================================== */

.ortho-inst__img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .ortho-inst__card:hover .ortho-inst__img {
    transform: translate(-8px, -8px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.5);
  }
}

.ortho-inst__card:focus-visible .ortho-inst__img {
  transform: translate(-8px, -8px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  .ortho-inst__img {
    transition: none;
  }
}

@media (max-width: 767px) {
  .quality-reg__icon {
    height: 120px;
  }

  .quality-reg__icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
  }

  .quality-reg__label {
    margin-top: 12px;
  }
}


/* ==================================================
   Japanese Website Notice
================================================== */

body.is-popup-open{
  overflow: hidden;
}

.japanese-site-popup{
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    visibility .25s ease,
    opacity .25s ease;
}

.japanese-site-popup.is-open{
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.japanese-site-popup__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .62);
}

.japanese-site-popup__dialog{
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 54px 44px 46px;
  background: #fff;
  text-align: center;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .28);
  transform: translateY(12px);
  transition: transform .25s ease;
}

.japanese-site-popup.is-open
.japanese-site-popup__dialog{
  transform: translateY(0);
}

.japanese-site-popup__close{
  position: absolute;
  top: 14px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  font-family: inherit;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.japanese-site-popup__title{
  margin: 0;
  color: #13216a;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.45;
  font-weight: 700;
}

.japanese-site-popup__text{
  margin: 8px 0 0;
  color: #555;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 500;
}

.japanese-site-popup__link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 50px;
  margin-top: 30px;
  padding: 0 26px;
  background: #13216a;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s ease;
}

.japanese-site-popup__link:hover{
  opacity: .75;
}

.japanese-site-popup__link > span:first-child{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.japanese-site-popup__link small{
  font-size: 11px;
  line-height: 1;
  font-weight: 500;
}

@media (max-width: 768px){
  .japanese-site-popup{
    padding: 18px;
  }

  .japanese-site-popup__dialog{
    width: 100%;
    padding: 48px 22px 38px;
  }

  .japanese-site-popup__title{
    font-size: 19px;
  }

  .japanese-site-popup__text{
    font-size: 12px;
  }

  .japanese-site-popup__link{
    width: 100%;
    min-height: 48px;
    margin-top: 26px;
    padding: 0 18px;
    font-size: 13px;
  }
}




/* ==================================================
   Home Page - Font Size Normalization
================================================== */

/* Page title / Hero H1 */
#top .hero-copy h1{
  font-size: clamp(44px, 4vw, 68px);
}

/* Main section H2 */
#top .ortho-inst__title,
#top .custom-design__title,
#top .quality-reg__title,
#top .about-us__title,
#top .latest-news__title{
  font-size: clamp(38px, 3.55vw, 60px);
}

/* Supporting H3 */
#top .quality-reg__label,
#top .latest-news__cardTitle{
  font-size: 20px;
}

/* Body and lead text */
#top .hero-copy p,
#top .custom-design__text,
#top .quality-reg__text,
#top .about-us__text,
#top .latest-news__excerpt{
  font-size: 18px;
  font-weight: normal;
}

@media (max-width: 768px){

  /* Page title / Hero H1 */
  #top .hero-copy h1{
    font-size: clamp(36px, 11vw, 52px);
  }

  /* Main section H2 */
  #top .ortho-inst__title,
  #top .custom-design__title,
  #top .quality-reg__title,
  #top .about-us__title,
  #top .latest-news__title{
    font-size: clamp(34px, 9vw, 46px);
  }

  /* Supporting H3 */
  #top .quality-reg__label,
  #top .latest-news__cardTitle{
    font-size: 17px;
  }

  /* Body and lead text */
  #top .hero-copy p,
  #top .custom-design__text,
  #top .quality-reg__text,
  #top .about-us__text,
  #top .latest-news__excerpt{
    font-size: 13px;
  }
}




/*----------------
Customize
----------------------------------*/
/*20260821*/
.hero-btn,
.latest-news__btn,
.custom-design__btn,
.quality-reg__btn,
.about-us__btn,
.latest-news__btn
 {
    min-width: 220px;
    height: 60px;
    padding: 0 15px;
}


