@charset "UTF-8";

/* layout */
#js-filter ul,
#productarea ul {
  margin: 0;
  padding: 0;
}
#js-filter li,
#productarea li {
  list-style: none;
  margin: 0;
  position: relative;
  padding: 5px;
}
.layout-container {
  display:flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.layout-container #js-filter {
  width: 100%;
  margin: 0px 10px 0 0;
}
.layout-container .left #js-filter {
  width: 220px;
  margin: 0px 10px 0 0;
  display: none;
}
#productarea {
  width: calc(100% - 220px);
  font-size: small;
}
div.template{
  display:none;
}

/* filter */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: 0;
  opacity: 0.01;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative;
  cursor: pointer;
}
/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
  content: "";
  position: absolute;
  left: 10px;
  top: calc(50% - 11px);
  width: 19px;
  height: 19px;
  border: 1px solid #aaa;
  background: #fff;
  border-radius: 0.2em;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 rgba(203, 34, 237, 0.2);
  -webkit-transition: all 0.275s;
  transition: all 0.275s;
}
/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  position: absolute;
  content: '';
  width: 8px;
  height: 4px;
  border-left: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: rotate(-45deg);
  top: 8px;
  left: 2px;
  font-size: 18px;
  line-height: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
}
[type="checkbox"]:checked + label:after {
  opacity: 1;
}
/* Disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #e9e9e9;
}
[type="checkbox"]:checked + label {
  font-weight: 700;
}
[type="checkbox"]:disabled + label {
  color: #aaa;
}
[type="checkbox"]:disabled:checked + label:after {
  color: #777;
}
[type="checkbox"]:not(:checked)+label:before,
[type="checkbox"]:checked+label:before {
  left: 0px;
  top: 6px;
  width: 12px;
  height: 12px;
}

[dir=ltr] .japan a:not(.button).primary[class*=icon--]:before, [dir=ltr] .japan a:not(.button).primary[target=_blank]:not(.no-external):before {
  margin-left: 6px;
}

/* filter layout */
#js-filter .flter-block {
  background-color: #f2f2f2;
  padding: 5px;
}
#js-filter ul.other {
  display: flex;
  flex-wrap: wrap;
}
#js-filter ul.other li {
  width: 25%;
}
#js-filter .count {
  padding: 3px 6px;
  height: 18px;
  min-width: 18px;
  display: inline-block;
  background-color: #CECECE;
  border-radius: 22px;
  line-height: 1.0;
  margin-left: 5px;
  color: #000;
}
#js-filter label {
  width: 100%;
  display: block;
  padding: 5px 5px 5px 18px;
  line-height: 1.2;
}
/* open/close */
#js-filter .filter-collapse-control {
  text-align: center;
}
#js-filter label.filter-collapse-btn {
  display:none;
  padding: 10px;
  text-align: center;
  position: relative;
  width:300px;
}
#js-filter label.filter-collapse-btn.show {
  padding: 10px;
  text-align: center;
  position: relative;
}
#js-filter .filter-collapse-btn:not(.show)::after {
  content: "";
  display: block;
  background-color: #000;
  position: absolute;
  top: 8px;
  width: 2px;
  height: 16px;
  right: 67px;
}
#js-filter .filter-collapse-btn::before {
  content: "";
  display: block;
  background-color: #000;
  position: absolute;
  top: 15px;
  width: 16px;
  height: 2px;
  right: 60px;
}
#js-filter .filter-collapse {
  height: 0;
  opacity: 0;
  transition-duration: 0.3s;
  visibility: hidden;
}
#js-filter .filter-collapse.show {
  height: auto;
  opacity: 1;
  visibility: visible;
}
/* tooltip */
#js-filter .tooltip {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: middle;
  position: relative;
  background: #666;
  border-radius: 100%;
  line-height: 1.5;
}
#js-filter .tooltip::before {
  position: absolute;
  display: inline-block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  content: '?';
  color: white;
  font-size: 100%;
  font-weight: bold;
}
#js-filter .tooltip:hover:after {
  content: "";
  position: absolute;
  border: 8px solid transparent;
  border-bottom: 10px solid rgba(102,102,102,1);
  left: 50%;
  top: 15px;
  transform: translate(-50%, 0);
}
#js-filter .tooltip .text {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: max-content;
  max-width: 345px;
  background: rgba(102,102,102,1);
  z-index: 1;
  padding: 5px 15px;
  color: #fff;
  border-radius: 5px;
  -webkit-transition: all 0.275s;
  -moz-transition: all 0.275s;
  -ms-transition: all 0.275s;
  -o-transition: all 0.275s;
  transition: all 0.275s;
  left: 50%;
  top: 33px;
  transform: translate(-50%, 0);
  font-weight: normal;
}
#js-filter .tooltip:hover .text {
  visibility: visible;
  opacity: 1;
}
#js-filter .tooltip a {
    text-decoration: underline;
    color: #fff;
    font-weight: bold;
}
@media only screen and (min-width: 421px) and (max-width: 1024px){
  #js-filter .tooltip .text {
    top: 19px;
  }
}




