@charset "UTF-8";
/* A Modern CSS Reset */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  text-decoration-skip-ink: auto;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

input[type=text],
input[type=password],
button,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  outline: none;
}

textarea {
  resize: none;
}


input[type=radio],
input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

@font-face {
  font-family: " Memphis ";
  src: url(".../font/Memphis LT Std Bold.otf");
  font-weight: 700;
}
@font-face {
  font-family: " Memphis-ex ";
  src: url("../font/Memphis LT Std Extra Bold.otf");
  font-weight: 800;
}
.Memphis {
  font-family: " Memphis ";
}

.Memphis-ex {
  font-family: " Memphis-ex ";
}

body {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  color: #222;
}

html {
  font-size: 16px;
}
@media (max-width: 390px) {
  html {
    font-size: 4.1025641026vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.28vw;
  }
}
@media (min-width: 1250px) {
  html {
    font-size: 16px;
  }
}

html.fixed {
  overflow: hidden;
}

body {
  word-break: break-word;
  overflow-wrap: break-word;
}

.is-loading {
  opacity: 0;
}

@media screen and (min-width: 768px) {
  a {
    transition: 0.3s;
  }
  a:hover {
    opacity: 0.7;
  }
}

main {
    padding-top: 13.5rem;
/*  padding-top: 17.125rem;*/
}
@media screen and (min-width: 768px) {
  main {
    padding-top: 14.875rem;
    padding-left: 11.875rem;
  }
}

.white-text {
  color: #fff;
}

.red-text {
  color: #E60012;
}

