/*-----------------------------------------------
|   carousel
-----------------------------------------------*/
.carousel {
  margin: 0 auto;
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: 75%;
  object-fit: contain;
}

.carousel.pointer-event {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.carousel-inner {
  position: absolute;
  width: 100%;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 !important;
}

.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-inner.news-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  transform: translate(0, 0);
  padding: 0 !important;
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  -o-transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  /* display: block; */
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity 0s 0.6s;
  -o-transition: opacity 0s 0.6s;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {

  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* -webkit-box-pack: center; */
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  -webkit-transition: opacity 0.15s ease;
  -o-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {

  .carousel-control-prev,
  .carousel-control-next {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  border-right: none;
}

.carousel-control-next {
  right: -4rem !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat 50% / 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  -webkit-transition: opacity 0.6s ease;
  -o-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

.carousel-item.active {
  /* display:inline!important; */
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  -o-transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity 0s 0.6s;
  -o-transition: opacity 0s 0.6s;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {

  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  -webkit-transition: opacity 0.15s ease;
  -o-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {

  .carousel-control-prev,
  .carousel-control-next {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: -4rem !important;
}

.carousel-control-next {
  right: -4rem !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat 50% / 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("/images/img-renew2022/icon/arrow-btn.svg") !important;
  transform: scale(-1, 1);
}

.carousel-control-next-icon {
  background-image: url("/images/img-renew2022/icon/arrow-btn.svg") !important;
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  -webkit-transition: opacity 0.6s ease;
  -o-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

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


/*-----------------------------------------------
|   remodal
-----------------------------------------------*/
.remodal {
  padding: 80px 46px;
  background: url(/images/img-renew2022/bg_modal.png) #FFF;
  background-repeat: no-repeat;
  background-size: contain;
}

.remodal .product-content {
  display: flex;
  width: 100%;
  position: relative;
  text-align: left;
  flex-wrap: wrap;
  font-family: 'Shippori Mincho B1', serif;
}

.remodal .product-content .title {
  position: absolute;
  left: calc(50% + 60px);
  font-size: 1.375rem;
  width: calc(50% - 80px);
}

.remodal .product-content .title .worked {
  font-size: 0.875rem;
  display: block;
}

.remodal .product-content .product {
  position: relative;
  width: 50%;
  top: 0;
}

.remodal .product-content .product-data {
  width: 50%;
  padding-left: 60px;
}

.remodal .product-content .product-data .header-title {
  line-height: 2.5;
}


.remodal .product-content .product-bg {
  background: #f0f0f0;
  padding-top: 100%;
  position: relative;
  width: 100%;
}

.remodal .product .product-bg img {
  /* margin: 0 auto; */
  /* position: absolute; */
  /* top: 50%; */
  /* left: 50%; */
  /* transform: translate(-50%, -50%); */
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 490px;
}

/*-----------------------------------------------
  |   Remodal [video lightbox]
  -----------------------------------------------*/
.remodal-video {
  padding: 0;
  min-width: 75%;
}

.remodal-overlay {
  background-color: rgba(23, 25, 27, 0.9);
}

.remodal-close {
  top: -1.5rem;
  left: -2rem;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #fff;
  background: transparent;
  border: unset;
  outline: unset;
}

.remodal-video .embed-responsive {
  background-color: #000;
}

.back-btn {
  margin-bottom: 1rem;
  text-indent: 0 !important;
  position: absolute !important;
  left: 46px;
  top: 28px;
  border-radius: 2px !important;

}

/*-----------------------------------------------
  |   Remodal [Language selection]
  -----------------------------------------------*/
.remodal-select-language {
  max-width: 12.5rem;
  padding: 0;
}

.remodal-select-language .remodal-close {
  position: absolute;
  right: 0;
  top: 0;
  left: auto;
  padding: 0.5rem;
  cursor: pointer;
}

@media only screen and (min-width: 1100px) {
  .remodal {
    max-width: 1000px;
  }
}

@media only screen and (min-width: 1260px) {
  .remodal {
    max-width: 1040px;
    /* height: auto; */
    background-repeat: no-repeat;
    /* overflow: auto; */
  }
}

@media only screen and (max-width: 1099px) {
  .remodal {
    padding: 40px 30px;
    background: url(../img/bg_modal.png) #FFF;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .remodal .product-content .product-data {
    width: 100%;
    padding-left: 0;
  }

  .remodal .product-content .product {
    width: 100%;
  }

  .nav-tabs {
    padding-top: 3rem;
  }

  .remodal .product-content .title {
    position: relative;
    left: 1rem;
    font-size: 1.375rem;
    width: calc(100% - 60px);
  }

  .remodal .artist .bio .text_wrapper {
    width: calc(100% - 200px);
  }

  .remodal .artist .bio .pic {
    width: 200px;
  }
}

@media only screen and (max-width: 767.99px) {
  .remodal-close {
    top: -1.8rem;
    left: -0.5rem;
  }

  .remodal-close:before {
    font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
    font-size: 30px;
    line-height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 35px;
    content: "\00d7";
    text-align: center;
  }
}

.remodal .artist {
  width: 100%;
  margin-top: 2rem;
  height: auto;
}

.remodal .artist h3 {
  font-size: 1.25rem;
}

.remodal .artist h3 span {
  color: #8f7a2f;
  font-size: 1rem;
  display: inline-block;
  margin-right: 0.5rem
}

.remodal .artist .bio {
  font-size: 0.875rem;
  font-weight: 400;
  display: flex;
  position: relative;
}

.remodal .artist .bio .text_wrapper {
  width: calc(100% - 300px);
}

.remodal .artist .bio .text_wrapper p {
  color: #262626;
}

.remodal .artist .bio .pic {
  width: 300px;
  text-align: center;
}

.remodal .artist .bio .pic img {
  width: 154px;
  height: 154px;
  border-radius: 50%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  display: initial;
}

@media only screen and (min-width: 1100px) {
  .remodal {
    max-width: 1000px;
  }
}

@media only screen and (min-width: 1260px) {
  .remodal {
    max-width: 1040px;
    /* height: auto; */
    background-repeat: no-repeat;
    /* overflow: auto; */
  }
}

@media only screen and (max-width: 1099px) {
  .remodal {
    padding: 40px 30px;
    background: url(../img/bg_modal.png) #FFF;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .remodal .product-content .product-data {
    width: 100%;
    padding-left: 0;
  }

  .remodal .product-content .product {
    width: 100%;
  }

  .nav-tabs {
    padding-top: 3rem;
  }

  .remodal .product-content .title {
    position: relative;
    left: 1rem;
    font-size: 1.375rem;
  }

  .remodal .artist .bio .text_wrapper {
    width: calc(100% - 200px);
  }

  .remodal .artist .bio .pic {
    width: 200px;
  }
}

@media only screen and (max-width: 767.99px) {
  .remodal-close {
    top: -1.8rem;
    left: -0.5rem;
  }

  .remodal-close:before {
    font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
    font-size: 30px;
    line-height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 35px;
    content: "\00d7";
    text-align: center;
  }
}


/*-----------------------------------------------
  |   remodal additionally "soldout"
  -----------------------------------------------*/
.remodal .product-content .product.soldout .product-bg:before {
  position: absolute;
  background: rgb(0 0 0 / 38%);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  z-index: 1;
}

.remodal .product-content .product.soldout .product-bg:after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "SOLD OUT";
  z-index: 2;
  color: #f28282;
  font-size: 1.075rem;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.product-data .btn.soldout {
  padding: 0.28rem 3.5rem;
  background: #a8a8a8;
  color: #FFF;
  cursor: default;
  /* font-weight: 700; */
}





@media only screen and (min-width: 1100px) {
  .remodal {
    max-width: 1000px;
  }
}

@media only screen and (min-width: 1260px) {
  .remodal {
    max-width: 1040px;
    /* height: auto; */
    background-repeat: no-repeat;
    /* overflow: auto; */
  }
}

@media only screen and (max-width: 1099px) {
  .remodal {
    padding: 40px 30px;
    background: url(../img/bg_modal.png) #FFF;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .remodal .product-content .product-data {
    width: 100%;
    padding-left: 0;
  }

  .remodal .product-content .product {
    width: 100%;
  }

  .nav-tabs {
    padding-top: 3rem;
  }

  .remodal .product-content .title {
    position: relative;
    left: 1rem;
    font-size: 1.375rem;
    width: calc(100% - 60px);
  }

  .remodal .artist .bio .text_wrapper {
    width: calc(100% - 200px);
  }

  .remodal .artist .bio .pic {
    width: 200px;
  }
}

@media only screen and (max-width: 767.99px) {
  .remodal-close {
    top: -1.8rem;
    left: -0.5rem;
  }

  .remodal-close:before {
    font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
    font-size: 30px;
    line-height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 35px;
    content: "\00d7";
    text-align: center;
  }
}

.remodal .artist {
  width: 100%;
  margin-top: 2rem;
  height: auto;
}

.remodal .artist h3 {
  font-size: 1.25rem;
}

.remodal .artist h3 span {
  color: #8f7a2f;
  font-size: 1rem;
  display: inline-block;
  margin-right: 0.5rem
}

.remodal .artist .bio {
  font-size: 0.875rem;
  font-weight: 400;
  display: flex;
  position: relative;
}

.remodal .artist .bio .text_wrapper {
  width: calc(100% - 300px);
}

.remodal .artist .bio .text_wrapper p {
  color: #262626;
}

.remodal .artist .bio .pic {
  width: 300px;
  text-align: center;
}

.remodal .artist .bio .pic img {
  width: 154px;
  height: 154px;
  border-radius: 50%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  display: initial;
}

@media only screen and (min-width: 1100px) {
  .remodal {
    max-width: 1000px;
  }
}

@media only screen and (min-width: 1260px) {
  .remodal {
    max-width: 1040px;
    /* height: auto; */
    background-repeat: no-repeat;
    /* overflow: auto; */
  }
}

@media only screen and (max-width: 1099px) {
  .remodal {
    padding: 40px 30px;
    background: url(../img/bg_modal.png) #FFF;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .remodal .product-content .product-data {
    width: 100%;
    padding-left: 0;
  }

  .remodal .product-content .product {
    width: 100%;
  }

  .nav-tabs {
    padding-top: 3rem;
  }

  .remodal .product-content .title {
    position: relative;
    left: 1rem;
    font-size: 1.375rem;
  }

  .remodal .artist .bio .text_wrapper {
    width: calc(100% - 200px);
  }

  .remodal .artist .bio .pic {
    width: 200px;
  }
}

@media only screen and (max-width: 767.99px) {
  .remodal-close {
    top: -1.8rem;
    left: -0.5rem;
  }

  .remodal-close:before {
    font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
    font-size: 30px;
    line-height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 35px;
    content: "\00d7";
    text-align: center;
  }
}

@media only screen and (max-width: 575px) {
  .remodal .artist .bio .text_wrapper {
    width: 100%;
  }

  .remodal .artist .bio .pic {
    position: absolute;
    width: 50px;
    right: 10px;
    top: -54px;
  }

  .remodal .artist .bio .pic img {
    width: 50px;
    height: 50px;
  }

  .marks .icons .certificate {
    padding-top: 55px;
    background: url(../img/icons/certificate.png);
    background-repeat: no-repeat;
    width: 20px;
    height: 50px;
    background-position: center top;
  }

  .marks .icons .certificate {
    padding-top: 30px;
    background-size: 20px;
    background-repeat: no-repeat;
    width: auto;
    height: auto;
  }

  .marks .icons .guarantee {
    padding-top: 30px;
    background-repeat: no-repeat;
    width: auto;
    height: auto;
    background-size: 34px;
  }
}

/*-----------------------------------------------
|   remodal additionally "soldout"
-----------------------------------------------*/
.remodal .product-content .product.soldout .product-bg:before {
  position: absolute;
  background: rgb(0 0 0 / 38%);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  z-index: 1;
}

.remodal .product-content .product.soldout .product-bg:after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "SOLD OUT";
  z-index: 2;
  color: #f28282;
  font-size: 1.075rem;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.product-data .btn.soldout {
  padding: 0.28rem 3.5rem;
  background: #a8a8a8;
  color: #FFF;
  cursor: default;
  /* font-weight: 700; */
}

.remodal .product-data .tab-content,
.remodal .product-data .nav-link.active {
  background-color: #f9f9f9;
}

.remodal .product-data .nav-tabs {
  border-bottom: 1px solid #dadcdf;
  padding-top: 90px;
}

.remodal .product-data .nav-tabs .nav-link {
  background: transparent;
  border: 1px solid transparent;
  border-top-left-radius: 0.1rem;
  border-top-right-radius: 0.1rem;
  color: #9f0808;
  text-decoration: underline;
  padding: .5rem 1rem;
  font-size: 13px;
}

.remodal .product-data .nav-tabs .nav-link.active {
  background: #f9f9f9;
}

.remodal .product-data .nav-tabs .nav-link.active,
.remodal .product-data .nav-tabs .nav-item.show .nav-link {
  color: #000;
  FONT-VARIANT: JIS04;
  border-color: #dadcdf #dadcdf #f9f9f9;
  text-decoration: none;
  font-size: 14px;
}




/* Retrieved from the root page nihonbashiart */
img.loading {
  background-color: #f6f6f6;
}

section {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.container {
  width: 90%;
  max-width: 1040px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.container,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  max-width: 1040px;
}

.bg-lightgold,
.bg-lightgold2 {
  position: relative;
  padding: 0 1rem;
}

.p-5 {
  padding: 5rem 3rem 3rem !important;
}

.bg-lightgold:before {
  height: 100%;
  background: #f3f3f3;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

#content-list {
  position: relative;
  padding-top: 3rem;
  overflow-x: hidden;
}

@media (min-width: 992px) {
  #content-list {
    padding-top: 4.5rem;
  }
}

main#event-info {
  padding: 5rem 0 0;
}

.gallery-heading {
  color: #000 !important;
  text-align: left;
  border: none;
  font-weight: 300;
  line-height: 1.5 !important;
  font-size: 2rem;
}

#content-list h1,
.archive-list h1,
#event-info h1 {
  margin-bottom: 3.75rem !important;
  font-size: clamp(1.5rem, 1.8vw, 2.25rem);
  text-align: center;
}

.gallery-title-sub {
  color: #595757 !important;
  width: 170px;
  margin: 10px auto;
  padding: 10px 0;
  text-align: left;
  border-top: 1px solid #333;
  font-size: 1.4rem;
  display: block;
  text-align: center;
}

#event-info .gallery-heading-sub {
  color: #636464 !important;
  /* color: #595757 !important; */
  max-width: 300px;
  margin: auto;
  padding: 1rem 0 0;
  text-align: center;
  /* border-top: 1px solid #333; */
  margin-bottom: 3rem;
}

.artist-fig,
.gallery-fig,
.event-image {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media screen and (max-width: 767px) {

  .artist-fig,
  .gallery-fig,
  .event-image {
    align-items: center;
  }
}

.event-detail-img {
  position: relative;
  width: 450px;
  height: 550px;
  margin-top: 2rem;
  right: 55px;
}

@media screen and (max-width: 767px) {
  .event-detail-img {
    position: relative;
    width: 260px;
    height: 260px;
    top: 0;
    margin-bottom: 0;
    right: 0;
  }
}

.artist-data,
.gallery-description,
.event-data {
  /* display: flex; */
  position: relative;
  padding-right: 4.5rem;
  /* flex-wrap: wrap; */
}

@media screen and (max-width: 767px) {

  .artist-data,
  .gallery-description,
  .event-data {
    left: 0;
    padding-left: 20px;
    padding-right: 15px;
  }
}

.event-data p,
.event-data div {
  font-size: 1rem;
}

.mce-content-body p,
.mce-content-body li {
  word-break: break-word;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.gallery-data>div,
.gallery-data2>div,
.gallery-data3>div,
.event-details>div {
  line-height: 2;
  width: 100%;
}

.event-info-text {
  margin-bottom: 3rem;
  left: 3rem;
  position: relative;
}

.gallery-data,
.gallery-data2,
.gallery-data3,
.event-details {
  font-size: 1.3rem;
  position: relative;
  width: auto;
  display: flex;
  flex-wrap: wrap;
  left: 3rem;
}

@media only screen and (max-width: 767px) {
  .event-info-text {
    left: 0;
  }

  .gallery-detail-text,
  .gallery-data,
  .event-details {
    left: auto;
  }
}

.artist-data p,
.artist-data div,
.gallery-description p,
.gallery-description div,
.event-data p,
.event-data div {
  font-size: 1.2rem;
  line-height: 1.6;
}

.event-data p,
.event-data div {
  font-size: 1rem;
}

.gallery-data>div,
.gallery-data2>div,
.gallery-data3>div,
.event-details>div {
  line-height: 2;
  width: 100%;
}

.gallery-data>.th,
.event-details>.th {
  font-size: 1rem;
  font-weight: 700;
}

.gallery-data>.td,
.gallery-data2>.td,
.gallery-data3>.td,
.event-details>.td {
  margin-bottom: 1.5rem;
}

.btn-wide {
  border: 1px solid #636464;
  padding: 0.7rem;
  border-radius: 0px;
  margin: 0 auto;
  max-width: 310px;
  width: 100%;
}

.btn-wide:hover {
  background: #636464;
  color: #fff;
}

.gallery-case,
.cat-case {
  border-radius: 1rem;
  border: 1px solid #d7dada;
  height: 330px;
  overflow: hidden;
}

.event-list-parent .gallery-case,
.cat-case {
  height: 345px !important;
}

.gallery-img,
.cat-img {
  padding: 1.5rem;
  margin-bottom: 0px;
}

.gallery-img,
.cat-img {
  padding-top: calc(100% - 6rem);
  padding-bottom: 0px;
  margin-bottom: 5px;
  position: relative;
  width: 146px;
  height: 152px;
  margin: 40px auto 0;
}

.gallery-img img,
.cat-img img {
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 80%;
  object-fit: contain;
}

.gallery-title,
.pickup-artist {
  color: #595757 !important;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 500;
  padding: 0 12px;
}

.gallery-case .gallery-title,
.cat-case .cat-title {
  padding: 5px 10px 0px 10px;
  margin-bottom: 0px;
}

.gallery-add,
.archive-list .top-gallery-title {
  font-size: 0.875rem !important;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0rem 1rem;
}

.gallery-add {
  font-size: 1.3rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0rem 1rem;
}

.archive-list {
  padding: 1rem 0rem;
}

.row-height {
  display: flex;
  flex-wrap: wrap;
}

.product-result-list .gallery-case,
.cat-case {
  height: 335px;
  min-height: 280px;
  overflow: hidden;
}

@media only screen and (max-width: 575px) {

  .gallery-case,
  .cat-case {
    height: 55vw !important;
    min-height: 290px;
    overflow: visible;
  }

  .cat-case {
    min-height: 40px !important;
  }
}

.artist-list-img {
  padding: 1.5rem;
  margin-bottom: 0px;
}

.artist-list-img {
  padding-top: calc(100% - 6rem);
  padding-bottom: 0px;
  margin-bottom: 5px;
  position: relative;
  width: 146px;
  height: 152px;
  margin: 20px auto 0;
}

@media (max-width: 575px) {

  .artist-list-img,
  .gallery-img,
  .cat-img {
    width: 116px;
    height: 120px;
  }
}

.artist-list-img img {
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 80%;
  object-fit: contain;
  font-family: 'object-fit: contain;';
}

.cat-day {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-indent: 2px;
  display: block;
  padding-top: 5px;
}

.btn-gold {
  border: 1px solid #877012;
  background: #fff;
  border-radius: 0;
  font-size: 1.2rem !important;
  padding: .1rem 1rem !important;
}

.btn-gold:hover {
  background: #877012;
  color: #fff !important;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner {
  position: absolute;
  width: 100%;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 !important;
}

.border-x {
  border-left: 1px solid #dadcdf !important;
  border-right: 1px solid #dadcdf !important;
}

.border-bottom {
  border-bottom: 1px solid #dadcdf !important;
}

.marks .icons>div {
  min-width: 80px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #666666;
}

.marks {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 0 30px;
  flex-wrap: wrap;
}

.marks .icons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.marks .buttons {
  margin-top: 0.5rem;
}

.btn_guarantee {
  border: 2px solid #c3c3c3;
  font-size: 0.78rem;
  padding: 5px 10px;
  color: #5f656c !important;
}

.marks .icons .guarantee {
  padding-top: 55px;
  background: url(/images/img-main2023/icon/guarantee.png);
  background-repeat: no-repeat;
  width: 54px;
  height: 44px;
  background-position: center top;
}

.marks .icons.icons-yellow .guarantee {
  background-image: url(/images/img-main2023/icon/guarantee_ylw.png);
}

.marks .icons .certificate {
  padding-top: 55px;
  background: url(/images/img-main2023/icon/certificate.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 50px;
  background-position: center top;
}

.marks .icons.icons-yellow .certificate {
  background-image: url(/images/img-main2023/icon/certificate_ylw.png);
}

.marks .icons .gallery {
  padding-top: 55px;
  background: url(/images/img-main2023/icon/gallery.png);
  background-repeat: no-repeat;
  width: 55px;
  height: 36px;
  background-position: center top;
}

@media only screen and (max-width: 575px) {
  .remodal .artist .bio .text_wrapper {
    width: 100%;
  }

  .remodal .artist .bio .pic {
    position: absolute;
    width: 50px;
    right: 10px;
    top: -54px;
  }

  .remodal .artist .bio .pic img {
    width: 50px;
    height: 50px;
  }

  .marks .icons .certificate {
    padding-top: 55px;
    background: url(../img/icons/certificate.png);
    background-repeat: no-repeat;
    width: 20px;
    height: 50px;
    background-position: center top;
  }

  .marks .icons .certificate {
    padding-top: 30px;
    background-size: 20px;
    background-repeat: no-repeat;
    width: auto;
    height: auto;
  }

  .marks .icons .guarantee {
    padding-top: 30px;
    background-repeat: no-repeat;
    width: auto;
    height: auto;
    background-size: 34px;
  }

  .marks .icons .gallery {
    padding-top: 30px;
    background-repeat: no-repeat;
    width: auto;
    height: auto;
    background-size: 34px;
  }
}

.product-data .price {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.5rem 0;
}

.product-data .price .price_head {
  color: #877012;
  display: inline-block;
  margin-right: 1rem;
}

.product-data .price .include_tax {
  font-size: 0.875rem;
}

.product-data .add_cart {
  background: #494949;
  color: #FFF;
  padding: 0.4rem 3.5rem;
  border-radius: 4px;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.artist .show_more,
.show_more2 {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 24px;
  padding-top: 24px;
  text-align: center;
  line-height: 24px;
  background: linear-gradient(180deg, rgb(255, 255, 255, 0) 0%, rgb(255 255 255) 65%);
  cursor: pointer;
  transition: bottom 0.2s;
  font-size: 0.7rem;
  padding-left: 6px;
}

.remodal .show_more,
.artist .remodal .show_more2 {
  background: linear-gradient(180deg, rgb(255, 255, 255, 0) 0%, rgb(255 255 255) 65%) !important;
}

.show_more:before,
.show_more2:before {
  position: absolute;
  content: "";
  width: 100px;
  height: 24px;
  border: 1px solid #cbcbcb;
  left: calc(50% - 50px);
  border-radius: 12px;
  z-index: -1;
}

.show_more:after,
.show_more2:after {
  position: absolute;
  content: url(/images/img/icon-img/arrow_readmore.png);
  left: calc(50% - 40px);
}

.swal2-container {
  z-index: 10001 !important;
}

#modal-show-work.loading-overlay,
#preview-modal.loading-overlay {
  height: 90vh;
  width: 100%;
}

#modal-show-work .spinner,
#preview-modal .spinner {
  display: none;
  border: 6px solid rgba(0, 0, 0, 0.1);
  border-left-color: #333;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  animation: spin 1s linear infinite;
  position: fixed;
  top: 50%;
  left: 54%;
  margin-left: -50px;
  margin-top: -50px;
  text-align: center;
  z-index: 1234;
  overflow: auto;
}

@media only screen and (max-width: 575px) {

  #modal-show-work .spinner,
  #preview-modal .spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #333;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    left: 58%;
  }
}

#modal-show-work.loading-overlay .spinner,
#preview-modal.loading-overlay .spinner {
  display: block;
}

#modal-show-work.loading-overlay .product-content,
#preview-modal.loading-overlay .product-content {
  display: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#modal-show-work .carousel-control-next,
#modal-show-work .carousel-control-prev {
  width: 20px;
}

#modal-show-work .carousel-control-prev-icon,
#modal-show-work .carousel-control-next-icon {
  width: 24px;
  height: 24px;
}

#modal-show-work .carousel-item {
  height: 100%;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out !important;
}

#modal-show-work.remodal .product-content .title>.name {
  width: 92%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#modal-show-work .carousel-inner {
  height: 100%;
}

#modal-show-work .carousel-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#modal-show-work .carousel-image img {
  width: 100%;
  height: 100%;
}

