@-webkit-keyframes blurin {
  0% {
    opacity: 0;
    filter: blur(50px);
  }
  20% {
    opacity: 1;
  }
  100% {
    filter: blur(0);
  }
}
@keyframes blurin {
  0% {
    opacity: 0;
    filter: blur(50px);
  }
  20% {
    opacity: 1;
  }
  100% {
    filter: blur(0);
  }
}
body#items .pagetitle.anniversary {
  background-image: url("../images/items/pagetitle_bg_anniversary.jpg");
}
body#items .pagetitle.short {
  background-image: url("../images/items/pagetitle_bg_short.jpg");
}
body#items .pagetitle.baked {
  background-image: url("../images/items/pagetitle_bg_baked.jpg");
}
body#items .pagetitle.japanese {
  background-image: url("../images/items/pagetitle_bg_japanese.jpg");
}
body#items .pagetitle.sweets {
  background-image: url("../images/items/pagetitle_bg_sweets.jpg");
}
body#items .pagetitle.gift {
  background-image: url("../images/items/pagetitle_bg_gift.jpg");
}
body#items .pagetitle.campaign {
  background-image: url("../images/items/pagetitle_bg_campaign.jpg");
}
body#items .pagetitle.error {
  background-image: url("../images/items/pagetitle_bg_error.jpg");
}
body#items .main .section.itemlist ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  body#items .main .section.itemlist ul {
    gap: 4.1666666667vw;
  }
}
body#items .main .section.itemlist ul li:nth-child(3n-1) {
  transition-delay: 0.2s;
}
@media (max-width: 768px) {
  body#items .main .section.itemlist ul li:nth-child(3n-1) {
    transition-delay: 0.1s;
  }
}
body#items .main .section.itemlist ul li:nth-child(3n) {
  transition-delay: 0.3s;
}
@media (max-width: 768px) {
  body#items .main .section.itemlist ul li:nth-child(3n) {
    transition-delay: 0.1s;
  }
}
@media (max-width: 768px) {
  body#items .main .section.itemlist ul li:nth-child(2n) {
    transition-delay: 0.2s;
  }
}
body#items .main .section.itemlist ul li a {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 20rem;
  padding: 1.25rem;
  text-decoration: none;
}
@media (max-width: 768px) {
  body#items .main .section.itemlist ul li a {
    gap: 2.0833333333vw;
    width: 43.75vw;
    padding: 2.0833333333vw;
  }
}
body#items .main .section.itemlist ul li a::before, body#items .main .section.itemlist ul li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-style: solid;
  border-color: var(--key);
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.2, 1);
  transform: scale(0);
}
body#items .main .section.itemlist ul li a::before {
  border-width: 1px 0 0 1px;
  transform-origin: 0 0;
}
body#items .main .section.itemlist ul li a::after {
  border-width: 0 1px 1px 0;
  transform-origin: 100% 100%;
}
body#items .main .section.itemlist ul li a .badge {
  position: absolute;
  top: 1.875rem;
  left: 1.875rem;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.125rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  color: var(--wh);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
}
@media (max-width: 768px) {
  body#items .main .section.itemlist ul li a .badge {
    top: 3.125vw;
    left: 3.125vw;
    width: 8.3333333333vw;
    font-size: 2.0833333333vw;
  }
}
body#items .main .section.itemlist ul li a .badge.shop {
  background-color: #ea5550;
}
body#items .main .section.itemlist ul li a .badge.delivery {
  background-color: #00afcc;
}
body#items .main .section.itemlist ul li a picture {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: clip;
}
body#items .main .section.itemlist ul li a picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}
body#items .main .section.itemlist ul li a h3 {
  color: var(--bk65);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 768px) {
  body#items .main .section.itemlist ul li a h3 {
    font-size: 3.3333333333vw;
  }
}
body#items .main .section.itemlist ul li a .price {
  color: var(--key);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: right;
}
@media (max-width: 768px) {
  body#items .main .section.itemlist ul li a .price {
    font-size: 3.75vw;
  }
}
body#items .main .section.itemlist ul li a .price .tax {
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  body#items .main .section.itemlist ul li a .price .tax {
    font-size: 2.5vw;
  }
}
@media (any-hover: hover) {
  body#items .main .section.itemlist ul li a:hover::before, body#items .main .section.itemlist ul li a:hover::after {
    transform: scale(1);
  }
  body#items .main .section.itemlist ul li a:hover picture img {
    transform: scale(1.1);
  }
}
body#items .main .section .disabled {
  width: 100%;
  padding: 6.25rem 0;
  color: var(--bk50);
  font-size: 1rem;
  text-align: center;
}
@media (max-width: 768px) {
  body#items .main .section .disabled {
    padding: 20.8333333333vw 0;
    font-size: 3.3333333333vw;
  }
}
body#items .main .section.localnav ul {
  display: flex;
  justify-content: center;
  gap: 0.3125rem;
}
@media (max-width: 768px) {
  body#items .main .section.localnav ul {
    flex-wrap: wrap;
    gap: 1.0416666667vw;
  }
}
body#items .main .section.localnav ul li:nth-child(2) {
  transition-delay: 0.2s;
}
body#items .main .section.localnav ul li:nth-child(3) {
  transition-delay: 0.3s;
}
body#items .main .section.localnav ul li:nth-child(4) {
  transition-delay: 0.4s;
}
@media (max-width: 768px) {
  body#items .main .section.localnav ul li:nth-child(4) {
    transition-delay: 0.1s;
  }
}
body#items .main .section.localnav ul li:nth-child(5) {
  transition-delay: 0.5s;
}
@media (max-width: 768px) {
  body#items .main .section.localnav ul li:nth-child(5) {
    transition-delay: 0.2s;
  }
}
body#items .main .section.localnav ul li:nth-child(6) {
  transition-delay: 0.6s;
}
@media (max-width: 768px) {
  body#items .main .section.localnav ul li:nth-child(6) {
    transition-delay: 0.3s;
  }
}
body#items .main .section.localnav ul li a {
  position: relative;
  display: block;
  width: 10rem;
  aspect-ratio: 1/1;
  overflow: clip;
}
@media (max-width: 768px) {
  body#items .main .section.localnav ul li a {
    width: 29.1666666667vw;
  }
}
body#items .main .section.localnav ul li a figure img {
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}
body#items .main .section.localnav ul li a figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 2em;
  color: var(--wh);
  font-size: 0.875rem;
  font-weight: 700;
  background-color: var(--key80);
  transition: height 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}