/* search result header */
.layout-container .search-result {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  min-height: 80px;
  padding-bottom: 25px;
  flex-wrap: wrap;
}
/* sricky cta */
.layout-container .search-result.sticky {
  position: fixed;
  top: 0;
  z-index: 99;
  max-width: 1200px;
}
.layout-container .search-result .hit {
  margin-right: 20px;
  min-width: 60px;
}
.layout-container .search-result .hit .cnt {
  font-weight: 700;
  font-size: x-large;
  padding: 0 5px;
}
.layout-container .search-result .filter-reset {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
  justify-content: flex-end;
  align-items: baseline;
}
.layout-container .search-result .filter-reset a {
  font-size: 12px;
  cursor: pointer;
}
.layout-container .search-result a.search ,
.layout-container .search-result a.reset {
  display: none;
}
.layout-container.compare .search-result a.search ,
.layout-container.search .search-result a.reset {
  display: block;
}
.layout-container.compare .search-result .filter-reset .button{
  display: none;
}
.layout-container .search-result .action-area {
  display:flex;
  flex-wrap: wrap;
  align-items: center;
}
/* cta */
.layout-container .filter-cta button:last-child {
  margin-left: 10px;
}
.layout-container  .search-result .filter-cta {
    display: flex;
    flex-wrap: nowrap;
}
.layout-container .search-result .filter-cta .msg{
  position: absolute;
  padding: 0 0 0 5px;
  transition: all .5s ease;
  opacity: 0;
  display: none;
  z-index: 999;
  margin-top: 2px;
}
.search-result .button{
  margin: 0 15px 0px 0;
}
.search-result .button:last-child{
  margin-right: 0px;
}



