@font-face {
  font-display: swap;
  font-family: "Noto Sans JP Subset";
  font-style: normal;
  font-weight: 400;
  src: local("Noto Sans CJK JP"),
       local("NotoSansCJKjp-Regular"),
       local("NotoSansJP-Regular"),
       url("https://sheth.jp/fonts/notosansregular.php") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP Subset";
  font-style: normal;
  font-weight: 700;
  src: local("NotoSansCJKjp-Bold"),
       local("NotoSansJP-Bold"),
       url("https://sheth.jp/fonts/notosansbold.php") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Lato Sub";
  font-style: normal;
  font-weight: 400;
  src: url("https://sheth.jp/fonts/latoregular.php") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Lato Sub";
  font-style: normal;
  font-weight: 700;
  src: url("https://sheth.jp/fonts/latobold.php") format("woff2");
}
:root {
  --preset-font-size: 16px;
  --content-width: 148rem;
  --break-xs: 360px;
  --break-s: 560px;
  --break-m: 960px;
  --break-l: 1200px;
  --unit: 1rem;
  --c-main: #e31d00;
  --c-white: #fff;
  --c-white0: rgba(255,255,255,0);
  --c-white100: rgba(255,255,255,1);
  --c-black: #000;
  --c-black0: rgba(0,0,0,0);
  --c-black50: rgba(0,0,0,0.5);
  --c-text: #534741;
  --c-primary: #998675;
  --c-secondry: #c7b299;
  --c-tertiary: #ebded0;
  --c-accent: #e31d00;
  --c-gray: #cfcbbe;
  --bezier: cubic-bezier(0,.65,.35,1);
  --bezier2: cubic-bezier(.3,0,.2,1);
  --space-1-4: clamp(1rem, 7.5vw - 3.2rem, 4rem);
  --space-2-4: clamp(2rem, 5vw - 0.8rem, 4rem);
  --liquid: 50%;
}

@media (min-width: 560px) { :root { --liquid: 33%; } }
@media (min-width: 960px) { :root { --liquid: 25%; } }
@media (min-width: 1140px) { :root { --liquid: 20%; } }


*:where(:not(iframe, canvas, img, svg, video):not(svg *)) { all: unset; display: revert; }
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { font-size: 62.5%; height: -webkit-fill-available; }
body { font-size: 1.6rem; min-height: 100vh; min-height: -webkit-fill-available; }
ol, ul { list-style: none; }
img, svg, video, canvas, audio, iframe, embed, object { display: block; vertical-align: middle; }
img { max-width: 100%; object-fit: cover; }
table { border-collapse: collapse; }
input, button, textarea, select { font: inherit; }
h1, h2, h3, h4, h5, h6, p { overflow-wrap: break-word; }

