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

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

body.add-set {
  width: 100%;
  color: #333;
  min-width: 1220px;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  body.add-set {
    min-width: auto;
  }
}
@media screen and (max-width: 767px) {
  body.add-set.menu-open {
    overflow-y: hidden;
  }
}
body.add-set.modal-open {
  overflow-y: hidden;
}
body.add-set.modal-open .header {
  display: none;
}

#primary {
  width: 100%;
  padding: 0;
  margin: 0;
}

a {
  color: #333;
  transition: 0.2s linear;
}
a:hover {
  color: #333;
  opacity: 0.7;
}
a:visited {
  color: #333;
}
a:active {
  color: #707070;
}
a.link {
  text-decoration: underline;
}

input[type=radio] {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #000;
  content: "";
}

input[type=checkbox] {
  width: 100%;
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  border-radius: 4px;
  vertical-align: -5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=checkbox]:checked:before {
  position: absolute;
  top: 2px;
  left: 4px;
  transform: rotate(50deg);
  width: 6px;
  height: 9px;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
  content: "";
}

input[type=textarea],
input[type=select] {
  width: 100%;
  border: 1px solid #000;
  border-radius: 4px;
  padding: 8px;
}

.add-set .common-container {
  width: 1220px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .add-set .common-container {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (min-width: 768px) {
  .add-set .common-container__column {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
}
@media screen and (min-width: 768px) {
  .add-set .common-container__column .side {
    width: 250px;
  }
}
@media screen and (max-width: 767px) {
  .add-set .common-container__column .side {
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
  }
}
@media screen and (max-width: 767px) {
  .add-set .common-container__column .side.active {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .add-set .common-container__column .side.active::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
  }
}
@media screen and (max-width: 767px) {
  .add-set .common-container__column .side .modal-body {
    width: calc(100% - 32px);
    max-height: 85vh;
    border-radius: 8px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    overflow-y: auto;
  }
}
@media screen and (min-width: 768px) {
  .add-set .common-container__column .side .modal-close {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .add-set .common-container__column .side .modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 6;
    background: #000;
    color: #fff;
    font-size: 24px;
    border-radius: 50%;
  }
}
.add-set .common-container__column .main {
  flex: 1;
}

.heading {
  font-size: 24px;
  font-weight: bold;
  margin: 120px 0 16px;
}
@media screen and (max-width: 767px) {
  .heading {
    font-size: 20px;
    margin-top: 80px;
  }
}

.tab__btn-wrap {
  display: flex;
  margin: 40px 0;
}
.tab__btn {
  font-size: 16px;
  color: #707070;
  border-bottom: 1px solid #ddd;
  padding: 0 24px 12px;
}
.tab__btn.is-active {
  font-weight: bold;
  color: #333;
  border-bottom: 1px solid #333;
}

.common-slider .slide-arrow {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
}
.common-slider .prev-arrow {
  left: 24px;
}
.common-slider .prev-arrow::after {
  content: "";
  width: 12px;
  height: 12px;
  border-bottom: 3px solid #707070;
  border-left: 3px solid #707070;
  position: absolute;
  left: 19px;
  top: 17px;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .common-slider .prev-arrow {
    left: calc(50% - 100px);
  }
}
.common-slider .next-arrow {
  right: 24px;
}
.common-slider .next-arrow::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid #707070;
  border-right: 3px solid #707070;
  position: absolute;
  right: 19px;
  top: 17px;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .common-slider .next-arrow {
    right: calc(50% - 100px);
  }
}
.common-slider .slick-dots {
  bottom: -32px;
}
.common-slider .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .common-slider .slick-dots li {
    width: 8px;
    height: 8px;
    margin: 0 3px;
  }
}
.common-slider .slick-dots li.slick-active {
  background: rgba(0, 0, 0, 0.5);
}
.common-slider .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
}
.common-slider .slick-dots li button::before {
  font-size: 0;
  line-height: 0;
  top: auto;
  left: auto;
  width: auto;
  height: auto;
  content: "";
  opacity: 1;
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
  margin-top: 40px;
}

.btn {
  min-width: 160px;
  border-radius: 40px;
  padding: 8px 24px;
}
.btn--secondary {
  background: #000;
  color: #fff !important;
}
.btn--secondary:hover {
  background: #000;
  color: #fff !important;
}

.accordion-trigger {
  display: inline-block;
  cursor: pointer;
  transition: 0.2s;
}
.accordion-trigger:hover {
  opacity: 0.7;
  transition: 0.2s;
}
.accordion-trigger::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.accordion-trigger.is-active::after {
  transform: translateY(-20%) rotate(-135deg);
}

.accordion-content {
  display: none;
}

#dvCheckList .productCheckList {
  float: none;
  margin: 0;
}

#dvCheckList .productCheckList ul {
  width: 100%;
}

#dvCheckList .productCheckList ul li {
  margin: 4px 0;
}

#dvCheckList .productCheckList ul li.thumnail a {
  display: inline-block;
  line-height: 1;
}