/* product area */
#productarea .MO8 {
  height: auto;
  position: relative;
  border-top: 2px solid #000e4e;
}
#productarea .hide .MO8:before {
  content: "";
  background: rgba(255,255,255,0.6);
  width: 100%;
  height: calc(100% - 0px);
  position: absolute;
  top: -2px;
  z-index: 1;
}
#productarea .MO8__control-container {
  position: absolute;
  width: 100%;
  z-index: 1;
}
#productarea .MO8__image-container {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 20px;
}
#productarea img[data-key="image"],
#comparearea [data-key="image"] .image img{
  /* width: 110px; */
  /* height: 110px; */
  object-fit: cover;
}
#productarea .MO8__title {
  display: flex;
  position: relative;
  min-height: 30px;
  align-items: center;
  border-bottom: 1px solid #999;
  justify-content: space-between;
  flex-wrap: wrap;
}
#productarea .hide .MO8__title {
  background: #f2f2f2;
  color: #aaa;
}
#productarea .MO8__copy div {
  display: flex;
  flex-wrap: nowrap;
}
#productarea .MO8__copy div.icon {
  flex-wrap: wrap;
}
#productarea .MO8__copy div span.title {
  white-space: nowrap;
  font-size: small;
  font-weight: bold;
}
#productarea .MO8__copy div.icon span {
  border: #000e4e 1px solid;
  padding: 4px 5px 2px;
  color: #000e4e;
  font-weight: bold;
  margin: 2px;
  line-height: 1.0;
}
#productarea .MO8 .MO8__body {
  padding: 5px;
}
#productarea .MO8 .MO8__link {
  padding: 9px 5px 40px;
}
#productarea .MO8 .MO8__link a {
  margin-right: 20px;
}
#productarea .block-click {
  text-decoration: none;
  color: #000000;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0);
}
#productarea .block-click:hover {
  text-decoration: none;
  color:#fff;
  opacity: 0.6;
  -webkit-filter: brightness(1.1);
  filter: brightness(1.1);
  border: 1px solid #000e4e;
}
/* hide */
#productarea .hide {
  order: 999;
  position: relative;
}
#productarea .hide .block-click {
  position:relative;
}
#productarea .btn-hide {
  width: 32px;
  height: 32px;
  border-radius: 0;
  position: absolute;
  right: 0;
  top: 0;
  background: none;
}
#productarea .btn-hide:focus {
  box-shadow: 0 0 0 0 #ff6a00;
}
#productarea .btn-hide.hide {
  background: #fff;
  cursor: initial;
}
#productarea .hide-icon {
  position: absolute;
  right: 2px;
  top: 4px;
  width: 20px;
  height: 20px;
}
#productarea .MO8__wrapper.hide .close {
  display: none;
}
#productarea .MO8__wrapper:not(.hide) .rotate {
  display: none;
}
#productarea .product_name {
  /* width: calc(100% - 30px); */
  padding: 0px 5px;
  white-space: nowrap;
  font-size: 16px;
  line-height: 1.0;
}
#productarea .series,
#comparearea .series {
  font-size: 22px;
  /* position: absolute; */
  color: #000e4e;
  /* top: 50%; */
  /* left: calc(50% + 35px); */
  /* transform: translate(0%, -50%); */
  /* -webkit-transform: translate(0%, -50%); */
  /* -ms-transform: translate(-50%, -50%); */
  font-weight: 500;
}
#productarea .lifecycle {
  position: absolute;
  right: 0;
  top: 0px;
  line-height: 1.0;
}
#productarea .status-label {
    padding: 3px 10px;
    min-height: auto;
    min-width: 70px;
    line-height: 1.4;
}


/* responsive */
@media only screen and (max-width: 1100px) {
  .layout-container .search-result .description{
    display: none;
  }
}
@media only screen and (min-width: 769px) and (max-width: 940px) {
  .gs .gc-lg-4 {
    width:50%;
  }
}
@media only screen and (max-width: 680px){
  .gs .gc-sm-12 {
      width: 100%;
  }
  .japan .search-result .button.primary {
      min-height: 28px;
      min-width: 82px;
      padding: 5px 10px;
  }
}

@media only screen and (max-width: calc(420px + 60px)) {
  .layout-container > .left{
    width:100%;
  }
  .layout-container #js-filter,
  .layout-container > .left #js-filter{
    width:100%;
    margin: 0px;
  }
  .layout-container .filter-cta button:last-child {
    margin-left: 0px;
  }
  .search-result .button, .search-result button {
    margin: 5px 5px 0 0;
  }
  #productarea {
    width: 100%;
    font-size: initial;
  }
  #productarea .MO8__copy div span.title{
    font-size: initial;
    
  }
  #js-filter label.filter-collapse-btn.show ,
  #js-filter label.filter-collapse-btn {
    display: inline-block;
  }

  #js-filter .filter-collapse {
    visibility: hidden;
    display:none;
  }
  .japan .search-result .button.primary{
      min-height: 28px;
      min-width: 67px;
      padding: 5px 10px;
      font-size: 13px;
  }
  #productarea .series {
    font-size: 22px;
    font-weight: 700;
  }
}

#comparearea {
  overflow: hidden;
}
/* table */
#comparearea table {
  /* min-width: 100%; */
  /* max-width: 50000px; */
  border-collapse: collapse;
  border-spacing: 0;
  width: auto;
  /* table-layout: fixed; */
  /* width: 100%; */
}
#comparearea table th {
  background: #ffffff;
}
#comparearea table thead th {
  position: relative;
  /* width: 100%; */
  min-width: 300px;
  max-width: 800px;
  text-align: left;
}
#comparearea th,
#comparearea td {
  padding: 40px 20px 20px 20px;
  border-bottom: 1px solid #bebebe;
  box-sizing: border-box;
  vertical-align: top;
}
#comparearea tr.product_name th {
  padding: 10px 20px;
  border-bottom: 0px solid #bebebe;
}
#comparearea tr.image th {
  padding: 0 0 0 0px;
  /* border-bottom: 1px solid #bebebe; */
  /* box-sizing: border-box; */
}

