.carousel {
  position: relative;
  width: 100%;
  height: auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.carousel-slide {
  height: 100%;
  min-width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.carousel-slide a {
  display: block;
  margin-inline: auto;
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.carousel-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.carousel-button {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--meltline-color-base-container-default);
  transition: background 0.3s;
}

.carousel-button:hover {
  background-color: var(--meltline-color-base-container-default-dark-90);
}

.carousel-button:active {
  background-color: var(--meltline-color-base-container-default-dark-80);
}

.carousel-action-button {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--meltline-color-base-container-default);
  transition: background 0.3s;
}

.carousel-action-button:hover {
  background-color: var(--meltline-color-base-container-default-dark-90);
}

.carousel-action-button:active {
  background-color: var(--meltline-color-base-container-default-dark-80);
}

.carousel-action-button .icon-play {
  display: none;
}

.carousel-action-button.is-paused .icon-pause {
  display: none;
}

.carousel-action-button.is-paused .icon-play {
  display: block;
}

.carousel-dots {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 16px;
}

.carousel-dot {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: var(--meltline-color-base-foreground-subtle);
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-dot.is-active {
  background-color: var(--meltline-color-primary);
}

.carousel-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
}

.carousel-menus {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 5;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: auto;
  pointer-events: none;
}

.carousel-menus .carousel-dots {
  pointer-events: auto;
}
.bg-motif {
  background-attachment: fixed;
  background-image: url('../image/common/motif-background.png');
  background-repeat: no-repeat;
  background-position: center center;
  object-fit: cover;
  background-size: 100%;
}
.top__card-link {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
}
.top__card-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.top__card-bottom .link-circle {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}
@media screen and (max-width: 1023px) {

  .carousel-slide a {
    width: 100%;
  }

  .carousel-menus {
    bottom: 18px;
    padding: 0;
  }
}

/* ==================================
 2604追加 お知らせレイアウト変更
================================== */

.important-news-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  column-gap: 24px;
  align-items: start;
}

.important-news-date {
  margin: 0;
}

.important-news-title {
  min-width: 0;
}


.important-news-more a {
  margin-left: auto;
}


@media screen and (max-width: 1024px) {
  .important-news-item {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }

  .important-news-more {
    position: static;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
  }
}

/*---------------------------------------------
  ディスクレーマー表示　2106追加
  ---------------------------------------------*/

#s-modal {
    position: fixed;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 2147483647;
    padding: 20px;
    text-align: left;
    background: #000;
    color: #fff;
    display: flex;
    line-height: 1.7;
}

#s-modal p {
    color: #fff;
    padding: 10px;
}

#s-modal a {
    color: #fff;
    text-decoration: underline;
}

#s-modal a:hover {
    text-decoration: none;
}

#s-modal_close {
    padding: 5px;
    cursor: pointer;
    background: #fff;
    padding: 10px 30px;
    width: 140px;
    text-align: center;
    color: #000;
    margin: auto;
}

#s-modal_close a {
    color: #000;
    text-align: none;
}

/* Home refresh: align the copied top page with the inner-page design language. */

#acquisition_n {
  color: var(--brand-ink, #111827);
}


#acquisition_n .container-1600 {
  max-width: 1456px;
}

#acquisition_n main > section {
  padding-left: 72px !important;
  padding-right: 72px !important;
}

#acquisition_n main > section:first-child {
  max-width: none;
  padding: 0 !important;

}

#acquisition_n main > section:first-child::after {
  display: none;
}

#acquisition_n .carousel {
  min-height: 430px;
  /*background: linear-gradient(90deg, rgba(2, 21, 49, 0.95), rgba(2, 37, 84, 0.52));*/
}

#acquisition_n .carousel-slide {
  max-height: none;
}

#acquisition_n .carousel-slide a {
  position: relative;
  z-index: 2;
}

#acquisition_n .carousel-slide img {
  object-fit: cover;
}

#acquisition_n .carousel-menus {
  bottom: 8px;
  z-index: 4;
}

#acquisition_n .carousel-dots {
  gap: 10px;
  padding: 10px 16px;
}

#acquisition_n main > section:nth-of-type(n + 2) {
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

