@charset "utf-8";

/* 共通設定 */
* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  font-size: 0.875rem;
  color: #444;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #444;
  -webkit-tap-highlight-color: transparent;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
}

.inner {
  max-width: 1200px;
  padding: 0 4%;
  margin: 0 auto;
}

.sp-only,
.sp-only--tab {
  display: none;
}

.link--fade {
  transition: all 0.3s;
  display: inline-block;
}

.link--fade:hover {
  opacity: 0.7;
}

.txt-red {
  color: #EB1D31;
}

/* 共通設定ここまで */

/* header */
.header-upper {
  text-align: center;
  font-size: 0.75rem;
  color: #737373;
  position: relative;
  z-index: 999;
}

.header-lower {
  background: #fff;
  position: relative;
  z-index: 999;
}

.inner.header-lower__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2%;
  position: relative;
  height: 70px;
}

.toggle-btn {
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
}

.toggle-btn span {
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #777;
  border-radius: 1px;
  position: absolute;
  left: 0;
  transition: 0.3s;
}

.toggle-btn span:nth-child(1) {
  top: 0;
}

.toggle-btn span:nth-child(2) {
  top: 50%;
}

.toggle-btn span:nth-child(3) {
  top: 100%;
}

.toggle-btn.close-btn span:nth-child(1) {
  transform: translateY(12px) rotate(135deg);
}

.toggle-btn.close-btn span:nth-child(2) {
  opacity: 0;
}

.toggle-btn.close-btn span:nth-child(3) {
  transform: translateY(-12px) rotate(-135deg);
}

.header-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header-lower__right {
  display: flex;
  gap: 24px;
  align-items: flex-end;
}

.search-box {
  border: #888 solid 1px;
  border-radius: 6px;
  color: #aaa;
  padding: 4px 8px;
  position: relative;
}

.search-box:after {
  content: url("../images/search.webp");
  vertical-align: middle;
  position: absolute;
  right: 6px;
}

.search-box input {
  width: 200px;
}

.header-banner {
  padding: 0 0 40px;
  line-height: 0;
}

/* 特集カルーセル */
.special-feature {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0;
}

.special-feature__item {
  text-align: center;
}

.special-feature .slick-slide img {
  margin: 0 auto;
  max-height: 352px !important; 
}

.special-feature .carousel .slick-slide {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: scale(0.8);
}

.special-feature .carousel .slick-slide.slick-center {
  transform: scale(1);
}

.special-feature .carousel {
  z-index: 0;
  position: relative;
}

.special-feature .slick-prev {
  left: 21vw;
  bottom: -34px;
  top: auto;
  z-index: 1;
}

.special-feature .slick-prev:before {
  content: url("../images/arrow-left.webp");
}

.special-feature .slick-next {
  right: 21vw;
  bottom: -34px;
  top: auto;
  z-index: 1;
}

.special-feature .slick-next:before {
  content: url("../images/arrow-right.webp");
}

/* category一覧 */
.categories {
  background: #f7f7f7;
}

.categories__inner {
  padding: 20px 0;
  overflow-x: auto;
}

.categories__list {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  justify-content: center;
  column-gap: 5%;
  row-gap: 30px;
  overflow-x: auto;
  margin-top: 20px;
}

.categories__item {
  width: 100px;
  margin: 0 auto;
}

.categories__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* アイテム一覧 */
.products {
  border-bottom: 1px #e7e7e7 solid;
}

.inner.products__inner {
  padding: 60px 2% 60px;
}

.section-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 2;
  text-align: center;
}

.section-title-sub {
  text-align: center;
}

.products__list {
  display: flex;
  /* column-gap: 1.5%; */
  row-gap: 2rem;
  margin: 40px 0 50px;
  overflow-x: auto;
}

.products__item {
  padding-bottom: 10px;
  width: calc((100% - 6%) / 5);
  min-width: 144px;
  /* max-width: 213px; */
}

.products__item + .products__item {
  margin-left: 1.5%;
}

.products__item-name {
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 6px;
}

.products__panel {
  display: flex;
  justify-content: flex-start;
  gap: 5%;
}

.panel {
  border: #aaa solid 1px;
  width: 72px;
  height: 18px;
  color: #888;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products__price {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 6px;
}

