:root{
  --cpi-blue:#2f63b8;
  --cpi-footer:#285db6;
  --cpi-text:#333;
  --cpi-light:#edf2f8;
}

*{
  box-sizing:border-box;
}

html,
body{
  margin:0;
  padding:0;
}

body{
  font-family:-apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Yu Gothic",sans-serif;
  color:var(--cpi-text);
  background:#fff;
  line-height:1.7;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

ul,
ol{
  margin:0;
  padding:0;
}

.cpi-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

.site-main{
  display:block;
  background:#fff;
}

/* =========================================================
   Header
   ========================================================= */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:#fff;
  border-bottom:1px solid #d6deea;
}

.site-header__inner{
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.site-branding,
.site-header__logo,
.site-logo{
  flex:0 0 auto;
}

.site-logo{
  display:inline-flex;
  align-items:center;
}

.site-logo img{
  width:auto;
  max-width:180px;
  max-height:74px;
  height:auto;
}

.site-header__nav-group{
  display:flex;
  align-items:center;
  gap:18px;
  margin-left:auto;
}

.site-nav{
  display:block;
}

.site-nav__menu,
.site-nav ul,
.menu{
  list-style:none;
  display:flex;
  align-items:center;
  gap:28px;
  margin:0;
  padding:0;
}

.site-nav__menu li,
.site-nav ul li,
.menu li{
  list-style:none;
  margin:0;
  padding:0;
}

.site-nav__menu a,
.site-nav ul a,
.menu a{
  display:inline-block;
  color:#444;
  font-weight:700;
  line-height:1.4;
  text-decoration:none;
}

.site-header__search-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border:0;
  padding:0;
  background:transparent;
  color:#444;
  cursor:pointer;
  flex:0 0 auto;
}

.site-header__search-toggle:hover{
  opacity:.72;
}

.header-search-panel{
  border-top:1px solid #eceff5;
  background:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
}

.header-search-panel__inner{
  padding:18px 0 22px;
}

.cpi-search-form{
  position:relative;
  width:100%;
}

.cpi-search-form__keyword{
  display:flex;
  align-items:center;
  width:100%;
  overflow:hidden;
  border:2px solid var(--cpi-blue);
  border-radius:999px;
  background:#fff;
}

.cpi-search-form__input{
  flex:1 1 auto;
  min-width:0;
  height:64px;
  padding:0 22px;
  border:0;
  background:transparent;
  color:var(--cpi-text);
  font-size:17px;
  outline:none;
}

.cpi-search-form__submit{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 92px;
  width:92px;
  min-width:92px;
  height:64px;
  border:0;
  background:var(--cpi-blue);
  color:#fff;
  cursor:pointer;
}

.cpi-search-form__suggestions{
  position:absolute;
  left:0;
  right:0;
  top:calc(100% + 10px);
  z-index:25;
  padding:14px;
  border:1px solid #d8e2ef;
  border-radius:20px;
  background:#fff;
  box-shadow:0 18px 40px rgba(18,48,100,.14);
  display:block;
  pointer-events:auto;
  max-height:min(68vh, 760px);
  overflow-y:auto;
  overscroll-behavior:contain;
  -webkit-overflow-scrolling:touch;
}

.cpi-search-form__suggestions[hidden]{
  display:none !important;
}

.cpi-search-form__group + .cpi-search-form__group{
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid #e7edf5;
}

.cpi-search-form__group-title{
  margin:0 0 12px;
  color:#4d5f7f;
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
}

.cpi-search-form__suggestion{
  display:grid;
  grid-template-columns:140px minmax(0, 1fr);
  gap:16px;
  align-items:center;
  padding:10px 8px;
  border-radius:14px;
  text-decoration:none;
}

.cpi-search-form__suggestion:hover{
  background:#f4f8fd;
}

.cpi-search-form__suggestion + .cpi-search-form__suggestion{
  margin-top:8px;
}