@media (max-width: 768px) {
  body#items .main .section.localnav ul li a figure figcaption {
    font-size: 2.5vw;
  }
}
@media (any-hover: hover) {
  body#items .main .section.localnav ul li a:hover figure img {
    transform: scale(1.1);
  }
  body#items .main .section.localnav ul li a:hover figure figcaption {
    height: 100%;
  }
}
body#items .main .section.detail .container {
  display: flex;
  gap: 3.75rem;
}
@media (max-width: 768px) {
  body#items .main .section.detail .container {
    flex-direction: column;
    gap: 8.3333333333vw;
  }
}
body#items .main .section.detail .floating {
  position: relative;
  flex-shrink: 0;
  width: 27.5rem;
}
@media (max-width: 768px) {
  body#items .main .section.detail .floating {
    width: 100%;
  }
}
body#items .main .section.detail .floating .pics {
  position: -webkit-sticky;
  position: sticky;
  top: 12.5rem;
  left: 0;
  display: none;
}
@media (max-width: 768px) {
  body#items .main .section.detail .floating .pics {
    position: relative;
    top: 0;
  }
}
body#items .main .section.detail .floating .pics.slick-initialized {
  display: block;
}
body#items .main .section.detail .floating .pics .slick-arrow {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 3.125rem;
  height: 100%;
  padding: 0;
  font-size: 0;
  cursor: pointer;
}
@media (any-hover: hover) {
  body#items .main .section.detail .floating .pics .slick-arrow:hover::before {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  body#items .main .section.detail .floating .pics .slick-arrow {
    width: 10.4166666667vw;
  }
}
body#items .main .section.detail .floating .pics .slick-arrow::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}
body#items .main .section.detail .floating .pics .slick-arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.9375rem);
  left: calc(50% - 0.9375rem);
  width: 1.875rem;
  aspect-ratio: 1/1;
  background-color: var(--wh);
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}
@media (max-width: 768px) {
  body#items .main .section.detail .floating .pics .slick-arrow::after {
    top: calc(50% - 3.125vw);
    left: calc(50% - 3.125vw);
    width: 6.25vw;
  }
}
body#items .main .section.detail .floating .pics .slick-arrow.slick-prev {
  left: 0;
}
body#items .main .section.detail .floating .pics .slick-arrow.slick-prev::before {
  background: linear-gradient(to right, var(--bk40) 0%, var(--bk00) 100%);
}
body#items .main .section.detail .floating .pics .slick-arrow.slick-prev::after {
  -webkit-clip-path: polygon(calc(80% - 1px) 0, 20% 50%, calc(80% - 1px) 100%, calc(80% + 1px) calc(100% - 2px), calc(20% + 4px) 50%, calc(80% + 1px) 2px);
          clip-path: polygon(calc(80% - 1px) 0, 20% 50%, calc(80% - 1px) 100%, calc(80% + 1px) calc(100% - 2px), calc(20% + 4px) 50%, calc(80% + 1px) 2px);
}
@media (any-hover: hover) {
  body#items .main .section.detail .floating .pics .slick-arrow.slick-prev:hover::after {
    transform: translateX(-0.625rem);
  }
}
body#items .main .section.detail .floating .pics .slick-arrow.slick-next {
  right: 0;
}
body#items .main .section.detail .floating .pics .slick-arrow.slick-next::before {
  background: linear-gradient(to left, var(--bk40) 0%, var(--bk00) 100%);
}
body#items .main .section.detail .floating .pics .slick-arrow.slick-next::after {
  -webkit-clip-path: polygon(calc(20% + 1px) 0, 80% 50%, calc(20% + 1px) 100%, calc(20% - 1px) calc(100% - 2px), calc(80% - 4px) 50%, calc(20% - 1px) 2px);
          clip-path: polygon(calc(20% + 1px) 0, 80% 50%, calc(20% + 1px) 100%, calc(20% - 1px) calc(100% - 2px), calc(80% - 4px) 50%, calc(20% - 1px) 2px);
}
@media (any-hover: hover) {
  body#items .main .section.detail .floating .pics .slick-arrow.slick-next:hover::after {
    transform: translateX(0.625rem);
  }
}
body#items .main .section.detail .floating .pics img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
body#items .main .section.detail .product {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media (max-width: 768px) {
  body#items .main .section.detail .product {
    gap: 4.1666666667vw;
  }
}
body#items .main .section.detail .product .name {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  body#items .main .section.detail .product .name {
    font-size: 5vw;
  }
}
body#items .main .section.detail .product .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body#items .main .section.detail .product .info .label {
  padding: 0.1875rem 0.625rem;
  border-radius: 0.1875rem;
  color: var(--wh);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}