#acquisition_n main > section:nth-of-type(2) {
  padding-top: 48px !important;
  padding-bottom: 24px !important;
}

#acquisition_n main > section:nth-of-type(2) > div {
  padding: 42px !important;
  border: 1px solid var(--brand-line, #dbe4ef);
  background: linear-gradient(180deg, #073b7d 0%, #00469b 100%) !important;
  box-shadow: 0 18px 42px rgba(15, 35, 70, 0.08);
}

#acquisition_n main > section:nth-of-type(2) h3 {
  color: #fff !important;
  font-size: clamp(24px, 3vw, 40px) !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

#acquisition_n main > section:nth-of-type(2) h3::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 3px;
  margin-right: 12px;
  border-radius: 999px;
  vertical-align: 0.24em;
  background: #20a3ff;
}

#acquisition_n main > section:nth-of-type(2) form .f {
  gap: 14px !important;
}

#acquisition_n #gsearch_kw_top {
  height: 54px !important;
  padding: 0 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: var(--brand-ink, #111827);
  font-size: 15px;
  font-weight: 600;
}

#acquisition_n #gsearch_form_top button {
  min-width: 150px;
  height: 54px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: var(--brand-blue, #00469b) !important;
  font-weight: 800;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  font-weight: 800;
}

.section-head h2 span {
  color: var(--brand-blue);
}

.section-head p {
  margin: 0;
  color: var(--brand-muted);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 600;
}

#acquisition_n .important-news-item {
  grid-template-columns: 100px minmax(0, 1fr);
}

#acquisition_n .important-news-date {
  color: var(--brand-blue, #00469b) !important;
  font-weight: 800;
}

#acquisition_n .important-news-title {
  color: #26364d !important;
  font-weight: 700;
}

#acquisition_n main > section:nth-of-type(n + 4) h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 32px) !important;
  line-height: 1 !important;
  font-weight: 800 !important;
}

#acquisition_n main > section:nth-of-type(n + 4) h2 .text-primary {
  color: var(--brand-blue, #00469b) !important;
}

#acquisition_n main > section:nth-of-type(n + 4) p {
  /* color: var(--brand-muted, #64748b); */
  /* font-weight: 600; */
  /* line-height: 1.8; */
}

#acquisition_n .top__card-link,
#acquisition_n .grid-autofit-250 > a,
#acquisition_n .js-news-tab-panel > a {
  border: 1px solid var(--brand-line, #dbe4ef) !important;
  background: #fff !important;
  box-shadow: 0 10px 28px rgba(15, 35, 70, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

#acquisition_n .top__card-link:hover,
#acquisition_n .grid-autofit-250 > a:hover,
#acquisition_n .js-news-tab-panel > a:hover {
  border-color: #b8cbe2 !important;
  box-shadow: 0 18px 42px rgba(15, 35, 70, 0.09);
  transform: translateY(-2px);
}

#acquisition_n .top__card-bottom {
  position: relative;
  padding: 20px  24px!important;
  background: #fff !important;
  color: var(--brand-ink, #111827) !important;
}

#acquisition_n .top__card-bottom::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--brand-blue, #00469b);
}

#acquisition_n .top__card-bottom p:first-child {
  font-size: 24px !important;
  line-height:1 !important;
}

#acquisition_n .top__card-bottom p:nth-child(2) {
  color: var(--brand-muted, #64748b) !important;
}

#acquisition_n .product-nav-image {
  background: linear-gradient(135deg, #eef6ff 0%, #fff 100%);
}

#acquisition_n main > section:nth-of-type(5) > div {
  padding: 42px !important;
  border: 1px solid var(--brand-line, #dbe4ef) !important;
  background: #fff !important;
  box-shadow: 0 10px 28px rgba(15, 35, 70, 0.05);
}

#acquisition_n main > section:nth-of-type(5) .border,
#acquisition_n main > section:nth-of-type(6) .border-left,
#acquisition_n main > section:nth-of-type(6) .border-top {
  border-color: var(--brand-line, #dbe4ef) !important;
}

#acquisition_n .grid-autofit-250 {
  border: 0 !important;
  gap: 18px !important;
}

