@charset "UTF-8";
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes clipPath {
  100% {
    clip-path: inset(0);
  }
}
@keyframes clipPathCircle {
  100% {
    clip-path: circle(100% at 50% 50%);
  }
}
/*
A modern CSS reset 2023 / 9 / 18
https://github.com/Andy-set-studio/modern-css-reset
*/
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

/**  base  **/
p,
ul,
ol,
h1,
h2,
h3,
figure,
dl,
dd,
button,
pre {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

ul,
ol {
  list-style: none;
}

img,
video {
  max-width: 100%;
  vertical-align: bottom;
  line-height: 1;
}

select,
option {
  color: currentColor;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
}

a,
button {
  color: currentColor;
  text-decoration: none;
  transition: filter 0.1s ease;
}
@media (hover: hover) {
  a:hover,
  button:hover {
    filter: brightness(1.12);
  }
}

[x-cloak],
[v-cloak] {
  display: none !important;
}

*:focus {
  outline: none;
}

@media (min-width: 600px) {
  .device-sp {
    display: none;
  }
}

.device-pc {
  display: none;
}
@media (min-width: 600px) {
  .device-pc {
    display: block;
  }
}

br {
  display: none;
}
@media (min-width: 600px) {
  br {
    display: block;
  }
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}
body.scroll_lock {
  overflow: hidden;
}

/**  common  **/
html {
  scroll-padding: 6.5rem;
}

body {
  color: #000;
  font-family: "Yu Gothic Pr6N D", sans-serif;
}

header {
  height: 6.5rem;
  background-color: #B7C0C1;
  position: sticky;
  top: 0;
  z-index: 100;
}
header a,
header button {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}
header a:hover,
header button:hover {
  opacity: 0.5;
}
header .menu-toggle {
  margin-right: 0.8rem;
  margin-left: 0.8rem;
}
@media (min-width: 600px) {
  header .menu-toggle {
    order: 1;
    margin-right: 0;
    margin-left: 0;
  }
}
header div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  overflow: hidden;
}
@media (min-width: 600px) {
  header div {
    margin-right: 1.6rem;
    margin-left: 1.6rem;
  }
}
header h1 {
  margin-right: auto;
}
header .badge {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1rem;
  background-color: #7FB9B6;
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  z-index: 10;
}
header .nav_cart {
  position: relative;
}

.header-nav {
  position: relative;
  z-index: 100;
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.8rem;
}
@media (min-width: 600px) {
  .header-nav {
    width: min(100%, 37.5rem);
    margin-left: auto;
  }
}
.header-nav li {
  border-top: 1px solid currentColor;
}
.header-nav a {
  padding: 0.4em 1em;
  display: block;
}
.header-nav .global-menu {
  background-color: #B7C0C1;
}
.header-nav .global-menu a {
  background-color: #B7C0C1;
}
.header-nav .hobo-menu {
  background-color: #EDEDED;
}
.header-nav .hobo-menu a {
  background-color: #EDEDED;
}

.page-header {
  position: relative;
  aspect-ratio: 375/148;
  width: 100%;
}
@media (min-width: 600px) {
  .page-header {
    aspect-ratio: 1512/217;
    max-height: 21.7rem;
  }
}
.page-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

main a[target=_blank]::after {
  margin: 0 3px 0 1px;
  font-family: "Hobonichi-Icons";
  content: "\e914";
  font-size: 85%;
  position: relative;
  top: -3px;
}

.breadcrumbs {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  font-size: 1.2rem;
  margin: 1em;
}
@media (min-width: 992px) {
  .breadcrumbs {
    font-size: 1.4rem;
    margin-right: 0;
    margin-left: 0;
  }
}
.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumbs ul li:not(:last-of-type)::after {
  content: "/";
  margin: 0 0.5em;
}
.breadcrumbs a {
  color: #646464;
}