body {
  color: var(--c-text, #534741);
  background: var(--c-white, #fff);
  font-size: 1.6rem;
  font-family: "lato Sub", "Helvetica Neue", Helvetica, "Noto Sans JP Subset", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, "Yu Gothic", Meiryo, sans-serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body:not(.touch) a:hover { cursor: pointer; }
.defs { display: none; }

/*==========
Text
==========*/
.sans { font-family: "Montserratl", "Helvetica Neue", Helvetica, "Noto Sans JP Subset", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, "Yu Gothic", Meiryo, sans-serif; }
.serif { font-family: Georgia, "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif; }
.mono	{ font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

.palt { font-feature-settings: "palt"; }
.initial { font-feature-settings: initial; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.subpixel { -webkit-font-smoothing: auto; -moz-osx-font-smoothing: auto; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

.text-center { text-align: center; }
.text-justify { text-align: justify; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.section p {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.02em;
  text-align: left;
  overflow-wrap: break-word;
}

/*==========
Layout
==========*/
.container { position: relative; width: min(100%, var(--content-width)); margin: 0 auto; }

.loader {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: height 0s 2s;
  z-index: 10000;
}

.loader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--c-white100);
  transition: background-color 0.5s 0.5s var(--bezier);
}

.loader::after {
  content: "";
  position: relative;
  display: block;
  width: 8rem;
  height: 8rem;
  border-radius: 100%;
  background-color: rgba(70, 23, 23, 0.2);
  animation: scaleout 1s 10 ease-in-out;
}

@keyframes scaleout {
	0% { transform: scale(0); }
	100% { transform: scale(1); opacity: 0; }
}

.loaded .loader {
  height: 0;
}

.loaded .loader::before {
  background-color: var(--c-white0);
}

.branding,
.header-info-text,
.header,
.main,
.footer {
  opacity: 0;
}

.loaded .branding,
.loaded .header-info-text,
.loaded .header,
.loaded .main,
.loaded .footer {
  opacity: 1;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 4rem;
  color: var(--c-white);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 3rem;
  background-color: var(--c-main);
  border-radius: 5rem;
}

.button\:sub {
  background-color: var(--c-secondry);
}

@media (min-width: 560px) {
  .button {
    font-size: 1.6rem;
  }
}

/*====== Header ======*/
.branding {
  position: absolute;
  top: 1rem;
  left: clamp(1rem, 1.66vw + 0.4rem, 2rem);
  background-color: var(--c-main);
  z-index: 100;
}

.branding-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: clamp(12rem, 10vw + 6.4rem, 16rem);
  aspect-ratio: 1 / 1;
}

.branding-logo {
  width: 62.5%;
  fill: var(--c-white);
  margin-bottom: 0.8rem;
}

.branding-lead {
  color: var(--c-white);
  font-size: clamp(1.1rem, 0.5vw + 0.82rem, 1.3rem);
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
}

.header-info {
  width: 100%;
  height: clamp(3rem, 2.5vw + 1.6rem, 4rem);
  background-color: var(--c-tertiary);
  z-index: 50;
}

.header-info-text {
  display: block;
  color: var(--c-primary);
  font-size: clamp(1.1rem, 0.75vw + 0.68rem, 1.4rem);
  font-weight: 700;
  line-height: clamp(3rem, 2.5vw + 1.6rem, 4rem);
}

.header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
  backface-visibility: hidden;
}

.header-inner {
  padding: 2rem clamp(1rem, 2.5vw -  0.4rem, 2rem);
}

.header-overlay {
  position: fixed;
  left: 0;
  width: 100%;
  background-size: auto auto;
  background-color: rgba(64, 64, 64, 0.8);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 4px, rgba(140, 87, 87, 0.5) 4px, rgba(140, 87, 87, 0.5) 8px );
  z-index: 900;
}


.menu-toggle {
  position: fixed;
  top: clamp(4rem, 5vw + 1.2rem, 6rem);
  right: calc(clamp(1rem, 2.5vw - 0.4rem, 2rem) + env(safe-area-inset-right));
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 6rem;
  background-color: var(--c-main);
  border-radius: 100%;
  cursor: pointer;
  z-index: 1100;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  transition: top 0.3s var(--bezier);
}

.menu-toggle-inner {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 2.2rem;
  height: 2.2rem
}

.menu-toggle-inner span,
.menu-toggle-inner::before,
.menu-toggle-inner::after {
  display: block;
  content: "";
  width: 100%;
  height: 0.2rem;
  background-color: var(--c-white);
  transition: transform 0.3s var(--bezier);
}

.is-active .menu-toggle-inner span {
  transform: scaleX(0);
}

.is-active .menu-toggle-inner::before {
  transform: translateY(1rem) rotate(45deg);
}

.is-active .menu-toggle-inner::after {
  transform: translateY(-1rem) rotate(-45deg);
}

.button-cart {
  position: fixed;
  z-index: 1100;
}

.button-cart-inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 6rem;
  border-radius: 100%;
  background-color: var(--c-main);
  transition: transform 0.3s var(--bezier);
  transform-origin: right center;
}

.icon-cart {
  fill: var(--c-white);
  width: 40%;
}

.cart-count {
  position: absolute;
  top: -0.6rem;
  right: -0.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(2rem, 1vw + 1.44rem, 2.4rem);
  height: clamp(2rem, 1vw + 1.44rem, 2.4rem);
  color: var(--c-main);
  background-color: var(--c-white);
  border: 1px solid var(--c-main);
  border-radius: 100%;
  font-size: clamp(1.2rem, 0.5vw + 0.92rem, 1.4rem);
  font-weight: 700;
  line-height: 1;
}

.nav-title {
  white-space: nowrap;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-title::after {
  display: block;
  content: attr(data-ja);
  color: var(--c-secondry);
  font-size: 1.3rem;
  line-height: 2rem;
}

.drop-unit {
  padding: 1rem 0 1rem 2rem;
}

.drop-link {
  display: flex;
  align-items: center;
  padding: 0.4rem;
  margin-bottom: 0.2rem;
}

.drop-icon {
  width: 2.4rem;
}

.drop-name {
  font-size: 1.4rem;
  padding-left: 2rem;
}

.drop-item-parent .drop-name {
  font-weight: 700;
}

.drop-name::after {
  content: attr(data-ja);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-secondry);
  padding-left: 1rem;
}

.drop-item {
  padding: 0.4rem 0;
}

.icon-search {
  width: 2.6rem;
}

.nav-item-inner {
  display: flex;
  align-items: center;
}

.icon-search {
  width: 3rem;
  height: 3rem;
}

@media (max-width: 1024px) {
  .header {
    z-index: 1002;
  }

  h1.branding {
    left: calc(1rem + env(safe-area-inset-left));
  }

  .header-info-text {
    padding-right: calc(clamp(1rem, 2.5vw - 0.4rem, 2rem) + env(safe-area-inset-right));
    text-align: right;
  }

  .header-inner {
    position: fixed;
    top: 0;
    right: -120%;
    display: flex;
    flex-direction: column;
    width: min(100%, 50rem);
    height: 100%;
    padding-top: 14rem;
    padding-right: calc(clamp(1rem, 2.5vw - 0.4rem, 2rem) + env(safe-area-inset-right));
    transition: right 0.3s var(--bezier2);
    background-color: var(--c-white100);
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    z-index: 1000;
  }

  .header.is-active {
    z-index: 1010;
  }

  .is-active .header-inner {
    right: 0;
  }

  .header-overlay {
    top: 0;
    height: 0;
  }

  .is-active .header-overlay {
    height: 100%;
  }

  .header .branding-bg {
    width: 12rem;
    aspect-ratio: 1 / 1;
  }

  .header .branding-lead {
    font-size: 1.1rem;
  }

  .members {
    order: 0;
  }

  .button-search {
    order: 1;
    margin-bottom: 2rem;
  }

  .nav {
    order: 2;
    border-bottom: 1px solid var(--c-secondry);
  }

  .nav-sub {
    order: 3;
    padding: 2rem;
  }

  .header .branding {
    top: 2rem;
  }

  .members {
    letter-spacing: 0.04em;;
  }

  .members-info .button {
    padding: 0.8rem 3rem;
    font-size: 1.4rem;
  }

  .incart {
    width: 100%;
    border-top: 1px solid var(--c-tertiary);
  }

  .incart-list {
    padding: 0 2rem;
  }

  .tocart {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    margin: 0 auto;
  }

  .incart-item {
    border-bottom: 1px solid var(--c-tertiary);
  }

  .cart-item-title {
    display: block;
    padding: 1rem;
    font-size: 1.4rem;
  }

  .cart-item-brand {
    display: block;
    color: var(--c-primary);
    font-size: 1.2rem;
  }

  .cart-item-price {
    display: block;
    font-size: 1.4rem;
    text-align: right;
  }

  .incart-amount {
    padding: 1rem;
    font-size: 1.4rem;
    text-align: right;
    background-color: rgba(242,242,242,1);
  }

  .amount {
    font-size: 1.8rem;
    font-weight: 700;
  }

  .incart-shipping {
    padding: 0.5rem 1rem 1rem;
    font-size: 1.3rem;
    text-align: right;
  }

  .shipping {
    font-size: 1.6rem;
    font-weight: 700;
  }

  .free-shipping {
    color: var(--c-main);
    font-size: 1.4rem;
    font-weight: 700;
  }

  .members-msg {
    position: absolute;
    top: 14rem;
    right: calc(clamp(1rem, 2.5vw - 0.4rem, 2rem) + env(safe-area-inset-right));
    width: calc(100% - 18rem - env(safe-area-inset-right));
    border-bottom: 1px solid var(--c-secondry);
  }

  .members-msg-inner {
    position: absolute;
    right: 0;
    bottom: 0.5rem;
    color: var(--c-primary);
    font-size: 1.3rem;
    text-align: right;
    line-height: 1.5;
  }

  .members-name {
    padding: 0 0.5rem;
    color: var(--c-black);
    font-size: 1.6rem;
    font-weight: 700;
  }

  .sm-only {
    display: none;
  }

  .members-point {
    display: block;
    text-align: right;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    font-size: 1.3rem;
    line-height: 3rem;
    background-color: #eee;
  }

  .point {
    font-size: 2rem;
    padding-left: 1rem;
  }

  .point-name {
    color: var(--c-primary);
    padding-left: 0.5rem;
  }

  .members-button {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem 2rem;
  }

  .member-button.logined {
    justify-content: flex-end;
  }

  .login,
  .signup {
    padding: 0.5rem;
  }

  .members-button .button {
    min-width: 20rem;
    margin: 0.5rem;
    text-align: center;
  }

  .button-cart {
    top: clamp(4rem, 5vw + 1.2rem, 6rem);
    right: calc(clamp(8rem, 3.33vw + 6.8rem, 10rem) + env(safe-area-inset-right));
    transition: top 0.3s var(--bezier);
  }

  .nav-signup,
  .nav-login,
  .nav-account {
    display: none;
  }

  .nav-item-inner {
    padding: 1rem 2rem;
    border-top: 1px solid var(--c-secondry);
  }

  .drop {
    position: relative;
  }

  .drop::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 1px;
    background-color: var(--c-tertiary);
  }

  .members .drop::before {
    display: none;
  }

  .drop-title {
    display: none;
  }

  .drop-unit + .drop-unit {
    border-top: 1px solid var(--c-tertiary);
  }

  .drop,
  .drop-brand .drop-list {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s var(--bezier2);
  }

  .button-search .drop {
    max-height: 20rem;
  }

  .drop.search-unit {
    background-color: rgba(232,228,222,1);
    padding: 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .drop-close {
    display: none;
  }

  .drop-link {
    padding: 0.6rem;
  }
    
  .drop-name {
    padding-left: 5rem;
  }
  
  .drop-item-parent .drop-name {
    padding-left: 2rem;
  }
  
  .sort-name {
    padding-left: 2rem;
    line-height: 1.5;
  }

  .nav-brand .drop-list .drop-item {
    padding: 0.2rem 3rem 0.2rem 0;
  }

  .nav-brand .drop-list .drop-link {
    padding: 0.4rem;
  }

  .is-active .button-cart,
  .above .button-cart,
  .is-active .menu-toggle,
  .above .menu-toggle {
    top: 2rem;
  }

  .is-active > .drop,
  .is-active > .drop-list {
    max-height: 999rem;
  }

  .button-search-inner,
  .button-search .drop-title,
  .search-instruction {
    display: none;
  }

  .search-form-inner {
    padding: 1.5rem 0;
  }

  .search-box {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 1.2rem;
    margin: 0 1rem;
    border-radius: 3rem;
    border: 1px solid var(--c-primary);
    background-color: var(--c-white);
  }

  .search-keyword {
    padding: 0.8rem;
    min-width: calc(100% - 6rem);
    color: var(--c-text);
    font-size: 1.6rem;
    text-align: left;
  }

  .search-keyword::placeholder {
    font-size: 1.4rem;
  }

  .search-box .icon-search {
    width: 2.2rem;
    height: 2.2rem;
  }

  .suggest-title {
    padding: 2rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--c-primary);
  }

  .suggest {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 2rem;
  }

  .suggest-item {
    margin-right: 0.5rem;
    margin-bottom: 0.3rem;
  }

  .suggest-link {
    display: block;
    padding: 0.4rem 1rem;
    color: var(--c-text);
    font-size: 1.2rem;
    font-weight: 700;
    border-bottom: 1px solid var(--c-primary);
  }

  .button-search-form {
    cursor: pointer;
  }

  .nav-sub-list {
    padding: 3rem 0;
  }

  .nav-sub-item {
    padding-bottom: 1.5rem;
  }

  .nav-sub-item.space {
    padding-top: 2rem;
  }

  .nav-sub-item > a {
    padding: 0.5rem 0;
    font-size: 1.4rem;
    font-weight: 700;
  }

  .has-toggle {
    position: relative;
    display: block;
    cursor: pointer;
  }

  .has-toggle::before,
  .has-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2rem;
    width: 1.2rem;
    height: 0.2rem;
    margin-top: -0.1rem;
    background-color: var(--c-secondry);
    transition: transform 0.3s var(--bezier2);
  }

  .has-toggle::after {
    transform: rotate(90deg);
  }

  .is-active > .has-toggle::before,
  .is-active > .has-toggle::after {
    transform: rotate(180deg);
  }

  @media (max-width: 400px) {
    .drop-brand .drop-unit:not(:first-child) .drop-name::after {
      display: block;
      padding-top: 0.2rem;
      padding-left: 0;
    }

    .sm-only {
      display: block;
    }

    .incart-title::after {
      display: block;
      padding-left: 0;
      padding-top: 0.5rem;
    }
  }
}

