<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*	font
-----------------------------------------*/
@font-face {
  font-family: "Roboto";
  src: url("//library.keyence.com/fonts/Roboto-Regular.eot");
}

@font-face {
  font-family: "Roboto";
  src: url("//library.keyence.com/fonts/Roboto-Regular.woff") format("woff"), url("//library.keyence.com/fonts/Roboto-Regular.ttf") format("truetype");
}

@font-face {
  font-weight: bold;
  font-family: "Roboto";
  src: url("//library.keyence.com/fonts/Roboto-Bold.eot");
}

@font-face {
  font-weight: bold;
  font-family: "Roboto";
  src: url("//library.keyence.com/fonts/Roboto-Bold.woff") format("woff"), url("//library.keyence.com/fonts/Roboto-Bold.ttf") format("truetype");
}


/*	base
-----------------------------------------*/
body {
  min-width: auto;
  background: #fff;
  color: #333;
  font-size: 88%;
  font-family: "Roboto", helvetica, arial, meiryo, sans-serif;
  line-height: 167%;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
}

.wrapper img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Header
------------------------------- */
#header .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 0 auto;
  padding: 10px 10px 8px;
  max-width: 1000px;
  width: 100%;
}

#header .site_title {
  -webkit-flex: 1 1 414px;
  flex: 1 1 414px;
  margin-right: 16px;

  -webkit-box-flex: 1;
}

#header .site_title svg {
  max-width: 100%;
  vertical-align: bottom;
}

#header .site_title svg text {
  font-weight: 600;
  font-size: 22px;

  fill: #333;
}

#header .logo {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;

  -webkit-box-flex: 0;
}

/* breadcrumb
--------------------------- */
#breadcrumb {
  padding: 9px 10px;
  background: #eee;
}

#breadcrumb ul {
  margin: 0 auto;
  max-width: 960px;
  width: 100%;
  text-align: left;
}

#breadcrumb ul li {
  display: inline-block;
  color: #333;
  font-size: 13px;
}

#breadcrumb ul li:after {
  display: inline-block;
  margin: 0 7px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #6a6a6a;
  border-right: 1px solid #6a6a6a;
  content: "";
  vertical-align: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#breadcrumb ul li:last-child {
  padding-right: 0;
}

#breadcrumb ul li:last-child:after {
  width: 0;
  height: 0;
  border: 0;
}


/* Main Contents
--------------------------------- */
#container {
  margin-top: 30px;
}

#container.container_top {
  margin-top: 0;
}

#container a {
  text-decoration: underline;
}

#container .contents_wrap {
  margin: 0 auto;
  padding: 0 10px;
  max-width: 1000px;
  width: 100%;
}

#container .contents_wrap .lead {
  font-size: 16px;
  line-height: 1.7em;
}

#container .contents_wrap .lead+.lead {
  margin-top: 15px;
}

#container .contents_wrap .main_section {
  margin-top: 30px;
}

#container .contents_wrap .image_wrap .cap {
  text-align: left;
  font-size: 14px;
}