.products__price span {
  font-size: 0.8rem;
  font-weight: 400;
}

.more-btn {
  margin: 0 auto;
  text-align: center;
}

.more-btn a {
  background: #444;
  padding: 16px 64px;
  color: #fff;
  border-radius: 32px;
}

/* footer */
/* カテゴリー一覧 */
.footer__category-all {
  border-bottom: #e7e7e7 solid 1px;
}

.inner.category-all__inner {
  padding: 40px 0 20px;
  display: flex;
  justify-content: center;
}

.main-cat {
  padding: 0 2vw 16px;
  border-bottom: #e7e7e7 solid 1px;
}

.main-cat a {
  display: flex;
  align-items: center;
}

.footer__category-all dl img {
  width: 30px;
  height: auto;
  vertical-align: middle;
}

.main-cat span {
  font-size: 0.8125rem;
  font-weight: 600;
  margin-left: 0.6rem;
}

.sub-cat {
  padding: 16px 2vw;
}

.sub-cat__item a {
  display: flex;
  align-items: center;
}

.sub-cat__item+.sub-cat__item {
  margin-top: 16px;
}

.sub-cat__item span {
  font-size: 0.8125rem;
  margin-left: 0.4rem;
}

/* footer-sns */
.footer-sns {
  padding: 50px 0;
  text-align: center;
}

.footer-sns__title {
  font-size: 24px;
  font-weight: 600;
}

.footer-sns__list {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px auto 0;
}

.footer-sns__item img {
  height: 48px;
  width: auto;
}

/* footer-info */
.footer-info {
  background: #f7f7f7;
  padding: 30px 0;
}

.inner.footer-info__inner {
  display: flex;
  justify-content: center;
}

.footer-info dl {
  width: 300px;
  padding-left: 5%;
}

.footer-info dd li {
  margin-top: 10px;
}

.footer-info dd li a::before {
  content: "・";
}

/* footer-lower */
.footer-lower {
  background: #555;
  padding: 24px 0;
  text-align: center;
}

.footer-lower small {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 300;
}

body.nav-open {
  overflow: hidden;
}

/* drawer nav */
.drawer {
  width: 100%;
  max-width: 560px;
  position: fixed;
  left: 0;
  background: #fff;
  z-index: 1000;
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.3s;
  overflow-y: auto;
  height: 100vh;
  padding: 0 0 30px;

  /* footer__category-allからのコピペ */
  .inner.category-all__inner {
    flex-direction: column;
    padding: 0;
  }

  .category-all__title {
    text-align: center;
    font-size: 14px;
    padding: 16px;
  }

  .category-all__inner dl {
    width: 100%;
  }

  .main-cat {
    width: 100%;
    padding-bottom: 0;
    padding-left: 0;
    border-bottom: none;
    padding: 16px;
    border-top: 1px solid #e7e7e7;
    position: relative;
  }

  .main-cat span {
    font-weight: 400;
  }

  .main-cat::after {
    content: url("../images/more.webp");
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 0;
  }

  .sub-cat {
    padding: 0;
    padding-left: 0;
    display: none;
    width: 100%;
  }

  .sub-cat__item+.sub-cat__item {
    margin-top: 0;
  }

  .sub-cat ul li a {
    display: block;
    padding: 16px;
    border-top: 1px solid #e7e7e7;
    position: relative;
    background: #f7f7f7;
  }

  .sub-cat li a:after {
    content: url("../images/arrow-right.webp");
    position: absolute;
    right: 21px;
    top: 50%;
    transform: translateY(-50%) scale(0.7);
    line-height: 0;
  }

  /*sp footer-sns */
  .footer-sns {
    padding: 30px 0;
    text-align: center;
  }

  .footer-sns__title {
    font-size: 1rem;
  }

  .footer-sns__list {
    width: 208px;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }

  /* sp footer-info */
  .footer-info {
    background: none;
    padding: 0;
  }

  .inner.footer-info__inner {
    flex-direction: column;
    padding: 0;
    border-bottom: #e7e7e7 1px solid;
  }

  .footer-info dl {
    padding: 0;
    width: 100%;
  }

  .footer-info dd li {
    margin: 0;
  }

  .footer-info dl dt,
  .footer-info dl dd li a {
    display: block;
    padding: 16px;
    position: relative;
  }

  .footer-info dl dt {
    border-top: #e7e7e7 1px solid;
  }

  .footer-info dl dt::after {
    content: url("../images/more.webp");
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 0;
  }

  .footer-info dd li a::before {
    content: none;
    background: #f7f7f7;
  }

  .footer-info dl dd li a {
    background: #f7f7f7;
  }

  .footer-info dl dd li {
    border-top: #e7e7e7 1px solid;
  }

  .footer-info dl dd li a:after {
    content: url("../images/arrow-right.webp");
    position: absolute;
    right: 21px;
    top: 50%;
    transform: translateY(-50%) scale(0.7);
    line-height: 0;
  }

  /* footer-logo */
  .footer-logo {
    text-align: center;
    margin: 8px 0;
  }

  .nav-close {
    display: block;
    margin: 0 auto;
    background: #444;
    color: #fff;
    width: 160px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    border-radius: 20px;
  }
}