#acquisition_n .grid-autofit-250 > a {
  padding: 28px !important;
}

#acquisition_n .grid-autofit-250 > a::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--brand-blue, #00469b);
}

#acquisition_n .js-news-tab-container {
  padding: 34px;
  border: 1px solid var(--brand-line, #dbe4ef);
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 35, 70, 0.05);
}

#acquisition_n .js-news-tab-btn {
  border-radius: 0 !important;
  font-weight: 800 !important;
}

#acquisition_n .js-news-tab-panel > a {
  margin-top: 12px;
  padding: 22px 24px !important;
}

body > footer {
  padding: 42px 72px !important;
  background: #06152b !important;
  color: rgba(255, 255, 255, 0.72) !important;
}

body > footer > div {
  max-width: 1456px;
}

body > footer .grid,
body > footer .h1,
body > footer .m-hide,
body > footer .s-hide {
  display: none !important;
}

body > footer img[alt="smc"] {
  width: 182px;
  height: auto;
}

.side-nav-top {
  display: none !important;
}

#s-modal {
  display: none !important;
}

/* Simplified home sections: title on the left, content on the right, no heavy card effects. */
#acquisition_n main > section:nth-of-type(n + 4) > .f,
#acquisition_n main > section:nth-of-type(7) > .f {
  display: grid !important;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px !important;
  align-items: start;
}

#acquisition_n .top__card-link,
#acquisition_n .grid-autofit-250 > a,
#acquisition_n .js-news-tab-panel > a,
#acquisition_n main > section:nth-of-type(3) > div,
#acquisition_n main > section:nth-of-type(5) > div,
#acquisition_n .js-news-tab-container {
  box-shadow: none !important;
}

#acquisition_n .top__card-link:hover,
#acquisition_n .grid-autofit-250 > a:hover,
#acquisition_n .js-news-tab-panel > a:hover {
  box-shadow: none !important;
  transform: none !important;
}

#acquisition_n main > section:nth-of-type(5) > div,
#acquisition_n .js-news-tab-container {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

#acquisition_n .js-news-tab-container > .s-hide.m-hide {
  margin-top: 0 !important;
  margin-bottom: 34px !important;
  justify-content: center !important;
}

#acquisition_n .js-news-tab-panel > a {
  margin-top: 10px;
  border: 1px solid var(--brand-line, #dbe4ef) !important;
  background: rgba(255, 255, 255, 0.76) !important;
}

#acquisition_n .top__card-bottom::before,
#acquisition_n .grid-autofit-250 > a::before {
  display: none !important;
}

#acquisition_n .product-nav-image {
  background: #f8fafc !important;
}

#acquisition_n #home-product-grid .home-product-card {
  width: 100%;
  min-width: 0;
}

#acquisition_n #home-product-grid .home-product-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: #fff;
  overflow: hidden;
}

#acquisition_n #home-product-grid .home-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#acquisition_n #home-product-grid .home-product-card__body {
  width: 100%;
}

@media screen and (max-width: 1023px) {
  #acquisition_n main > section {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  #acquisition_n main > section:first-child {
    padding: 0 !important;
  }


  #acquisition_n main > section:nth-of-type(n + 2) {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }


  #acquisition_n main > section:nth-of-type(2) form .f {
    flex-direction: column;
    align-items: stretch;
  }

  #acquisition_n main > section:nth-of-type(n + 4) > .f,
  #acquisition_n main > section:nth-of-type(7) > .f,
  #acquisition_n main > section:nth-of-type(4) > .mb48,
  #acquisition_n main > section:nth-of-type(6) > .fclm:first-child {
    grid-template-columns: 1fr;
    gap: 18px !important;
  }

  #acquisition_n main > section:nth-of-type(n + 4) h2 {
    max-width: none;
  }
.section-head {
        display: block;
    }.section-head p {
        margin-top: 18px;
    }
  #acquisition_n #gsearch_form_top button {
    width: 100%;
  }

  #acquisition_n .important-news-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body > footer {
    padding: 32px 18px !important;
  }
}

/* Home page simplification: white sections, no raised panels, lighter borders. */