#dvCheckList .productCheckList ul li.thumnail img {
  width: 100%;
}

#dvCheckList .productCheckList ul li.thumnail .soldout {
  position: absolute;
  top: 8px;
  left: 8px;
  display: inline-block;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  padding: 2px 8px;
  width: auto;
  height: auto;
  line-height: 1.4;
  opacity: 1;
}

.list-product {
  display: grid;
  gap: 40px 24px;
}
@media screen and (max-width: 767px) {
  .list-product {
    gap: 24px 16px;
  }
}
.list-product__col3-2 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .list-product__col3-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.list-product__col4-2 {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .list-product__col4-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.list-product__col5-2 {
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 767px) {
  .list-product__col5-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.list-product__col6-2 {
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 767px) {
  .list-product__col6-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.list-product__col3-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .list-product__col3-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.list-product__col4-3 {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .list-product__col4-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.list-product__col5-3 {
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 767px) {
  .list-product__col5-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.list-product__col6-3 {
  grid-template-columns: repeat(6, 1fr);
  gap: 24px 16px;
}
@media screen and (max-width: 767px) {
  .list-product__col6-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 8px;
  }
}
.list-product .thumb {
  position: relative;
  line-height: 1;
}
.list-product .thumb a {
  display: inline-block;
}
.list-product .thumb img {
  width: 100%;
  margin: 0 auto;
}
.list-product .thumb .soldout {
  position: absolute;
  top: 8px;
  left: 8px;
  display: inline-block;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  padding: 2px 8px;
}
.list-product .productName,
.list-product .name {
  font-size: 14px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 8px;
}
.list-product .productPrice,
.list-product .price {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 8px;
}
.list-product .productPrice .tax,
.list-product .price .tax {
  font-size: 12px;
}
.list-product .sale {
  color: #C5412D;
}
.list-product__icon {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 14px;
}
.list-product__icon img {
  height: 22px;
}
.list-product .rank {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
}

#Head {
  background-color: #fff;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px 40px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  gap: 40px;
  transition: 0.5s;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 16px 8px;
    gap: 8px;
    justify-content: space-between;
  }
}
.header.hide {
  top: -100%;
  transition: 1s;
}
.header__logo img {
  width: 88px;
}
@media screen and (max-width: 767px) {
  .header__logo img {
    width: 170px;
  }
}
.header__logo a {
  display: inline-block;
}
.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .header__nav {
    flex: none;
  }
}
.header__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
}
@media screen and (max-width: 767px) {
  .header__menu {
    display: none;
  }
}
.header__menu .has-child {
  position: relative;
  padding-right: 16px;
  cursor: pointer;
}
.header__menu .has-child::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #707070;
  border-bottom: 2px solid #707070;
  position: absolute;
  right: 0;
  top: 3px;
  transform: rotate(45deg);
}
.header__menu .has-child.is-active::after {
  top: 7px;
  transform: rotate(-135deg);
}
.header__menu-child {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  width: 100%;
  background-color: #f0f0f0;
  padding: 64px 0;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .header__menu-child {
    position: static;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .header__menu-child .common-container {
    padding: 0;
  }
}
.header__item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (min-width: 768px) {
  .header__item {
    gap: 16px 40px;
  }
}
.header__item > li {
  border-bottom: 1px solid #ccc;
}
.header__item a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
}
.header__item a span {
  flex: 1;
}
.header__utility {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .header__utility {
    gap: 8px;
  }
}
@media screen and (min-width: 768px) {
  .header__utility .search {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header__utility img {
    width: 32px;
  }
}
@media screen and (max-width: 767px) {
  .header__search {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .header .hamburger-menu {
    display: none;
  }
}

#HeadSearch {
  position: relative;
  width: 240px;
  height: auto;
  padding: 0;
  float: none;
}

#HeadSearch .wrapSearch,
#HeadSearch .textBox {
  width: 100%;
}

#HeadSearch .textBox input {
  width: 100%;
  font-size: 14px;
  color: #333;
  background-color: #f0f0f0;
  padding: 12px 10px;
}

#HeadSearch .textBox input::-webkit-input-placeholder {
  color: #999;
}

#HeadSearch .btnSearch {
  width: auto;
  line-height: 0;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

#HeadSearch .btnSearch a {
  display: inline-block;
}

#HeadSearch .btnSearch a img {
  width: 36px;
}

#HeadCartView {
  width: auto;
  height: auto;
  float: none;
  padding: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  #HeadCartView img {
    width: 20px;
  }
}
#HeadCartView .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #C5412D;
  font-size: 11px;
  color: #fff;
  position: absolute;
  top: -6px;
  right: -8px;
}
#HeadCartView .menu {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  background-color: #f0f0f0;
  min-width: 220px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #HeadCartView .menu {
    display: none !important;
  }
}
#HeadCartView .dvMiniCart {
  background: none;
}

#HeadCartView > a {
  height: auto;
  line-height: 1;
}