.inner {
  width: 100%;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1250px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

.u-d_flex {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-d_flex {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

.u-mobile_flex {
  display: flex;
}
@media screen and (min-width: 768px) {
  .u-mobile_flex {
    display: none;
  }
}

.u-disp-flex {
  display: flex;
}

.u-disp-flex-dt {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-disp-flex-dt {
    display: flex;
  }
}

.u-disp-flex-sp {
  display: flex;
}
@media screen and (min-width: 768px) {
  .u-disp-flex-sp {
    display: block;
  }
}

.u-disp-flex__cc {
  display: flex;
  justify-content: center;
  align-items: center;
}

.u-posi-rela {
  position: relative;
}

.u-posi-abso {
  position: absolute;
}

.u-posi-fixed {
  position: fixed;
  box-shadow: 2px 0 6px rgba(0, 0, 0, 0.3);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 500;
}

.header-top {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  border-bottom: 2px solid #E60012;
  padding: 0.75rem 3rem 0.5rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .header-top {
    padding: 1.25rem 0.75rem 0.625rem 1.125rem;
  }
}

.header-logo {
  width: 8.75rem;
}
@media screen and (min-width: 768px) {
  .header-logo {
    width: 21.25rem;
    display: flex;
    align-items: center;
    gap: 1.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .header-logo img {
    width: 10rem;
  }
}

.header-logo p {
  text-align: center;
  font-family: "Arvo", serif;
  font-weight: 700;
  font-size: 0.8125rem;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .header-logo p {
    margin-top: 0;
    font-size: 1rem;
  }
}

.header-top__center {
  margin-left: 1.125rem;
}
@media screen and (min-width: 768px) {
  .header-top__center {
    margin-left: 5.375rem;
    width: 100%;
    max-width: 35rem;
  }
}

.header-search {
  width: 100%;
  position: relative;
}

.header-top__center .header-search {
  display: none;
}
@media screen and (min-width: 768px) {
  .header-top__center .header-search {
    display: block;
  }
}

.header-middle .header-search {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .header-middle .header-search {
    display: none;
    margin-bottom: 0;
  }
}
#searchform {
	width: 100%;
}
.header-search input {
  width: 100%;
  font-weight: 500;
  background-color: #EDEDED;
  padding: 0.875rem 2.875rem 1rem 1rem;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .header-search input {
    padding: 0.75rem 2.25rem 0.75rem 1.25rem;
    font-size: 0.875rem;
    line-height: 1.6923076923;
  }
}

.header-search input::placeholder {
  color: #BBBBBB;
}

.header-search::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../../img/icon-search.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 0.625rem;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .header-search::after {
    width: 1.5rem;
    height: 1.8125rem;
  }
}

.header-subtext {
  font-weight: 700;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .header-subtext {
    letter-spacing: 0.15em;
  }
  .header-subtext br {
    display: none;
  }
}


.header-top .header-top__btn-area {
  display: none;
}
@media screen and (min-width: 768px) {
  .header-top .header-top__btn-area {
    display: flex;
    justify-content: right;
    width: 100%;
    max-width: 12rem;
    margin-left: auto;
  }
}

.header-top__btn-area {
  display: flex;
  gap: 1.375rem;
}
@media screen and (min-width: 768px) {
  .header-top__btn-area {
    gap: 1.5rem;
  }
}

.header-top__btn {
  max-width: 6rem;
}

.header-top__btn img {
  width: 1.375rem;
  height: 1.5rem;
  object-fit: contain;
  margin: 0 auto;
}

.header-top__btn p {
  text-align: center;
  color: #4B4B4B;
  font-size: 0.75rem;
  line-height: 1;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .header-top__btn p {
    margin-top: 0.625rem;
  }
}

.header-middle {
  padding: 1.625rem 1.25rem 0rem;
}
@media screen and (min-width: 768px) {
  .header-middle {
    padding: 0.5rem 2.1875rem 1.875rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.header-sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.sns-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.sns-icons li {
  width: 1.875rem;
  height: 1.875rem;
}

.sns-icons li:last-child {
  width: 2.3125rem;
}
.header-ranking__btn {
  width: 18rem;
  border: 1px solid #BBBBBB;
  margin: 1.25rem 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .header-ranking__btn {
    display: none;
  }
}
.header-ranking__btn a {
  display: block;
  height: 2.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0 0.5rem;
}

.header-ranking__btn img {
  width: 0.625rem;
}
.header-btm {
  position: relative;
}
@media screen and (min-width: 768px) {
  .header-btm {
    border-bottom: 1px solid #BFBFBF;
  }
}
.fixed-bannar__area {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.fixed-bannar-item {
  width: calc(50% - 0.5rem);
}
@media screen and (min-width: 768px) {
.fixed-bannar__area {
  padding: 1.25rem 0 0 1.25rem ;
  display: block;
  gap: 1rem;
}
.fixed-bannar-item {
  width: 100%;
}
.fixed-bannar-item:nth-child(n+2) {
  margin-top: 1rem;
}
}
footer {
  background-color: #F5F5F5;
  color: #000;
}
@media screen and (min-width: 768px) {
  footer {
    text-align: center;
  }
}

.footer-inner {
  padding: 1.5rem 1.375rem 1rem;
}
@media screen and (min-width: 768px) {
  .footer-inner {
    padding: 2.5rem 1.375rem 1.25rem;
  }
}

.footer-logo {
  max-width: 7.5rem;
}
@media screen and (min-width: 768px) {
  .footer-logo {
    max-width: 8.125rem;
    margin: 0 auto;
  }
}

.footer-texts {
  font-size: 0.8125rem;
  line-height: 1.8461538462;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .footer-texts {
    font-size: 0.75rem;
    line-height: 1;
    margin-top: 1rem;
  }
}

.footer-texts span {
  font-weight: 700;
  display: block;
}
@media screen and (min-width: 768px) {
  .footer-texts span {
    display: inline;
    padding-right: 1rem;
  }
}

.copyright {
  font-family: "Montserrat", serif;
  font-size: 0.625rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .copyright {
    font-size: 0.75rem;
    margin-top: 1.25rem;
  }
}

.header-hamberger {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  z-index: 500;
}
@media screen and (min-width: 768px) {
  .header-hamberger {
    display: none;
  }
}

.drawer-nav-menu .header-hamberger {
  position: initial;
  transform: initial;
}

.hamberger {
  position: relative;
  width: 2.25rem;
  height: 1.75rem;
  cursor: pointer;
}
.drawer-nav-menu .hamberger {
  width: 1.875rem;
  height: 1.875rem;
}

.hamberger-bar {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 0.125rem;
  background: #000;
  transition: 0.3s;
  transform: translate(-50%, -50%);
}

.hamberger-bar:nth-of-type(1) {
  top: 0%;
}

.hamberger-bar:nth-of-type(2) {
  top: 50%;
}

.hamberger-bar:nth-of-type(3) {
  top: 100%;
}

/* オープン時の動き */
.drawer-nav-menu .hamberger-bar {
  width: 2.3125rem;
  transition: 0.3s;
}

.drawer-nav-menu .hamberger-bar:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
}

.drawer-nav-menu .hamberger-bar:nth-of-type(2) {
  transform: translate(-50%, -50%);
  opacity: 0;
}

.drawer-nav-menu .hamberger-bar:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50%;
}

.header-nav {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  color: black;
}
@media screen and (min-width: 768px) {
  .header-nav {
    width: initial;
    height: initial;
    position: initial;
    display: block;
    overflow-y: initial;
  }
}

@media screen and (min-width: 768px) {
  .header-nav__items {
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .header-nav__item a {
    display: flex;
    position: relative;
    padding: 0.3125rem;
  }
}

.drawer-nav-menu {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  background-color: rgba(0, 0, 0, 0.7);
  padding-left: 3.125rem;
  overflow-y: scroll;
}

.drawer-nav {
  background-color: #fff;
  padding-bottom: 8.125rem;
}

.drawer-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.5rem 0.5rem 0.875rem;
  border-bottom: 2px solid #CCCCCC;
}

.drawer-nav .header-tab {
  gap: 0.25rem;
}

.drawer-nav .header-tab__item a {
  font-size: 0.75rem;
}

.drawer-nav .header-tab__wrap {
  padding: 0.5rem 1.25rem 1.875rem;
}

.header-tab__wrap {
  width: 100%;
  padding: 0 1.25rem;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .header-tab__wrap {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 0;
    width: calc(100% - 15rem);
    margin-left: auto;
    scroll-behavior: smooth;
  }
}

.header-btm .header-tab__wrap {
  display: none;
}
@media screen and (min-width: 768px) {
  .header-btm .header-tab__wrap {
    display: flex;
    justify-content: left;
  }
}

.scroll-area {
  position: relative;
}

.main-content .header-tab__wrap {
  display: flex;
}
@media screen and (min-width: 768px) {
  .main-content .header-tab__wrap {
    display: none;
  }
}

.header-btm .header-tab__wrap::-webkit-scrollbar {
  display: none;
}

.header-tab {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  max-width: 36.875rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .header-tab {
    gap: 0.25rem;
    flex-wrap: nowrap;
    max-width: initial;
    justify-content: right;
    margin: 0;
    padding-right: 3.125rem;
  }
}

.scroll-content {
  display: flex;
}

.header-tab__item {
  width: calc((100% - 1.25rem) / 3);
  max-width: 6.875rem;
}
@media screen and (min-width: 768px) {
  .header-tab__item {
    width: initial;
    max-width: initial;
  }
}

.header-tab__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #CCCCCC;
  border-top: 4px solid;
  height: 5rem;
  font-family: " Memphis ";
  font-weight: 700;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  padding: 0.75rem 0rem 0.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header-tab__item a {
    border-bottom: initial;
    border-top: 5px solid;
    background-color: #F0F0F0;
    white-space: nowrap;
    height: auto;
    min-height: 3.75rem;
    height: 100%;
    font-size: 0.85rem;
    line-height: 1.2;
    padding: 0.75rem 0.6rem 0.5rem;
  }
}
@media screen and (min-width: 1080px) {
  .header-tab__item a {
    padding: 0.75rem 0.6rem 0.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .header-tab__item a {
    font-size: 1rem;
    /* padding: 0.75rem 0.8rem 0.5rem; */
  }
}
@media screen and (min-width: 768px) {
  .header-tab__item a:hover,
  .header-tab__item a.now-area {
    opacity: 1;
    background-color: #fff;
  }
}

.header-tab__item.topics a {
  border-top-color: #E60012;
}


.header-tab__item.promotion a {
  border-top-color: #3DBAE1;
}


.header-tab__item.others a {
  border-top-color: #C2A26B;
}


.header-tab__item.newProducts a {
  border-top-color: #E60012;
}


.header-tab__item.tool a {
  border-top-color: #E972AC;
}


.header-tab__item.handTools a {
  border-top-color: #85C032;
}


.header-tab__item.equipment a {
  border-top-color: #348549;
}


.header-tab__item.diagnostics a {
  border-top-color: #8044AB;
}


.header-tab__item.vendor a {
  border-top-color: #7A5136;
}


.header-tab__item.licensed a {
  border-top-color: #3638A6;
}


.header-tab__item.training a {
  border-top-color: #F5C342;
}


.header-menu {
  width: 100%;
  background-color: #fff;
}

.header-btm .header-menu {
  display: none;
}
@media screen and (min-width: 768px) {
  .header-btm .header-menu {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    max-width: 12.5rem;
    height: calc(100vh - 8.75rem);
    padding-bottom: 2.25rem;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    background-color: initial;
  }
}

.header-menu::-webkit-scrollbar {
  display: none;
}

@media screen and (min-width: 768px) {
  .header-menu__block {
    background-color: #E7E7E7;
  }
}

.header-menu__block:nth-child(n+2) {
  margin-top: 0.125rem;
}
@media screen and (min-width: 768px) {
  .header-menu__block:nth-child(n+2) {
    margin-top: 0.25rem;
  }
}

.header-menu__block--label {
  background-color: #8C8C8C;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header-menu__block--label {
    padding: 0.625rem 0.875rem;
    height: 3.75rem;
    gap: 0.875rem;
  }
}

.header-menu__block--label::before,
.header-menu__block--label::after {
  content: "";
  display: block;
  width: 1.375rem;
  height: 0.125rem;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 1.3125rem;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .header-menu__block--label::before,
  .header-menu__block--label::after {
    display: none;
  }
}

.header-menu__block--label::after {
  transform: translateY(-50%) rotate(90deg);
}

.header-menu__block--label.close::after {
  opacity: 0;
}

.header-menu__block:nth-of-type(3) .header-menu__block--label::before,
.header-menu__block:nth-of-type(3) .header-menu__block--label::after {
  display: none;
}

.header-menu__block--label img {
  width: 1.875rem;
}

.header-menu__block--menu {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .header-menu__block--menu {
    display: block;
    padding: 0.625rem 0.75rem 0.625rem 0.9375rem;
    font-size: 0.8125rem;
    line-height: 1.6;
  }
}

.header-menu__item {
  background-color: #fff;
  width: 50%;
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (min-width: 768px) {
  .header-menu__item {
    border: initial;
    width: 100%;
    background-color: #E7E7E7;
    padding: 0.4rem 0;
  }
}

.header-menu__item.is-current {
  font-weight: 700;
}

.header-menu__item:nth-child(2n+1) {
  border-right: 1px solid #D9D9D9;
}
@media screen and (min-width: 768px) {
  .header-menu__item:nth-child(2n+1) {
    border: initial;
  }
}

.header-menu__item a {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  height: 3.75rem;
}
@media screen and (min-width: 768px) {
  .header-menu__item a {
    display: block;
    padding: 0;
    height: initial;
  }
}

.header-menu.bunselling .header-menu__block:nth-of-type(1) .js-aco_openbox {
  display: block;
}

.header-menu.datebase .header-menu__block:nth-of-type(2) .js-aco_openbox {
  display: block;
}

.header-menu.partsserch .header-menu__block:nth-of-type(4) .js-aco_openbox {
  display: block;
}

.js-aco_title {
  cursor: pointer;
}

.js-aco_openbox {
  display: none;
  padding-bottom: 0.4rem;
}

.hot-tools__wrap {
  padding: 1.875rem 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .hot-tools__wrap {
    padding: 1.625rem 0 0;
  }
}

.hot-tools {
  width: 100%;
  border: 2px solid #E60012;
  padding: 0 0.75rem 1rem;
}
@media screen and (min-width: 768px) {
  .hot-tools {
    border: 4px solid #E60012;
  }
}

.hot-tools__title {
  width: 8.75rem;
  margin: -0.625rem auto 0;
}
@media screen and (min-width: 768px) {
  .hot-tools__title {
    width: 10.625rem;
    margin-top: -0.75rem;
  }
}

.hot-tools__text {
  margin-top: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .hot-tools__text {
    margin-top: 0.625rem;
  }
}

.hot-tools__serch {
  margin-top: 0.75rem;
  position: relative;
  background-color: #EDEDED;
}
@media screen and (min-width: 768px) {
  .hot-tools__serch {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
  }
}

.hot-tools__serch::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("../../img/icon-search_black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 0.625rem;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .hot-tools__serch::after {
    width: 1.5rem;
    height: 1.8125rem;
  }
}

.hot-tools__serch input {
  display: block;
  width: 100%;
  font-weight: 500;
  background-color: #EDEDED;
  padding: 0.875rem 2.875rem 1rem 1rem;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .hot-tools__serch input {
    max-width: 15.375rem;
    padding: 0.75rem 2.25rem 0.75rem 1.25rem;
  }
}

.hot-tools__serch input::placeholder {
  color: #BBBBBB;
}

@media screen and (min-width: 768px) {
  .main-content__wrap {
    display: flex;
    padding-right: 2.125rem;
    position: relative;
  }
}

.main-content {
  padding: 0rem 1.25rem 3.125rem;
}
@media screen and (min-width: 768px) {
  .main-content {
    width: calc(100% - 20rem);
    padding: 1.5rem 3.125rem 3.5rem;
  }
}

.main-content__menu {
  display: none;
}
@media screen and (min-width: 768px) {
  .main-content__menu {
    background-color: #fff;
    display: block;
    width: 20rem;
    /* position: sticky; */
    top: 14.875rem;
    right: 0;
    /* height: calc(100vh - 14.875rem);
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none; */
    padding-bottom: 2.25rem;
  }
}

.main-content__menu::-webkit-scrollbar {
  display: none;
}

.rate-serach {
  background-color: #E60012;
}

.rate-serach__label {
  padding: 1.25rem 0.75rem 0 1rem;
  font-weight: 400;
  font-size: 1rem;
  color: #fff;
  line-height: 1;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .rate-serach__label {
    border-bottom: 1px solid #fff;
    line-height: 0.8;
    margin-top: 0;
  }
}

.rate-serach__label span {
  font-size: 1.7rem;
  font-family: " Memphis ";
  font-weight: 700;
  margin-right: 2rem;
  letter-spacing: -0.05rem;
}

.rate-serach__input {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1.125rem 1.125rem 1.25rem 1rem;
}

.rate-serach__input p {
  font-size: 0.875rem;
  line-height: 1;
}

.rate-serach__input input {
  width: 100%;
  /* max-width: 15.375rem; */
  background-color: #fff;
  padding: 0.75rem 0.5rem;
}

.rate-serach__input input::placeholder {
  color: #BBBBBB;
}

.sales-ranking {
  border: 4px solid #E0E0E0;
  padding: 1rem 0.25rem 1.5rem;
  margin: 2rem 1rem 0;
}
@media screen and (min-width: 768px) {
  .sales-ranking {
  padding: 0.75rem 0.25rem 1rem;
  margin: 1.625rem 0 0;
}
}
.template-ranking .main-content__section {
  padding: 0 0 3rem;
}

.sales-ranking__top {
  background-color: #A5A5A5;
  padding: 0.625rem 0.625rem;
}

.sales-ranking__text {
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
}

.sales-ranking__list {
  margin-top: 0.75rem;
}

.sales-ranking__select {
  background-color: #fff;
  width: 100%;
  margin-top: 0.75rem;
  position: relative;
}

.sales-ranking__select select {
  padding: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
}

.sales-ranking__select .arrow {
  width: 0.9375rem;
  position: absolute;
  top: 50%;
  right: 0.375rem;
  transform: translateY(-50%);
}

.sales-ranking__list--date {
  margin-top: 0.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: "Montserrat", serif;
  color: #fff;
  letter-spacing: 0.1em;
}

.sales-ranking__list--date .week {
  font-weight: 700;
  font-size: 0.875rem;
}

.sales-ranking__list--date .week .week-num {
  font-size: 1.125rem;
}

.sales-ranking__list--date .day {
  font-size: 0.875rem;
}

.selectContent,
.selectContent2 {
  display: none;
}

.selectContent.is_active,
.selectContent2.is_active {
  display: block;
}

.sales-ranking__list--item {
  padding: 0.5rem 0.3125rem 0.625rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #CCCCCC;
}
@media screen and (min-width: 768px) {
  .sales-ranking__list--item {
    padding: 0.1875rem 0.3125rem 0.5rem;
  }
}

.sales-ranking__list--item .rank {
  font-weight: 500;
  font-size: 0.9375rem;
  color: #E60012;
  width: 3.125rem;
}

.sales-ranking__list--item:nth-child(n+6) .rank {
  color: #999999;
}

.sales-ranking__list--item .rank .num {
  font-size: 1.5rem;
}

.sales-ranking__list--item .detail-top {
  font-weight: 500;
}

.sales-ranking__list--item .detail-top .id {
  font-size: 0.6875rem;
  line-height: 2.1818181818;
}

.sales-ranking__list--item .detail-top .name {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.sales-ranking__list--item .detail-top .add {
  font-size: 0.8125rem;
  line-height: 1.8461538462;
}

.sales-ranking__list--item .detail-btm {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.3333333333;
}

.sales-ranking__list--item .detail-btm .yen {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.sales-ranking__btn {
  max-width: 7.5rem;
  margin: 1rem auto 0;
}

.sales-ranking__btn a {
  background-color: #66BFDB;
  padding: 0.5625rem 0.6875rem 0.6875rem;
  text-align: center;
  font-weight: 500;
  font-size: 0.875rem;
  color: #fff;
  display: block;
}

.sales-ranking__list ul,
.sales-ranking__list h2 {
  display: none;
}

.sales-ranking__list ul:nth-of-type(1),
.sales-ranking__list h2:nth-of-type(1) {
  display: block;
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid #999999;
}
.top-section .section-title {
  border-bottom: 1px solid #E50000;
}
.section-title h2 {
  font-size: 1.5rem;
  width: calc(100% - 7.5rem);
}
@media screen and (min-width: 768px) {
  .section-title h2 {
    font-size: 1.75rem;
    width: calc(100% - 9.375rem);
  }
}

.section-title__archive-btn {
  width: 7.5rem;
}
@media screen and (min-width: 768px) {
  .section-title__archive-btn {
    width: 9.875rem;
  }
}

.section-title__archive-btn a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .section-title__archive-btn a {
    padding: 0.5rem 0.625rem 0.4375rem;
    gap: 1.25rem;
    width: 100%;
  }
}

.topics .section-title {
  border-bottom: 1px solid #E60012;
}

.promotion .section-title {
  border-bottom: 1px solid #3DBAE1;
}

.others .section-title {
  border-bottom: 1px solid #C2A26B;
}

.newproducts .section-title {
  border-bottom: 1px solid #E60012;
}

.tool .section-title {
  border-bottom: 1px solid #E972AC;
}

.handtools .section-title {
  border-bottom: 1px solid #85C032;
}

.equipment .section-title {
  border-bottom: 1px solid #348549;
}

.diagnostics .section-title {
  border-bottom: 1px solid #8044AB;
}

.vendor .section-title {
  border-bottom: 1px solid #7A5136;
}

.licensed-products .section-title {
  border-bottom: 1px solid #3638A6;
}

.training .section-title {
  border-bottom: 1px solid #F5C342;
}

@media screen and (min-width: 768px) {
  .topics .section-title__archive-btn a {
    background-color: #E60012;
  }
}

@media screen and (min-width: 768px) {
  .promotion .section-title__archive-btn a {
    background-color: #3DBAE1;
  }
}

@media screen and (min-width: 768px) {
  .others .section-title__archive-btn a {
    background-color: #C2A26B;
  }
}

@media screen and (min-width: 768px) {
  .newproducts .section-title__archive-btn a {
    background-color: #E60012;
  }
}

@media screen and (min-width: 768px) {
  .tool .section-title__archive-btn a {
    background-color: #E972AC;
  }
}

@media screen and (min-width: 768px) {
  .handtools .section-title__archive-btn a {
    background-color: #85C032;
  }
}

@media screen and (min-width: 768px) {
  .equipment .section-title__archive-btn a {
    background-color: #348549;
  }
}

@media screen and (min-width: 768px) {
  .diagnostics .section-title__archive-btn a {
    background-color: #8044AB;
  }
}

@media screen and (min-width: 768px) {
  .vendor .section-title__archive-btn a {
    background-color: #7A5136;
  }
}

@media screen and (min-width: 768px) {
  .licensed-products .section-title__archive-btn a {
    background-color: #3638A6;
  }
}

@media screen and (min-width: 768px) {
  .training .section-title__archive-btn a {
    background-color: #F5C342;
  }
}

.section-title__archive-btn p {
  font-weight: 700;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .section-title__archive-btn p {
    color: #fff;
  }
}

.section-title__archive-btn img {
  padding: 0.9375rem 0.75rem;
  width: 3.125rem;
  height: 3.125rem;
}
@media screen and (min-width: 768px) {
  .section-title__archive-btn img {
    background-color: initial;
    padding: 0;
    width: 1.625rem;
    height: 1.25rem;
  }
}

.topics .section-title__archive-btn img {
  background-color: #E60012;
}

.promotion .section-title__archive-btn img {
  background-color: #3DBAE1;
}

.others .section-title__archive-btn img {
  background-color: #C2A26B;
}

.newproducts .section-title__archive-btn img {
  background-color: #E60012;
}

.tool .section-title__archive-btn img {
  background-color: #E972AC;
}

.handtools .section-title__archive-btn img {
  background-color: #85C032;
}

.equipment .section-title__archive-btn img {
  background-color: #348549;
}

.diagnostics .section-title__archive-btn img {
  background-color: #8044AB;
}

.vendor .section-title__archive-btn img {
  background-color: #7A5136;
}

.licensed-products .section-title__archive-btn img {
  background-color: #3638A6;
}

.training .section-title__archive-btn img {
  background-color: #F5C342;
}

.top-section {
  background-color: #FCF3F4;
  margin: 0 -1.25rem;
  padding: 1.125rem 1.25rem 3.625rem;
}
@media screen and (min-width: 768px) {
  .top-section {
    background-color: initial;
    margin: 0;
    padding: 0;
  }
}

.top-section .section-title h2 {
  color: #E50000;
}

.main-section:nth-child(n+2) {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .main-section:nth-child(n+2) {
    margin-top: 3rem;
    padding-top: 1.6rem;
  }
}

.main-section__product-list {
  margin: 1rem auto 0;
  max-width: 34.375rem;
}
@media screen and (min-width: 768px) {
  .main-section__product-list {
    max-width: initial;
  }
}

.main-section__archive-btn {
  margin-top: 1rem;
  display: flex;
  justify-content: right;
}
@media screen and (min-width: 768px) {
  .main-section__archive-btn {
    margin-top: 1.125rem;
  }
}

.main-section__archive-btn a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 700;
  font-size: 0.75rem;
  color: #444444;
}
@media screen and (min-width: 768px) {
  .main-section__archive-btn a {
    font-size: 0.875rem;
  }
}

.main-section__archive-btn img {
  width: 1rem;
}

.product-list {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .product-list {
    flex-wrap: wrap;
    gap: 2.5rem 0.75rem;
  }
}

.product-list__item {
  padding-bottom: 1rem;
  border-bottom: 1px solid #DDDDDD;
}
@media screen and (min-width: 768px) {
  .product-list__item {
    width: calc(50% - 1.25rem);
  }
}

.product-list__item:nth-child(n+2) {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .product-list__item:nth-child(n+2) {
    margin-top: 0;
  }
}

.product-list__item a {
  display: flex;
}

.product-list__item--img {
  max-width: 7.5rem;
  max-height: 5.25rem;
}
.product-list__item--img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 120/84;
}
.product-list__item--texts {
  width: calc(100% - 7.5rem);
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  .product-list__item--texts {
    padding-left: 1rem;
  }
}

.product-list__item--texts .top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .product-list__item--texts .top {
    gap: 0.3125rem;
  }
}

