@charset "UTF-8";
html {
  font-size: 10px;
}

body {
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 500;
  font-style: normal;
}

.main-bg {
  background-size: 100% 100%;
  background-image: url("/assets/images/background.png");
  background-repeat: no-repeat;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.pc-container {
  max-width: 1212px;
  margin: 0 auto;
  position: relative;
}

.pc-menu {
  position: absolute;
  z-index: 5;
  width: calc((100% - 430px) / 2);
  max-width: 391px;
  height: 100vh;
  top: 0;
  padding-right: 50px;
}
.pc-menu__logo {
  margin-top: 30px;
  height: 100px;
  width: 187px;
}
.pc-menu__logo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.pc-menu__list {
  position: absolute;
  top: calc(50% - 20px);
  transform: translateY(-50%);
}
.pc-menu__list ul {
  padding: 0;
  margin: 0;
}
.pc-menu__list ul li {
  list-style: none;
  margin-bottom: 30px;
}
.pc-menu__list ul li:last-child {
  margin-bottom: 0;
}
.pc-menu__list ul li a {
  color: #fff;
  font-size: 24px;
  line-height: 35px;
  font-weight: 500;
  text-decoration: none;
}
.pc-menu__last {
  margin-bottom: 50px;
  position: absolute;
  bottom: 0;
}
.pc-menu__last ul {
  padding: 0;
  margin: 0;
}
.pc-menu__last ul li {
  list-style: none;
  margin-bottom: 10px;
}
.pc-menu__last ul li:last-child {
  margin-bottom: 0;
}
.pc-menu__last ul li a {
  color: #fff;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}
@media screen and (max-width: 1249px) {
  .pc-menu {
    display: none;
  }
}

.pc-cart {
  position: absolute;
  z-index: 5;
  width: calc((100% - 430px) / 2);
  max-width: 391px;
  height: 100vh;
  top: 0;
  right: 0;
}
.pc-cart__box {
  position: absolute;
  width: 100%;
  right: 0;
  padding-left: 50px;
  top: 50%;
  transform: translateY(-50%);
}
.pc-cart__img {
  width: 150px;
  margin: 0 auto;
  margin-bottom: 35px;
}
.pc-cart__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pc-cart__serial {
  color: #fff;
  font-size: 12px;
  line-height: 12px;
  padding: 4px 9px;
  border-radius: 10px;
  margin-bottom: 6px;
  display: inline-block;
  border: 1px solid #fff;
  font-weight: 700;
}
.pc-cart__name {
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.4px;
}
.pc-cart__price {
  font-size: 40px;
  line-height: 40px;
  font-family: "Fira Sans Condensed", serif;
  font-weight: 500;
  color: #fff;
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  position: relative;
  top: -9px;
}
.pc-cart__price span {
  font-size: 12px;
  line-height: 12px;
  letter-spacing: -0.05rem;
  font-weight: 600;
  color: #fff;
  font-family: "Zen Kaku Gothic New", serif;
  display: block;
  margin-left: 3px;
  top: -1px;
  position: relative;
}
.pc-cart__price-note {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 10px;
  line-height: 10px;
  letter-spacing: -0.18rem;
  position: relative;
  top: -10px;
  left: -2px;
}
.pc-cart__link {
  background-color: #f35050;
  text-decoration: none;
  color: #232264;
  font-size: 20px;
  line-height: 29px;
  font-weight: 700;
  border: 1px solid #232264;
  border-radius: 100px;
  height: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  box-shadow: 4px 4px 0 #232264;
  position: relative;
  transition: ease 0.2s;
  overflow: hidden;
}
.pc-cart__link:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.pc-cart__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #fff;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.pc-cart__link img {
  height: 24px;
  width: 24px;
  margin-left: 4px;
  position: relative;
  z-index: 3;
}
.pc-cart__link span {
  position: relative;
  z-index: 3;
}
.pc-cart__iwami {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: #fff;
  padding: 20px 30px;
  width: 100%;
  text-align: end;
  font-family: "Fira Sans Condensed", serif;
  position: absolute;
  bottom: 0;
  right: 0;
  letter-spacing: 0.1px;
}
@media screen and (max-width: 1249px) {
  .pc-cart {
    display: none;
  }
}

@keyframes fadeInKv {
  from {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}
@keyframes fadeInBottom {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
  }
}
.underline-slide {
  position: relative;
}
.underline-slide:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #fff;
  width: 0%;
  display: block;
  transition: width 0.5s ease-in-out;
}
.underline-slide:hover:after {
  width: 100%;
}
.underline-slide-dark:after {
  background-color: #fff;
}