#acquisition_n .top__card-link:hover,
#acquisition_n .grid-autofit-250 > a:hover,
#acquisition_n .js-news-tab-panel > a:hover {
  transform: none !important;
  box-shadow: none !important;
}

#acquisition_n main > section:nth-of-type(5) > div,
#acquisition_n .js-news-tab-container {
  border: 0 !important;
}

#acquisition_n .legacy-product-selection {
  display: none !important;
}


#acquisition_n .greeting-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

#acquisition_n .greeting-heading h2 {
  margin: 0;
  color: var(--brand-ink, #111827);
  font-size: clamp(34px, 4vw, 32px);
  line-height: 1.08;
  font-weight: 800;
}

#acquisition_n .greeting-heading h2 span {
  color: var(--brand-blue, #00469b);
}

#acquisition_n .greeting-body {
  max-width: 920px;
  color: #26364d;
  font-size: 16px;
  line-height: 2.05;
  font-weight: 600;
}

#acquisition_n .greeting-body p {
  margin: 0 0 14px;
}

#acquisition_n .greeting-signature {
  display: grid;
  gap: 4px;
  justify-items: end;
  margin-top: 30px;
  color: var(--brand-ink, #111827);
  line-height: 1.8;
}

#acquisition_n .greeting-signature strong {
  font-size: 19px;
  font-weight: 800;
}


#acquisition_n .philosophy-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#acquisition_n .philosophy-list li {
  min-height: 178px;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 30px;
  padding: 34px 40px;
  border-radius: 8px;
  background: #fff !important;
}

#acquisition_n .philosophy-list li::before {
  content: "";
  grid-row: 1 / 3;
  grid-column: 1;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background-color: #eef5ff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 66px 66px;
}

#acquisition_n .philosophy-list li:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%2300469b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 7l5.8 6.4 8.6-1 1 8.6 6.4 5.8-4.6 7.2 1.7 8.5-8.5 1.7-7.2 4.6-5.8-6.4-8.6 1-1-8.6-6.4-5.8 4.6-7.2-1.7-8.5 8.5-1.7L32 7z'/%3E%3Cpath d='M32 22l3.4 6.8 7.5 1.1-5.4 5.3 1.3 7.5-6.8-3.5-6.8 3.5 1.3-7.5-5.4-5.3 7.5-1.1L32 22z'/%3E%3C/svg%3E");
}

#acquisition_n .philosophy-list li:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%2300469b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 47h9V31h-9v16zM28 47h9V22h-9v25zM44 47h9V13h-9v34z'/%3E%3Cpath d='M12 25c11-2 19-7 25-16l4 6 9-10'/%3E%3Cpath d='M50 5v12H38'/%3E%3C/svg%3E");
}

#acquisition_n .philosophy-list li:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%2300469b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 7l20 8v14c0 13-8 23-20 28-12-5-20-15-20-28V15l20-8z'/%3E%3Cpath d='M22 32l7 7 14-17'/%3E%3C/svg%3E");
}

#acquisition_n .philosophy-list li:nth-child(4)::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%2300469b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 35l8 8 18-18'/%3E%3Cpath d='M16 34l10-10 11 11'/%3E%3Cpath d='M12 39l10 10c3 3 8 3 11 0l4-4'/%3E%3Cpath d='M42 20l10 10c3 3 3 8 0 11l-9 9'/%3E%3C/svg%3E");
}

#acquisition_n .philosophy-list h3 {
  grid-column: 2;
  margin: 0;
  color: var(--brand-ink, #111827);
  font-size: 27px;
  line-height: 1.35;
  font-weight: 800;
}

#acquisition_n .philosophy-list h3::after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin: 13px 0 0;
  border-radius: 999px;
  background: #0b76e0;
}

#acquisition_n .philosophy-list p {
  grid-column: 2;
  /* margin: 0; */
  /* color: #334155; */
  font-size: 14px;
  /* line-height: 1.85; */
  /* font-weight: 600; */
}