.cpi-search-form__suggestion-media{
  display:block;
  overflow:hidden;
  border-radius:12px;
  background:#edf2f8;
}

.cpi-search-form__suggestion--term .cpi-search-form__suggestion-media{
  aspect-ratio:16 / 7;
}

.cpi-search-form__suggestion--product .cpi-search-form__suggestion-media{
  aspect-ratio:4 / 3;
}

.cpi-search-form__suggestion--download{
  grid-template-columns:84px minmax(0, 1fr);
  gap:14px;
  align-items:center;
}

.cpi-search-form__suggestion--download .cpi-search-form__suggestion-media{
  aspect-ratio:1 / 1;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px;
  background:linear-gradient(180deg, #f7faff 0%, #eef4fc 100%);
}

.cpi-search-form__suggestion--download .cpi-search-form__suggestion-media img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.cpi-search-form__suggestion-meta{
  color:#6b7b94;
  font-size:13px;
  font-weight:700;
  letter-spacing:.04em;
}

.cpi-search-form__suggestion-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.cpi-search-form__suggestion-body{
  display:flex;
  flex-direction:column;
  gap:8px;
  min-width:0;
}

.cpi-search-form__suggestion-title{
  color:#1f4f95;
  font-size:16px;
  font-weight:700;
  line-height:1.45;
}

.cpi-search-form__suggestion-text{
  color:#546278;
  font-size:14px;
  line-height:1.6;
}

.cpi-search-form__empty{
  padding:18px 8px;
  color:#66758e;
  font-size:14px;
}

.cpi-search-form--header{
  max-width:980px;
  margin:0 auto;
}

.cpi-search-form__filter{
  display:flex;
  flex-direction:column;
  gap:8px;
  align-items:flex-start;
}

.cpi-search-form__filter-label{
  color:#6f7f98;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
}

.cpi-search-form__target,
.cpi-search-form__select{
  min-width:140px;
  min-height:44px;
  padding:0 42px 0 14px;
  border:1px solid #cdd8e8;
  border-radius:10px;
  background-color:#fff;
  color:var(--cpi-text);
  font-size:15px;
  font-weight:600;
  line-height:1.3;
  appearance:none;
  background-image:
    linear-gradient(45deg, transparent 50%, #5074b6 50%),
    linear-gradient(135deg, #5074b6 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size:6px 6px, 6px 6px;
  background-repeat:no-repeat;
}

.cpi-search-form__target:focus,
.cpi-search-form__select:focus{
  outline:none;
  border-color:var(--cpi-blue);
  box-shadow:0 0 0 3px rgba(47, 100, 190, .14);
}

.header-search-fallback{
  display:flex;
  max-width:760px;
  margin:0 auto;
  border:2px solid var(--cpi-blue);
  border-radius:999px;
  overflow:hidden;
}

.header-search-fallback input{
  flex:1;
  border:0;
  padding:0 22px;
  height:64px;
  font-size:17px;
  outline:none;
}

.header-search-fallback button{
  min-width:136px;
  border:0;
  background:var(--cpi-blue);
  color:#fff;
  font-size:18px;
  font-weight:700;
  cursor:pointer;
}

/* =========================================================
   Breadcrumbs / common content
   ========================================================= */
.cpi-breadcrumbs{
  padding:4px 0 8px;
  font-size:14px;
  color:#666;
  background:#fff;
}

.cpi-breadcrumbs .cpi-container{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.cpi-breadcrumbs a{
  text-decoration:none;
}

.page-content-wrap,
.page-content,
.page-content__inner{
  background:#fff;
}

.page-content{
  padding:0 20px 60px;
  margin-top:-10px;
}

.page-content__inner{
  max-width:1080px;
  margin:0 auto;
}

.page-content__inner .wpcf7{
  margin-top:24px;
}

.page-content__inner .wpcf7 p{
  margin:0 0 12px;
  line-height:1.7;
}

.page-content__inner .wpcf7-form-control-wrap{
  display:block;
  margin-top:6px;
}

.page-slug-inquiry .page-content,
.page-template-page-contact-php .page-content,
body.page .page-content:has(.wpcf7){
  padding-bottom:40px;
}

.page-slug-inquiry .page-content__inner h2,
.page-template-page-contact-php .page-content__inner h2,
body.page .page-content__inner:has(.wpcf7) h2{
  margin-bottom:12px;
  font-size:clamp(24px,2.4vw,34px);
}

.page-slug-inquiry .page-content__inner h3,
.page-template-page-contact-php .page-content__inner h3,
body.page .page-content__inner:has(.wpcf7) h3{
  margin:30px 0 12px;
}

.page-slug-inquiry .page-content__inner p,
.page-slug-inquiry .page-content__inner li,
.page-template-page-contact-php .page-content__inner p,
.page-template-page-contact-php .page-content__inner li,
body.page .page-content__inner:has(.wpcf7) p,
body.page .page-content__inner:has(.wpcf7) li{
  line-height:1.7;
}

.page-slug-inquiry .page-content__inner > * + *,
.page-template-page-contact-php .page-content__inner > * + *,
body.page .page-content__inner:has(.wpcf7) > * + *{
  margin-top:14px;
}

.page-slug-inquiry .page-content__inner .wpcf7,
.page-template-page-contact-php .page-content__inner .wpcf7,
body.page .page-content__inner:has(.wpcf7) .wpcf7{
  margin-top:20px;
}

.cpi-search-results{
  max-width:1180px;
}

.cpi-search-results__title{
  margin:0 0 12px;
  font-size:clamp(32px,3.4vw,46px);
}

.cpi-search-results__lead{
  margin:0 0 34px;
  color:#66758e;
  font-size:16px;
}

.cpi-search-results__section + .cpi-search-results__section{
  margin-top:42px;
}

.cpi-search-results__heading{
  margin:0 0 18px;
  font-size:24px;
  color:#193b72;
}

.cpi-search-results__term-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}

.cpi-search-results__term-card{
  display:block;
  overflow:hidden;
  border:1px solid #d9e2ef;
  border-radius:18px;
  background:#fff;
  text-decoration:none;
}

.cpi-search-results__term-media{
  display:block;
  aspect-ratio:16 / 7;
  background:#eef3f9;
}

.cpi-search-results__term-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.cpi-search-results__term-title{
  display:block;
  padding:16px 18px 18px;
  color:#1d4f95;
  font-size:18px;
  font-weight:700;
}

.cpi-search-results__product-list{
  display:grid;
  gap:16px;
}

.cpi-search-results__product-card{
  display:grid;
  grid-template-columns:160px minmax(0, 1fr);
  gap:20px;
  align-items:center;
  padding:18px;
  border:1px solid #d9e2ef;
  border-radius:18px;
  background:#fff;
  text-decoration:none;
}

.cpi-search-results__product-media{
  display:block;
  aspect-ratio:4 / 3;
  overflow:hidden;
  border-radius:14px;
  background:#eef3f9;
}

.cpi-search-results__product-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.cpi-search-results__product-body{
  display:flex;
  flex-direction:column;
  gap:10px;
  min-width:0;
}

.cpi-search-results__product-title{
  color:#1d4f95;
  font-size:22px;
  font-weight:700;
  line-height:1.4;
}

.cpi-search-results__product-text{
  color:#57657c;
  font-size:15px;
  line-height:1.75;
}

/* =========================================================
   Page hero
   ========================================================= */
.page-hero{
  position:relative;
  width:100%;
  min-height:760px;
  overflow:hidden;
  text-align:center;
}

.page-hero__bg{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(10,35,90,.18), rgba(10,35,90,.18)),
    url("../img/hero-page.jpg");
  background-position:center center;
  background-size:cover;
  background-repeat:no-repeat;
}

@media (min-width:1025px){
  .page-hero__bg{
    background-attachment:fixed;
  }
}

.page-hero::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-520px;
  width:360%;
  height:980px;
  background:#fff;
  border-radius:50%;
  transform:translateX(-50%);
  z-index:1;
}

.page-hero__inner{
  position:relative;
  z-index:2;
  min-height:760px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 20px 26px;
}

.page-hero__title{
  margin:0;
  color:#fff;
  font-size:clamp(44px,5vw,72px);
  line-height:1.18;
  letter-spacing:.04em;
  font-weight:700;
  text-shadow:0 6px 24px rgba(0,0,0,.28);
}

.page-hero--topics .page-hero__inner,
.page-hero--post .page-hero__inner{
  padding-bottom:26px;
}

.page-hero--topics .page-hero__title,
.page-hero--post .page-hero__title{
  margin:0;
}

/* =========================================================
   WYSIWYG / tables / embeds
   ========================================================= */
.page-content__inner > :first-child{
  margin-top:0;
}

.page-content__inner h2,
.page-content__inner h3{
  color:#222;
  line-height:1.3;
  font-weight:700;
}

.page-content__inner h2{
  font-size:clamp(28px,3vw,42px);
  margin:0 0 18px;
}

.page-content__inner h3{
  font-size:clamp(22px,2vw,30px);
  margin:46px 0 16px;
  padding-left:16px;
  border-left:5px solid var(--cpi-blue);
}

.page-content__inner p,
.page-content__inner li,
.page-content__inner td,
.page-content__inner th{
  font-size:16px;
  line-height:1.95;
}

.page-content__inner ul{
  padding-left:1.25em;
}

.page-content__inner table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  border:1px solid #dfe5ef;
  margin-top:20px;
  box-shadow:0 10px 28px rgba(20,40,90,.05);
}

