@charset "utf-8";

#contents {
  padding-bottom: 0;
}
.searchCatalogWrap {
  display: flex;
  align-items: center;
  gap: 20px 40px;
}
.pdfCatalogBtn {
  width: 180px;
}
.pdfCatalogBtn a {
  display: flex;
  align-items: center;
  gap: 0 10px;
  padding: 0 30px;
  height: 60px;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #333;
  font-weight: 700;
  font-size: 1.4rem;
}
.pdfCatalogBtn a::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(/assets/images/icon_catalog.svg) no-repeat center center;
  background-size: 24px 24px;
}
.keywordSearchBox {
  display: flex;
  background: #ededed;
  flex: 1;
}
.keywordSearchBox__title {
  width: 216px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--site-color-main);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
}
.keywordSearchBox__body {
  flex: 1;
}
.keywordSearch {
  padding: 10px 30px;
  display: flex;
  align-items: center;
}
.keywordSearch .keyword {
  flex: 1;
  position: relative;
}
.keywordSearch .keyword .inputBtn {
  display: flex;
  align-items: center;
}
.keywordSearch .keyword .inputBtn input {
  font-size: 16px;
  flex: 1;
  height: 40px;
  background: #fff;
  border: none;
  padding-left: 18px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 0;
  width: calc(100% - 40px);
}
.keywordSearch .keyword .inputBtn input::placeholder {
  color: #aaa;
}
.keywordSearch .keyword .inputBtn button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #002f70;
  width: 40px;
  height: 40px;
  border: none;
  cursor: pointer;
  appearance: none;
}
.keywordSearch .keyword .inputBtn button img {
  width: 20px;
  height: 20px;
}
.keywordSearch .stockCheck {
  width: 150px;
  margin-left: 30px;
}
@media screen and (max-width: 1000px) {
  .keywordSearch {
    background-image: none;
    padding: 10px;
    display: block;
    height: auto;
  }
  .keywordSearch .stockCheck {
    width: auto;
    margin-left: 0px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .searchCatalogWrap {
    flex-flow: column;
  }
  .pdfCatalogBtn {
    width: 100%;
  }
  .pdfCatalogBtn a {
    height: 50px;
    justify-content: center;
  }
  .keywordSearchBox {
    display: block;
    width: 100%;
  }
  .keywordSearchBox__title {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--site-color-main);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 10px;
  }
}

.categorySearchArea {
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .categorySearchArea {
    padding: 40px 0;
  }
}

