/***GOOGLE FONTS***/
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+Pro:wght@400;600;700&display=swap');

.pc-cont {
  display: block;
}

.sp-cont {
  display: none !important;
}

header {
  display: block;
  width: 100%;
  background: #fff;
  border-top: 3px solid #c98681;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.10);
  z-index: 2;
}

header .container {
  height: 50px;
  justify-content: space-between;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
}

header .container .header-logo {
  margin-top: auto;
  margin-bottom: auto;
}

header .container .header-logo a {
  text-decoration: none;
}

header .container .header-menu {
  z-index: 2;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: -145px;
}

header .container .header-menu ul {
  font-size: 13px;
}

header .container .header-menu ul a {
  text-decoration: none !important;

}

header .container .header-menu ul a:hover {
  color: #000;
}

header .container .header-menu ul li {
  margin: auto 3px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease-in-out;
}

header .container .header-menu ul li p {
  padding: 5px 10px;
  transition: all 0.2s ease-in-out;
  border-radius: 3px;
}

header .container .header-menu ul li:hover p {
  background-color: #c98681;
  color: #fff;
}

header .container .header-menu ul li .submenu {
  cursor: pointer;
  flex-wrap: wrap;
  height: 0;
  width: 410px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  border-bottom: 1px solid#c98681;
  background-color: #fff;
  vertical-align: middle;
  padding-top: 13px;
  border-radius: 5px;
}

header .container .header-menu ul li:hover .submenu {
  display: inline-flex;
  opacity: 1;
  visibility: visible;
  height: auto;
  overflow: auto;
}

header .container .header-menu ul li .submenu a {
  width: calc(100%/2);
  margin: 0;
  padding: 15px 15px;
  transition: all 0.2s ease-in-out;
  line-height: normal;
  background-color: #fff;
}

header .container .header-menu ul li .submenu a:hover {
  background-color: #c98681;
  color: #fff;
}

header .container .header-menu ul li .submenu a:nth-child(-n+2) {
  box-shadow: inset 0px 18px 10px -25px rgba(0, 0, 0, 1);
}

header .container .header-menu ul li .submenu a:nth-child(odd) {
  border-left: 1px solid #cecece;
  border-right: 1px solid #cecece;
}

header .container .header-menu ul li .submenu a:nth-child(even) {
  border-right: 1px solid #cecece;
}

header .container .header-menu ul li .left {
  right: 0;
  left: auto;
}

header .container .header-menu ul li .multi {
  width: 540px !important;
}

header .container .header-menu ul li .multi li {
  width: calc(100%/3) !important;
}

header .container .header-menu ul li .multi li:nth-child(-n+3) {
  box-shadow: inset 0px 18px 10px -25px rgba(0, 0, 0, 1);
}

header .container .header-menu ul li ul.multi li:nth-child(3n) {
  border-right: 1px solid #cecece;
  border-left: 1px solid #cecece;
}

header .container .header-menu ul li ul.multi li:nth-child(1n) {
  border-left: 1px solid #cecece;
}

header .container .header-menu ul li .multi li:nth-child(odd) {
  border-left: 0;
  border-right: 0;
}

header .container .header-menu ul li .multi li:nth-child(even) {
  border-right: 0;
}


header .container .header-right {
  margin-top: auto;
  margin-bottom: auto;
  z-index: 2;
  position: relative;
	width: 456px;
}

header .container .header-right a {
  margin: 5px;
  padding: 5px;
  border-radius: 50px;
  border: 1px solid #c98681;
  cursor: pointer;
}

header .container .header-right a:last-child {
  margin-right: 0;
}