@media (max-width: 768px) {
  body#items .main .section.detail .product .info .label {
    padding: 0.625vw 2.0833333333vw;
    border-radius: 0.625vw;
    font-size: 3.3333333333vw;
  }
}
body#items .main .section.detail .product .info .label.shop {
  background-color: #ea5550;
}
body#items .main .section.detail .product .info .label.delivery {
  background-color: #00afcc;
}
body#items .main .section.detail .product .info .price {
  color: var(--key);
  font-size: 2.25rem;
  font-weight: 700;
  text-align: right;
}
@media (max-width: 768px) {
  body#items .main .section.detail .product .info .price {
    font-size: 7.5vw;
  }
}
body#items .main .section.detail .product .info .price .tax {
  font-size: 1rem;
}
@media (max-width: 768px) {
  body#items .main .section.detail .product .info .price .tax {
    font-size: 3.3333333333vw;
  }
}
body#items .main .section.detail .product .cartjs_product_form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  body#items .main .section.detail .product .cartjs_product_form {
    gap: 2.0833333333vw;
  }
}
body#items .main .section.detail .product .cartjs_product_table table {
  display: block;
}
body#items .main .section.detail .product .cartjs_product_table table tbody {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  body#items .main .section.detail .product .cartjs_product_table table tbody {
    gap: 2.0833333333vw;
  }
}
body#items .main .section.detail .product .cartjs_product_num {
  order: 3;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media (max-width: 768px) {
  body#items .main .section.detail .product .cartjs_product_num {
    gap: 2.0833333333vw;
  }
}
body#items .main .section.detail .product .cartjs_product_num th {
  font-size: 1rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  body#items .main .section.detail .product .cartjs_product_num th {
    font-size: 2.9166666667vw;
  }
}
body#items .main .section.detail .product .cartjs_product_num td {
  padding: 0 !important;
}
body#items .main .section.detail .product .cartjs_product_input_txt {
  outline: none;
  width: 6em !important;
  height: 3.125rem;
  padding: 0.625rem;
  border: 1px solid var(--bk20);
  border-radius: 0.3125rem;
  font-size: 1rem;
}
@media (max-width: 768px) {
  body#items .main .section.detail .product .cartjs_product_input_txt {
    height: 10.4166666667vw;
    border-radius: 1.0416666667vw;
    padding: 2.0833333333vw;
    font-size: 3.3333333333vw;
  }
}
body#items .main .section.detail .product .cartjs_product_info {
  display: none;
}
body#items .main .section.detail .product .cartjs_option {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}
@media (max-width: 768px) {
  body#items .main .section.detail .product .cartjs_option {
    gap: 1.0416666667vw;
  }
}
body#items .main .section.detail .product .cartjs_option1 {
  order: 1;
}
body#items .main .section.detail .product .cartjs_option2 {
  order: 2;
}
body#items .main .section.detail .product .cartjs_option th {
  font-size: 1rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  body#items .main .section.detail .product .cartjs_option th {
    font-size: 2.9166666667vw;
  }
}
body#items .main .section.detail .product .cartjs_option td select {
  outline: none;
  width: 100%;
  height: 3.125rem;
  padding: 0.625rem;
  border: 1px solid var(--bk20);
  border-radius: 0.3125rem;
  font-size: 1rem;
}
@media (max-width: 768px) {
  body#items .main .section.detail .product .cartjs_option td select {
    height: 10.4166666667vw;
    border-radius: 1.0416666667vw;
    padding: 2.0833333333vw;
    font-size: 3.3333333333vw;
  }
}
body#items .main .section.detail .product .cartjs_cart_in {
  position: relative;
}
body#items .main .section.detail .product .cartjs_cart_in::before {
  content: "";
  position: absolute;
  top: calc(50% - 1.25rem);
  left: 2.5rem;
  width: 2.5rem;
  aspect-ratio: 1/1;
  background-color: var(--wh);
  -webkit-mask: url("../images/items/icon_cart.svg") no-repeat 50% 50%;
          mask: url("../images/items/icon_cart.svg") no-repeat 50% 50%;
  -webkit-mask-size: contain;
          mask-size: contain;
  pointer-events: none;
  transition: background-color 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}