@media (min-width: 1025px) {
  .header-info-text {
    text-align: center;
  }

  .header {
    transition: transform 0s, background-color 0s, visiblity 0s 0s;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: min(100%, var(--content-width));
    padding-right: 9rem;
    margin: 0 auto;
  }

  h1.branding {
    position: absolute;
    top: -100%;
    visibility: hidden;
  }

  .branding {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1090;
  }

  .nav {
    display: flex;
    align-items: center;
    width: calc(100% - 18rem);
    margin-left: clamp(0.5rem, 7.5vw - 7.45rem, 2rem);
  }

  .nav-item + .nav-item {
    margin-left: 1rem;
  }

  .nav-color {
    margin-right: auto;
  }

  .nav-item-inner {
    position: relative;
    padding: 3rem 1rem;
    justify-content: center;
  }

  body:not(.touch) .nav-item > .nav-item-inner::after,
  body:not(.touch) .button-search > .button-search-inner::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transition: transform 0.3s var(--bezier);
    transform: scale(0, 1);
    transform-origin: right top;
    background-color: var(--c-main);
  }

  body:not(.touch) .nav-item:hover > .nav-item-inner::after,
  body:not(.touch) .button-search:hover > .button-search-inner::after {
    transform-origin: left top;
    transform: scale(1, 1);
  }

  .nav-title {
    line-height: 4rem;
  }

  @media (max-width: 1140px) {
    .nav-title {
      letter-spacing: 0em;
    }

    .nav-item + .nav-item {
      margin-left: 0.8rem;
    }

    .nav-title::after {
      font-size: 1.2rem;
    }
  }

  .drop {
    position: absolute;
    top: 16rem;
    left: 0;
    width: 100%;
    height: 0;
    max-height: calc(100vh - 15rem);
    padding: 5rem 2rem;
    background-color: rgba(252,252,248,1);
    transition: opacity 0.2s var(--bezier), height 0.3s var(--bezier2);
    visibility: hidden;
    opacity: 0;
    z-index: 980;
    overscroll-behavior-y: contain;
    overflow-y: auto;
    box-shadow: 0px 8px 16px 0px rgba(36, 38, 41, 0.3);
  }

  .drop.search-unit {
    padding: 2.5rem 2rem;
    background-color: rgb(94, 84, 84);
  }

  .drop::before {
    content: "";
    position: fixed;
    top: 16rem;
    left: 0;
    width: 100%;
    height: 1rem;
    background: linear-gradient(0deg, rgba(190, 205, 215, 0), rgba(190, 205, 215, 0.2));
    z-index: 990;
  }

  .drop-title {
    width: min(100%, calc(var(--content-width) - 4rem));
    padding: 1rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    font-size: 2.4rem;
    font-weight: 700;
    border-bottom: 2px solid var(--c-tertiary);
  }

  .drop-title::after {
    content: attr(data-ja);
    color: var(--c-secondry);
    font-size: 1.4rem;
    font-weight: 700;
    padding-left: 2rem;
  }

  .drop-close {
    position: fixed;
    top: 16rem;
    left: 50%;
    width: min(calc(100% - 4rem), calc(var(--content-width) - 4rem));
    display: block;
    transform: translateX(-50%);
    cursor: pointer;
  }

  .drop-close-inner {
    position: absolute;
    top: 2.5rem;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 5rem;
    aspect-ratio: 1 /1;
    background-color: var(--c-secondry);
    border-radius: 4rem;
  }

  .drop-close-inner::before,
  .drop-close-inner::after {
    content: "";
    display: block;
    width: 2.2rem;
    height: 0.2rem;
    background-color: var(--c-white);
    transform-origin: 50% 50%;
  }

  .drop-close-inner::before {
    transform: translateY(0.1rem) rotate(45deg);
  }

  .drop-close-inner::after {
    transform: translateY(-0.1rem) rotate(-45deg);
  }

  .drop-inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 26rem), 1fr));
    gap: 2rem;
    width: min(100%, calc(var(--content-width) - 4rem));
    margin-left: auto;
    margin-right: auto;
  }

  .search-unit .drop-inner {
    display: block;
    width: min(100%, calc(var(--content-width) - 4rem));
    padding-left: 2rem;
    padding-right: 8rem;
  }

  .account-inner {
    display: block;
    width: min(100%, calc(var(--content-width) - 4rem));
    margin: 0 auto;
    padding: 0 3rem;
  }

  .account-unit {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .account-unit.members-unit {
    justify-content: flex-end;
  }

  .account-unit .button + .button {
    margin-left: 3rem;
  }

  .account-msg {
    margin-right: auto;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 2;
    width: 50%;
  }

  .members-msg {
    color: var(--c-primary);
    font-size: 1.4rem;
    margin-right: 2rem;
    padding: 0.5rem;
    line-height: 3rem;
  }

  .members-name {
    padding: 0 0.5rem;
    color: var(--c-black);
    font-size: 1.6rem;
    font-weight: 700;
  }

  .members-point {
    margin-right: 3rem;
    font-size: 1.3rem;
    line-height: 3rem;
    border-bottom: 1px solid var(--c-secondry);
  }

  .point {
    font-size: 2.4rem;
    padding-left: 1rem;
  }

  .point-name {
    color: var(--c-primary);
    padding-left: 0.5rem;
  }



  .nav-color .drop-inner {
    display: block;
  }


  .drop-unit {
    border-left: 1px solid var(--c-tertiary);
  }

  .nav-color .drop-unit {
    border: none;
  }

  .drop-list {
    margin-left: 3rem;
  }

  .drop-item-parent .drop-link {
    margin-bottom: 1.5rem;
  }

  body:not(.touch) .drop-link:hover .drop-name,
  body:not(.touch) .color-link:hover .color-name {
    color: var(--c-main);
  }

  .span2 {
    grid-column-end: span 2;
  }

  .span2 .drop-list {
    display: flex;
    flex-wrap: wrap;
  }

  .span2 .drop-item {
    width: 50%;
  }

  .drop-brand .drop-unit {
    display: flex;
  }

  .drop-brand .drop-list {
    margin-left: 0;
  }

  .drop-brand .drop-item .drop-name::after {
    display: block;
    font-size: 1.1rem;
    padding-left: 0;
  }

  .drop-brand .sort-name {
    color: var(--c-primary);
    font-size: 1.6rem;
    font-weight: 700;
    padding: 0.6rem 1rem 0 0;
  }

  .is-drop .has-drop:hover > .drop {
    visibility: visible;
    opacity: 1;
    height: auto;
  }

  .is-drop .has-drop:hover > .drop.search-unit {
    height: 20rem;
  }

  .members,
  .nav-sub {
    display: none;
  }

  .button-search {
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0.6rem;
  }

  .button-search-inner {
    position: relative;
    padding: 4.5rem 2.4rem;
    cursor: pointer;
  }

  .search-box {
    display: flex;
    align-items: center;
    width: 50%;
    margin-left: 50%;
    padding: 0.4rem 1.2rem;
    border-radius: 3rem;
    border: 1px solid var(--c-primary);
    background-color: var(--c-white);
  }

  .search-keyword {
    padding: 0.8rem;
    min-width: calc(100% - 4rem);
    color: var(--c-text);
    font-size: 1.8rem;
    line-height: 2.4rem;
    text-align: left;
  }

  .button-search-form {
    cursor: pointer;
  }

  .search-instruction {
    padding: 2rem 0;
    width: 100%;
    font-size: 1.3rem;
  }

  .suggest-title {
    padding: 2.5rem 0 0.5rem;
    margin-bottom: 1rem;
    width: 100%;
    color: var(--c-white);
    font-weight: 700;
    text-align: right;
    border-bottom: 1px solid var(--c-white);
  }

  .suggest {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
  }

  .suggest-link {
    display: block;
    padding: 0.4rem 2rem;
    margin-left: 1rem;
    border-radius: 3rem;
    color: var(--c-primary);
    font-size: 1.3rem;
    font-weight: 700;
    background-color: var(--c-tertiary);
  }

  .button-cart {
    position: absolute;
    top: 6.5rem;
    left: 50%;
    width: min(calc(100% - 4rem), calc(var(--content-width) - 4rem));
    transform: translateX(-50%);
  }

  .button-cart-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 7rem;
    height: 7rem;
  }

  .menu-toggle {
    display: none;
  }

  .header-overlay {
    top: 16rem;
  }

  .header.fix {
    position: fixed;
    transform: translateY(-100%);
    visibility: hidden;
  }

  .header.onfix {
    position: fixed;
    transition: transform 0.3s, visibility 0s 0.3s;
    transform: translateY(-100%);
    box-shadow: 0px 8px 16px 0px rgba(190, 205, 215, 0.1);
    visibility: hidden;
  }

  .header.is-drop {
    position: fixed;
    z-index: 1010;
  }

  .header.is-drop .header-overlay {
    height: calc(100vh - 16rem);
  }

  .header.onfix .header-inner {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 8rem;
  }

  .header.onfix .branding-bg {
    width: 8rem;
    height: 8rem;
  }

  .header.onfix .branding-logo {
    margin-bottom: 0.2rem;
  }

  .header.onfix .branding-lead {
    transform: scale(calc(80 / 160));
  }

  .header.onfix .nav-item-inner {
    padding: 2rem 1.5rem;
  }

  .header.onfix .nav-title {
    line-height: 3rem;
  }

  .header.onfix .drop {
    top: 9rem;
  }

  .header.onfix .drop::before {
    top: 9rem;
  }

  .header.onfix .header-overlay {
    top: 9rem;
  }

  .header.onfix.is-drop .header-overlay {
    height: calc(100vh - 9rem);
  }

  .header.onfix .button-search-inner {
    padding: 3rem 1.5rem;
  }

  .header.onfix .button-cart {
    top: 1.5rem;
  }

  .header.onfix .button-cart-inner {
    width: 6rem;
    height: 6rem;
  }

  .header.onfix .cart-count {
    width: 2rem;
    height: 2rem;
  }

  .header.onfix .drop-close {
    top: 9rem;
  }

  .header.show {
    background-color: var(--c-white);
    transition: transform 0.5s var(--bezier), visiblity 0s 0.5s, background-color 0.3s var(--bezier);
    transform: translateY(0);
    visibility: visible;
  }
}