.dvMiniCart {
  border-radius: 8px;
  padding: 8px;
}
.dvMiniCart .miniCart {
  display: flex;
  gap: 16px;
  margin: 16px 0;
}
.dvMiniCart .miniCart__img {
  width: 30%;
}
.dvMiniCart .miniCart__text {
  flex: 1;
}

.dvMiniCart ul li.productInfo .productName,
.dvMiniCart ul li.productInfo .productPrice {
  float: none;
  display: block;
  width: 200px;
  margin-bottom: 4px;
}

@media screen and (max-width: 767px) {
  .hamburger-menu .menu-trigger {
    position: relative;
    width: 32px;
    height: 32px;
  }
  .hamburger-menu .menu-trigger span {
    width: 14px;
    height: 2px;
    border-radius: 2px;
    background: #000;
    position: absolute;
  }
  .hamburger-menu .menu-trigger span:first-child {
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
  }
  .hamburger-menu .menu-trigger span:nth-child(2) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .hamburger-menu .menu-trigger span:last-child {
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
  }
  .hamburger-menu .menu-content {
    position: fixed;
    left: -85vw;
    top: 0;
    width: 85vw;
    height: 100%;
    background: #fff;
    transition: all 0.5s;
    z-index: 3;
  }
  .hamburger-menu .menu-content.open {
    left: 0;
  }
  .hamburger-menu .menu-content .header__menu {
    display: block;
  }
  .hamburger-menu .menu-content .header__menu > li {
    border-bottom: 1px solid #ddd;
  }
  .hamburger-menu .menu-content .header__menu > li a {
    display: block;
    padding: 12px 16px;
  }
  .hamburger-menu .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
  }
  .hamburger-menu .overlay.open {
    display: block;
    opacity: 1;
  }
  .hamburger-menu .menu-close {
    display: none;
    position: fixed;
    top: 24px;
    left: calc(85vw + 8px);
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    z-index: 3;
  }
  .hamburger-menu .menu-close::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .hamburger-menu .menu-close::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .hamburger-menu .menu-close.open {
    display: block;
  }
  .hamburger-menu .btn-wrap {
    padding: 32px 16px;
    margin-top: 0;
  }
  .hamburger-menu .header__menu {
    border-top: 1px solid #ddd;
  }
  .hamburger-menu .header__menu .has-child {
    display: block;
    width: 100%;
    padding: 12px 16px;
  }
  .hamburger-menu .header__menu .has-child::after {
    top: 18px;
    right: 16px;
  }
  .hamburger-menu .header__menu .has-child.is-active::after {
    top: 20px;
  }
  .hamburger-menu .header__item {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
  .hamburger-menu .header__item > li {
    border-bottom: none;
    border-top: 1px solid #ddd;
  }
  .hamburger-menu .header__item a {
    gap: 8px;
    padding: 8px 16px;
  }
  .hamburger-menu .header__category {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
  }
  .hamburger-menu .header__category li {
    display: block;
    border-bottom: none;
    padding-bottom: 0;
  }
  .hamburger-menu .header__category-parent {
    display: none;
  }
  .hamburger-menu .header__category-list {
    display: block;
  }
  .hamburger-menu .header__category-list a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-right: none;
  }
  .hamburger-menu .header__category-list a:not(.header__category-parent) {
    padding-left: 56px;
  }
  .hamburger-menu .header__category-list a:not(.header__category-parent)::before {
    content: "";
    width: 8px;
    height: 8px;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    position: absolute;
    left: 32px;
    top: 16px;
  }
  .hamburger-menu .menu-content__list li {
    border-bottom: 1px solid #000;
    padding: 0 16px;
  }
  .hamburger-menu .menu-content__list li a {
    display: block;
    font-size: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
#Foot {
  border-top: none;
  padding: 0;
}

.footer {
  background-color: #f0f0f0;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .footer {
    letter-spacing: 0;
  }
}
.footer__inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px;
  }
}
.footer__logo a {
  display: block;
}
.footer__logo img {
  width: 160px;
}
@media screen and (max-width: 767px) {
  .footer__logo img {
    width: 120px;
  }
}
.footer__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}
.footer__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer__nav {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    flex-direction: column;
  }
}
.footer__nav-item {
  min-width: 200px;
}
@media screen and (max-width: 767px) {
  .footer__nav-item {
    min-width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0 16px;
  }
}
.footer__nav-item p {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 0;
}
@media screen and (max-width: 767px) {
  .footer__nav-item p {
    width: calc(50% - 8px);
  }
}
.footer__nav-item ul {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .footer__nav-item ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0 16px;
  }
}
.footer__nav-item li {
  font-size: 14px;
  padding: 4px 0;
}
@media screen and (max-width: 767px) {
  .footer__nav-item li {
    width: calc(50% - 8px);
  }
}
.footer__nav-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .footer__nav-title {
    width: 100% !important;
  }
}
.footer__copy {
  font-size: 12px;
  font-weight: 400;
  color: #707070;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .footer__copy {
    text-align: center;
  }
}

