@charset "UTF-8";
/* General
------------------------------ */
body {
  min-width: 0;
}

.wrapper {
  position: relative;
  overflow: hidden;
  background: #fff;
  line-height: 1.6;
  -webkit-transform: none !important;
  transform: none !important;
}
.wrapper img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.wrapper a {
  transition: none;
}

.contents_wrap {
  box-sizing: content-box;
  margin: 0 auto;
  padding: 0 5px;
  max-width: 980px;
}
.contents_wrap:after {
  display: block;
  clear: both;
  height: 0;
  content: "";
}

/* Header
------------------------------- */
#header {
  width: 100%;
  height: 90px;
  background: #fff;
}
#header .inner {
  box-sizing: content-box;
  margin: 0 auto;
  padding: 0 5px;
  max-width: 980px;
}
#header .inner:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: "";
  font-size: 0;
}
#header .site_title {
  float: left;
}
#header .site_title img {
  max-width: 100%;
  height: auto;
}
#header a {
  text-decoration: none;
}
#header ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  float: right;
  width: 345px;
}
#header ul li {
  float: left;
  margin-left: 5px;
  width: 170px;
  border-radius: 0 0 5px 5px;
}
#header ul li:first-child {
  margin-left: 0;
}
#header ul li a {
  display: table;
  padding: 0 10px;
  width: 100%;
  height: 38px;
  color: #fff;
  table-layout: fixed;
  vertical-align: middle;
  font-weight: bold;
  font-size: 15px;
}
#header ul li a:before {
  display: table-cell;
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  content: "";
  vertical-align: middle;
}
#header ul li a .label {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
#header ul li a .label > span {
  display: none;
  font-weight: bold;
}
#header .btn_download {
  background-color: #e60012;
}
#header .btn_download a:before {
  width: 18px;
  background-image: url(/img/ss/common/bg_icon_dl_001.png);
}
#header .btn_contact {
  background-color: #41a147;
}
#header .btn_contact a:before {
  width: 24px;
  background-image: url(/img/ss/common/bg_icon_contact_001.png);
}
#header .btn_tel {
  display: none;
  background-color: #00284a;
}
#header .btn_tel a:before {
  background-image: url(/img/ss/common/bg_icon_tel_001.png);
}
#header .logo {
  float: right;
  margin-left: 10px;
  width: 180px;
  line-height: 1;
}
#header .logo a {
  display: block;
  padding: 10px 0 0;
}
#header .logo a img {
  max-width: 100%;
  height: auto;
}

/* Breadcrumbs
--------------------------- */
#breadcrumb {
  padding: 9px 0;
  background: #f0f4f8;
}
#breadcrumb a {
  text-decoration: none;
}
#breadcrumb a:hover {
  text-decoration: underline;
}
#breadcrumb ul {
  box-sizing: content-box;
  margin: 0 auto;
  padding: 0 5px;
  max-width: 960px;
  text-align: left;
}
#breadcrumb ul li {
  display: inline-block;
  color: #333;
  font-size: 12px;
}
#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;
  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 {
  display: none;
}

/* Pager
-------------------------- */
#container .pager {
  display: table;
  overflow: hidden;
  margin: 50px 0 0;
  width: 100%;
  height: auto;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  table-layout: fixed;
  word-wrap: break-word;
}
#container .pager li {
  position: relative;
  display: table-cell;
  width: 50%;
  border-left: 1px solid #e7e7e7;
}
#container .pager li a {
  position: relative;
  display: block;
  padding: 16px;
  background-repeat: no-repeat;
  text-decoration: none;
  opacity: 1;
}
#container .pager li a > strong {
  display: block;
  color: #08a4b2;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.6;
}
#container .pager li a > span {
  display: block;
  color: #333;
  font-size: 14px;
}
#container .pager li a:hover {
  background-color: #e0f4ff;
  opacity: 1;
}
#container .pager li a:before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  display: block;
  width: 23px;
  background-color: #08a4b2;
  background-repeat: no-repeat;
  content: "";
}
#container .pager li:first-child {
  border-left: none;
}
#container .pager .prev a {
  padding-left: 55px;
}
#container .pager .prev a:before {
  left: 0;
  background-image: url(/img/ss/common/bg_pager_001.png);
  background-position: 3px center;
}
#container .pager .next {
  text-align: right;
}
#container .pager .next a {
  padding-right: 55px;
}
#container .pager .next a:before {
  right: 0;
  background-image: url(/img/ss/common/bg_pager_002.png);
  background-position: 5px center;
}
#container .back_index {
  padding: 15px 0;
  border-bottom: 1px solid #e7e7e7;
  text-align: center;
  font-size: 14px;
  line-height: inherit;
}
#container .back_index a {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  color: #333;
  text-align: left;
  text-decoration: none;
}
#container .back_index a:before {
  position: absolute;
  top: 0.15em;
  left: 0;
  width: 16px;
  height: 17px;
  background: #08a4b2 url(/img/ss/common/bg_pager_003.png) no-repeat center;
  content: "";
  line-height: 1.6;
}
#container .back_index a:hover {
  text-decoration: underline;
  opacity: 1;
}

/* CV Bottom
------------------------------- */
#cv_contact {
  position: relative;
  width: 100%;
  height: 68px;
}
#cv_contact a {
  text-decoration: none;
}
#cv_contact .fixed_wrapper {
  position: relative;
  padding: 9px 0 8px;
  width: 100%;
  height: 68px;
  background: #1d1d1c;
}
#cv_contact .fixed_wrapper .inner {
  overflow: hidden;
  box-sizing: content-box;
  margin: 0 auto;
  padding: 0 5px;
  max-width: 980px;
}
#cv_contact .fixed_wrapper .inner p {
  float: left;
  width: 420px;
}
#cv_contact .fixed_wrapper .inner p a {
  opacity: 1;
  cursor: default;
}
#cv_contact .fixed_wrapper .inner p img {
  max-width: 100%;
  height: auto;
}
#cv_contact .fixed_wrapper .inner ul {
  float: right;
  width: 465px;
}
#cv_contact .fixed_wrapper .inner li {
  display: table;
  float: left;
  margin: 0 0 0 5px;
  width: 230px;
  height: 46px;
  vertical-align: middle;
}
#cv_contact .fixed_wrapper .inner li:first-child {
  margin: 0;
}
#cv_contact .fixed_wrapper .inner li a {
  display: table-cell;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  -webkit-transition: none;
  transition: none;
}
#cv_contact .fixed_wrapper .inner li a i {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 46px;
  vertical-align: middle;
}
#cv_contact .fixed_wrapper .inner li a i:before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#cv_contact .fixed_wrapper .inner li span {
  display: inline-block;
  margin-top: 2px;
  width: calc(100% - 44px);
  vertical-align: middle;
  text-align: center;
  font-weight: bold;
}
#cv_contact .fixed_wrapper .inner .catalog {
  background: #e60012;
}
#cv_contact .fixed_wrapper .inner .catalog a span {
  margin-left: -4.8%;
}
#cv_contact .fixed_wrapper .inner .catalog a i:before {
  width: 18px;
  height: 24px;
  background: url(/img/ss/common/bg_icon_dl_001.png) no-repeat center;
}
#cv_contact .fixed_wrapper .inner .contact {
  background: #41a147;
}
#cv_contact .fixed_wrapper .inner .contact a span {
  margin-left: -3.8%;
}
#cv_contact .fixed_wrapper .inner .contact a i:before {
  width: 24px;
  height: 24px;
  background: url(/img/ss/common/bg_icon_contact_001.png) no-repeat center;
}
#cv_contact #pagetop {
  position: absolute;
  top: -71px;
  right: 50%;
  margin: 0 -590px 0 0;
  width: 50px;
}
#cv_contact #pagetop a {
  position: relative;
  display: inline-block;
  width: 51px;
  height: 51px;
  background: #1d1d1c;
  transition: none;
}
#cv_contact #pagetop a:before {
  position: absolute;
  top: 50%;
  left: 31.37255%;
  display: block;
  margin-top: -5px;
  width: 20px;
  height: 20px;
  background: #fff;
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#cv_contact #pagetop a:after {
  position: absolute;
  top: 50%;
  left: 31.37255%;
  display: block;
  margin-top: 1px;
  width: 20px;
  height: 20px;
  background: #1d1d1c;
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#cv_contact #pagetop a:hover {
  opacity: 0.7 !important;
}
#cv_contact.fixed .fixed_wrapper {
  position: fixed;
  bottom: -1px;
  left: 0;
  z-index: 10000;
}
#cv_contact.fixed.hidden .fixed_wrapper {
  display: none;
}