@media screen and (max-width: 1023px) {
  #acquisition_n .greeting-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  #acquisition_n .greeting-body {
    font-size: 15px;
    line-height: 1.9;
  }

  #acquisition_n .greeting-signature {
    justify-items: start;
  }

  #acquisition_n .philosophy-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #acquisition_n .philosophy-list li {
    grid-template-columns: 86px minmax(0, 1fr);
    column-gap: 18px;
    min-height: 136px;
    padding: 24px 18px;
  }

  #acquisition_n .philosophy-list li::before {
    width: 76px;
    height: 76px;
    background-size: 46px 46px;
  }

  #acquisition_n .philosophy-list h3 {
    font-size: 21px;
  }
}

/* Codex: enterprise philosophy cards in catalog-style layout */
#acquisition_n .philosophy-section {
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

#acquisition_n .philosophy-list {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  border-top: 1px solid #d8e1eb !important;
  border-left: 1px solid #d8e1eb !important;
}

#acquisition_n .philosophy-list li {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: 168px auto auto !important;
  align-items: stretch !important;
  min-height: 300px !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  border-right: 1px solid #d8e1eb !important;
  border-bottom: 1px solid #d8e1eb !important;
  box-shadow: none !important;
}

#acquisition_n .philosophy-list li::before {
  content: "" !important;
  grid-row: 1 !important;
  grid-column: 1 !important;
  align-self: center !important;
  justify-self: center !important;
  width: 118px !important;
  height: 118px !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 104px 104px !important;
  opacity: .9 !important;
}

#acquisition_n .philosophy-list li::after {
  content: "" !important;
  position: absolute !important;
  right: 24px !important;
  bottom: 36px !important;
  width: 32px !important;
  height: 32px !important;
  border: 1px solid rgba(255,255,255,.92) !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, #fff 0 3px, transparent 4px) !important;
}

#acquisition_n .philosophy-list li:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 96 96' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23004f9f' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M48 10l8 10 13-2 3 13 12 6-6 12 6 12-12 6-3 13-13-2-8 10-8-10-13 2-3-13-12-6 6-12-6-12 12-6 3-13 13 2z'/%3E%3Cpath d='M48 32l5 10 11 2-8 8 2 12-10-6-10 6 2-12-8-8 11-2z'/%3E%3C/svg%3E") !important;
}

#acquisition_n .philosophy-list li:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 96 96' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23004f9f' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 76h60'/%3E%3Cpath d='M24 70V48h12v22'/%3E%3Cpath d='M44 70V34h12v36'/%3E%3Cpath d='M64 70V22h12v48'/%3E%3Cpath d='M22 34c12-4 22-12 30-24l8 10 14-16'/%3E%3Cpath d='M74 4v18H56'/%3E%3C/svg%3E") !important;
}

#acquisition_n .philosophy-list li:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 96 96' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23004f9f' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M48 10l28 12v20c0 20-12 34-28 44-16-10-28-24-28-44V22z'/%3E%3Cpath d='M32 48l11 11 24-25'/%3E%3C/svg%3E") !important;
}

#acquisition_n .philosophy-list li:nth-child(4)::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 96 96' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23004f9f' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M34 52l14 14 34-34'/%3E%3Cpath d='M18 54l16 16c5 5 12 5 17 0l7-7'/%3E%3Cpath d='M20 42l14-14 18 18'/%3E%3Cpath d='M62 54l14 14'/%3E%3C/svg%3E") !important;
}

#acquisition_n .philosophy-list h3 {
  grid-row: 2 !important;
  grid-column: 1 / -1 !important;
  width: auto !important;
  max-width: none !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 26px 74px 0 28px !important;
  background: #0057a8 !important;
  color: #fff !important;
  font-size: clamp(22px, 1.6vw, 28px) !important;
  line-height: 1.22 !important;
  font-weight: 800 !important;
}

#acquisition_n .philosophy-list h3::after {
  content: none !important;
}


@media (max-width: 1023px) {
  #acquisition_n .philosophy-section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  #acquisition_n .philosophy-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #acquisition_n .philosophy-list li {
    grid-template-rows: 130px auto auto !important;
    min-height: 258px !important;
  }

  #acquisition_n .philosophy-list li::before {
    width: 92px !important;
    height: 92px !important;
    background-size: 82px 82px !important;
  }

  #acquisition_n .philosophy-list h3 {
    padding: 22px 58px 0 22px !important;
    font-size: 21px !important;
  }

  #acquisition_n .philosophy-list li::after {
    right: 20px !important;
    bottom: 32px !important;
    width: 28px !important;
    height: 28px !important;
  }
}

