html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
html.noscroll {
  overflow-y: scroll;
  height: 100vh;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 2em;
  width: 100%;
  overflow-x: hidden;
}
body.noscroll {
  overflow-y: scroll;
  height: 100vh;
}

img, object, video {
  max-width: 100%;
  height: auto;
}

.playfair-display {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.bc-header {
  width: 100%;
  background: #fff;
  position: relative;
  z-index: 999;
}
.bc-header__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 80px;
  padding: 20px 40px;
}
@media screen and (max-width: 1080px) {
  .bc-header__inner {
    gap: 60px;
  }
}
@media screen and (max-width: 768px) {
  .bc-header__inner {
    padding: 20px;
    gap: 0;
  }
}

.bc-logo {
  font-size: 0;
  line-height: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .bc-logo {
    max-width: 160px;
  }
}

.bc-nav {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
}
@media screen and (max-width: 1080px) {
  .bc-nav {
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .bc-nav {
    display: none;
  }
}
.bc-nav__item > a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0;
  width: auto;
  height: 74px;
  color: #323C4D;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 12px */
}
.bc-nav__item > a:link, .bc-nav__item > a:visited, .bc-nav__item > a:hover, .bc-nav__item > a:active {
  text-decoration: none;
  color: #323C4D;
}
@media (hover: hover) {
  .bc-nav__item:hover .bc-megamenu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: inherit;
  }
  .bc-nav__item:hover .bc-megamenu-bg {
    opacity: 1;
  }
}
@media (hover: hover) {
  .bc-nav__item--parent > a:after {
    content: "";
    background: url(https://baracca.itembox.design/item/common/icon-arrow03.svg) no-repeat center center;
    width: 6px;
    height: 3px;
    display: block;
  }
}

.bc-iconnav {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  font-size: 0;
  line-height: 0;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .bc-iconnav {
    gap: 8px;
  }
}
.bc-iconnav__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.bc-iconnav__item a {
  display: block;
  border-radius: 50%;
}

.bc-icon--cart {
  display: flex !important;
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
  color: #000;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  border: 1px solid #000;
}
.bc-icon--cart:link, .bc-icon--cart:visited, .bc-icon--cart:hover, .bc-icon--cart:active {
  text-decoration: none;
  color: #000;
}
.bc-icon--menu {
  width: 32px;
  height: 32px;
  position: relative;
  display: block;
  font-size: 0;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
}
.bc-icon--menu:before {
  content: "";
  width: 18px;
  height: 1px;
  background: #000;
  display: block;
  position: absolute;
  left: calc(50% - 9px);
  top: calc(50% + 4px);
}
.bc-icon--menu:after {
  content: "";
  width: 18px;
  height: 1px;
  background: #000;
  display: block;
  position: absolute;
  left: calc(50% - 9px);
  top: calc(50% - 4px);
}

.bc-megamenu {
  position: absolute;
  width: 100vw;
  max-width: 1280px;
  background: #fff;
  left: calc(50% - 640px);
  padding: 30px 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-radius: 8px;
  border: 1px solid #E1E3E5;
  z-index: 2;
  pointer-events: none;
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
@media screen and (max-width: 1400px) {
  .bc-megamenu {
    left: 30px;
    max-width: calc(100vw - 60px);
  }
}
.bc-megamenu .bc-brand {
  padding-bottom: 40px;
  border-bottom: 1px solid #E1E3E5;
}
.bc-megamenu__btn {
  width: 100%;
  display: flex;
  justify-content: center;
}
.bc-megamenu-bg {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.bc-pr {
  background: #323C4D;
  color: #fff;
  width: 100%;
  height: 40px;
  position: relative;
  overflow: hidden;
}
.bc-pr__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.bc-pr__item {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  width: 100%;
  height: 40px;
  font-size: 12px;
  line-height: 1em;
  font-weight: 500;
  color: #fff;
}
.bc-pr__item span, .bc-pr__item a {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  width: 100%;
  height: 40px;
  font-size: 12px;
  line-height: 1em;
  font-weight: 500;
  color: #fff;
}
.bc-pr__item span:link, .bc-pr__item span:visited, .bc-pr__item span:hover, .bc-pr__item span:active, .bc-pr__item a:link, .bc-pr__item a:visited, .bc-pr__item a:hover, .bc-pr__item a:active {
  text-decoration: none;
  color: #fff;
}

.bc-mv {
  padding-bottom: 40px;
}
.bc-mv .fs-pt-carousel__slide {
  margin: 0 12px;
}
@media screen and (max-width: 768px) {
  .bc-mv .fs-pt-carousel__slide {
    margin: 0 4px;
  }
}
.bc-mv .fs-pt-carousel__slide a:link, .bc-mv .fs-pt-carousel__slide a:visited, .bc-mv .fs-pt-carousel__slide a:hover, .bc-mv .fs-pt-carousel__slide a:active {
  text-decoration: none;
  color: #323C4D;
}
.bc-mv .fs-pt-carousel__slide__caption {
  background: none;
  color: #323C4D;
  padding: 0 8px;
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  text-align: center;
  font-size: 14px;
  line-height: 1.5em;
  margin-top: 16px;
}

.bc-sec {
  padding: 60px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .bc-sec {
    padding: 40px 20px;
  }
}
.bc-sec--bg {
  background: #F2F4F7;
}
@media screen and (max-width: 768px) {
  .bc-sec--search {
    padding: 20px;
  }
}
.bc-sec--recommend .fs-c-productListCarousel {
  width: calc(100% + 40px);
  transform: translateX(-20px);
}
.bc-sec--recommend .fs-c-productListCarousel__list {
  width: 100%;
  overflow: inherit;
}
.bc-sec--recommend .fs-c-productListCarousel__list__itemTrack {
  width: 100%;
}
.bc-sec--recommend .fs-c-productListCarousel__list__item {
  max-width: 100%;
  min-width: 0px;
  margin: 0 20px;
}
.bc-sec--recommend .fs-c-slick .slick-track {
  margin-left: 0;
  margin-right: 0;
}
.bc-sec--recommend .fs-c-slick .slick-list {
  overflow: inherit;
}
.bc-sec--recommend .fs-c-productListItem__productName a:link, .bc-sec--recommend .fs-c-productListItem__productName a:visited, .bc-sec--recommend .fs-c-productListItem__productName a:hover, .bc-sec--recommend .fs-c-productListItem__productName a:active {
  text-decoration: none;
}
.bc-sec--recommend .fs-c-productListItem__productName .fs-c-productName__copy {
  font-size: 10px;
  line-height: 1.5em;
  color: #5C6066;
  font-weight: 400;
}
.bc-sec--recommend .fs-c-productListItem__productName .fs-c-productName__name {
  font-size: 14px;
  line-height: 1.5em;
  color: #323C4D;
  font-weight: 400;
}
.bc-sec__inner {
  width: 100%;
  max-width: 1280px;
}
.bc-sec__inner--info {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .bc-sec__inner--info {
    flex-direction: column;
    gap: 0;
  }
}
.bc-sec__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .bc-sec__header {
    margin-bottom: 32px;
  }
}
.bc-sec__header--info {
  width: calc(33.3% - 20px);
}
@media screen and (max-width: 768px) {
  .bc-sec__header--info {
    width: 100%;
  }
}
.bc-sec__btn {
  display: flex;
  justify-content: center;
  padding-top: 40px;
}

.bc-title {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .bc-title {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }
}
.bc-title--info {
  flex-direction: column;
  margin-bottom: auto;
}
@media screen and (max-width: 768px) {
  .bc-title--info {
    flex-direction: inherit;
  }
}
.bc-title__en {
  color: #000;
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 32px */
  margin: 0;
}
.bc-title__jp {
  color: #5C6066;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.bc-header-search {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background: #F2F4F7;
  display: block;
  padding: 16px 30px;
  display: none;
}
@media screen and (max-width: 768px) {
  .bc-header-search {
    padding: 8px;
  }
}
.bc-header-search__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .bc-header-search__inner {
    gap: 8px;
  }
}
.bc-header-search form {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  width: 100%;
  border: 1px solid #E1E3E5;
  border-radius: 6px;
  overflow: hidden;
  box-sizing: border-box;
  flex: 1;
}
.bc-header-search form input[type=text] {
  border: none;
  height: 64px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 8px;
  box-sizing: border-box;
  outline: none;
}
@media screen and (max-width: 768px) {
  .bc-header-search form input[type=text] {
    padding: 16px 8px;
    height: auto;
  }
}
.bc-header-search form input[type=text]:focus {
  outline: none;
}
.bc-header-search form button {
  margin: 0;
  border: none;
  background: none;
  -webkit-appearance: none;
  padding: 0 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bc-header-search__close {
  width: 30px;
  height: 30px;
  display: block;
  font-size: 0;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-size: cover;
  position: relative;
  cursor: pointer;
}
.bc-header-search__close:before {
  content: "";
  width: 24px;
  height: 1px;
  background: #323C4D;
  display: block;
  top: 50%;
  left: calc(50% - 12px);
  transform: rotate(-45deg);
  position: absolute;
}
.bc-header-search__close:after {
  content: "";
  width: 24px;
  height: 1px;
  background: #323C4D;
  display: block;
  top: 50%;
  left: calc(50% - 12px);
  transform: rotate(45deg);
  position: absolute;
}

.bc-search {
  display: flex;
  align-items: center;
  gap: 40px;
}
.bc-search__title {
  color: #000;
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 32px */
  margin: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .bc-search__title {
    display: none;
  }
}
.bc-search__form {
  display: flex;
  justify-content: flex-start;
  gap: 32px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .bc-search__form {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .bc-search__form {
    gap: 20px;
  }
}
.bc-search form {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  width: 100%;
  max-width: 550px;
  border: 1px solid #E1E3E5;
  border-radius: 6px;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .bc-search form {
    max-width: 100%;
  }
}
.bc-search form input[type=text] {
  border: none;
  height: 64px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 8px;
  box-sizing: border-box;
  outline: none;
}
@media screen and (max-width: 768px) {
  .bc-search form input[type=text] {
    padding: 16px 8px;
    height: auto;
  }
}
.bc-search form input[type=text]:focus {
  outline: none;
}
.bc-search form button {
  margin: 0;
  border: none;
  background: none;
  -webkit-appearance: none;
  padding: 0 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bc-search__keyword {
  flex-shrink: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0;
  line-height: 0;
}

.bc-btn--s {
  display: inline-block;
  border: 1px solid #F2F4F7;
  box-sizing: border-box;
  color: #323C4D;
  background: #fff;
  border-radius: 20px;
  font-size: 12px;
  line-height: 1em;
  padding: 6px 16px;
}
.bc-btn--s:link, .bc-btn--s:visited, .bc-btn--s:hover, .bc-btn--s:active {
  text-decoration: none;
  color: #323C4D;
}
.bc-btn--m {
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 20px;
  background: #323C4D;
  color: #fff;
  padding: 8px 16px;
  font-size: 12px;
  line-height: 1em;
  border: 1px solid #fff;
}
.bc-btn--m:link, .bc-btn--m:visited, .bc-btn--m:hover, .bc-btn--m:active {
  text-decoration: none;
  color: #fff;
}
.bc-btn--m:after {
  content: "";
  width: 3px;
  height: 6px;
  display: block;
  background: url(https://baracca.itembox.design/item/common/icon-arrow01.svg) no-repeat center center;
}

.bc-brand {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .bc-brand {
    gap: 40px 16px;
  }
}
@media screen and (max-width: 767px) {
  .bc-brand {
    gap: 40px 8px;
  }
}
.bc-brand__item {
  width: calc(20% - 32px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .bc-brand__item {
    width: calc(20% - 13px);
  }
}
@media screen and (max-width: 768px) {
  .bc-brand__item {
    width: calc(25% - 13px);
  }
}
@media screen and (max-width: 767px) {
  .bc-brand__item {
    width: calc(50% - 4px);
  }
}
@media (hover: hover) {
  .bc-brand__item:hover .bc-brand__item__image img {
    transform: scale(1.05);
  }
}
.bc-brand__item__image {
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
.bc-brand__item__image img {
  transition: transform 0.3s;
}
.bc-brand__item__title {
  color: #000;
  text-align: center;
  font-size: 14px;
  line-height: 1.3em;
  font-style: normal;
  font-weight: 400;
}
.bc-brand__item__title a:link, .bc-brand__item__title a:visited, .bc-brand__item__title a:hover, .bc-brand__item__title a:active {
  text-decoration: none;
  color: #000;
}

.bc-cat {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0 40px;
}
@media screen and (max-width: 1024px) {
  .bc-cat {
    gap: 0 24px;
  }
}
.bc-cat__item {
  width: calc(33.3% - 27px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
  gap: 16px;
  border-bottom: 1px solid #E1E3E5;
  box-sizing: border-box;
  padding: 16px 0;
}
@media screen and (max-width: 1024px) {
  .bc-cat__item {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 767px) {
  .bc-cat__item {
    width: 100%;
    gap: 8px;
  }
}
@media (hover: hover) {
  .bc-cat__item:hover .bc-cat__item__image img {
    transform: scale(1.1);
  }
}
.bc-cat__item__image {
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  width: 48px;
  height: 48px;
}
.bc-cat__item__image img {
  transition: transform 0.3s;
}
.bc-cat__item__title {
  color: #000;
  text-align: center;
  font-size: 14px;
  line-height: 1.3em;
  font-style: normal;
  font-weight: 400;
}
.bc-cat__item__title a:link, .bc-cat__item__title a:visited, .bc-cat__item__title a:hover, .bc-cat__item__title a:active {
  text-decoration: none;
  color: #000;
}

.bc-info {
  flex-shrink: 1;
  width: 100%;
}
.bc-info .fs-pt-list {
  margin: 0;
}
.bc-info .fs-pt-list__item {
  border-bottom: 1px solid #E1E3E5;
  padding: 16px 0;
  margin-top: 0;
}
.bc-info .fs-pt-list__item:first-child {
  padding-top: 0;
}

.bc-shop {
  display: flex;
  justify-content: flex-start;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .bc-shop {
    gap: 40px;
    flex-wrap: wrap;
  }
}
.bc-shop__image {
  width: 100%;
  max-width: calc(50% - 30px);
}
@media screen and (max-width: 768px) {
  .bc-shop__image {
    max-width: calc(50% - 20px);
  }
}
@media screen and (max-width: 767px) {
  .bc-shop__image {
    max-width: 100%;
    order: 2;
  }
}
.bc-shop__image__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bc-shop__text {
  width: 100%;
  max-width: calc(50% - 30px);
}
@media screen and (max-width: 768px) {
  .bc-shop__text {
    max-width: calc(50% - 20px);
    padding-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .bc-shop__text {
    max-width: 100%;
    order: 1;
  }
}
.bc-shop__text__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bc-shop__slider {
  font-size: 0;
  line-height: 0;
}
.bc-shop__slider__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.bc-shop__slider .slick-dots {
  padding: 16px 0 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bc-shop__slider .slick-dots > li {
  width: calc(20% - 8px);
}
.bc-shop__slider .slick-dots > li.slick-active img {
  opacity: 0.3;
}
.bc-shop__slider .slick-dots > li img {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.bc-shop__map iframe {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  height: auto;
}
.bc-shop__logo {
  font-size: 0;
  line-height: 0;
}
.bc-shop__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.5em;
  font-weight: 500;
  color: #323C4D;
}
@media screen and (max-width: 820px) {
  .bc-shop__title {
    font-size: 18px;
    line-height: 1.5em;
  }
}
.bc-shop__desc {
  max-width: 520px;
}
@media screen and (max-width: 768px) {
  .bc-shop__desc {
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .bc-shop__desc {
    max-width: 100%;
    padding-right: 0;
  }
}
.bc-shop__desc p {
  margin: 0;
}
.bc-shop__desc p:not(:last-child) {
  margin-bottom: 1em;
}
.bc-shop__table {
  border-spacing: 0;
  border-collapse: collapse;
  border-bottom: 1px solid #E1E3E5;
}
.bc-shop__table tr th {
  border-top: 1px solid #E1E3E5;
  text-align: left;
  font-weight: 400;
  color: #5C6066;
  white-space: nowrap;
  line-height: 1.5em;
}
.bc-shop__table tr td {
  border-top: 1px solid #E1E3E5;
  padding: 16px;
  line-height: 1.5em;
}
.bc-shop__table tr td a:link, .bc-shop__table tr td a:visited, .bc-shop__table tr td a:hover, .bc-shop__table tr td a:active {
  text-decoration: underline;
}

.bc-sns {
  font-size: 0;
  line-height: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.bc-sns__item a {
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  align-items: center;
  font-size: 14px;
  line-height: 1em;
  font-family: "Lato", sans-serif;
}
.bc-sns__item a:link, .bc-sns__item a:visited, .bc-sns__item a:hover, .bc-sns__item a:active {
  text-decoration: none;
  color: #323C4D;
}

.bc-footer {
  background: #323C4D;
  color: #fff;
  padding: 0;
}
.bc-footer__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 60px;
  display: flex;
  justify-content: flex-start;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .bc-footer__inner {
    padding: 60px 20px;
    gap: 0;
    flex-wrap: wrap;
  }
}
.bc-footer__main {
  width: 100%;
  max-width: calc(33.3% - 30px);
}
@media screen and (max-width: 1080px) {
  .bc-footer__main {
    max-width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .bc-footer__main {
    max-width: 100%;
  }
}
.bc-footer__sub {
  flex-shrink: 1;
  width: 100%;
  max-width: calc(66.7% - 30px);
}
@media screen and (max-width: 768px) {
  .bc-footer__sub {
    max-width: 100%;
    display: none;
  }
}
.bc-footer__logo {
  font-size: 0;
  line-height: 0;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .bc-footer__logo {
    padding: 0 0 60px;
    text-align: center;
  }
}
.bc-footer__logo img {
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 768px) {
  .bc-footer__logo img {
    transform: translateX(-6%);
  }
}
.bc-footer__address {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  font-size: 12px;
  line-height: 2em;
  margin: 0 0 60px;
}
@media screen and (max-width: 768px) {
  .bc-footer__address {
    margin-bottom: 40px;
  }
}
.bc-footer__address dt {
  margin: 0;
  padding: 0;
  width: 80px;
  flex-shrink: 0;
}
.bc-footer__address dd {
  width: calc(100% - 80px);
  margin: 0;
  padding: 0;
}
.bc-footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bc-footer__nav:not(:last-child) {
  margin-bottom: 60px;
}
.bc-footer__nav__item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .bc-footer__nav__item {
    gap: 0;
  }
}
.bc-footer__nav__item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.bc-footer__nav__item > span {
  width: 22px;
  height: 22px;
  display: block;
  font-size: 0;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 24px;
  background: url(https://baracca.itembox.design/item/common/icon-arrow02.svg) no-repeat center center;
  cursor: pointer;
  transition: transform 0.3s;
}
.bc-footer__nav__item > span.active {
  transform: rotate(45deg);
}
.bc-footer__nav__item > a {
  display: block;
  padding: 24px 0;
  position: relative;
}
.bc-footer__nav__item > a:link, .bc-footer__nav__item > a:visited, .bc-footer__nav__item > a:hover, .bc-footer__nav__item > a:active {
  text-decoration: none;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .bc-footer__nav__item > a:not(.parent):after {
    content: "";
    width: 22px;
    height: 22px;
    display: block;
    font-size: 0;
    line-height: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: calc(50% - 11px);
    background: url(https://baracca.itembox.design/item/common/icon-arrow05.svg) no-repeat center center;
    cursor: pointer;
  }
}
.bc-footer__nav__item--brand {
  border-top: none;
}
.bc-footer__nav__item--brand > a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.bc-footer__nav__item--category {
  border-top: none;
  border-bottom: none !important;
}
.bc-footer__nav__item--category > a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.bc-footer__nav__item ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .bc-footer__nav__item ul {
    display: none;
    padding-bottom: 16px;
  }
}
.bc-footer__nav__item ul li {
  width: 25%;
}
@media screen and (max-width: 1024px) {
  .bc-footer__nav__item ul li {
    width: 33.3%;
  }
}
@media screen and (max-width: 820px) {
  .bc-footer__nav__item ul li {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .bc-footer__nav__item ul li {
    width: 100%;
  }
}
.bc-footer__nav__item ul li a {
  display: block;
  font-size: 12px;
  line-height: 1em;
  padding: 8px 8px 8px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .bc-footer__nav__item ul li a {
    padding: 16px 0;
  }
  .bc-footer__nav__item ul li a:after {
    content: "";
    width: 22px;
    height: 22px;
    display: block;
    font-size: 0;
    line-height: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: calc(50% - 11px);
    background: url(https://baracca.itembox.design/item/common/icon-arrow04.svg) no-repeat center center;
    cursor: pointer;
  }
}
.bc-footer__nav__item ul li a:link, .bc-footer__nav__item ul li a:visited, .bc-footer__nav__item ul li a:hover, .bc-footer__nav__item ul li a:active {
  text-decoration: none;
  color: #fff;
}
.bc-footer__nav__item div {
  display: flex;
  justify-content: flex-start;
}
.bc-footer__subnav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.bc-footer__subnav__item a {
  display: block;
  font-size: 12px;
  line-height: 1em;
}
.bc-footer__subnav__item a:link, .bc-footer__subnav__item a:visited, .bc-footer__subnav__item a:hover, .bc-footer__subnav__item a:active {
  text-decoration: none;
  color: #fff;
}
.bc-footer__copyright {
  text-align: center;
  background: #212833;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  line-height: 1em;
  padding: 40px 30px;
  letter-spacing: 1px;
}

.bc-drawer {
  background: #fff;
  box-sizing: border-box;
  width: 100%;
  max-width: 340px;
  height: 100dvh;
  padding: 0 0 60px;
  overflow-y: auto;
  position: fixed;
  right: 0;
  top: 0;
  box-shadow: 1px 0 10px rgba(0, 0, 0, 0.05);
  z-index: 999999;
  transform: translateX(110%);
  transition: transform 0.3s;
}
@media screen and (max-width: 430px) {
  .bc-drawer {
    max-width: calc(100vw - 60px);
  }
}
.bc-drawer.active {
  transform: translateX(0px);
}
.bc-drawer.active + .bc-drawer-bg {
  opacity: 1;
  pointer-events: inherit;
}
.bc-drawer__logo {
  font-size: 0;
  line-height: 0;
  padding: 24px 16px 16px;
  display: flex;
  justify-content: center;
}
.bc-drawer__logo img {
  width: 120px;
  height: auto;
}
.bc-drawer-utility {
  padding: 16px 24px 24px;
  font-size: 12px;
  line-height: 1.5em;
  text-align: center;
}
.bc-drawer-utility__message {
  margin-bottom: 8px;
}
.bc-drawer-utility ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.bc-drawer-utility ul li {
  flex: 1;
}
.bc-drawer-utility ul li a {
  display: flex;
  justify-content: center;
  border: 1px solid #E1E3E5;
  border-radius: 20px;
  padding: 8px;
  gap: 4px;
  align-items: center;
}
.bc-drawer-utility ul li a:link, .bc-drawer-utility ul li a:visited, .bc-drawer-utility ul li a:hover, .bc-drawer-utility ul li a:active {
  text-decoration: none;
  color: #323C4D;
}
.bc-drawer-utility ul li a:after {
  content: "";
  width: 22px;
  height: 22px;
  display: block;
  font-size: 0;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(https://baracca.itembox.design/item/common/icon-arrow05.svg) no-repeat center center;
  cursor: pointer;
}
.bc-drawer-utility__item--login.true {
  display: none;
}
.bc-drawer-utility__item--mypage.false {
  display: none;
}
.bc-drawer-utility__item--logout.false {
  display: none;
}
.bc-drawer-nav {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid #E1E3E5;
}
.bc-drawer-nav > li {
  border-bottom: 1px solid #E1E3E5;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  position: relative;
}
.bc-drawer-nav > li > a {
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 1em;
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
  height: 60px;
  letter-spacing: 1px;
  box-sizing: border-box;
  padding: 0 24px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .bc-drawer-nav > li > a {
    height: 60px;
  }
}
.bc-drawer-nav > li > a:link, .bc-drawer-nav > li > a:visited, .bc-drawer-nav > li > a:hover, .bc-drawer-nav > li > a:active {
  text-decoration: none;
  color: #323C4D;
}
.bc-drawer-nav > li > a:not(.parent):after {
  content: "";
  width: 22px;
  height: 22px;
  display: block;
  font-size: 0;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  right: 16px;
  top: calc(50% - 11px);
  background: url(https://baracca.itembox.design/item/common/icon-arrow04.svg) no-repeat center center;
  cursor: pointer;
}
.bc-drawer-nav > li > span {
  width: 22px;
  height: 22px;
  display: block;
  font-size: 0;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  right: 16px;
  top: 19px;
  background: url(https://baracca.itembox.design/item/common/icon-arrow06.svg) no-repeat center center;
  cursor: pointer;
  transition: transform 0.3s;
}
.bc-drawer-nav > li > span.active {
  transform: rotate(45deg);
}
.bc-drawer-nav > li ul {
  list-style: none;
  padding: 8px 0 0;
  margin: 0;
  width: 100%;
  display: none;
  padding-bottom: 30px;
}
.bc-drawer-nav > li ul li {
  width: 100%;
}
.bc-drawer-nav > li ul li a {
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1em;
  display: block;
  padding: 12px 24px;
  position: relative;
}
.bc-drawer-nav > li ul li a:link, .bc-drawer-nav > li ul li a:visited, .bc-drawer-nav > li ul li a:hover, .bc-drawer-nav > li ul li a:active {
  text-decoration: none;
  color: #323C4D;
}
.bc-drawer-nav > li ul li a:after {
  content: "";
  width: 22px;
  height: 22px;
  display: block;
  font-size: 0;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  right: 16px;
  top: calc(50% - 11px);
  background: url(https://baracca.itembox.design/item/common/icon-arrow05.svg) no-repeat center center;
  cursor: pointer;
}
.bc-drawer-subnav ul {
  list-style: none;
  padding: 30px 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bc-drawer-subnav ul > li {
  font-size: 0;
  line-height: 0;
}
.bc-drawer-subnav ul > li a {
  font-size: 12px;
  line-height: 1em;
  display: block;
  position: relative;
  padding: 8px 24px;
}
.bc-drawer-subnav ul > li a:link, .bc-drawer-subnav ul > li a:visited, .bc-drawer-subnav ul > li a:hover, .bc-drawer-subnav ul > li a:active {
  text-decoration: none;
  color: #323C4D;
}
.bc-drawer-subnav ul > li a:after {
  content: "";
  width: 22px;
  height: 22px;
  display: block;
  font-size: 0;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  right: 16px;
  top: calc(50% - 11px);
  background: url(https://baracca.itembox.design/item/common/icon-arrow05.svg) no-repeat center center;
  cursor: pointer;
}
.bc-drawer-bg {
  cursor: pointer;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

@media screen and (min-width: 769px) {
  .pc-hide {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .sp-hide {
    display: none;
  }
}

.fs-preview-header {
  display: none;
}