#modal-show-work .artist .show_more2 {
  background: linear-gradient(180deg, rgb(255, 255, 255, 0) 0%, rgb(255 255 255) 65%) !important
}

#modal-show-work .tab-content ul li {
  display: flex;
}

#modal-show-work .tab-content ul li>div {
  flex: 1;
}

@media only screen and (max-width: 575px) {
  .modal-name-artist {
    width: calc(100% - 64px) !important;
  }
}

.remodal-work-image {
  position: relative;
}

.remodal-work-image .btn-back {
  top: 28px;
  left: 20px;
  position: absolute;
  background: #2a292b !important;
  color: #FFF !important;
  padding: 0.175rem 1.8rem !important;
  font-size: 0.875rem !important;
  border-radius: 2px !important;
}

.remodal-work-image .btn-back:focus,
.remodal-work-image .btn-back:hover {
  border: 2px solid #2a292b !important;
}

.remodal-work-image .zoom-pic {
  margin-top: 1rem !important;
}

.remodal-work-image .zoom-pic img {
  /* width: 100%; */
}

@media screen and (max-width: 767px) {
  .remodal-work-image .zoom-pic {
    margin-top: 1.75rem !important;
  }
}

.recommend-slider {
  padding-top: 0;
  padding-bottom: 4rem;
}