.drawer.show {
  transform: translateX(0);
  opacity: 1;
}

.black-mask {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: #000;
  opacity: 0;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  transform: translateX(-100vw);
  transition: all 0.3;
}

.black-mask.show {
  transform: translateX(0);
  opacity: 0.6;
}

/* ==========
    cat.html
   ========== */
/* cat.html category一覧 */
.products--show-all .inner.products__inner {
  padding: 30px 2%;
}

.products--show-all .products__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 1.5%;
}

.products--show-all .products__item {
  width: auto;
}

.bread-crumb {
  display: flex;
  align-items: baseline;
}

.bread-crumb .number {
  font-size: 24px;
  margin: 0 6px 0 8px;
  line-height: 1em;
}

.bread-crumb>div {
  margin-left: 10px;
}

.bread-crumb .main {
  margin: 0 3px 0 10px;
}

.bread-crumb .sub {
  margin-left: 3px;
}

/* pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin: 50px 0 0;
}

.pagination .page-numbers {
  margin-right: 15px;
  color: #444;
}

.pagination .current {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: #D42F46;
  border-radius: 3px;
  color: #fff;
  text-align: center;
}

.single-pagination {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}

/* ==========
    detail.html
   ========== */
/* detail.html アイテム詳細 */
.product-detail {
  border-bottom: 1px #e7e7e7 solid;
}

.inner.product-detail__inner {
  padding: 60px 4%;
  max-width: 1040px;
}

.product-detail__container {
  display: flex;
  justify-content: space-between;
  padding-bottom: 60px;
}

.product-detail__left {
  width: 38%;
}

.product-detail__slider-for {
  margin-bottom: 20px;
  position: relative;
}

.product-detail__slider-for .slick-arrow {
 position: absolute;
 z-index: 1;
 top: 50%;
 transform: scale(1.3);
}

.product-detail__slider-for .slick-prev {
  left: 8px;
}

.product-detail__slider-for .slick-next {
  right: 8px;
}

.other-img__item {
  cursor: pointer;
}

.product-detail__slider-nav .slick-slide {
  margin-right: 0.5em;
}

.product-detail__slider-nav .slick-current {
  border: #D42F46 2px solid;
}

.product-detail__right {
  width: 55%;
}

.product-detail__number {
  font-weight: 300;
}

.product-detail__name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 30px;
}

.product-detail__price {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 10px;
}

.product-detail__price span {
  font-size: 0.875rem;
  font-weight: 400;
}

.product-detail__quantity {
  margin-top: 40px;
  display: flex;
  align-items: center;
}

.quantity-title {
  margin-right: 2rem;
}

.quantity-content {
  font-size: 1rem;
  margin: 0 1.5rem;
}

.quantity-btn {
  cursor: pointer;
  width: 24px;
}

.add-cart-btn {
  margin-top: 20px;
}

.add-cart-btn a {
  display: block;
  background: #D42F46;
  padding: 16px 0;
  width: 100%;
  text-align: center;
  color: #fff;
  border-radius: 6px;
}

.add-cart-btn img {
  vertical-align: top;
  margin-right: 0.5rem;
}

.free-shipping-message {
  margin-top: 20px;
}

.free-shipping-message .bld {
  font-size: 1rem;
  font-weight: 600;
}

