@charset "UTF-8";
@-webkit-keyframes in_contents {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes in_contents {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.in_goods {
  background: var(--color-gold-bg-light);
}

.in_goods.is-load {
  opacity: 0;
  -webkit-animation: in_contents 0.5s cubic-bezier(0.5, 1, 0.89, 1) 1s forwards;
          animation: in_contents 0.5s cubic-bezier(0.5, 1, 0.89, 1) 1s forwards;
}

.p-goods__inner {
  width: 90%;
  max-width: 104rem;
  display: block;
  position: relative;
  margin: 0 auto;
  padding-top: 100px;
}

.p-goods__title {
  display: block;
  position: relative;
  font-size: 15rem;
  line-height: 0.8;
  font-weight: 400;
  font-family: "Cormorant Infant", "Zen Old Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  color: var(--color-gold);
  text-align: center;
}

@media screen and (max-width: 899px) {
  .p-goods__title {
    font-size: 7rem;
  }
}

.goods_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 80px;
}

@media screen and (max-width: 899px) {
  .goods_list {
    margin-top: 20px;
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 900px) {
  .goods_item {
    width: 31%;
    margin-left: 3%;
    margin-top: 50px;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .goods_item:nth-child(3n+1) {
    margin-left: 0;
  }
  .goods_item:nth-child(n+1):nth-child(-n+3) {
    margin-top: 0;
  }
}

@media screen and (max-width: 899px) {
  .goods_item {
    width: 49%;
    margin-left: 2%;
    font-size: 1.3rem;
    line-height: 1.5;
    margin-top: 40px;
  }
  .goods_item:nth-child(2n+1) {
    margin-left: 0;
  }
  .goods_item:nth-child(n+1):nth-child(-n+2) {
    margin-top: 0;
  }
}

.goods_img {
  position: relative;
  overflow: hidden;
  -o-border-image: initial;
  border-image: initial;
  background: white;
  margin-bottom: 10px;
}

.goods_img-item {
  cursor: pointer;
}

.goods_name {
  color: var(--color-gold);
  font-size: 2rem;
  margin-bottom: 5px;
  line-height: 1.5em;
}

@media screen and (max-width: 899px) {
  .goods_name {
    font-size: 1.3rem;
  }
}

.goods_img-item p {
  background: no-repeat center center;
  background-size: contain;
}

.goods_price {
  font-size: 15px;
}

.goods_price span {
  font-size: 18px;
  vertical-align: baseline;
}

@media screen and (max-width: 899px) {
  .goods_price {
    font-size: 1rem;
  }
  .goods_price span {
    font-size: 1.4rem;
  }
}

.goods-item-limit {
  margin-top: 20px;
  color: var(--color-gold);
}

@media screen and (max-width: 899px) {
  .goods-item-limit {
    margin-top: 10px;
  }
}

@media screen and (max-width: 899px) {
  .goods_text {
    font-size: 1.1rem;
    line-height: 1.4em;
    margin-top: 5px;
  }
}

/*********************************************************************/
[data-modal] {
  cursor: pointer;
}

template {
  display: none;
}

.m-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100vw;
  height: 100%;
  overflow: auto;
  visibility: hidden;
  -ms-touch-action: none;
      touch-action: none;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.7);
  opacity: 0;
  -webkit-transition: all 0.4s var(--ease_out);
  transition: all 0.4s var(--ease_out);
}

.is-modal-show .m-modal {
  opacity: 1;
}

.m-modal.is-open {
  visibility: visible;
  -ms-touch-action: auto;
      touch-action: auto;
  pointer-events: auto;
}

.m-modal.is-load-start {
  visibility: visible;
  -ms-touch-action: auto;
      touch-action: auto;
  pointer-events: auto;
}

.m-modal.is-close {
  visibility: hidden;
  -ms-touch-action: none;
      touch-action: none;
  pointer-events: none;
}

.m-modal__container {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 0;
  z-index: 0;
}

.m-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  cursor: pointer;
  z-index: -1;
  background: rgba(255, 255, 255, 0.7) !important;
}

.m-modal__content {
  width: 50% !important;
  max-width: 600px !important;
  max-width: 159.3vh;
  display: block;
  position: relative;
  opacity: 1;
  -webkit-transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1);
}