/*====== Main ======*/
.main {
  display: flex;
  flex-direction: column;
  margin-top: 12rem;
}

@media (max-width: 1024px) {
  .main {
    margin-top: clamp(8rem, 5vw + 5.2rem, 10rem);
  }
}

.section {
  order: 2;
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.section-inner {
  padding-left: clamp(1rem, 2.5vw -  0.4rem, 2rem);
  padding-right: clamp(1rem, 2.5vw -  0.4rem, 2rem);
}

.section-hero {
  padding-left: 0;
  padding-right: 0;
}

.banner-belt {
  width: min(100%, var(--content-width));
  margin: 2rem auto 4rem;
  order: 1;
}

.product .section {
  margin-top: 4rem;
}

.section-information .section-inner {
  display: flex;
  padding: 0 2rem 2rem;
}

.information-title {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--c-white);
  font-size: 1.4rem;
  font-weight: 700;
  background-color: var(--c-main);
  width: 20%;
  padding: 1.5rem;
}

.information-body {
  display: flex;
  align-items: center;
  width: 80%;
  font-size: 1.4rem;
  padding: 1.2rem 1.2rem;
  background-color: #fbf8f1;
}

.information-body a:hover {
  color: var(--c-main);
}

.belt-image {
  width: 100%;
}

.top .section-hero {
  order: 0;
}