.subLinkArea {
  padding: 0px 0 20px;
}
.subLinkArea .btnBlock {
  background: #ededed;
  padding: 30px 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  gap: 10px;
}
.subLinkArea .btnBlock .btn {
  display: inline-flex;
  height: 60px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #ccc;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: #333;
}
.subLinkArea .btnBlock .btn :where(span, button) {
  display: flex;
  align-items: center;
  line-height: 1.4;
}
.subLinkArea .btnBlock .btn.new span::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background: url(/common/images/products/icon_new01.png) no-repeat center
    center;
}
.subLinkArea .btnBlock .btn.stop span::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background: url(/common/images/products/icon_stop01.png) no-repeat center
    center;
}
.subLinkArea .btnBlock .btn.lock :where(span, button)::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%2212%22%20fill%3D%22%23fff%22%2F%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M14%2010.6667H15.3333V9.33333C15.3333%207.49533%2013.838%206%2012%206C10.162%206%208.66667%207.49533%208.66667%209.33333V10.6667H10V9.33333C10%208.23067%2010.8973%207.33333%2012%207.33333C13.1027%207.33333%2014%208.23067%2014%209.33333V10.6667ZM16%2011.3333V18H8V11.3333H16Z%22%20fill%3D%22%23007575%22%2F%3E%0A%3C%2Fsvg%3E')
    no-repeat center center;
  background-size: contain;
}
.subLinkArea .btnBlock .btn.contact :where(span, button)::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background: url(/assets/images/icon_contact.svg) no-repeat center center;
  background-size: 24px 24px;
}
.subLinkArea .btnBlock .btn.faq :where(span, button)::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background: url(/assets/images/icon_faq_blue.svg) no-repeat center center;
  background-size: 24px 24px;
}
.subLinkArea .btnBlock .btn.solution :where(span, button)::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background: url(/assets/images/icon_solution.svg) no-repeat center center;
  background-size: 24px 24px;
}
.subLinkArea .btnBlock .btn_memberOnlyDocuments {
  display: inline-block;
  position: relative;
}
.subLinkArea .btnBlock .btn_memberOnlyDocuments .speechBubble_memberOnly {
  width: 130px;
  left: 50%;
  bottom: calc(100% - 10px);
  transform: translateX(-50%);
}
.subLinkArea .btnBlock .btn_memberOnlyDocuments .btn {
  background: var(--site-color-member);
  color: #fff;
  padding: 0;
}
.subLinkArea .btnBlock .btn_memberOnlyDocuments .btn.lock > *,
.subLinkArea .btnBlock .btn_memberOnlyDocuments .btn.lock > * > div,
.subLinkArea .btnBlock .btn_memberOnlyDocuments .btn.lock button {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.subLinkArea .btnBlock .btn_memberOnlyDocuments .btn.lock button,
.subLinkArea .btnBlock .btn_memberOnlyDocuments .btn.lock span {
  padding: 0 20px;
}
@media screen and (max-width: 1023px) {
  .subLinkArea .btnBlock {
    justify-content: flex-start;
  }
  .subLinkArea .btnBlock .item {
    width: calc((100% / 2) - (10px * 1 / 2));
  }
  .subLinkArea .btnBlock .btn {
    justify-content: flex-start;
  }
  .subLinkArea .btnBlock .btn :where(span, button) br {
    display: none;
  }
  .subLinkArea .btnBlock .btn_memberOnlyDocuments .btn {
    width: 100%;
  }
  .subLinkArea .btnBlock .btn_memberOnlyDocuments .speechBubble_memberOnly {
    left: 20px;
    bottom: calc(100% - 15px);
    transform: translateX(0);
  }
}
@media screen and (max-width: 767px) {
  .subLinkArea .btnBlock {
    padding: 20px;
  }
  .subLinkArea .btnBlock .btn {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    height: 48px;
    padding: 0 20px;
    margin: 0px;
    justify-content: flex-start;
    text-align: left;
    font-size: 14px;
    line-height: 1.2;
  }
  .subLinkArea .btnBlock .btn_memberOnlyDocuments {
    display: block;
    width: 100%;
  }
  .subLinkArea .btnBlock .btn_memberOnlyDocuments.notLogin {
    margin-top: 5px;
  }
  .subLinkArea .btnBlock .btn_memberOnlyDocuments .speechBubble_memberOnly {
    bottom: calc(100% - 8px);
  }
}

.tswProductMapBnrArea {
  padding-bottom: 40px;
  margin-top: 0;
}

.relativeLinkArea {
  padding-bottom: 40px;
}
.relativeLinkList {
  display: flex;
  border: 1px solid #ccc;
}
.relativeLinkList__item {
  flex: 1;
  border-left: 1px solid #ccc;
}
.relativeLinkList__item:first-child {
  border-left: none;
}
.relativeLinkList__link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 70px;
  padding: 0 20px;
  color: var(--site-color-main);
  text-decoration: none;
  font-size: 1.4rem;
  transition: var(--hover-transition);
}
.relativeLinkList__link:hover {
  opacity: var(--hover-opacity);
}
@media screen and (max-width: 767px) {
  .relativeLinkList {
    margin-top: 40px;
    flex-flow: column;
    border: 1px solid #ccc;
  }
  .relativeLinkList__item {
    width: 100%;
    border-left: none;
    border-top: 1px solid #ccc;
  }
  .relativeLinkList__item:first-child {
    border-top: none;
  }
}

.sampleArea {
  background: #002f70;
  padding: 30px 0;
}
.sampleArea .title {
  font-size: 20px;
  color: #fff;
  text-align: center;
  margin-bottom: 5px;
}
.sampleArea .partnerList {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.sampleArea .partnerList::before {
  content: '';
  display: block;
  width: 22.3%;
  order: 1;
}
.sampleArea .partnerList::after {
  content: '';
  display: block;
  width: 22.3%;
}
.sampleArea .partnerList li {
  width: 22.3%;
  margin-top: 20px;
}
.sampleArea .partnerList li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  background: #fff;
  padding: 0 5px;
}
.sampleArea .partnerList li a:hover,
.sampleArea .partnerList li a:focus {
  opacity: 0.8;
}
.sampleArea .partnerList li a img {
  width: 140px;
  height: auto;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .sampleArea {
    padding: 40px 0;
  }
  .sampleArea .title {
    font-size: 20px;
    margin-bottom: 0px;
  }
  .sampleArea .partnerList::before {
    display: none;
  }
  .sampleArea .partnerList::after {
    display: none;
  }
  .sampleArea .partnerList li {
    width: 48%;
  }
}