@media screen and (max-width: 899px) {
  .m-modal__content {
    width: 100% !important;
  }
}

@media screen and (max-width: 960px) {
  .m-modal__content {
    width: 90%;
  }
}

[data-modal-type=template] .m-modal__content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 90%;
}

.is-modal-show .m-modal__content {
  opacity: 1;
}

.is-modal-overflow-prep .m-modal__content {
  position: relative;
  top: auto;
  left: auto;
  -webkit-transform: none;
          transform: none;
  margin: 6rem auto;
}

@media screen and (max-width: 960px) {
  .is-modal-overflow-prep .m-modal__content {
    margin-top: 8rem;
  }
}

.m-modal__content > * {
  width: 100%;
  height: auto;
}

.m-modal__content > * img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  margin: 0 auto;
}

.m-modal__content-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

@media screen and (max-width: 960px) {
  .m-modal__content-btn {
    position: relative;
    top: auto;
    right: auto;
    width: 84%;
    height: auto;
    margin: 2rem auto 0;
  }
}

.m-modal__close {
  width: 5rem;
  height: 5rem;
  display: block;
  position: fixed;
  top: 2rem;
  right: 2.5rem;
  cursor: pointer;
  z-index: 1;
  background: var(--color-gold);
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

@media screen and (max-width: 960px) {
  .m-modal__close {
    width: 3rem;
    height: 3rem;
    top: 1rem;
    right: 2rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .m-modal__close {
    -webkit-transition: background-color 0.4s var(--ease_out);
    transition: background-color 0.4s var(--ease_out);
  }
  .m-modal__close:hover {
    opacity: 0.6;
    -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
    transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  }
}

.m-modal__close::before {
  content: "";
  width: 80%;
  height: 0.1rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  border-bottom: 0.2rem solid #fff;
  z-index: 1;
}

.m-modal__close::after {
  content: "";
  width: 80%;
  height: 0.1rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  border-bottom: 0.2rem solid #fff;
  z-index: 1;
}

.p-goods_group {
  text-align: center;
  color: var(--color-gold);
  font-size: 4rem;
  margin-bottom: -30px;
  margin-top: 60px;
}

@media screen and (max-width: 960px) {
  .p-goods_group {
    font-size: 3rem;
    margin-bottom: 0px;
  }
}

.goods_list.head .goods_item {
  width: 49%;
  margin-left: 2%;
  font-size: 1.3rem;
  line-height: 1.5;
  margin-top: 40px;
}

.goods_list.head .goods_text {
  font-size: 1.5rem;
  margin-top: 10px;
}

.goods_list.head .goods_item:nth-child(2n+1) {
  margin-left: 0;
}

.goods_list.head .goods_item:nth-child(n+1):nth-child(-n+2) {
  margin-top: 0;
}

@media screen and (max-width: 960px) {
  .goods_list.head {
    display: block;
  }
  .goods_list.head .goods_item {
    width: 100%;
    margin: 0;
  }
  .goods_list.head .goods_item:first-child {
    margin-bottom: 50px;
  }
  .goods_list.head .goods_text {
    font-size: 1.1rem;
    margin-top: 10px;
  }
}

.p-goods_info {
  text-align: center;
  color: var(--color-gold);
  font-size: 4rem;
  margin-top: 80px;
}

@media screen and (max-width: 960px) {
  .p-goods_info {
    font-size: 3rem;
    margin-bottom: 0px;
  }
}

.p-goods_date {
  text-align: center;
  font-size: 3rem;
  margin-top: 40px;
}

@media screen and (max-width: 960px) {
  .p-goods_date {
    font-size: 1.8rem;
    line-height: 1.5em;
    margin-top: 30px;
  }
}

.p-goods_note {
  text-align: center;
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 80px;
}

@media screen and (max-width: 960px) {
  .p-goods_note {
    font-size: 1.1rem;
    text-align: left;
  }
}

.goods_tag{
  margin: 10px 0;
}

.goods_tag >p{
  background: var(--color-gold);
  color: #fff;
  padding: 1px 5px 2px 5px;
  display: inline-block;
  margin-right: 5px;
   font-size: 1.3rem;
}

@media screen and (max-width: 899px) {
.goods_tag{
    margin: 5px 0;
  }
  .goods_tag p{
    font-size: 1rem;
    padding: 0 5px 2px 5px;
  }
}