.product-list__item--texts .day,
.topics-list__item--texts .day {
  font-family: "Montserrat", serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #777777;
}
@media screen and (min-width: 768px) {
  .product-list__item--texts .day,
  .topics-list__item--texts .day {
    font-size: 0.875rem;
  }
}

.product-list__item--texts .new,
.topics-list__item--texts .new {
  border-radius: 10px;
  background-color: #E60012;
  padding: 0.125rem 0.3125rem 0.0625rem;
  font-family: "Arvo", serif;
  font-weight: 700;
  font-size: 0.6875rem;
  line-height: 1.1;
  color: #fff;
}

.product-list__item--texts .name {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 0.25rem;
  color: #000;
}
@media screen and (min-width: 768px) {
  .product-list__item--texts .name {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}

.product-list__item--texts .name p {
  display: inline;
}

.product-list__item--texts .important {
  display: inline;
}

.main-section__topics-list {
  margin: 0 auto;
  max-width: 34.375rem;
}
@media screen and (min-width: 768px) {
  .main-section__topics-list {
    max-width: initial;
  }
}

@media screen and (min-width: 768px) {
  .topics-list {
    background-color: #FCF3F4;
    padding-top: 0.625rem;
  }
}

.topics-list__item {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #DDDDDD;
  position: relative;
}
.topics-list__item::after {
  content: "";
  display: block;
  width: 7.5rem;
  height: 0.125rem;
  background-color: #E60012;
  position: absolute;
  bottom: -0.0625rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .topics-list__item::after {
    width: 10rem;
  }
}

@media screen and (min-width: 768px) {
  .topics-list__item:nth-child(n+2) {
    margin-top: 0.75rem;
  }
}

@media screen and (min-width: 768px) {
  .topics-list__item a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 0.625rem;
  }
}