/* Footer
------------------------------- */
#footer .inner {
  box-sizing: content-box;
  margin: 0 auto;
  padding: 0 5px;
  max-width: 980px;
}
#footer .inner:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: "";
  font-size: 0;
}
#footer .sitemap {
  padding: 30px 0;
}
#footer .sitemap a {
  color: #333;
  text-decoration: none;
}
#footer .sitemap a:hover {
  text-decoration: underline;
}
#footer .sitemap .home_link {
  margin-bottom: 16px;
}
#footer .sitemap .home_link a {
  font-weight: bold;
  font-size: 16px;
}
#footer .sitemap .nav_menu:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: "";
  font-size: 0;
}
#footer .sitemap .nav_item {
  float: left;
  margin: 0 0 20px 20px;
  width: calc((100% - 40px) / 3);
}
#footer .sitemap .nav_item:nth-child(3n+1) {
  clear: left;
  margin-left: 0;
}
#footer .sitemap .nav_item .ac_btn {
  font-weight: bold;
  font-size: 15px;
}
#footer .sitemap .nav_list li {
  margin: 5px 0 0;
  font-size: 13px;
}
#footer .sitemap .nav_list li a {
  position: relative;
  display: inline-block;
  padding: 0 0 0 12px;
  line-height: 1.4;
  opacity: 1;
}
#footer .sitemap .nav_list li a:before {
  position: absolute;
  top: 0.25em;
  left: 0;
  width: 0;
  height: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #c80000;
  content: "";
}
#footer .copy {
  padding: 20px 0;
  background-color: #1f2933;
}
#footer .copy a {
  text-decoration: none;
}
#footer .copy p {
  float: left;
  color: #fff;
  font-size: 12px;
}
#footer .copy ul {
  float: right;
  text-align: right;
}
#footer .copy ul li {
  display: inline-block;
  padding: 0 12px;
  border-right: solid 1px #ddd;
}
#footer .copy ul li:last-child {
  border-right: none;
}
#footer .copy ul li a {
  color: #fff;
  font-size: 12px;
  opacity: 1;
}
#footer .copy ul li a:hover {
  text-decoration: underline;
}

/* Nav Menu
------------------------------- */
#container .nav_menu .nav_list a {
  position: relative;
  display: inline-block;
  padding: 0 0 0 12px;
  line-height: 1.4;
  opacity: 1;
}
#container .nav_menu .nav_list a:before {
  position: absolute;
  top: 0.25em;
  left: 0;
  width: 0;
  height: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #c80000;
  content: "";
}
#container .nav_menu .nav_list a:hover {
  text-decoration: underline;
}
#container .nav_menu .nav_list a.active {
  color: #c80000;
}

/* Side Nav
------------------------------- */
/* Side Nav Base Styles */
#side {
  float: left;
  width: 220px;
}
#side .nav_menu .ac_btn {
  position: relative;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.5;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;

  -ms-user-select: none;
}
#side .nav_menu .ac_btn:hover {
  background: #f2f2f2;
  color: #333;
}
#side .nav_menu .ac_btn:after {
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  width: 18px;
  height: 18px;
  background-image: url("/img/ss/products/marking/traceability/bg_nav_001.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#side .nav_menu .opened .ac_btn:after {
  background-image: url("/img/ss/products/marking/traceability/bg_nav_002.png");
}
#side .nav_menu .current .ac_btn {
  background: #f2f2f2;
  color: #c80000;
}
#side .nav_list {
  display: none;
}

/* Side Nav Unique Styles for each SS */
#side .nav_menu > ul {
  border-bottom: 1px solid #ccc;
}
#side .nav_menu .ac_btn {
  padding: 22px 14px 20px;
  border-top: 1px solid #ccc;
}
#side .nav_menu .ac_btn a {
  color: #333;
  opacity: 1;
}
#side .nav_menu a:hover span {
  text-decoration: underline;
}
#side .nav_menu .prt_inblock {
  display: inline-block;
}
#side .nav_menu .nav_list {
  padding: 0;
  border-top: 1px solid #ccc;
}
#side .nav_menu .nav_list > ul {
  padding: 10px;
}
#side .nav_menu .nav_list > ul li {
  margin: 5px 0 0;
}
#side .nav_menu .nav_list > ul li a {
  color: #333;
}
#side .nav_menu .nav_list.two_column ul:first-child {
  padding-bottom: 0;
}
#side .nav_menu .nav_list.two_column ul:last-child {
  padding-top: 0;
}
#side .nav_menu .to_glossary {
  margin: 10px auto 0;
  max-width: 217px;
}
#side .nav_menu .to_glossary dt {
  display: none;
}
#side .nav_menu .to_glossary a {
  display: block;
  overflow: hidden;
  padding: 36.9% 0 0;
  width: 100%;
  background: url(/img/ss/products/process/flowmeter/bg_style_011.png) no-repeat center;
  background-size: contain;
  text-indent: -10000px;
  font-size: 0;
}
#side .ref_links {
  margin: 10px 0 60px;
  border: 4px solid #34b4f5;
}
#side .ref_links dt {
  padding: 10px 0 12px 30px;
  background: #34b4f5 url(/img/ss/products/process/flowmeter/bg_style_014.png) no-repeat 4px 10px;
  color: #fff;
  white-space: nowrap;
  font-weight: bold;
  font-size: 14px;
}
#side .ref_links dd {
  padding: 11px 13px;
}
#side .ref_links dd li {
  font-weight: bold;
  font-size: 16px;
}
#side .ref_links dd li a {
  position: relative;
  display: inline-block;
  padding: 0 0 0 12px;
  color: #000;
  line-height: 1.4;
  opacity: 1;
}
#side .ref_links dd li a:before {
  position: absolute;
  top: 0.28em;
  left: 0;
  width: 0;
  height: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #c80000;
  content: "";
}
#side .ref_links dd li a:hover {
  text-decoration: underline;
}
#side .ref_links dd li a:after {
  display: inline-block;
  margin: 0 0 0 8px;
  width: 10px;
  height: 9px;
  background: url(/img/ss/products/process/flowmeter/bg_style_003.png) no-repeat center;
  background-size: contain;
  content: "";
  vertical-align: middle;
  font-size: 0;
}

/* Main Contents
--------------------------------- */
.main_contents {
  float: right;
  padding: 0 0 50px;
  width: calc(100% - 260px);
  font-size: 16px;
}

