.c-modal {
  //
}

.c-modal__bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0s ease, visibility 0s ease;
}

.c-modal.is-open .c-modal__bg {
  opacity: 1;
  visibility: visible;
  transition: opacity .6s ease, visibility .6s ease;
}

.c-modal__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0s ease, visibility 0s ease;
}
@media screen and (max-width: 768px) {
  .c-modal__inner {
    align-items: unset;
    padding: 38px 0;
  }
}

.c-modal.is-open .c-modal__inner {
  opacity: 1;
  visibility: visible;
  transition: opacity .6s .3s ease, visibility .6s .3s ease;
}

.c-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 700px;
  width: 100%;
  height: auto;
  padding: 50px;
  background: #fff;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: opacity 0s ease, visibility 0s ease;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .c-modal__content {
    overflow: auto;
    width: 90%;
    padding: 50px 20px;
  }
}

.c-modal__content.is-open {
  position: relative;
  top: 0;
  left: 0;
  transform: unset;
  opacity: 1;
  visibility: visible;
  transition: opacity .6s .3s ease, visibility .6s .3s ease;
}

.c-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .c-modal__close {
    width: 20px;
    height: 20px;
  }
}

.c-modal__close::before, .c-modal__close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  width: 42px;
  height: 3px;
  background: #000;
  transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .c-modal__close::before, .c-modal__close::after {
    width: 28px;
    height: 2px;
  }
}

.c-modal__close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.c-productDetail {
  //
}

.c-productDetail__head {
  text-align: center;
}

.c-productDetail__headText {
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.c-productDetail__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 0px;
  margin-top: 30px;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .c-productDetail__list {
    grid-template-columns: 1fr;
  }
}

.c-productDetail__item {
  list-style-type: disc;
}

.c-productDetail__link {
  font-size: 16px;
  color: #333;
}

.c-productDetail__text {
  margin-top: 26px;
}

