@charset "UTF-8";
/* CSS Document */
img[src$=".svg"] {
  width: 100%;
}

/*share*/
::-moz-selection {
  background: rgba(3, 22, 40, 0.6); /* Safari */
  color: white;
}
::selection {
  background: rgba(3, 22, 40, 0.6); /* Safari */
  color: white;
}

::-moz-selection {
  background: rgba(3, 22, 40, 0.6); /* Firefox */
  color: white;
}

html, body {
  height: 100%;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  color: black;
}
a:hover {
  text-decoration: underline;
}

li {
  list-style-type: none;
}

dl, dt, dd, ul, li, figure {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, p {
  padding: 0;
  margin: 0;
  font-size: inherit;
}

em, i {
  font-style: normal;
}

._pc {
  display: block;
}
@media all and (max-width: 640px) {
  ._pc {
    display: none;
  }
}

._sp {
  display: none;
}
@media all and (max-width: 640px) {
  ._sp {
    display: block;
  }
}

body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Meiryo UI", "Meiryo", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ ゴシック", "MS Gothic", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: rgb(250, 250, 248);
  color: rgb(51, 51, 51);
  opacity: 0;
}
body a {
  color: rgb(51, 51, 51);
}
body a:hover {
  text-decoration: none;
  opacity: 0.5;
}

