@charset "UTF-8";
#sb-site-main {
  transform: unset;
}

#special-content {
  border: 0 !important;
  max-width: 2000px;
  margin: auto;
  color: #333;
}
#special-content a:focus {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  #special-content {
    padding: 0 !important;
  }
  #main {
    padding: 0 !important;
  }
  #contents .container {
    padding: 0 !important;
    margin: 0 !important;
  }
}
section {
  padding: 30px 10px 50px;
}
section#intro, section.categorysec:nth-of-type(odd) {
  background-color: #fffddf;
  background: linear-gradient(#f7ef8e, #fffddf);
}
section.categorysec:nth-of-type(even) {
  background-color: #fffddf;
  background: linear-gradient(#b6e8cb, #f4ffdf);
}
section#intro, section.categorysec {
  position: relative;
}
section#intro::before, section#intro::after, section.categorysec::before, section.categorysec::after {
  position: absolute;
  content: "";
  width: 40%;
  height: 200px;
  bottom: 0;
}
section#intro::before, section.categorysec::before {
  left: 0;
  background: url(img/bg_tree_l.png) no-repeat bottom left;
  background-size: contain;
}
section#intro::after, section.categorysec::after {
  right: 0;
  background: url(img/bg_tree_r.png) no-repeat bottom right;
  background-size: contain;
}
section > * {
  position: relative;
  z-index: 10;
}

.flexBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.fl-pgnav {
  max-width: 600px;
  margin: 30px auto 0;
}
.fl-pgnav > li {
  width: 25%;
  padding: 5px;
  min-width: 120px;
}
.fl-pgnav > li a {
  position: relative;
  display: block;
  padding: 90px 5px 15px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}
.fl-pgnav > li a:hover {
  transform: translateY(2px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
}
.fl-pgnav > li a p {
  font-weight: bold;
  color: #346355;
}
.fl-pgnav > li a[href="#indoor"]::before {
  position: absolute;
  content: "";
  background: url(img/icon_kusei.png) no-repeat center top;
  width: 100%;
  height: 80px;
  background-size: 80px;
  top: 5px;
  left: 0;
}
.fl-pgnav > li a[href="#outdoor"]::before {
  position: absolute;
  content: "";
  background: url(img/icon_mask.png) no-repeat center top;
  width: 100%;
  height: 80px;
  background-size: 80px;
  top: 5px;
  left: 0;
}
.fl-pgnav > li a[href="#laundry"]::before {
  position: absolute;
  content: "";
  background: url(img/icon_laundry.png) no-repeat center top;
  width: 100%;
  height: 80px;
  background-size: 80px;
  top: 5px;
  left: 0;
}
.fl-pgnav > li a[href="#care"]::before {
  position: absolute;
  content: "";
  background: url(img/icon_cosme.png) no-repeat center top;
  width: 100%;
  height: 80px;
  background-size: 80px;
  top: 5px;
  left: 0;
}
.fl-pgnav > li a::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border: 7.5px solid rgba(255, 255, 255, 0);
  border-top-color: #f8db3c;
  bottom: 0;
  left: calc(50% - 7.5px);
}

.whbox {
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 10;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .whbox {
    padding: 30px 10px 5px;
  }
}
.whbox::before {
  position: absolute;
  content: "";
  width: 90px;
  height: 90px;
  top: -45px;
  left: calc(50% - 45px);
  background: #fff;
  border-radius: 50%;
  z-index: -1;
}
#indoor .whbox::after {
  position: absolute;
  content: "";
  background: url(img/icon_kusei.png) no-repeat center top;
  width: 60px;
  height: 60px;
  background-size: 60px;
  top: -35px;
  left: calc(50% - 30px);
}
#outdoor .whbox::after {
  position: absolute;
  content: "";
  background: url(img/icon_mask.png) no-repeat center top;
  width: 60px;
  height: 60px;
  background-size: 60px;
  top: -35px;
  left: calc(50% - 30px);
}
#laundry .whbox::after {
  position: absolute;
  content: "";
  background: url(img/icon_laundry.png) no-repeat center top;
  width: 60px;
  height: 60px;
  background-size: 60px;
  top: -35px;
  left: calc(50% - 30px);
}
#care .whbox::after {
  position: absolute;
  content: "";
  background: url(img/icon_cosme.png) no-repeat center top;
  width: 60px;
  height: 60px;
  background-size: 60px;
  top: -35px;
  left: calc(50% - 30px);
}

#special-content h2 {
  font-weight: bold;
  font-size: 35px;
  padding: 5px 0 3px;
  border-bottom: 5px dotted #f8db3c;
}
@media screen and (max-width: 768px) {
  #special-content h2 {
    font-size: 25px;
  }
}

.fl-itemintro {
  align-items: center;
  max-width: 800px;
  margin: 20px auto;
}
@media screen and (max-width: 992px) {
  .fl-itemintro {
    flex-direction: column-reverse;
  }
}

.fl-itemintro__text {
  max-width: 440px;
  text-align: left;
  padding-right: 20px;
}
.fl-itemintro__text p {
  padding: 5px 0;
}
@media screen and (max-width: 992px) {
  .fl-itemintro__text {
    padding-right: 0;
    padding-top: 5px;
    text-align: center;
  }
  .fl-itemintro__text br {
    display: none;
  }
}

#special-content h3 {
  padding: 7px 5px 3px;
  font-weight: bold;
  font-size: 23px;
  color: #346355;
  background-color: #f2f9e5;
  margin: 0 0 10px;
}
#special-content h3 small {
  display: block;
  color: #346355;
  font-size: 14px;
  padding: 5px 0;
}
@media screen and (max-width: 768px) {
  #special-content h3 {
    font-size: 20px;
  }
  #special-content h3 small {
    font-size: 12px;
  }
}

