@charset "UTF-8";
html {
  display: flex;
  flex-direction: column;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  min-height: 1px;
}

footer {
  margin-top: auto;
}

body {
  position: relative;
  overflow-x: hidden;
  font-family: "Kosugi Maru", "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #040707;
  background: #f3d9e0;
}
body:before {
  content: "";
  background: url(../img/bg-heart.png) no-repeat center/cover;
  display: block;
  width: 100%;
  aspect-ratio: 1920/1080;
  position: fixed;
  z-index: -1;
}
@media (max-width: 1199px) {
  body:before {
    position: absolute;
    background: url(../img/sp-heart.png) no-repeat center/cover;
    aspect-ratio: 1/1;
  }
}
body:after {
  content: "";
  background: url(../img/bg-star.png) repeat center/268px;
  position: fixed;
  inset: 0;
  z-index: -2;
}

p {
  line-height: 1.6;
}

a {
  color: inherit;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}
a.btn {
  text-decoration: none;
}

:focus,
button:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  border: none;
}

:root {
  scroll-behavior: auto !important;
}

section {
  padding: 80px 0;
}
@media (max-width: 767px) {
  section {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  section {
    padding: 20px 0;
  }
}
@media (max-width: 575px) {
  section:last-of-type {
    padding-bottom: 55px;
  }
}

.inner {
  width: min(92%, 1200px);
  margin: 0 auto;
}

.box {
  padding: 30px;
  background: #fff;
  border: 4px solid #040707;
  box-shadow: 5px 5px 0 #040707;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .box {
    padding: 30px 20px;
    box-shadow: 2px 2px 0 #040707;
  }
}

h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  line-height: 1;
  font-size: 48px;
  font-family: "sneakers-pro", sans-serif;
  font-style: italic;
}
@media (max-width: 767px) {
  h2 {
    font-size: 30px;
  }
}
h2:before, h2:after {
  content: "\f005";
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  margin-inline: 0.5em;
  font-weight: 600;
  font-size: 0.5em;
  font-style: normal;
  color: #f3ea49;
}

p {
  margin-bottom: 0;
}

.kv_sec {
  padding-top: 160px;
}
@media (max-width: 767px) {
  .kv_sec {
    padding: 100px 0 50px;
  }
}
.kv_sec hgroup p {
  margin-top: 30px;
  text-align: center;
}
@media (max-width: 767px) {
  .kv_sec hgroup p {
    margin-top: 20px;
  }
}

.StyleF_Frame_ {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .StyleF_Frame_ {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .StyleF_Frame_ {
    gap: 30px 20px;
  }
}

.StyleF_Item_ {
  display: flex;
  flex-direction: column;
  width: calc((100% - 150px) / 4);
}
@media (max-width: 991px) {
  .StyleF_Item_ {
    width: calc((100% - 90px) / 4);
  }
}
@media (max-width: 767px) {
  .StyleF_Item_ {
    width: calc((100% - 20px) / 2);
  }
}
.StyleF_Item_ a {
  text-decoration: none;
}

.name_ {
  margin-block: 1em;
}
@media (max-width: 767px) {
  .name_ {
    font-size: 14px;
  }
}

a.goods_name_ {
  text-decoration: none;
}

.rdt_,
.comment_ {
  display: none;
}

@media (max-width: 767px) {
  .stock {
    font-size: 14px;
  }
}

.StyleF_Item_:has(img[src*=cart_s]) .price_:before, .StyleF_Item_:has(img[src*=reserved_s]) .price_:before {
  content: "在庫あり";
  color: #e06387;
}
.StyleF_Item_:has(.reservation_) .price_:before, .StyleF_Item_:has(.order_) .price_:before {
  content: "在庫あり";
  color: #e06387;
}

/* .price_ {
  position: relative;
  margin-top: auto;
  text-align: right;
  font-weight: 600;
}
@media (min-width: 768px) {
  .price_ {
    font-size: 1.2em;
  }
}
.price_:before {
  content: "在庫なし";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-weight: 400;
  font-size: 14px;
  color: #aaa;
} */

/* 追加：在庫ありなしの縦並び設定 */
.price_ {
  display: flex;
  flex-direction: column;
  text-align: right;
  margin-top: auto;
  font-weight: 600;
}

.price_:before {
  content: "在庫なし";
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  color: #aaa;
  margin-bottom: 2px;
}

@media (min-width: 1120px) {
  .price_ {
    display: block;
    position: relative;
    font-size: 1.2em;
  }
  .price_:before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 0;
  }
}

.cart_ {
  display: none;
}
.cart_ .btn_cart_,
.cart_ a {
  display: none;
}

footer {
  padding-block: 0.5em;
}
footer .link-pageup {
  position: fixed;
  right: 40px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  font-size: 40px;
  color: #f3ea49;
  background: #040707;
  text-decoration: none;
  border-radius: 100vmax;
  z-index: 100;
}
@media (max-width: 991px) {
  footer .link-pageup {
    right: 10px;
    bottom: 10px;
  }
}
@media (max-width: 767px) {
  footer .link-pageup {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}
footer .copyright {
  display: block;
  text-align: center;
  color: #ffffff;
}

header {
  padding: 10px 20px;
  background: #000000;
}
@media (max-width: 575px) {
  header {
    padding: 8px;
  }
}
header .img-logo {
  width: 40vw;
  max-width: 160px;
}