/*///////////////////////////
PARTS start 
///////////////////////////*/
.header {
  position: fixed;
  padding-top: 30px;
  padding-left: 2%;
  z-index: 1010;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header__logo {
  width: 230px;
}
.header__logo img {
  width: 100%;
}
@media all and (max-width: 1200px) {
  .header__logo {
    width: 200px;
  }
}
@media all and (max-width: 850px) {
  .header {
    padding-left: 25px;
  }
}
@media all and (max-width: 640px) {
  .header {
    padding-top: 45px;
    padding-left: 5%;
    /*         &._scrolled {
                padding-top: 15px;
            } */
  }
}

.content {
  margin-right: 275px;
  padding: 0 2%;
  padding-top: 100px;
}
@media all and (max-width: 1200px) {
  .content {
    margin-right: 250px;
  }
}
@media all and (max-width: 1000px) {
  .content {
    margin-right: 30px;
  }
}
@media all and (max-width: 850px) {
  .content {
    padding: 85px 25px 0;
  }
}
@media all and (max-width: 640px) {
  .content {
    width: 90%;
    margin: 0 auto;
    padding: 90px 0 0;
  }
}

.section {
  position: relative;
  padding-top: 30px;
}
.section::before {
  position: absolute;
  content: "";
  background: rgb(51, 51, 51);
  top: 0;
  left: 0;
  width: 15px;
  height: 1px;
}
.section._fullborder {
  position: relative;
  padding-top: 30px;
}
.section._fullborder::before {
  position: absolute;
  content: "";
  background: rgb(51, 51, 51);
  top: 0;
  left: 0;
  width: 15px;
  height: 1px;
}
.section._fullborder::before {
  width: 100%;
}
.section + .section {
  margin-top: 30px;
}
.section__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
* + .section__header {
  margin-top: 30px;
}
@media all and (max-width: 640px) {
  .section__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
.section__headerlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.section__headerlist li {
  width: 32%;
  margin-left: 2%;
  margin-top: 2%;
}
@media all and (min-width: 640px) {
  .section__headerlist li:nth-child(3n+1) {
    margin-left: 0;
  }
}
.section__headerlist li a {
  width: 100%;
  height: 100%;
  text-align: center;
  display: block;
  padding: 20px 10px;
  background: rgb(243, 243, 240);
  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;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 1;
}
.section__headerlist li a:hover {
  background: rgb(51, 51, 51);
  color: rgb(243, 243, 240);
}
@media all and (max-width: 640px) {
  .section__headerlist li {
    width: 48%;
    margin-left: 4%;
    margin-top: 4%;
  }
  .section__headerlist li a {
    padding: 15px 10px;
  }
  .section__headerlist li:nth-child(2n+1) {
    margin-left: 0;
  }
}
@media all and (max-width: 640px) {
  .section._headline .section__title {
    display: none;
  }
  .section._headline * + .definitioncontent {
    margin-top: 0px;
  }
}
.section__titlelist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.section__titlelist li {
  padding-right: 35px;
  position: relative;
}
.section__titlelist li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  height: 1px;
  width: 15px;
  background: rgb(51, 51, 51);
}
.section__titlelist li:last-child {
  padding-right: 0;
}
.section__titlelist li:last-child::after {
  content: none;
}
.section .searchresult {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 32%;
}
.section .searchresult__header {
  padding-right: 60px;
  position: relative;
  white-space: nowrap;
}
.section .searchresult__header::after {
  content: "";
  width: 40px;
  height: 1px;
  background: rgb(51, 51, 51);
  position: absolute;
  top: 0.5em;
  right: 10px;
}
.section .searchresult__word::before {
  content: "“";
}
.section .searchresult__word::after {
  content: "”";
}
@media all and (max-width: 640px) {
  .section .searchresult {
    width: auto;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}
.section .function {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: right;
}
@media all and (max-width: 640px) {
  .section .function {
    text-align: left;
    margin-top: 10px;
  }
}
.section .function__header::after {
  margin: 0 0.5em 0 0;
  content: ":";
}
@media all and (max-width: 640px) {
  .section .function__header {
    margin-top: 10px;
    width: 20%;
  }
}
.section .function .function__list + .function__header {
  margin-left: 20px;
}
@media all and (max-width: 640px) {
  .section .function .function__list + .function__header {
    margin-left: 0;
  }
}
.section .function__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.section .function__list._select {
  cursor: pointer;
}
.section .function__list i.fa {
  margin-left: 0.25em;
}
.section .function__list > li._current {
  border-bottom: thin solid rgb(51, 51, 51);
}
.section .function__list > li::after {
  margin: 0 0.5em;
  content: "/";
}
.section .function__list > li:last-child::after {
  margin: 0;
  content: none;
}
@media all and (max-width: 640px) {
  .section .function__list {
    margin-top: 10px;
    width: 80%;
    position: unset;
  }
}
.section .function__selectcategory {
  position: absolute;
  z-index: 20;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 350px;
  background: rgb(243, 243, 240);
  text-align: center;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
}
@media all and (max-width: 640px) {
  .section .function__selectcategory {
    margin-top: 15px;
    right: 0;
    width: 90vw;
  }
}
.section .function__selectcategory._active {
  opacity: 1;
  visibility: visible;
}
.section .function__selectcategory > li {
  width: 50%;
}
.section .function__selectcategory > li a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 10px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.section .function__selectcategory > li a:hover {
  opacity: 1;
  color: rgb(243, 243, 240);
  background: rgb(51, 51, 51);
}
.section .paging {
  text-align: center;
  margin-top: 50px;
}
.section .paging a {
  padding: 0 10px;
}

/*///////////////////////////
PARTS end 
///////////////////////////*/
/*///////////////////////////
NAVIGATION start 
///////////////////////////*/
.navigationGlobal {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  right: calc(275px + 2%);
  z-index: 1000;
  margin-top: 20px;
}
@media all and (max-width: 1200px) {
  .navigationGlobal {
    right: calc(250px + 2%);
  }
}
@media all and (max-width: 1000px) {
  .navigationGlobal {
    right: calc(30px + 2%);
  }
}
@media all and (max-width: 850px) {
  .navigationGlobal {
    width: 100%;
    background: rgb(243, 243, 240);
    right: 0;
    margin-top: 0;
    padding-right: 30px;
    padding-top: 85px;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
    overflow-y: scroll;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-height: 100vh;
  }
  .navigationGlobal._active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
  .navigationGlobal._active .navigationGlobal__search input[type=text] {
    display: block;
  }
}
@media all and (max-width: 640px) {
  .navigationGlobal {
    padding-right: 0;
  }
}
.navigationGlobal__item {
  font-weight: bold;
  margin-left: 25px;
  position: relative;
}
.navigationGlobal__item i.fa {
  margin-right: 0.5em;
}
.navigationGlobal__item._cart {
  display: block;
  padding-left: 25px;
}
.navigationGlobal__item._cart::before {
  position: absolute;
  content: "";
  background: rgb(51, 51, 51);
  bottom: 0;
  left: 0;
  width: 1px;
  height: calc(10px + 1em);
}
.navigationGlobal__item._recruit {
  display: block;
  padding-left: 25px;
}
.navigationGlobal__item._recruit::before {
  position: absolute;
  content: "";
  background: rgb(51, 51, 51);
  bottom: 0;
  left: 0;
  width: 1px;
  height: calc(10px + 1em);
}
.navigationGlobal__item._brand {
  display: none;
}
.navigationGlobal__item._brand .navigationGlobal__sub {
  width: 700px;
}
.navigationGlobal__item._brand .navigationGlobal__sub .navigationGlobal__subitem {
  width: 25%;
}
@media all and (max-width: 850px) {
  .navigationGlobal__item._brand .navigationGlobal__sub {
    width: 100%;
  }
  .navigationGlobal__item._brand .navigationGlobal__sub .navigationGlobal__subitem:nth-child(3n) a {
    border-right: rgb(114, 112, 110) dotted thin;
  }
  .navigationGlobal__item._brand .navigationGlobal__sub .navigationGlobal__subitem:nth-child(4n) a {
    border-right: none;
  }
  .navigationGlobal__item._brand .navigationGlobal__sub .navigationGlobal__subitem:nth-child(-n+4) a {
    border-top: rgb(114, 112, 110) dotted thin;
  }
}
@media all and (max-width: 640px) {
  .navigationGlobal__item._brand .navigationGlobal__sub .navigationGlobal__subitem {
    width: 33.3333%;
  }
  .navigationGlobal__item._brand .navigationGlobal__sub .navigationGlobal__subitem a {
    border-right: rgb(114, 112, 110) dotted thin;
  }
  .navigationGlobal__item._brand .navigationGlobal__sub .navigationGlobal__subitem:nth-child(4n) a {
    border-right: rgb(114, 112, 110) dotted thin;
  }
  .navigationGlobal__item._brand .navigationGlobal__sub .navigationGlobal__subitem:nth-child(-n+4) a {
    border-top: none;
  }
  .navigationGlobal__item._brand .navigationGlobal__sub .navigationGlobal__subitem:nth-child(3n) a {
    border-right: none;
  }
  .navigationGlobal__item._brand .navigationGlobal__sub .navigationGlobal__subitem:nth-child(-n+3) a {
    border-top: rgb(114, 112, 110) dotted thin;
  }
}
@media all and (max-width: 1200px) {
  .navigationGlobal__item {
    margin-left: 15px;
  }
  .navigationGlobal__item._cart {
    padding-left: 15px;
  }
}
@media all and (min-width: 850px) {
  .navigationGlobal__item:hover .navigationGlobal__sub {
    opacity: 1;
    visibility: visible;
    z-index: 100;
  }
  .navigationGlobal__item:hover .navigationGlobal__subitem a {
    padding: 10px 15px;
  }
}
@media all and (max-width: 850px) {
  .navigationGlobal__item {
    border-top: thin solid rgb(114, 112, 110);
    margin-left: 0;
    width: 100%;
  }
  .navigationGlobal__item._cart, .navigationGlobal__item._recruit {
    padding-left: 0;
  }
  .navigationGlobal__item._cart::before, .navigationGlobal__item._recruit::before {
    content: none;
  }
  .navigationGlobal__item._cart, .navigationGlobal__item._account, .navigationGlobal__item._search, .navigationGlobal__item._recruit {
    float: left;
    width: 50%;
    text-align: center;
    border-right: 1px solid rgb(114, 112, 110);
    border-bottom: 1px solid rgb(114, 112, 110);
  }
  .navigationGlobal__item._cart .navigationGlobal__link, .navigationGlobal__item._account .navigationGlobal__link, .navigationGlobal__item._search .navigationGlobal__link, .navigationGlobal__item._recruit .navigationGlobal__link {
    margin-right: 0;
    padding: 5px 0;
    line-height: 300%;
  }
  .navigationGlobal__item._recruit {
    border-top: none;
    border-right: none;
    width: 100%;
  }
  .navigationGlobal__item._account {
    border-right: none;
  }
  .navigationGlobal__item._search {
    width: 100%;
    border-right: none;
    border-top: none;
  }
  .navigationGlobal__item._search .navigationGlobal__link {
    display: none;
  }
}
@media all and (max-width: 1000px) {
  .navigationGlobal__item._brand {
    display: block;
  }
}
.navigationGlobal__link {
  position: relative;
  display: block;
  padding: 10px 0 5px;
}
@media all and (max-width: 850px) {
  .navigationGlobal__link {
    margin-right: 60px;
    padding: 0;
    padding-left: 25px;
    line-height: 40px;
  }
}
.navigationGlobal__expand {
  width: 60px;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  z-index: 100;
  height: 40px;
}
.navigationGlobal__expand._clicked::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.navigationGlobal__expand._clicked::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.navigationGlobal__expand::before, .navigationGlobal__expand::after {
  display: block;
  position: absolute;
  top: 19px;
  right: 25px;
  width: 15px;
  height: 2px;
  margin: auto;
  background: rgb(51, 51, 51);
  content: "";
  z-index: 2;
  -webkit-transition: -webkit-transform 200ms;
  transition: -webkit-transform 200ms;
  transition: transform 200ms;
  transition: transform 200ms, -webkit-transform 200ms;
}
@media all and (max-width: 640px) {
  .navigationGlobal__expand::before, .navigationGlobal__expand::after {
    right: 5vw;
  }
}
.navigationGlobal__expand::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.navigationGlobal__expand::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
@media all and (min-width: 850px) {
  .navigationGlobal__expand {
    display: none;
  }
}
.navigationGlobal__sub {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 600px;
  padding: 15px 5px 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media all and (max-width: 850px) {
  .navigationGlobal__sub {
    margin-bottom: -1px;
    position: relative;
    width: 100%;
    padding: 0;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .navigationGlobal__sub._active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media all and (max-width: 640px) {
  .navigationGlobal__sub {
    font-size: 80%;
  }
}
.navigationGlobal__subitem {
  width: 33.3333%;
  text-align: center;
}
.navigationGlobal__subitem a {
  width: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background: rgb(243, 243, 240);
  display: block;
  padding: 7px 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.navigationGlobal__subitem a:hover {
  opacity: 1;
  color: rgb(243, 243, 240);
  background: rgb(51, 51, 51);
}
@media all and (max-width: 850px) {
  .navigationGlobal__subitem:nth-child(3n) a {
    border-right: none;
  }
  .navigationGlobal__subitem:nth-child(-n+3) a {
    border-top: rgb(114, 112, 110) dotted thin;
  }
  .navigationGlobal__subitem a {
    border-bottom: rgb(114, 112, 110) dotted thin;
    border-right: rgb(114, 112, 110) dotted thin;
  }
}
@media all and (max-width: 640px) {
  .navigationGlobal__subitem {
    width: 50%;
  }
  .navigationGlobal__subitem a {
    border-bottom: rgb(114, 112, 110) dotted thin;
    border-right: rgb(114, 112, 110) dotted thin;
    padding: 10px 7px;
    letter-spacing: 0.075em;
  }
  .navigationGlobal__subitem:nth-child(3n) a {
    border-right: rgb(114, 112, 110) dotted thin;
  }
  .navigationGlobal__subitem:nth-child(-n+3) a {
    border-top: none;
  }
  .navigationGlobal__subitem:nth-child(2n) a {
    border-right: none;
  }
  .navigationGlobal__subitem:nth-child(-n+2) a {
    border-top: rgb(114, 112, 110) dotted thin;
  }
}
.navigationGlobal__search {
  position: absolute;
  width: 300px;
  padding-top: 15px;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.navigationGlobal__search._active {
  visibility: visible;
  opacity: 1;
}
.navigationGlobal__search input[type=text] {
  background: rgb(243, 243, 240);
  width: 100%;
  font-size: 12px;
  margin: 0 auto;
  border: none;
  padding: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-bottom: thin solid rgb(51, 51, 51);
}
.navigationGlobal__search input[type=text]:focus {
  outline: none;
  color: black;
}
@media all and (max-width: 850px) {
  .navigationGlobal__search {
    opacity: 1;
    visibility: visible;
    position: relative;
    padding-top: 0;
    width: 100%;
  }
  .navigationGlobal__search::before {
    position: absolute;
    content: "\f002";
    font-family: "FontAwesome";
    top: 50%;
    right: 22px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    pointer-events: none;
  }
  .navigationGlobal__search input[type=text] {
    padding-top: 15px;
    font-size: 16px;
    border-bottom: none;
    display: none;
  }
}

/*///////////////////////////
NAVIGATION end 
///////////////////////////*/
/*///////////////////////////
DEFINITION start 
///////////////////////////*/
.definitioncontent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
* + .definitioncontent {
  margin-top: 15px;
}
.definitioncontent__header {
  width: 32%;
  position: relative;
  font-weight: bold;
}
.definitioncontent__header::after {
  position: absolute;
  content: "";
  height: 1px;
  width: calc(100% - 8em);
  right: 0;
  top: calc(0.6em + 1px);
  border-bottom: thin dotted rgb(114, 112, 110);
}
.definitioncontent__body + .definitioncontent__header {
  margin-top: 5px;
}
@media all and (max-width: 640px) {
  .definitioncontent__header {
    line-height: 150%;
    width: 8em;
  }
  .definitioncontent__header::after {
    content: none;
  }
  .definitioncontent__body + .definitioncontent__header {
    margin-top: 15px;
  }
}
.definitioncontent__body {
  margin-top: 5px;
  padding-bottom: 0px;
  margin-left: 2%;
  width: 66%;
  line-height: 150%;
}
.definitioncontent__body:nth-child(2) {
  margin-top: 0;
}
@media all and (min-width: 640px) {
  .definitioncontent__body a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding-bottom: 2px;
  }
  .definitioncontent__body a::before {
    position: absolute;
    bottom: -3px;
    margin-bottom: 3px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: rgb(3, 22, 40);
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .definitioncontent__body a:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .definitioncontent__body a:hover {
    opacity: 1;
  }
}
@media all and (min-width: 640px) {
  .definitioncontent__body._red a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding-bottom: 2px;
  }
  .definitioncontent__body._red a::before {
    position: absolute;
    bottom: -3px;
    margin-bottom: 3px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: rgb(3, 22, 40);
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .definitioncontent__body._red a:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .definitioncontent__body._red a:hover {
    opacity: 1;
  }
  .definitioncontent__body._red a {
    color: red;
  }
  .definitioncontent__body._red a::before {
    background: red;
  }
}
@media all and (max-width: 640px) {
  .definitioncontent__body {
    width: calc(100% - 8em);
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    margin-top: 0px;
  }
  .definitioncontent__body._red a {
    color: red;
  }
  .definitioncontent__body._red a::before {
    background: red;
  }
}
.definitioncontent__innerlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 10px;
}
.definitioncontent__innerlist li {
  margin-right: 10px;
}
.definitioncontent__innerlist li::after {
  margin-left: 10px;
  content: "/";
}
.definitioncontent__innerlist li:last-child::after {
  content: "";
}
@media all and (max-width: 640px) {
  .definitioncontent__innerlist li {
    margin-top: 5px;
  }
}

/*///////////////////////////
DEFINITION end 
///////////////////////////*/
/*///////////////////////////
PRODUCTDETAIL start 
///////////////////////////*/
.productdetail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* &__optionheader {
      width: 70%;
      text-align: left;
      margin: 0 auto;
      margin-top: 30px;
      @include media(smartphone) {
          width: 90%;
      }
  } */
}
.productdetail .stock_error {
  position: relative;
  margin: 20px auto 0;
  display: table;
  padding-left: 20px;
  line-height: 15px;
}
.productdetail .stock_error::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 30px;
  left: 0;
  top: 0;
  background: red;
}
.productdetail .stock_error::after {
  position: absolute;
  left: 5px;
  top: 0;
  content: "!";
  color: white;
  font-size: 80%;
  font-weight: bold;
}
.productdetail__figure {
  width: 49%;
}
.productdetail__images li + li {
  margin-top: 30px;
}
.productdetail__images li img {
  width: 100%;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.productdetail__images li img.lazyloaded {
  opacity: 1;
}
@media all and (max-width: 850px) {
  .productdetail__images .slick-track {
    background: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-height: 70vh;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .productdetail__images .slick-slide {
    height: 100% !important;
  }
  .productdetail__images li {
    vertical-align: bottom;
  }
  .productdetail__images li img {
    margin: auto;
    max-height: 60vh;
    width: auto;
    height: auto;
  }
}
.productdetail__thumbnails {
  display: none;
}
@media all and (max-width: 850px) {
  .productdetail__thumbnails {
    display: block;
  }
  .productdetail__thumbnails .slick-track {
    /*                 background: white;
                    display: flex;
                    align-items: center;
                    justify-content: center; */
  }
  .productdetail__thumbnails li {
    vertical-align: bottom;
    position: relative;
    padding-top: 100%;
    display: block;
    background: white;
  }
  .productdetail__thumbnails li img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
  }
}
.productdetail__textouter {
  width: 49%;
}
.productdetail__text {
  position: sticky;
  top: 0px;
}
@media all and (max-width: 850px) {
  .productdetail {
    display: block;
  }
  .productdetail__figure {
    width: 100%;
  }
  .productdetail__textouter {
    margin-top: 50px;
    width: 100%;
  }
}
@media all and (max-width: 640px) {
  .productdetail__textouter {
    margin-top: 20px;
    width: 100%;
  }
}
.productdetail__header {
  /*         position: sticky;
          top: 80px;
          background: $color1;
          padding-bottom: 50px;
          z-index: 50; */
}
.productdetail__breadcrumb {
  font-size: 90%;
  opacity: 0.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.productdetail__breadcrumb li {
  padding-right: 35px;
  position: relative;
}
.productdetail__breadcrumb li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  height: 1px;
  width: 15px;
  background: rgb(51, 51, 51);
}
.productdetail__breadcrumb li:last-child {
  padding-right: 0;
}
.productdetail__breadcrumb li:last-child::after {
  content: none;
}
@media all and (min-width: 640px) {
  .productdetail__breadcrumb li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding-bottom: 2px;
  }
  .productdetail__breadcrumb li a::before {
    position: absolute;
    bottom: -3px;
    margin-bottom: 3px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: rgb(3, 22, 40);
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .productdetail__breadcrumb li a:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .productdetail__breadcrumb li a:hover {
    opacity: 1;
  }
}
.productdetail__category {
  margin-top: 50px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (min-width: 640px) {
  .productdetail__category li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding-bottom: 2px;
  }
  .productdetail__category li a::before {
    position: absolute;
    bottom: -3px;
    margin-bottom: 3px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: rgb(3, 22, 40);
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .productdetail__category li a:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .productdetail__category li a:hover {
    opacity: 1;
  }
}
.productdetail__category li::after {
  margin: 0 0.5em;
  content: "/";
}
.productdetail__category li:last-child::after {
  margin: 0;
  content: none;
}
@media all and (max-width: 640px) {
  .productdetail__category {
    margin-top: 30px;
  }
}
.productdetail__title {
  margin-top: 20px;
  font-size: 150%;
  font-weight: bold;
}
.productdetail__title img[class^=new_mark_img] {
  display: none !important;
}
@media all and (max-width: 640px) {
  .productdetail__title {
    font-size: 120%;
  }
}
.productdetail__price {
  margin-top: 20px;
  font-size: 125%;
}
.productdetail__price._bottom {
  margin-top: 30px;
  text-align: center;
  font-weight: normal;
}
.productdetail__price._sale ._regularprice {
  opacity: 0.5;
  text-decoration: line-through;
}
.productdetail__price._sale ._saleprice {
  color: red;
  margin-left: 20px;
  position: relative;
  display: inline-block;
  /*         &::before {
              content: "";
              position: absolute;
              top: calc(.5em + 1px);
              left: 8px;
              width: 15px;
              height: 1px;
              background: $color3;
          } */
}
.productdetail__price._sale ._saleprice::before {
  content: "\f0da";
  font-family: "FontAwesome";
  position: absolute;
  top: calc(50% + 1px);
  left: -10px;
  font-size: 80%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media all and (max-width: 640px) {
  .productdetail__price {
    font-size: 100%;
  }
}
.productdetail__description {
  margin-top: 50px;
  line-height: 125%;
  font-size: 100%;
}
@media all and (min-width: 640px) {
  .productdetail__description a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding-bottom: 2px;
  }
  .productdetail__description a::before {
    position: absolute;
    bottom: -3px;
    margin-bottom: 3px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: rgb(3, 22, 40);
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .productdetail__description a:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .productdetail__description a:hover {
    opacity: 1;
  }
  .productdetail__description a {
    margin-bottom: 2px;
  }
  .productdetail__description a::before {
    bottom: -1px;
  }
}
.productdetail__contact {
  text-align: center;
  display: table;
  margin: 30px auto 0;
  padding-bottom: 0.5em;
}
@media all and (min-width: 640px) {
  .productdetail__contact a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding-bottom: 2px;
  }
  .productdetail__contact a::before {
    position: absolute;
    bottom: -3px;
    margin-bottom: 3px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: rgb(3, 22, 40);
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .productdetail__contact a:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .productdetail__contact a:hover {
    opacity: 1;
  }
  .productdetail__contact a {
    padding-bottom: 0.5em;
  }
}
.productdetail__contact i.fa {
  margin-right: 0.5em;
}
@media all and (max-width: 640px) {
  .productdetail__contact {
    margin-top: 20px;
  }
}
.productdetail__support {
  margin-top: 15px;
  padding: 20px 5px 15px;
  border-top: thin solid rgb(51, 51, 51);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.productdetail__support li {
  margin-right: 15px;
}
@media all and (min-width: 640px) {
  .productdetail__support li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding-bottom: 2px;
  }
  .productdetail__support li a::before {
    position: absolute;
    bottom: -3px;
    margin-bottom: 3px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: rgb(3, 22, 40);
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .productdetail__support li a:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .productdetail__support li a:hover {
    opacity: 1;
  }
}
.productdetail__support li::before {
  content: "\f0da";
  font-family: "FontAwesome";
  margin-right: 0.25em;
}
.productdetail__table {
  margin-top: 40px;
}
.productdetail__table table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.productdetail__table table tr.stock_head td, .productdetail__table table tr.stock_head th {
  font-weight: normal;
}
.productdetail__table table tr {
  border-top: thin solid black;
}
.productdetail__table table tr td, .productdetail__table table tr th {
  padding: 5px 10px;
  border-left: thin solid black;
  text-align: center;
  line-height: 150%;
  word-break: break-all;
}
.productdetail__table table tr td:first-child, .productdetail__table table tr th:first-child {
  border-left: none;
}
@media all and (max-width: 1200px) {
  .productdetail__table table tr td, .productdetail__table table tr th {
    padding: 5px 5px;
  }
}
.productdetail__table table tr:last-child {
  border-bottom: thin solid black;
}
.productdetail__option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 70%;
  margin: 0 auto;
  margin-top: 50px;
  position: relative;
}
.productdetail__option dt {
  background: rgb(250, 250, 248);
  padding-right: 0.5em;
  font-size: 90%;
}
.productdetail__option dd {
  background: rgb(250, 250, 248);
  padding-left: 0.5em;
  text-transform: uppercase;
  margin-left: 1em;
  font-size: 90%;
  white-space: nowrap;
}
.productdetail__optionheader + .productdetail__option {
  margin-top: 15px;
}
.productdetail__option + .productdetail__option {
  margin-top: 10px;
}
.productdetail__option::before {
  position: absolute;
  height: 1px;
  width: 90%;
  top: 0.5em;
  left: 5%;
  opacity: 0.2;
  border-bottom: thin dashed black;
  content: "";
  z-index: -1;
}
@media all and (max-width: 640px) {
  .productdetail__option {
    width: 90%;
  }
}
.productdetail__select {
  width: 70%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 10px;
}
.productdetail__select + .productdetail__select {
  padding-top: 0;
}
.productdetail__select label {
  width: 80px;
  margin-top: 20px;
  padding: 10px 0;
  font-size: 90%;
}
.productdetail__selectwrapper {
  width: calc(100% - 80px);
  margin-top: 20px;
  position: relative;
}
.productdetail__selectwrapper::before {
  position: absolute;
  content: "";
  display: inline-block;
  right: 24px;
  top: 8px;
  width: 9px;
  height: 9px;
  border-top: 2px solid rgb(51, 51, 51);
  border-left: 2px solid rgb(51, 51, 51);
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  pointer-events: none;
}
.productdetail__select select {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 12px;
  font-size: 12px;
  border: none;
  border-bottom: thin solid rgb(51, 51, 51);
  padding: 10px;
  color: black;
  background: white;
  border-radius: 0px;
  outline: none;
  height: auto;
}
@media all and (max-width: 640px) {
  .productdetail__select {
    width: 90%;
  }
}
.productdetail__addcart, .productdetail__soldout {
  width: 70%;
  margin: 30px auto 0;
  color: white;
  text-align: center;
  padding: 0 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 50px;
  line-height: 50px;
  letter-spacing: 0.1em;
  cursor: pointer;
  border: none;
  display: block;
}
@media all and (max-width: 640px) {
  .productdetail__addcart, .productdetail__soldout {
    height: 50px;
    line-height: 50px;
    width: 90%;
  }
}
.productdetail__addcart {
  background: rgb(51, 51, 51);
}
.productdetail__addcart:hover {
  font-size: 90%;
  background: black;
}
.productdetail__soldout {
  background: #999;
  cursor: default;
}

/*///////////////////////////
PRODUCTDETAIL end
///////////////////////////*/
/*///////////////////////////
PRODUCTLIST start 
///////////////////////////*/
.productlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 25px;
}
.productlist__item {
  width: 32%;
  margin-left: 2%;
  position: relative;
}
@media all and (min-width: 850px) {
  .productlist__item:nth-child(3n+1) {
    margin-left: 0;
  }
  .productlist__item:nth-child(n+4) {
    margin-top: 90px;
  }
}
@media all and (max-width: 850px) {
  .productlist__item {
    margin-left: 4%;
    width: 48%;
  }
  .productlist__item:nth-child(2n+1) {
    margin-left: 0;
  }
  .productlist__item:nth-child(n+3) {
    margin-top: 50px;
  }
}
.productlist__item._flag {
  /* &._restock {
       .productlist__image {
          &::before {
              content: "RESTOCK";
          }
      } 
  } */
}
.productlist__item._flag .productlist__image {
  position: relative;
}
.productlist__item._flag .productlist__image::before {
  /* position: absolute;
  top: 0;
  left: 18px;
  text-align: right;
  padding: 2px 5px;
  transform: rotate(90deg);
  transform-origin: top left; */
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 80%;
  z-index: 10;
  background: black;
  color: white;
  padding: 5px 2px;
}
@media all and (max-width: 640px) {
  .productlist__item._flag .productlist__image {
    font-size: 80%;
  }
}
.productlist__item._flag._new {
  /*                 .productlist__image {
                      &::before {
                          content: "NEW";
                      }
                  } */
}
.productlist__item._flag._sold .productlist__image {
  /*                     &::after {
                          position: absolute;
                          content: "";
                          height: 100%;
                          width: 100%;
                          //background-image: linear-gradient(-45deg, transparent 49.9%, rgba($color3, .7) 49.9%, rgba($color3, .7) 50.1%, transparent 50.1%, transparent); 
                          background-image: linear-gradient(-135deg, transparent 49.9%, rgba($color3, .3) 49.9%, rgba($color3, .3) 50.1%, transparent 50.1%, transparent); 
                          right: 0;
                          top: 0;
                          z-index: 5;
                      } */
}
.productlist__item._flag._sold .productlist__image::before {
  background: #999;
  content: "SOLD OUT";
}
.productlist__item._flag._sold .productlist__image img {
  opacity: 0.9;
}
.productlist__item._flag._sale .productlist__image::before {
  background: red;
  content: "SALE";
}
.productlist__item._flag._sale .productlist__price ._regularprice {
  display: none;
}
.productlist__item._flag._sale .productlist__price ._saleprice {
  color: red;
  position: relative;
  display: inline-block;
  /*         &::before {
              content: "";
              position: absolute;
              top: calc(.5em + 1px);
              left: 8px;
              width: 15px;
              height: 1px;
              background: $color3;
          } */
}
.productlist__item._flag._salebyicon .productlist__image::before {
  background: red;
  content: "SALE";
}
.productlist__item._flag._salebyicon .productlist__price {
  color: red;
}
.productlist__link {
  display: block;
}
.productlist__link:hover {
  opacity: 1;
}
@media all and (min-width: 640px) {
  .productlist__link:hover {
    opacity: 1;
  }
  .productlist__link:hover .productlist__image {
    opacity: 0.8;
    /* img {
        transform: translate(-50%, -50%) scale(1.05);
    } */
  }
  .productlist__link:hover .productlist__image .productlist__imagearea {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .productlist__link:hover .productlist__text {
    opacity: 1;
    visibility: visible;
  }
}
.productlist__image {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  /*         img {
              position: absolute;
              width: 100%;
              height: auto;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%) scale(1);

              opacity: 0;
              transition: .3s;
              &.lazyloaded {
                  opacity: 1;
              }
          } */
}
.productlist__imagearea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.productlist__imagearea.lazyloaded {
  opacity: 1;
}
.productlist__imagearea._first {
  z-index: 3;
}
.inactive .productlist__imagearea._first {
  opacity: 0;
}
.productlist__imagearea._second {
  z-index: 2;
}
@media all and (min-width: 640px) {
  .productlist__text {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    opacity: 0;
    visibility: hidden;
    z-index: 5;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.productlist__title {
  font-size: 90%;
  margin-top: 10px;
  line-height: 150%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.productlist__title img[class^=new_mark_img] {
  display: none !important;
}
@media all and (min-width: 640px) {
  .productlist__title {
    font-size: 100%;
    display: block;
    text-align: center;
    padding: 0 15px;
  }
}
.productlist__price {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 90%;
  margin-top: 5px;
}
@media all and (min-width: 640px) {
  .productlist__price {
    font-size: 100%;
    display: block;
  }
}
.productlist._relateditem .productlist__text {
  display: none;
}
.productlist._relateditem .productlist__item {
  width: 15%;
  margin-left: 2%;
  margin-top: 0;
}
.productlist._relateditem .productlist__item._flag._sold .productlist__image::after {
  background-image: linear-gradient(-135deg, transparent 49.9%, rgba(114, 112, 110, 0.7) 49.9%, rgba(114, 112, 110, 0.7) 50.1%, transparent 50.1%, transparent);
}
@media all and (min-width: 850px) {
  .productlist._relateditem .productlist__item:nth-child(6n+1) {
    margin-left: 0;
  }
  .productlist._relateditem .productlist__item:nth-child(n+7) {
    margin-top: 40px;
  }
}
@media all and (max-width: 850px) {
  .productlist._relateditem .productlist__item {
    width: 32%;
    margin-left: 2%;
  }
  .productlist._relateditem .productlist__item:nth-child(3n+1) {
    margin-left: 0;
  }
  .productlist._relateditem .productlist__item:nth-child(n+4) {
    margin-top: 30px;
  }
}

/*///////////////////////////
PRODUCTLIST end
///////////////////////////*/
/*///////////////////////////
CATEGORYTOP start
///////////////////////////*/
.categorytop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.categorytop__text {
  margin-top: 30px;
  width: 66%;
  padding-right: 2%;
}
.categorytop__text * + h3 {
  margin-top: 20px;
}
.categorytop__text * + p {
  margin-top: 10px;
  line-height: 150%;
}
@media all and (min-width: 640px) {
  .categorytop__text a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding-bottom: 2px;
  }
  .categorytop__text a::before {
    position: absolute;
    bottom: -3px;
    margin-bottom: 3px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: rgb(3, 22, 40);
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .categorytop__text a:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .categorytop__text a:hover {
    opacity: 1;
  }
}
.categorytop__figure {
  margin-top: 30px;
  width: 32%;
  margin-left: 2%;
}
@media all and (max-width: 850px) {
  .categorytop__text {
    width: 100%;
    padding-right: 0;
  }
  .categorytop__figure {
    width: 100%;
    margin-left: 0;
  }
}
.categorytop .group_exp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.categorytop .group_exp .right_block {
  margin-top: 30px;
  width: 66%;
  padding-right: 2%;
}
.categorytop .group_exp .right_block * + h3 {
  margin-top: 20px;
}
.categorytop .group_exp .right_block * + p {
  margin-top: 10px;
  line-height: 150%;
}
@media all and (min-width: 640px) {
  .categorytop .group_exp .right_block a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding-bottom: 2px;
  }
  .categorytop .group_exp .right_block a::before {
    position: absolute;
    bottom: -3px;
    margin-bottom: 3px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: rgb(3, 22, 40);
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .categorytop .group_exp .right_block a:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .categorytop .group_exp .right_block a:hover {
    opacity: 1;
  }
}
.categorytop .group_exp .left_block {
  margin-top: 30px;
  width: 32%;
  margin-left: 2%;
}
@media all and (max-width: 850px) {
  .categorytop .group_exp .right_block {
    width: 100%;
    padding-right: 0;
  }
  .categorytop .group_exp .left_block {
    width: 100%;
    margin-left: 0;
  }
}

/*///////////////////////////
CATEGORYTOP end
///////////////////////////*/
/*///////////////////////////
SIDEBAR start 
///////////////////////////*/
.sidebar {
  position: fixed;
  overflow-y: scroll;
  top: 0;
  right: 0;
  height: 100%;
  width: 275px;
  background: rgb(243, 243, 240);
  padding-left: 2%;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media all and (max-width: 1200px) {
  .sidebar {
    width: 250px;
  }
}
@media all and (max-width: 1000px) {
  .sidebar {
    width: 30px;
  }
  .sidebar__list, .sidebar__bottomcontent, .sidebar__topcontent {
    display: none;
  }
}
@media all and (max-width: 640px) {
  .sidebar {
    right: unset;
    width: 100%;
    height: 25px;
  }
}
@media all and (min-width: 640px) {
  .sidebar a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding-bottom: 2px;
  }
  .sidebar a::before {
    position: absolute;
    bottom: -3px;
    margin-bottom: 3px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: rgb(3, 22, 40);
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .sidebar a:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .sidebar a:hover {
    opacity: 1;
  }
  .sidebar a::before {
    bottom: 0px;
  }
}
.sidebar__topcontent {
  padding-top: 30px;
  width: 100%;
}
.sidebar__bottomcontent {
  width: 100%;
  margin-top: auto;
  padding: 30px 0;
}
* + .sidebar__title {
  margin-top: 15px;
}
.sidebar__list {
  margin-top: 25px;
  padding-right: 40px;
}
.sidebar__list li {
  font-size: 90%;
  line-height: 150%;
  margin-right: 10px;
  letter-spacing: 0.05em;
  /*         &::after {
              margin-left: 5px;
              content: "";
          }
          &:last-child {
              &::after {
                  content: "";
              }
          } */
}
.sidebar__list li i.fa {
  margin-right: 0.25em;
}
.sidebar__list._sns {
  margin-top: 5px;
}
.sidebar__list._sns li {
  letter-spacing: 0.025em;
}
@media all and (max-width: 1200px) {
  .sidebar__list li {
    line-height: 170%;
  }
}
.sidebar__linecontent {
  width: 30px;
  position: fixed;
  height: 100%;
  background: rgb(51, 51, 51);
  right: 0;
  top: 0;
}
@media all and (max-width: 640px) {
  .sidebar__linecontent {
    position: absolute;
    width: 100%;
  }
}
.sidebar__text {
  position: absolute;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  line-height: 30px;
  height: 30px;
  width: 400px;
  /*         &._catchphrase {
              padding-left: 1em;
              bottom: -30px;
              font-size: 8px;
              letter-spacing: 0;
              color: $color2;
          } */
  /*         &._campaigntext {
              top: 400px;
              padding-right: .5em;
              font-size: 10px;
              color: white;
              text-align: right;
          } */
}
.sidebar__campaign {
  color: white;
  font-size: 10px;
}
@media all and (min-width: 640px) {
  .sidebar__campaign {
    line-height: 30px;
    width: 30px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    top: 0;
    position: absolute;
    padding-top: 10px;
  }
}
@media all and (max-width: 640px) {
  .sidebar__campaign {
    text-align: center;
    line-height: 25px;
  }
}
.sidebar__catchphrase {
  font-size: 8px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  bottom: 0;
  color: white;
  width: 30px;
  line-height: 30px;
  padding-bottom: 10px;
}
@media all and (max-width: 640px) {
  .sidebar__catchphrase {
    display: none;
  }
}

/*///////////////////////////
SIDEBAR end 
///////////////////////////*/
/*///////////////////////////
INFOMATION start 
///////////////////////////*/
.information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.information__header {
  width: 32%;
}
.information__mapholder {
  position: relative;
  padding-top: 35%;
  width: 66%;
  margin-left: 34%;
  margin-top: 20px;
  -webkit-filter: saturate(0.5);
          filter: saturate(0.5);
}
.information__mapholder iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media all and (max-width: 640px) {
  .information__mapholder {
    padding-top: 75%;
    margin-left: 0;
    width: 100%;
    margin-top: 30px;
  }
}
.information__subheader {
  width: 64%;
  margin-left: 2%;
}
.information__mapholder + .information__subheader {
  margin-left: 34%;
  margin-top: 50px;
}
@media all and (max-width: 640px) {
  .information__mapholder + .information__subheader {
    margin-left: 0%;
    margin-top: 50px;
  }
}
@media all and (max-width: 640px) {
  .information__subheader {
    width: 100%;
    margin-left: 0;
  }
  * + .information__subheader {
    margin-top: 30px;
  }
}
.information__body {
  width: 64%;
  margin-left: 2%;
  line-height: 150%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.information__subheader + .information__body {
  margin-left: 34%;
  margin-top: 20px;
}
.information__title {
  width: 25%;
  font-weight: bold;
}
* + .information__title {
  margin-top: 20px;
}
.information__text {
  width: 75%;
  margin-top: 20px;
  padding-left: 20px;
}
@media all and (min-width: 640px) {
  .information__text a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding-bottom: 2px;
  }
  .information__text a::before {
    position: absolute;
    bottom: -3px;
    margin-bottom: 3px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: rgb(3, 22, 40);
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .information__text a:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .information__text a:hover {
    opacity: 1;
  }
}
.information__text:nth-child(2) {
  margin-top: 0;
}
.information__text > ul {
  margin: 5px 0;
}
.information__text > ul li {
  padding-left: 15px;
  position: relative;
}
.information__text > ul li::before {
  position: absolute;
  left: 2px;
  content: "・";
}
.information__text .information__linklist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}
.information__text .information__linklist li {
  padding-left: 0;
  padding-right: 15px;
}
.information__text .information__linklist li i.fa {
  margin-right: 0.2em;
}
.information__text .information__linklist li::before {
  content: none;
}
@media all and (max-width: 850px) {
  .information {
    display: block;
  }
  .information__header {
    width: 100%;
  }
  .information__body {
    margin-top: 30px;
    width: 100%;
    margin-left: 0;
  }
  .information__title {
    width: 32%;
  }
  .information__text {
    width: 68%;
  }
}
@media all and (max-width: 640px) {
  .information__body {
    display: block;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .information__subheader + .information__body {
    margin-left: 0%;
    margin-top: 20px;
  }
  .information__title {
    width: 100%;
  }
  .information__text {
    width: 100%;
    margin-top: 10px;
    padding-left: 15px;
  }
  .information__text:nth-child(2) {
    margin-top: 10px;
  }
  .information._shop .information__text {
    padding-left: 0;
    margin-top: 5px;
  }
}
.information__colorme {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 150%;
}
.information__colorme h2.txt_fwn, .information__colorme h3.txt_fwn {
  width: 32%;
  margin-top: 30px;
}
.information__colorme p {
  width: 66%;
  margin-left: 2%;
  margin-top: 30px;
}
@media all and (max-width: 640px) {
  .information__colorme {
    display: block;
  }
  .information__colorme h2.txt_fwn, .information__colorme h3.txt_fwn {
    width: 100%;
  }
  .information__colorme h2.txt_fwn {
    margin-top: 0px;
  }
  .information__colorme p {
    width: 100%;
    margin-top: 10px;
    margin-left: 0px;
    padding-left: 15px;
  }
}

/*///////////////////////////
INFOMATION end
///////////////////////////*/
/*///////////////////////////
FOOTER start 
///////////////////////////*/
.footer {
  position: relative;
  padding-top: 30px;
  margin-top: 30px;
  padding-bottom: 40px;
  /*     &__definition {
          display: flex;
          flex-wrap: wrap;
          dt {
              width: 100px;
              margin-top: 10px;
          }
          dd {
              width: calc(100% - 100px);
              margin-top: 10px;
          }
      }
   */
}
.footer::before {
  position: absolute;
  content: "";
  background: rgb(51, 51, 51);
  top: 0;
  left: 0;
  width: 15px;
  height: 1px;
}
.footer::before {
  width: 100%;
}
.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer__supportNavigationOuter {
  width: 32%;
}
.footer__supportNavigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
  padding-bottom: 5px;
}
.footer__supportNavigation li {
  margin-top: 10px;
  width: 50%;
}
@media all and (min-width: 640px) {
  .footer__supportNavigation li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding-bottom: 2px;
  }
  .footer__supportNavigation li a::before {
    position: absolute;
    bottom: -3px;
    margin-bottom: 3px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: rgb(3, 22, 40);
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .footer__supportNavigation li a:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .footer__supportNavigation li a:hover {
    opacity: 1;
  }
}
.footer__retail {
  width: 32%;
  margin-left: 2%;
}
.footer__information {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer__informationtext {
  width: 100%;
  margin-top: 10px;
  padding-bottom: 2px;
}
@media all and (min-width: 640px) {
  .footer__informationtext a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding-bottom: 2px;
  }
  .footer__informationtext a::before {
    position: absolute;
    bottom: -3px;
    margin-bottom: 3px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: rgb(3, 22, 40);
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .footer__informationtext a:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .footer__informationtext a:hover {
    opacity: 1;
  }
}
@media all and (max-width: 1200px) {
  .footer__supportNavigation li {
    width: 100%;
  }
  .footer__information ._narrowpc {
    display: none;
  }
}
@media all and (max-width: 850px) {
  .footer__supportNavigationOuter {
    width: 100%;
  }
  .footer__supportNavigation li {
    width: 50%;
  }
  .footer__retail {
    margin-top: 30px;
    width: 50%;
    margin-left: 0%;
  }
}
@media all and (max-width: 640px) {
  .footer {
    padding-bottom: 20px;
  }
  .footer__retail {
    width: 100%;
  }
  .footer__information {
    margin-top: 5px;
  }
  .footer__supportNavigation {
    margin-top: 5px;
  }
}
.footer__linklist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer__linklist li + li {
  margin-left: 0.75em;
}
.footer__copyright {
  margin-top: 30px;
  font-size: 90%;
}

.footer__catchphrase {
  position: relative;
  font-size: 85%;
  bottom: 0;
  color: white;
  background: rgb(51, 51, 51);
  line-height: 25px;
  text-align: center;
}
@media all and (min-width: 640px) {
  .footer__catchphrase {
    display: none;
  }
}

/*///////////////////////////
FOOTER end 
///////////////////////////*/
/*///////////////////////////
OTHERS start
///////////////////////////*/
.noresult {
  width: 100%;
  text-align: center;
  margin-top: 30px;
  padding: 50px 20px;
  background: rgb(243, 243, 240);
  line-height: 250%;
}
.noresult p + p {
  margin-top: 10px;
}
@media all and (max-width: 640px) {
  .noresult {
    padding: 20px 20px;
    line-height: 150%;
  }
}

.gotoTop {
  position: fixed;
  right: 275px;
  padding: 2vw 2.5vw;
  bottom: -100px;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media all and (max-width: 1200px) {
  .gotoTop {
    right: 250px;
  }
}
@media all and (max-width: 1000px) {
  .gotoTop {
    right: 30px;
  }
}
@media all and (max-width: 640px) {
  .gotoTop {
    right: 0;
    padding: 25px;
  }
}
.gotoTop:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.gotoTop._active {
  bottom: 0;
}
.gotoTop::after {
  position: absolute;
  content: "";
  display: inline-block;
  right: calc(2vw + 12px);
  top: 50%;
  width: 18px;
  height: 18px;
  border-top: 3px solid rgb(51, 51, 51);
  border-left: 3px solid rgb(51, 51, 51);
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
@media all and (max-width: 640px) {
  .gotoTop::after {
    width: 12px;
    height: 12px;
    left: 50%;
    right: auto;
    margin-top: 4px;
    -webkit-transform: rotate(45deg) translate(-50%, -50%);
            transform: rotate(45deg) translate(-50%, -50%);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}

/*///////////////////////////
OTHERS end
///////////////////////////*/
/* input[type="text"], textarea{
    background: #F1F1F1;
    width: 100%;
    font-size: 12px;
    margin: 0 auto;
    border: none;
    padding:10px;
    transition: .5s;

    &:focus{
        outline: none;
        color: black;
        background: lightgray;
    }
}
textarea{
    min-height: 100px;
}
button{
    width: 70%;
    padding: 15px;
    margin: 0 auto 20px;
    border: none;
    background: black;
    color: white;
    transition: .5s;
    border: 3px black solid;
    cursor: pointer;
    &:hover{
        background: white;
        color: #333;
    }
} */
.menubutton {
  overflow: hidden;
  display: block;
  position: fixed;
  z-index: 1100;
  top: 14px;
  right: 30px;
  width: calc(25px * 2 + 15px);
  height: 50px;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media all and (max-width: 640px) {
  .menubutton {
    top: 29px;
    right: 0;
    width: calc(10vw + 15px);
    /*         &._scrolled {
                top: 0;
            } */
  }
}
@media all and (min-width: 850px) {
  .menubutton {
    display: none;
  }
}
.menubutton span, .menubutton::before, .menubutton::after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 15px;
  height: 2px;
  margin: auto;
  background: rgb(51, 51, 51);
}
.menubutton span {
  overflow: hidden;
  z-index: 1;
  color: rgb(51, 51, 51);
}
.menubutton::before {
  z-index: 2;
  -webkit-transform: translate(0, -6px);
          transform: translate(0, -6px);
  content: "";
}
.menubutton::after {
  z-index: 2;
  -webkit-transform: translate(0, 6px);
          transform: translate(0, 6px);
  content: "";
}
.menubutton span {
  -webkit-transition: -webkit-transform 150ms 50ms;
  transition: -webkit-transform 150ms 50ms;
  transition: transform 150ms 50ms;
  transition: transform 150ms 50ms, -webkit-transform 150ms 50ms;
}
.menubutton::before, .menubutton::after {
  -webkit-transition: -webkit-transform 200ms;
  transition: -webkit-transform 200ms;
  transition: transform 200ms;
  transition: transform 200ms, -webkit-transform 200ms;
}
.menubutton._clicked span {
  opacity: 0;
  -webkit-transition: -webkit-transform 150ms;
  transition: -webkit-transform 150ms;
  transition: transform 150ms;
  transition: transform 150ms, -webkit-transform 150ms;
}
.menubutton._clicked::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.menubutton._clicked::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}/*# sourceMappingURL=base.css.map */