/* diff */
#comparearea table tr.diff th ,
#comparearea table tr.diff td {
    background: #E2F7FD;
}
/* fixed label*/
#comparearea table .fixed.left{
  position:absolute;
  background: none;
  padding: 10px;
  border: 0px solid #f2f2f2;
  left:0;
  text-align: left;
  font-size: 18px;
  white-space:nowrap;
}
#comparearea tr {
    position: relative;
}
/* close btn */
#comparearea tr.close-btn {
  position: sticky;
  z-index: 99;
}
#comparearea .close-btn th{
  padding: 0px;
}
#comparearea .hide-icon {
  position: absolute;
  left: 165px;
  top: 10px;
  width: 20px;
  height: 20px;
  z-index: 1;
}
#comparearea .btn-hide {
  width: 30px;
  height: 30px;
  border-radius: 0;
  position: absolute;
  left: 160px;
  top: 5px;
  background: none;
  z-index: 2;
  display: block;
  padding: 0;
}

/* table fixed header */
#comparearea table tr.fixed.top.sticky {
  position: fixed;
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  z-index: 99;
  display: flex;
}
#comparearea table tr.fixed.top.sticky th:nth-child(n+2){
  width: 100%;
}

/* table scroll controls */
#comparearea.OR22_specsearch_.OR22_specsearch___wrapper {
  overflow: hidden;
}
#comparearea .OR22_specsearch .OR22_specsearch___scrollable {
  overflow-x: auto;
  position: relative;
}
#comparearea .OR22_specsearch .OR22_specsearch___controls__wrapper {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: end;
  justify-content: flex-end;
  background: #fff;
}
#comparearea  .OR22_specsearch .OR22_specsearch___progress-bar {
  -webkit-box-flex: 1;
  flex-grow: 1;
  width: 100%;
  height: 5px;
  position: relative;
  background: #f4f4f4;
}
#comparearea .OR22_specsearch .OR22_specsearch___progress-bar__inner {
  top: 0;
  height: 100%;
  will-change: left;
  position: absolute;
  background: #000e4e;
}
[dir="ltr"] .japan-cns-custom .OR22_specsearch .OR22_specsearch___progress-bar {
  margin-right: 20px;
}
#comparearea .OR22_specsearch .OR22_specsearch___controls {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
}
#comparearea .OR22_specsearch .OR22_specsearch___controls button {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff;
  border-radius: 0;
  background: #000e4e;
  -webkit-transition: background .3s ease-in-out;
  transition: background .3s ease-in-out;
}
[dir=ltr] .japan .OR22_specsearch .OR22_specsearch___controls button:first-child {
  margin-right: 1px;
}
.japan .OR22_specsearch .OR22_specsearch___controls button.prev:before {
  content: "";
}
.japan .OR22_specsearch .OR22_specsearch___controls button.next:before {
  content: "";
}
.japan .OR22_specsearch .OR22_specsearch___controls button.next:before,
.japan .OR22_specsearch .OR22_specsearch___controls button.prev:before{
  font-family: pattern-library;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  text-decoration: none;
  text-transform: none;
}
.japan .OR22_specsearch .OR22_specsearch___controls button:disabled {
  opacity: .3;
}
.OR22_specsearch___controls__wrapper.sticky {
  position: fixed;
  top: 80px;
  width: 100%;
  max-width: 1200px;
  z-index: 100;
  /* width: auto; */
}

.OR22.sticky .OR22__controls__wrapper{
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: #fff;
}
.OR22.sticky table.OR22-ovrd thead{
  position: sticky;
  top: 0;
  z-index: 99;
}

/*image size*/
.layout-container [data-key="image"] .image {
  display: flex;
  align-items: center;
}
.layout-container [data-key="image"] .image > span{
  display: flex;
}

/* footnote */
.layout-container .footnote{
  margin-top:80px;
}
.layout-container .footnote div{
  display: none;
}

.layout-container.compare .footnote .compare{
  display: block;
}

.layout-container.search .footnote .search{
  display: block;
}