.page-content__inner th,
.page-content__inner td{
  padding:16px 18px;
  border-bottom:1px solid #e6ebf3;
  vertical-align:top;
}

.page-content__inner th{
  width:26%;
  background:#f3f6fb;
  color:#233a67;
  text-align:left;
  font-weight:700;
  white-space:nowrap;
}

.page-content__inner tr:last-child th,
.page-content__inner tr:last-child td{
  border-bottom:0;
}

.page-content__inner iframe{
  width:100%;
  max-width:100%;
  border:0;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 14px 32px rgba(20,40,90,.08);
  margin-top:14px;
}

/* =========================================================
   Single post / topics
   ========================================================= */
.post-single__meta{
  margin:0 0 22px;
  color:#666;
  font-size:14px;
}

.post-single__nav{
  margin-top:48px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:22px;
}

.post-single__back{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:220px;
  height:52px;
  padding:0 24px;
  border-radius:6px;
  background:var(--cpi-blue);
  color:#fff;
  text-decoration:none;
  font-weight:700;
}

.post-single__pager{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  justify-content:center;
}

.post-single__pager a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:140px;
  height:44px;
  padding:0 18px;
  border:1px solid #cfd6df;
  border-radius:6px;
  background:#fff;
  color:#333;
  text-decoration:none;
}