.recommend-slider .owl-theme .owl-nav [class*=owl-] {
  background-color: rgb(0 0 0 / 90%) !important;
  color: #fff !important;
}

@media screen and (max-width: 767px) {
  .recommend-slider .owl-carousel .owl-item .item-wrap .item {
    height: 72vw;
    max-height: 500px;
  }
}

@media screen and (max-width: 991px) {
  .recommend-slider .owl-theme .owl-nav [class*=owl-] {
    width: 1.6rem;
    height: 2.8rem;
    border-radius: 0;
    text-align: center;
    color: #000;
    margin: 0;
    background-color: rgb(0 0 0 / 90%) !important;
    /* -webkit-box-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.1); */
    /* box-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.1); */
    z-index: 99;
  }
}

.u-wrap {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  width: 81vw;
}

.u-wrap {
  position: relative;
  /* max-width: 1000px; */
  margin: 0 auto;
  width: 88vw;
}

.site-content .cart-page,
.site-content .member-page {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

@media only screen and (max-width: 991px) {
  .site-content .cart-page {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

h1.cart_page_title,
h1.member_page_title {
  margin-bottom: 3.75rem !important;
  font-size: clamp(1.5rem, 1.8vw, 2.25rem);
  text-align: center;
}

div.header_explanation {
  padding-top: 15px;
  padding-bottom: 15px;
}

#memberpages div.loginbox {
  margin-top: 50px;
  width: 220px;
  background-color: #F6F6F6;
  margin-right: auto;
  margin-left: auto;
  border: 1px solid #CCCCCC;
  padding-top: 0px;
  padding-right: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
}

.member-page #memberpages div.loginbox {
  margin-top: 0;
  width: 100%;
  background-color: #f3f3f3;
  border: 1px solid #EEE;
  padding: 2rem;
}

div.footer_explanation {
  padding-top: 15px;
  padding-bottom: 15px;
}

#memberpages form {
  margin: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 20px;
  padding-left: 0px;
}