.main-slider {
  margin: 24px 0 -40px;
}
@media screen and (max-width: 767px) {
  .main-slider {
    margin: 16px 0 0;
  }
}
.main-slider .slick-slide {
  padding: 0 12px;
}
@media screen and (max-width: 767px) {
  .main-slider .slick-slide {
    padding: 0 4px;
  }
}
.main-slider .slick-slide img {
  width: 100%;
}

.list-feature {
  margin: 0 -12px;
}
@media screen and (max-width: 767px) {
  .list-feature {
    width: 100vw;
    margin: 0 -16px;
  }
}
.list-feature__item {
  position: relative;
  margin: 0 12px;
}
@media screen and (max-width: 767px) {
  .list-feature__item {
    margin: 0 8px;
  }
}
.list-feature__img {
  text-align: center;
}
.list-feature__img img {
  max-width: 100%;
}
.list-feature__text {
  line-height: 1.7;
  margin-top: 12px;
}
.list-feature__title {
  font-size: 18px;
  font-weight: bold;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.list-feature__desc {
  font-size: 14px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 8px;
}

.list-info li {
  display: flex;
  gap: 56px;
  padding: 24px;
  border-bottom: 1px solid #e4e4e4;
}
@media screen and (max-width: 767px) {
  .list-info li {
    flex-wrap: wrap;
    gap: 8px 0;
    padding: 16px 0;
  }
}
.list-info li:last-child {
  border-bottom: none;
}
.list-info span {
  width: 100px;
  font-size: 14px;
  color: #707070;
  margin-top: 3px;
}
@media screen and (max-width: 767px) {
  .list-info span {
    width: 100%;
  }
}
.list-info__text {
  flex: 1;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .list-info__text {
    width: 100%;
  }
}
.list-info__text a {
  text-decoration: underline;
}

.category-head {
  text-align: center;
  background: url(../img/common/line.png) center bottom no-repeat;
  padding-bottom: 64px;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .category-head {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .category-head__logo img {
    width: 90% !important;
    max-width: 400px;
  }
}
.category-head__desc {
  font-size: 16px;
  text-align: center;
  line-height: 2;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .category-head__desc {
    text-align: left;
  }
}

.product-list-page__title {
  font-size: 28px;
  font-weight: 700;
  width: 100%;
  margin: 32px 0 16px;
}
@media screen and (max-width: 767px) {
  .product-list-page__title {
    font-size: 20px;
  }
}
.product-list-page__sort-wrap {
  display: flex;
  gap: 16px 24px;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .product-list-page__sort-wrap {
    flex-direction: column;
    margin: 24px 0;
  }
}
.product-list-page #pagination.above {
  margin: 0;
}
.product-list-page #pagination.above .add-pager__link-wrapper {
  display: none;
}
.product-list-page #pagination.above .add-pager__wrapper {
  padding: 4px 0;
}
.product-list-page #pagination.above .add-total {
  flex: 1;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .product-list-page #pagination.above .add-total {
    width: 100%;
  }
}
.product-list-page #pagination.above .add-total span {
  font-size: 20px;
}
.product-list-page #pagination.below {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .product-list-page #pagination.below {
    margin-top: 56px;
  }
}
.product-list-page #pagination.below .add-total {
  display: none;
}
.product-list-page #pagination.below .add-pager__wrapper {
  display: block;
}
.product-list-page #pagination.below .add-pager__link-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.product-list-page #pagination.below .add-num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 18px;
  font-weight: bold;
}
.product-list-page #pagination.below .add-back a {
  position: relative;
  color: rgba(0, 0, 0, 0);
}
.product-list-page #pagination.below .add-back a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-left: 2px solid #707070;
  border-bottom: 2px solid #707070;
  position: absolute;
  top: 4px;
  left: 0;
  transform: rotate(45deg);
}
.product-list-page #pagination.below .add-next a {
  position: relative;
  color: rgba(0, 0, 0, 0);
}
.product-list-page #pagination.below .add-next a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #707070;
  border-top: 2px solid #707070;
  position: absolute;
  top: 4px;
  right: 0;
  transform: rotate(45deg);
}