/* CV Right
------------------------------- */
.cv_right {
  position: fixed;
  top: 170px;
  left: 50%;
  margin: 0 0 190px 520px;
  width: 220px;
}
.cv_right li {
  margin: 10px 0 0;
}
.cv_right li:first-child {
  margin: 0;
}
.cv_right a {
  position: relative;
  display: block;
  padding: 0 0 9px;
  width: 220px;
  border: 1px solid #333;
  background: #fff;
  color: #000;
  text-decoration: none;
  opacity: 1;
}
.cv_right .wrap {
  display: block;
}
.cv_right a:hover .wrap {
  opacity: 0.8;
}
.cv_right .head {
  display: block;
  padding: 4px 5px;
  background: url(/img/ss/products/marking/traceability/bg_cv_right_001.png) no-repeat center;
  background-size: cover;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.286;
}
.cv_right .thumb {
  display: block;
  padding: 13px 0 0;
  text-align: center;
  font-size: 0;
}
.cv_right .thumb img {
  max-width: 100%;
  height: auto;
}
.cv_right .thumb .cover {
  border: 1px solid #ccc;
}
.cv_right .caption {
  display: block;
  margin: 5px 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.334;
}
.cv_right .button {
  display: block;
  padding: 0 10px;
}
.cv_right .button .ss_download_btn {
  max-width: none;
}
.cv_right .ss_download_btn {
  height: 28px;
}
.cv_right .flt_thumb .wrap {
  overflow: hidden;
}
.cv_right .flt_thumb .thumb {
  float: left;
  margin: 10px 0 0 10px;
  padding: 0;
  width: 50px;
}
.cv_right .flt_thumb .caption,
.cv_right .flt_thumb .button {
  float: right;
  margin: 12px 10px 0 0;
  padding: 0;
  width: 145px;
  text-align: left;
}
.cv_right .flt_thumb .caption {
  margin: 14px 10px 9px 0;
}
.cv_right .flt_thumb .button {
  margin: 0 10px 0 0;
}
.cv_right .flt_thumb .ss_download_btn {
  padding: 0 6px;
  height: 22px;
  border-radius: 4px;
}
.cv_right .flt_thumb .ss_download_btn .txt05 {
  padding: 2px 0 2px 15px;
  background-size: 10px auto;
}
.cv_right .abs_thumb .head {
  padding: 4px 12px;
  text-align: left;
}
.cv_right .abs_thumb .thumb {
  position: absolute;
  right: 3px;
  bottom: 0;
  padding: 0;
}
.cv_right .abs_thumb .caption {
  margin: 5px 0 3px;
  padding: 0 10px;
  text-align: left;
}
.cv_right .abs_thumb .button {
  width: 170px;
}
.cv_right .abs_thumb .ss_download_btn {
  padding: 0 6px;
  height: 22px;
  border-radius: 3px;
}
.cv_right .abs_thumb .ss_download_btn .txt05 {
  padding: 2px 0 2px 15px;
  background-size: 10px auto;
}

/* Override Base
------------------------------- */
#header {
  border-bottom: 3px solid #496784;
}
#header .site_title {
  padding: 12px 0;
}
#header .btn_download a:before {
  margin: 0 40px 0 0;
}
#header .btn_contact a:before {
  margin: -4px 18px 0 0;
}

#breadcrumb a {
  color: #0094a1;
}

#container {
  padding: 40px 0 70px;
}

#side .nav_menu .ac_btn {
  padding: 18px 42px 17px 8px;
}

#cv_contact .fixed_wrapper .inner p {
  padding: 12px 0 10px;
}
#cv_contact .fixed_wrapper .inner p a {
  display: inline-block;
  color: #fff;
  vertical-align: bottom;
  text-decoration: none;
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}

.main_contents p {
  margin: 10px 0;
}
.main_contents a {
  color: #0094a1;
  text-decoration: underline;
}
.main_contents a:hover {
  text-decoration: none;
}
.main_contents .ss_download_btn {
  text-decoration: none;
}

#footer .sitemap {
  background: #353e47;
}
#footer .sitemap,
#footer .sitemap a {
  color: #fff;
}
#footer .sitemap .nav_list li a:before {
  border-color: transparent transparent transparent #999;
}