.cart-btn-sold-out {
  pointer-events: none;
  box-shadow: 4px 4px 0 #111132;
}
.cart-btn-sold-out::after {
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
  width: 100%;
  height: 100%;
  max-width: 430px;
  position: absolute;
  top: 0;
  left: 0;
}

.sold-out-blue::after {
  background-color: rgba(35, 34, 100, 0.4) !important;
}

.menu-sold-out .information-winery__link {
  pointer-events: none;
}

.btn-cart {
  background-color: #fff;
  text-decoration: none;
  color: #1a191e;
  font-size: 20px;
  line-height: 29px;
  font-weight: 700;
  border-radius: 100px;
  height: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  position: relative;
  transition: ease 0.9s;
  overflow: hidden;
}
.btn-cart:hover {
  color: #fff;
}
.btn-cart:hover svg path {
  transition: ease-in-out 0.9s;
  fill: #fff;
}
.btn-cart:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.btn-cart::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #313035;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.btn-cart svg {
  z-index: 3;
  width: 24px;
  height: 24px;
  margin-left: 4px;
}
.btn-cart span {
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 374px) {
  .btn-cart {
    height: 60px;
    font-size: 18px;
  }
}

.cart-sold-out .btn-cart {
  pointer-events: none;
  background-color: #313035;
  color: #fff;
  z-index: 0;
}
.cart-sold-out .btn-cart svg path {
  fill: #fff;
}
.cart-sold-out .btn-cart::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(49, 48, 53, 0.5);
  backdrop-filter: none;
  z-index: 100;
}

.symbol-small {
  font-size: 18px !important;
}

.header {
  display: none;
  position: fixed;
  max-width: 430px;
  width: 100%;
  height: 90px;
  z-index: 114;
  padding: 10px 30px;
}
.header-logo {
  display: flex;
  height: 100%;
}
.header-logo img {
  width: auto;
  height: 69.21px;
  object-fit: cover;
}
.header-menu {
  position: fixed;
  top: 20px;
  right: 0;
}
.header-menu__item {
  height: 90px;
  width: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}
.header-menu__item:nth-child(1) {
  background-color: #1a191e;
  transition: all 0.3s;
  border-radius: 20px 0 0 0;
}
.header-menu__item:nth-child(1):hover {
  opacity: 0.8;
}
.header-menu__item:nth-child(1) img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}
.header-menu__item:nth-child(2) {
  background-color: #fff;
  padding: 11px 10px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 0 20px;
  transition: all 0.9s;
}
.header-menu__item:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #836d4d;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.header-menu__item:nth-child(2) svg {
  height: 36px;
  width: 36px;
  z-index: 3;
}
.header-menu__item:nth-child(2) span {
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  color: #1a191e;
  text-align: center;
  position: relative;
  z-index: 3;
  transition: all 0.9s;
}
@media screen and (max-width: 374px) {
  .header-menu__item:nth-child(2) span {
    font-size: 13px;
  }
}
.header-menu__item:nth-child(2):hover span {
  color: #fff;
}
.header-menu__item:nth-child(2):hover svg path {
  transition: ease-in-out 0.9s;
  fill: #fff;
}
.header-menu__item:nth-child(2):hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
@media screen and (max-width: 1249px) {
  .header {
    display: initial;
  }
}
.header.sold-out-menu .header-menu__item:nth-child(2) {
  background-color: #505050;
  pointer-events: none;
}
.header.sold-out-menu .header-menu__item:nth-child(2) span {
  color: #1A191E;
}