.top .banner-belt {
  margin-top: 0;
}

.bread-path {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  order: 0;
  border-top: 1px solid var(--c-tertiary);
  border-bottom: 1px solid var(--c-tertiary);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.bread-list {
  position: relative;
  z-index: 1001;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 2rem;
  width: 75%;
}

.bread-item {
  font-size: 1.2rem;
}

.bread-item a {
  display: inline-block;
  line-height: 2;
}

.bread-item + .bread-item::before {
  content: ">";
  color: var(--c-secondry);
  padding: 0 1rem;
}

.section-header {
  position: relative;
  margin-top: 6rem;
}

.section-title {
  position: relative;
  color: var(--c-main);
  font-size: 2.4rem;
  letter-spacing: 0.15em;
  line-height: 4rem;
  border-bottom: 1px solid var(--c-secondry);
  margin-bottom: 6rem;
  padding-left: 1rem;
}

.section-title::after {
  content: attr(data-ja);
  position: absolute;
  bottom: -3.6rem;
  left: 0;
  color: var(--c-secondry);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding-left: 1rem;
}

.search-keyword-title {
  margin-bottom: 3rem;
  font-size: 1.4rem;
}

.search-keyword-title span {
  font-size: 2.6rem;
  font-weight: 700;
  padding: 0 0.3rem;
}

.morelink {
  display: flex;
  justify-content: flex-end;
  margin-top: -3rem;
  margin-bottom: 3rem;
}

.morelink-sub {
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

.morelink .button::after {
  content: ">";
  font-size: 2.4rem;
  font-weight: 700;
  padding-left: 1.8rem;
}

.section-header-sub-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 5rem;
  padding: 0 4rem;
}

.section-header-sub-item {
  padding: 0 3rem 1rem 1rem;
}

.subtitle {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.4rem;
}

.subtitle::before {
  content: ">";
  font-size: 1.8rem;
  font-weight: 400;
  padding-right: 1rem;
}

.subtitle::after {
  content: attr(data-ja);
  color: var(--c-secondry);
  font-size: 1.3rem;
  padding-left: 1rem;
}

@media (max-width: 559px) {
  .section-information .section-inner {
    display: block;
  }

  .information-title {
    justify-content: flex-start;
    width: 100%;
  }

  .information-body {
    width: 100%;
  }

  .bread-item {

  }

  .bread-item:last-of-type {
    display: block;
  }  
}

@media (min-width: 560px) {
  .section-title {
    font-size: 2.8rem;
  }

  .morelink {
    position: absolute;
    bottom: -2rem;
    right: 0;
    display: block;
    margin-bottom: 0;
  }
}

/*====== Hero ======*/
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-lock {
  display: none;
}
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.hero-content {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  min-height: calc(min(100vw, var(--content-width)) + 4rem);
}

.hero {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
  transform: translate3d(0px, 0, 0);
  aspect-ratio: 1 / 1;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  position: relative;
  transition-property: transform;
  aspect-ratio: 1 / 1;
}

.slide-title {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  padding-left: 2rem;
  color: var(--c-white);
  font-size: 2.4rem;
  font-weight: 700;
}

@media (min-width: 600px) {
  .hero,
  .top .swiper-slide {
    aspect-ratio: 2 / 1;
  }

  .hero-content {
    min-height: calc(min(100vw, var(--content-width)) * 0.5 + 4rem);
  }

  .slide-title {
    font-size: 3.6rem;
  }
}

.swiper-slide img {
  width: 100%;
  height: 100%;
}

.swiper-pagination {
  position: relative;
  width: min(100%, var(--content-width));
  height: 4rem;
  margin: 0 auto;
  padding: 1rem 2rem;
  padding-right: calc(clamp(1rem, 2.5vw - 0.4rem, 2rem) + env(safe-area-inset-right));
  text-align: right;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.top .swiper-pagination-bullet {
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 6px solid #fff;
  background: #ccc;
  transition: border-width 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
  opacity: 1;
  overflow: hidden;
}

.top .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.top .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 1.2rem;
}

.top .swiper-pagination-bullet-active {
  border: none;
  background-color: #999;
}

.top .swiper-pagination-bullet-active::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 2rem;
  transform-origin: right 50%;
  background-color: #eee;
  border-radius: 1rem 0 0 1rem;
  z-index: 2;
  animation: circle-left 6s linear forwards;
}

.top .swiper-pagination-bullet-active::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 1rem;
  height: 2rem;
  transform-origin: left 50%;
  background-color: #eee;
  border-radius: 0 1rem 1rem 0;
  z-index: 3;
  animation: circle-right 6s linear forwards;
}

.top .swiper-pagination-bullet > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.6rem;
  height: 1.6rem;
  background-color: #fff;
  border-radius: 0.8rem;
  transform: translate(-50%, -50%);
  z-index: 4;
  opacity: 0;
}

.top .swiper-pagination-bullet-active > span {
  opacity: 1;
}

@keyframes circle-left {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(0deg);
  }
  50.1% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}

@keyframes circle-right {
  0%  {
    transform: rotate(0deg);
    background-color: #eee;
  }
  50% {
    transform: rotate(180deg);
    background-color: #eee;
  }
  50.1% {
    transform: rotate(360deg);
    background-color: #999;
  }
  100% {
    transform: rotate(360deg);
    background-color: #999;
  }
}