header .container .header-right .info {
  content: "";
  display: block;
  background-image: url("../img/icons/help-outline.svg");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

header .container .header-right .search {
  content: "";
  display: block;
  background-image: url("../img/icons/search-outline.svg");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

header .container .header-right .cart {
  content: "";
  display: block;
  background-image: url("../img/icons/cart-outline.svg");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

header .container .header-right .searchbar {
  position: absolute;
  display: none;
  visibility: hidden;
  top: 50px;
  background: #fff;
  padding: 10px;
  border: 1px solid #cecece;
  border-bottom: 1px solid #c98681;
  border-radius: 5px;
  width: 300px;
  right: 0;
  transition: all 0.3s ease-in-out;
}

header .container .header-right .searchbar a {
  margin: 0;
  padding: 0;
  border-radius: 0;
  border: 0;
  text-decoration: none;
}

header .container .header-right .searchbar.active-searchbar {
  display: block !important;
  visibility: visible !important;
}

header .container .header-right .searchbar::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #c98681;
  position: absolute;
  top: -5px;
  right: 52px;
}

header .container .header-right .searchbar .keyword {
  font-size: 12px;
}

header .container .header-right .searchbar .keyword span {
  width: 100%;
  margin-bottom: 5px;
}

header .container .header-right .searchbar .keyword p {
  background: #c98681;
  margin-right: 5px;
  margin-top: 5px;
  border-radius: 3px;
  padding: 3px 4px;
  color: #fff;
  cursor: pointer;
}

header .container .header-right .searchbar form {
  width: 100%;
  margin-top: 10px;
  display: flex;
}

header .container .header-right .searchbar form input {
  font-family: 'Noto Sans JP', sans-serif;
  width: calc(100% - 20%);
  padding: 3.5px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border: 1px solid #c98681;
}

header .container .header-right .searchbar form button {
  font-family: 'Noto Sans JP', sans-serif;
  width: calc(100% - 80%);
  margin-left: -2px;
  padding: 1px;
  font-size: 13px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-style: solid;
  color: #fff;
  background: #c98681;
  border-color: #c98681;
}

header .container .header-right .information {
  position: absolute;
  display: none;
  visibility: hidden;
  opacity: 0;
  top: 50px;
  background: #fff;
  padding: 10px;
  border: 1px solid #cecece;
  border-bottom: 1px solid #c98681;
  border-radius: 5px;
  width: 300px;
  right: 0;
  transition: all 0.3s ease-in-out;
  font-size: 13px;
}

header .container .header-right .information.active-information {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

header .container .header-right .information::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #c98681;
  position: absolute;
  top: -5px;
  right: 52px;
}

header .container .header-right .information ul a {
  text-decoration: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  border: 0;
  color: #000;
}

header .container .header-right .information ul a li {
  margin-bottom: 10px !important;
}

header .container .header-right .information ul a:last-child li {
  margin-bottom: 0 !important;
}

header .container .header-right .information ul li i.call {
  content: "";
  display: inline-flex;
  background-image: url("../img/icons/call-outline.svg");
  background-size: 13px 13px;
  background-repeat: no-repeat;
  width: 13px;
  height: 13px;
  margin-right: 5px;
  vertical-align: middle;
}

header .container .header-right .information ul li i.mail {
  content: "";
  display: inline-flex;
  background-image: url("../img/icons/mail-outline.svg");
  background-size: 13px 13px;
  background-repeat: no-repeat;
  width: 13px;
  height: 13px;
  margin-right: 5px;
  vertical-align: middle;
}

header .container .header-right .information ul li i.usage-guide {
  content: "";
  display: inline-flex;
  background-image: url("../img/icons/bookmark-outline.svg");
  background-size: 13px 13px;
  background-repeat: no-repeat;
  width: 13px;
  height: 13px;
  margin-right: 5px;
  vertical-align: middle;
}

header .container .header-right .information ul li i.questions {
  content: "";
  display: inline-flex;
  background-image: url("../img/icons/help-outline-bk.svg");
  background-size: 13px 13px;
  background-repeat: no-repeat;
  width: 13px;
  height: 13px;
  margin-right: 5px;
  vertical-align: middle;
}

header .container .header-right .information ul li i.delivery {
  content: "";
  display: inline-flex;
  background-image: url("../img/icons/cube-outline.svg");
  background-size: 13px 13px;
  background-repeat: no-repeat;
  width: 13px;
  height: 13px;
  margin-right: 5px;
  vertical-align: middle;
}

header .container .header-right .information ul li i.rakuten {
  content: "";
  display: inline-flex;
  background-image: url("../img/icons/rakuten-icon.svg");
  background-size: 13px 13px;
  background-repeat: no-repeat;
  width: 13px;
  height: 13px;
  margin-right: 5px;
  vertical-align: middle;
}

header .container .header-searchbar {
width: 80%;
margin-right: 10px;
float: left;
}

header .container .header-searchbar form {
  width: 100%;
  margin-top: 5px;
  display: flex;
  position: relative;
}

header .container .header-searchbar form input {
  font-family: 'Noto Sans JP', sans-serif;
  width: 100%;
  padding: 5px 10px;
  color: rgb(102, 102, 102);
  border-radius: 3px;
  border: 1px solid #cecece;
  transition: all 0.2s ease-in-out;
  background: rgb(243, 243, 243);
}

header .container .header-searchbar form input:focus {
  background: #fff;
  border: 1px solid #c98681;
}

header .container .header-searchbar form button {
  font-family: 'Noto Sans JP', sans-serif;
  width: 10%;
  margin-left: -2px;
  padding: 1px;
  font-size: 13px;
  border-radius: 3px;
  border-style: solid;
  color: #fff;
  background: #c98681;
  border-color: #c98681;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: absolute;
  top: 3px;
  right: 3px;
}

header .container .header-searchbar form button:hover {
  background: #a76c68;
  border-color: #a76c68;
}

.main {
  font-family: "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Hiragino Maru Gothic W4 JIS2004", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.announcement {
  font-size: 16px;
  width: 100%;
  border: 1px solid rgba(201,134,129,1);
  background:rgba(201,134,129,1);
  background: linear-gradient(45deg, rgba(201,134,129,1) 0%, rgb(170,87,79) 100%); 
  border-radius: 5px;
  overflow: hidden;
}

.announcement a {
  text-decoration: none;
}

.announcement p {
  text-align: center;
  line-height: 1.2;
  position: relative;
  padding: 10px;
  color: #fff;
  font-weight: 500;
}

.announcement p::before {
  content: "";
  display: inline-flex;
  margin-right: 10px;
  vertical-align: middle;
  background-image: url("../img/icons/megaphone-outline.svg");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

.main .section-header {
  margin-top: 60px;
}

.main .section-header:first-child {
  margin-top: 40px;
}

.main .section-header h1 {
  font-family: 'Source Serif Pro', serif;
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-flex;
}

.main .section-header span {
  font-weight: 400;
  font-size: 15px;
}

.product-list {
  margin: 10px 0;
}

.product-item {
  font-size: 14px;
  font-weight: 200;
  transition: transform .2s;
  margin-bottom: 0;
}

.product-item:nth-last-child(n+7) {
  margin-bottom: 50px !important;
}

.product-item a {
  text-decoration: none;
}

.product-item img {
  width: 100%;
  border-radius: 3px;
  border: 1px solid #ececec;
}

.product-item p {
  margin: 10px 0;
  margin-bottom: 5px;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-item span {
  font-weight: bold;
  font-size: 15px;
  color: #000;
}

.product-item:hover {
  -ms-transform: scale(1.03);
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.product-item a:hover span.free-delivery::before {
  background-color: #c98681;
  color: #fff;
}

.product-item span.free-delivery::before {
  content: "送料無料";
  border: 1px solid#c98681;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 5px;
  padding: 2px 5px;
  border-radius: 3px;
  display: table;
}

.featured-cat-list .featured-cat {
  margin-top: 10px;
}

.featured-cat-list .featured-cat img {
  width: 100%;
  border-radius: 5px;
}

.footer {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: normal;
  background-color: #f3f3f3;
  padding: 30px 0;
  width: 100%;
  margin-top: 130px;
}

.footer .row .footer-title {
  font-weight: 500;
  font-size: 14px;
  padding-left: 10px;
  margin-bottom: 20px;
  border-left: 3px solid #c98681;
}

.footer .row .footer-inner-title {
  font-weight: 400;
  margin-bottom: 10px;
}

.footer .row .footer-inner-info p {
  margin-bottom: 10px;
}

.footer .row .footer-inner-title::before {
  content: "・";
}

.footer .row .footer-left .contact ul {
  display: flex;
}

.footer .row .footer-left .contact li {
  margin: 15px;
  margin-left: 0;
  margin-top: 0;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
}

.footer .row .footer-left .contact p {
  color: #ff2e2e;
}

.footer .row .footer-left .contact ul p {
  color: #000;
  margin: 0;
}

.footer .row .footer-left .contact ul p.call::before {
  content: "";
  display: inline-block;
  clear: both;
  margin-right: 5px;
  margin-bottom: -5px;
  background-image: url("../img/icons/call-outline.svg");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

.footer .row .footer-left .contact ul p.mail::before {
  content: "";
  display: inline-block;
  clear: both;
  margin-right: 5px;
  margin-bottom: -5px;
  background-image: url("../img/icons/mail-outline.svg");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

.footer .row .footer-left .payment ul {
  display: flex;
  flex-wrap: wrap;
}

.footer .row .footer-left .payment li {
  margin: 5px;
  margin-left: 0;
  margin-top: 0;
  padding: 5px 10px;
  background-color: #faece6;
  border: 1px solid #c98681;
  border-radius: 5px;
}

.footer .row .footer-left .payment li p {
  margin-bottom: 0;
}

.footer .row .footer-left .payment li p.visa::before {
  content: "";
  display: inline-block;
  clear: both;
  margin-right: 5px;
  margin-bottom: -5px;
  background-image: url("../img/icons/cc-visa-brands.svg");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

.footer .row .footer-left .payment li p.master::before {
  content: "";
  display: inline-block;
  clear: both;
  margin-right: 5px;
  margin-bottom: -5px;
  background-image: url("../img/icons/cc-mastercard-brands.svg");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

.footer .row .footer-left .payment li p.jcb::before {
  content: "";
  display: inline-block;
  clear: both;
  margin-right: 5px;
  margin-bottom: -5px;
  background-image: url("../img/icons/cc-jcb-brands.svg");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

.footer .row .footer-left .payment li p.dc::before {
  content: "";
  display: inline-block;
  clear: both;
  margin-right: 5px;
  margin-bottom: -5px;
  background-image: url("../img/icons/cc-diners-club-brands.svg");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

.footer .row .footer-left .payment li p.amex::before {
  content: "";
  display: inline-block;
  clear: both;
  margin-right: 5px;
  margin-bottom: -5px;
  background-image: url("../img/icons/cc-amex-brands.svg");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

.footer .row .footer-btn {
  border-radius: 5px;
  background-color: #faece6;
  border: 1px solid #c98681;
  color: #000;
  cursor: pointer;
  padding: 5px 10px;
  transition: all 0.1s ease-in-out;
}

.footer .row .footer-btn:hover {
  background: #c98681;
  color: #fff;
}

.footer .row .footer-left .privacy {
  position: relative;
}

.footer .row .footer-left .privacy .pp-icon {
  margin-bottom: 20px;
}

.footer .row .footer-left .privacy ul li::before {
  content: "・";
}

.footer .row .footer-right .footer-inner-info ul.deliver-time {
  display: flex;
  margin-bottom: 10px;
}

.footer .row .footer-right .footer-inner-info ul.deliver-time li {
  margin-right: 10px;
  border-radius: 5px;
  background-color: #faece6;
  border: 1px solid #c98681;
  padding: 5px 10px;
}

.footer .footer-bottom {
  text-align: center;
}

.footer .footer-bottom ul {
  display: inline-flex;
  margin: 10px auto;
}

.footer .footer-bottom ul li {
  border-right: 1px dashed #000;
  padding-right: 15px;
  padding-left: 15px;
}

.footer .footer-bottom ul li:last-child {
  border-right: 0;
}

.footer .footer-bottom ul a {
  text-decoration: none;
  margin-right: 20px;
  color: #000;
}

.footer .footer-bottom ul a:last-child {
  margin-right: 0;
}

.footer p.workingdaystitle {
  color: #000 !important;
  font-weight: bold;
}

.footer .calendar ul.cal_ui li {
  margin: unset !important;
  margin-top: unset !important;
  margin-left: unset !important;
  margin-left: unset !important;
  margin-top: unset !important;
  text-transform: unset !important;
  font-weight: unset !important;
}

.footer .calendar ul.cal_main {
  display: unset !important;
}

.footer .calendar .cal_wrapper p {
  color: #c98681 !important;
}

.footer .calendar ul.cal_main li {
  padding: 1px;
  width: 21px;
  text-align: center;
  list-style: none;
  font-size: 81% !important;
  float: left;
  overflow: hidden;
  margin: unset !important;
  margin-top: unset !important;
  margin-left: unset !important;
  margin-left: unset !important;
  margin-top: unset !important;
  text-transform: unset !important;
  font-weight: unset !important;
}

.footer .calendar ul.cal_main li.cal_headline {
  background-color: #ffdbcb;
  color: #c98681;
  font-weight: bold !important;
}

.footer .calendar ul.cal_main li.Sat span {
  background-color: #c98681;
}

.footer .calendar ul.cal_main li.Sun span {
  background-color: #c98681;
}

.footer .calendar ul.cal_main li.holyday span {
  background-color: #c98681;
}

.footer .calendar div.cal_wrapper {
  border: 2px solid #c98681;
  border-radius: 5px;
  padding: 4px;
}

.main-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.main-slider .swiper-slide {
  display: flex;
}

.main-slider {
  position: relative;
  overflow: hidden;
  list-style: none;
  width: 100%;
  padding: 0;
  border-radius: 5px;
  margin-bottom: 15px;
  margin-top: 15px;
}

.main-slider .swiper-button-next,
.main-slider .swiper-button-prev {
  width: unset;
  height: unset;
}

.main-slider .swiper-button-next {
  right: 20px;
}

.main-slider .swiper-button-prev {
  left: 20px;
}

.main-slider .swiper-button-next::after,
.main-slider .swiper-button-prev::after {
  color: #c98681;
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, .3);
  border-radius: 50%;
  padding: 10px 15px;
  font-size: 20px;
  transition: all 0.2s ease-in-out;
}

.main-slider .swiper-button-next:hover::after,
.main-slider .swiper-button-prev:hover::after {
  color: #fff;
  background-color: #c98681;
}

.ranking-slider {
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  list-style: none;
  position: relative;
  width: 100%;
  padding: 0;
  margin-bottom: 60px;
}

.ranking-slider .swiper-button-next,
.ranking-slider .swiper-button-prev {
  width: unset;
  height: unset;
  top: 45%;
}

.ranking-slider .swiper-button-next {
  right: 3px;
}

.ranking-slider .swiper-button-prev {
  left: 3px;
}

.ranking-slider .swiper-button-next::after,
.ranking-slider .swiper-button-prev::after {
  color: #fff;
  background-color: #c98681;
  box-shadow: 0 0 3px rgba(0, 0, 0, .3);
  border-radius: 50%;
  padding: 7px 10px;
  font-size: 10px;
  transition: all 0.2s ease-in-out;
}

.ranking-slider .swiper-button-next:hover::after,
.ranking-slider .swiper-button-prev:hover::after {
  color: #c98681;
  background-color: #fff;
}

.ranking-slider .swiper-button-next.swiper-button-disabled,
.ranking-slider .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

.ranking-slider::before {
  content: "";
  width: 5%;
  height: 90%;
  position: absolute;
  opacity: 1;
  top: 0;
  right: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  z-index: 2;
  transition: all 0.2s ease-in-out;
}

.ranking-slider:hover::before {
  opacity: 0;
}

.ranking-cat-title p {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500 !important;
  font-size: 20px !important;
  margin-bottom: 15px;
  letter-spacing: 1px;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.ranking-cat-title p::after {
  content: "";
  border-top: 2px solid;
  margin: 0 0 0 30px;
  flex: 1 0 20px;
  color: #c98681;
}

.rank-item {
  transition: transform .2s;
  position: relative;
  padding-top: 25px;
}

.rank-item::before {
  content: "";
  padding: 15px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
}

.rank-item:nth-child(1):before {
  color: #fff;
  background-image: url("../img/ranking-icons/no1.svg");
  background-position: top;
  background-repeat: no-repeat;
  background-color: transparent;
}

.rank-item:nth-child(2):before {
  color: #fff;
  background-image: url("../img/ranking-icons/no2.svg");
  background-position: top;
  background-repeat: no-repeat;
  background-color: transparent;
}

.rank-item:nth-child(3):before {
  color: #fff;
  background-image: url("../img/ranking-icons/no3.svg");
  background-position: top;
  background-repeat: no-repeat;
  background-color: transparent;
}

.rank-item:nth-child(4):before {
  color: #fff;
  background-image: url("../img/ranking-icons/no4.svg");
  background-position: top;
  background-repeat: no-repeat;
  background-color: transparent;
}

.rank-item:nth-child(5):before {
  color: #fff;
  background-image: url("../img/ranking-icons/no5.svg");
  background-position: top;
  background-repeat: no-repeat;
  background-color: transparent;
}

.rank-item a {
  text-decoration: none;
}

.rank-item img {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ececec;
}

.rank-item p {
  font-family: "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Hiragino Maru Gothic W4 JIS2004", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  text-transform: none !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.2;
  margin: 10px 0;
  color: #000;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rank-item span {
  font-weight: bold !important;
  color: #000;
}

.rank-item a:hover span.free-delivery::before {
  background-color: #c98681;
  color: #fff;
}

.rank-item span.free-delivery::before {
  content: "送料無料";
  border: 1px solid#c98681;
  font-weight: 500;
  font-size: 12px;
  margin-bottom: 5px;
  padding: 2px 5px;
  border-radius: 3px;
  display: table;
}


.category-tab .tab {
  display: flex;
  width: 100%;
}

.category-tab .tab button {
  background-color: inherit;
  width: calc(100% / 4);
  float: left;
  border: 1px solid #fff;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  padding: 10px;
  transition: all 0.1s cubic-bezier(.79, .14, .15, .86);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.category-tab .tab button:nth-child(-n+3) {
  margin-right: 20px;
}

.category-tab .tab button:nth-child(1) {
  background: #be9079;
  border: 1px solid #be9079;
  color: #fff;
}

.category-tab .tab button:nth-child(2) {
  background: #c98681;
  border: 1px solid #c98681;
  color: #fff;
}

.category-tab .tab button:nth-child(3) {
  background: #d49372;
  border: 1px solid #d49372;
  color: #fff;
}

.category-tab .tab button:nth-child(4) {
  background: #a97B69;
  border: 1px solid#a97B69;
  color: #fff;
}

.category-tab .tab button:nth-child(1).active {
  background-color: #be9079;
  border: 1px solid #be9079;
  color: #fff;
  margin-bottom: 0;
  margin-top: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.category-tab .tab button:nth-child(2).active {
  background-color: #c98681;
  border: 1px solid #c98681;
  color: #fff;
  margin-bottom: 0;
  margin-top: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.category-tab .tab button:nth-child(3).active {
  background-color: #d49372;
  border: 1px solid #d49372;
  color: #fff;
  margin-bottom: 0;
  margin-top: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.category-tab .tab button:nth-child(4).active {
  background-color: #a97B69;
  border: 1px solid #a97B69;
  color: #fff;
  margin-bottom: 0;
  margin-top: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.category-tab .tabcontent {
  padding: 20px 0;
  transition: all 0.3s ease-in-out;
}

.category-tab .tabcontent:nth-child(2) {
  background-color: #be9079;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.category-tab .tabcontent:nth-child(3) {
  background-color: #c98681;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.category-tab .tabcontent:nth-child(4) {
  background-color: #d49372;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.category-tab .tabcontent:nth-child(5) {
  background-color: #a97B69;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.category-tab .tabcontent .row {
  justify-content: center;
}

.category-tab .tabcontent .item-cat {
  overflow: hidden;
  border-radius: 5px;
  padding: 0;
  padding-right: 10px;
}

.category-tab .tabcontent .item-cat p {
  position: absolute;
  width: 100%;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.2;
  bottom: 12px;
  left: -5px;
  text-align: center;
  text-shadow: 0px 0px 7px #000;
}

.category-tab .tabcontent .item-cat img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-color: #fff;
}

.category-tab .tabcontent .item-cat .cat-img {
  position: relative;
}

.category-tab .tabcontent .item-cat .cat-img::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5018207966780462) 0%, rgba(255, 255, 255, 0) 100%);
}

.brands-list .brand {
  margin-bottom: 30px;
}

.brands-list .brand img {
  width: 100%;
  border-radius: 5px;
}

#backtotop {
  display: inline-block;
  background-color: #c98681;
  box-shadow: 0 0 3px rgba(0, 0, 0, .3);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s,
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  text-decoration: none;
}

#backtotop::after {
  content: "";
  display: block;
  background-image: url("../img/icons/chevron-up-white.svg");
  background-size: 25px 25px;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
}

#backtotop:hover {
  cursor: pointer;
}

#backtotop.show {
  opacity: 1;
  visibility: visible;
}

#piarylinebutton {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #05c756;
  box-shadow: 0 0 3px rgba(0, 0, 0, .3);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50px;
  position: fixed;
  bottom: 90px;
  right: 30px;
  transition: background-color .3s,
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  text-decoration: none;
}

#piarylinebutton::after {
  content: "";
  display: block;
  background-image: url("../img/icons/line-logo.svg");
  background-size: 25px 25px;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
}

#piarylinebutton:hover {
  cursor: pointer;
}

#piarylinebutton.show {
  opacity: 1;
  visibility: visible;
}

#spnavimenu {
  display: none;
  background-color: #c98681;
  box-shadow: 0 0 3px rgba(0, 0, 0, .3);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  transition: background-color .3s,
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  text-decoration: none;
}

#spnavimenu::after {
  content: "";
  display: block;
  background-image: url("../img/icons/menu-outline-wh.svg");
  background-size: 25px 25px;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
}

#spnavimenu:hover {
  cursor: pointer;
}

#spnavimenu.active::after {
  background-image: url("../img/icons/close-outline-wh.svg");
}

#spnavimenu.show {
  opacity: 1;
  visibility: visible;
}

.grad-wrap {
  position: relative;
}

.grad-wrap+.grad-wrap {
  margin-top: 300px;
}

.grad-trigger {
  z-index: 2;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 148px;
  margin: auto;
  padding: 8px;
  border-radius: 5px;
  background: #c98681;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: .2s ease;
  box-shadow: 0 0 3px rgba(0, 0, 0, .3);
  z-index: 3;
  bottom: -0.5em;
}

.grad-trigger:hover {
  background: #fff;
  color: #c98681;
}

.grad-trigger::after {
  content: "もっと見る"
}

.grad-item {
  position: relative;
  overflow: hidden;
}

.grad-item::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 220px;
  z-index: 2;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0) 100%);
}