.detail-search-box {
  border: 2px solid #000;
  border-radius: 8px;
  padding: 24px 16px 40px;
}
@media screen and (max-width: 767px) {
  .detail-search-box {
    background-color: #fff;
    padding-top: 0;
  }
}
.detail-search-box__heading {
  background: url(../img/common/icon_filter_white.svg) left 16px center #000 no-repeat;
  background-size: 28px;
  color: #FFF;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  width: calc(100vw - 32px);
  padding: 12px 0;
  margin: 0 -16px 24px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
@media screen and (min-width: 768px) {
  .detail-search-box__heading {
    display: none;
  }
}
.detail-search-box dl {
  margin-bottom: 24px;
}
.detail-search-box dl:last-child {
  margin-bottom: 0;
}
.detail-search-box dt {
  font-size: 18px;
  font-weight: bold;
  display: block;
  padding-bottom: 8px;
}
.detail-search-box dt.accordion-trigger {
  position: relative;
  border-bottom: 1px solid #000;
  margin-bottom: 4px;
}
.detail-search-box dt.accordion-trigger::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 7px;
  right: 4px;
  transform: rotate(45deg);
}
.detail-search-box dt.accordion-trigger.is-active::after {
  top: 11px;
  transform: rotate(-135deg);
}
.detail-search-box .sort-category select {
  width: 100%;
  border: 1px solid #000;
  border-radius: 4px;
  padding: 10px 4px;
}
.detail-search-box .sort-tag li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0 8px 16px;
  border-bottom: 1px solid #e4e4e4;
  line-height: 1.7;
}
.detail-search-box .sort-tag input[type=checkbox] {
  width: 100%;
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  border-radius: 4px;
  vertical-align: -5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.detail-search-box .sort-tag input[type=checkbox]:checked:before {
  position: absolute;
  top: 2px;
  left: 4px;
  transform: rotate(50deg);
  width: 6px;
  height: 9px;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
  content: "";
}
.detail-search-box .sort-tag label {
  flex: 1;
}
.detail-search-box .sort-price li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0 8px 16px;
  border-bottom: 1px solid #e4e4e4;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.detail-search-box .sort-price input[type=radio] {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.detail-search-box .sort-price input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #000;
  content: "";
}
.detail-search-box .sort-price label {
  flex: 1;
}
.detail-search-box .sort-word input[type=search] {
  width: 100%;
  border: 1px solid #000;
  border-radius: 4px;
  padding: 8px;
}

#customSearchBtn {
  background: url(../img/common/icon_search_white.svg) left 4px center #000 no-repeat;
  color: #fff;
  border-radius: 8px;
  width: 100%;
  text-align: center;
  padding: 12px 8px 12px 24px;
  transition: 0.3s;
  cursor: pointer;
}
#customSearchBtn:hover {
  opacity: 0.7;
}

.add-set #sortBox {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  flex: 1;
  padding: 0;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .add-set #sortBox {
    flex-wrap: nowrap;
    gap: 8px;
  }
}
.add-set #sortBox .box {
  position: relative;
  float: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
@media screen and (max-width: 767px) {
  .add-set #sortBox .box {
    flex: 1;
  }
}
@media screen and (max-width: 767px) {
  .add-set #sortBox .box:last-child .nav {
    left: auto;
    right: 0;
  }
}
.add-set #sortBox .title {
  position: relative;
  font-size: 14px;
  cursor: pointer;
  margin: 0;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .add-set #sortBox .title {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 11px;
    letter-spacing: 0;
    margin-right: 0 !important;
  }
}
.add-set #sortBox .title:hover {
  opacity: 0.7;
}
.add-set #sortBox .title .selected {
  position: relative;
  font-weight: bold;
  padding-right: 16px;
}
@media screen and (max-width: 767px) {
  .add-set #sortBox .title .selected {
    width: calc((100vw - 24px - 32px) / 4);
    border: 1px solid #000;
    border-radius: 4px;
    padding: 8px 4px;
    font-size: 14px;
    font-weight: normal;
    overflow-x: hidden;
    word-break: keep-all;
  }
}
@media screen and (max-width: 767px) {
  .add-set #sortBox .title .selected::before {
    content: "";
    width: 16px;
    height: 100%;
    background: #FFF;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
  }
}
.add-set #sortBox .title .selected::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #707070;
  border-bottom: 2px solid #707070;
  position: absolute;
  right: 0;
  top: 2px;
  transform: rotate(45deg);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .add-set #sortBox .title .selected::after {
    top: 14px;
    right: 4px;
  }
}
.add-set #sortBox .nav {
  display: none;
  width: 160px;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #f9f9f9;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .add-set #sortBox .nav {
    right: auto;
    left: 0;
  }
}
.add-set #sortBox .nav li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.add-set #sortBox .nav li.active {
  font-size: 100%;
  padding: 6px 16px;
  height: auto;
  line-height: inherit;
  color: #333;
  background-color: #e9e9e9;
}
.add-set #sortBox .nav li a {
  padding: 6px 16px !important;
  height: auto !important;
  background-color: #f9f9f9 !important;
}

#divMultiVariation {
  display: none;
}