.topics-archive{
  max-width:760px;
  margin:0 auto;
}

.topics-archive__list{
  list-style:none;
  padding:0;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:18px;
  align-items:center;
  justify-content:center;
  max-width:760px;
}

.topics-archive__item{
  width:100%;
  text-align:center;
}

.topics-archive__item a{
  display:inline-flex;
  gap:16px;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#444;
  font-size:18px;
  text-align:center;
}

/* =========================================================
   Products archive
   ========================================================= */
.products-list-page{
  max-width:1080px;
}

.products-group + .products-group{
  margin-top:42px;
}

.products-group__title{
  font-size:28px;
  margin:0 0 16px;
  padding-left:14px;
  border-left:5px solid var(--cpi-blue);
}

.products-group__list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:8px;
}

.products-group__item a{
  text-decoration:none;
  color:#222;
}

.products-group__item a:hover{
  color:var(--cpi-blue);
}

/* =========================================================
   Download hub
   ========================================================= */
.pdl-hub{
  padding-bottom:18px;
}

.pdl-hub__form{
  margin-bottom:22px;
}

.pdl-hub__row--keyword{
  margin-bottom:18px;
}

.pdl-hub__label{
  display:block;
  font-weight:700;
  margin-bottom:10px;
  font-size:18px;
}

