@charset "UTF-8";
/*==================================================================*/
/* model-support　*/
/*==================================================================*/
.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9990;
}
.modal__bg {
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal__content {
  background: #fff;
  left: 50%;
  padding: 40px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 500px;
  font-size: .95rem;
}
.modal__content .js-modal-close {
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.2em 2em;
  background-color: #333;
  color: #fff;
  text-decoration: none;
}
.modal__content .js-modal-close:before {
  content: "×";
  margin-right: 0.2em;
}
.modal__content .js-modal-close:hover {
  cursor: pointer;
}
.modal__title {
  margin-bottom: 1em;
  font-size: 1.1rem;
  text-align: center;
}
.modal__exam {
  width: 100%;
  margin-bottom: 2em;
}
.modal__exam tr th, .modal__exam tr td {
  padding: 0.5em;
  border: 1px solid #666;
}
.modal__exam tr th {
  width: 25%;
  background-color: #ddd;
}
.modalWrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1em;
}
.modal__confirm dt {
  font-weight: bold;
}
.modal__confirm dd ul {
  margin-left: 1.5em;
}
.modal__confirm dd ul li {
  list-style-type: disc;
}
.modal figure {
  width: 250px;
}
.modal figure img {
  max-width: 100%;
  height: auto;
  margin-bottom: 0.3em;
}
.modal figure figcaption {
  font-size: 0.9rem;
  text-align: center;
}

.productWrap, .productWrap * {
  box-sizing: border-box;
}
.productWrap__read {
  margin-bottom: 1.5em !important;
  text-align: center;
}
.productWrap .productIn {
  display: flex;
  flex-wrap: wrap;
}
.productWrap .productIn__title {
  width: 100%;
  margin-top: 20px !important;
  padding: .5em .8em !important;
  font-size: .95rem !important;
  color: #000 !important;
  background-color: #eee !important;
  font-weight: normal;
  background-image: none !important;
}
.productWrap .productBox {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 32%;
  margin-bottom: 1em;
  padding: .5em 1em .5em 95px;
  min-height: 90px;
  border: 1px solid #ddd;
  border-radius: 5px;
  color: #000 !important;
  text-decoration: none !important;
}
.productWrap .productBox:hover {
  border-color: #666;
}
.productWrap .productBox:not(:nth-of-type(3n)) {
  margin-right: 2%;
}
.productWrap .productBox__img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 90px;
  margin-right: 1em;
}
.productWrap .productBox__img img {
  max-width: 83px !important;
  max-height: 60px !important;
  margin-bottom: 0 !important;
}
.productWrap .productBox__name, .productWrap .productBox__number {
  width: 100%;
  margin-bottom: 0 !important;
  line-height: 1.5 !important;
}
.productWrap .productBox__name {
  font-size: 0.9rem !important;
}
.productWrap .productBox__number {
  font-size: 0.8rem !important;
  color: #888;
}
.productWrap .content {
  margin: 0 auto;
  padding: 40px;
}

@media (max-width: 767px) {
  .productWrap__read {
    text-align-last: left;
  }
  .productWrap .productBox {
    width: 100%;
    margin-bottom: .6em;
    padding: .3em .5em .3em 100px;
  }
  .productWrap .productBox:not(:nth-of-type(3n)) {
    margin-right: 0;
  }
  .productWrap .productBox__img {
    width: 80px;
    margin-right: .8em;
    left: 5px;
  }
  .productWrap .productBox__img img {
    max-width: 80px !important;
    max-height: 65px !important;
  }
  .productWrap .productBox__name {
    width: 100%;
    line-height: 1.4 !important;
    font-size: .9rem !important;
  }
  .productWrap .productBox__number {
    font-size: 0.8rem !important;
  }

  .modal {
    height: 106vh;
  }
  .modal__bg {
    height: 106vh;
  }
  .modal__content {
    background: #fff;
    padding: 20px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 400px;
    font-size: .9rem;
  }
  .modal__content .js-modal-close {
    padding: .5em 2em;
  }
  .modal__title {
    font-size: 1rem;
  }
  .modal__confirm dt {
    font-weight: bold;
  }
  .modal__confirm dd ul {
    margin-left: 1em;
  }
  .modal figure {
    width: 220px;
  }
  .modal figure figcaption {
    font-size: .9rem;
  }
}