.grad-item.is-hide {
  height: 400px;
}

.grad-trigger.is-show {
  bottom: -2em;
}

.grad-trigger.is-show::after {
  content: "閉じる"
}

.grad-trigger.is-show+.grad-item::before {
  display: none;
}

/*******PIARY POP-UP CSS*******/

.piary_pop_up {
  position: fixed;
  z-index: 2;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 1;
  cursor: pointer;
}

.piary_pop_up .circle {
  width: 150px;
  height: 150px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  color: #fff;
  -webkit-box-shadow: 0px 0px 55px 11px rgba(0, 0, 0, 0.31);
  -moz-box-shadow: 0px 0px 55px 11px rgba(0, 0, 0, 0.31);
  box-shadow: 0px 0px 55px 11px rgba(0, 0, 0, 0.31);
  border: solid 10px;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-animation: arrow 3s infinite;
  -moz-animation: arrow 3s infinite;
  -o-animation: arrow 3s infinite;
  animation: arrow 3s infinite;
}

.piary_pop_up.active {
  display: block;
  bottom: 30px;
  left: 30px;
  visibility: visible;
  opacity: 1;
  -webkit-animation: bottom 1s infinite;
  -moz-animation: bottom 1s infinite;
  -o-animation: bottom 1s infinite;
  animation: bottom 1s infinite;
  z-index: 2;
}