@media (max-width: 640px) {
  #acquisition_n .philosophy-list {
    grid-template-columns: 1fr !important;
  }
}


/* Codex: SMC-style hover for home philosophy cards */
@media (hover: hover) and (pointer: fine) {
  #acquisition_n .philosophy-list {
    overflow: visible !important;
  }

  #acquisition_n .philosophy-list li {
    position: relative !important;
    z-index: 0 !important;
    transform-origin: center center !important;
    transition: transform 0.3s !important;
    will-change: transform;
  }

  #acquisition_n .philosophy-list li:hover {
    z-index: 1 !important;
    transform: scale(1.05) !important;
  }

  #acquisition_n .philosophy-list li::after {
    transform-origin: center center !important;
    transition: transform 0.3s !important;
  }

  #acquisition_n .philosophy-list li:hover::after {
    transform: scale(1.2) !important;
  }
}

/* Codex: SMC product-nav hover, applied directly on home philosophy cards */
#acquisition_n .philosophy-list {
  overflow: visible !important;
}

#acquisition_n .philosophy-list li {
  position: relative !important;
  z-index: 0 !important;
  transform-origin: center center !important;
  transition: transform 0.3s !important;
  will-change: transform;
}

#acquisition_n .philosophy-list li:hover,
#acquisition_n .philosophy-list li:focus-within {
  z-index: 1 !important;
  transform: scale(1.05) !important;
}

#acquisition_n .philosophy-list li::after {
  transform-origin: center center !important;
  transition: transform 0.3s !important;
}

#acquisition_n .philosophy-list li:hover::after,
#acquisition_n .philosophy-list li:focus-within::after {
  transform: scale(1.2) !important;
}

/* Codex: SMC-matched HTML card layout for home philosophy */
#acquisition_n .smc-philosophy-section .smc-philosophy-list {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  overflow: visible !important;
}

#acquisition_n .smc-philosophy-section .smc-philosophy-list > li {
  display: block !important;
  min-height: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  position: relative !important;
  z-index: 0 !important;
}

#acquisition_n .smc-philosophy-section .smc-philosophy-list > li::before,
#acquisition_n .smc-philosophy-section .smc-philosophy-list > li::after {
  content: none !important;
}


#acquisition_n .smc-philosophy-section .smc-philosophy-list > li + li .philosophy-card {
  margin-left: -1px !important;
}

#acquisition_n .smc-philosophy-section .philosophy-card:hover,
#acquisition_n .smc-philosophy-section .philosophy-card:focus-visible {
  transform: scale(1.05) !important;
  z-index: 2 !important;
}

#acquisition_n .smc-philosophy-section .philosophy-card-image {
  min-height: 170px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px 22px 14px !important;
  background: #fff !important;
}

#acquisition_n .smc-philosophy-section .philosophy-card-image img {
  width: 158px !important;
  height: 126px !important;
  object-fit: contain !important;
}

#acquisition_n .smc-philosophy-section .philosophy-card-bottom {

  background: #005bac !important;
}

#acquisition_n .smc-philosophy-section .philosophy-card-bottom p {
  /* margin: 0 !important; */
  color: #fff !important;
}


#acquisition_n .smc-philosophy-section .philosophy-card-bottom .link-circle {
  grid-column: 2 !important;
  grid-row: 1 / 3 !important;
  width: 32px !important;
  height: 32px !important;
  border: 1px solid rgba(255,255,255,0.95) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.3s !important;
}

#acquisition_n .smc-philosophy-section .philosophy-card-bottom .link-circle-dot {
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: #fff !important;
  transition: transform 0.3s !important;
}

#acquisition_n .smc-philosophy-section .philosophy-card:hover .link-circle,
#acquisition_n .smc-philosophy-section .philosophy-card:focus-visible .link-circle,
#acquisition_n .smc-philosophy-section .philosophy-card:hover .link-circle-dot,
#acquisition_n .smc-philosophy-section .philosophy-card:focus-visible .link-circle-dot {
  transform: scale(1.2) !important;
}