.pdl-hub__row--keyword input{
  width:100%;
  max-width:560px;
  height:48px;
  padding:0 16px;
  border:1px solid #d6deea;
  background:#f7f8fb;
}

.pdl-hub__row--filters{
  display:flex;
  align-items:flex-end;
  gap:20px;
  flex-wrap:wrap;
}

.pdl-hub__field select{
  min-width:150px;
  height:42px;
  padding:0 12px;
  border:1px solid #d6deea;
  background:#fff;
}

.pdl-hub__check{
  padding-bottom:8px;
}

.pdl-hub__buttons{
  display:flex;
  gap:10px;
}

.pdl-hub__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:92px;
  height:42px;
  padding:0 18px;
  text-decoration:none;
  border:1px solid #cdd6e2;
  background:#fff;
  color:#333;
}

.pdl-hub__btn--primary{
  background:var(--cpi-blue);
  border-color:var(--cpi-blue);
  color:#fff;
}

.pdl-hub__count{
  margin:14px 0 16px;
  color:#666;
}

.pdl-hub__table-wrap{
  overflow:auto;
}

.pdl-hub__table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
}

.pdl-hub__table th,
.pdl-hub__table td{
  border-bottom:1px solid #e6ebf3;
  padding:14px 12px;
  text-align:left;
  vertical-align:middle;
}

.pdl-hub__table thead th{
  background:#f2eef9;
  font-weight:700;
  white-space:nowrap;
}

.pdl-hub__product{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:220px;
}

.pdl-hub__product img{
  width:52px;
  height:52px;
  object-fit:contain;
  border:1px solid #eceff5;
  background:#fff;
}

.pdl-hub__na{
  color:#999;
}

.pdl-hub__detail{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:54px;
  height:36px;
  border:1px solid #cfd6df;
  text-decoration:none;
  background:#fff;
}

.cpi-downloads-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}

.cpi-downloads-list__item{
  padding:14px 16px;
  border:1px solid #dfe5ef;
  border-radius:8px;
  background:#fff;
}

/* =========================================================
   CTA
   ========================================================= */
.cta-contact{
  margin-top:72px;
  padding:72px 20px;
  background:#dfe7f3;
}

.cta-contact__inner{
  text-align:center;
}

.cta-contact__lead{
  margin:0 0 20px;
  font-size:28px;
  font-weight:700;
  color:#2a2a2a;
}

.cta-contact__button{
  display:inline-block;
  min-width:220px;
  padding:16px 32px;
  border-radius:8px;
  background:var(--cpi-blue);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 10px 24px rgba(47,99,184,.22);
  transition:opacity .2s ease;
}