/* Main Visual
-------------------------------------*/
.mainvisual {
  display: table;
  width: 100%;
  height: 240px;
  background-color: #0086c7;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(73, 231, 231, 0.3)), to(#0086c7));
  background-image: -webkit-linear-gradient(left, rgba(73, 231, 231, 0.3), #0086c7);
  background-image: linear-gradient(to right, rgba(73, 231, 231, 0.3), #0086c7);
  color: #fff;
}

.mainvisual .inner {
  display: table-cell;
  padding: 32px 16px;
  vertical-align: middle;
  text-align: center;
}

.mainvisual .title {
  font-weight: bold;
  font-size: 50px;
  line-height: 1.3;
}

.mainvisual .copy {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.8;
}

/* Title
--------------------------------- */
.title_style01 {
  position: relative;
  margin-bottom: 20px;
  padding: 0 0 15px 20px;
  border-bottom: 1px dotted #8e99a5;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.2em;
}

.title_style01:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 7px;
  height: 75%;
  background: -webkit-repeating-linear-gradient(left, #4aa5ff, #fff 2px);
  background: repeating-linear-gradient(to right, #4aa5ff, #fff 2px);
  content: "";
}

.title_style02 {
  position: relative;
  padding: 10px 10px 12px 22px;
  background: #333;
  color: #fff;
  font-size: 18px;
  line-height: 1.3em;
}

.title_style02:before {
  position: absolute;
  top: 0;
  left: 6px;
  display: block;
  width: 1px;
  height: 100%;
  border-left: 1px dotted #9fa6ad;
  content: "";
}

/* Box */
.col_box {
  margin-top: 40px;
}

.col_box::after {
  display: block;
  clear: both;
  height: 0;
  content: "";
}

.col_box.col2 .col {
  width: -webkit-calc((100% - 40px) / 2);
  width: calc((100% - 40px) / 2);
}

.col_box.col2 .col:nth-child(1) {
  float: left;
}

.col_box.col2 .col:nth-child(2) {
  float: right;
}

/* Cv Area Wrap */
#cvarea_wrap {
  margin-top: 30px;
  padding: 30px 0 65px;
  text-align: center;
}

#cvarea_wrap .cv_title {
  margin-bottom: 35px;
  text-align: center;
  font-size: 18px;
  line-height: 1.6em;
}

#cvarea_wrap .btn_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}

#cvarea_wrap .btn_list .item {
  position: relative;
  display: block;
  width: -webkit-calc((100% - 30px) / 3);
  width: calc((100% - 30px) / 3);
}

#cvarea_wrap .btn_list .item:nth-of-type(2) {
  margin: 0 15px;
}

#cvarea_wrap .btn_list .item a {
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
}

#cvarea_wrap .btn_list .item a.btn_price {
  background: -webkit-linear-gradient(top, #e48100 0%, #cd5e00 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#e48100), to(#cd5e00));
  background: linear-gradient(to bottom, #e48100 0%, #cd5e00 100%);
}

#cvarea_wrap .btn_list .item a.btn_catalog {
  background: -webkit-linear-gradient(top, #df3939 0%, #ce1a1b 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#df3939), to(#ce1a1b));
  background: linear-gradient(to bottom, #df3939 0%, #ce1a1b 100%);
}

#cvarea_wrap .btn_list .item a.btn_case {
  background: -webkit-linear-gradient(top, #00745c 0%, #005a43 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#00745c), to(#005a43));
  background: linear-gradient(to bottom, #00745c 0%, #005a43 100%);
}

#cvarea_wrap .btn_list .item a.icon_arrow&gt;.txt:before {
  position: absolute;
  top: 50%;
  left: 16px;
  margin-top: -5px;
  border: 5px solid rgba(0, 0, 0, 0);
  border-left: 7px solid #fff;
  content: "";
}

#cvarea_wrap .btn_list .item a.icon_dl&gt;.txt {
  background: url("https://www.keyence.co.jp/img/ss/common/bg_icon_dl_001.png") no-repeat 15px center;
  background-size: 18px auto;
}

#cvarea_wrap .btn_list .item a&gt;.txt {
  position: relative;
  z-index: 5;
  display: inline-block;
  padding: 15px 0 14px;
  width: 100%;
  color: #fff;
  vertical-align: middle;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}

#cvarea_wrap .btn_list .item a&gt;.img+.txt:after {
  display: inline-block;
  width: 25px;
  height: 1px;
  content: "";
}

#cvarea_wrap .btn_list .item a.btn_catalog&gt;.img {
  border: 1px solid #ccc;
}

#cvarea_wrap .btn_list .item a&gt;.img {
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 5;
  transform: translate(0, -50%);
  width: 57px;
}

#cvarea_wrap .btn_list .item a&gt;.img img {
  width: 100%;
  vertical-align: middle;
}

/* Navigation */
#navigation {
  padding: 28px 0 22px;
  width: 100%;
  background: #eee;
}

#navigation .inner {
  position: relative;
  margin: 0 auto;
  padding: 0 10px;
  max-width: 1000px;
  width: 100%;
}

#navigation .inner .category_btn_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 25px;
}

#navigation .inner .category_btn_wrap .category_btn {
  position: relative;
  display: block;
  padding: 12px 0 13px;
  width: -webkit-calc((100% - 20px) / 2);
  width: calc((100% - 20px) / 2);
  border: 1px solid #999;
  background: #fff;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease 0s;
  transition: opacity 0.2s ease 0s;
}