.swiper-pagination-lock {
  display: none;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-sort {
  position: relative;
  margin-bottom: 3rem;
}

.product-sort-total {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.product-sort-total span {
  font-size: 2.4rem;
  padding: 0 0.5rem;
}

.product-sort-total::before,
.product-sort-total::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: var(--c-tertiary);
}

.product-sort-total::before { margin-right: 2rem; }
.product-sort-total::after { margin-left: 2rem; }

.product-sort-section {
  position: relative;
  margin-right: 1rem;
  display: flex;
  justify-content: flex-end;
}

.product-sort-select {
  position: relative;
  margin-right: 10rem;
  display: flex;
  justify-content: flex-end;
}

.product-sort-selectable {
  position: relative;
  margin-right: 1rem;
}

.product-sort-name {
  position: relative;
  display: block;
  padding: 0.5rem 5rem 0.5rem 3rem;
  color: var(--c-text);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 3rem;
  background-color: var(--c-white);
  border: 1px solid var(--c-tertiary);
  border-radius: 5rem;
}

.product-sort-name::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  border-right: 1px solid var(--c-text);
  border-bottom: 1px solid var(--c-text);
  transform: translateY(-75%) rotate(45deg);
}

.select-sort {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}

.product-sort-new {
  position: relative;
  padding: 0.5rem 3rem;
  color: var(--c-text);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 3rem;
  background-color: var(--c-white);
  border: 1px solid var(--c-tertiary);
  border-radius: 5rem;
}

.product-sort-new {
  margin-right: 1rem;
}

.product-sort-sale {
  position: relative;
  padding: 0.5rem 4rem;
  color: var(--c-text);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 3rem;
  background-color: #fdf0f2;
  border: 1px solid var(--c-tertiary);
  border-radius: 5rem;
}

@media (min-width: 560px) {
  .product-sort-select,
  .product-sort-section {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin: 0;
  }
}

.group-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 6rem;
}

.group-section-image {
  width: 20rem;
  padding: 0.5rem;
  border: 1px solid var(--c-tertiary);
}

.group-section-image > img {
  width: 100%;
}

.group-section-desc {
  width: 100%;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
  overflow-wrap: break-word;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .group-section {
    justify-content: space-around;
    flex-direction: row;
  }

  .group-section-desc {
    width: calc(100% - 30rem);
    text-align: left;
    margin-top: 0;
  }
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(var(--liquid) - 20px), 1fr));
  gap: 2rem;
  padding: 2rem 1rem;
  margin-bottom: 4rem;
}

.product-list.product-brands {
  grid-template-columns: repeat(auto-fill, minmax(calc(var(--liquid) - 30px), 1fr));
  gap: 3rem;
}

.section-ranking .product-list {
  grid-template-columns: 1fr 1fr;
}

.section-checked .product-list,
.section-favorite .product-list {
  grid-template-columns: 1fr 1fr 1fr;
}

@media (min-width: 560px) {
  .section-ranking .product-list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .section-checked .product-list,
  .section-favorite .product-list {
    grid-template-columns: repeat(4, 1fr);
  }  
}
@media (min-width: 960px) {
  .section-ranking .product-list {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .section-ranking .product-list .product-item:first-of-type {
    grid-row: span 2;
  }

  .section-checked .product-list,
  .section-favorite .product-list {
    grid-template-columns: repeat(8, 1fr);
  }
  
}
@media (min-width: 1140px) {
  .section-ranking .product-list {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}

.product-item {
  position: relative;
}

.product-images {
  position: relative;
  display: block;
  width: 100%;
}

.product-brands .product-images {
  padding: 1rem;
}

.product-figure {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: rgb(216, 212, 212);
  overflow: hidden;
}

.product-figure::after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 200%;
  background: linear-gradient(to bottom, var(--c-white), var(--c-white) 50%, hsla(0,0%,100%,0));
  z-index: 2;
}

.product-mainimg {
  width: 100%;
  height: 100%;
  transition: transform 0.3s var(--bezier);
}

body:not(.touch) .product-item:hover .product-mainimg {
  transform: scale(1.1);
}

.product-figure.show::after {
  transition: transform .8s cubic-bezier(0.5, 1, 0.89, 1);
  transform: translateY(-100%);
}

.product-figcaption {
  padding: 0.5rem 0 1rem;
}

.product-title {
  display: block;
  color: var(--c-secondry);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 2;
}

.product-title::after {
  content: attr(data-ja);
  display: block;
  color: var(--c-text);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  word-break: break-all;
}

.section-checked .product-title::after,
.section-favorite .product-title::after {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-price {
  padding-top: 0.5rem;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
}

.price-throught {
  font-size: 1.4rem;
  font-weight: 700;
}

.price-discount {
  color: var(--c-main);
  font-size: 1.6rem;
  font-weight: 700;
}

.tax {
  font-size: 1.3rem;
  font-weight: 400;
  padding-left: 0.4rem;
}

.price-discount + .tax {
  color: var(--c-main);
}

.soldout {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--c-black50);
}

.soldout > span {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--c-white);
  font-size: 1.4rem;
  font-weight: 700;
  background-color: var(--c-main);
  transform: rotate(-12deg);
}

.ranking-count {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 4rem;
  height: 4rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 4rem;
  text-align: center;
  background-color: #eee;
  border-radius: 4rem;
  z-index: 4;
}

.ranking-count-1 {
  color: var(--c-white);
  background-color: #eec43a;
}

.ranking-count-2 {
  color: var(--c-white);
  background-color: #807e7a;
}

.ranking-count-3 {
  color: var(--c-white);
  background-color: #b87035;
}

.salemark {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 3.6rem;
  height: 3.6rem;
  background-color: var(--c-main);
  border-radius: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.salemark span {
  color: var(--c-white);
  font-size: 1rem;
  font-weight: 700;
}

.membermark {
  position: absolute;
  top: 0;
  left: 1rem;
  width: 2rem;
  height: 3rem;
  background-color: var(--c-main);
  clip-path: polygon(0 0, 0 100%, 50% 75%, 100% 100%, 100% 0)
}

.section-ranking .membermark {
  left: 4rem;
}

.earlymember {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1.6rem;
}

.earlymark {
  display: block;
  width: 1.6rem;
  height: 2.4rem;
  background-color: var(--c-main);
  clip-path: polygon(0 0, 0 100%, 50% 75%, 100% 100%, 100% 0)
}

.earlymember > span {
  padding-left: 1.2rem;
  font-size: 1.4rem;
  font-weight: 700;
}
.earlymember > span > span {
  padding: 0;
  font-size: 1.2rem;
}

.item-not-found {
  padding: 4rem;
  background-color: #eee;
}

.item-not-found p {
  text-align: center;
}

.color-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
  gap: 1rem;
  padding: 1rem;
  width: 100%;
}

.color-link {
  display: flex;
  align-items: center;
}