@media screen and (max-width: 1023px) {
  #acquisition_n .smc-philosophy-section .smc-philosophy-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #acquisition_n .smc-philosophy-section .smc-philosophy-list > li + li .philosophy-card {
    margin-left: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  #acquisition_n .smc-philosophy-section .smc-philosophy-list {
    grid-template-columns: 1fr !important;
  }


}

/* Codex: prevent old li hover rule from double-scaling SMC philosophy cards */
#acquisition_n .smc-philosophy-section .smc-philosophy-list > li:hover,
#acquisition_n .smc-philosophy-section .smc-philosophy-list > li:focus-within {
  transform: none !important;
  z-index: 1 !important;
}

/* Codex: SMC-style important news panel replacing home greeting */
#acquisition_n .top-important-news-section {
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

#acquisition_n .top-important-news-box {
  min-height: 200px !important;
  display: grid !important;
  grid-template-columns: 250px minmax(0, 1fr) 150px !important;
  align-items: center !important;
  column-gap: 44px !important;
  padding: 44px 56px !important;
  background: rgba(255,255,255,0.9) !important;
  border: 1px solid #d7e1ec !important;
  position: relative !important;
}

#acquisition_n .top-important-news-heading {
  min-height: 78px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding-right: 42px !important;
  border-right: 1px solid #d7e1ec !important;
  color: #005bac !important;
}

#acquisition_n .top-important-news-icon {
  width: 22px !important;
  height: 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid #005bac !important;
  border-radius: 50% !important;
  font-size: 15px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  flex: 0 0 auto !important;
}

#acquisition_n .top-important-news-heading h2 {
  margin: 0 !important;
  color: #005bac !important;
  font-size: 22px !important;
  line-height: 1.45 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
}

#acquisition_n .top-important-news-list {
  display: grid !important;
  gap: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

#acquisition_n .top-important-news-item {
  display: grid !important;
  grid-template-columns: 92px minmax(0, 1fr) !important;
  gap: 20px !important;
  align-items: baseline !important;
  color: #061a33 !important;
  text-decoration: none !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
  font-weight: 700 !important;
}

#acquisition_n .top-important-news-item time {
  color: #061a33 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
}

#acquisition_n .top-important-news-item span {
  min-width: 0 !important;
}

#acquisition_n .top-important-news-item:hover span,
#acquisition_n .top-important-news-more:hover span:first-child {
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

#acquisition_n .top-important-news-more {
  justify-self: end !important;
  align-self: end !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: #005bac !important;
  text-decoration: none !important;
  font-size: 14px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
}

#acquisition_n .top-important-news-arrow {
  width: 8px !important;
  height: 8px !important;
  border-top: 2px solid #005bac !important;
  border-right: 2px solid #005bac !important;
  transform: rotate(45deg) !important;
}

@media screen and (max-width: 1023px) {
  #acquisition_n .top-important-news-box {
    grid-template-columns: 1fr !important;
    row-gap: 24px !important;
    padding: 32px 28px !important;
  }

  #acquisition_n .top-important-news-heading {
    min-height: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 20px !important;
    border-right: 0 !important;
    border-bottom: 1px solid #d7e1ec !important;
  }

  #acquisition_n .top-important-news-more {
    justify-self: end !important;
  }
}

@media screen and (max-width: 767px) {
  #acquisition_n .top-important-news-section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  #acquisition_n .top-important-news-box {
    padding: 26px 20px !important;
  }

  #acquisition_n .top-important-news-item {
    grid-template-columns: 1fr !important;
    gap: 4px !important;
  }
}

/* Codex: single-line scrolling important news layout */
#acquisition_n .top-important-news-box {
  min-height: 118px !important;
  grid-template-columns: 250px minmax(0, 1fr) 150px !important;
  column-gap: 44px !important;
  padding: 30px 54px !important;
}

#acquisition_n .top-important-news-heading {
  min-height: 78px !important;
}