@media screen and (min-width: 768px) {
  .topics-list__item--texts {
    width: calc(100% - 11rem);
  }
}

@media screen and (min-width: 768px) {
  .topics-list__item--texts .top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
}

.topics-list__item--texts .top .label {
  /* width: 7.5rem; */
  margin-left: auto;
  padding: 0.3rem 0 0.15rem;
  color: #fff;
  font-family: " Memphis ";
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.2;
  background-color: #E60012;
  display: inline-block;
  min-width: 7.5rem;
}
@media screen and (min-width: 768px) {
  .topics-list__item--texts .top .label {
    margin-left: 0;
    padding: 0.125rem 0.5rem;

  }
}

.promotion .topics-list__item--texts .top .label {
  background-color: #3DBAE1;
}

.others .topics-list__item--texts .top .label {
  background-color: #C2A26B;
}

.new-products .topics-list__item--texts .top .label {
  background-color: #E60012;
}

.tool .topics-list__item--texts .top .label {
  background-color: #E972AC;
}

.handtools .topics-list__item--texts .top .label {
  background-color: #85C032;
}

.equipment .topics-list__item--texts .top .label {
  background-color: #348549;
}

.diagnostics .topics-list__item--texts .top .label {
  background-color: #8044AB;
}

.vendor .topics-list__item--texts .top .label {
  background-color: #7A5136;
}