/* Modules
------------------------------- */
.ss_download_btn {
  position: relative;
  display: table;
  border-radius: 5px;
  background: #e60012;
  background: linear-gradient(#e24140, #cc1717);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.ss_download_btn.type01,
.ss_download_btn.type02,
.ss_download_btn.type03,
.ss_download_btn.type04,
.ss_download_btn.type05 {
  padding: 6px 0 5px;
  width: 100%;
  text-align: center;
}
.ss_download_btn.type01,
.ss_download_btn.type02 {
  padding-right: 12px;
  padding-left: 12px;
}
.ss_download_btn.type01 {
  max-width: 340px;
  height: 45px;
}
.ss_download_btn.type02 {
  max-width: 380px;
  height: 60px;
}
.ss_download_btn.type03,
.ss_download_btn.type05 {
  padding-right: 8px;
  padding-left: 8px;
  max-width: 160px;
  height: 30px;
}
.ss_download_btn.type04 {
  padding-right: 4px;
  padding-left: 4px;
  max-width: 110px;
  height: 34px;
  color: #fff;
  font-weight: bold;
}
.ss_download_btn.type05 {
  border-radius: 0 0 5px 5px;
}
.ss_download_btn.icon01 > span:first-child {
  background: url(/img/ss/common/bg_icon_dl_001.png) no-repeat left center;
}
.ss_download_btn.icon02 > span:first-child {
  background: url(/img/ss/common/bg_icon_dl_002.png) no-repeat left center;
}
.ss_download_btn .img01,
.ss_download_btn .img02,
.ss_download_btn .img03 {
  position: absolute;
  top: 50%;
  right: 12px;
  display: inline-block;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.ss_download_btn .img01 img,
.ss_download_btn .img02 img,
.ss_download_btn .img03 img {
  border: solid 1px #ccc;
}
.ss_download_btn .txt01,
.ss_download_btn .txt02,
.ss_download_btn .txt03,
.ss_download_btn .txt04,
.ss_download_btn .txt05 {
  display: table-cell;
  color: #fff;
  vertical-align: middle;
  word-break: break-all;
  font-weight: bold;
}
.ss_download_btn .txt01,
.ss_download_btn .txt02,
.ss_download_btn .txt03,
.ss_download_btn .txt04 {
  padding-left: 30px;
  width: calc(100% - 30px);
  font-size: 16px;
  line-height: 1.2;
}
.ss_download_btn .txt01 {
  padding-right: 60px;
}
.ss_download_btn .txt02 {
  padding-right: 79px;
}
.ss_download_btn .txt03 {
  padding-right: 77px;
}
.ss_download_btn .txt04 {
  padding-right: 104px;
}
.ss_download_btn .txt05 {
  padding-left: 20px;
  font-size: 12px;
  line-height: 1;
}
.ss_download_btn .in_txt1,
.ss_download_btn .in_txt2 {
  display: block;
}
.ss_download_btn .in_txt1 {
  font-size: 14px;
}

.prt_tbl,
.prt_rsp_tbl {
  margin: 20px 0;
  width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  table-layout: fixed;
  word-wrap: break-word;
}
.prt_tbl:first-child,
.prt_rsp_tbl:first-child {
  margin-top: 0;
}
.prt_tbl img,
.prt_rsp_tbl img {
  max-width: 100%;
  height: auto;
}
.prt_tbl caption,
.prt_rsp_tbl caption {
  text-align: right;
}
.prt_tbl sup,
.prt_rsp_tbl sup {
  margin: 0 -20px 0 5px;
}
.prt_tbl th,
.prt_tbl td,
.prt_rsp_tbl th,
.prt_rsp_tbl td {
  padding: 10px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
  text-align: left;
}
.prt_tbl th,
.prt_rsp_tbl th {
  text-align: center;
  font-weight: bold;
  line-height: 1.375;
}
.prt_tbl td,
.prt_rsp_tbl td {
  background-color: #fff;
}
.prt_tbl thead th,
.prt_rsp_tbl thead th {
  background: #eaf2ff;
  color: #fff;
}
.prt_tbl tbody th,
.prt_rsp_tbl tbody th {
  background: #eaf2ff;
}

.prt_tbl_frame {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  width: 100%;
}
.prt_tbl_frame .prt_tbl {
  display: table;
  margin: 0;
  width: 720px;
}

.scroll_body,
.scroll_body thead,
.scroll_body tbody {
  display: block;
  width: 100%;
  border-top: none;
}
.scroll_body thead {
  overflow-y: scroll;
}
.scroll_body tbody {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  max-height: 315px;
  border-bottom: 1px solid #ccc;
}
.scroll_body tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.scroll_body th,
.scroll_body td {
  border-top: 1px solid #ccc;
  border-bottom: none;
}

/* Contents Inner */
.prt_inner {
  padding: 0 20px;
}

/* Heading */
.prt_h1 {
  margin: 0 0 30px;
  padding: 18px 16px 16px;
  background: #1f2933 url(/img/ss/products/marking/traceability/bg_style_001.png) no-repeat right center;
  background-size: auto 100%;
  color: #fff;
  font-weight: normal;
  font-size: 26px;
  line-height: 1.385;
}

.prt_h2 {
  margin: 50px 0 20px;
  padding: 19px 20px 18px;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.455;
}
.prt_h2:first-child {
  margin-top: 20px;
}

.prt_h1 + .prt_h2 {
  margin-top: 20px;
}

.prt_h3 {
  position: relative;
  margin: 40px 0 20px;
  padding: 10px 0 0 14px;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.2;
}
.prt_h3:first-child {
  margin-top: 30px;
}

.prt_h2 + .prt_h3 {
  margin-top: 30px;
}

.prt_h3:before {
  position: absolute;
  top: 8px;
  bottom: 0;
  left: 0;
  display: block;
  width: 4px;
  background: #333;
  content: "";
}

.prt_h4 {
  margin: 50px 0 20px;
  padding: 0 1px 4px;
  border-bottom: 2px solid #333;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.3333;
}
.prt_h4:first-child {
  margin-top: 20px;
}

.prt_h3 + .prt_h4 {
  margin-top: 20px;
}

.prt_h5 {
  margin: 30px 0 6px;
  font-weight: bold;
  line-height: 1.5;
}
.prt_h5:before {
  content: "<";
}
.prt_h5:after {
  content: ">";
}
.prt_h5:first-child {
  margin-top: 10px;
}

.prt_h4 + .prt_h5 {
  margin-top: 10px;
}

/* Text Style */
.prt_lead {
  color: #c80000;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.455;
}

.prt_inblock {
  display: inline-block;
}

.prt_bold {
  font-weight: bold;
}

.prt_notes {
  display: block;
  margin: 0;
  padding: 0 0 0 1em;
  text-indent: -1em;
  font-size: 13px;
}
.prt_notes:before {
  content: "Note:";
}

/* Box */
.prt_box {
  margin: 20px 0;
  padding: 20px 24px 16px 32px;
  background: #eaf2ff;
  word-wrap: break-word;
}

.prt_h2 + .prt_box,
.prt_h3 + .prt_box,
.prt_h4 + .prt_box,
.prt_h5 + .prt_box {
  margin-top: 0;
}

/* Columns */
.prt_2cols {
  margin: 20px 0;
}
.prt_2cols:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: "";
  font-size: 0;
}
.prt_2cols .item {
  float: left;
  margin: 15px 0 0 2%;
  width: 49%;
}
.prt_2cols .item:first-child {
  margin-top: 0;
}
.prt_2cols .item:first-child + .item {
  margin-top: 0;
}
.prt_2cols .item:nth-of-type(2n+1) {
  clear: left;
  margin-left: 0;
}
.prt_2cols .item img {
  max-width: 100%;
  height: auto;
}

.prt_image_left,
.prt_image_right {
  overflow: hidden;
}

.prt_image_left .col_img,
.prt_image_right .col_img {
  width: 46%;
  font-size: 0;
}

.prt_image_left .col_img {
  float: left;
  text-align: left;
}

.prt_image_right .col_img {
  float: right;
  text-align: right;
}

.prt_image_left .col_img img,
.prt_image_right .col_img img {
  max-width: 100%;
  height: auto;
}

.prt_image_left .col_txt {
  width: 52%;
}

.prt_image_right .col_txt {
  float: left;
  width: 52%;
}

.prt_image_left .col_txt {
  float: right;
}

.main_contents .prt_image_left p,
.main_contents .prt_image_right p {
  margin-top: 0;
}

.prt_image_left .align_to_img {
  margin-right: 54%;
}

.prt_image_right .align_to_img {
  margin-left: 54%;
}

/* Download Button */
.prt_download_box {
  margin: 36px 0 65px;
}
.prt_download_box:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: "";
  font-size: 0;
}
.prt_download_box .ss_download_btn {
  float: right;
}

/* List */
.prt_list_disc {
  padding-left: 1.5em;
  list-style: disc outside;
}

.prt_list_ordered_01 {
  padding-left: 1.5em;
  list-style: decimal outside;
  font-weight: bold;
}

.prt_list_ordered_02 {
  padding-left: 2em;
  list-style: none;
  counter-reset: ordered_02;
  font-weight: normal;
}
.prt_list_ordered_02 li {
  position: relative;
  counter-increment: ordered_02;
}
.prt_list_ordered_02 li:before {
  position: absolute;
  top: 0;
  right: 100%;
  margin-right: 0.5em;
  content: "(" counter(ordered_02) ")";
}

.prt_list_ordered_03 li {
  padding: 0 0 0 1.5em;
  text-indent: -1.5em;
}

.prt_ordered_notes_01 {
  padding: 0 0 0 3em;
  list-style: none;
  counter-reset: ordered_notes;
  text-align: left;
  text-indent: -3em;
  font-size: 12px;
}
.prt_ordered_notes_01 li:before {
  display: inline-block;
  width: 3em;
  content: "*" counter(ordered_notes) ": ";
  counter-increment: ordered_notes;
  text-align: right;
}

/* Table */
.prt_tbl thead th,
.prt_rsp_tbl thead th {
  color: #333;
}

.prt_barcode_tbl {
  margin: 0 0 10px;
  width: 100%;
  text-align: center;
  line-height: 1.4;
}
.prt_barcode_tbl caption {
  text-align: left;
}
.prt_barcode_tbl th,
.prt_barcode_tbl td {
  padding: 0 5px;
}

.tbl_style_01 th {
  width: 26.6%;
}

.tbl_style_02 th,
.tbl_style_02 td {
  padding: 12px 5px;
  text-align: center;
}
.tbl_style_02 th:first-child {
  width: 32.5%;
}
.tbl_style_02 th:first-child + th {
  width: 26.6%;
}

.tbl_style_03 th:first-child {
  width: 42%;
}
.tbl_style_03 td {
  text-align: center;
}

/* Anchor List */
.prt_anchor {
  overflow: hidden;
}
.prt_anchor li {
  display: table;
  float: left;
  margin-bottom: 20px;
}
.prt_anchor.col2 li {
  margin-right: 3%;
  width: 48.5%;
}
.prt_anchor.col2 li:nth-child(even) {
  margin-right: 0;
}
.prt_anchor.col3 li {
  margin-right: 2.6%;
  width: 31.6%;
}
.prt_anchor.col3 li:nth-child(3n) {
  margin-right: 0;
}
.prt_anchor li a {
  display: table-cell;
  padding: 13px 20px 10px 30px;
  border: 1px solid #08a4b2;
  background: #fff url(/img/ss/products/marking/traceability/bg_icon_001.png) no-repeat 8px center;
  color: #333;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  line-height: 1.25;
  opacity: 1;
}
.prt_anchor li a:hover {
  background-color: #08a4b2;
  background-image: url(/img/ss/products/marking/traceability/bg_icon_002.png);
  color: #fff;
}

/* Images */
.prt_figure {
  margin: 20px 0;
  padding: 18px;
  border: 1px solid #e3e3e3;
  text-align: center;
}
.prt_figure.fullsize {
  padding: 0;
}
.prt_figure.noborder {
  border: none;
}
.prt_figure img {
  max-width: 100%;
  height: auto;
}
.prt_figure .item {
  margin-top: 20px;
}
.prt_figure .item:first-child {
  margin-top: 0;
}
.prt_figure .caption {
  display: block;
  margin-bottom: 14px;
  color: #275465;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
}
.prt_figure.prt_2cols .item {
  text-align: right;
  font-size: 0;
}
.prt_figure.prt_2cols .item:nth-of-type(2n+1) {
  text-align: left;
}

/* Combo */
.prt_image_left .prt_figure,
.prt_image_right .prt_figure {
  margin: 0;
}

/* Pages
------------------------------- */
#mainvs {
  position: relative;
  padding: 60px 0 30px;
  background: #cfe2f4;
}
#mainvs .page_title {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1700px;
  height: 100%;
  text-align: center;
  font-size: 0;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
#mainvs .page_title img {
  width: auto;
  height: 100%;
}
#mainvs .inner {
  position: relative;
  width: 410px;
  text-align: center;
}
.main_title {
  font-size: 21px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
#mainvs .subtitle {
  margin: 0 0 25px;
}
#mainvs .subtitle img {
  width: 222px;
  height: auto;
}
#mainvs p {
  margin: 0 0 44px;
}
#mainvs p img {
  width: 388px;
  height: auto;
}
#mainvs .ss_download_btn {
  margin: 0 auto;
}