.cta-contact__button:hover{
  opacity:.92;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer{
  padding:44px 0 38px;
  background:var(--cpi-footer);
  color:#fff;
}

.site-footer__menu{
  display:flex;
  justify-content:center;
  gap:12px;
  list-style:none;
  margin:0 0 26px;
  padding:0;
  flex-wrap:wrap;
}

.site-footer__menu a{
  color:#fff;
  text-decoration:none;
}

.site-footer__copy{
  text-align:center;
  margin:0;
  font-size:18px;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width:767px){
  .site-header__inner{
    min-height:76px;
    gap:16px;
  }

  .site-logo img{
    max-width:120px;
    max-height:56px;
  }

  .site-nav__menu,
  .site-nav ul,
  .menu{
    gap:14px;
    flex-wrap:wrap;
  }

  .page-hero{
    min-height:420px;
  }

  .page-hero::after{
    bottom:-220px;
    width:360%;
    height:420px;
  }

  .page-hero__inner{
    min-height:420px;
    padding:0 16px 18px;
  }

  .page-hero__title{
    font-size:clamp(32px,8vw,52px);
  }

  .page-content{
    padding:0 16px 48px;
    margin-top:-4px;
  }

  .page-content__inner th{
    width:auto;
    display:block;
  }

  .page-content__inner td{
    display:block;
  }

  .cpi-search-form__suggestion{
    grid-template-columns:92px minmax(0, 1fr);
    gap:12px;
  }

  .cpi-search-form__input{
    height:58px;
    font-size:16px;
  }

  .cpi-search-form__submit{
    flex-basis:76px;
    width:76px;
    min-width:76px;
    height:58px;
  }

  .cpi-search-results__term-grid{
    grid-template-columns:1fr;
  }

  .cpi-search-results__product-card{
    grid-template-columns:1fr;
  }

  .pdl-hub__row--filters{
    gap:12px;
  }

  .pdl-hub__field select{
    min-width:120px;
  }

  .topics-archive__item a{
    flex-direction:column;
    gap:4px;
  }

  .cta-contact{
    padding:56px 16px;
  }

  .cta-contact__lead{
    font-size:24px;
  }
}
/* ===============================
   HERO 完全修正（安全版）
=============================== */

/* 高さを少しだけ上げる */
.page-hero{
  min-height:520px;
}

/* タイトルを視覚中央へ */
.page-hero__inner{
  align-items:center;
  justify-content:center;
  padding-bottom:40px; /* ←これが効く */
}

/* タイトル強調 */
.page-hero__title{
  transform:translateY(-10px);
}

/* カーブを強く＆位置を上げる */
.page-hero::after{
  bottom:-120px;   /* ←上に持ち上げる */
  height:300px;    /* ←高さ調整 */
  width:260%;      /* ←広げる */
}

.wpcf7-submit {
  display: inline-block;
  min-width: 220px;
  height: 52px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background-color: var(--cpi-blue);
  color: #FFF;;
}

.page-top-button{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:80;
  width:54px;
  height:54px;
  border:1px solid rgba(33,97,171,.22);
  border-radius:999px;
  background:rgba(255,255,255,.94);
  box-shadow:0 14px 28px rgba(15,40,92,.12);
  color:var(--cpi-blue);
  cursor:pointer;
  opacity:0;
  transform:translateY(10px);
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease, box-shadow .25s ease;
}

.page-top-button.is-visible{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.page-top-button:hover{
  box-shadow:0 18px 34px rgba(15,40,92,.18);
}

.page-top-button__arrow{
  display:inline-block;
  width:12px;
  height:12px;
  border-top:3px solid currentColor;
  border-left:3px solid currentColor;
  transform:translateY(4px) rotate(45deg);
}
/* ========================================
   Hero SVG-ready / breadcrumbs / topics archive
======================================== */
.cpi-breadcrumbs{
  padding:28px 0 0;
  margin-bottom:20px;
  font-size:13px;
  line-height:1.6;
}

.page-content{
  margin-top:0;
  padding:0 20px 60px;
}

.page-hero{
  min-height:300px;
}

.page-hero__media{
  position:absolute;
  inset:0;
  z-index:0;
}

.page-hero__media img,
.page-hero__media svg{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.page-hero__bg{
  display:none;
}

.page-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,40,110,.28);
  border-radius:0;
  transform:none;
  z-index:1;
}

.page-hero__inner{
  min-height:300px;
  padding:0 20px;
  flex-direction:column;
  gap:10px;
}

.page-hero__eyebrow{
  margin:0;
  font-size:14px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#fff;
  opacity:.88;
}

.page-hero__title{
  transform:none;
}

.topics-archive{
  max-width:980px;
}

.topics-list--archive{
  list-style:none;
  max-width:980px;
  margin:0 auto;
  padding:0;
}

.topics-list--archive .topics-list__item{
  border-bottom:1px solid #d6deea;
}

.topics-list--archive .topics-list__link{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:24px;
  align-items:start;
  padding:22px 0;
  color:#444;
}

.topics-list--archive .topics-list__date{
  display:block;
  color:#666;
  font-size:28px;
  line-height:1.2;
  font-weight:500;
  white-space:nowrap;
  font-variant-numeric:tabular-nums;
}

.topics-list--archive .topics-list__title{
  display:block;
  color:#555;
  font-size:28px;
  line-height:1.6;
  font-weight:500;
  text-align:left;
  word-break:break-word;
}

.topics-list--archive .topics-list__link:hover .topics-list__title{
  color:var(--cpi-blue);
}

@media (max-width:767px){
  .cpi-breadcrumbs{
    padding:20px 0 0;
    margin-bottom:16px;
    font-size:12px;
  }

  .page-hero{
    min-height:200px;
  }

  .page-hero__inner{
    min-height:200px;
    padding:0 16px;
  }

  .topics-list--archive .topics-list__link{
    grid-template-columns:1fr;
    gap:10px;
    padding:16px 0;
  }

  .topics-list--archive .topics-list__date{
    font-size:16px;
  }

  .topics-list--archive .topics-list__title{
    font-size:18px;
    line-height:1.5;
  }
}


/* =========================================================
   Hero curve / topics tuning
   ========================================================= */
.page-hero{
  min-height: 420px;
}

.page-hero__media{
  position:absolute;
  inset:0;
  z-index:0;
}

.page-hero__media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.page-hero::after{
  display:none;
}

.page-hero__curve{
  position:absolute;
  left:0;
  bottom:-1px;
  width:100%;
  height:132px;
  z-index:1;
  display:block;
  pointer-events:none;
}

.page-hero__inner{
  min-height:420px;
  padding:0 20px 34px;
}

.page-hero__title{
  font-size:clamp(28px, 4vw, 56px);
}

.page-hero--topics .page-hero__title,
.page-hero--post .page-hero__title{
  font-size:clamp(26px, 3.2vw, 44px);
}

.topics-list{
  max-width:760px;
}

.topics-list__link{
  grid-template-columns:120px 1fr;
  gap:18px;
  align-items:baseline;
}

.topics-list__date{
  font-size:14px;
  line-height:1.7;
  font-weight:600;
}

.topics-list__title{
  font-size:16px;
  line-height:1.7;
  font-weight:500;
}

@media (max-width: 767px){
  .page-hero{
    min-height:260px;
  }
  .page-hero__curve{
    height:72px;
  }
  .page-hero__inner{
    min-height:260px;
    padding:0 16px 24px;
  }
  .topics-list__link{
    grid-template-columns:1fr;
    gap:4px;
  }
}

.product-single {
  padding: 40px 0 80px;
}

/* =========================================================
   Hero curve / download hub fixes
   ========================================================= */
.page-hero{
  isolation:isolate;
}

.page-hero__curve{
  position:absolute;
  inset:auto 0 -1px;
  height:220px;
  z-index:1;
  overflow:hidden;
  pointer-events:none;
}

.page-hero__curve::before,
.page-hero__curve::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  background:#fff;
}

