@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;
}

body {
  background-color: #B7C0C1;
}

.page-header {
  background-image: url(../images/header-bg-sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media (min-width: 600px) {
  .page-header {
    background-image: url(../images/header-bg.jpg);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.page-header h2 {
  width: 50%;
  position: absolute;
  bottom: 15%;
  left: 5%;
}
@media (min-width: 600px) {
  .page-header h2 {
    position: relative;
    bottom: initial;
    left: initial;
    width: min(22%, 34.2rem);
  }
}

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;
  }
}

.contents-category {
  border-top: 1.5px solid currentColor;
  margin-bottom: 4rem;
  font-family: "helvetica-neue-lt-pro-cond", "Yu Gothic Pr6N B", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media (min-width: 600px) {
  .contents-category {
    width: 26rem;
    position: sticky;
    top: 6.5rem;
    z-index: 100;
    margin-bottom: 8rem;
  }
}
.contents-category li {
  position: relative;
}
.contents-category .parent-label {
  font-size: 2.2rem;
  padding-left: 1em;
}
.contents-category .category-label {
  padding-left: 2em;
  font-size: 2rem;
}
@media (min-width: 600px) {
  .contents-category .category-label {
    padding-left: 1em;
  }
}
.contents-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%;
}
.contents-category .category-item::after {
  content: "";
  height: 5.28rem;
}
.contents-category .category-item.is-active {
  background-color: #7FB9B6;
}
@media (min-width: 600px) {
  .contents-category .category-item {
    width: 26rem;
    border-right: 1.5px solid currentColor;
    border-left: 1.5px solid currentColor;
  }
}
.contents-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;
}
.contents-category .category-toggle.is-active::after {
  background-image: url(../../../images/common/ico-close.svg);
  background-size: 2.8rem;
}
@media (min-width: 600px) {
  .contents-category .category-sub,
  .contents-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 {
    width: 34rem;
  }
  .category-item-brands .category-sub .category-item {
    width: 34rem;
  }
}
@media (min-width: 600px) {
  .category-item-categories .category-toggle {
    display: none;
  }
  .category-item-categories .category-sub {
    display: block !important;
    position: relative;
    left: 0;
  }
  .category-item-categories .category-sub .category-label {
    font-family: "helvetica-neue-lt-pro-cond", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 2.2rem;
  }
}

.category-actions {
  display: grid;
  justify-content: end;
}

.category-reset {
  font-family: "helvetica-neue-lt-pro-cond", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.2rem;
  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 {
    justify-self: end;
  }
}
.category-reset br {
  display: block;
}

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

.contents-toolbar {
  margin-bottom: 1em;
}

.active-filters {
  font-size: 1.4rem;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.contents-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem 1.6rem;
}
@media (min-width: 600px) {
  .contents-list {
    gap: 6.4rem 1.6rem;
  }
}
@media (min-width: 992px) {
  .contents-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.contents-list .no-contents {
  grid-column: 1/3;
}
.contents-list a {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.contents-list .thumbnail {
  border: 1.5px solid #000;
  position: relative;
  margin-bottom: 0.4rem;
}
.contents-list .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contents-list .category-icon {
  height: 2em;
  margin-right: auto;
}
.contents-list .title {
  font-size: 1.4rem;
  font-family: "Yu Gothic Pr6N B", sans-serif;
  margin-bottom: 1.2rem;
}
.contents-list .title small {
  font-size: 1.2rem;
}
.contents-list time {
  font-family: "bebas-neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2rem;
  margin-top: auto;
}
@media (min-width: 600px) {
  .contents-list time {
    font-size: 1.8rem;
    margin-left: auto;
  }
}/*# sourceMappingURL=index.css.map */