.piary_pop_up.hide {
  visibility: hidden;
  opacity: 0;
}

.piary_pop_up .circle:hover {
  -webkit-box-shadow: 0px 0px 55px 2px rgba(0, 0, 0, 0.31);
  -moz-box-shadow: 0px 0px 55px 2px rgba(0, 0, 0, 0.31);
  box-shadow: 0px 0px 55px 2px rgba(0, 0, 0, 0.31);
}

@keyframes arrow {
  0% {
    border-color: #f5f074;
  }

  50% {
    border-color: #11bdc1;
  }

  100% {
    border-color: #f5f074;
  }
}

@keyframes bottom {
  0% {
    bottom: 40px;
  }

  50% {
    bottom: 45px;
  }

  100% {
    bottom: 40px;
  }
}

.pop_up_close_btn {
  background-color: rgba(0, 0, 0, 0.8);
  width: 25px;
  height: 25px;
  position: relative;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 50px;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
  z-index: 2;
  clear: both;
  left: 132px;
  top: -32px;
}

.pop_up_close_btn img {
  max-width: 15px;
  padding: 5px;
}

/*DERMAL SHOP誘致スタイル/*
/*.pop_up_banner h5 {
  font-weight: bold;
  text-align: left;
  padding: 7px;
  font-family: 'Roboto Condensed', sans-serif;
  left: 110px;
  bottom: 44px;
  margin: 0px;
  position: absolute;
  background-color: red;
  -webkit-border-radius: 9000px;
  -moz-border-radius: 9000px;
  border-radius: 9000px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: max-content;
}*/