.download_container {
  margin-bottom: 50px;
}

.download_block {
  position: relative;
  display: table;
  margin-bottom: 3.5%;
  padding: 20px;
  width: 100%;
  border: 1px solid #d6d6d6;
}
.download_block .img,
.download_block .text_box {
  display: table-cell;
  vertical-align: top;
}
.download_block .img {
  width: 28%;
  text-align: center;
}
.download_block .text_box {
  padding-left: 20px;
}
.download_block .text_box .txt {
  padding-bottom: 55px;
  font-size: 16px;
}
.download_block .download_box1 {
  position: absolute;
  bottom: 20px;
  left: auto;
  width: 320px;
}

.download_list:after {
  display: table;
  clear: both;
  content: "";
}
.download_list li {
  position: relative;
  display: block;
  float: left;
  margin: 0 4.08% 4.08% 0;
  padding: 20px;
  width: 300px;
  border: 1px solid #d6d6d6;
}
.download_list li:nth-child(3n+3) {
  margin-right: 0;
}
.download_list li .img {
  margin-bottom: 20px;
  text-align: center;
}

.download_block .img a img,
.download_list li .img a img {
  border: solid 1px #ccc;
}

.download_block .text_box .ttl,
.download_list li .ttl {
  margin-bottom: 20px;
}

.download_block .text_box .ttl a,
.download_list li .ttl a {
  color: #0094d3;
  text-decoration: none;
  font-weight: bold;
  font-size: 19px;
}

.download_block .download_box1 .ss_download_btn .txt01,
.download_list .download_box2 .ss_download_btn .txt01 {
  padding-right: 30px;
}

.download_block .download_box1 a,
.download_list .download_box2 a {
  margin: 0 auto;
}