#memberpages .loginbox p {
  font-size: 12px;
  line-height: 24px;
  color: #333333;
  margin: 0px;
  padding-top: 15px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.member-page #memberpages .loginbox p {
  display: flex;
  justify-content: center;
}

#memberpages .loginbox p#nav {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 12px;
}

#memberpages .loginbox p {
  font-size: 12px;
  line-height: 24px;
  color: #333333;
  margin: 0px;
  padding-top: 15px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.member-page #memberpages .loginbox p {
  display: flex;
  justify-content: center;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

label {
  font-size: 0.72888rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.member-page #memberpages .loginbox label {
  font-size: 0.875rem;
}

.member-page #memberpages input.loginmail,
.member-page #memberpages input.loginpass {
  height: 2.5rem;
  width: 260px !important;
}

.member-page #memberpages input[type=checkbox] {
  display: inline-block;
}

.to_customerinfo_button,
.to_memberlogin_button,
.to_reganddeliveryinfo_button,
.to_deliveryinfo_button,
.to_confirm_button,
.member_login_button,
#wc_member .top {
  background: #282828;
  border-radius: 3px;
  padding: 0.6rem 1rem !important;
  border: 1px solid #282828;
  color: #fff;
  max-width: 200px;
  width: 100%;
  transition: all 500ms ease 0s;
  margin-bottom: 1.5rem;
  line-height: 1;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