.product-detail__delivery-info {
  background: #f7f7f7;
  padding: 20px;
  margin-top: 70px;
  border-radius: 6px;
}

.delivery-info__item {
  display: flex;
  gap: 20px;
}

.delivery-info__item+.delivery-info__item {
  margin-top: 20px;
}

.delivery-info__item h3 {
  font-size: 0.875rem;
  font-weight: 600;
}

.product-detail__explain {
  max-width: 800px;
  margin: 0 auto;
}

.product-detail__explain .explain-title {
  font-size: 1rem;
  font-weight: 600;
}

.product-detail__explain .explain-content {
  letter-spacing: 0.1em;
  margin-top: 30px;
}

.after-add-cart {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  
  z-index: 1000;
}

.after-add-cart__mask {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
}

.after-add-cart__inner {
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  width: 60%;
  margin: 0 auto;
  background: #fff;
  padding: 40px 40px 60px;
  color: #444;
  z-index: 1001;
}

.after-add-cart__btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  margin-top: 60px;
}

.after-add-cart__btns a {
  display: block;
  border-radius: 6px;
  padding: 8px 0;
  width: 47%;
  text-align: center;
}

.continue-shopping-btn {
  border: 1px solid #444;
}

.to-purchase-btn {
  color: #fff;
  background: #D42F46;
}


.after-add-cart__close-btn {
  width: 30px;
  height: 24px;
  position: absolute;
  top: -40px;
  right: 0;
  cursor: pointer;
}

.after-add-cart__close-btn span {
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  position: absolute;
  transition: 0.3s;
}

.after-add-cart__close-btn span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}

.after-add-cart__close-btn span:nth-child(2) {
  top: 50%;
  transform: rotate(-45deg);
}

/* =======================
    cart.html success.html
   ======================= */
.inner.purchase__inner {
  max-width: 1040px;
  text-align: center;
  border-bottom: #e7e7e7 solid 1px;
  padding: 60px 4% 150px;
}

.purchase-upper {
  padding: 0 0 40px;
}

.purchase-title {
  font-weight: 600;
}