.footer {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  font-weight: 500;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #313035;
  position: relative;
  z-index: 4;
  max-width: 430px;
  margin: 0 auto;
  font-family: "Fira Sans Condensed", serif;
}

.menu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 115;
  transition: all 0.8s;
  right: -100%;
  overflow: auto;
}
.menu.active {
  right: 0;
}
.menu__right {
  margin-left: 50px;
  background-color: #1a191e;
  height: 100dvh;
  min-height: 500px;
  overflow: auto;
  position: relative;
}
.menu__close {
  display: flex;
  justify-content: space-between;
  padding: 10.4px 25px 10.39px 30px;
  width: 100%;
  height: 90px;
  position: relative;
}
.menu__close img {
  cursor: pointer;
  width: 40px;
  height: 40px;
  object-fit: cover;
}
.menu__close #close-modal {
  position: absolute;
  bottom: 15px;
  right: 25px;
}
.menu__up {
  padding: 50px 30px;
}
.menu__logo {
  display: flex;
  height: 69.21px;
}
.menu__logo img {
  width: auto;
  height: 69.21px;
  object-fit: cover;
}
.menu__list {
  padding: 0;
  margin-bottom: 50px;
}
.menu__list li {
  list-style: none;
  margin-bottom: 20px;
}
.menu__list li:last-child {
  margin-bottom: 0;
}
.menu__list li a {
  line-height: 29px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 374px) {
  .menu__list li a {
    line-height: 26px;
    font-size: 18px;
  }
}
.menu__down {
  padding: 0 30px 50px 30px;
  position: absolute;
  bottom: 0;
}
.menu__down .list-down {
  padding: 0;
  margin: 0;
}
.menu__down .list-down li {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}
.menu__down .list-down li:last-child {
  margin-bottom: 0;
}
.menu__down .list-down li a {
  text-decoration: none;
  color: #232264;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
}

body::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 10;
  transition: visibility 0.3s linear, opacity 0.3s linear;
  visibility: hidden;
  opacity: 0;
}
body.open-menu {
  position: relative;
}
body.open-menu::before {
  visibility: visible;
  opacity: 1;
}

#preview_modal .modal-dialog {
  width: 90%;
  max-width: 912px;
  margin: auto;
}
@media screen and (max-width: 575px) {
  #preview_modal .modal-dialog {
    max-width: 370px;
  }
}
#preview_modal .modal-content {
  overflow: visible;
  background: transparent;
  border: none;
}
#preview_modal .modal-content img {
  width: 160px;
  margin: auto;
}
#preview_modal .modal-content .btn-close img {
  width: 30px;
  height: 30px;
}
#preview_modal .modal-content .modal-header {
  border: none;
  background: transparent !important;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  height: 50px;
  position: relative;
}
#preview_modal .modal-body {
  height: 90vh;
  max-height: 742px;
  display: flex;
  background: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 575px) {
  #preview_modal .modal-body {
    height: 600px;
  }
}
#preview_modal button {
  position: absolute;
  background: none;
  width: 30px;
  height: 30px;
  outline: none;
  box-shadow: none;
}

.modal-backdrop {
  background-color: rgb(255, 255, 255);
  backdrop-filter: blur(10px);
}

.sp-container {
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
}