@media (max-width: 768px) {
  body#items .main .section.detail .product .cartjs_cart_in::before {
    top: calc(50% - 4.1666666667vw);
    left: 8.3333333333vw;
    width: 8.3333333333vw;
  }
}
body#items .main .section.detail .product .cartjs_cart_in input {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  padding: 1.875rem 4.375rem;
  border-radius: 0.625rem;
  color: var(--wh);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  background-color: var(--key);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}
@media (max-width: 768px) {
  body#items .main .section.detail .product .cartjs_cart_in input {
    gap: 2.0833333333vw;
    padding: 4.1666666667vw 14.5833333333vw;
    border-radius: 2.0833333333vw;
    font-size: 5vw;
  }
}
@media (any-hover: hover) {
  body#items .main .section.detail .product .cartjs_cart_in:hover::before {
    background-color: var(--key);
  }
  body#items .main .section.detail .product .cartjs_cart_in:hover input {
    color: var(--key);
    background-color: var(--bk65);
  }
}
body#items .main .section.detail .product .table tbody tr th, body#items .main .section.detail .product .table tbody tr td {
  padding: 1.25rem;
}
@media (max-width: 768px) {
  body#items .main .section.detail .product .table tbody tr th, body#items .main .section.detail .product .table tbody tr td {
    padding: 3.125vw;
  }
}
body#items .main .section.detail .product .table tbody tr th {
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 768px) {
  body#items .main .section.detail .product .table tbody tr th {
    text-align: left;
  }
}