.member-page #memberpages .loginbox .new-entry h2 {
  display: none;
}

div.cart_navi ul {
  list-style: none;
  overflow: hidden;
}

div.cart_navi ul:has(:nth-child(3):last-child) {
  display: flex;
  width: 79%;
  overflow: unset;
}

@media screen and (max-width: 519px) {
  div.cart_navi ul:has(:nth-child(3):last-child) {
    width: 96%;
  }
}

@media screen and (max-width: 519px) {
  div.cart_navi li {
    min-width: 22%;
    overflow: revert;
  }

  html[lang='ja'] div.cart_navi li {
    min-width: 28%;
    overflow: revert;
  }
}

@media screen and (min-width: 520px) {
  div.cart_navi li {
    width: 24.5%;
    font-size: 1em;
  }
}

div.cart_navi li {
  display: block;
  color: #262626;
  font-size: 10px;
  font-weight: bold;
  float: left;
  text-decoration: none;
  text-align: center;
  line-height: 40px;
}

div.cart_navi ul:has(:nth-child(3):last-child)>li {
  width: 98% !important;
}

#cart_table .product-wrap .size-100x100 {
  width: 100%;
  min-width: 220px !important;
  max-width: 220px !important;
  margin-bottom: 1rem;
  aspect-ratio: 1/1;
}

