@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=roboto:wght@300;400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "roboto", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  background: #f4f4f4;
  color: #4d4d4d;
  -webkit-text-size-adjust: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}
a:active {
  color: inherit;
}
a:focus {
  outline: none;
}

a.text-deco-underline {
  text-decoration: underline;
}

li {
  list-style: none;
}

button {
  -webkit-appearance: none;
  border-radius: 0;
  margin: 0;
  border: none;
  outline: none;
  color: unset;
}
button:focus {
  outline: none;
}

input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

.container {
  width: 80%;
}

.font-color {
  color: #808080;
}

.font-color-light {
  color: #a9a9a9;
}

.attention-color {
  color: #b71c1c;
}

.emph-color {
  color: #ef6c00;
}

.yellow-color {
  color: #caf604;
}

.strong {
  font-weight: 600;
}

.mb-10 {
  margin-bottom: 10px;
}

.fs-small {
  font-size: 0.8rem;
}

.hide {
  display: none;
}

.hidden {
  visibility: hidden;
  opacity: 0;
}

.section.hide {
  display: none;
}

.btn {
  width: 100%;
  height: 50px;
  border-radius: 3px;
  background: #001e43;
  color: #fff;
  font-size: inherit;
  cursor: pointer;
}

#pagetop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 30px;
  text-align: center;
  opacity: 0;
  z-index: 9999;
}

.ribbon {
  width: 106px;
  height: 108px;
  overflow: hidden;
  position: absolute;
  top: -6px;
  left: -6px;
  z-index: 10;
}
.ribbon .ribbon__title {
  font-size: 1em;
  line-height: 1.2em;
  position: relative;
  top: 26px;
  left: -33px;
  width: 150px;
  padding: 7px 0;
  transform: rotate(-45deg);
  text-align: center;
  letter-spacing: 0.5px;
  color: #ffffff;
  background-color: #b71c1c;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.ribbon .ribbon__title::before, .ribbon .ribbon__title::after {
  position: absolute;
  bottom: -4px;
  content: "";
  border-width: 4px 4px 0 4px;
  border-style: solid;
  border-color: #921818 transparent transparent transparent;
}
.ribbon .ribbon__title::before {
  left: 0;
}
.ribbon .ribbon__title::after {
  right: 0;
}

.g-ads {
  text-align: center;
  width: 100%;
  margin-top: 50px;
}

.lime-counter {
  display: none;
}

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(240, 240, 240, 0.9);
  z-index: 100;
}
.navbar .nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 3px 10vw;
}
.navbar .nav .logo-container {
  display: flex;
  width: 20%;
  height: 100%;
  transition: opacity 0.3s ease-in;
  cursor: pointer;
}
.navbar .nav .logo-container:hover {
  opacity: 0.8;
}
.navbar .nav .logo-container .logo-link {
  display: flex;
  align-items: center;
  height: 100%;
}
.navbar .nav .logo-container .logo-link img {
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 200;
}
.navbar .nav .logo-container .logo-link .itoro-logo {
  height: 100%;
}
.navbar .nav .logo-container .logo-link .itoro-brand {
  width: 120px;
  height: 30px;
  margin-left: 5px;
}
.navbar .nav__menu {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 40%;
  height: 100%;
  margin: 0 10px;
  text-align: center;
  font-size: 15px;
}
.navbar .nav__menu li {
  width: 100%;
  padding: 0 5px;
}
.navbar .nav__menu li:not(:last-child) {
  border-right: 2px solid #e0e0e0;
}
.navbar .nav__menu li a {
  display: block;
  width: 100%;
  color: #383838;
  opacity: 0.6;
  transition: 0.3s ease-in;
}
.navbar .nav__menu li a:hover {
  opacity: 1;
}
.navbar .nav__menu li.active a {
  opacity: 1;
  font-weight: 700;
}
.navbar .nav__items {
  display: flex;
  align-items: center;
  width: 40%;
  height: 100%;
  padding: 5px 0;
}
.navbar .nav__items--search {
  width: 250px;
  height: 100%;
  display: flex;
}
.navbar .nav__items--search form {
  position: relative;
  display: flex;
  width: 100%;
}
.navbar .nav__items--search form .search-input {
  width: 100%;
  height: 100%;
  padding: 7px;
  background-color: #fff;
  color: #fff;
  font-size: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  outline: none;
}
.navbar .nav__items--search form .search-input::-moz-placeholder {
  color: #a9a9a9;
}
.navbar .nav__items--search form .search-input::placeholder {
  color: #a9a9a9;
}
.navbar .nav__items--search form .search-input:focus {
  background-color: #001e43;
  opacity: 0.8;
}
.navbar .nav__items--search form .search-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  padding: 10px;
  border: none;
  outline: none;
  background: none;
  color: #a9a9a9;
  font-size: inherit;
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.3s ease-in;
}
.navbar .nav__items--search form .search-btn:hover {
  opacity: 1;
}
.navbar .nav__items--cart {
  margin-left: 10px;
  width: 150px;
  height: 100%;
  display: flex;
}
.navbar .nav__items--cart form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.navbar .nav__items--cart form .cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  color: #fff;
  background: none;
  font-size: 15px;
  font-weight: 300;
  background: #001e43;
  border-radius: 5px;
  border: none;
  outline: none;
  opacity: 0.8;
  cursor: pointer;
  transition: 0.3s ease;
}
.navbar .nav__items--cart form .cart-btn:hover {
  transform: scale(0.98);
  opacity: 1;
}
.navbar .nav .mobile {
  display: none;
  position: relative;
  width: 120px;
  align-items: center;
}
.navbar .nav .mobile .mobile-cart {
  position: absolute;
  top: 50%;
  right: 65px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.navbar .nav .mobile .mobile-cart img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.navbar .nav .mobile .mobile-btn {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  padding: 2px;
  cursor: pointer;
}
.navbar .nav .mobile .mobile-btn > span {
  display: block;
  width: 36px;
  height: 4px;
  margin: 6px 0;
  background: #001e43;
  transition: transform 0.7s;
}
.navbar .nav .mobile .mobile-btn.open > span:nth-child(1) {
  background: #001e43;
  transition-delay: 70ms;
  transform: translateY(9px) rotate(135deg);
}
.navbar .nav .mobile .mobile-btn.open > span:nth-child(2) {
  background: #001e43;
  transition-delay: 0s;
  transform: translateY(-15px) scaleX(0);
}
.navbar .nav .mobile .mobile-btn.open > span:nth-child(3) {
  background: #001e43;
  transition-delay: 140ms;
  transform: translateY(-9px) rotate(-135deg);
}
.navbar .categoriesMenu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  padding: 0 10vw;
  background: rgba(0, 30, 67, 0.9);
  border-bottom: 1px solid #7f7fff;
}
.navbar .categoriesMenu__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 800px;
  font-size: 18px;
}
.navbar .categoriesMenu__links .category-menu {
  position: relative;
  height: 100%;
}
.navbar .categoriesMenu__links .category-menu span {
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #fff;
}
.navbar .categoriesMenu__links .category-menu a {
  height: 100%;
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.2s ease-in-out;
}
.navbar .categoriesMenu__links .category-menu a:hover {
  opacity: 1;
}
.navbar .categoriesMenu__links .category-menu:hover span {
  animation: slidebar 0.2s linear;
  width: 100%;
}
.navbar .categoriesMenu__links .category-menu.active span {
  width: 100%;
}
.navbar .categoriesMenu__links .category-menu.active a {
  opacity: 1;
}
.navbar .mobileMenu {
  display: flex;
  position: fixed;
  top: 60px;
  left: 0;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: calc(100vh - 60px);
  padding: 30px;
  background: rgba(0, 30, 67, 0.9);
  overflow-x: hidden;
  transform: translateY(-200%);
  transition: transform 0.7s ease-in;
  z-index: 200;
}
.navbar .mobileMenu__container {
  width: 100%;
  max-width: 540px;
  height: 100%;
}
.navbar .mobileMenu__search {
  display: flex;
  width: 100%;
  height: 50px;
}
.navbar .mobileMenu__search form {
  position: relative;
  display: flex;
  width: 100%;
}
.navbar .mobileMenu__search form .search-input {
  width: 100%;
  height: 100%;
  padding: 10px;
  font-family: inherit;
  background-color: #fff;
  color: #fff;
  font-size: inherit;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  outline: none;
}
.navbar .mobileMenu__search form .search-input::-moz-placeholder {
  color: #a9a9a9;
}
.navbar .mobileMenu__search form .search-input::placeholder {
  color: #a9a9a9;
}
.navbar .mobileMenu__search form .search-input:focus {
  background-color: #001e43;
  opacity: 0.8;
}
.navbar .mobileMenu__search form .search-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 50px;
  padding: 10px;
  border: none;
  outline: none;
  background: none;
  color: #a9a9a9;
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.3s ease-in;
}
.navbar .mobileMenu__search form .search-btn.fas {
  font-size: 30px;
}
.navbar .mobileMenu__search form .search-btn:hover {
  opacity: 1;
}
.navbar .mobileMenu__main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 0;
}
.navbar .mobileMenu__main a {
  display: block;
  flex: 1;
  color: #fff;
  transition: opacity 0.3s ease-in;
}
.navbar .mobileMenu__main a .fas, .navbar .mobileMenu__main a .far {
  font-size: 60px;
  width: 60px;
  height: 70px;
}
.navbar .mobileMenu__main a:hover {
  opacity: 0.8;
}
.navbar .mobileMenu__links {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 30px 30px;
}
.navbar .mobileMenu__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 10px;
  border-bottom: 1px solid #e0e0e0;
  color: #fff;
  font-size: 25px;
}
.navbar .mobileMenu__links a:hover {
  background-color: #001e43;
}
.navbar .mobileMenu__links a .i {
  font-size: inherit;
}
.navbar .mobileMenu.is-open {
  transform: translateY(0);
}