.page-hero__curve::before{
  width:172%;
  height:360px;
  bottom:-246px;
  border-radius:50%;
}

.page-hero__curve::after{
  width:100%;
  height:72px;
  bottom:0;
}

.pdl-hub,
.pdl-hub__table-wrap,
.pdl-hub__table{
  max-width:100%;
}

.pdl-hub__table-wrap{
  overflow-x:auto;
  overflow-y:hidden;
}

.pdl-hub__table{
  width:100%;
  min-width:0;
  table-layout:fixed;
}

.pdl-hub__table th,
.pdl-hub__table td{
  min-width:0;
}

.pdl-hub__table th:first-child,
.pdl-hub__table td:first-child{
  width:28%;
}

.pdl-hub__table td.pdl-hub__product{
  width:auto;
  min-width:0;
}

.pdl-hub__table td.pdl-hub__product > .pdl-hub__product-link{
  display:flex !important;
  align-items:center !important;
  gap:14px;
  width:100%;
  min-width:0;
}

.pdl-hub__table td.pdl-hub__product > .pdl-hub__product-link > img{
  flex:0 0 72px;
}

.pdl-hub__table .pdl-hub__product-text{
  display:flex !important;
  flex:1 1 auto;
  flex-direction:column;
  min-width:0;
}

.pdl-hub__table .pdl-hub__product-name,
.pdl-hub__table .pdl-hub__product-code,
.pdl-hub__table td.pdl-hub__product span{
  writing-mode:horizontal-tb !important;
  text-orientation:mixed !important;
  white-space:normal !important;
  word-break:normal !important;
  overflow-wrap:anywhere !important;
}