.purchase__steps {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.step {
  background: #e7e7e7;
  width: 30%;
  height: 50px;
  position: relative;
  z-index: 0;
}

.step>div {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

.current-step {
  background: #444;
  color: #fff;
  position: relative;
}

.step:not(.current-step)::after {
  content: "";
  display: block;
  border-width: 25px 0 25px 20px;
  border-color: transparent transparent transparent #e7e7e7;
  border-style: solid;
  width: 0;
  height: 0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  transform: translateX(100%);
}

.current-step::after {
  content: "";
  display: block;
  border-width: 25px 0 25px 20px;
  border-color: transparent transparent transparent #444;
  border-style: solid;
  width: 0;
  height: 0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  transform: translateX(100%);
}

.step.first-step {
  z-index: 20;
}

.step.last-step {
  z-index: 10;
}

.step.last-step::after {
  border: none;
}

.purchase__steps .step p {
  font-size: 0.6875rem;
  line-height: 1.4em;
  letter-spacing: 0.1em;
}

.purchase__steps .step p:nth-child(2) {
  font-weight: 600;
}

.purchase .free-shipping-message {
  background: #f7f7f7;
  padding: 8px 0;
  width: 100%;
  max-width: 800px;
  margin: 40px auto 0;
}

.in-cart__item {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-top: #e7e7e7 solid 1px;
}

.in-cart__item-left {
  display: flex;
}

.in-cart__item-img {
  width: 112px;
  height: auto;
}

.in-cart__item-read {
  margin-left: 30px;
  text-align: left;
}

.in-cart__item-read p:first-child {
  font-size: 1rem;
  font-weight: 600;
}

.in-cart__item-read p:nth-child(3) {
    font-size: 1rem;
  }

.in-cart__item-read p+p {
  margin-top: 10px;
}

.in-cart__item-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.delete-btn {
  border: #444 solid 1px;
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 0.8125rem;
  cursor: pointer;
}

.small-sum span:first-child {
  font-size: 0.875rem;
  font-weight: 600;
  margin-right: 0.5em;
}

.small-sum span:last-child {
  font-size: 1.125rem;
  font-weight: 600;
}

.estimate {
  display: flex;
  border: #e7e7e7 1px solid;
}

.estimate__left {
  background: #f7f7f7;
  width: 20%;
  position: relative;
}

.estimate__left p {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.estimate__right {
  width: 80%;
  text-align: left;
  padding: 16px 24px;
}

.estimate__right dl {
  width: 40%;
}

.estimate__right dl>div {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.buy-btn {
  margin-top: 50px;
}

.buy-btn a {
  display: block;
  margin: 0 auto;
  width: 50%;
  background: #D42F46;
  padding: 16px 0;
  border-radius: 6px;
  color: #fff;
  position: relative;
}

.buy-btn a img {
  vertical-align: top;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.thanks-text {
  font-size: 1.5rem;
}

.thanks-img {
  padding: 50px 0 80px;
}

.back-to-top-btn a {
  display: block;
  padding: 8px 0;
  width: 27%;
  margin: 0 auto;
  border: #444 solid 1px;
  border-radius: 6px;
}

/* =======================
    feature.html
   ======================= */
.feature-visual {
  text-align: center;
}

.feature-visual img {
  width: 60%;
}

/* ==============================
    user-guide.html shopping.html
   ============================== */
.page-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-top: 60px;
  letter-spacing: 0.1em;
}

.users-guide__container {
  display: flex;
  justify-content: space-between;
  padding: 60px 2% 0;
}

.sidebar {
  width: 20%;
}

.sidebar dl {
  border-bottom: #f7f7f7 1px solid;
}

.sidebar dl dt,
.sidebar dl dd li a {
  display: block;
  padding: 16px;
}

.sidebar dl dt {
  background: #f7f7f7;
  border-top: #f7f7f7 1px solid;
}

.sidebar dl dd li {
  border-top: #f7f7f7 1px solid;
}

.sidebar dl dd li a:before {
  content: "・";
}

.users-guide__container .main {
  width: 76%;
}

.main section {
  padding-bottom: 60px;
}

.users-guide__section-title {
  font-size: 1rem;
  font-weight: 600;
  border-bottom: #e7e7e7 solid 1px;
  padding-bottom: 10px;
}

.users-guide__section-title::before {
  content: "";
  display: inline-block;
  background: #444;
  width: 2px;
  height: 24px;
  vertical-align: top;
  margin: 0 1em;
}

.about-use p {
  margin-top: 24px;
}

/* 特定商取引法に基づく表示 */
.before-dots {
  position: relative;
  padding-left: 1em;
}

.before-dots:before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.tokutei__list {
  margin-top: 24px;
}

.tokutei__item {
  display: flex;
  justify-items: flex-start;
}

.tokutei__item-title {
  font-weight: 600;
  width: 20%;
  background: #f7f7f7;
  padding: 16px 0;
  text-align: center;
  border: #e7e7e7 solid 1px;
  border-top: none;
}

.tokutei__item-content {
  width: 80%;
  border: #e7e7e7 solid 1px;
  padding: 16px;
  border-top: none;
  border-left: none;
}

.tokutei__list .tokutei__item:first-child .tokutei__item-title,
.tokutei__list .tokutei__item:first-child .tokutei__item-content {
  border-top: #e7e7e7 solid 1px;
}

/* 配送について */
.about-delivery__list {
  padding: 24px 0 0;
}

.about-delivery__item-title {
  margin-bottom: 20px;
}

.about-delivery__item-content {
  margin-bottom: 40px;
}

.about-delivery__list .about-delivery__item:last-child .about-delivery__item-content {
  margin-bottom: 0;
}

.indent-one {
  padding-left: 1em;
}

.before-rice {
  position: relative;
  padding-left: 1em;
}

.before-rice::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.delivery-time-table {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  text-align: center;
  div {
    border: 1px #e7e7e7 solid;
    border-left: none;
    width: calc(100% / 5);
  }
  div:first-child {
    border-left: 1px #e7e7e7 solid;
  }
  div dt,
  div dd {
    padding: 8px 0;
  }
  div dt {
    background: #f7f7f7;
    border-bottom: 1px #e7e7e7 solid;
  }
}

/* tablet */
@media screen and (max-width: 1024px) {

  /* tab 共通 */
  .pc-only--tab {
    display: none;
  }

  .sp-only--tab {
    display: block;
  }

  /* tab header */
  .inner.header-lower__inner {
    padding: 0 4%;
  }

  .search-box {
    margin: 0 4% 10px;
  }

  .search-box input {
    width: 100%;
  }

  /* tab category 一覧*/
  .categories__item {
    width: 90px;
    font-size: 12px;
  }

  /* tab footer__category-all */
  .main-cat {
    padding: 0 0.9vw 16px;
    /* width: calc(100vw / 6); */
  }

  .sub-cat {
    padding: 16px 0.9vw;
    /* width: calc(100vw / 6); */
  }
}

/* sp */
@media screen and (max-width: 768px) {

  /* 共通 */
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  /* header */
  .header-upper {
    font-size: 0.625rem;
  }

  .header-logo img {
    height: 42px;
  }

  .header-banner {
    padding: 10px 0 20px;
    line-height: 0;
  }

  .header-banner img {
    width: 100%;
    height: auto;
  }

  /* sp category 一覧*/
  .categories__item {
    width: 70px;
    font-size: 11px;
  }

  /* sp アイテム一覧 */
  .inner.products__inner {
    padding: 20px 4% 40px;
  }

  .section-title {
    font-size: 1rem;
  }

  .section-title-sub {
    font-size: 12px;
  }

  .products__list {
    margin: 20px 0 40px;
    row-gap: 1rem;
    overflow-x: auto;
  }

  .products__item-name {
    font-size: 0.875rem;
  }

  .panel {
    font-size: 0.625rem;
  }

  .more-btn a {
    padding: 8px 24px;
    font-size: 13px;
  }

  .products__price {
    font-size: 0.875rem;
  }

  .products__price span {
    font-size: 0.625rem;
  }

  /* sp footer */
  /* sp footer__category-all */
  .inner.category-all__inner {
    flex-direction: column;
    padding: 0;
  }

  .category-all__title {
    text-align: center;
    font-size: 14px;
    padding: 16px;
  }

  .category-all__inner dl {
    width: 100%;
  }

  .main-cat {
    width: 100%;
    padding-bottom: 0;
    padding-left: 0;
    border-bottom: none;
    padding: 16px;
    border-top: 1px solid #e7e7e7;
    position: relative;
  }

  .main-cat span {
    font-weight: 400;
  }

  .main-cat::after {
    content: url("../images/more.webp");
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 0;
  }

  .sub-cat {
    padding: 0;
    padding-left: 0;
    display: none;
    width: 100%;
  }

  .sub-cat__item+.sub-cat__item {
    margin-top: 0;
  }

  .sub-cat ul li a {
    display: block;
    padding: 16px;
    border-top: 1px solid #e7e7e7;
    position: relative;
    background: #f7f7f7;
  }

  .sub-cat li a:after {
    content: url("../images/arrow-right.webp");
    position: absolute;
    right: 21px;
    top: 50%;
    transform: translateY(-50%) scale(0.7);
    line-height: 0;
  }

  /*sp footer-sns */
  .footer-sns {
    padding: 30px 0;
    text-align: center;
  }

  .footer-sns__title {
    font-size: 1rem;
  }

  .footer-sns__list {
    width: 208px;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }

  /* sp footer-info */
  .footer-info {
    background: none;
    padding: 0;
  }

  .inner.footer-info__inner {
    flex-direction: column;
    padding: 0;
    border-bottom: #e7e7e7 1px solid;
  }

  .footer-info dl {
    padding: 0;
    width: 100%;
  }

  .footer-info dd li {
    margin: 0;
  }

  .footer-info dl dt,
  .footer-info dl dd li a {
    display: block;
    padding: 16px;
    position: relative;
  }

  .footer-info dl dt {
    border-top: #e7e7e7 1px solid;
  }

  .footer-info dl dt::after {
    content: url("../images/more.webp");
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 0;
  }

  .footer-info dd li a::before {
    content: none;
    background: #f7f7f7;
  }

  .footer-info dl dd li a {
    background: #f7f7f7;
  }

  .footer-info dl dd li {
    border-top: #e7e7e7 1px solid;
  }

  .footer-info dl dd li a:after {
    content: url("../images/arrow-right.webp");
    position: absolute;
    right: 21px;
    top: 50%;
    transform: translateY(-50%) scale(0.7);
    line-height: 0;
  }

  /* footer-logo */
  .footer-logo {
    text-align: center;
    margin: 8px 0;
  }

  /*sp footer-lower */
  .footer-lower {
    padding: 10px;
  }

  .footer-lower small {
    font-size: 0.625rem;
  }

  /* ==========
    cat.html sp
   ========== */
  /* cat.html sp category一覧 */
  .products--show-all .products__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .products--show-all .inner.products__inner {
    padding: 20px 4%;
  }

  .bread-crumb {
    font-size: 0.75rem;
    vertical-align: text-bottom;
  }

  .bread-crumb .number {
    font-size: 1.2rem;
    /* vertical-align: text-bottom; */
  }

  /* ==========
    detail.html
   ========== */
  /* detail.html アイテム詳細 */
  .inner.product-detail__inner {
    padding: 20px 4%;
  }

  .product-detail__container {
    flex-direction: column;
    border-bottom: 1px #e7e7e7 solid;
    padding-bottom: 40px;
  }

  .product-detail__left {
    width: 100%;
  }

  .product-detail__slider-for img {
    width: 100%;
  }

  .product-detail__right {
    width: 100%;
    margin-top: 20px;
  }

  .product-detail__number {
    font-size: 0.75rem;
  }

  .product-detail__name {
    font-size: 1.125rem;
    margin-top: 0.5rem;
  }

  .product-detail__price {
    font-size: 1.5rem;
    margin-top: 0;
  }

  .product-detail__quantity {
    margin-top: 20px;
  }

  .product-detail__delivery-info {
    margin-top: 30px;
  }

  .product-detail__explain {
    padding: 20px 0 40px;
  }

  .after-add-cart__inner {
    width: 80%;
  }

  .after-add-cart__btns {
    width: 100%;
    flex-direction: column;
    row-gap: 30px;
  }

  .after-add-cart__btns a {
    width: 100%;
    font-size: 13px;
  }

  /* =======================
    cart.html success.html
   ======================= */
  .inner.purchase__inner {
    padding: 20px 4% 60px;
  }

  .step {
    width: 50%;
  }

  .in-cart__item {
    flex-direction: column;
  }

  .in-cart__item-right {
    flex-direction: column;
    position: relative;
  }

  .product-detail__quantity {
    margin-top: 10px;
  }

  .delete-btn {
    position: absolute;
    right: 0;
    top: -30px;
  }

  .in-cart__item-read {
    margin-left: 16px;
  }

  .in-cart__item .product-detail__quantity .quantity-title {
    margin-right: 1em;
  }

  .in-cart__item .product-detail__quantity .quantity-content  {
    margin: 0 1em;
  }

  .small-sum {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    align-items: flex-end;
  }

  .small-sum span {
    display: block;
  }

  .estimate {
    flex-direction: column;
  }

  .estimate__left {
    width: 100%;
    height: 50px;
  }

  .estimate__right {
    width: 100%;
  }

  .estimate__right dl {
    width: 100%;
  }

  .buy-btn {
    margin-top: 30px;
  }

  .buy-btn a {
    width: 100%;
  }

  .thanks-text {
    font-size: 1rem;
  }

  .back-to-top-btn a {
    width: 80%;
  }

  /* =======================
    sp feature.html
   ======================= */
  .feature-visual {
    padding: 4%;
  }

  .feature-visual img.sp-only {
    display: inline;
    width: 100%;
  }

  /* =====================================
    sp user-guide.html shopping-guide.html
   ======================================= */
  .page-title {
    margin-top: 30px;
    font-size: 1.125rem;
  }

  .users-guide__container {
    flex-direction: column-reverse;
    justify-content: space-between;
    padding: 30px 4% 60px;
  }

  .sidebar {
    width: 100%;
  }

  .users-guide__container .main {
    width: 100%;
  }

  .users-guide__section-title {
  font-size: 0.875rem;
}

  .tokutei__item {
    flex-direction: column;
  }

  .tokutei__item-title {
    width: 100%;
    border: #e7e7e7 solid 1px;
    border-top: none;
  }

  .tokutei__item-content {
    width: 100%;
    border: #e7e7e7 solid 1px;
    border-top: none;
  }

  .tokutei__list .tokutei__item:first-child .tokutei__item-content {
    border-top: none;
  }

}