/*LINE友達*/
.pop_up_banner h5 {
  font-weight: bold;
  color: white;
  text-align: left;
  padding: 7px;
  font-family: "Roboto Condensed", sans-serif;
  margin: 0px;
  position: absolute;
  background-color: #07b53b;
  /*-webkit-border-radius: 9000px;
  -moz-border-radius: 9000px;
  border-radius: 9000px;*/
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: max-content;
  clear: both;
}

.pop_up_img {
  width: 100%;
}

.piary_pop_up_modal_bg {
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  transform: translateX(0);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 99999;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.piary_pop_up_modal_bg.hide {
  opacity: 0;
  visibility: hidden;
}

.piary_pop_up_modal_bg.active {
  opacity: 1 !important;
  visibility: visible !important;
}

.piary_pop_up_modal.active {
  display: block !important;
  z-index: 1;
  position: fixed;
  opacity: 1 !important;
  visibility: visible !important;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.piary_pop_up_modal.hide {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.pop_up_modal_close_btn {
  text-align: right;
  margin-bottom: 5px;
  cursor: pointer;
}

.pop_up_modal_close_btn img {
  max-width: 25px;
  max-height: 25px;
}

.piary_pop_up_modal_banner img {
  max-width: 600px;
}


@media only screen and (max-width: 768px) {
  .pc-cont {
    display: none;
  }

  .sp-cont {
    display: block !important;
  }

  header {
    border: 0;
    background-color: #fff;
    width: 100%;
    height: auto;
    max-height: 100px;
    overflow: hidden;
  }

  header .sp-header {
    width: 100%;
    height: 40px;
    max-height: 40px;
    background-color: #c98681;
    display: flex;
    justify-content: space-between;
  }

  header .sp-header .sp-header-logo,
  header .sp-header .sp-hamburger-btn,
  header .sp-header .sp-cart-btn {
    margin-top: auto;
    margin-bottom: auto;
  }

  header .sp-header .sp-header-logo img {
    max-width: 180px;
  }

  header .sp-header .sp-hamburger-btn {
    content: "";
    display: block;
    background-image: url("../img/icons/sp-hamburger.svg");
    background-size: 18px 18px;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    margin-left: 15px;
  }

  header .sp-header .sp-cart-btn {
    content: "";
    display: block;
    background-image: url("../img/icons/sp-cart-white.svg");
    background-size: 22px 22px;
    background-repeat: no-repeat;
    position: relative;
    width: 22px;
    height: 22px;
    margin-right: 15px;
  }

  header .sp-header .sp-cart-btn a {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  header .sp-searchbar {
    width: 100%;
    height: 60px;
    max-height: 60px;
    padding: 10px;
  }

  header .sp-searchbar form {
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
    display: flex;
    flex-direction: row;
  }

  header .sp-searchbar form input {
    font-family: 'Noto Sans JP', sans-serif;
    padding: 13px;
    width: 100%;
    height: 40px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border: 1px solid #c98681;
    border-right: 0;
    -webkit-appearance: none;
  }

  header .sp-searchbar form input:focus {
    outline: none;
  }

  header .sp-searchbar form button {
    width: 40px;
    height: 40px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    border: 1px solid #c98681;
    background-color: #fff;
    border-left: 0;
    position: relative;
    margin-left: -1px;
  }

  header .sp-searchbar form button .sb-icon {
    content: "";
    display: block;
    background-image: url("../img/icons/search-outline.svg");
    background-size: 20px 20px;
    background-repeat: no-repeat;
    width: 30px;
    height: 40px;
    position: absolute;
    top: 8px;
    right: 0;
  }
  .category-tab {display: none;}
	
  .sp-navi {
    font-family: 'Noto Sans JP', sans-serif;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    visibility: hidden;
    overflow-y: scroll;
    background-color: #fff;
    transform: translateX(-100%);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    z-index: 999;
  }

  .sp-navi.active {
    display: block !important;
    transform: translateX(0) !important;
    visibility: visible;
  }

  .sp-navi-overlay.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transform: translateX(0);
    backdrop-filter: blur(3px);
    visibility: hidden;
    opacity: 0;
    -webkit-backdrop-filter: blur(3px);
    transition: all 0.2s ease-in-out;
    z-index: 998;
  }

  .sp-navi-overlay.active {
    visibility: visible !important;
    opacity: 1 !important;
  }

  .sp-navi ul {
    list-style: none;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0;
    display: flex;
    flex-wrap: wrap;
  }

  .sp-navi ul li {
    width: 100%;
    padding: 10px 20px;
    text-align: left;
    border-bottom: 0.1px solid #ccc;
  }

  .sp-navi .navi-header {
    background-color: #f9f9f9;
    color: #555;
    font-weight: bold;
    font-size: 12px;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
  }

  .sp-navi .navi-header p {
    margin-top: auto;
    margin-bottom: auto;
    padding: 10px 15px;
    padding-bottom: 13px;
  }

  .sp-navi .navi-featured {
    padding: 15px;
  }

  .sp-navi .navi-featured a img {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 5px;
  }

  .sp-navi .navi-featured a:last-child img {
    margin-bottom: 0;
  }

  .sp-navi .navi-info ul {
    padding: 15px;
  }

  .sp-navi .navi-info ul a {
    text-decoration: none;
    width: 100%;
  }

  .sp-navi .navi-info ul li {
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 12px;
    padding: 10px;
    display: flex;
  }

  .sp-navi .navi-info .navi-shopping-guide::before {
    content: "";
    display: block;
    background-image: url("../img/icons/bookmark-outline.svg");
    background-size: 12px 12px;
    background-repeat: no-repeat;
    width: 12px;
    height: 12px;
    margin-right: 10px;
  }

  .sp-navi .navi-info .navi-questions::before {
    content: "";
    display: block;
    background-image: url("../img/icons/help-outline-bk.svg");
    background-size: 12px 12px;
    background-repeat: no-repeat;
    width: 12px;
    height: 12px;
    margin-right: 10px;
  }

  .sp-navi .navi-info .navi-contact::before {
    content: "";
    display: block;
    background-image: url("../img/icons/call-outline.svg");
    background-size: 12px 12px;
    background-repeat: no-repeat;
    width: 12px;
    height: 12px;
    margin-right: 10px;
  }

  .accordian {
    width: 100%;
  }

  .accordian-item {
    background-color: white;
    color: #111;
    border-bottom: 1px solid #eee;
    color: #555;
  }

  .accordian-item:last-child {
    border-bottom: 0;
  }

  .accordian-item .accordian-item-header p::after {
    content: '';
    display: block;
    height: 6px;
    width: 6px;
    border-right: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%) rotate(45deg);
    transition: 0.2s;
  }

  .accordian-item .accordian-item-header.active p::after {
    transform: translateY(-50%) rotate(-135deg);
  }

  .accordian-item-header {
    display: flex;
    padding: 10px 15px;
    font-size: 12px;
    align-items: center;
    position: relative;
    cursor: pointer;
  }

  .accordian-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }

  .accordian-item-body-content {
    line-height: 1.5;
    background-color: #f9f9f9;
  }

  .accordian-item-body-content ul {
    display: block;
    list-style-type: none;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0;
  }

  .accordian-item-body-content ul li::after {
    content: '';
    display: block;
    height: 6px;
    width: 6px;
    border-right: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    transform: rotate(-45deg);
    right: 15px;
    top: 45%;
    position: absolute;
  }

  .accordian-item-body-content ul li {
    list-style: none;
    display: flex;
    width: 100%;
    position: relative;
    /*padding: 10px 15px;*/
	padding: 0;
    border-bottom: 1px solid #eee;
  }

  .accordian-item-body-content ul li:last-child {
    border-bottom: 0;
  }

  .accordian-item-body-content ul li:first-child {
    border-top: 1px solid #eee;
  }

  .accordian-item-body-content ul li a {
    text-decoration: none;
    color: black;
    font-size: 12px;
	width: 100%;
	padding: 10px 15px;
	display: block;
  }


  .main-slider .swiper-button-next,
  .main-slider .swiper-button-prev {
    display: none;
  }

  .main-slider {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
  }

  .announcement p::before {
    content: "";
    display: block;
    position: absolute;
    transform: rotate(0.9turn);
    left: 0;
    vertical-align: middle;
    background-image: url("../img/icons/megaphone-outline.svg");
    background-size: 50px 50px;
    background-repeat: no-repeat;
    opacity: 0.3;
    width: 50px;
    height: 50px;
  }

  .category-tab .tabcontent .item-cat:first-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .category-tab .tabcontent .item-cat:last-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .main .section-header h1 {
    font-size: 22px;
  }

  .main .section-header span {
    font-size: 13px;
  }

  .product-list {
    padding-left: 15px;
  }

  .product-list .product-item {
    padding-right: 15px;
    padding-left: 0;
  }

  .product-item:hover {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .product-item p {
    font-size: 12px;
  }

  .product-item span {
    font-size: 12px;
  }

  .product-item:nth-last-child(n+4) {
    margin-bottom: 30px !important;
  }

  .product-item a:hover span.free-delivery::before {
    background-color: #c98681;
    color: #fff;
  }

  .product-item span.free-delivery::before {
    content: "送料無料";
    border: 1px solid#c98681;
    font-weight: 500;
    font-size: 12px;
    padding: 1px 4px;
  }

  .ranking-cat-title p {
    font-size: 15px !important;
  }

  .ranking-cat-title p::after {
    margin: 0 0 0 15px;
  }

  .ranking-slider {
    margin-bottom: 40px;
  }

  .ranking-slider .swiper-button-next,
  .ranking-slider .swiper-button-prev {
    top: 41%;
  }

  .rank-item p {
    font-size: 12px !important;
    line-height: 1.4;
  }

  .rank-item span {
    font-size: 12px !important;
  }

  .brands-list {
    padding-left: 15px;
  }

  .brands-list .brand {
    padding-left: 0;
    padding-right: 15px;
    margin-bottom: 15px;
  }

  .grad-item.is-hide {
    height: 250px;
  }

  .category-tab .tab button {
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    padding: 10px;
    position: relative;
    margin-bottom: 8px;
  }

  .category-tab .tab button:nth-child(-n+3) {
    margin-right: 5px;
  }

  .category-tab .tab button:nth-child(1) {
    background-color: #be9079;
    width: calc(65% / 3);
    color: #fff;
  }

  .category-tab .tab button:nth-child(2) {
    background-color: #c98681;
    width: 35%;
    color: #fff;
  }

  .category-tab .tab button:nth-child(3) {
    background-color: #d49372;
    width: calc(65% / 3);
    color: #fff;
  }

  .category-tab .tab button:nth-child(4) {
    background-color: #a97B69;
    width: calc(65% / 3);
    color: #fff;
  }

  .category-tab .tab button:nth-child(1).active {
    border-radius: 0;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    margin-bottom: 0;
    -webkit-box-shadow: 0px -5px 3px -4px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px -5px 3px -4px rgba(0, 0, 0, 0.4);
    box-shadow: 0px -5px 3px -4px rgba(0, 0, 0, 0.4);
  }

  .category-tab .tab button:nth-child(2).active {
    border-radius: 0;
    border-top-left-radius: 7.5px;
    border-top-right-radius: 7.5px;
    margin-bottom: 0;
    -webkit-box-shadow: 0px -5px 3px -4px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px -5px 3px -4px rgba(0, 0, 0, 0.4);
    box-shadow: 0px -5px 3px -4px rgba(0, 0, 0, 0.4);
  }

  .category-tab .tab button:nth-child(3).active {
    border-radius: 0;
    border-top-left-radius: 7.5px;
    border-top-right-radius: 7.5px;
    margin-bottom: 0;
    -webkit-box-shadow: 0px -5px 3px -4px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px -5px 3px -4px rgba(0, 0, 0, 0.4);
    box-shadow: 0px -5px 3px -4px rgba(0, 0, 0, 0.4);
  }

  .category-tab .tab button:nth-child(4).active {
    border-radius: 0;
    border-top-left-radius: 7.5px;
    border-top-right-radius: 7.5px;
    margin-bottom: 0;
    -webkit-box-shadow: 0px -5px 3px -4px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px -5px 3px -4px rgba(0, 0, 0, 0.4);
    box-shadow: 0px -5px 3px -4px rgba(0, 0, 0, 0.4);
  }

  .category-tab .tabcontent .row {
    justify-content: unset;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .category-tab .tabcontent {
    padding-top: 7px;
    padding-bottom: 12px;
    margin-left: -15px;
    margin-right: -15px;
    border-radius: 0px !important;
    -webkit-box-shadow: 1px 0px 5px -1px rgb(0, 0, 0, 1);
    -moz-box-shadow: 1px 0px 5px -1px rgb(0, 0, 0, 1);
    box-shadow: 1px 0px 5px -1px rgb(0, 0, 0, 1);
  }

  .category-tab .tabcontent .item-cat {
    padding: 0;
    border-radius: 0;
  }

  .category-tab .tabcontent .item-cat p {
    left: 0;
  }

  .category-tab .tabcontent .item-cat img {
    border-radius: 0;
  }

  .category-tab .tabcontent .item-cat .cat-img::after {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .category-tab .tabcontent:nth-child(2) {
    border-top: 5px solid #be9079;
  }

  .category-tab .tabcontent:nth-child(3) {
    border-top: 5px solid #c98681;
  }

  .category-tab .tabcontent:nth-child(4) {
    border-top: 5px solid #d49372;
  }

  .category-tab .tabcontent:nth-child(5) {
    border-top: 5px solid #a97B69;
  }

  .footer .contact .mail,
  .footer .contact .call {
    font-size: 14px;
  }

  .footer .row .footer-right .footer-inner-info ul.deliver-time {
    flex-wrap: wrap;
  }

  .footer .row .footer-right .footer-inner-info ul.deliver-time li:nth-child(-n+3) {
    margin-bottom: 5px;
  }

  .footer .footer-bottom ul {
    display: block;
  }

  .footer .footer-bottom ul li {
    border: 0;
  }

  #spnavimenu {
    display: inline-block;
  }

  #backtotop {
    bottom: 80px;
    right: 20px;
  }

  #piarylinebutton {
    display: none;
  }

  .piary_pop_up .circle {
    width: 90px;
    height: 90px;
    border-width: 5px;
  }

  .piary_pop_up.active {
    left: 15px;
    bottom: auto;
    -webkit-animation: bottom 1s infinite;
    -moz-animation: bottom 1s infinite;
    -o-animation: bottom 1s infinite;
    animation: bottom 1s infinite;
  }

  @keyframes bottom {
    0% {
      bottom: 75px;
    }

    50% {
      bottom: 70px;
    }

    100% {
      bottom: 75px;
    }
  }

  /*DERMAL SHOP誘致スタイル*/
  /*.pop_up_banner h5 {
    left: 70px;
    bottom: 18px;
  }*/

  .pop_up_banner h5 {
    left: -16px;
    bottom: 0px;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
  }

  .piary_pop_up_modal.active {
    max-width: 90%;
    width: 90%;
  }

  .piary_pop_up_modal_banner {
    width: 100%;
  }
}