#cart_table .product-wrap .data2 {
  padding-left: 1.5rem;
  width: calc(100% - 350px);
}

#cart .price,
#cart .unitprice,
#cart_table .product-wrap .productname {
  font-weight: 500;
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-family: 'Shippori Mincho B1', serif;
}

#cart .stock {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 0.875rem;
  padding: 0.125rem 1rem;
  border: 1px solid #cccccc;
  border-radius: 2px;
  display: inline-block;
  margin-top: 0.5rem;
  border-radius: 2px;
  margin-bottom: 0.5rem;
}

#cart .price,
#cart .unitprice,
#cart_table .product-wrap .productname {
  font-weight: 500;
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-family: 'Shippori Mincho B1', serif;
}

#cart .price,
#cart .unitprice {
  width: auto !important;
  text-align: left !important;
}

@media only screen and (max-width: 767px) {

  #cart .price,
  #cart .unitprice {
    text-align: right !important;
    margin-bottom: 1.8rem;
  }
}

#wc_confirm #cart .price,
#cart .unitprice,
#wc_confirm #cart th {
  font-size: 1rem;
  font-weight: 500;
}

#wc_confirm #cart .price,
#cart .unitprice {
  text-align: right !important;
  position: relative;
}

#cart .price,
#cart .unitprice {
  white-space: nowrap;
  width: 80px;
  text-align: right;
}

