@charset "utf-8";

#home {
  background-image: url(../images/background/background_012.jpg),
    url(../images/background/background_013.jpg),
    url(../images/background/background_014.jpg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* アニメーションを設定 */
  animation: image_anime 10s ease;
  /* 無限ループ */
  animation-iteration-count: infinite;
  /* animationを開始する時間を設定 */
  animation-delay: 2s;
}

@keyframes image_anime {
  20% {
    /* 切り替え後の画像 */
    background-image: url(../images/background/background_013.jpg);
  }
  40% {
    /* 切り替え後の画像 */
    background-image: url(../images/background/background_013.jpg);
  }
  60% {
    /* 切り替え後の画像 */
    background-image: url(../images/background/background_014.jpg);
  }
  80% {
    /* 切り替え後の画像 */
    background-image: url(../images/background/background_014.jpg);
  }
  100% {
    /* 切り替え後の画像 */
    background-image: url(../images/background/background_012.jpg);
  }
}

.inner-text {
  font-size: 17px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
  margin-bottom: 180px;
  color: #ffffff;
  position: relative;
}

.shop-view-back {
  background-color: #ffffff;
  width: 100%;
}

.shop-view-back h1 {
  text-align: center;
}

.shop-view {
  color: rgb(132, 132, 132);
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  margin-top: 30px;
  max-width: 850px;
  text-align: justify;
  margin: 0 auto;
}

.main p {
  font-size: 14px;
  line-height: 30px;
  text-align: justify;
  font-family: "Zen Old Mincho", serif;
  font-weight: 300;
  font-style: normal;
}

table {
  font-size: 13px;
  line-height: 22px;
  text-align: left;
  font-family: "Zen Old Mincho", serif;
  font-weight: 300;
  font-style: normal;
  margin-top: 20px;
  margin-bottom: 20px;
}

td {
  padding-top: 10px;
  padding-bottom: 10px;
}

.year {
  padding-right: 15px;
  text-align: right;
}

.shop-view h2 {
  font-size: 17px;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}

.grid-list {
  display: grid;
  grid-template-columns: repeat(4, 190px);
  grid-template-columns: repeat(4, 190px);
  column-gap: 70px;
  row-gap: 80px;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 15px;
}

.grid-list img {
  box-shadow: 0 0 4px #cfcfcf56;
}

.grid-list dt {
  font-size: 12px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  padding-top: 15px;
}

.grid-list dt span {
  font-size: 11px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  padding-top: 15px;
  color: #bcbcbc;
}

.grid-list dd {
  font-size: 11px;
  font-family: "Montserrat", serif;
  font-weight: 200;
  font-style: normal;
  text-align: left;
  line-height: 20px;
  padding-top: 10px;
}

.pay-menu {
  padding: 20px;
  text-align: center;
}

.contact-box {
  display: inline-block;
  width: 800px;
  max-width: 100%;
  border: 0.3px solid #999999;
  border-radius: 0px;
  padding: 1.5em 1.5em 1.5em;
  position: relative;
  text-align: left;
}
.contact-box .contact-box-title {
  padding: 0.4em;
  font-size: 13px;
  font-weight: bold;
  position: absolute;
  top: -1em;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #999999;
  white-space: nowrap;
}

.contact-box p {
  color: #999999;
  text-align: center;
  padding-bottom: 10px;
}

.p6 {
  font-size: 12px;
  line-height: 22px;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 200;
  font-style: normal;
  margin-top: 10px;
  color: #999999;
}

.sold-out {
  position: relative;
}

.sold-out:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 50px 0 0;
  border-color: rgba(229, 205, 224, 0.722) transparent transparent transparent;
}
.sold-out:after {
  position: absolute;
  content: "SOLD";
  transform: rotate(315deg);
  display: block;
  font-size: 11px;
  white-space: pre;
  color: #fff;
  top: 12px;
  left: 4px;
  text-align: center;
  z-index: 2;
  line-height: 1.2;
}

.new {
  position: relative;
}

.new:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 50px 0 0;
  border-color: rgba(255, 250, 216, 0.303) transparent transparent transparent;
}
.new:after {
  position: absolute;
  content: "NEW";
  transform: rotate(315deg);
  display: block;
  font-size: 11px;
  white-space: pre;
  color: #fff;
  top: 12px;
  left: 4px;
  text-align: center;
  z-index: 2;
  line-height: 1.2;
}

@media (max-width: 769px) {
  #home {
    background-image: url(../images/background_phone/background_phone_013.jpg),
      url(../images/background_phone/background_phone_010.jpg),
      url(../images/background_phone/background_phone_012.jpg);
    background-size: 100% auto;
    background-position: center top;
    /* アニメーションを設定 */
    animation: image_anime 15s ease;
    /* 無限ループ */
    animation-iteration-count: infinite;
    /* animationを開始する時間を設定 */
    animation-delay: 5s;
  }

  @keyframes image_anime {
    20% {
      /* 切り替え後の画像 */
      background-image: url(../images/background_phone/background_phone_010.jpg);
    }
    40% {
      /* 切り替え後の画像 */
      background-image: url(../images/background_phone/background_phone_010.jpg);
    }
    60% {
      /* 切り替え後の画像 */
      background-image: url(../images/background_phone/background_phone_012.jpg);
    }
    80% {
      /* 切り替え後の画像 */
      background-image: url(../images/background_phone/background_phone_012.jpg);
    }
    100% {
      /* 切り替え後の画像 */
      background-image: url(../images/background_phone/background_phone_013.jpg);
    }
  }

  .inner-text {
    margin-top: 100px;
    margin-bottom: 200px;
    font-size: 15px;
  }

  .grid-list {
    display: grid;
    grid-template-columns: repeat(2, 45%);
    grid-template-columns: repeat(auto-fit, 45%);
    column-gap: 10%;
    row-gap: 50px;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