#acquisition_n .top-important-news-list {
  --news-row-height: 40px;
  height: var(--news-row-height) !important;
  display: block !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

#acquisition_n .top-important-news-list > li {
  height: var(--news-row-height) !important;
  display: flex !important;
  align-items: center !important;
}

#acquisition_n .top-important-news-list.news-count-2 > li {
  animation: codexImportantNewsScroll2 8s infinite;
}

#acquisition_n .top-important-news-list.news-count-3 > li {
  animation: codexImportantNewsScroll3 12s infinite;
}

#acquisition_n .top-important-news-list.news-count-4 > li {
  animation: codexImportantNewsScroll4 16s infinite;
}

#acquisition_n .top-important-news-list.news-count-5 > li {
  animation: codexImportantNewsScroll5 20s infinite;
}

#acquisition_n .top-important-news-list:hover > li {
  animation-play-state: paused !important;
}

#acquisition_n .top-important-news-item {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: 92px minmax(0, 1fr) !important;
  gap: 20px !important;
  align-items: center !important;
  color: #061a33 !important;
  text-decoration: none !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
  font-weight: 800 !important;
}

#acquisition_n .top-important-news-item time {
  color: #061a33 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
}

#acquisition_n .top-important-news-item span {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

#acquisition_n .top-important-news-more {
  justify-self: end !important;
  align-self: center !important;
  position: relative !important;
  z-index: 2 !important;
}

@keyframes codexImportantNewsScroll2 {
  0%, 45% { transform: translateY(0); }
  50%, 95% { transform: translateY(calc(var(--news-row-height) * -1)); }
  100% { transform: translateY(0); }
}

@keyframes codexImportantNewsScroll3 {
  0%, 25% { transform: translateY(0); }
  33%, 58% { transform: translateY(calc(var(--news-row-height) * -1)); }
  66%, 91% { transform: translateY(calc(var(--news-row-height) * -2)); }
  100% { transform: translateY(0); }
}

@keyframes codexImportantNewsScroll4 {
  0%, 20% { transform: translateY(0); }
  25%, 45% { transform: translateY(calc(var(--news-row-height) * -1)); }
  50%, 70% { transform: translateY(calc(var(--news-row-height) * -2)); }
  75%, 95% { transform: translateY(calc(var(--news-row-height) * -3)); }
  100% { transform: translateY(0); }
}

@keyframes codexImportantNewsScroll5 {
  0%, 16% { transform: translateY(0); }
  20%, 36% { transform: translateY(calc(var(--news-row-height) * -1)); }
  40%, 56% { transform: translateY(calc(var(--news-row-height) * -2)); }
  60%, 76% { transform: translateY(calc(var(--news-row-height) * -3)); }
  80%, 96% { transform: translateY(calc(var(--news-row-height) * -4)); }
  100% { transform: translateY(0); }
}

@media screen and (max-width: 1023px) {
  #acquisition_n .top-important-news-box {
    grid-template-columns: 1fr auto !important;
    column-gap: 24px !important;
    row-gap: 18px !important;
    padding: 28px 24px !important;
  }

  #acquisition_n .top-important-news-heading {
    grid-column: 1 / -1 !important;
    min-height: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 18px !important;
    border-right: 0 !important;
    border-bottom: 1px solid #d7e1ec !important;
  }

  #acquisition_n .top-important-news-list {
    grid-column: 1 !important;
  }

  #acquisition_n .top-important-news-more {
    grid-column: 2 !important;
    grid-row: 2 !important;
    align-self: center !important;
  }
}

@media screen and (max-width: 767px) {
  #acquisition_n .top-important-news-box {
    grid-template-columns: 1fr !important;
  }

  #acquisition_n .top-important-news-list {
    grid-column: 1 !important;
    --news-row-height: 64px;
  }

  #acquisition_n .top-important-news-item {
    grid-template-columns: 1fr !important;
    gap: 4px !important;
    align-items: start !important;
  }

  #acquisition_n .top-important-news-item span {
    white-space: normal !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
  }

  #acquisition_n .top-important-news-more {
    grid-column: 1 !important;
    grid-row: auto !important;
    justify-self: end !important;
  }
}
