:root {
  --KEYENCE-PVW-COLOR-BACKGROUND-LIGHTGRAY: #f3f3f3;
  --KEYENCE-PVW-COLOR-BACKGROUND-EX-LIGHTGRAY: #fafafa;
  --KEYENCE-PVW-COLOR-BASE-WHITE: #fff;
  --KEYENCE-PVW-COLOR-BASE-BLACK: #222;
  --KEYENCE-PVW-COLOR-BLACK: #000;
  --KEYENCE-PVW-COLOR-FOREGROUND-GRAY: #6f6f6f;
  --KEYENCE-PVW-COLOR-RED: #dc002f;
  --KEYENCE-PVW-COLOR-ROLE-PRICE-INQUIRY: #277a80;
  --KEYENCE-PVW-COLOR-OUTLINE-LIGHTGRAY: #e1e1e1;
  --KEYENCE-PVW-COLOR-ICON-GRAY: #545859;
  --KEYENCE-PVW-BORDER-RADIUS-SMALL: 4px;
  --KEYENCE-PVW-TRANSITION: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.pvw-widget-dialog {
  display: block;
  visibility: hidden;
  position: fixed;
  width: 100%;
  max-width: 80%;
  height: 100%;
  margin: auto;
  inset: 0;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: var(--KEYENCE-PVW-BORDER-RADIUS-SMALL);
  background-color: var(--KEYENCE-PVW-COLOR-BACKGROUND-LIGHTGRAY);
  scrollbar-gutter: stable;
}
.pvw-widget-dialog::backdrop {
  background: var(--KEYENCE-PVW-COLOR-BLACK);
  opacity: 0.7;
}
.pvw-widget-dialog .pvw-widget-dialog__closeButton {
  position: fixed;
  top: 18px;
  right: 7.2916666667%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--KEYENCE-PVW-COLOR-BASE-WHITE);
  cursor: pointer;
}
.pvw-widget-dialog .pvw-widget-dialog__closeButton::before {
  z-index: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml; charset=utf8, %3csvg%20xmlns%3d%22http%3a%2f%2fwww%2ew3%2eorg%2f2000%2fsvg%22%20viewBox%3d%220%200%20100%20100%22%20fill%3d%22%23545859%22%3e%3cpath%20d%3d%22M88%2e8,18%2e2l%2d7%2e1%2d7%2e1L50,42%2e9L21%2e7,14%2e7c%2d1%2e9%2d1%2e9%2d5%2e1%2d1%2e9%2d7%2e1,0l%2d3%2e5,3%2e5L42%2e9,50L14%2e7,78%2e2c%2d1%2e9,1%2e9%2d1%2e9,5%2e1,0,7%2e1l3%2e6,3%2e5L50,57%2e1l31%2e8,31%2e8l7%2e1%2d7%2e1L57%2e1,50L88%2e8,18%2e2z%22%2f%3e%3c%2fsvg%3e");
  background-repeat: no-repeat;
  background-color: initial;
  content: "";
}
.pvw-widget-dialog .pvw-widget-dialog__closeButtonText {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.pvw-widget-dialog[open] {
  visibility: visible;
}

.pvw-widget-dialog .pvw-widget-dialog__inner {
  width: 100%;
  height: 100%;
  padding: 20px;
  color: var(--KEYENCE-PVW-COLOR-BASE-BLACK);
}

.pvw-widget-dialog .pvw-widget-dialog__inner .pdf-viewer-wrapper {
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .pvw-widget-dialog .pvw-widget-dialog__closeButton {
    right: 6.25%;
  }
}
@media (max-width: 969px) {
  .pvw-widget-dialog {
    max-width: 90%;
  }
  .pvw-widget-dialog .pvw-widget-dialog__closeButton {
    position: absolute;
    top: 28px;
    right: 20px;
    width: 26px;
    height: 26px;
    background-image: url("data:image/svg+xml; charset=utf8, %3csvg%20xmlns%3d%22http%3a%2f%2fwww%2ew3%2eorg%2f2000%2fsvg%22%20viewBox%3d%220%200%20100%20100%22%20fill%3d%22%23545859%22%3e%3cpath%20d%3d%22M88%2e8,18%2e2l%2d7%2e1%2d7%2e1L50,42%2e9L21%2e7,14%2e7c%2d1%2e9%2d1%2e9%2d5%2e1%2d1%2e9%2d7%2e1,0l%2d3%2e5,3%2e5L42%2e9,50L14%2e7,78%2e2c%2d1%2e9,1%2e9%2d1%2e9,5%2e1,0,7%2e1l3%2e6,3%2e5L50,57%2e1l31%2e8,31%2e8l7%2e1%2d7%2e1L57%2e1,50L88%2e8,18%2e2z%22%2f%3e%3c%2fsvg%3e");
    background-color: initial;
  }
  .pvw-widget-dialog .pvw-widget-dialog__closeButton::before {
    content: none;
  }
}
@media (max-width: 769px) {
  .pvw-widget-dialog .pvw-widget-dialog__inner {
    padding: 20px 20px 56px;
  }
}
.pvw-layout-media {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pvw-layout-media__caption {
  display: table-caption;
  margin-top: 24px;
  padding-bottom: 20px;
  color: var(--KEYENCE-PVW-COLOR-FOREGROUND-GRAY);
  font-size: 0.75rem;
  caption-side: bottom;
}
.pvw-layout-media__caption h3 {
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 4px solid var(--KEYENCE-PVW-COLOR-RED);
  color: var(--KEYENCE-PVW-COLOR-BASE-BLACK);
  font-size: 1.5rem;
  line-height: 1.5;
}
.pvw-layout-media__caption h4 {
  margin-bottom: 16px;
  color: var(--KEYENCE-PVW-COLOR-BASE-BLACK);
  font-size: 1.25rem;
  line-height: 1.3;
}
.pvw-layout-media__caption p {
  margin-bottom: 16px;
  color: var(--KEYENCE-PVW-COLOR-BASE-BLACK);
  font-size: 1rem;
  line-height: 1.75;
}
.pvw-layout-media__caption strong {
  color: var(--KEYENCE-PVW-COLOR-BASE-BLACK);
}
.pvw-layout-media__caption ul,
.pvw-layout-media__caption ol {
  margin-bottom: 16px;
  margin-left: 24px;
  color: var(--KEYENCE-PVW-COLOR-BASE-BLACK);
  font-size: 1rem;
}
.pvw-layout-media__caption ul > li,
.pvw-layout-media__caption ol > li {
  line-height: 1.75;
}
.pvw-layout-media__caption ul > li + li,
.pvw-layout-media__caption ol > li + li {
  margin-top: 4px;
}
.pvw-layout-media__caption div:has(> table) {
  width: 100%;
  margin-bottom: 16px;
  overflow-x: auto;
}
.pvw-layout-media__caption div:has(> table) > *:last-child {
  margin-bottom: 0 !important;
}
.pvw-layout-media__caption table {
  width: 100%;
  margin-bottom: 16px;
  border: 1px solid var(--KEYENCE-PVW-COLOR-OUTLINE-LIGHTGRAY);
  border-collapse: collapse;
  color: var(--KEYENCE-PVW-COLOR-BLACK);
  font-size: 0.875rem;
  line-height: 1.75;
}
.pvw-layout-media__caption table th,
.pvw-layout-media__caption table td {
  min-width: 160px;
  padding: 8px;
  border: 1px solid var(--KEYENCE-PVW-COLOR-OUTLINE-LIGHTGRAY);
  font-weight: 400;
}
.pvw-layout-media__caption table th {
  background-color: var(--KEYENCE-PVW-COLOR-BACKGROUND-EX-LIGHTGRAY);
}
.pvw-layout-media__caption table td {
  background-color: var(--KEYENCE-PVW-COLOR-BASE-WHITE);
}
.pvw-layout-media__caption [data-summary-page] > *:last-child {
  margin-bottom: 0;
}
.pvw-layout-media__caption [data-summary-page]:not(.is-show) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip-path: inset(50%);
}
.pvw-layout-media__caption [data-summary-page]:not(.is-show) div:has(> table) {
  overflow: visible;
}

.pvw-layout-media__media {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  min-height: 0;
  max-height: 100%;
}

.pvw-media {
  margin-top: 20px;
  overflow-x: auto;
  transition: transform var(--KEYENCE-PVW-TRANSITION);
}

.pvw-media__viewer {
  height: 100%;
}

@media screen and (min-width: 970px) {
  .pvw-layout-media__caption {
    font-size: 0.875rem;
  }
}
@media (max-width: 969px) {
  .pvw-layout-media__caption h3 {
    font-size: 1.375rem;
  }
  .pvw-layout-media__caption p {
    font-size: 0.875rem;
  }
  .pvw-layout-media__caption ul,
  .pvw-layout-media__caption ol {
    font-size: 0.875rem;
  }
  .pvw-layout-media__caption table {
    width: 969px;
  }
  .pvw-layout-media__caption table th,
  .pvw-layout-media__caption table td {
    min-width: 140px;
  }
  .pvw-layout-media__media {
    flex: none;
  }
}
.pvw-button-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.pvw-button-list__item {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  margin-top: 0;
  list-style: none;
}
.pvw-button-list__item::marker {
  content: none;
}

@media (max-width: 969px) {
  .pvw-button-list {
    justify-content: flex-start;
  }
  .pvw-widget-dialog .pvw-button-list {
    padding-right: 36px;
  }
}
.pvw-button {
  display: inline-flex;
  position: relative;
  align-items: center;
  padding: 10px 37px 10px 15px;
  border: 0;
  border-radius: var(--KEYENCE-PVW-BORDER-RADIUS-SMALL);
  background-image: linear-gradient(var(--KEYENCE-PVW-COLOR-RED), var(--KEYENCE-PVW-COLOR-RED));
  background-position: 100% 100%;
  background-size: 0 100%;
  background-repeat: no-repeat;
  background-color: var(--local-background);
  color: var(--local-foreground);
  font-weight: bold;
  font-size: 0.75rem;
  line-height: 1.75;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  transition: background-size var(--KEYENCE-PVW-TRANSITION), color var(--KEYENCE-PVW-TRANSITION);
}
.pvw-button::after {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  background-position: center;
  background-size: cover;
  content: "";
}

.pvw-button--contact {
  --local-foreground: var(--KEYENCE-PVW-COLOR-BASE-WHITE);
  --local-background: var(--KEYENCE-PVW-COLOR-ROLE-PRICE-INQUIRY);
  background-image: linear-gradient(rgba(34, 34, 34, 0.2), rgba(34, 34, 34, 0.2));
  box-shadow: none;
}

.pvw-button--contactIcon::after {
  background-image: url("data:image/svg+xml; charset=utf8, %3csvg%20xmlns%3d%22http%3a%2f%2fwww%2ew3%2eorg%2f2000%2fsvg%22%20viewBox%3d%220%200%20100%20100%22%20fill%3d%22%23fff%22%3e%3cpath%20d%3d%22M75,55%2e1H18%2e1l%2d13,19%2e8V12%2e3c0%2d4,3%2e2%2d7%2e2,7%2e2%2d7%2e2H75V55%2e1z%20M84%2e9,25%2e1V65H26%2e7l%2d6%2e5,10h61%2e7l13,19%2e8V25%2e1H84%2e9z%22%2f%3e%3c%2fsvg%3e");
}

@media screen and (min-width: 970px) {
  .pvw-button {
    min-width: 160px;
    padding: 8px 40px 8px 16px;
    font-size: 0.875rem;
  }
  .pvw-button::after {
    width: 16px;
    height: 16px;
  }
}
@media (hover: hover) and (min-width: 970px) {
  .pvw-button:hover {
    --local-foreground: var(--KEYENCE-PVW-COLOR-BASE-WHITE);
    background-position: 0 100%;
    background-size: 100% 100%;
  }
}
.l-mainVisual-series__listGroup button.m-button {
  appearance: none;
  font-size: 0.875rem;
}
.l-mainVisual-series__listGroup .m-button-list--large + .m-button-list--large {
  margin-top: 15px;
}

@media screen and (min-width: 970px) {
  .l-mainVisual-series__listGroup button.m-button {
    font-size: 1rem;
  }
  .l-mainVisual-series__listGroup .m-button-list--large + .m-button-list--large {
    margin-top: 24px;
  }
}