.fl-itemintro__img {
  max-width: 360px;
}

.category-wrap {
  max-width: 900px;
  margin: 0 auto 10px;
}

.btnwrap {
  padding: 10px 0 20px;
}
.btnwrap a {
  display: block;
  margin: auto;
  padding: 0.5em 0.5em 0.4em;
  background: #346355;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  max-width: 500px;
  border-radius: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}
.btnwrap a:hover {
  opacity: 0.7;
  transform: translateY(2px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .btnwrap a {
    font-size: 15px;
    padding: 0.7em 0.5em 0.5em;
  }
}

.btnwrap-ub {
  border-bottom: 3px dotted #f2f9e5;
}

.category__subttl {
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0 0;
}
@media screen and (max-width: 768px) {
  .category__subttl {
    font-size: 18px;
  }
}

.osusume {
  margin: 10px 0 30px;
}
.osusume p {
  display: inline-block;
  font-weight: bold;
  color: #346355;
}
.osusume p::before {
  content: "＼";
  opacity: 0.5;
  padding-right: 5px;
}
.osusume p::after {
  content: "／";
  opacity: 0.5;
  padding-left: 5px;
}

.fl-osusumefeat li {
  width: 50%;
  padding: 5px;
  max-width: 280px;
}
.fl-osusumefeat li a {
  transition: 0.2s;
}
.fl-osusumefeat li a:hover {
  opacity: 0.7;
}

#features h2 {
  max-width: 1100px;
  margin: 20px auto 0;
}
#features > div {
  margin: 30px auto;
  max-width: 1100px;
}

a#topbtn {
  position: fixed;
  right: -50px;
  bottom: 30px;
  display: block;
  width: 50px;
  height: 50px;
  padding: 25px 0 0;
  transition: 0.3s;
  color: #fff;
  border-radius: 50%;
  background: #346355;
  line-height: 1;
}
a#topbtn.show {
  right: 10px;
}
a#topbtn:hover {
  transform: translateY(2px);
  opacity: 0.7;
}
a#topbtn::before {
  position: absolute;
  top: 1em;
  right: calc(50% - 0.3em);
  width: 0.6em;
  height: 0.6em;
  content: "";
  transition: 0.3s;
  transform: rotate(-45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

/*bxs*/
.cate__items__list {
  min-height: 250px !important;
  border: none !important;
  margin: 20px auto 0;
  position: relative;
}
.cate__items__list:not(.loaded)::before {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: solid 4px;
  border-color: #999 rgba(0, 0, 0, 0.062745098) rgba(0, 0, 0, 0.062745098);
  animation-name: spin;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  position: absolute;
  left: calc(50% - 20px);
  top: 30px;
  content: "";
  z-index: 10;
}
.cate__items__list:not(.loaded) ul {
  opacity: 0;
}
.cate__items__list .search-item {
  transition: 0.3s;
}
.cate__items__list .search-item:hover {
  opacity: 0.7;
}
.cate__items__list .items__others {
  text-align: left;
}
.cate__items__list ul li .txt-productname {
  line-height: 1.2 !important;
  margin: 5px 0 0;
  font-weight: normal;
  color: #333;
  height: 2.4em !important;
}
@media screen and (max-width: 768px) {
  .cate__items__list ul li .txt-productname {
    height: 3.6em !important;
  }
}
.cate__items__list ul li .txt-productname a {
  font-weight: normal;
  font-size: 13px;
  color: #333;
  line-height: 1 !important;
}
.cate__items__list .txt-price {
  font-size: 20px !important;
  color: #d63d3d !important;
  font-family: "メイリオ", Meiryo, arial, "Hiragino Kaku Gothic Pro", "MS PGothic", sans-serif;
  font-weight: bold;
  text-align: right !important;
}
.cate__items__list .txt-price:first-letter {
  font-size: 70%;
  font-weight: bold;
}
.cate__items__list ul {
  width: 100% !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  left: 0 !important;
  position: relative;
  min-height: unset !important;
  border: none !important;
  opacity: 1;
  transition: 0.3s;
}
.cate__items__list ul li {
  height: auto !important;
  border: none !important;
  width: calc(25% - 10px) !important;
  padding: 5px !important;
  margin: 0 5px 5px;
  max-width: 290px;
  background: #fff;
  border-radius: 5px;
}
.cate__items__list ul li:hover {
  background: #fff;
}
.cate__items__list ul img {
  max-width: 230px;
  max-height: 230px;
  width: 100%;
  height: auto;
  margin: auto;
}
.cate__items__list .bx-controls-direction {
  display: none;
}
.cate__items__list .txt-stock {
  font-size: 12px;
}
.cate__items__list .bx-wrapper {
  margin-bottom: 0 !important;
  background: unset !important;
}
.cate__items__list .bx-wrapper .bx-viewport {
  height: auto !important;
}
.cate__items__list a.img-link::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  opacity: 0;
  transition: 0.2s;
}
@media (max-width: 991px) {
  .cate__items__list ul li {
    width: calc(50% - 10px) !important;
    max-width: 230px;
  }
  .cate__items__list .txt-price {
    font-size: 20px !important;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.cate__items__list.loaded:has(ul:empty)::after {
  content: "申し訳ございません。こちらの商品は現在品切れです。";
  top: 80px;
  position: relative;
  color: #888;
  background: #f1f1f1;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  max-width: 80%;
  font-size: 13px;
}
.cate__items__list.loaded:has(ul:empty) + .btnwrap {
  display: none;
}/*# sourceMappingURL=kafunst.css.map */