.color-mark {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 0.5rem;
  border-radius: 4rem;
}

.color-name {
  font-size: 1.2rem;
  font-weight: 700;
}

@media(min-width: 599px) {
  .color-list {
    grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
    gap: 2rem;
    padding: 0 2rem;
  }

  .color-mark {
    width: 3rem;
    height: 3rem;
    margin-right: 1rem;
  }
  
  .color-name {
    font-size: 1.4rem;
  }
  
}

.color-mark-large {
  position: absolute;
  right: 0;
  top: -7rem;
  width: 12rem;
  height: 2rem;
  border-radius: 3rem;
}

.color-white { background-color: #fff; border: 1px solid #ccc; }
.color-grey { background-color: #999; }
.color-black { background-color: #333; }
.color-silver { background-color: #bdc1c5; }
.color-beige { background-color: #ffe1bb; }
.color-yellow { background-color: #fce121; }
.color-orange { background-color: #f7931e; }
.color-red { background-color: #f00b0a; }
.color-winered { background-color: #af0032; }
.color-brown { background-color: #754c24; }
.color-pink { background-color: #ff9cac; }
.color-purple { background-color: #8127ab; }
.color-blue { background-color: #0060e0; }
.color-navy { background-color: #071794; }
.color-green { background-color: #009222; }
.color-khaki { background-color: #A5A051; }
.color-other { background: linear-gradient(to right, #FF0080, #FF8C00, #40E0D0); }
.color-liberty { background: #fff; border: 1px solid #a100b9; color: #a100b9; padding: 2px 4px; font-size: 1.2rem; font-size: 700; }
.color-gold { background: linear-gradient(15deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%); }

.item-tag {
  padding-bottom: 1rem;
  margin-right: 0.5rem;
}

.tag {
  position: relative;
  display: inline-block;
  padding: 0 2rem 0 1.6rem;
  margin-right: 2rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 3.1rem;
}

.tag::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1.5rem;
  display: block;
  border-top: 1.5rem solid transparent;
  border-bottom: 1.5rem solid transparent;
 }

 .tag::before {
   content: "";
   position: absolute;
   top: 50%;
   right: 0;
   display: block;
   width: 0.6rem;
   height: 0.6rem;
   margin-top: -0.3rem;
   border-radius: 0.6rem;
   background-color: var(--c-white);
 }

.t-category { background-color: #eee; }
.t-category::after { border-left: 1.5rem solid #eee; }

.t-brand { color: var(--c-primary); background-color: var(--c-tertiary); }
.t-brand::after { border-left: 1.5rem solid var(--c-tertiary); }

.t-liberty { color: var(--c-white); background-color: #a100b9; }
.t-liberty::after { border-left: 1.5rem solid #a100b9; }

.t-japanmade { color: var(--c-main); border: 1px solid var(--c-main); border-right: none; }
.t-japanmade::after {
  border: none;
  border-top: 1px solid var(--c-main);
  border-right: 1px solid var(--c-main);
  width: 2.3rem;
  height: 2.3rem;
  transform: translate(-3px, 4px) rotate(45deg);
}
.t-japanmade::before {
  border: 1px solid var(--c-main);
}

.t-settoff { color: var(--c-primary); }
.t-setoff::after { border-left: 1.5rem solid #a100b9; }

.t-colors { color: var(--c-white); }

.c-white { color: var(--c-text); background-color: #fff; border: 1px solid #ccc; border-right: none; }
.c-white::after {
  border: none;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  width: 2.3rem;
  height: 2.3rem;
  transform: translate(-3px, 4px) rotate(45deg);
}
.c-white::before { border: 1px solid #ccc; }
.c-grey { background-color: #999; }
.c-grey::after { border-left: 1.5rem solid #999; }
.c-black { background-color: #333; }
.c-black::after { border-left: 1.5rem solid #333; }
.c-silver { color: var(--c-text); background-color: #bdc1c5; }
.c-sliver::after { border-left: 1.5rem solid #bdc1c5; }
.c-beige { color: var(--c-text); background-color: #ffe1bb; }
.c-beige::after { border-left: 1.5rem solid #ffe1bb; }
.c-yellow { color: var(--c-text); background-color: #fce121; }
.c-yellow::after { border-left: 1.5rem solid #fce121; }
.c-orange { background-color: #f7931e; }
.c-orange::after { border-left: 1.5rem solid #f7931e; }
.c-red { background-color: #f00b0a; }
.c-red::after { border-left: 1.5rem solid #f00b01; }
.c-winered { background-color: #af0032; }
.c-winered::after { border-left: 1.5rem solid #af0032; }
.c-brown { background-color: #754c24; }
.c-brown::after { border-left: 1.5rem solid #754c24; }
.c-pink { background-color: #ff9cac; }
.c-pink::after { border-left: 1.5rem solid #ff9cac; }
.c-purple { background-color: #8127ab; }
.c-purple::after { border-left: 1.5rem solid #8127ab; }
.c-blue { background-color: #0060e0; }
.c-blue::after { border-left: 1.5rem solid #0060e0; }
.c-navy { background-color: #071794; }
.c-navy::after { border-left: 1.5rem solid #071794; }
.c-green { background-color: #009222; }
.c-green::after { border-left: 1.5rem solid #009222; }
.c-khaki { background-color: #a5a051; }
.c-khaki::after { border-left: 1.5rem solid #a5a051; }
.c-other { background: linear-gradient(to right, #FF0080, #FF8C00, #40E0D0); }
.c-other::after { border-left: 1.5rem solid #40e0d0; }
.c-gold { background: linear-gradient(to right, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%); }
.c-gold::after { border-left: 1.5rem solid b67b03; }

.news-list {
  margin: 0 1rem;
  border-top: 1px solid var(--c-tertiary);
}

.section-news .news-list:last-of-type {
  border-bottom: 1px solid var(--c-tertiary);
  margin-bottom: 4rem;
}

.news-list-date {
  padding: 1rem 1.5rem 0.5rem;
  color: var(--c-primary);
  font-size: 1.3rem;
  font-weight: 700;
}

.news-list-desc {
  padding: 0.5rem 1.5rem 1rem;
  font-size: 1.4rem;
}

@media (min-width: 560px) {
  .news-list {
    display: flex;
    align-items: center;
    margin: 0 3rem;
  }

  .news-list-date {
    min-width: 12rem;
    padding: 1.5rem 1.5rem;
    font-size: 1.4rem;
  }

  .news-list-desc {
    padding: 1.5rem 1.5rem;
  }
}

.content-pager {
  position: relative;
  width: 100%;
  margin: 3rem 0 6rem;
}

.content-pager-total {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 2rem;
}

.content-pager-total span {
  font-size: 1.8rem;
  padding: 0 0.2rem;
}

.content-pager-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.content-pager-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.1rem;
  width: 4rem;
  height: 4rem;
  border: 1px solid var(--c-secondry);
}

@media (min-width: 560px) {
  .content-pager-item {
    margin: 0.5rem;
  }
}
.content-pager-item a,
.content-pager-item span {
  display: block;
  padding: 0 1.2rem;
  font-size: 1.8rem;
  line-height: 3.8rem;
  text-align: center;
}

.content-pager-item.arrow a,
.content-pager-item.arrow span {
  padding: 0;
}

.content-pager-item.disabled {
  border: none;
  background-color: #eee;
}

.content-pager-item.noborder {
  border: none;
}

.content-pager-item.current {
  color: var(--c-white);
  font-weight: 700;
  background-color: var(--c-secondry);
}

.angle-right {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  border-top: 1px solid var(--c-text);
  border-right: 1px solid var(--c-text);
  transform: translateX(-25%) rotate(45deg);
}

.angle-left {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  border-top: 1px solid var(--c-text);
  border-left: 1px solid var(--c-text);
  transform: translateX(25%) rotate(-45deg);
}

.post-meta {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}

.post-date {
  color: var(--c-secondry);
  font-size: 1.4rem;
  font-weight: 700;
  padding-right: 3rem;
}

.post-category {
  color: var(--c-secondry);
  font-size: 1.4rem;
  font-weight: 700;
}

.post-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.5;
}

.archive-list {
  border-top: 1px solid var(--c-gray);
  margin-bottom: 6rem;
}

.archive-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 3rem 2rem;
  border-bottom: 1px solid var(--c-gray);
}

.archive-meta {
  display: flex;
  margin-right: 3rem;
}

.archive-meta .post-date {
  width: 10rem;
}

.archive-meta .post-category {
  width: 12rem;
}

.archive-title {
  font-size: 1.6rem;
  font-weight: 700; 
  padding: 0.5rem 0;
}

/*====== Footer ======*/
.footer {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 2rem calc(clamp(1rem, 2.5vw - 0.4rem, 2rem) + env(safe-area-inset-right));
}

.shopping-info {
  border-top: 1px solid var(--c-primary);
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(3, 1fr);
}

.shopping-info-title {
  display: flex;
  align-items: center;
  padding: 2rem 3rem;
  height: 10rem;
  border-bottom: 1px solid var(--c-secondry);
}

.shopping-info-icon {
  width: 5rem;
}

.shopping-info-icon.icon-return {
  width: 4.2rem;
}

.shopping-info-icon.icon-card {
  width: 4.5rem;
}

.shopping-info-name {
  font-size: 1.6rem;
  font-weight: 700;
  padding-left: 1rem;
}

.shopping-desc {
  padding: 1.5rem;
}

.shopping-label {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--c-tertiary);
  font-size: 1.4rem;
  font-weight: 700;
}

.shopping-content p {
  padding: 0 0 3rem 1rem;
  font-size: 1.4rem;
  line-height: 1.8;
}

.shopping-image {
  height: 4rem;
  margin-bottom: 1rem;
}

@media (max-width: 1024px) {
  .shopping-info {
    display: block;
  }

  .info-unit + .info-unit > .shopping-info-title {
    border-top: 1px solid var(--c-secondry);
  }

  .shopping-content p {
    font-size: 1.3rem;
  }
}

.shop-about {
  display: flex;
  flex-wrap: wrap;
}

.shop-desc {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding: 3rem 3rem 2rem;
  color: var(--c-white);
  background-color: var(--c-main);
}

.footer-logo {
  width: 50%;
  margin-right: 50%;
  margin-bottom: 4rem;
  fill: var(--c-white);
}

.footer-desc {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 3rem;
  width: 100%;
}

.footer-shopinfo {
  width: 100%;
}

.footer-shopinfo > dt {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-shopinfo > dt::after {
  content: attr(data-ja);
  font-size: 1.3rem;
  padding-left: 2rem;
}

.footer-shopinfo > dd {
  font-size: 1.2rem;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.shop-photo {
  width: 100%;
}

.shop-photo img {
  width: 100%;
  height: 100%;
}

@media (min-width: 560px) {
  .shop-desc {
    padding: 4rem 5rem 3rem;
  }

  .footer-logo {
    width: 30%;
    margin-right: 70%;
  }

  .footer-desc {
    font-size: 1.3rem;
    width: 45%;
    margin-bottom: 0;
  }

  .footer-shopinfo {
    width: 45%;
  }

  .footer-shopinfo > dd {
    font-size: 1.3rem;
  }
}

@media (min-width: 1025px) {
  .shop-desc {
    flex-direction: column;
    justify-content: center;
    width: 40%;
  }

  .footer-logo {
    width: 40%;
    margin-right: 0;
  }

  .footer-desc {
    margin-bottom: 3rem;
    width: 100%;
  }

  .footer-shopinfo {
    width: 100%;
  }

  .shop-photo {
    width: 60%;
  }
}

.footer-nav {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 4rem 1rem;
}

.footer-nav-left {
  width: 100%;
  margin-bottom: 3rem;
}

.footer-nav-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 3rem;
}

.footer-nav-title::after {
  content: attr(data-ja);
  display: block;
  font-size: 1.4rem;
  color: var(--color-secondry);
  line-height: 2rem;
}

.footer-nav-right {
  width: 100%;
}

.footer-nav-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  gap: 2rem;
}

.footer-nav-item > a {
  font-size: 1.2rem;
  font-weight: 700;
}

body:not(.touch) .footer-nav-item > a:hover {
  color: var(--c-main);
}

.footer-nav-item > a::after {
  content: ">";
  color: var(--c-secondry);
  padding-left: 0.8rem;
}

.sns {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

.sns-item {
  margin-right: 2rem;
}

.sns-link {
  padding: 1rem;
}

.sns-icon {
  width: 3rem;
}

.gotop {
  position: absolute;
  top: 4rem;
  right: 1rem;
}

.gotoplink {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--c-secondry);
  font-size: 1.4rem;
  font-weight: 700;
}

.gotoplink::before {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  border-top: 1px solid var(--c-secondry);
  border-left: 1px solid var(--c-secondry);
  transform: rotate(45deg);
}

.copyright {
  width: 100%;
  padding: 1rem 0;
  text-align: center;
  font-size: 1.2rem;
}

@media (min-width: 960px) {
  .footer-nav {
    padding: 4rem;
  }

  .footer-nav-left {
    width: 30%;
    margin-bottom: 0;
  }

  .footer-nav-right {
    width: 70%;
  }

  .footer-nav-list {
    margin-right: 6rem;
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  }

  .footer-nav-item > a {
    font-size: 1.3rem;
  } 

  .gotop {
    right: 4rem;
  }
}

.infolist { display: block; }
.infoitem { display: block; padding: 2px 8px 1px; font-weight: 700; border-left: 2px solid var(--c-main); }
.infoitem + .infoitem { margin-top: 12px; }

.earlymember {
 display: none;
}

.product-sort-sale {
  /*display: none;*/
}
