@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600&family=Noto+Sans+JP:wght@400;700&display=swap");
.lp-cataloggiftscenepremium {
  display: flex;
  align-items: flex-start;
  width: 100%;
  min-height: 100vh;
}

.lp-scene__sidebar {
  flex: 1 1 0;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #f0efed;
  background-image: url("../img/background.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media screen and (min-width: 861px) and (max-width: 1100px) {
  .lp-scene__sidebar {
    flex: 0 0 25%;
    width: 25%;
    min-width: 0;
    max-width: 25%;
  }
}
@media screen and (max-width: 860px) {
  .lp-scene__sidebar {
    display: none;
  }
}

@media screen and (min-width: 861px) and (max-width: 1100px) {
  .lp-scene__sidebar--left {
    align-items: flex-start;
    padding-top: 260px;
  }
  .lp-scene__sidebar--left::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(240, 239, 237, 0.15) 0%, rgba(240, 239, 237, 0.05) 100%);
    pointer-events: none;
  }
}

.lp-scene__sidebar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 24px 16px;
}
@media screen and (min-width: 861px) and (max-width: 1100px) {
  .lp-scene__sidebar-inner {
    display: flex;
    padding: 20px 10px;
    gap: 14px;
  }
}

.lp-scene__logo-img {
  width: 260px;
  height: auto;
  display: block;
}
@media screen and (min-width: 861px) and (max-width: 1100px) {
  .lp-scene__logo-img {
    width: 100%;
    max-width: 160px;
  }
}

.lp-scene__sidebar--right {
  align-items: flex-start;
  padding-top: 146px;
}
@media screen and (min-width: 861px) and (max-width: 1100px) {
  .lp-scene__sidebar--right {
    padding-top: 154px;
    align-items: flex-start;
  }
}

@media screen and (min-width: 861px) and (max-width: 1100px) {
  .lp-scene__anchor-nav {
    display: block;
  }
}
.lp-scene__anchor-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 62px;
}
@media screen and (min-width: 861px) and (max-width: 1100px) {
  .lp-scene__anchor-nav ul {
    gap: 36px;
  }
}
.lp-scene__anchor-nav li a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  color: #666;
  white-space: nowrap;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}
@media screen and (min-width: 861px) and (max-width: 1100px) {
  .lp-scene__anchor-nav li a {
    font-size: 13px;
    letter-spacing: 0.02em;
  }
}
.lp-scene__anchor-nav li a:hover {
  color: #cc2222;
}

.lp-scene__main {
  width: 860px;
  flex: 0 0 860px;
  background: #ffffff;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.55);
}
@media screen and (min-width: 861px) and (max-width: 1100px) {
  .lp-scene__main {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
    min-width: 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.55);
  }
}
@media screen and (max-width: 860px) {
  .lp-scene__main {
    flex: 1 1 100%;
    width: 100%;
    max-width: none;
    box-shadow: none;
  }
}

.lp-scene__hero {
  width: 100%;
}
.lp-scene__hero .lp-scene__hero-img {
  display: block;
  width: 100%;
  height: auto;
}
.lp-scene__hero a {
  display: block;
  width: 100%;
}
.lp-scene__hero a img {
  display: block;
  width: 100%;
  height: auto;
}
.lp-scene__hero .lp-scene__densi-btn {
  display: flex;
  justify-content: center;
  padding-bottom: 50px;
}
.lp-scene__hero .lp-scene__densi-btn img {
  width: 100%;
  height: auto;
  max-width: 600px;
}
@media screen and (max-width: 767px) {
  .lp-scene__hero .lp-scene__densi-btn {
    padding-bottom: 20px;
  }
  .lp-scene__hero .lp-scene__densi-btn img {
    max-width: 320px;
  }
}

.lp-scene__cta-btn {
  display: inline-block;
  background: #cc2222;
  color: #ffffff !important;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 16px 42px;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid #cc2222;
  box-shadow: inset 0 0 0 0.5px #ffffff;
}
@media screen and (min-width: 861px) and (max-width: 1100px) {
  .lp-scene__cta-btn {
    font-size: 11px;
    padding: 10px 14px;
    letter-spacing: 0.03em;
    border-radius: 4px;
    white-space: normal;
    text-align: center;
    box-sizing: border-box;
  }
}
.lp-scene__cta-btn:hover {
  background: #aa1a1a;
  border-color: #aa1a1a;
  text-decoration: none;
}
.lp-scene__cta-btn--large {
  font-size: 16px;
  padding: 16px 46px;
}
@media screen and (min-width: 861px) and (max-width: 1100px) {
  .lp-scene__cta-btn--large {
    font-size: 11px;
    padding: 10px 14px;
  }
}
@media screen and (max-width: 479px) {
  .lp-scene__cta-btn--large {
    font-size: 13px;
    padding: 14px 46px;
  }
}

.lp-scene__cta-footer {
  background: #3d3d3d;
  padding: 20px 0;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 860px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media screen and (min-width: 861px) and (max-width: 1100px) {
  .lp-scene__cta-footer {
    width: 50%;
  }
}
@media screen and (max-width: 860px) {
  .lp-scene__cta-footer {
    width: 100%;
  }
}
.lp-scene__cta-footer.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.land .itemtype {
  padding: 0;
}
@media screen and (max-width: 860px) {
  .land .itemtype {
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .land .itemtype {
    padding: 40px 10px 10px;
  }
}
.land .section {
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto 30px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0 0 20px;
  text-align: center;
}
.land .section img {
  max-width: 100%;
}
.land .itemgroup {
  padding: 0 0 1px;
}
.land .itemgroup > a {
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}
.land .itemgroup > a:hover {
  opacity: 0.7;
}
.land .itemgroup h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  color: #cc2222;
  text-align: center;
  padding: 13px;
  margin: 0 0 50px;
  letter-spacing: 0.2em;
  border-top: double 4px #cc2222;
  border-bottom: double 4px #cc2222;
}
@media screen and (max-width: 767px) {
  .land .itemgroup h3 {
    font-size: 18px;
    letter-spacing: 0;
    margin: 0 0 30px;
  }
}
.land .itemgroup h3 span {
  font-weight: normal;
  display: block;
  font-size: 13px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .land .itemgroup h3 span {
    font-size: 11px;
    letter-spacing: 0;
    line-height: 1.4;
    margin-top: 0.3em;
  }
}
.land .itemgroup ul.landlist {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 0 10px;
  margin-bottom: 40px;
  text-align: center;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .land .itemgroup ul.landlist {
    margin-bottom: 20px;
    padding: 10px;
  }
}
.land .itemgroup ul.landlist li {
  width: 30%;
  margin: 0 1.55% 40px;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .land .itemgroup ul.landlist li {
    width: 47%;
    margin: 0 1.5% 1em;
  }
}
.land .itemgroup ul.landlist li a {
  text-decoration: none;
  display: block;
}
.land .itemgroup ul.landlist li .img_c {
  margin: 0 0 8px;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  position: relative;
}
.land .itemgroup ul.landlist li .img_c img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.2s ease;
}
.land .itemgroup ul.landlist li .img_c:hover img {
  opacity: 0.85;
}
.land .itemgroup ul.landlist li .price-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #3d3d3d;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 0 6px 0 6px;
  letter-spacing: 0.03em;
  z-index: 1;
}
.land .itemgroup ul.landlist li > a + a .img_c {
  margin-top: 6px;
}/*# sourceMappingURL=cataloggiftscenepremium.css.map */