footer {
  background-color: #EDEDED;
  padding: 4rem 5.2rem;
}
footer a:hover {
  opacity: 0.5;
}
footer .wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  width: min(100%, 120rem);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 600px) {
  footer .wrapper {
    gap: 2.8rem;
  }
}
footer .footer-share {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 2rem;
}
footer .footer-share li:first-child {
  margin-right: 0.8rem;
}
footer .footer-hobo {
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media (min-width: 600px) {
  footer .footer-hobo {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.8rem 4rem;
  }
}
footer .footer-store {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
footer .footer-store ul {
  font-size: 1rem;
}
footer .footer-store div {
  font-size: 1.2rem;
}
footer .footer-store div span {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  gap: 0.5em;
  line-height: 1;
}
.btn-arrow::after {
  content: "";
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  background-color: currentColor;
  mask-image: url(/store/taekokusaba/images/common/ico-arrow.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
}
.btn-arrow.disabled {
  background-color: #D9D9D9;
  border-color: #D9D9D9;
  pointer-events: none;
}
.btn-arrow.disabled::before {
  content: none;
}

.btn-orange {
  background-color: #D16F4C;
  border: 1.5px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Yu Gothic Pr6N B", sans-serif;
  position: relative;
  gap: 0.5em;
  line-height: 1;
  color: currentColor;
}
.btn-orange.disabled, .btn-orange[disabled] {
  background-color: #D9D9D9;
  border-color: #D9D9D9;
  color: #646464;
  pointer-events: none;
}
.btn-orange.disabled::before, .btn-orange[disabled]::before {
  content: none;
}

.favorite-btn {
  fill: transparent;
  width: 2rem;
  aspect-ratio: 20/24;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D16F4C;
}
.favorite-btn.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}
.favorite-btn.is-favorite {
  color: #D16F4C;
}
.favorite-btn.is-favorite svg {
  fill: currentColor;
}
.favorite-btn svg {
  width: 100%;
  aspect-ratio: 20/24;
  display: block;
}

.select-wrapper {
  position: relative;
  font-size: 1.4rem;
  min-width: 16rem;
}
.select-wrapper::after {
  content: "";
  pointer-events: none;
  position: absolute;
  right: 1em;
  width: 1em;
  height: 100%;
  mask-image: url(../../images/common/select-arrow.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  background-color: currentColor;
}
.select-wrapper select {
  width: 100%;
  padding: 0.5em 2.5em 0.5em 1em;
  border: 1px solid #000;
  box-sizing: border-box;
  appearance: none;
  cursor: pointer;
}
.select-wrapper select:hover {
  filter: brightness(1.12);
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  column-gap: 1.5em;
}
.checkbox-wrapper li {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  cursor: pointer;
}
.checkbox-wrapper li:hover input[type=checkbox] {
  background-color: rgba(255, 255, 255, 0.3);
}
.checkbox-wrapper input[type=checkbox] {
  appearance: none;
  position: relative;
  width: 1em;
  height: 1em;
  border: 1px solid currentColor;
  margin-right: 0.5em;
  cursor: pointer;
}
.checkbox-wrapper input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 4px;
  width: 20px;
  height: 12px;
  background-image: url(../../images/common/ico-check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.checkbox-wrapper label {
  cursor: pointer;
}

.btn-color-compare {
  background-color: #D16F4C;
  border: 1.5px solid #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Yu Gothic Pr6N B", sans-serif;
  position: relative;
  gap: 0.5em;
  line-height: 1;
}
.btn-color-compare::after {
  content: "";
  display: inline-block;
  width: 1.6em;
  height: 1.6em;
  background-image: url(../../images/common/ico-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.btn-color-compare.disabled, .btn-color-compare[disabled] {
  background-color: #D9D9D9;
  border-color: #D9D9D9;
  pointer-events: none;
}
.btn-color-compare.disabled::before, .btn-color-compare[disabled]::before {
  content: none;
}

body {
  background-color: #B7C0C1;
}

.page-header {
  background-image: url(../images/header-bg-sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (min-width: 600px) {
  .page-header {
    background-image: url(../images/header-bg.jpg);
  }
}
.page-header h2 {
  position: absolute;
  width: 52%;
  top: 12%;
  right: 6%;
}
@media (min-width: 600px) {
  .page-header h2 {
    width: min(22%, 34.2rem);
    top: initial;
    right: inherit;
    bottom: min(22%, 10.4rem);
    left: min(2.8%, 5.6rem);
  }
}

main {
  width: min(100%, 150rem);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 600px) {
  main {
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: flex-start;
  }
}

.items-category {
  border-top: 1.5px solid currentColor;
  font-family: "helvetica-neue-lt-pro-cond", "Yu Gothic Pr6N B", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media (min-width: 600px) {
  .items-category {
    width: 26rem;
    position: sticky;
    top: 6.5rem;
    z-index: 100;
    margin-bottom: 8rem;
  }
}
.items-category li {
  position: relative;
}
.items-category .parent-label {
  font-size: 2.2rem;
  padding-left: 1em;
}
.items-category .category-label {
  padding-left: 2em;
  font-size: 2rem;
}
@media (min-width: 600px) {
  .items-category .category-label {
    padding-left: 1em;
  }
}
.items-category .category-item {
  position: relative;
  background-color: #D9D9D9;
  border-bottom: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.items-category .category-item::after {
  content: "";
  height: 5.28rem;
}
.items-category .category-item.is-active {
  background-color: #7FB9B6;
}
@media (min-width: 600px) {
  .items-category .category-item {
    width: 26rem;
    border-right: 1.5px solid currentColor;
    border-left: 1.5px solid currentColor;
  }
}
.items-category .category-toggle::after {
  width: 5.28rem;
  background-color: #D9D9D9;
  background-image: url(../../images/common/ico-plus.svg);
  background-repeat: no-repeat;
  background-size: 3.2rem;
  background-position: center;
  border-left: 1.5px solid currentColor;
}
.items-category .category-toggle.is-active::after {
  background-image: url(../../images/common/ico-close.svg);
  background-size: 2.8rem;
}
@media (min-width: 600px) {
  .items-category .category-sub,
  .items-category .category-last {
    border-top: 1.5px solid currentColor;
    position: absolute;
    left: calc(26rem - 1.5px);
    top: -1.5px;
    width: 26rem;
    z-index: 10;
  }
}

@media (min-width: 600px) {
  .category-item-brands .category-sub,
  .category-item-tags .category-sub {
    width: 34rem;
  }
  .category-item-brands .category-sub .category-item,
  .category-item-tags .category-sub .category-item {
    width: 34rem;
  }
}
.category-actions {
  min-height: min(32vw, 12rem);
  display: flex;
  align-items: start;
}
@media (min-width: 600px) {
  .category-actions {
    flex-direction: column;
  }
}

.category-reset {
  font-family: "helvetica-neue-lt-pro-cond", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.8rem;
  width: min(32vw, 12rem);
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: #B0B2B2;
  border: 1.5px solid #000;
  line-height: 1;
}
@media (min-width: 600px) {
  .category-reset {
    align-self: end;
  }
}
.category-reset br {
  display: block;
}

.btn-color-compare {
  flex: 1;
  font-size: 2rem;
  padding: 0.5em 1em;
  top: -1.5px;
}
@media (min-width: 600px) {
  .btn-color-compare {
    width: 100%;
    flex: 0;
  }
}

.items-content {
  width: min(100% - 4rem, 88rem);
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 4rem;
}
@media (min-width: 600px) {
  .items-content {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }
}

.items-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 1em;
}
.items-toolbar select {
  background-color: #D9D9D9;
}
.items-toolbar .select-wrapper {
  margin-left: auto;
  min-width: 16rem;
}

.active-filters {
  font-size: 1.4rem;
}
@media (min-width: 600px) {
  .active-filters {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }
}

.items-sort {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
@media (min-width: 992px) {
  .items-sort {
    flex-direction: row;
  }
}

.checkbox-wrapper label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.favo-filter {
  color: #646464;
  fill: #646464;
  height: 1em;
  width: 1em;
  display: inline-block;
  aspect-ratio: 20/24;
  object-fit: contain;
}
.favo-filter svg {
  width: 1.5em;
  height: 1.5em;
  transform: scale(0.65);
  position: relative;
  top: -5px;
  right: 3px;
}

.items-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem 1.6rem;
}
@media (min-width: 600px) {
  .items-list {
    gap: 6.4rem 1.6rem;
  }
}
@media (min-width: 992px) {
  .items-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.items-list li {
  display: flex;
  flex-direction: column;
}
.items-list .no-items {
  grid-column: 1/3;
}
.items-list .thumbnail {
  border: 1.5px solid #000;
  margin-bottom: 0.4rem;
  position: relative;
}
.items-list .thumbnail::before {
  position: absolute;
  content: "";
  pointer-events: none;
  display: block;
  top: 0;
  left: 0;
  width: min(50%, 12rem);
  height: min(50%, 12rem);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
}
.items-list .thumbnail.status-new::before {
  background-image: url(../images/status-new.svg);
}
.items-list .thumbnail.status-restock::before {
  background-image: url(../images/status-restock.svg);
}
.items-list .thumbnail.is-soldout::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.items-list .thumbnail.is-soldout::before {
  content: "SOLD OUT";
  font-family: "helvetica-neue-lt-pro-cond", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  font-size: 2rem;
}
@media (min-width: 600px) {
  .items-list .thumbnail.is-soldout::before {
    font-size: 3.6rem;
  }
}
.items-list .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.items-list .favorite-btn {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  z-index: 11;
}
.items-list .item-meta {
  font-size: 1.4rem;
  font-family: "Yu Gothic Pr6N B", sans-serif;
  margin-bottom: 1.2rem;
}
.items-list .item-price {
  margin-top: auto;
  font-family: "bebas-neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}/*# sourceMappingURL=index.css.map */