.bg-dragon {
  background-image: url("/assets/images/background_center.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 430px;
}

.fv-content {
  height: 100vh;
  min-height: 932px;
  padding: 0 30px;
  position: relative;
}
.fv-content::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  backdrop-filter: blur(2px);
  animation: fadeInKv 1s ease-in-out;
}
.fv-content-image {
  position: relative;
  z-index: 1;
  animation: fadeInKv 1s ease-in-out;
  top: 70px;
}
.fv-content-image img {
  width: 385px;
  height: 771px;
}
@media screen and (max-width: 429px) {
  .fv-content-image img {
    width: 100%;
    height: auto;
  }
}
.fv-content-sold-out {
  padding-left: 30px;
}
@media screen and (max-width: 1249px) {
  .fv-content {
    height: 932px;
  }
}
@media screen and (max-width: 429px) {
  .fv-content {
    height: 100vh;
    min-height: 876px;
  }
}
@media screen and (max-height: 700px) {
  .fv-content {
    min-height: 900px;
  }
}

.bg-content {
  height: 932px;
  padding: 0 30px;
  padding-top: 118px;
  position: relative;
}
.bg-content::after {
  content: "";
  background-color: rgba(255, 255, 255, 0.1);
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  border-bottom: 1px solid #fff;
  backdrop-filter: blur(2px);
  animation: fadeInKv 3s ease-in-out;
}
.bg-content__custom {
  padding-top: 0;
  height: 600px;
}
.bg-content__custom::after {
  content: unset;
}