.licensed-products .topics-list__item--texts .top .label {
  background-color: #3638A6;
}

.training .topics-list__item--texts .top .label {
  background-color: #F5C342;
}

.topics-list__item--texts .title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .topics-list__item--texts .title {
    margin-top: 0.375rem;
  }
}

.topics-list__item--texts .title span {
  color: #E60012;
  margin-right: 0.25rem;
}
.topics-list__item--texts .text {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .topics-list__item--texts .text {
    margin-top: 0.9375rem;
    margin-top: 0.5rem;
  }
}

.topics-list__item--texts .text p {
  width: calc(100% - 8.5rem);
}
@media screen and (min-width: 768px) {
  .topics-list__item--texts .text p {
    width: 100%;
  }
}

.topics-list__item--img {
  width: 7.5rem;
}
@media screen and (min-width: 768px) {
  .topics-list__item--img {
    width: 6.25rem;
  }
}

.topics-list__item--img img {
  height: auto;
  aspect-ratio: 100/81;
  object-fit: contain;
}
.search-item {
  border-bottom: 1px solid #000;
	padding-bottom: 1rem;
}
/*# sourceMappingURL=style.css.map */

.flat-rate {
    margin-top: 1.625rem;
    background-color: #DEDEDE;
}

.authentication-left {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #777;
  margin: 0 0.4rem 0 0.4rem;
  padding: 0.4rem;
  background: #f9f9f9;
}
.authentication-right {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #777;
  padding: 0.4rem 0 0 0;
  background: #fff;
}
.authentication-right-sp {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #777;
  padding: 0.4rem 1rem 0 1rem;
  background: #fff;"
}
.no-entry {
  padding: 1rem 0 0 0;
}
@media screen and (min-width: 768px) {
  .no-entry {
    padding: 0 0 1rem 1rem;
  }
}