#wc_confirm #cart .price,
#cart .unitprice:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  background: #dadada;
}

#cart .quantity-change,
#cart .subtotal,
#cart .currency_code {
  display: none;
}

#cart .subtotal {
  white-space: nowrap;
  width: 100px;
  text-align: right;
}

#cart .action {
  white-space: nowrap;
  width: 100% !important;
  max-width: 100px;
  text-align: center;
  position: absolute;
  right: 1.5rem;
  font-size: 0.875rem;
}

#cart .action {
  white-space: nowrap;
  width: 60px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  #cart .action {
    position: relative;
    right: auto;
  }
}

#cart .action input {
  width: 100% !important;
  max-width: 100px;
  border-radius: 0;
  background-color: #262626;
  color: #FFF;
  border: none;
}

#cart input.delButton {
  padding: 5px 5px;
  font-weight: normal;
}

.continue_shopping_button,
.back_cart_button,
.back_to_customer_button,
.ui-dialog .back_to_delivery_button,
.back_to_delivery_button,
#wc_member .deletemember,
#wc_member .editmember {
  color: #262626;
  border-radius: 0;
  border: 1px solid #262626;
  padding: 0.6rem 1rem !important;
  max-width: 200px;
  width: 100%;
  transition: all 500ms ease 0s;
  margin-bottom: 0.5rem;
  background-color: #eeeeee !important;
}

#wc_member #memberinfo table {
  margin-bottom: 1rem;
}

#wc_member #memberinfo th,
#wc_member #memberinfo td {
  font-size: 0.875em;
  line-height: 1;
  padding: 1rem;
  font-family: 'Shippori Mincho B1', serif;
  color: #262626;
  font-weight: 500;
}

#wc_member #memberinfo h3 {
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  color: #ffffff;
  background-color: #262626;
  text-indent: 1rem;
  padding: 1rem;
  height: auto;
  margin-top: 20px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #660000;
  float: none;
}

#wc_customer #customer-info h5 {
  color: #FFFFFF;
  background-color: #949494;
  padding: 0.6rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}

#customer-info form {
  margin: 0px;
  padding: 0px;
}

#wc_customer #customer-info table,
.ui-dialog table {
  margin-top: 2rem;
  width: 100%;
}

#wc_customer #customer-info th,
#wc_customer #customer-info td,
#wc_delivery #delivery-info th,
#wc_delivery #delivery-info td,
.ui-dialog th,
.ui-dialog td {
  font-size: 0.875rem !important;
  line-height: 1;
  font-weight: 500;
  color: #262626;
  text-align: left;
  font-family: 'Shippori Mincho B1', serif;
  padding: 1rem 0.5rem;
  border: 1px solid #e6e6e6;
}

#wc_customer #customer-info th,
#wc_delivery #delivery-info th,
.ui-dialog th {
  margin-right: auto;
  margin-left: auto;
  background-color: #f3f3f3;
  width: 25%;
}

#wc_customer #customer-info td {
  color: #999;
}

#wc_customer #customer-info .customer_form input,
#wc_delivery #delivery-info input,
.ui-dialog input {
  min-height: 36px;
  width: 100%;
  padding: 0 5px;
}