.salesContactsArea {
  padding: 40px 0;
  background: #f8f8f8;
}
.salesContactsArea .title {
  font-size: 26px;
  text-align: center;
  margin-bottom: 30px;
}
/*
.salesContactsArea .globalMapBox {
  width: 960px;
  margin: 0 auto;
  position: relative;
}
.salesContactsArea .globalMapBox a {
  position: absolute;
  text-align: center;
  color: #4a4a4a;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
}
.salesContactsArea .globalMapBox a:hover,
.salesContactsArea .globalMapBox a:focus {
  text-decoration: underline;
}
.salesContactsArea .globalMapBox a#europe {
  top: 25.5%;
  left: 4.4%;
}
.salesContactsArea .globalMapBox a#china {
  top: 44%;
  left: 26%;
}
.salesContactsArea .globalMapBox a#asia {
  top: 60%;
  left: 26%;
}
.salesContactsArea .globalMapBox a#japan {
  top: 37%;
  left: 40%;
}
.salesContactsArea .globalMapBox a#america {
  top: 40%;
  left: 72%;
}
*/
.salesContactsArea .btnArea {
  margin-top: 20px;
  text-align: center;
}
.salesContactsArea .btnArea a {
  display: inline-flex;
  height: 40px;
  align-items: center;
  padding: 0 20px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  background: #002f70;
}
.salesContactsArea .messageArea {
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  /*
  .salesContactsArea .globalMapBox {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  .salesContactsArea .globalMapBox .worldmap {
    width: 100%;
  }
  */
}
@media screen and (max-width: 767px) {
  .salesContactsArea {
    padding: 40px 0;
  }
  .salesContactsArea .title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  /*
  .salesContactsArea .globalMapBox a {
    font-size: 13px;
  }
  .salesContactsArea .globalMapBox a#japan {
    top: 35%;
  }
  */
}
.bottomBtnArea {
  padding: 60px 0;
}
.bottomBtnArea .btnList {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.bottomBtnArea .btnList::after {
  content: '';
  display: block;
  width: 30.5%;
}
.bottomBtnArea .btnList li {
  width: 30.5%;
}
.bottomBtnArea .btnList li a {
  display: flex;
  height: 80px;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 0 10px;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
  position: relative;
}
.bottomBtnArea .btnList li a:hover,
.bottomBtnArea .btnList li a:focus {
  opacity: 0.5;
}
.bottomBtnArea .btnList li a .icon {
  position: relative;
  padding-left: 32px;
}
.bottomBtnArea .btnList li a .membersOnlyBadge {
  display: block;
  width: 36px;
  height: 36px;
  position: absolute;
  top: -10px;
  right: -10px;
}
.bottomBtnArea .btnList li a .icon.infoIcon::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -12px;
  background: url(/assets/images/icon_info.svg) no-repeat center center;
  background-size: 24px 24px;
}
.bottomBtnArea .btnList li a .icon.contactIcon::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -12px;
  background: url(/assets/images/icon_contact.svg) no-repeat center center;
  background-size: 24px 24px;
}
.bottomBtnArea .btnList li a .icon.faqIcon::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -14px;
  background: url(/assets/images/icon_faq_blue.svg) no-repeat center center;
  background-size: 24px 24px;
}
.bottomBtnArea .btnList li a .icon.mailIcon::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -12px;
  background: url(/assets/images/icon_mail.svg) no-repeat center center;
  background-size: 24px 24px;
}
@media screen and (max-width: 767px) {
  .bottomBtnArea {
    padding: 30px 0 40px;
  }
  .bottomBtnArea .btnList {
    display: block;
  }
  .bottomBtnArea .btnList::after {
    display: none;
  }
  .bottomBtnArea .btnList li {
    width: auto;
  }
  .bottomBtnArea .btnList li + li {
    margin-top: 15px;
  }
  .bottomBtnArea .btnList li a {
    display: flex;
    height: 60px;
    justify-content: flex-start;
    align-items: center;
    background: #fff;
    padding: 0 15px;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.3;
  }
}