@media (max-width: 1024px){
  .page-hero__curve{
    height:170px;
  }

  .page-hero__curve::before{
    width:205%;
    height:310px;
    bottom:-228px;
  }

  .pdl-hub__table{
    min-width:960px;
  }
}

@media (max-width: 767px){
  .page-hero__curve{
    height:126px;
  }

  .page-hero__curve::before{
    width:260%;
    height:220px;
    bottom:-166px;
  }

  .pdl-hub{
    overflow-x:hidden;
  }

  .pdl-hub__table-wrap{
    margin-inline:-16px;
    padding-inline:16px;
  }
}

.l-container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.product-breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
}

.product-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin-left: 8px;
}

.product-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.product-hero__catch {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
}

.product-hero__title {
  margin: 0 0 12px;
  font-size: 40px;
  line-height: 1.2;
}

.product-hero__subtitle {
  margin: 0 0 8px;
  font-size: 18px;
}

.product-hero__code {
  margin: 0;
  font-size: 14px;
}

.product-hero__image img {
  display: block;
  width: 100%;
  height: auto;
}

.product-hero--subpage {
  display: block;
  margin-bottom: 32px;
}

.product-hero--subpage .product-hero__title {
  margin-bottom: 0;
  color: #1f2937;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.35;
}

.product-entry--subpage .product-content > h1:first-child {
  display: none;
}

.product-anchor-nav {
  margin: 0 0 40px;
  padding: 16px 20px;
  border: 1px solid #ddd;
}

.product-anchor-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-content {
  margin-bottom: 64px;
}

.product-content > *:first-child {
  margin-top: 0;
}

.product-section {
  margin-top: 64px;
}

.product-section__title {
  margin: 0 0 24px;
  font-size: 28px;
}

.product-download__items,
.product-related__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-download__item,
.product-related__item {
  border: 1px solid #ddd;
  padding: 20px;
}

.product-download__thumb img,
.product-related__thumb img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.product-download__title,
.product-related__name {
  margin: 0 0 12px;
  font-size: 18px;
}

.product-inquiry__inner {
  padding: 32px;
  border: 1px solid #ddd;
  text-align: center;
}

.product-inquiry__title {
  margin: 0 0 12px;
  font-size: 28px;
}

.product-inquiry__text {
  margin: 0 0 20px;
}

.c-button {
  display: inline-block;
  padding: 14px 28px;
  text-decoration: none;
  border: 1px solid #222;
}

@media (max-width: 767px) {
  .product-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-hero__title {
    font-size: 30px;
  }

  .product-download__items,
  .product-related__items {
    grid-template-columns: 1fr;
  }
}