#wc_customer #customer-info .customer_form input,
.ui-dialog input {
  width: 100%;
  margin-right: 3px;
  margin: 0.4rem;
  max-width: 500px;
}

#wc_customer #customer-info select,
#wc_delivery #delivery-info select,
.ui-dialog select {
  min-height: 36px;
  height: 36px;
  width: 180px;
}

#wc_customer #customer-info .send,
#delivery-info .send,
#info-confirm .send {
  text-align: center;
  margin: 0;
  padding: 1rem;
  border: none !important;
}

@media only screen and (max-width: 991px) {
  #wc_customer #customer-info table tr {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
}

@media only screen and (max-width: 991px) {

  #wc_customer #customer-info th,
  #wc_customer #customer-info td {
    display: block;
    width: 100%;
  }
}

#wc_delivery label,
#wc_delivery #delivery-info td {
  display: flex;
  align-items: center;
}

#wc_delivery input[type=radio] {
  margin-right: 4px;
  display: inline;
  width: 18px !important;
}

#wc_confirm #cart table {
  width: 100%;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1rem;
}

#wc_confirm #cart .price,
#cart .unitprice,
#wc_confirm #cart th {
  font-size: 1rem;
  font-weight: 500;
}

#wc_confirm .productname {
  width: calc(44%);
}

#wc_confirm #cart .thumbnail {
  width: 120px;
}

#wc_confirm #cart th.price {
  text-align: center !important;
  display: none;
}

#wc_confirm #cart th.num,
#wc_confirm #cart .quantity,
#wc_confirm #cart td.subtotal,
#wc_confirm #cart th.action,
#wc_confirm #cart td.action,
#wc_confirm #cart td.num,
#wc_confirm #cart tfoot .thumbnail {
  display: none;
}

#wc_confirm #cart .thumbnail img {
  width: 100px;
  aspect-ratio: 1/1;
}

#wc_confirm #confirm_table .ttl {
  background: #EEE;
}

#wc_confirm #confirm_table th,
#wc_confirm #confirm_table td {
  line-height: 1;
  font-weight: 500;
  color: #262626;
  padding: 6px 16px !important;
  width: auto;
  font-family: 'Shippori Mincho B1', serif;
}

.search-menu #checks2 {
  display: contents;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
}

.aligncenter {
  clear: both;
}

.text-line-clamp-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.text-line-clamp-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.text-line-clamp-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

html[lang='en'] #search-wrapper:before {
  content: 'Search';
}

html[lang='fr'] #search-wrapper:before {
  content: 'Rech.';
}

html[lang='en'] .nav-icons a.favorite:before {
  content: 'Favorites';
}

html[lang='fr'] .nav-icons a.favorite:before {
  content: 'Favoris';
}

html[lang='en'] .nav-icons a.icon-history:before {
  content: 'Histories';
}

html[lang='fr'] .nav-icons a.icon-history:before {
  content: 'Historique';
}

html[lang='en'] .nav-icons a.cart:before {
  content: 'Carts';
}

html[lang='fr'] .nav-icons a.cart:before {
  content: 'Panier';
}

.gallery-case .pickup-artist,
.gallery-case .top-gallery-title,
.gallery-case .gallery-add {
  margin-bottom: 0.5rem;
}

.font-22px {
  font-size: 22px !important;
}

.font-21px {
  font-size: 21px !important;
}

.font-14px {
  font-size: 14px !important;
}

section aside {
  width: 340px;
}

.title-event-convert {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre-line !important;
}

#modal-show-work .tab-content .gap-info ul li {
  gap: 25px;
}

.top-header-pc {
  display: block;
}

.top-header-mb {
  display: none;
}

#condition-default {
  margin-bottom: 0;
  margin-top: 15px;
}

/* Tablet-specific styles */
@media (min-width: 768px) and (max-width: 1024px) {
  #faq h1.gallery-heading {
    text-align: center;
  }

  .mb-5-tablet {
    margin-bottom: 2rem !important;
  }

  .featuredProducts .owl-carousel.owl-loaded {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 767px) {
  .featuredProducts .owl-carousel.owl-loaded {
    margin-bottom: 0 !important;
  }

  .top-header-pc {
    display: none;
  }

  .top-header-mb {
    display: block;
  }

  #condition-default {
    margin-bottom: 24px;
  }
}

#breakingNewsTicker.ticker ul.top-ul li {
  position: relative !important;
}

.recommend-slider button span {
  width: 100%;
  display: block;
  height: 100%;
}

html[lang='en'] .marks .buttons {
  margin-top: 1.5rem;
}

html[lang='fr'] .marks .buttons {
  margin-top: 3rem;
}

.featuredProducts {
  padding-bottom: 0;
}

.featuredProducts #recommend-carousel .owl-stage-outer {
  margin-bottom: 0;
  max-height: 440px;
}

.featuredProducts.recommend-slider .owl-carousel .owl-item .item-wrap .item {
  background: #ececed;
  max-height: 340px;
}

.page-thanks .container {
  max-width: 900px !important;
}

.thanks .box-2 {
  margin-top: 40px;
}

#faq .gallery-heading,
.page-guide .gallery-heading {
  text-align: center;
}
.usces-member-go-home {
  margin-bottom: 0.5rem !important;
}