/*Crimson*/
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;700&display=swap");
.en {
  font-family: 'Crimson Text', serif;
  letter-spacing: 0.1em;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul, li {
  list-style: none;
  margin-left: 0px;
}

a {
  text-decoration: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

header {
  width: 100%;
  padding: 10px 0px;
}

header .headerLogo {
  text-align: center;
  font-size: 28px;
  font-weight: 400;
}

.headerLogo > a:hover{
    text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  header .headerLogo {
    font-size: 18px;
  }
}

.header-responsive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .header-responsive {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 100;
    background: white;
    width: 100%;
    height: 60px;
  }
}

.header-responsive > div {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.header-responsive-left {
  position: relative;
}

.header-responsive-right {
  position: relative;
}


.header-responsive-right > div {
  padding-right: 10px;
}
@media screen and (max-width: 768px) {
    .header-responsive-left {
        flex-basis: 20% !important;
      }
      
      .header-responsive-right {
        flex-basis: 20% !important;
      }
}
.header-responsive-right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header-responsive-right ul li{
  position: relative;
}
.header-responsive-right .fs-client-cart-count{
    position: absolute;
    top: -5px;
    right: -8px;
    color: white;
    font-size: 12px;
    display: block;
    width: 16px;
    height: 16px;
    background: rgb(135, 14, 14);
    text-align: center;
    line-height: 16px;
    border-radius: 50%;
}
.header-responsive-right ul li a {
  font-size: 18px;
  color: #333;
}

.header-responsive-right ul li:nth-child(1) {
  margin-right: 15px;
}

.btn-trigger {
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 32px;
  height: 20px;
  cursor: pointer;
}

.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
  border-radius: 2px;
}

.btn-trigger, .btn-trigger span {
  display: inline-block;
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.btn-trigger span:nth-of-type(1) {
  top: 0;
}

.btn-trigger span:nth-of-type(2) {
  top: 9px;
}

.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

.btn-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
          transform: translateY(10px) rotate(-45deg);
}

.btn-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.btn-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
          transform: translateY(-10px) rotate(45deg);
}

.headerMenu {
  margin: 0 auto;
  position: relative;
  padding: 10px 0px;
}

.headerMenu-container {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  height: 30px;
  line-height: 30px;
}

.headerMenu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.headerMenu-list > li {
  margin: 0px 24px;
}

.headerMenu-list a {
  color: #333333;
}

.headerMenu-list a:hover {
  opacity: .7;
}

.headerMenu-subList {
  position: absolute;
  top: 40px;
  left: 0px;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  z-index: 20;
}

.headerMenu-subList a {
  color: white;
  font-size: 12px;
}

.menu-wrap {
  width: 1000px;
  margin: 0 auto;
  padding: 20px 0px;
}

.menu-wrap .menu1 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.menu-wrap .menu1 ul li {
  width: 16%;
  margin-bottom: 15px;
}

.menu-wrap .menu1 ul li a {
  position: relative;
}

.menu-wrap .menu1 ul li a::after {
  content: '';
  width: 6px;
  height: 6px;
  margin-top: -5px;
  border-top: solid 1px white;
  border-right: solid 1px white;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 60%;
  right: -20px;
  -webkit-transition: .4s;
  transition: .4s;
}

.menu-wrap .menu1 ul li a:hover {
  opacity: .7;
}

.header-icon {
  position: absolute;
  top: 2px;
  right: 0px;
}

.header-iconList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-iconList li {
  margin: 0px 15px;
  position: relative;
}
.fs-client-cart-count{
  position: absolute;
  top: -2px;
  right: -15px;
  color: white;
  font-size: 14px;
  display: block;
  width: 20px;
  height: 20px;
  background: rgb(135, 14, 14);
  text-align: center;
  line-height: 20px;
  border-radius: 50%;
}

.header-iconList li a {
  font-size: 18px;
  color: #333333;
}

.header-iconList li a:hover {
  opacity: .7;
}

.bottom_arrow {
  position: relative;
}

.bottom_arrow::after {
  content: '';
  width: 6px;
  height: 6px;
  margin-top: -5px;
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  position: absolute;
  top: 50%;
  right: -18px;
  -webkit-transition: .4s;
  transition: .4s;
}

.arrow_rotate::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 60%;
}

.spMenu_inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  top: 60px;
  left: -80%;
  width: 80%;
  height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  background: white;
  -webkit-transition: .4s;
  transition: .4s;
  padding-bottom: 150px;
}

.spMenu_inner .spMenu_title {
  padding: 6px 0px;
  background: #333333;
  color: white;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}

.spMenu_inner.active {
  left: 0%;
}

.spMenu_list a {
  color: black;
  font-size: 14px;
}

.spMenu_list li:not(.spMenu_title) {
  padding: 6px 0px 6px 20px;
  border-bottom: 1px dotted lightgray;
}

.spMenu_list li[class="borederNone"] {
  border-bottom: 0px dotted lightgray;
}

.spMenu_list .spMenu_search {
  padding: 0px 0px 0px 0px !important;
  border-bottom: 0px dotted lightgray !important;
}

.spMenu_overlay {
  display: none;
  opacity: 1;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 8;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
}

.spMenu_overlay.active {
  display: block;
  -webkit-animation: show .4s linear 0s;
          animation: show .4s linear 0s;
}

@-webkit-keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*# sourceMappingURL=style.css.map */