@keyframes slidebar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.rsv-item-notice,
.overC-item-notice {
  margin: 30px 5vw;
}

.digest {
  width: 100%;
  display: flex;
}
.digest__boxes {
  width: 100%;
}
.digest__boxes--container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.digest__boxes--box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 50%;
  height: 400px;
  padding: 50px;
}
.digest__boxes--box:nth-child(1) {
  border-right: 1px solid #e0e0e0;
}
.digest__boxes--box .fa,
.digest__boxes--box .fab {
  font-size: 50px;
  margin-top: -40px;
}
.digest__boxes--box .title {
  font-size: 25px;
  margin-bottom: 10px;
}
.digest__boxes--box p {
  font-size: 20px;
}
.digest__boxes--box p span {
  font-size: 2rem;
}
.digest__boxes--box .box-btn {
  position: absolute;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.98rem;
  color: inherit;
  width: 80%;
  height: 50px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  opacity: 0.8;
  transition: 0.3s ease;
  cursor: pointer;
}
.digest__boxes--box .box-btn:hover {
  background-color: #f0f0f0;
  opacity: 1;
}

.delivery-charge {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 700px;
  background-color: #f0f0f0;
  padding: 30px;
  box-shadow: 0 4rem 6rem rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  z-index: 1000;
  transition: all 0.3s;
}
.delivery-charge .close-btn {
  position: absolute;
  top: 2%;
  right: 5%;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  font-size: 30px;
  opacity: 0.6;
  transition: opacity 0.3s ease-in;
}
.delivery-charge .close-btn:hover {
  opacity: 1;
}
.delivery-charge .title {
  margin-bottom: 10px;
  color: #383838;
  font-size: 17px;
}
.delivery-charge--table {
  width: 100%;
  padding: 30px;
  font-size: 15px;
  line-height: 1.6;
  background: #fff;
  border-radius: 5px;
  box-shadow: 1px 2px 1px 0 rgba(0, 0, 0, 0.2);
}
.delivery-charge--table table {
  width: 100%;
}
.delivery-charge--table table tr {
  width: 100%;
}
.delivery-charge--table table tr th {
  text-align: left;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.delivery-charge--table table tr th td:nth-child(1) {
  width: 50%;
}
.delivery-charge--table table tr td.pref {
  font-weight: 300;
  width: 80%;
}
.delivery-charge--table table tr td.deli-char {
  min-width: 50px;
  width: 20%;
  text-align: right;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 300;
  transition: all 0.3s;
}

.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.footer__sitemap {
  width: 100%;
  background: #383838;
}
.footer__sitemap--container {
  padding: 75px 5vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.footer__sitemap--box {
  min-width: 30%;
  margin: 0 20px;
  color: #f0f0f0;
  font-weight: 300;
}
.footer__sitemap--box .title {
  font-weight: 300;
  margin-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}
.footer__sitemap--links {
  font-size: 16px;
}
.footer__sitemap--links .link {
  color: #f0f0f0;
  line-height: 1.8;
}
.footer__sitemap--links .link.text-right {
  text-align: right;
}
.footer__sitemap--links .link a {
  color: #f0f0f0;
  font-weight: 300;
  opacity: 0.9;
  transition: 0.3s ease-in;
}
.footer__sitemap--links .link a:hover {
  color: #fff;
  opacity: 1;
}
.footer__copy-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  background: #001e43;
  color: #fff;
  font-weight: 300;
  border-top: 1px solid #7f7fff;
  border-bottom: 1px solid #7f7fff;
}

/* --------------------------------------------
  Media Query：TABLET
----------------------------------------------- */
@media (max-width: 1025px) {
  /* --------------------------------------------
    HOME (index)
  ----------------------------------------------- */
  .section.showcase .section__showcase {
    position: relative;
    color: #fff;
    background: url("../img/showcase-img.png") no-repeat center center/cover;
    padding: 0;
  }
  .section.showcase .section__showcase:before {
    display: none;
  }
  .section.showcase .section__showcase--content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 2rem;
  }
  .section.slide .section__slide--container {
    padding: 0px;
  }
  .section.slide .section__slide--container .dots {
    display: none;
  }
  .section.slide .section__slide--title {
    width: 100%;
  }
  .section.slide .section__slide--boxes {
    width: 1024px;
    max-width: unset;
    height: unset;
  }
  .section.slide .section__slide--box .product__card {
    flex: 0 0 33.3%;
    max-width: 33.3%;
  }
  .section.slide .section__slide--box .product__card--wrapper {
    width: 100%;
    height: 360px;
  }
  .section.slide .section__slide--box .product__card--img-container {
    height: 50%;
  }
  .section.slide .section__slide--box .product__card--img-container img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .section.slide .section__slide--box .product__card--contents {
    height: 50%;
  }
  .section.slide .section__slide--box .product__card--sellPrice, .section.slide .section__slide--box .product__card--icon {
    bottom: 50px;
  }
  .section.slideAuto .section__slideAuto--container .dots {
    display: none;
  }
  .section.slideAuto .section__slideAuto--boxes {
    width: 1024px;
  }
  .section.slideAuto .section__slideAuto--box .product__cardAuto--contents .gotocart-btn {
    opacity: 1;
  }
  .section.shop .section__shop--container {
    padding: 1rem;
  }
  .section.shop .section__shop--contents {
    margin-left: 10px;
  }
  .section.shop .section__shop--contents .img-container img {
    width: 180px;
    height: 180px;
  }
  .section.shop .section__shop--contents .img-container .price-now {
    font-size: 2.5rem;
  }
  .section.shop .section__shop--contents .img-container p, .section.shop .section__shop--contents .img-container small {
    line-height: 24px;
  }
  .section.categoriesCard .section__categoriesCard {
    row-gap: 5px;
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
  .section.categoriesCard .section__categoriesCard--container {
    padding: 10px;
  }
  .section.categoriesCard .section__categoriesCard--title {
    font-size: 30px;
  }
  .digest__boxes--box {
    height: 300px;
    padding: 10px;
  }
  .digest__boxes--box .title {
    font-size: 20px;
  }
  .digest__boxes--box p {
    font-size: 15px;
  }
  .digest__boxes--box p span {
    font-size: 1.5rem;
  }
  .modal__delivery-charge .delivery-charge {
    width: 85%;
    padding: 15px;
  }
  .modal__delivery-charge .delivery-charge .title {
    font-size: 16px;
  }
  /* --------------------------------------------
    ABOUT
  ----------------------------------------------- */
  #about .section.about-showcase .section__about-showcase {
    background: url("../img/showcase-img.png") no-repeat center center/cover;
  }
  #about .section.about-showcase .section__about-showcase:before {
    display: none;
  }
  #about .section.about-showcase .section__about-showcase--container {
    display: flex;
    padding: 0;
  }
  #about .section.about-showcase .section__about-showcase--contentL {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 10px;
  }
  #about .section.about-showcase .section__about-showcase--contentR {
    display: none;
  }
  #about .section.info .section__row1, #about .section.info .section__row2 {
    width: 100%;
    padding: 0 2rem;
  }
  #about .section.info .info-title {
    width: 100%;
    padding: 0 2rem;
  }
  /* --------------------------------------------
    GUID
  ----------------------------------------------- */
  #guide section.section .container {
    width: 95%;
  }
  #guide .section.rule .section__rule .main-content .sub-content .flex-howToOrder__box .how-to__des {
    font-size: 14px;
  }
  /* --------------------------------------------
    CATEGORY
  ----------------------------------------------- */
  #category .main-wrapper .main-container,
  #yagibushi .main-wrapper .main-container,
  #wadaiko .main-wrapper .main-container,
  #bachi .main-wrapper .main-container,
  #shinobue .main-wrapper .main-container,
  #narimono .main-wrapper .main-container,
  #other .main-wrapper .main-container {
    padding: 20px 10px;
  }
  #category .main-wrapper .main-container .section.categories .section__categories--container,
  #yagibushi .main-wrapper .main-container .section.categories .section__categories--container,
  #wadaiko .main-wrapper .main-container .section.categories .section__categories--container,
  #bachi .main-wrapper .main-container .section.categories .section__categories--container,
  #shinobue .main-wrapper .main-container .section.categories .section__categories--container,
  #narimono .main-wrapper .main-container .section.categories .section__categories--container,
  #other .main-wrapper .main-container .section.categories .section__categories--container {
    padding: 0 0 20px;
  }
  #category .main-wrapper .main-container .section.categories .section__categories--title,
  #yagibushi .main-wrapper .main-container .section.categories .section__categories--title,
  #wadaiko .main-wrapper .main-container .section.categories .section__categories--title,
  #bachi .main-wrapper .main-container .section.categories .section__categories--title,
  #shinobue .main-wrapper .main-container .section.categories .section__categories--title,
  #narimono .main-wrapper .main-container .section.categories .section__categories--title,
  #other .main-wrapper .main-container .section.categories .section__categories--title {
    margin-bottom: 8px;
  }
  #category .main-wrapper .main-container .section.categories .section__categories--cards,
  #yagibushi .main-wrapper .main-container .section.categories .section__categories--cards,
  #wadaiko .main-wrapper .main-container .section.categories .section__categories--cards,
  #bachi .main-wrapper .main-container .section.categories .section__categories--cards,
  #shinobue .main-wrapper .main-container .section.categories .section__categories--cards,
  #narimono .main-wrapper .main-container .section.categories .section__categories--cards,
  #other .main-wrapper .main-container .section.categories .section__categories--cards {
    min-height: unset;
  }
  #category .main-wrapper .main-container .section.categories .section__categories--card,
  #yagibushi .main-wrapper .main-container .section.categories .section__categories--card,
  #wadaiko .main-wrapper .main-container .section.categories .section__categories--card,
  #bachi .main-wrapper .main-container .section.categories .section__categories--card,
  #shinobue .main-wrapper .main-container .section.categories .section__categories--card,
  #narimono .main-wrapper .main-container .section.categories .section__categories--card,
  #other .main-wrapper .main-container .section.categories .section__categories--card {
    border: 1px solid #f0f0f0;
  }
  #category .main-wrapper .main-container .section.categories .section__categories--card .categories__card--productName,
  #yagibushi .main-wrapper .main-container .section.categories .section__categories--card .categories__card--productName,
  #wadaiko .main-wrapper .main-container .section.categories .section__categories--card .categories__card--productName,
  #bachi .main-wrapper .main-container .section.categories .section__categories--card .categories__card--productName,
  #shinobue .main-wrapper .main-container .section.categories .section__categories--card .categories__card--productName,
  #narimono .main-wrapper .main-container .section.categories .section__categories--card .categories__card--productName,
  #other .main-wrapper .main-container .section.categories .section__categories--card .categories__card--productName {
    min-height: 75px;
  }
  #category .main-wrapper .main-container .section.categories .section__categories--card .categories__card--shortDes,
  #yagibushi .main-wrapper .main-container .section.categories .section__categories--card .categories__card--shortDes,
  #wadaiko .main-wrapper .main-container .section.categories .section__categories--card .categories__card--shortDes,
  #bachi .main-wrapper .main-container .section.categories .section__categories--card .categories__card--shortDes,
  #shinobue .main-wrapper .main-container .section.categories .section__categories--card .categories__card--shortDes,
  #narimono .main-wrapper .main-container .section.categories .section__categories--card .categories__card--shortDes,
  #other .main-wrapper .main-container .section.categories .section__categories--card .categories__card--shortDes {
    display: none;
  }
  #category .main-wrapper .main-container .section.categories .section__categories--card .categories__card--icon .icon-rsv,
  #yagibushi .main-wrapper .main-container .section.categories .section__categories--card .categories__card--icon .icon-rsv,
  #wadaiko .main-wrapper .main-container .section.categories .section__categories--card .categories__card--icon .icon-rsv,
  #bachi .main-wrapper .main-container .section.categories .section__categories--card .categories__card--icon .icon-rsv,
  #shinobue .main-wrapper .main-container .section.categories .section__categories--card .categories__card--icon .icon-rsv,
  #narimono .main-wrapper .main-container .section.categories .section__categories--card .categories__card--icon .icon-rsv,
  #other .main-wrapper .main-container .section.categories .section__categories--card .categories__card--icon .icon-rsv {
    font-size: 17px;
  }
  /* --------------------------------------------
    PRODUCT PAGES
  ----------------------------------------------- */
  .section.product {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .section.product .product__container {
    position: relative;
    padding: 50px 10px 10px;
  }
  .section.product .product__container .product-info__title {
    line-height: 30px;
    margin-bottom: 0;
  }
  .section.product .product__container .product-info__causion {
    margin-top: 0;
    line-height: 24px;
  }
  .section.product .product__container .product-info__icons {
    margin: 10px 0;
  }
  .section.product .product__container .product-info__container h5 {
    line-height: 24px;
  }
  .section.product .product__container .product-cart__content--title {
    width: 100%;
    padding: 10px 0;
    line-height: 24px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  }
  .section.product .product__container .product-cart__content .related-img {
    grid-template-columns: repeat(2, 1fr);
  }
  .section.product .product__container .product-cart__content .related-img img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .section.other-items {
    margin-bottom: 0 !important;
  }
  .section.other-items .other-items__box .col .icon-rsv {
    min-width: unset;
    width: 60%;
  }
  .section.other-items .other-items__box .col .item-card--title {
    font-size: 14px;
    line-height: 20px;
  }
  /* --------------------------------------------
    NAVBAR (_navbar)
  ----------------------------------------------- */
  .navbar {
    box-shadow: 0 0 6px rgba(0, 30, 67, 0.4);
  }
  .navbar .nav {
    padding: 3px 10px;
    justify-content: space-between;
  }
  .navbar .nav .logo-container {
    flex: 1;
    transition: unset;
  }
  .navbar .nav .logo-container:hover {
    opacity: unset;
  }
  .navbar .nav__menu {
    display: none;
  }
  .navbar .nav__items {
    flex: 1;
  }
  .navbar .nav__items--search {
    width: 100%;
  }
  .navbar .nav__items--cart {
    display: none;
  }
  .navbar .nav .mobile {
    display: flex;
    flex: 1;
  }
  .navbar .categoriesMenu {
    display: none;
  }
  /* --------------------------------------------
    FOOTER (_footer)
  ----------------------------------------------- */
  .footer__sitemap--container {
    max-width: 960px;
    margin: auto;
    padding: 30px 15px;
  }
  .footer__sitemap--box {
    margin: 0;
  }
  .footer__sitemap--box:nth-child(1), .footer__sitemap--box:nth-child(2) {
    margin-right: 15px;
  }
}
/* --------------------------------------------
  Media Query：MOBILE max 600
----------------------------------------------- */
@media (max-width: 768px) {
  /* --------------------------------------------
    HOME (index)
  ----------------------------------------------- */
  .section.showcase .section__showcase--container .sub-branding {
    font-size: 19px;
  }
  .section.showcase .section__showcase--container .branding {
    margin-top: 0;
    font-size: 45px;
  }
  .section.showcase .section__showcase--container p {
    font-size: 19px;
    line-height: 24px;
  }
  .section.slide {
    margin-bottom: 0 !important;
  }
  .section.slide .section__slide {
    background: rgba(0, 0, 0, 0.9);
  }
  .section.slide .section__slide--container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: unset;
    max-width: unset;
    padding: 0 5px;
  }
  .section.slide .section__slide--container .prev-btn,
  .section.slide .section__slide--container .next-btn {
    top: 35px;
    color: #fff;
    opacity: 1;
  }
  .section.slide .section__slide--title {
    justify-content: center;
    color: #f0f0f0;
  }
  .section.slide .section__slide--title span.attention-color {
    color: #ef6c00;
    margin: 0 5px;
  }
  .section.slide .section__slide--boxes {
    width: 100%;
  }
  .section.slide .section__slide--box .product__card--wrapper {
    padding: 5px;
  }
  .section.slide .section__slide--box .product__card--contents .detail-btn {
    left: 0;
    height: 40px;
  }
  .section.slide .section__slide--box .product__card--shortDes {
    height: 36px;
  }
  .section.slide .section__slide--box .product__card--sellPrice {
    bottom: 40px;
  }
  .section.slide .section__slide--box .product__card--icon {
    bottom: 60px;
  }
  .section.slideAuto {
    margin-bottom: 0 !important;
  }
  .section.slideAuto .section__slideAuto {
    background-color: unset;
    background: rgba(0, 0, 0, 0.9);
    margin-bottom: 20px;
  }
  .section.slideAuto .section__slideAuto--container {
    padding: 0 5px;
    text-align: center;
  }
  .section.slideAuto .section__slideAuto--container .prevAuto-btn, .section.slideAuto .section__slideAuto--container .nextAuto-btn {
    top: 35px;
    width: 35px;
    height: 70px;
    color: #fff;
    background-color: transparent;
    font-size: 35px;
    opacity: 1;
  }
  .section.slideAuto .section__slideAuto--title {
    justify-content: center;
    color: #f0f0f0;
  }
  .section.slideAuto .section__slideAuto--title span.attention-color {
    color: #ef6c00;
    margin: 0 5px;
  }
  .section.slideAuto .section__slideAuto--boxes {
    width: 100%;
  }
  .section.slideAuto .section__slideAuto--box .product__cardAuto {
    min-height: unset;
  }
  .section.slideAuto .section__slideAuto--box .product__cardAuto--title {
    display: none;
  }
  .section.shop .section__shop--container {
    top: 35px;
    margin: 5px 10px;
    padding: 25px 5px 10px;
  }
  .section.shop .section__shop--contents {
    margin-left: 0;
  }
  .section.shop .section__shop--contents h2 {
    font-size: 22px;
  }
  .section.shop .section__shop--contents .img-container {
    padding: 0 5px;
  }
  .section.shop .section__shop--contents .img-container .price-now {
    font-size: 2rem;
  }
  .section.shop .section__shop--contents .img-container p, .section.shop .section__shop--contents .img-container small {
    line-height: 24px;
  }
  .section.shop .section__shop--contents .img-container p {
    font-size: 14px;
  }
  .section.shop .section__shop--contents .img-container .special-btn {
    font-size: 0.8em;
  }
  .digest__boxes--container {
    flex-direction: column;
  }
  .digest__boxes--box {
    width: 100%;
  }
  .digest__boxes--box:nth-child(1) {
    border-right: 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .modal__delivery-charge .delivery-charge {
    top: 1%;
    left: 50%;
    transform: translate(-50%, 0%);
    max-width: unset;
    width: 90%;
    padding: 10px;
    font-size: 14px;
  }
  .modal__delivery-charge .delivery-charge .close-btn {
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    font-size: 25px;
  }
  .modal__delivery-charge .delivery-charge .title {
    font-size: 15px;
  }
  .modal__delivery-charge .delivery-charge--table {
    padding: 0;
    background-color: transparent;
    font-size: 14px;
    line-height: 1.4;
    border-radius: 0;
    box-shadow: none;
  }
  /* --------------------------------------------
    ABOUT
  ----------------------------------------------- */
  #about .section.about-showcase .section__about-showcase {
    padding: 0;
  }
  #about .section.about-showcase .section__about-showcase--container {
    padding: 0;
  }
  #about .section.about-showcase .section__about-showcase--contentL {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    height: 100%;
  }
  #about .section.about-showcase .section__about-showcase--contentL .about-branding {
    margin-bottom: 10px;
  }
  #about .section.info .section__row1, #about .section.info .section__row2 {
    width: 100%;
    padding: 0 2rem;
    grid-template-columns: 1fr;
  }
  #about .section.info .info-title {
    width: 100%;
    padding: 0 2rem;
  }
  #about .section.info .shop-img {
    width: 160px;
  }
  #about .section.slideAuto .section__slideAuto {
    background: unset;
  }
  #about .section.slideAuto .section__slideAuto--title {
    color: #383838;
  }
  #about .section.slideAuto .section__slideAuto--title span.attention-color {
    color: #b71c1c;
  }
  #about .section.slideAuto .section__slideAuto--container .prevAuto-btn, #about .section.slideAuto .section__slideAuto--container .nextAuto-btn {
    color: #888;
  }
  #about .aboutus-info {
    position: absolute;
    top: 150%;
    left: 50%;
    max-width: unset;
    transform: translateX(-50%);
  }
  #about .aboutus-info__title {
    margin-top: 25px;
  }
  #about .aboutus-info__imgContainer a {
    flex: 0 0 33%;
    max-width: 33%;
  }
  #about .aboutus-info__imgContainer a img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  /* --------------------------------------------
    GUID
  ----------------------------------------------- */
  #guide .section.rule .section__rule .main-content .sub-title span {
    display: none;
  }
  #guide .section.rule .section__rule .main-content .sub-content .flex-howToOrder {
    flex-direction: column;
  }
  #guide .section.rule .section__rule .main-content .sub-content .flex-howToOrder__box {
    flex: unset;
    width: 100%;
  }
  #guide .section.rule .section__rule .main-content .sub-content .flex-howToOrder__box .how-to__des {
    font-size: 17px;
  }
  #guide .section.rule .section__rule .main-content .sub-content .flex-orderFlow__2 {
    flex-direction: column;
  }
  #guide .section.rule .section__rule .main-content .sub-content .flex-orderFlow__2--box {
    width: 100%;
    margin: 5px 0 30px;
  }
  #guide .section.rule .section__rule .main-content .sub-content .flex-orderFlow__2--box .fas, #guide .section.rule .section__rule .main-content .sub-content .flex-orderFlow__2--box .far {
    font-size: 35px;
    margin-bottom: 10px;
  }
  #guide .section.rule .section__rule .main-content .sub-content .flex-orderFlow__2--box .fas.i-small, #guide .section.rule .section__rule .main-content .sub-content .flex-orderFlow__2--box .far.i-small {
    font-size: 17px;
  }
  #guide .section.rule .section__rule .main-content .sub-content .flex-orderFlow__2--box--notice .fa-list-ul {
    font-size: 15px;
  }
  #guide .section.rule .section__rule .main-content .sub-content .flex-payment {
    padding: 10px;
  }
  #guide .section.rule .section__rule .main-content .sub-content .flex-payment__list {
    margin-left: 10px;
  }
  #guide .section.rule .section__rule .main-content .sub-content .flex-payment__3 {
    flex-direction: column;
  }
  #guide .section.rule .section__rule .main-content .sub-content .flex-payment__3--box {
    flex: unset;
    margin: 0;
    margin-bottom: 30px;
    width: 100%;
  }
  #guide .section.rule .section__rule .main-content .sub-content .flex-payment__3--box img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #guide .section.rule .section__rule .main-content .sub-content .flex-payment__3--box table.payment-table {
    border-spacing: 1px;
    font-size: 14px;
  }
  #guide .section.rule .section__rule .main-content .sub-content .flex-payment__3--box table.payment-table th:nth-child(1) {
    width: 60%;
  }
  #guide .section.rule .section__rule .main-content .sub-content .flex-payment__3--box table.payment-table th:nth-child(2) {
    width: 40%;
  }
  #guide .section.rule .section__rule .main-content .sub-content .flex-delivery {
    padding: 10px;
  }
  #guide .section.rule .section__rule .main-content .sub-content .flex-delivery__list {
    margin-top: 15px;
    margin-left: 10px;
  }
  #guide .section.rule .section__rule .main-content .sub-content .flex-delivery__list li .iconOverC {
    font-size: 14px;
  }
  #guide .section.rule .section__rule .main-content .list-price {
    padding: 10px;
  }
  #guide .section.rule .section__rule .main-content .flex-receipt {
    padding: 10px;
  }
  #guide .section.rule .section__rule .main-content .flex-receipt__2 {
    flex-direction: column;
  }
  #guide .section.rule .section__rule .main-content .flex-receipt__2--box {
    flex: unset;
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
    padding: 10px;
  }
  #guide .section.rule .section__rule .main-content .flex-receipt__2--box i {
    font-weight: 35px;
  }
  #guide .section.rule .section__rule .main-content .return-cancel {
    padding: 10px;
  }
  #guide .section.rule .section__rule .main-content .return-cancel__list {
    margin-left: 10px;
  }
  #guide .section.rule .section__rule .main-content .privacy-policy {
    padding: 10px;
  }
  #guide .section.rule .section__rule .main-content .privacy-policy__open {
    padding: 10px 10px;
  }
  /* --------------------------------------------
    CATEGORY
  ----------------------------------------------- */
  #category .breadcrumbs,
  #yagibushi .breadcrumbs,
  #wadaiko .breadcrumbs,
  #bachi .breadcrumbs,
  #shinobue .breadcrumbs,
  #narimono .breadcrumbs,
  #other .breadcrumbs {
    padding: 10px 20px;
  }
  #category .sidebar,
  #yagibushi .sidebar,
  #wadaiko .sidebar,
  #bachi .sidebar,
  #shinobue .sidebar,
  #narimono .sidebar,
  #other .sidebar {
    display: none;
  }
  #category .main-wrapper .main-container,
  #yagibushi .main-wrapper .main-container,
  #wadaiko .main-wrapper .main-container,
  #bachi .main-wrapper .main-container,
  #shinobue .main-wrapper .main-container,
  #narimono .main-wrapper .main-container,
  #other .main-wrapper .main-container {
    padding: 20px;
  }
  /* --------------------------------------------
    PRODUCT PAGES
  ----------------------------------------------- */
  .header h4 {
    font-size: 18px;
  }
  .section.product .product__container {
    padding: 0px 20px;
  }
  .section.product .product__container .col.product-img {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }
  .section.product .product__container .col.product-img .product-selections {
    width: 350px;
    min-width: 350px;
    margin: 1rem auto;
  }
  .section.product .product__container .col.product-info {
    flex: 0 0 60%;
    max-width: 60%;
  }
  .section.product .product__container .col.product-card {
    flex: 0 0 40%;
    max-width: 40%;
  }
  .section.product .product__container .product-img__container {
    margin: auto;
  }
  .section.product .product__container .product-info__container {
    line-height: 24px;
  }
  .section.product .product__container .product-info.show {
    position: absolute;
    top: 0;
    left: 0;
    flex: unset;
    max-width: unset;
  }
  .section.product .product__container .product-info .product-main-img img {
    min-width: 580px;
    max-width: 580px;
  }
  .section.product .product__container .product-info__container {
    margin-bottom: 10px;
  }
  .section.product .product__container .product-cart {
    border-radius: 0;
  }
  .section.description .description__container {
    padding: 30px;
  }
  .section.other-items .other-items__container {
    margin: 0 20px;
    padding: 30px 20px;
  }
  .section.other-items .other-items__box .col .icon-rsv {
    width: 60%;
    font-size: 14px;
  }
  .section.other-items .other-items__box .col .item-card--title {
    max-height: 45px;
    overflow-y: auto;
  }
  .section.other-items button.prev-btn {
    left: 5px;
  }
  .section.other-items button.next-btn {
    right: 5px;
  }
  /* --------------------------------------------
    NAVBAR (_navbar)
  ----------------------------------------------- */
  .navbar .nav__items {
    display: none;
  }
  /* --------------------------------------------
    FOOTER (_footer)
  ----------------------------------------------- */
  .footer__sitemap--container {
    display: flex !important;
    flex-direction: column;
  }
  .footer__sitemap--box:nth-child(1), .footer__sitemap--box:nth-child(2) {
    margin-right: 0;
  }
}
/* --------------------------------------------
  Media Query：MOBILE max 420
----------------------------------------------- */
@media (max-width: 420px) {
  /* --------------------------------------------
    HOME (index)
  ----------------------------------------------- */
  .section.slide .section__slide--title {
    height: 50px;
    font-size: 20px;
  }
  .section.slide .section__slide--container .prev-btn, .section.slide .section__slide--container .next-btn {
    top: 25px;
    right: 0;
    height: 50px;
    font-size: 20px;
  }
  .section.slide .section__slide--boxes {
    width: 100%;
  }
  .section.slide .section__slide--box .product__card--wrapper {
    height: 205px;
  }
  .section.slide .section__slide--box .product__card--img-container {
    height: unset;
  }
  .section.slide .section__slide--box .product__card--contents {
    height: 100%;
    padding: 0;
  }
  .section.slide .section__slide--box .product__card--contents .detail-btn {
    height: 30px;
    font-size: 13px;
  }
  .section.slide .section__slide--box .product__card--title {
    display: none;
  }
  .section.slide .section__slide--box .product__card--shortDes {
    display: none;
  }
  .section.slide .section__slide--box .product__card--sellPrice {
    bottom: 28px;
    font-size: 16px;
  }
  .section.slide .section__slide--box .product__card--icon {
    bottom: 40px;
  }
  .section.slide .section__slide--box .product__card--icon .icon-rsv {
    font-size: 12px;
    padding: 0 2px;
    border-radius: 1px;
  }
  .section.slide .section__slide--box .product__card--icon.discount {
    bottom: 50px;
  }
  .ribbon.discount,
  .ribbon.chance {
    width: 100%;
    height: 63px;
    top: 0px;
    left: 0px;
  }
  .ribbon.discount .ribbon__title,
  .ribbon.chance .ribbon__title {
    font-size: 13px;
    line-height: 1em;
    position: relative;
    top: 5px;
    left: 5px;
    width: 60px;
    padding: 3px 0;
    transform: rotate(0deg);
    opacity: 0.87;
  }
  .ribbon.discount .ribbon__title::before, .ribbon.discount .ribbon__title::after,
  .ribbon.chance .ribbon__title::before,
  .ribbon.chance .ribbon__title::after {
    display: none;
  }
  .ribbon.chance .ribbon__title {
    width: 90px;
  }
  .section.slideAuto .section__slideAuto--title {
    height: 50px;
    font-size: 20px;
  }
  .section.slideAuto .section__slideAuto--container .prevAuto-btn, .section.slideAuto .section__slideAuto--container .nextAuto-btn {
    top: 25px;
    right: 0;
    height: 50px;
    font-size: 20px;
  }
  .section.slideAuto .section__slideAuto--boxes {
    width: 100%;
  }
  .section.slideAuto .section__slideAuto--box .product__cardAuto--sellPrice {
    position: relative;
    font-size: 20px;
  }
  .section.slideAuto .section__slideAuto--box .product__cardAuto--sellPrice .item-card--actualPrice {
    position: absolute;
    left: 3px;
    bottom: -15px;
  }
  .section.shop .section__shop--contents h2 {
    font-size: 16px;
  }
  .section.shop .section__shop--contents .img-container {
    flex-direction: column;
  }
  .section.shop .section__shop--contents .img-container div {
    margin-left: 0;
    padding: 0;
  }
  .section.shop .section__shop--contents .img-container h4 {
    text-align: center;
    font-size: 16px;
  }
  .section.shop .section__shop--contents .img-container .price-now {
    font-size: 22px;
  }
  .section.shop .section__shop--contents .img-container p {
    display: none;
  }
  .section.shop .section__shop--contents .img-container small {
    font-size: 13px;
    line-height: 18px;
  }
  .section.shop .section__shop--contents .img-container .special-btn {
    width: 100%;
  }
  .section.categoriesCard .section__categoriesCard {
    grid-template-columns: repeat(2, 1fr);
  }
  /* --------------------------------------------
    ABOUT
  ----------------------------------------------- */
  #about .section.info .section__row2, #about .section.info .section__row1 {
    padding: 0 1rem;
  }
  #about .section.info .section__row2--container, #about .section.info .section__row1--container {
    flex-direction: column;
  }
  #about .section.info .section__row2--container .shop-img, #about .section.info .section__row1--container .shop-img {
    width: 100%;
    text-align: center;
  }
  #about .section.info .section__row2--container .shop-info, #about .section.info .section__row1--container .shop-info {
    padding-left: 0;
  }
  #about .section.info .section__row2--container .shop-info h3, #about .section.info .section__row1--container .shop-info h3 {
    text-align: center;
  }
  #about .section.info .section__row2--container .shop-info h4, #about .section.info .section__row1--container .shop-info h4 {
    margin: 5px 0;
  }
  #about .section.info .info-title {
    padding: 0 1rem;
  }
  #about .aboutus-info {
    top: 150%;
    padding: 20px;
  }
  /* --------------------------------------------
    CATEGORY
  ----------------------------------------------- */
  #category .breadcrumbs,
  #yagibushi .breadcrumbs,
  #wadaiko .breadcrumbs,
  #bachi .breadcrumbs,
  #shinobue .breadcrumbs,
  #narimono .breadcrumbs,
  #other .breadcrumbs {
    padding: 5px 10px;
  }
  #category .main-wrapper .main-container,
  #yagibushi .main-wrapper .main-container,
  #wadaiko .main-wrapper .main-container,
  #bachi .main-wrapper .main-container,
  #shinobue .main-wrapper .main-container,
  #narimono .main-wrapper .main-container,
  #other .main-wrapper .main-container {
    padding: 20px 10px;
  }
  #category .main-wrapper .main-container .section.categories .section__categories--title,
  #yagibushi .main-wrapper .main-container .section.categories .section__categories--title,
  #wadaiko .main-wrapper .main-container .section.categories .section__categories--title,
  #bachi .main-wrapper .main-container .section.categories .section__categories--title,
  #shinobue .main-wrapper .main-container .section.categories .section__categories--title,
  #narimono .main-wrapper .main-container .section.categories .section__categories--title,
  #other .main-wrapper .main-container .section.categories .section__categories--title {
    margin-bottom: 0;
    font-size: 24px;
  }
  #category .main-wrapper .main-container .section.categories .section__categories--title button.more,
  #yagibushi .main-wrapper .main-container .section.categories .section__categories--title button.more,
  #wadaiko .main-wrapper .main-container .section.categories .section__categories--title button.more,
  #bachi .main-wrapper .main-container .section.categories .section__categories--title button.more,
  #shinobue .main-wrapper .main-container .section.categories .section__categories--title button.more,
  #narimono .main-wrapper .main-container .section.categories .section__categories--title button.more,
  #other .main-wrapper .main-container .section.categories .section__categories--title button.more {
    padding: 3px 5px;
    font-size: 15px;
    border-radius: 3px;
  }
  #category .main-wrapper .main-container .section.categories .section__categories--title.eachCategory-title,
  #yagibushi .main-wrapper .main-container .section.categories .section__categories--title.eachCategory-title,
  #wadaiko .main-wrapper .main-container .section.categories .section__categories--title.eachCategory-title,
  #bachi .main-wrapper .main-container .section.categories .section__categories--title.eachCategory-title,
  #shinobue .main-wrapper .main-container .section.categories .section__categories--title.eachCategory-title,
  #narimono .main-wrapper .main-container .section.categories .section__categories--title.eachCategory-title,
  #other .main-wrapper .main-container .section.categories .section__categories--title.eachCategory-title {
    padding-bottom: 0;
  }
  #category .main-wrapper .main-container .section.categories .section__categories--container,
  #yagibushi .main-wrapper .main-container .section.categories .section__categories--container,
  #wadaiko .main-wrapper .main-container .section.categories .section__categories--container,
  #bachi .main-wrapper .main-container .section.categories .section__categories--container,
  #shinobue .main-wrapper .main-container .section.categories .section__categories--container,
  #narimono .main-wrapper .main-container .section.categories .section__categories--container,
  #other .main-wrapper .main-container .section.categories .section__categories--container {
    padding: 0 0 20px;
  }
  #category .main-wrapper .main-container .section.categories .section__categories .category-des__txt,
  #yagibushi .main-wrapper .main-container .section.categories .section__categories .category-des__txt,
  #wadaiko .main-wrapper .main-container .section.categories .section__categories .category-des__txt,
  #bachi .main-wrapper .main-container .section.categories .section__categories .category-des__txt,
  #shinobue .main-wrapper .main-container .section.categories .section__categories .category-des__txt,
  #narimono .main-wrapper .main-container .section.categories .section__categories .category-des__txt,
  #other .main-wrapper .main-container .section.categories .section__categories .category-des__txt {
    width: 100%;
    font-size: 15px;
    line-height: 1.2;
  }
  #category .main-wrapper .main-container .section.categories .section__categories .category-des__img,
  #yagibushi .main-wrapper .main-container .section.categories .section__categories .category-des__img,
  #wadaiko .main-wrapper .main-container .section.categories .section__categories .category-des__img,
  #bachi .main-wrapper .main-container .section.categories .section__categories .category-des__img,
  #shinobue .main-wrapper .main-container .section.categories .section__categories .category-des__img,
  #narimono .main-wrapper .main-container .section.categories .section__categories .category-des__img,
  #other .main-wrapper .main-container .section.categories .section__categories .category-des__img {
    display: none;
  }
  #category .main-wrapper .main-container .section.categories .section__categories--card,
  #yagibushi .main-wrapper .main-container .section.categories .section__categories--card,
  #wadaiko .main-wrapper .main-container .section.categories .section__categories--card,
  #bachi .main-wrapper .main-container .section.categories .section__categories--card,
  #shinobue .main-wrapper .main-container .section.categories .section__categories--card,
  #narimono .main-wrapper .main-container .section.categories .section__categories--card,
  #other .main-wrapper .main-container .section.categories .section__categories--card {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 0;
    border: 1px solid #e0e0e0;
  }
  #category .main-wrapper .main-container .section.categories .section__categories--card .categories__card--contents,
  #yagibushi .main-wrapper .main-container .section.categories .section__categories--card .categories__card--contents,
  #wadaiko .main-wrapper .main-container .section.categories .section__categories--card .categories__card--contents,
  #bachi .main-wrapper .main-container .section.categories .section__categories--card .categories__card--contents,
  #shinobue .main-wrapper .main-container .section.categories .section__categories--card .categories__card--contents,
  #narimono .main-wrapper .main-container .section.categories .section__categories--card .categories__card--contents,
  #other .main-wrapper .main-container .section.categories .section__categories--card .categories__card--contents {
    text-align: center;
  }
  #category .main-wrapper .main-container .section.categories .section__categories--card .categories__card--productName,
  #yagibushi .main-wrapper .main-container .section.categories .section__categories--card .categories__card--productName,
  #wadaiko .main-wrapper .main-container .section.categories .section__categories--card .categories__card--productName,
  #bachi .main-wrapper .main-container .section.categories .section__categories--card .categories__card--productName,
  #shinobue .main-wrapper .main-container .section.categories .section__categories--card .categories__card--productName,
  #narimono .main-wrapper .main-container .section.categories .section__categories--card .categories__card--productName,
  #other .main-wrapper .main-container .section.categories .section__categories--card .categories__card--productName {
    margin-bottom: 5px;
    text-align: center;
    font-size: 15px;
    min-height: 60px;
    max-height: 60px;
    overflow-y: auto;
  }
  /* --------------------------------------------
    PRODUCT PAGES
  ----------------------------------------------- */
  .header h4 {
    line-height: 24px;
  }
  .section.product .breadcrumbs-product {
    line-height: 20px;
  }
  .section.product .product__container {
    padding: 30px 5vw;
  }
  .section.product .product__container .col.product-img__container {
    width: 100%;
    min-height: unset;
  }
  .section.product .product__container .col.product-img .product-selections {
    width: 100%;
    min-width: 100%;
  }
  .section.product .product__container .col.product-info {
    flex: unset;
    padding: 10px 0;
    max-width: 100%;
  }
  .section.product .product__container .col.product-info .product-main-img {
    min-width: unset;
  }
  .section.product .product__container .col.product-info .product-main-img img {
    min-width: 400px;
    max-width: 400px;
  }
  .section.product .product__container .col.product-info__container {
    margin-bottom: 10px;
    line-height: 1.6;
  }
  .section.product .product__container .col.product-info__container h5 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .section.product .product__container .col.product-info__title {
    text-align: center;
  }
  .section.product .product__container .col.product-info__content--guide {
    font-size: 16px;
    line-height: 1.6;
  }
  .section.product .product__container .col.product-info__content--guide small {
    margin-right: 15px;
  }
  .section.product .product__container .product-cart__content--title {
    padding: 10px 0;
    font-size: 30px;
    line-height: 35px;
  }
  .section.description .description__container {
    padding: 20px 5vw;
  }
  .section.other-items .other-items__container {
    margin: 0;
    padding: 30px 10px;
  }
  .section.other-items .other-items__box .col {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .section.other-items .other-items__box .col .item-card--title {
    text-align: center;
  }
  .section.other-items button.next-btn, .section.other-items button.prev-btn {
    top: 8px;
  }
  .section.other-items button.next-btn i.fas, .section.other-items button.prev-btn i.fas {
    font-size: 25px;
  }
}
/* --------------------------------------------
  Media Query：MOBILE max 390
----------------------------------------------- */
@media (max-width: 390px) {
  /* --------------------------------------------
    NAVBAR
  ----------------------------------------------- */
  .navbar .nav .logo-container .logo-link .itoro-brand {
    width: 90px;
  }
  .navbar .nav .logo-container .logo-link img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  /* --------------------------------------------
    HOME (index)
  ----------------------------------------------- */
  .section.showcase .section__showcase--content {
    padding: 2rem 1rem;
  }
  .section.showcase .section__showcase--content .sub-branding {
    font-size: 22px;
    line-height: 24px;
  }
  .section.showcase .section__showcase--content .branding {
    font-size: 35px;
  }
  .section.showcase .section__showcase--content p {
    font-size: 16px;
  }
  .section.slide .section__slide--title {
    font-size: 20px;
  }
  .section.slide .section__slide--container .prev-btn, .section.slide .section__slide--container .next-btn {
    height: 54px;
  }
  .section.slide .section__slide--boxes {
    width: 100%;
  }
  .section.slide .section__slide--box .product__card {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .section.slideAuto .section__slideAuto--title {
    font-size: 20px;
  }
  .section.slideAuto .section__slideAuto--container .prevAuto-btn, .section.slideAuto .section__slideAuto--container .nextAuto-btn {
    top: 27px;
    height: 54px;
  }
  .section.slideAuto .section__slideAuto--boxes {
    width: 100%;
  }
  .section.slideAuto .section__slideAuto--box .product__cardAuto {
    min-width: 145px;
  }
  .section.shop .section__shop.section-3 {
    min-height: 360px;
  }
  .section.shop .section__shop--container {
    width: 186px;
  }
  .mobileMenu.is-open {
    padding: 20px 10px;
  }
  #about .aboutus-info {
    top: 300%;
  }
  /* --------------------------------------------
    CATEGORY
  ----------------------------------------------- */
  #category .main-wrapper .main-container .section.categories .section__categories .category-des,
  #yagibushi .main-wrapper .main-container .section.categories .section__categories .category-des,
  #wadaiko .main-wrapper .main-container .section.categories .section__categories .category-des,
  #bachi .main-wrapper .main-container .section.categories .section__categories .category-des,
  #shinobue .main-wrapper .main-container .section.categories .section__categories .category-des,
  #narimono .main-wrapper .main-container .section.categories .section__categories .category-des,
  #other .main-wrapper .main-container .section.categories .section__categories .category-des {
    margin-bottom: 10px;
  }
  #category .main-wrapper .main-container .section.categories .section__categories--card,
  #yagibushi .main-wrapper .main-container .section.categories .section__categories--card,
  #wadaiko .main-wrapper .main-container .section.categories .section__categories--card,
  #bachi .main-wrapper .main-container .section.categories .section__categories--card,
  #shinobue .main-wrapper .main-container .section.categories .section__categories--card,
  #narimono .main-wrapper .main-container .section.categories .section__categories--card,
  #other .main-wrapper .main-container .section.categories .section__categories--card {
    padding: 3px;
  }
  #category .main-wrapper .main-container .section.categories .section__categories--card img,
  #yagibushi .main-wrapper .main-container .section.categories .section__categories--card img,
  #wadaiko .main-wrapper .main-container .section.categories .section__categories--card img,
  #bachi .main-wrapper .main-container .section.categories .section__categories--card img,
  #shinobue .main-wrapper .main-container .section.categories .section__categories--card img,
  #narimono .main-wrapper .main-container .section.categories .section__categories--card img,
  #other .main-wrapper .main-container .section.categories .section__categories--card img {
    width: 100%;
    margin: 5px 0;
  }
  #category .main-wrapper .main-container .section.categories .section__categories--card .categories__card--productName,
  #yagibushi .main-wrapper .main-container .section.categories .section__categories--card .categories__card--productName,
  #wadaiko .main-wrapper .main-container .section.categories .section__categories--card .categories__card--productName,
  #bachi .main-wrapper .main-container .section.categories .section__categories--card .categories__card--productName,
  #shinobue .main-wrapper .main-container .section.categories .section__categories--card .categories__card--productName,
  #narimono .main-wrapper .main-container .section.categories .section__categories--card .categories__card--productName,
  #other .main-wrapper .main-container .section.categories .section__categories--card .categories__card--productName {
    font-size: 14px;
    min-height: 50px;
    max-height: 50px;
    overflow-y: auto;
  }
  #category .main-wrapper .main-container .section.categories .section__categories--card .categories__card--sellPrice,
  #yagibushi .main-wrapper .main-container .section.categories .section__categories--card .categories__card--sellPrice,
  #wadaiko .main-wrapper .main-container .section.categories .section__categories--card .categories__card--sellPrice,
  #bachi .main-wrapper .main-container .section.categories .section__categories--card .categories__card--sellPrice,
  #shinobue .main-wrapper .main-container .section.categories .section__categories--card .categories__card--sellPrice,
  #narimono .main-wrapper .main-container .section.categories .section__categories--card .categories__card--sellPrice,
  #other .main-wrapper .main-container .section.categories .section__categories--card .categories__card--sellPrice {
    position: relative;
    justify-content: flex-end;
    height: 35px;
    margin: 5px 0 0;
  }
  #category .main-wrapper .main-container .section.categories .section__categories--card .categories__card--actualPrice,
  #yagibushi .main-wrapper .main-container .section.categories .section__categories--card .categories__card--actualPrice,
  #wadaiko .main-wrapper .main-container .section.categories .section__categories--card .categories__card--actualPrice,
  #bachi .main-wrapper .main-container .section.categories .section__categories--card .categories__card--actualPrice,
  #shinobue .main-wrapper .main-container .section.categories .section__categories--card .categories__card--actualPrice,
  #narimono .main-wrapper .main-container .section.categories .section__categories--card .categories__card--actualPrice,
  #other .main-wrapper .main-container .section.categories .section__categories--card .categories__card--actualPrice {
    position: absolute;
    top: -10px;
    left: 0;
  }
  #category .main-wrapper .main-container .section.categories .section__categories--card .categories__card--contents .detail-btn,
  #yagibushi .main-wrapper .main-container .section.categories .section__categories--card .categories__card--contents .detail-btn,
  #wadaiko .main-wrapper .main-container .section.categories .section__categories--card .categories__card--contents .detail-btn,
  #bachi .main-wrapper .main-container .section.categories .section__categories--card .categories__card--contents .detail-btn,
  #shinobue .main-wrapper .main-container .section.categories .section__categories--card .categories__card--contents .detail-btn,
  #narimono .main-wrapper .main-container .section.categories .section__categories--card .categories__card--contents .detail-btn,
  #other .main-wrapper .main-container .section.categories .section__categories--card .categories__card--contents .detail-btn {
    height: 35px;
    margin-bottom: 5px;
    font-size: 15px;
  }
  #category .main-wrapper .main-container .section.categories .section__categories--card .categories__card--icon,
  #yagibushi .main-wrapper .main-container .section.categories .section__categories--card .categories__card--icon,
  #wadaiko .main-wrapper .main-container .section.categories .section__categories--card .categories__card--icon,
  #bachi .main-wrapper .main-container .section.categories .section__categories--card .categories__card--icon,
  #shinobue .main-wrapper .main-container .section.categories .section__categories--card .categories__card--icon,
  #narimono .main-wrapper .main-container .section.categories .section__categories--card .categories__card--icon,
  #other .main-wrapper .main-container .section.categories .section__categories--card .categories__card--icon {
    top: 5px;
    left: 5px;
  }
  #category .main-wrapper .main-container .section.categories .section__categories--card .categories__card--icon span.icon-rsv,
  #yagibushi .main-wrapper .main-container .section.categories .section__categories--card .categories__card--icon span.icon-rsv,
  #wadaiko .main-wrapper .main-container .section.categories .section__categories--card .categories__card--icon span.icon-rsv,
  #bachi .main-wrapper .main-container .section.categories .section__categories--card .categories__card--icon span.icon-rsv,
  #shinobue .main-wrapper .main-container .section.categories .section__categories--card .categories__card--icon span.icon-rsv,
  #narimono .main-wrapper .main-container .section.categories .section__categories--card .categories__card--icon span.icon-rsv,
  #other .main-wrapper .main-container .section.categories .section__categories--card .categories__card--icon span.icon-rsv {
    margin: 0;
    padding: 2px;
    font-size: 14px;
    opacity: 0.8;
  }
  /* --------------------------------------------
    PRODUCT PAGES
  ----------------------------------------------- */
  .header h4 {
    font-size: 16px;
    line-height: 20px;
  }
  .section.product {
    overflow-x: hidden;
  }
  .section.product .breadcrumbs-product {
    padding: 10px !important;
    line-height: 18px;
  }
  .section.product .product__container {
    padding: 0px 10px;
  }
  .section.product .product__container .product-img {
    padding: 0;
  }
  .section.product .product__container .product-img__container {
    width: 100%;
    min-height: unset;
    padding: 10px 0;
  }
  .section.product .product__container .product-info__title, .section.product .product__container .product-info h5, .section.product .product__container .product-info p {
    line-height: 24px;
    margin-bottom: 10px;
  }
  .section.product .product__container .product-info .product-main-img {
    align-items: flex-start;
  }
  .section.product .product__container .product-info .product-main-img img {
    min-width: 320px !important;
    max-width: 320px !important;
  }
  .section.product .product__container .product-info__content--guide {
    font-size: 15px;
  }
  .section.product .product__container .product-cart__content--title {
    font-size: 22px;
  }
  .section.other-items .other-items__box .col .item-card {
    padding: 5px;
  }
  .section.other-items .other-items__box .col .item-card span.icon-rsv {
    top: 40%;
    padding: 0;
    font-size: 12px;
    opacity: 0.8;
  }
  .section.other-items .other-items__box .col .item-card--sellPrice {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    height: 35px;
    margin: 5px 0 0;
  }
  .section.other-items .other-items__box .col .item-card--actualPrice {
    position: absolute;
    top: -10px;
    left: 0;
  }
}
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #001e43;
  width: 100%;
  height: 60px;
  padding: 10px;
  font-size: 25px;
  background: rgb(127, 127, 255);
  background: linear-gradient(135deg, rgba(127, 127, 255, 0.5) 0%, rgb(255, 255, 255) 50%, rgba(127, 127, 255, 0.5) 100%);
}

