@charset "UTF-8";
.sub-title {
  font-family: serif;
}

.headline {
  text-align: left;
  font-size: 30px;
  color: white;
  font-family: sans-serif;
}
.headline .price {
  margin-left: 15px;
}

.img-group {
  margin: 40px 0;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.img-group .img-element {
  /* 6分割 */
  flex: 0 0 calc(16.6666666667% - 50px);
  box-sizing: border-box;
}
.img-group .img-element .img {
  /* width: 137px */
  /* height: 182px */
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-top: 133%;
  border-radius: 10px;
  cursor: pointer;
}
.img-group .img-element .img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-group .img-element .name {
  margin: 10px 4px 0px 4px;
  text-align: left;
  font-size: 20px;
  font-family: sans-serif;
}
@media screen and (max-width: 750px) {
  .img-group {
    gap: 36px;
  }
  .img-group .img-element {
    /* 3分割 */
    flex: 0 0 calc(33.3333333333% - 24px);
    box-sizing: border-box;
  }
  .img-group .img-element .name {
    margin: 10px 4px 18px 4px;
    text-align: left;
    font-size: 1.8rem;
    font-family: sans-serif;
  }
}

.hr_line {
  border: 1px solid white;
  width: 1330px;
  margin: 40px auto 60px auto;
}

.zoom-popup-bg {
  z-index: 1000;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.68);
}
.zoom-popup-bg .close {
  position: fixed;
  right: 50px;
  top: 50px;
  width: 50px;
  cursor: pointer;
}
.zoom-popup-bg .img-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 600px;
  max-height: 800px;
  aspect-ratio: 3/4;
  width: 100%;
}
.zoom-popup-bg .img-box .img-anchor {
  position: relative;
  width: 100%;
}
.zoom-popup-bg .img-box .img-anchor img {
  width: 100%;
  background-color: white;
  object-fit: cover;
}
.zoom-popup-bg .img-box .img-anchor .button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 12px;
  background-color: rgba(0, 0, 0, 0.68);
  font-size: 30px;
  font-weight: 800;
  font-family: var(--global--font--noto-sans);
  padding-bottom: 5px;
  box-sizing: border-box;
}
.zoom-popup-bg .img-box .img-anchor .button.previous {
  left: -80px;
}
.zoom-popup-bg .img-box .img-anchor .button.next {
  right: -80px;
}
@media screen and (max-width: 750px) {
  .zoom-popup-bg .img-box .img-anchor .button {
    width: 80px;
    height: 80px;
    font-size: 50px;
  }
  .zoom-popup-bg .img-box .img-anchor .button.previous {
    left: -20px;
  }
  .zoom-popup-bg .img-box .img-anchor .button.next {
    right: -20px;
  }
}

/*# sourceMappingURL=costume.css.map */