.box-content {
  display: flex;
  z-index: 4;
  position: relative;
  justify-content: space-between;
  height: 598px;
  padding-left: 19px;
}
.box-content__winery {
  max-width: 146px;
  max-height: 598px;
}
.box-content__winery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.box-content__title {
  max-width: 165px;
  width: 100%;
  margin-top: 80px;
  max-height: 388px;
}
.box-content__title img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-desc {
  position: absolute;
  left: 11px;
  bottom: 129px;
  z-index: 4;
  width: 100%;
  max-width: 400px;
}
.box-desc img {
  height: 217px;
  width: 100%;
  object-fit: cover;
}
.box-desc__first {
  position: absolute;
  top: 70px;
  color: #fff;
  left: 50%;
  transform: translateX(-50%);
  width: 204px;
  display: flex;
  align-items: center;
}
.box-desc__first span:nth-child(1) {
  font-size: 14px;
  line-height: 14px;
  font-weight: 900;
}
.box-desc__first span:nth-child(2) {
  font-size: 42px;
  line-height: 30.7px;
  font-weight: 500;
  letter-spacing: -0.04rem;
  font-family: "Fira Sans Condensed", serif;
}
.box-desc__first span:nth-child(3) {
  font-size: 24px;
  line-height: 20px;
  font-weight: 700;
  white-space: pre;
}
.box-desc__last {
  position: absolute;
  top: 113px;
  color: #fff;
  left: 33px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.box-desc__last p:nth-child(1) {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.14rem;
}
.box-desc__last p {
  font-size: 30px;
  line-height: 34px;
  letter-spacing: -0.14rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 0;
  color: #fff;
}

.box-scroll__down {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
}
.box-scroll__down .scroll-down {
  font-size: 16px;
  line-height: 11px;
  font-weight: 700;
  font-family: "Fira Sans Condensed", serif;
  color: #fff;
  letter-spacing: 1px;
}
.box-scroll__down svg {
  margin-top: 15px;
  animation: moveUpDown 1s infinite alternate;
}

.bg-winery {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.box-content__item {
  margin-top: 0;
  position: relative;
  padding-top: 100px;
  z-index: 2;
}
.box-content__item.sold-out {
  opacity: 0.5;
  pointer-events: none;
}
.box-content__item.sold-out::after {
  content: unset;
}

.bg-yellow {
  background-color: hsla(0, 0%, 0%, 0.699);
  padding: 0 30px;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.bg-yellow .box-insta:nth-child(3) {
  margin-bottom: 0;
  border-bottom: 0;
}
@media screen and (max-width: 429px) {
  .bg-yellow {
    padding: 0 15px;
  }
}

.information-winery {
  position: relative;
  padding-bottom: 50px;
}
.information-winery__image {
  max-width: 188px;
  max-height: 300px;
  margin: 0 auto;
  position: relative;
  margin-bottom: 20px;
}
.information-winery__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 429px) {
  .information-winery__image {
    width: 150px;
  }
}
.information-winery__popup {
  position: absolute;
  top: 0;
  right: -91px;
  height: 50px;
  width: 50px;
  padding: 0;
  border-radius: 50%;
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  transition: all 0.3s;
  outline: none;
  box-shadow: none;
}
@media screen and (max-width: 429px) {
  .information-winery__popup {
    font-size: 14px;
    right: -66px;
  }
}
.information-winery__note {
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  font-weight: 400;
  position: absolute;
  bottom: 0;
  right: -91px;
}
@media screen and (max-width: 429px) {
  .information-winery__note {
    right: -76px;
    font-size: 10px;
  }
}
.information-winery__tag {
  border: 1px solid #fff;
  color: #fff;
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 10px;
  margin-bottom: 6px;
  display: inline-block;
}
.information-winery__name {
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.information-winery__price {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  margin-bottom: 14px;
  height: 24px;
}
.information-winery__price span:nth-child(1) {
  font-size: 40px;
  line-height: 24px;
  font-family: "Fira Sans Condensed", serif;
  font-weight: 500;
  color: #fff;
  margin-right: 3px;
}
.information-winery__price span:nth-child(2) {
  font-size: 12px;
  line-height: 12px;
  letter-spacing: -0.05rem;
  font-weight: 600;
  color: #fff;
  top: -3px;
  position: relative;
}
.information-winery__desc {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.7px;
}
@media screen and (max-width: 429px) {
  .information-winery__desc {
    font-size: 12px;
    line-height: 18px;
  }
}
@media screen and (max-width: 374px) {
  .information-winery__desc {
    font-size: 11px;
    line-height: 16px;
  }
}
.information-winery__address {
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
  display: flex;
}
.information-winery__address > span {
  display: flex;
  width: 60px;
  justify-content: space-between;
}
@media screen and (max-width: 429px) {
  .information-winery__address {
    font-size: 12px;
    line-height: 12px;
  }
}
@media screen and (max-width: 374px) {
  .information-winery__address {
    font-size: 11px;
    line-height: 11px;
  }
}
.information-winery__link {
  background-color: #fff;
  text-decoration: none;
  color: #1a191e;
  font-size: 20px;
  line-height: 29px;
  font-weight: 700;
  border-radius: 100px;
  height: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  position: relative;
  transition: ease 0.9s;
  overflow: hidden;
}
.information-winery__link svg {
  z-index: 2;
  position: relative;
}
.information-winery__link:hover {
  color: #fff;
}
.information-winery__link:hover svg path {
  fill: #fff;
}
.information-winery__link:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.information-winery__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #313035;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.information-winery__link img {
  height: 24px;
  width: 24px;
  margin-left: 4px;
  position: relative;
  z-index: 3;
}
.information-winery__link span {
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 374px) {
  .information-winery__link {
    height: 60px;
    font-size: 18px;
  }
}
@media screen and (max-width: 374px) {
  .information-winery {
    padding-bottom: 40px;
  }
}

.box-insta {
  padding-bottom: 49px;
  padding-top: 56px;
  position: relative;
}
.box-insta__first {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.box-insta__title h3 {
  font-size: 30px;
  line-height: 18px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 13px;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 429px) {
  .box-insta__title h3 {
    font-size: 24px;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 374px) {
  .box-insta__title h3 {
    font-size: 20px;
  }
}
.box-insta__title span {
  font-size: 16px;
  line-height: 9px;
  font-weight: 500;
  font-family: "Fira Sans Condensed", serif;
  color: #fff;
  letter-spacing: 2.5px;
  margin-left: 2px;
}
@media screen and (max-width: 429px) {
  .box-insta__title span {
    font-size: 14px;
  }
}
@media screen and (max-width: 374px) {
  .box-insta__title span {
    font-size: 14px;
  }
}
@media screen and (max-width: 374px) {
  .box-insta__title {
    margin-bottom: 10px;
  }
}
.box-insta__link {
  background-color: #fff;
  align-items: center;
  font-size: 18px;
  font-family: "Fira Sans Condensed", serif;
  text-decoration: none;
  border-radius: 30px;
  color: #fff;
  padding: 10px 12px 10px 14px;
  transition: all 0.3s;
  border: none;
  height: 38px;
  width: 119px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-insta__link:hover {
  color: #fff;
  border-color: transparent;
}
.box-insta__link:hover svg path {
  fill: #fff;
}
.box-insta__link:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.box-insta__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #fff;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.box-insta__link svg {
  width: 15px;
  height: 15px;
  position: relative;
  z-index: 3;
  top: -1px;
}
.box-insta__link span {
  position: relative;
  z-index: 3;
  top: -1px;
  margin-right: 5px;
}
@media screen and (max-width: 429px) {
  .box-insta__link {
    font-size: 16px;
    height: 34px;
  }
}
@media screen and (max-width: 374px) {
  .box-insta__link {
    height: 30px;
  }
}
.box-insta__img {
  width: 100%;
  height: 211px;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 15px;
}
.box-insta__img img {
  object-fit: fill;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 429px) {
  .box-insta__img {
    height: auto;
  }
}
.box-insta__desc {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
  text-align: justify;
  letter-spacing: 0.6px;
}
@media screen and (max-width: 429px) {
  .box-insta__desc {
    font-size: 12px;
    line-height: 18px;
  }
}
.box-insta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
@media screen and (max-width: 374px) {
  .box-insta {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.bg-blue {
  background-color: #1a191e;
  padding: 50px 30px 30px 30px;
  position: relative;
}

.product-limited__winery {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-limited__price img {
  width: 296px;
}
@media screen and (max-width: 429px) {
  .product-limited__price img {
    width: 250px;
  }
}
@media screen and (max-width: 429px) {
  .product-limited__price img {
    width: 200px;
  }
}
.product-limited__madein {
  margin-top: 10px;
  margin-bottom: 10px;
}
.product-limited__madein span:nth-child(1) {
  font-size: 16px;
  line-height: 14px;
  letter-spacing: -0.19rem;
  color: #fff;
  font-weight: 700;
  display: block;
}
@media screen and (max-width: 429px) {
  .product-limited__madein span:nth-child(1) {
    font-size: 14px;
  }
}
.product-limited__madein span:nth-child(2) {
  font-size: 34px;
  line-height: 37px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.12rem;
  display: block;
  margin-top: 5px;
}
@media screen and (max-width: 429px) {
  .product-limited__madein span:nth-child(2) {
    font-size: 20px;
  }
}
.product-limited__img {
  height: 208px;
  width: 57px;
  margin-top: -10px;
  overflow: hidden;
  position: relative;
  top: 10px;
}
.product-limited__img img {
  height: 100%;
  width: 100%;
  object-fit: fill;
}
@media screen and (max-width: 429px) {
  .product-limited__img {
    width: 50px;
    height: 180px;
    margin-right: 0;
    margin-top: -40px;
  }
}
.product-limited__serial {
  font-size: 12px;
  line-height: 14px;
  font-weight: 900;
  color: #fff;
  border: 1px solid #836d4d;
  background-color: #836d4d;
  border-radius: 30px;
  padding: 8px 11px;
  display: inline-block;
}
@media screen and (max-width: 429px) {
  .product-limited__serial {
    font-size: 11px;
    padding: 6px 11.5px;
  }
}
@media screen and (max-width: 429px) {
  .product-limited__serial {
    font-size: 9px;
  }
}
.product-limited__payment {
  display: flex;
  align-items: center;
}
.product-limited__quality {
  font-family: "Fira Sans Condensed", serif;
  line-height: 24px;
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  padding-left: 7px;
  margin-left: 7px;
}
.product-limited__quality span {
  font-size: 10px;
  line-height: 10px;
  font-weight: 700;
  margin-left: -5px;
}
@media screen and (max-width: 429px) {
  .product-limited__quality {
    font-size: 33px;
  }
  .product-limited__quality span {
    font-size: 10px;
  }
}
@media screen and (max-width: 429px) {
  .product-limited__quality {
    font-size: 25px;
  }
  .product-limited__quality span {
    font-size: 7px;
  }
}
.product-limited__btn {
  background-color: #f35050;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  border: 1px solid #fff;
  border-radius: 100px;
  height: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  box-shadow: 2px 5px #fff;
  transition: all 0.3s;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.product-limited__btn:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.product-limited__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #fff;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.product-limited__btn img {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  position: relative;
  z-index: 3;
}
.product-limited__btn span {
  position: relative;
  z-index: 3;
}
.product-limited__list {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px 10px;
  margin-bottom: 0;
  margin-top: 20px;
  position: relative;
  z-index: 2;
  border-radius: 10px;
}
.product-limited__list li {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #fff;
  padding-left: 25px;
  position: relative;
  list-style: none;
  margin-bottom: 6px;
}
.product-limited__list li:last-child {
  margin-bottom: 0;
}
.product-limited__list li::before {
  content: "※";
  font-size: 26px;
  line-height: 30px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 429px) {
  .product-limited__list li {
    font-size: 20px;
  }
}
@media screen and (max-width: 429px) {
  .product-limited__list li {
    font-size: 16px;
  }
}

.sold-out {
  position: relative;
}
.sold-out::after {
  background-color: rgba(49, 48, 53, 0.5);
  content: "";
  width: calc(100vw + 80px);
  height: 100%;
  position: absolute;
  top: 0;
  left: -40px;
  z-index: 1;
  backdrop-filter: none;
}
.sold-out-end .sold-out-image {
  top: calc(28% + 3px);
}
.sold-out .btn-cart {
  background-color: #313035;
  color: #fff;
  z-index: 0;
}
.sold-out .btn-cart svg path {
  fill: #fff;
}
.sold-out-content::after {
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
  width: 100vw;
  height: 100%;
  max-width: 430px;
  margin-left: -30px;
  position: absolute;
  top: 0;
  left: 0;
}
.sold-out-content .box-insta__img {
  position: relative;
  z-index: 1;
}
.sold-out-blue .product-limited__btn {
  pointer-events: none;
}
.sold-out .information-winery__link::after {
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.sold-out-image {
  width: 100%;
  position: absolute;
  top: 50%;
  z-index: 111;
  transform: translateY(-50%);
  left: 30px;
}
.sold-out-image.limited {
  top: 61px;
}
.sold-out-image img {
  max-width: calc(100% - 60px);
}

.product-limited {
  position: relative;
}

.shipping {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 20px;
  color: #fff;
  margin-top: 20px;
}
.shipping h2 {
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.shipping-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.shipping-item {
  display: flex;
  gap: 2px;
  font-size: 13px;
  font-weight: 500;
  line-height: 20.2px;
  letter-spacing: 0.45px;
}
@media screen and (max-width: 429px) {
  .shipping-item {
    font-size: 12px;
    line-height: 18px;
  }
}

.social-list {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  top: -4px;
}
.social-list a {
  transition: all 0.3s;
}
.social-list a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 429px) {
  .social-list {
    gap: 16px;
  }
  .social-list a svg {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 374px) {
  .social-list {
    gap: 12px;
  }
  .social-list a svg {
    width: 24px;
    height: 24px;
  }
}

.box-insta__timeline {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.box-insta__timeline-item {
  display: flex;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  gap: 10px;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 429px) {
  .box-insta__timeline-item {
    font-size: 12px;
    line-height: 18px;
  }
}
@media screen and (max-width: 374px) {
  .box-insta__timeline-item {
    font-size: 11px;
    line-height: 16px;
  }
}

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