.section {
  width: 100%;
}
.section .col {
  flex: 1;
}
.section .col.product-info {
  flex: 2;
}
.section.product {
  width: 100%;
}
.section.product .breadcrumbs-product {
  display: block;
  width: 100%;
  padding: 10px 20px;
  font-size: 14px;
  color: #808080;
}
.section.product .breadcrumbs-product a {
  color: #7f7fff;
}
.section.product .breadcrumbs-product i {
  margin: 0 10px;
  opacity: 0.8;
}
.section .product {
  width: 100%;
}
.section .product__container {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  padding: 50px 5vw;
  background-color: #fff;
  overflow-x: hidden;
}
.section .product__container .product-img, .section .product__container .product-main-img, .section .product__container .product-info, .section .product__container .product-cart {
  width: 100%;
  padding: 10px;
}
.section .product__container .product-img {
  position: relative;
}
.section .product__container .product-img__container {
  display: flex;
  align-items: center;
  width: 350px;
  min-height: 350px;
  overflow: hidden;
}
.section .product__container .product-img__container img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section .product__container .product-img__thumbnails {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.section .product__container .product-img__thumbnails .thumbnail {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin: 3px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
}
.section .product__container .product-img__thumbnails .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}
.section .product__container .product-img__thumbnails .thumbnail.active {
  opacity: 0.5;
}
.section .product__container .product-img .product-selections {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  height: 60px;
  margin-top: 1rem;
}
.section .product__container .product-img .product-selections label {
  position: absolute;
  top: 0;
  left: 0;
  color: #b9b9b9;
  font-size: 0.8em;
}
.section .product__container .product-img .product-selections select {
  font-family: inherit;
  text-transform: none;
  word-wrap: normal;
  width: 100%;
  margin-top: 1.5em;
  padding: 0.5em 1em;
  cursor: pointer;
  display: block;
  font-size: 1rem;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 3px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.section .product__container .product-img .product-selections select:focus {
  outline: none;
}
.section .product__container .product-info {
  position: relative;
}
.section .product__container .product-info .product-main-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 600px;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #e0e0e0;
  border-radius: 5px;
}
.section .product__container .product-info .product-main-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section .product__container .product-info__container {
  line-height: 2;
}
.section .product__container .product-info__container h5 {
  color: #ef6c00;
  font-size: 1rem;
}
.section .product__container .product-info__title {
  margin-bottom: 20px;
  font-size: 20px;
  color: #001e43;
}
.section .product__container .product-info__type {
  color: #b9b9b9;
  font-size: 0.9em;
}
.section .product__container .product-info__causion {
  color: #808080;
  margin-top: 10px;
  font-size: 0.9em;
  line-height: 24px;
}
.section .product__container .product-info__icons {
  display: flex;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  margin: 20px 0;
}
.section .product__container .product-info__icons .iconOverC, .section .product__container .product-info__icons .iconRsv {
  padding: 3px 5px;
  margin-right: 10px;
  background-color: #019201;
  color: #fff;
  font-weight: 400;
  border-radius: 3px;
}
.section .product__container .product-info__icons .iconRsv {
  color: #019201;
  background-color: transparent;
  border: 1px solid #019201;
}
.section .product__container .product-info__content {
  width: 100%;
  padding: 10px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.section .product__container .product-info__content--guide {
  color: #808080;
}
.section .product__container .product-info__content--guide p {
  color: #019201;
}
.section .product__container .product-info__content--guide a {
  display: flex;
  align-items: center;
  color: #019201;
}
.section .product__container .product-info__content--guide a i {
  margin-left: 5px;
  font-size: 12px;
}
.section .product__container .product-info__content--guide small {
  display: block;
  margin-left: 15px;
}
.section .product__container .product-info.show .product-main-img {
  display: flex;
  z-index: 1;
}
.section .product__container .product-cart {
  background-color: #fafafa;
  border-radius: 20px;
}
.section .product__container .product-cart__container {
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
}
.section .product__container .product-cart__container form {
  width: 100%;
  margin: 30px 0;
  color: #808080;
  line-height: 2;
}
.section .product__container .product-cart__container form .cart-price.attention {
  color: #b71c1c;
}
.section .product__container .product-cart__container form .cart-price.attention small {
  color: #808080;
}
.section .product__container .product-cart__container form .cart-price.attention .price-detail {
  color: #b71c1c;
}
.section .product__container .product-cart__container form .actu-price {
  font-size: 0.85em;
  color: #383838;
  text-decoration: line-through;
}
.section .product__container .product-cart__container form .discount-txt {
  display: inline-block;
  padding: 2px;
  text-align: center;
  font-size: 13px;
  line-height: 1.4;
  color: #fff;
  border: 1px solid #b71c1c;
  background-color: #b71c1c;
  border-radius: 1px;
}
.section .product__container .product-cart__container form .discount-pri {
  margin-left: 10px;
  font-size: 0.85em;
  color: #383838;
}
.section .product__container .product-cart__container form .price-detail {
  font-size: 30px;
  color: #383838;
  font-weight: 700;
}
.section .product__container .product-cart__container form .tax-detail {
  margin-left: 5px;
  opacity: 0.7;
  font-size: 12px;
}
.section .product__container .product-cart__container form input {
  padding: 3px 0;
  margin-left: 10px;
  font-family: inherit;
  font-size: inherit;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  text-align: center;
}
.section .product__container .product-cart__container form input:focus {
  outline: none;
  border: 1px solid #7f7fff;
}
.section .product__container .product-cart__container form input.btn-cart-detail {
  width: 100%;
  margin: 10px 0;
  padding: 10px 0;
  border: none;
  outline: none;
  border-radius: 3px;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  color: #fff;
  border-color: #f38a00;
  background-image: linear-gradient(to bottom, #f38a00 0, #ef6c00 100%);
  background-repeat: repeat;
  cursor: pointer;
}
.section .product__container .product-cart__container form input.btn-cart-detail:focus {
  outline: none;
}
.section .product__container .product-cart__container form input.btn-cart-detail:hover {
  transform: scale(0.98);
}
.section .product__container .product-cart__container form .expRsv {
  padding: 10px 0;
  color: #b71c1c;
  font-size: 15px;
  line-height: 24px;
}
.section .product__container .product-cart__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
.section .product__container .product-cart__content--title {
  padding: 30px 0;
  color: #b71c1c;
  font-size: 18px;
}
.section .product__container .product-cart__content .related-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  width: 100%;
  margin-bottom: 30px;
}
.section .product__container .product-cart__content .related-img img {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.section .product__container .product-cart__content .related-img img:hover {
  opacity: 0.6;
}
.section .product__container .product-cart__content .related-img p {
  margin: 5px 0 30px;
  font-size: 14px;
  line-height: 1.2;
  display: none;
}
.section.description {
  width: 100%;
}
.section .description__container {
  padding: 50px 5vw;
  background-color: #fff;
}
.section .description__container p {
  padding: 5px 0;
}
.section .description__title {
  font-size: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}
.section.other-items {
  position: relative;
  margin-bottom: 50px;
}
.section.other-items .prev-btn, .section.other-items .next-btn {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  font-size: 35px;
  background-color: transparent;
  color: #001e43;
  border: none;
  opacity: 0.5;
  transition: opacity 0.3s ease-in;
}
.section.other-items .prev-btn .fas, .section.other-items .next-btn .fas {
  cursor: pointer;
}
.section.other-items .prev-btn:hover, .section.other-items .next-btn:hover {
  opacity: 1;
}
.section.other-items .prev-btn {
  position: absolute;
  left: 5vw;
}
.section.other-items .next-btn {
  position: absolute;
  right: 5vw;
}
.section .other-items__title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  background: rgb(127, 127, 255);
  background: linear-gradient(135deg, rgba(127, 127, 255, 0.5) 0%, rgb(255, 255, 255) 50%, rgba(127, 127, 255, 0.5) 100%);
  color: #001e43;
}
.section .other-items__container {
  display: flex;
  padding: 50px 5vw;
  margin: 0 35px;
}
.section .other-items__box {
  display: flex;
  align-items: center;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.section .other-items__box::-webkit-scrollbar {
  display: none;
}
.section .other-items__box .col {
  display: flex;
  flex-direction: column;
  flex: 0 0 25%;
  max-width: 25%;
  height: 100%;
  padding: 5px;
  color: #808080;
}
.section .other-items__box .item-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}
.section .other-items__box .item-card span.icon-rsv {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 90px;
  padding: 3px;
  border-color: #b71c1c;
  background-color: #b71c1c;
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.section .other-items__box .item-card--img {
  width: 100%;
  cursor: pointer;
  transition: opacity 0.3s ease-in;
}
.section .other-items__box .item-card--img:hover {
  opacity: 0.8;
}
.section .other-items__box .item-card--title {
  height: 60px;
  padding: 5px 0;
  line-height: 1.4;
  font-size: 15px;
  font-weight: 300;
  color: #7f7fff;
}
.section .other-items__box .item-card--sellPrice {
  display: flex;
  align-items: center;
  margin: 5px 0;
  font-size: 18px;
  font-weight: 600;
}
.section .other-items__box .item-card--actualPrice {
  font-size: 14px;
  margin: 3px 5px 0 0;
  text-decoration: line-through;
  color: #808080;
  opacity: 0.6;
}/*# sourceMappingURL=producPage.css.map */