/* Media Screen
------------------------------- */
@media screen and (min-width: 641px) {
  /* General */
  .sp_view {
    display: none;
  }

  #header .list_box .tel_modal {
    display: none !important;
  }

  /* Index Nav Base Styles */
  .index_nav .nav_menu {
    margin: 0;
  }
  .index_nav .nav_menu > ul,
  .index_nav .nav_menu .nav_section {
    display: -webkit-flex;
    display: -ms-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
  }
  .index_nav .nav_menu > ul:after,
  .index_nav .nav_menu .nav_section::after {
    display: block;
    visibility: hidden;
    clear: both;
    height: 0;
    content: "";
    font-size: 0;
  }
  .index_nav .nav_menu .nav_item {
    float: left;
    margin: 0 0 20px 20px;
    width: calc((100% - 20px) / 2);
  }
  .index_nav .nav_menu .nav_item:nth-child(2n+1) {
    clear: left;
    margin-left: 0;
  }
  .index_nav .ac_btn {
    position: relative;
    cursor: auto;
  }
  .index_nav .nav_list {
    display: block !important;
    padding: 0 !important;
  }
  .index_nav .nav_list > ul {
    padding: 26px 30px 25px;
  }
  .index_nav .nav_list li {
    font-size: 15px;
    line-height: 1.3;
  }
  .index_nav .nav_list li:first-child {
    margin: 0;
  }
  .index_nav .nav_list li a:before {
    top: 0.25em;
  }

  /* Index Nav Unique Styles for each SS */
  .index_nav .nav_menu {
    overflow: hidden;
    margin: 0;
    background: none;
    box-shadow: none;
  }
  .index_nav .nav_menu .nav_item {
    border-width: 0 1px 1px;
    border-style: solid;
    border-color: #ccc;
  }
  .index_nav .nav_menu .nav_item:nth-child(2n+1):last-child {
    width: 100%;
  }
  .index_nav .nav_menu .ac_btn {
    padding: 19px 30px 14px;
    background: #1f2933 url(/img/ss/products/marking/traceability/bg_style_001.png) no-repeat right center;
    background-size: auto 100%;
  }
  .index_nav .nav_menu .ac_btn .label {
    color: #fff;
    font-weight: normal;
    font-size: 25px;
    line-height: 1.5;
  }
  .index_nav .nav_menu .ac_btn .label:after {
    display: none;
  }
  .index_nav .nav_list li {
    margin: 12px 0 0;
  }
  .index_nav .nav_list li:first-child {
    margin: 0;
  }
  .index_nav .nav_list li a {
    color: #333;
    font-size: 15px;
    line-height: 1.5;
  }
  .index_nav .nav_list li a:hover {
    text-decoration: underline;
  }

  /* Override */
  /* Pages */
}
@media screen and (max-width: 979px) {
  /* Header */
  #header {
    height: auto;
  }
  #header .site_title {
    width: 24.5%;
  }

  /* CV Bottom */
  #cv_contact {
    height: auto;
  }
  #cv_contact .fixed_wrapper {
    height: auto;
  }
  #cv_contact .fixed_wrapper .inner {
    padding: 0 5px;
  }
  #cv_contact .fixed_wrapper .inner p {
    width: 42.85%;
  }
  #cv_contact #pagetop {
    right: 0;
    margin-right: 0;
  }

  /* Index Nav */
  /* Override */
  /* Modules */
  /* Pages */
  .download_list li {
    width: 47.96%;
  }
  .download_list li:nth-child(3n+3) {
    margin-right: 4.08%;
  }
  .download_list li:nth-child(2n+2) {
    margin-right: 0;
  }
}
@media screen and (max-width: 865px) {
  /* CV Bottom */
  #cv_contact .fixed_wrapper .inner ul {
    float: right;
    width: 405px;
  }
  #cv_contact .fixed_wrapper .inner li {
    width: 200px;
  }
  #cv_contact .fixed_wrapper .inner li a {
    font-size: 14px;
  }

  /* Index Nav */
  /* Override */
  /* Modules */
  /* Pages */
}
@media screen and (max-width: 768px) {
  /* Header */
  #header .inner {
    position: relative;
    min-height: 70px;
  }
  #header .site_title {
    width: 240px;
  }
  #header ul {
    position: absolute;
    right: 5px;
    bottom: 0;
    float: none;
  }
  #header ul li {
    margin: 0;
    width: 50%;
    border-radius: 5px 5px 0 0;
  }
  #header ul li a {
    height: 30px;
    font-size: 12px;
  }
  #header .btn_download a:before {
    width: 14px;
  }
  #header .btn_contact a:before {
    width: 18px;
  }

  /* CV Bottom */
  #cv_contact .fixed_wrapper .inner ul {
    float: right;
    width: 345px;
  }
  #cv_contact .fixed_wrapper .inner li {
    width: 170px;
  }
  #cv_contact .fixed_wrapper .inner li a {
    font-size: 12px;
  }

  /* Footer */
  #footer .copy {
    padding: 12px 0;
  }
  #footer .copy p,
  #footer .copy ul {
    float: none;
    width: 100%;
    text-align: center;
  }
  #footer .copy ul {
    margin-bottom: 5px;
  }

  /* Index Nav */
  .index_nav .nav_menu > ul,
  .index_nav .nav_menu .nav_section {
    display: block;
  }
  .index_nav .nav_menu .nav_item {
    float: none;
    margin: 0 0 20px;
    width: auto;
  }
  .index_nav .nav_menu .nav_item:nth-child(2n+1) {
    margin-left: 0;
  }

  /* Override */
  #header .btn_download a:before {
    margin: 0 32px 0 0;
  }
  #header .btn_contact a:before {
    margin: -4px 12px 0 0;
  }

  /* Modules */
  /* Pages */
}
@media screen and (max-width: 640px) {
  /* General */
  .pc_view {
    display: none;
  }

  .wrapper {
    display: flex;
    flex-direction: column;
  }

  .contents_wrap {
    padding: 0 15px;
  }

  /* Header */
  #header {
    border: none;
  }
  #header .inner {
    padding: 0;
    min-height: 0;
  }
  #header .head_box {
    margin: 0;
    padding: 12px 15px;
    width: 100%;
  }
  #header .head_box:after {
    display: block;
    visibility: hidden;
    clear: both;
    height: 0;
    content: "";
    font-size: 0;
  }
  #header .site_title {
    padding: 0;
    width: 50%;
  }
  #header .logo {
    width: 115px;
  }
  #header .logo a {
    padding: 0;
  }
  #header ul {
    position: static;
    float: none;
    width: 100%;
  }
  #header ul li {
    width: 33.33333%;
    height: auto;
    border-radius: 0;
  }
  #header ul li a {
    display: block;
    min-height: 100%;
    height: auto;
    text-align: center;
    font-size: 14px;
  }
  #header ul li a:before {
    display: block;
  }
  #header ul li a .label {
    display: block;
  }
  #header ul li a .label > span {
    display: block;
  }
  #header .btn_download {
    margin-right: 0;
  }
  #header .btn_download a {
    padding: 10px 0 14px;
  }
  #header .btn_download a:before {
    margin: 0 auto 17px;
    width: 20px;
    height: 26px;
  }
  #header .btn_contact {
    margin-right: 0;
  }
  #header .btn_contact a {
    padding: 10px 0 5px;
  }
  #header .btn_contact a:before {
    margin: 0 auto 8px;
    width: 25px;
    height: 25px;
  }
  #header .btn_tel {
    display: block;
  }
  #header .btn_tel a {
    padding: 8px 0 5px;
  }
  #header .btn_tel a:before {
    margin: 0 auto 5px;
    width: 22px;
    height: 30px;
  }

  #header ul .tel_modal {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100vh;
  }

  #header ul .tel_modal .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }

  #header ul .tel_modal .numbers {
    position: absolute;
    top: 50%;
    right: 16px;
    left: 16px;
    transform: translate(0, -50%);
  }

  #header ul .tel_modal .close_btn {
    position: absolute;
    right: 0;
    bottom: 100%;
    width: 32px;
    height: 32px;
    background: #000;
    cursor: pointer;
  }

  #header ul .tel_modal .close_btn::before,
  #header ul .tel_modal .close_btn::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 4px;
    background: #fff;
    content: "";
    transform-origin: center;
  }

  #header ul .tel_modal .close_btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  #header ul .tel_modal .close_btn::after {
    transform: translate(-50%, -50%) rotate(135deg);
  }

  #header ul .tel_modal a {
    display: block;
    margin: 8px 0;
    padding: 16px;
    border-radius: 4px;
    background: #00284a;
    font-size: 16px;
    opacity: 1;
  }

  #header ul .tel_modal a::before {
    content: none;
  }

  #header ul .tel_modal span {
    display: none;
  }

  #header ul .tel_modal.opened {
    display: block;
  }

  /* Breadcrumbs */
  #breadcrumb {
    order: 1;
  }

  #breadcrumb ul,
  #breadcrumb ol {
    padding: 0 15px;
  }

  /* Pager */
  #container .pager li a {
    padding: 8px;
  }
  #container .pager li a:before {
    top: 4px;
    bottom: 4px;
    width: 15px;
    background-size: 8px;
  }
  #container .pager li a > span {
    font-weight: bold;
    font-size: 13px;
  }
  #container .pager li a > strong {
    font-size: 16px;
    line-height: 1.5;
  }
  #container .pager .prev a {
    padding-left: 35px;
  }
  #container .pager .prev a:before {
    background-image: url(/img/ss/common/bg_pager_sp_001.png);
    background-position: center;
  }
  #container .pager .next a {
    padding-right: 35px;
  }
  #container .pager .next a:before {
    background-image: url(/img/ss/common/bg_pager_sp_002.png);
    background-position: center;
  }

  /* CV Bottom */
  #cv_contact {
    width: 100%;
    height: auto;
  }
  #cv_contact .fixed_wrapper {
    position: relative;
    padding: 0;
    width: 100%;
    background: #fff;
  }
  #cv_contact .fixed_wrapper .inner {
    overflow: visible;
    padding: 0;
    width: auto;
    background-color: #1d1d1c;
  }
  #cv_contact .fixed_wrapper .inner p {
    float: none;
    width: 100%;
    text-align: center;
  }
  #cv_contact .fixed_wrapper .inner p a {
    display: block;
    padding: 2.2% 4.7% 1.6%;
  }
  #cv_contact .fixed_wrapper .inner ul {
    float: none;
    overflow: hidden;
    width: 100%;
  }
  #cv_contact .fixed_wrapper .inner li {
    display: table;
    float: left;
    margin: 0;
    width: 50%;
    height: auto;
  }
  #cv_contact .fixed_wrapper .inner li a {
    padding: 12px 8px;
    text-align: center;
    font-size: 14px;
  }
  #cv_contact #pagetop {
    position: relative;
    top: auto;
    right: auto;
    margin: 0;
    width: auto;
    height: 60px;
    background: none;
  }
  #cv_contact #pagetop a {
    position: absolute;
    right: 11px;
    bottom: 11px;
    display: block;
    width: 40px;
    height: 40px;
  }
  #cv_contact #pagetop a:before {
    margin-top: -4px;
    width: 16px;
    height: 16px;
  }
  #cv_contact #pagetop a:after {
    width: 16px;
    height: 16px;
  }
  #cv_contact.fixed .fixed_wrapper {
    position: relative;
  }
  #cv_contact.fixed .fixed_wrapper #pagetop a {
    position: fixed;
  }
  #cv_contact.fixed.hidden .fixed_wrapper {
    display: block;
  }
  #cv_contact.fixed.hidden .fixed_wrapper #pagetop a {
    display: none;
  }

  /* Footer */
  #footer {
    order: 2;
  }

  #footer .sitemap {
    display: none;
  }
  #footer .copy ul li a {
    font-weight: bold;
  }

  /* Nav Menu */
  #side {
    float: none;
    width: auto;
  }

  #container .nav_menu .nav_item {
    margin: 0;
  }
  #container .nav_menu .ac_btn {
    position: relative;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.5;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;

    -ms-user-select: none;
  }
  #container .nav_menu .ac_btn:hover {
    background: #f2f2f2;
    color: #333;
  }
  #container .nav_menu .ac_btn:after {
    position: absolute;
    top: 50%;
    right: 10px;
    display: block;
    width: 18px;
    height: 18px;
    background-image: url("/img/ss/products/marking/traceability/bg_nav_001.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  #container .nav_menu .opened .ac_btn:after {
    background-image: url("/img/ss/products/marking/traceability/bg_nav_002.png");
  }
  #container .nav_menu .current .ac_btn {
    background: #f2f2f2;
    color: #c80000;
  }
  #container .nav_menu .ac_btn:after {
    width: 25px;
    height: 25px;
    background-image: url("/img/ss/products/marking/traceability/bg_nav_003.png");
  }
  #container .nav_menu .opened .ac_btn:after {
    background-image: url("/img/ss/products/marking/traceability/bg_nav_004.png");
  }
  #container .nav_list {
    display: none;
  }
  #container .nav_menu {
    position: relative;
    margin: 0 -10px;
    padding: 0;
    border: none;
    border-radius: 0;
  }
  #container .nav_menu > ul {
    border-bottom: none;
  }
  #container .nav_menu .ac_btn,
  #container .nav_menu .current .ac_btn,
  #container .nav_menu .ac_btn:hover,
  #container .nav_menu .opened .ac_btn {
    padding: 13px 33px 12px 15px;
    border-top: none;
    border-bottom: 1px solid #dedede;
    background: #030000;
    background: linear-gradient(to right, #192028 0%, #4b535b 100%);
    background-size: auto 100%;
    color: #fff;
  }
  #container .nav_menu .nav_list {
    border-top: none;
  }
  #container .nav_menu .nav_list > ul {
    margin-bottom: 8px;
    padding: 0 10px;
    border: 1px solid #e6e6e6;
    border-top: none;
  }
  #container .nav_menu .nav_list > ul li {
    margin: 0;
    padding: 15px 4px 14px;
    border-top: 1px solid #e5e5e5;
  }
  #container .nav_menu .nav_list > ul li:first-child {
    border-top: none;
  }
  #container .nav_menu .nav_list > ul li a {
    color: #333;
    font-size: 15px;
    line-height: 1.33333;
  }
  #container .nav_menu .nav_list > ul li a:before {
    top: 0.28em;
  }

  /* Main Contents */
  .main_contents {
    float: none;
    padding: 0 0 25px;
    width: auto;
  }

  /* Override */
  #container {
    padding: 20px 0 0;
  }

  /* Modules */
  .ss_download_btn.icon01 > span:first-child {
    background: url(/img/ss/common/bg_icon_dl_002.png) no-repeat left center;
  }
  .ss_download_btn img {
    max-width: 100%;
    height: auto;
  }
  .ss_download_btn .img02 img {
    width: 48px;
  }
  .ss_download_btn .img03 img {
    width: 67px;
  }
  .ss_download_btn .txt01,
  .ss_download_btn .txt02,
  .ss_download_btn .txt03,
  .ss_download_btn .txt04 {
    padding-left: 24px;
    width: calc(100% - 24px);
  }
  .ss_download_btn .txt02 {
    padding-right: 60px;
  }
  .ss_download_btn .txt04 {
    padding-right: 77px;
  }
  .ss_download_btn .in_txt1 {
    font-size: 12px;
  }

  .prt_rsp_tbl {
    display: block;
    overflow: hidden;
    margin-top: 10px;
    border: none;
    font-size: 15px;
  }
  .prt_rsp_tbl caption,
  .prt_rsp_tbl thead,
  .prt_rsp_tbl tbody,
  .prt_rsp_tbl tr,
  .prt_rsp_tbl th,
  .prt_rsp_tbl td,
  .prt_rsp_tbl.scroll_body tr,
  .prt_rsp_tbl.scroll_body thead,
  .prt_rsp_tbl.scroll_body tbody {
    display: block;
    float: left;
    clear: left;
    overflow: visible;
    max-height: none;
    width: 100%;
  }
  .prt_rsp_tbl.scroll_body tbody {
    border: none;
  }
  .prt_rsp_tbl caption {
    margin: 0 0 5px;
    text-align: left;
  }
  .prt_rsp_tbl caption .prt_inblock {
    margin-right: 1em;
    margin-left: 0;
  }
  .prt_rsp_tbl [data-label]:before {
    content: attr(data-label);
  }
  .prt_rsp_tbl .pc_view,
  .prt_rsp_tbl.scroll_body .pc_view {
    display: none;
  }

  .prt_rsp_tbl.spmode_txt caption.head {
    margin: 0 0 10px;
    padding: 0 5px 3px;
    border-bottom: 1px solid #ccc;
    text-align: left;
    font-weight: bold;
  }
  .prt_rsp_tbl.spmode_txt tr {
    margin: 10px 0 0;
  }
  .prt_rsp_tbl.spmode_txt tr:first-child {
    margin: 0;
  }
  .prt_rsp_tbl.spmode_txt th,
  .prt_rsp_tbl.spmode_txt td {
    padding: 0;
    border: none;
    background: none;
    color: inherit;
  }
  .prt_rsp_tbl.spmode_txt .prt_list_disc {
    margin: 0;
  }
  .prt_rsp_tbl.spmode_txt .prt_cell_wrap {
    padding: 0;
  }

  .prt_rsp_tbl.spmode_txt.type_01 tr:first-child th:first-child,
  .prt_rsp_tbl.spmode_txt.type_01 tr:first-child [data-label]:first-child:before {
    margin-top: 0;
  }
  .prt_rsp_tbl.spmode_txt.type_01 th,
  .prt_rsp_tbl.spmode_txt.type_01 [data-label]:before {
    display: block;
    margin: 10px 0 5px;
    padding: 0 5px;
    width: 100%;
    border-bottom: 1px solid #ccc;
    background: none;
    text-align: left;
    font-weight: bold;
  }
  .prt_rsp_tbl.spmode_txt.type_01 td {
    text-align: left;
  }

  .prt_rsp_tbl.spmode_txt.type_02 tr {
    margin-top: 5px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
  }
  .prt_rsp_tbl.spmode_txt.type_02 th,
  .prt_rsp_tbl.spmode_txt.type_02 td {
    margin: 5px 0 0;
    padding: 0 10px;
    border: none;
    background: none;
    text-align: left;
  }
  .prt_rsp_tbl.spmode_txt.type_02 caption.head,
  .prt_rsp_tbl.spmode_txt.type_02 th:first-child {
    margin: 10px 0 0;
    background: #eaf2ff;
    color: #fff;
    text-indent: 0;
    font-weight: bold;
  }
  .prt_rsp_tbl.spmode_txt.type_02 caption.head {
    padding: 8px 10px 6px;
  }
  .prt_rsp_tbl.spmode_txt.type_02 thead {
    margin: 0 0 20px;
  }
  .prt_rsp_tbl.spmode_txt.type_02 tr:first-child th:first-child {
    margin-top: 0;
  }
  .prt_rsp_tbl.spmode_txt.type_02 th:first-child .prt_cell_wrap {
    padding: 8px 0 6px;
  }
  .prt_rsp_tbl.spmode_txt.type_02 [data-label]:before {
    display: inline;
    margin: 0 10px 0 0;
    padding: 0;
    border: none;
    background: none;
    content: "[" attr(data-label) "]";
    font-weight: bold;
  }
  .prt_rsp_tbl.spmode_txt.type_02 [data-label]:first-child:before {
    content: "[" attr(data-label) "]";
    font-weight: bold;
  }

  .prt_rsp_tbl.spmode_cell tr {
    margin: 10px 0 0;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
  }
  .prt_rsp_tbl.spmode_cell tr:first-child,
  .prt_rsp_tbl.spmode_cell tr:first-child th:first-child,
  .prt_rsp_tbl.spmode_cell tr:first-child [data-label]:first-child:before {
    margin-top: 0;
  }
  .prt_rsp_tbl.spmode_cell th,
  .prt_rsp_tbl.spmode_cell [data-label]:before {
    display: block;
    padding: 10px;
    width: 100%;
    border-bottom: 1px solid #ccc;
    background: #eaf2ff;
    color: #fff;
    content: attr(data-label);
    text-align: left;
    font-weight: bold;
  }
  .prt_rsp_tbl.spmode_cell td {
    padding: 0;
  }
  .prt_rsp_tbl.spmode_cell .prt_cell_wrap {
    padding: 10px;
  }
  .prt_rsp_tbl.spmode_cell .prt_col2_cell {
    clear: none;
    width: 50%;
  }
  .prt_rsp_tbl.spmode_cell .prt_col2_cell:nth-of-type(2n+1) {
    clear: left;
  }
  .prt_rsp_tbl.spmode_cell .prt_col2_cell[data-label]:before,
  .prt_rsp_tbl.spmode_cell .prt_col2_cell .prt_cell_wrap {
    text-align: center;
  }
  .prt_rsp_tbl.spmode_cell .prt_col3_cell {
    clear: none;
    width: 33.3%;
  }
  .prt_rsp_tbl.spmode_cell .prt_col3_cell:nth-of-type(4n-1) {
    clear: left;
    width: 33.4%;
  }
  .prt_rsp_tbl.spmode_cell .prt_col3_cell[data-label]:before,
  .prt_rsp_tbl.spmode_cell .prt_col3_cell .prt_cell_wrap {
    text-align: center;
  }

  .prt_rsp_tbl.spmode_cell.type_02 tr {
    margin: 0;
    border-top: none;
  }
  .prt_rsp_tbl.spmode_cell.type_02 tr:first-child {
    border-top: 1px solid #ccc;
  }
  .prt_rsp_tbl.spmode_cell.type_02 th {
    width: 100%;
  }
  .prt_rsp_tbl.spmode_cell.type_02 td {
    padding: 10px;
  }

  .prt_tbl th,
  .prt_tbl td {
    padding: 10px;
  }

  .sp_scroll_body,
  .sp_scroll_body caption,
  .sp_scroll_body thead,
  .sp_scroll_body tbody {
    display: block;
    width: 100%;
    border: none;
  }

  .sp_scroll_body thead,
  .sp_scroll_body tbody {
    border-left: 1px solid #ccc;
  }

  .sp_scroll_body thead {
    overflow-y: scroll;
  }

  .sp_scroll_body tbody {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    max-height: 315px;
    border-bottom: 1px solid #ccc;
  }

  .sp_scroll_body tr {
    display: table;
    width: 100%;
    table-layout: fixed;
  }

  .sp_scroll_body th,
  .sp_scroll_body td {
    border-top: 1px solid #ccc;
    border-bottom: none;
  }

  /* prt Content Inner */
  .prt_inner {
    padding: 0;
  }

  /* prt Heading */
  .prt_h1 {
    margin: 0 0 15px;
    padding: 13px 15px 12px;
    background: #030000;
    background: linear-gradient(to right, #192028 0%, #4b535b 100%);
    font-size: 18px;
  }

  .prt_h2 {
    margin: 25px 0 15px;
    padding: 7px 7px 6px;
    font-size: 16px;
  }

  .prt_h3 {
    margin: 15px 0 15px;
    font-size: 16px;
  }

  .prt_h4 {
    margin: 25px 0 15px;
    font-size: 16px;
  }

  .prt_h5 {
    margin-top: 20px;
  }

  /* Text Style */
  .prt_lead {
    font-size: 16px;
  }

  /* prt Box */
  .prt_box {
    margin-top: 5px;
    padding: 12px 17px 14px;
  }

  /* prt Column */
  .prt_2cols .item:nth-of-type(2n+1),
  .prt_2cols .item:nth-of-type(2n) {
    float: none;
    margin: 20px 0 0;
    width: auto;
  }
  .prt_2cols .item:first-child {
    margin: 0;
  }
  .prt_2cols .item:first-child + .item {
    float: none;
    margin: 20px 0 0;
    width: auto;
  }

  .prt_image_left,
  .prt_image_right {
    overflow: visible;
  }

  .prt_image_left .col_img,
  .prt_image_right .col_img {
    float: none;
    margin: 0 0 20px;
    width: auto;
    text-align: center;
  }

  .prt_image_left .col_txt,
  .prt_image_right .col_txt {
    float: none;
    width: auto;
  }

  .prt_image_left .align_to_img {
    margin-right: 0;
  }

  .prt_image_right .align_to_img {
    margin-left: 0;
  }

  /* prt Download Button */
  .prt_download_box {
    margin: 30px 0 50px;
  }
  .prt_download_box .ss_download_btn {
    float: none;
    margin: 0 auto;
  }

  /* prt Image */
  .prt_figure {
    padding: 10px;
  }
  .prt_figure .caption {
    margin: 0 0 8px;
  }

  /* Responsive Table */
  .prt_rsp_tbl caption {
    margin: 0 0 5px;
    text-align: left;
  }
  .prt_rsp_tbl caption .prt_inblock {
    margin-right: 1em;
    margin-left: 0;
  }
  .prt_rsp_tbl .prt_col2_cell[data-label]:before,
  .prt_rsp_tbl .prt_col2_cell .prt_cell_wrap {
    text-align: center;
  }
  .prt_rsp_tbl.spmode_cell .prt_col3_cell {
    clear: none;
    width: 33.3%;
  }
  .prt_rsp_tbl.spmode_cell .prt_col3_cell:nth-of-type(4n-1) {
    clear: left;
    width: 33.4%;
  }
  .prt_rsp_tbl .prt_col3_cell[data-label]:before,
  .prt_rsp_tbl .prt_col3_cell .prt_cell_wrap {
    text-align: center;
  }
  .prt_rsp_tbl.spmode_txt caption {
    margin: 0 0 10px;
    padding: 0 5px 3px;
    border-bottom: 1px solid #ccc;
    text-align: left;
    font-weight: bold;
  }
  .prt_rsp_tbl.spmode_txt.type_02 th:first-child,
  .prt_rsp_tbl.spmode_txt.type_02 td:first-child {
    padding: 6px 10px 5px;
    background: #eaf2ff;
    font-weight: bold;
  }
  .prt_rsp_tbl.spmode_txt.type_02 tr:first-child th:first-child,
  .prt_rsp_tbl.spmode_txt.type_02 tr:first-child td:first-child {
    margin-top: 0;
  }
  .prt_rsp_tbl.spmode_txt.type_02 [data-label] {
    display: list-item;
    padding-left: 1em;
    list-style: disc inside;
  }
  .prt_rsp_tbl.spmode_txt.type_02 [data-label]:before {
    display: inline;
    margin: 0 10px 0 0;
    padding: 0;
    border: none;
    background: none;
    content: "[" attr(data-label) "]";
    font-weight: normal;
  }
  .prt_rsp_tbl.spmode_txt.type_02 [data-label]:first-child {
    padding-left: 10px;
    list-style: none;
  }
  .prt_rsp_tbl.spmode_txt.type_02 [data-label]:first-child:before {
    display: block;
    content: "[" attr(data-label) "]";
    font-weight: bold;
  }
  .prt_rsp_tbl.spmode_txt.type_02 th span,
  .prt_rsp_tbl.spmode_txt.type_02 td span {
    text-indent: 0;
  }
  .prt_rsp_tbl.spmode_cell th,
  .prt_rsp_tbl.spmode_cell [data-label]:before {
    color: #333;
  }
  .prt_rsp_tbl.spmode_cell .prt_col2_cell {
    clear: none;
    width: 50%;
  }
  .prt_rsp_tbl.spmode_cell .prt_col2_cell:nth-of-type(2n+1) {
    clear: left;
  }

  .prt_anchor {
    overflow: visible;
    font-size: 14px;
  }
  .prt_anchor li {
    float: none;
    margin-bottom: 10px;
  }
  .prt_anchor.col2 li,
  .prt_anchor.col3 li {
    margin-right: 0;
    width: 100%;
  }

  /* prt Combo */
  .prt_figure.prt_2cols .item {
    text-align: center;
  }
  .prt_figure.prt_2cols .item:nth-of-type(2n+1) {
    text-align: center;
  }

  /* Pages */
  #mainvs {
    padding: 0;
  }
  #mainvs .page_title {
    position: relative;
    top: auto;
    left: auto;
    padding: 84.4% 0 0;
    width: 100%;
    height: auto;
    background: url(/img/ss/products/marking/traceability/bg_index_001.jpg) no-repeat center;
    background-size: cover;
    -webkit-transform: none;
    transform: none;
  }
  #mainvs .page_title img {
    width: 100%;
    height: auto;
  }
  #mainvs .contents_wrap {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
  }
  #mainvs .inner {
    padding: 13% 0 0;
    width: auto;
  }
  #mainvs .subtitle {
    margin: 0 0 6%;
  }
  #mainvs .subtitle img {
    width: 53.1%;
  }
  #mainvs p {
    margin: 0 12% 6%;
    font-size: 12px;
    font-size: 3.2vw;
  }
  .main_title {
    margin-bottom: 12px;
  }
  #mainvs p img {
    width: 85.3%;
  }
  #mainvs .ss_download_btn {
    width: 82%;
  }

  .page_home #container {
    padding: 12px 0 0;
  }

  .download_block .img {
    display: block;
    margin-bottom: 20px;
    padding-left: 0;
    width: 100%;
  }
  .download_block .text_box {
    display: block;
    padding-left: 0;
  }
  .download_block .text_box .download_box1 {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
  }

  .download_list li {
    float: none;
    margin-right: 0;
    width: 100%;
  }
  .download_list.last_list {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  /* Header */
  #header ul li a {
    line-height: 1.25;
  }
  #header .btn_download a {
    padding: 10px 0;
  }
  #header .btn_download a:before {
    width: 16px;
    height: 20px;
  }
  #header .btn_contact a:before {
    width: 21px;
    height: 21px;
  }
  #header .btn_tel a:before {
    width: 18px;
    height: 26px;
  }

  /* CV Bottom */
  #cv_contact .fixed_wrapper .inner li a {
    padding: 10px 5px;
  }
  #cv_contact .fixed_wrapper .inner li a i {
    width: 26px;
    height: 26px;
  }
  #cv_contact .fixed_wrapper .inner li span {
    width: calc(100% - 26px);
  }
  #cv_contact .fixed_wrapper .inner .catalog a i:before {
    background-size: contain;
  }
  #cv_contact .fixed_wrapper .inner .contact a i:before {
    background-size: contain;
  }

  /* Override */
  /* Modules */
  /* Pages */
}