#navigation .inner .category_btn_wrap .category_btn.ac {
  border: 1px solid #333;
  background: #333;
  color: #fff;
  font-weight: bold;
}

#navigation .inner .category_btn_wrap .category_btn:hover {
  opacity: 0.7;
}

#navigation .inner .category_btn_wrap .category_btn:not(.ac):before {
  position: absolute;
  top: 50%;
  left: 13px;
  display: block;
  margin-top: -3px;
  border-top: 3px solid rgba(0, 0, 0, 0);
  border-right: none;
  border-bottom: 3px solid rgba(0, 0, 0, 0);
  border-left: 5px solid #4aa5ff;
  content: "";
}

#navigation .inner .category_btn_wrap .category_btn.ac:after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  display: block;
  margin-left: -8px;
  border-top: 9px solid #333;
  border-right: 8px solid rgba(0, 0, 0, 0);
  border-bottom: none;
  border-left: 8px solid rgba(0, 0, 0, 0);
  content: "";
}

#navigation .inner .contents_btn_wrap {
  display: none;
}

#navigation .inner .contents_btn_wrap.ac {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

#navigation .inner .contents_btn_wrap .contents_btn {
  display: block;
  margin-bottom: 6px;
  width: -webkit-calc((100% - 44px) / 5);
  width: calc((100% - 44px) / 5);
}

#navigation .inner .contents_btn_wrap .contents_btn a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 16px 10px 17px 24px;
  height: 100%;
  border: 1px solid #999;
  background: #fff;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.4em;
}

#navigation .inner .contents_btn_wrap .contents_btn a.ac {
  background: #c5e2ff;
}

#navigation .inner .contents_btn_wrap .contents_btn a:before {
  position: absolute;
  top: 50%;
  left: 13px;
  display: block;
  margin-top: -3px;
  border-top: 3px solid rgba(0, 0, 0, 0);
  border-right: none;
  border-bottom: 3px solid rgba(0, 0, 0, 0);
  border-left: 5px solid #4aa5ff;
  content: "";
}

/* Navigation TOP */
#main #navigation {
  padding-top: 37px;
  padding-bottom: 50px;
}

#main #navigation .inner .category_btn_wrap {
  display: none;
}

#main #navigation .inner .contents_btn_wrap+.contents_btn_wrap {
  margin-top: 37px;
}

#main #navigation .inner .contents_btn_wrap:before {
  position: relative;
  display: block;
  margin-bottom: 25px;
  padding: 7px 20px 10px;
  width: 100%;
  border: 1px solid #333;
  background: #333;
  background-image: url(/img/ss/products/marking/cij-application-selecting/bg_index_001.png);
  background-position: 5px;
  background-repeat: repeat-y;
  color: #fff;
  content: attr(data-category);
  text-align: left;
  font-size: 18px;
}

#main #navigation .inner .contents_btn_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

/* Tel Wrap */
#tel_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 25px 10px;
}

#tel_wrap .tel_lead {
  margin-right: 36px;
  padding: 16px 36px 18px 0;
  border-right: 1px solid #999;
  font-size: 16px;
}

#tel_wrap .tel_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

#tel_wrap .tel_box .no {
  margin-right: 20px;
  min-height: 28px;
  font-weight: 900;
  font-size: 31px;
  line-height: 1em;
}

#tel_wrap .tel_box .no a {
  color: inherit;
  cursor: default;
  pointer-events: none;
}

#tel_wrap .tel_box .time {
  font-size: 12px;
}

#tel_wrap .tel_box .time span {
  display: block;
  line-height: 1.3em;
}

/* Footer */
#footer {
  padding: 10px 0;
  width: 100%;
  border-top: 1px solid #999;
}

#footer .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 10px;
  max-width: 1000px;
  width: 100%;

  -webkit-box-orient: horizontal;
}

#footer .inner .links {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

#footer .inner .links li {
  line-height: 1em;
}

#footer .inner .links li:nth-child(2) {
  margin: 0 9px;
  padding: 0 9px;
  border-right: 1px solid #666;
  border-left: 1px solid #666;
}

#footer .inner .links li a {
  color: #333;
  font-size: 12px;
}

#footer .inner .copy {
  text-align: left;
  font-size: 12px;
}