.product-detail__container {
  display: flex;
  gap: 24px 80px;
}
@media screen and (max-width: 767px) {
  .product-detail__container {
    flex-direction: column;
  }
}
.product-detail #dvProductDetailArea #detailImage {
  width: 558px;
}
@media screen and (max-width: 767px) {
  .product-detail #dvProductDetailArea #detailImage {
    width: 100vw;
    margin-left: -16px;
    margin-right: -16px;
  }
}
.product-detail #dvProductDetailArea #detailOne {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .product-detail #dvProductDetailArea #detailOne {
    width: 100%;
  }
}
.product-detail__slider img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .product-detail__slider img {
    border-radius: 16px;
  }
}
.product-detail__slider .slide-arrow {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .product-detail__slider .slide-arrow {
    width: 32px;
    height: 32px;
  }
}
.product-detail__slider .prev-arrow {
  left: 8px;
  background: url(../img/common/arrow_left.svg) center center no-repeat;
  background-size: contain;
}
.product-detail__slider .next-arrow {
  right: 8px;
  background: url(../img/common/arrow_right.svg) center center no-repeat;
  background-size: contain;
}
.product-detail__thumbnail {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .product-detail__thumbnail {
    margin: 8px 8px 0;
  }
}
.product-detail__thumbnail img {
  width: 100%;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .product-detail__thumbnail img {
    border-radius: 4px;
  }
}
.product-detail__thumbnail .slick-track {
  transform: unset !important;
  width: 100% !important;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .product-detail__thumbnail .slick-track {
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
  }
}
.product-detail__thumbnail .slick-track::before {
  content: none;
}
.product-detail__thumbnail .slick-track::after {
  content: none;
}
.product-detail__thumbnail .slick-slide {
  cursor: pointer;
}
.product-detail__thumbnail .slick-current img {
  border: 2px solid #000;
}
.product-detail__icon {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.product-detail__icon .soldout {
  font-size: 14px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 2px 12px;
}
.product-detail__catch {
  font-size: 16px;
  margin: 24px 0 16px;
}
.product-detail__name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}
.product-detail__id {
  font-size: 13px;
  color: #707070;
}
.product-detail .wrapProductPrice {
  margin: 16px 0 24px !important;
}
.product-detail .productPrice {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: bold;
}
.product-detail .productPrice span {
  font-size: 28px;
}
.product-detail__price--teiki {
  margin: 8px 0;
}
.product-detail__price--teiki .productPrice {
  font-size: 14px;
  font-weight: normal;
}
.product-detail__price--teiki .productPrice span {
  font-size: 20px;
}
.product-detail .selectValiation {
  margin: 0;
}
.product-detail__set-promotion {
  background: url(../img/common/icon_promotion.svg) #f7f7f7 left 8px center no-repeat;
  background-size: 24px;
  padding: 8px 16px 8px 36px;
  margin: 16px 0 !important;
}
.product-detail__option-value {
  margin-bottom: 16px;
}
.product-detail__option-value__checkbox {
  margin: 12px 0;
}
.product-detail__option-value__checkbox .checkbox-wrap {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.product-detail__option-value__checkbox .checkbox-wrap input {
  width: 20px;
  margin-top: 1px;
}
.product-detail__option-value__checkbox .checkbox-wrap label {
  flex: 1;
}
.product-detail__option-value__textbox {
  width: 100%;
  border: 1px solid #000;
  border-radius: 4px;
  padding: 12px 16px;
}
.product-detail__option-value .error_inline {
  margin-bottom: 4px;
}
.product-detail__option-value-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}
.product-detail #detailOne .productSellInfo {
  background: none;
  border: none;
  padding: 0;
}
.product-detail #detailOne .productSellInfo select {
  min-width: 300px;
  font-size: 16px;
  border: 1px solid #000;
  padding: 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .product-detail #detailOne .productSellInfo select {
    min-width: 100%;
  }
}
.product-detail #detailOne .productSellInfo .productAmount select {
  min-width: 88px;
  padding: 14px 12px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .product-detail #detailOne .productSellInfo .productAmount select {
    min-width: 72px;
    padding: 10px 8px;
  }
}
.product-detail__btn-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: none;
}
@media screen and (max-width: 767px) {
  .product-detail__btn-wrap {
    gap: 8px;
  }
}
.product-detail__btn-wrap .btnCart {
  flex: 1;
  margin: 0 !important;
}
.product-detail__btn-wrap .btnCart .btn {
  width: 100%;
  background: url(../img/common/icon_cart_white.svg) left 56px center #C5412D no-repeat !important;
  background-size: 32px !important;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 14px 16px 14px 40px;
}
@media screen and (max-width: 767px) {
  .product-detail__btn-wrap .btnCart .btn {
    font-size: 18px;
    background: url(../img/common/icon_cart_white.svg) left 16px center #C5412D no-repeat !important;
    background-size: 24px !important;
    padding: 10px 8px 10px 24px;
  }
}
.product-detail__btn-wrap.fixed-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  justify-content: center;
  background: rgba(242, 242, 242, 0.8);
  padding: 8px 0;
  transition: none;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .product-detail__btn-wrap.fixed-bottom {
    padding: 8px;
  }
}
@media screen and (min-width: 768px) {
  .product-detail__btn-wrap.fixed-bottom .btnCart {
    width: 325px;
    flex: none;
  }
}
@media screen and (max-width: 767px) {
  .product-detail__btn-wrap .btnFavorite img {
    width: 40px;
  }
}
@media screen and (max-width: 767px) {
  .product-detail__btn-wrap-placeholder {
    display: none !important;
  }
}
.product-detail .spacer {
  height: 0;
}
.product-detail .addCart {
  margin: 16px 0;
}
.product-detail .addCart .btnCart {
  padding: 0;
  margin: 0 !important;
}
.product-detail .addCart .btnCart .btn {
  min-width: 300px;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .product-detail .addCart .btnCart .btn {
    min-width: auto;
    width: 100%;
    max-width: 300px;
  }
}
.product-detail .addCart .btnCart + .btnCart {
  margin-top: 4px !important;
}
.product-detail__fav-link {
  background: url(../img/common/icon_fav.svg) left center no-repeat;
  background-size: 24px;
  line-height: 1;
  padding: 4px 0 4px 28px;
}
.product-detail__review-link {
  background: url(../img/common/icon_review_link.svg) left center no-repeat;
  background-size: 24px;
  line-height: 1;
  padding: 4px 0 4px 28px;
  margin-top: 8px;
}
.product-detail__contact-link {
  background: url(../img/common/icon_contact_link.svg) left center no-repeat;
  background-size: 24px;
  line-height: 1;
  padding: 4px 0 4px 28px;
  margin-top: 8px;
}
.product-detail .snsList {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px 0 0;
}
.product-detail .snsList li {
  max-width: 93px;
}
.product-detail__heading {
  font-size: 24px !important;
  font-weight: bold;
  position: relative;
  padding-left: 16px;
  margin-bottom: 16px !important;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .product-detail__heading {
    font-size: 20px !important;
    padding-left: 12px;
    margin-top: 56px;
  }
}
.product-detail__heading::before {
  content: "";
  width: 5px;
  height: 32px;
  border-radius: 5px;
  background: #000;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .product-detail__heading::before {
    width: 4px;
    height: 26px;
  }
}
.product-detail .mail-btn-wrap {
  margin-top: 8px;
}
.product-detail .mail-btn-wrap .btn {
  border-radius: 4px;
}
.product-detail #divProductArrivalMail {
  padding: 0;
}
.product-detail #divProductArrivalMail td {
  padding: 16px !important;
}
.product-detail #divProductArrivalMail input {
  width: 100% !important;
  background: #F7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px;
}
.product-detail #dvProductDescription {
  width: 912px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .product-detail #dvProductDescription {
    width: 100%;
  }
}
.product-detail__summary {
  margin: 56px 0;
}
@media screen and (max-width: 767px) {
  .product-detail__summary {
    margin: 32px 0;
  }
}
.product-detail__description {
  margin: 56px 0;
}
@media screen and (max-width: 767px) {
  .product-detail__description {
    margin: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .product-detail__description .tab__btn-wrap {
    width: 100vw;
    margin-left: -16px;
    margin-right: -16px;
    padding: 0 8px;
  }
}
@media screen and (max-width: 767px) {
  .product-detail__description .tab__btn {
    font-size: min(16px, 2.8vw);
    letter-spacing: 0;
    padding: 12px 2px;
  }
}
.product-detail__description-item {
  line-height: 1.7;
  padding-left: 80px;
  padding-right: 80px;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .product-detail__description-item {
    padding: 0;
  }
}
.product-detail__description-item .img {
  text-align: center;
  margin: 40px 0 32px;
}
@media screen and (max-width: 767px) {
  .product-detail__description-item .img {
    margin: 40px 0 16px;
  }
}
.product-detail__description-item .img img {
  max-width: 100%;
}
.product-detail__description-item .title {
  font-size: 20px !important;
  font-weight: bold;
  border-bottom: none !important;
  padding: 0 !important;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .product-detail__description-item .title {
    font-size: 18px !important;
    margin-bottom: 12px;
  }
}
.product-detail__description-item .description {
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .product-detail__description-item .description {
    font-size: 14px;
  }
}
.product-detail__description-item .grid {
  display: grid;
  gap: 24px;
  margin: 56px 0;
}
@media screen and (max-width: 767px) {
  .product-detail__description-item .grid {
    gap: 16px;
    margin: 40px 0;
  }
}
.product-detail__description-item .grid__col2 {
  grid-template-columns: repeat(2, 1fr);
}
.product-detail__description-item .grid .img {
  margin: 0 0 16px;
}
@media screen and (max-width: 767px) {
  .product-detail__description-item .grid .img {
    margin: 0 0 8px;
  }
}
.product-detail__description-item .grid .title {
  font-size: 16px !important;
}
@media screen and (max-width: 767px) {
  .product-detail__description-item .grid .title {
    margin-bottom: 8px;
  }
}
.product-detail__description-item .grid .description {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .product-detail__description-item .grid .description {
    font-size: 13px;
  }
}
.product-detail__description-item .flex {
  display: flex;
  align-items: center;
  gap: 12px 24px;
  margin: 56px 0;
}
@media screen and (max-width: 767px) {
  .product-detail__description-item .flex {
    flex-direction: column;
    margin: 40px 0;
  }
}
.product-detail__description-item .flex .img {
  margin: 0;
}
.product-detail__description-item .flex .text {
  flex: 1;
}
.product-detail__description-item .flex .text .title {
  font-size: 16px !important;
}
.product-detail__description-item .flex .text .description {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .product-detail__breadcrumb ul {
    overflow-x: visible !important;
  }
}
.product-detail__breadcrumb p {
  position: relative;
  font-size: 12px;
  padding-left: 24px;
}
@media screen and (max-width: 767px) {
  .product-detail__breadcrumb p {
    white-space: nowrap;
  }
}
.product-detail__breadcrumb p::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 2px solid #707070;
  border-right: 2px solid #707070;
  position: absolute;
  left: 0;
  top: 35%;
  transform: rotate(45deg);
}
.product-detail__breadcrumb-inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .product-detail__breadcrumb-inner {
    flex-wrap: nowrap;
    overflow-x: scroll;
    padding-bottom: 4px;
  }
}
.product-detail .spec-table {
  margin-bottom: 40px;
}
.product-detail .spec-table tr {
  display: flex;
  border-bottom: 1px solid #000;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .product-detail .spec-table tr {
    font-size: 14px;
  }
}
.product-detail .spec-table th {
  font-weight: bold;
  text-align: left;
  width: 200px;
  padding: 16px;
}
@media screen and (max-width: 767px) {
  .product-detail .spec-table th {
    width: 130px;
    padding: 12px 8px;
  }
}
.product-detail .spec-table td {
  flex: 1;
  padding: 16px;
}
@media screen and (max-width: 767px) {
  .product-detail .spec-table td {
    padding: 12px 8px;
  }
}
.product-detail .spec-table td span {
  display: block;
  font-size: 14px;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .product-detail .spec-table td span {
    font-size: 12px;
  }
}
.product-detail .nutrition-table {
  border: 1px solid #E4E4E4;
}
.product-detail .nutrition-table tr {
  display: flex;
  border-bottom: 1px solid #e4e4e4;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .product-detail .nutrition-table tr {
    font-size: 14px;
  }
}
.product-detail .nutrition-table tr:last-child {
  border-bottom: none;
}
.product-detail .nutrition-table th {
  text-align: left;
  width: 200px;
  padding: 8px 16px;
  background: #F9F9F9;
  border-right: 1px solid #e4e4e4;
}
@media screen and (max-width: 767px) {
  .product-detail .nutrition-table th {
    width: 100px;
    padding: 8px;
  }
}
.product-detail .nutrition-table td {
  flex: 1;
  padding: 8px 16px;
}
@media screen and (max-width: 767px) {
  .product-detail .nutrition-table td {
    padding: 8px;
  }
}
.product-detail .nutrition-table td span {
  display: block;
  font-size: 14px;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .product-detail .nutrition-table td span {
    font-size: 12px;
  }
}
.product-detail .nutrition-table__title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}
.product-detail .nutrition-table__caption {
  font-size: 14px;
  margin-top: 8px;
}
.product-detail .review {
  width: 912px;
  margin: 120px auto;
}
@media screen and (max-width: 767px) {
  .product-detail .review {
    width: 100%;
    margin: 80px 0;
  }
}
.product-detail .review__item {
  padding: 24px 0 32px;
  border-bottom: 1px solid #000;
}
.product-detail .review__item:first-child {
  padding-top: 0;
}
.product-detail .review__item:last-child {
  border-bottom: none;
}
.product-detail .review__detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-detail .review__info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-detail .review__name {
  font-size: 14px;
}
.product-detail .review__date {
  font-size: 14px;
  color: #707070;
}
.product-detail .review__title {
  font-size: 16px;
  font-weight: bold;
  margin-top: 16px;
}
.product-detail .review__comment {
  font-size: 14px;
  margin-top: 16px;
}
.product-detail .review .allReview {
  display: block;
  font-size: 16px;
  font-weight: bold;
  background: none;
  text-align: center;
  padding: 0;
  margin-top: 40px;
}
.product-detail .review .spMessage {
  margin-bottom: 24px;
}
.product-detail .tblReviewInput {
  background: #f9f9f9;
  padding: 40px 80px;
}
@media screen and (max-width: 767px) {
  .product-detail .tblReviewInput {
    padding: 16px;
  }
}
.product-detail .tblReviewInput tr {
  display: flex;
  align-items: center;
  padding: 4px 0;
}
.product-detail .tblReviewInput th {
  width: 120px;
}
@media screen and (max-width: 767px) {
  .product-detail .tblReviewInput th {
    width: 110px;
  }
}
.product-detail .tblReviewInput td {
  flex: 1;
}
.product-detail .tblReviewInput input,
.product-detail .tblReviewInput textarea {
  width: 100%;
  padding: 8px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.product-detail .tblReviewInput select {
  padding: 8px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.product-detail .line {
  width: 100%;
  height: 24px;
  background: url(../img/common/line.png) top center no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 767px) {
  .product-detail .line {
    background-size: 880px;
  }
}
@media screen and (max-width: 767px) {
  .product-detail #dvCheckList .list-product__col5-2 li {
    width: 150px;
  }
}
.product-detail #dvCheckList .list-product__col5-2 li:nth-child(n+6) {
  display: none;
}

#dvProductDetailArea .wrapProductPrice p strike {
  color: #000 !important;
}

#dvProductDetailArea .wrapProductPrice p .sale {
  color: #C5412D;
}
#dvProductDetailArea .wrapProductPrice p .sale span {
  color: #C5412D;
}