/* Media Screen */
@media screen and (max-width: 980px) {
  #cvarea_wrap .btn_list {
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;

    -webkit-box-orient: horizontal;
  }

  #cvarea_wrap .btn_list .item {
    width: 70%;
  }

  #cvarea_wrap .btn_list .item:nth-of-type(2) {
    margin: 35px 0 30px;
  }

  #cvarea_wrap .btn_list .item a&gt;.txt {
    padding: 20px 0;
  }

  #tel_wrap {
    display: block;
  }

  #tel_wrap .tel_lead {
    margin: 0 0 20px;
    padding: 0;
    border: none;
    text-align: center;
  }

  #tel_wrap .tel_box {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}

@media screen and (max-width: 750px) {
  .wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;

    -webkit-box-orient: vertical;
  }

  /* Header */
  #header {
    border-bottom: 1px solid #999;
  }

  /* Breadcrumb */
  #breadcrumb {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    order: 1;
  }

  /* Main Visual */
  .mainvisual .title {
    font-size: 40px;
  }

  /* Title */
  .title_style01 {
    font-size: 20px;
  }

  /* Box */
  .col_box {
    margin-top: 30px;
  }

  .col_box.col2 .col:nth-child(1),
  .col_box.col2 .col:nth-child(2) {
    float: none;
  }

  .col_box.col2 .col {
    width: 100%;
  }

  .col_box.col2 .col+.col {
    margin-top: 20px;
  }

  /* CV Area */
  #cvarea_wrap .btn_list .item {
    width: 100%;
  }

  #cvarea_wrap .btn_list .item:nth-of-type(2) {
    margin: 30px 0;
  }

  /* Navigation */
  #navigation,
  #main #navigation {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    order: 2;
    padding: 10px 0 22px;
  }

  #main #navigation {
    padding-top: 30px;
  }

  #navigation .inner .category_btn_wrap,
  #main #navigation .inner .category_btn_wrap {
    display: none;
  }

  #navigation .inner .contents_btn_wrap,
  #main #navigation .inner .contents_btn_wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  #navigation .inner .contents_btn_wrap+.contents_btn_wrap,
  #main #navigation .inner .contents_btn_wrap+.contents_btn_wrap {
    margin-top: 30px;
  }

  #navigation .inner .contents_btn_wrap:before,
  #main #navigation .inner .contents_btn_wrap:before {
    position: relative;
    display: block;
    margin-bottom: 15px;
    padding: 12px 0 13px;
    width: 100%;
    border: 1px solid #333;
    background: #333;
    color: #fff;
    content: attr(data-category);
    text-align: center;
    font-weight: bold;
    font-size: 18px;
  }

  #main #navigation .inner .contents_btn_wrap:after {
    display: none;
  }

  #navigation .inner .contents_btn_wrap .contents_btn,
  #main #navigation .inner .contents_btn_wrap .contents_btn {
    width: 49%;
  }

  /* Tel Wrap */
  #tel_wrap {
    display: block;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    order: 3;
  }

  #tel_wrap .tel_lead {
    margin: 0 0 20px;
    padding: 0;
    text-align: center;
  }

  #tel_wrap .tel_box {
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;

    -webkit-box-orient: vertical;
  }

  #tel_wrap .tel_box .no {
    margin: 0 0 5px;
    text-align: center;
  }

  #tel_wrap .tel_box .time span {
    display: inline-block;
  }

  /* Footer */
  #footer {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    order: 4;
  }

  #footer .inner {
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;

    -webkit-box-orient: vertical;
  }

  #footer .inner .links {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-bottom: 6px;
  }

  #footer .inner .copy {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {

  /* Header */
  #header .site_title svg {
    width: 300px;
  }

  #header .site_title svg text {
    font-size: 22px;
  }

  #header .site_title svg text:first-child {
    -webkit-transform: translate(0, -4px);
    transform: translate(0, -4px);
  }

  #header .site_title svg text:last-child {
    -webkit-transform: translate(0, 6px);
    transform: translate(0, 6px);
  }

  /* Main Visual */
  .mainvisual .inner {
    padding: 24px 16px;
  }

  .mainvisual .title {
    font-size: 32px;
  }

  .mainvisual .copy {
    line-height: 1.5;
  }


  .mainvisual .copy span:not(class) {
    display: block;
  }
}
</pre></body></html>