@charset "UTF-8";

:root {
  /* セーフエリアの値をCSS変数として定義 */
  --sa-inset-top: env(safe-area-inset-top, 0);
  --sa-inset-bottom: env(safe-area-inset-bottom, 0);
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

.vertical-scroll-container {
  width: 100vw;
  /* height: 100vh;
	height: 100svh; */
  height: 100dvh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.section {
  width: 100vw;
  /* height: 100vh;
	height: 100svh; */
  height: 100dvh;
  padding: 0 20px;
  scroll-snap-align: start;
  position: relative;
  background-color: #fff;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.section__body {
  height: 100%;
  padding-top: 70px;
  padding-bottom: calc(50px + env(safe-area-inset-bottom));
}

.section--0 {
  background-image: url(https://images.i879.com/image/hanamore/1_pc.webp);
}

/* .section--gallery {
	padding: 0;
} */

.section--0::before,
.section--1::before {
  content: '';
  width: 36.25vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: linear-gradient(to right, rgba(64, 24, 0, .5) 0%, rgba(64, 24, 0, 0) 100%);
  z-index: 1;
}

@media (max-width: 768px) {
  .section--0 {
    background-image: url(https://images.i879.com/image/hanamore/1_sp.webp);
  }

  .section--0::before {
    width: 100vw;
    height: 60vh;
    top: auto;
    bottom: 0;
    background: linear-gradient(to top, rgba(64, 24, 0, .5) 0%, rgba(64, 24, 0, 0) 100%);
  }

  .section--1::before {
    width: 100vw;
    height: 50vh;
    background: linear-gradient(to bottom, rgba(64, 24, 0, .5) 0%, rgba(64, 24, 0, 0) 100%);
  }

  .section--1::after {
    content: '';
    width: 100vw;
    height: 20vh;
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    background: linear-gradient(to top, rgba(64, 24, 0, .7) 0%, rgba(64, 24, 0, 0) 100%);
    z-index: 1;
  }

  .section--1 .section__body {
    padding-bottom: calc(30px + env(safe-area-inset-bottom));
  }
}

.product-info {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  color: #fff;
  text-align: left;
  text-shadow: 0 6px 6px rgba(0, 0, 0, .5);
  z-index: 2;
}

.product-info__logo--hanamore {
  max-width: 355px;
}

.product-info__logo--peririca {
  max-width: 444px;
}

.product-info__body {}

.product-info__title {
  margin: 0;
  font-size: 28px;
  color: #fff;
  text-align: left;
}

.product-info__title span {
  font-size: 18px;
}

.product-info__text {
  margin-top: 20px;
  font-size: 16px;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-overlay {
  width: 36.25vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: linear-gradient(to right, rgba(64, 24, 0, .5) 0%, rgba(64, 24, 0, 0) 100%);
  z-index: 1;
}

@media (max-width: 768px) {
  .product-info {
    justify-content: space-between;
  }

  .product-info__logo {
    /* flex: 1 1 auto; */
    min-height: 0;
    display: flex;
    width: 100%;
    margin: 0 auto;
  }

  .product-info__logo--hanamore {
    max-width: 200px;
  }

  .product-info__logo--peririca {
    max-width: 222px;
  }

  .product-info__logo picture {
    display: flex;
    justify-content: center;
    max-height: 100%;
    width: 100%;
  }

  .product-info__logo img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    /* 縦横比を維持して収める */
  }

  .product-info__body {
    flex: 0 0 auto;
    width: 100%;
  }

  .product-info__title {
    font-size: 16px;
  }

  .product-info__title span {
    font-size: 13px;
  }

  .product-info__text {
    font-size: 13px;
  }

  .video-overlay {
    width: 100vw;
    height: 60vh;
    top: auto;
    bottom: 0;
    background: linear-gradient(to top, rgba(64, 24, 0, .5) 0%, rgba(64, 24, 0, 0) 100%);
  }
}

.lineup-info {
  max-width: 450px;
  height: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lineup-info__title {
  font-size: 16px;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 1);
}

.lineup-info__logo {}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.product-grid__item a {
  text-decoration: none;
  color: inherit;
}

.product-grid__item {
  position: relative;
  aspect-ratio: 1 / 1.3;
  text-align: center;
  color: #333;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.product-grid__img {
  width: 100%;
  aspect-ratio: 1 / 1.3;
  background-color: #ccc;
  overflow: hidden;
  font-weight: bold;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}

.product-grid__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-grid__name {
  padding-bottom: 1em;
  font-weight: bold;
  font-size: .95rem;
  line-height: 1.15rem;
  color: #fff;
  position: relative;
  text-shadow: rgb(0 0 0) 0 0 5px;
}

.horizontal-gallery {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}

.horizontal-gallery-inner {
  width: 100%;
  height: 100%;
  display: flex;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  position: relative;
}

.gallery-item {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}

.bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  will-change: opacity;
}

.bg-layer.active {
  opacity: 1;
}

/* 730001 */
.bg-img-730001-1 {
  background-image: url(https://images.i879.com/image/hanamore/gallery/730001_pc.webp);
}

/* 730002 */
.bg-img-730002-1 {
  background-image: url(https://images.i879.com/image/hanamore/gallery/730002_pc.webp);
}

/* 730003 */
.bg-img-730003-1 {
  background-image: url(https://images.i879.com/image/hanamore/gallery/730003_pc.webp);
}

/* 730004 */
.bg-img-730004-1 {
  background-image: url(https://images.i879.com/image/hanamore/gallery/730004_pc.webp);
}

/* 730005 */
.bg-img-730005-1 {
  background-image: url(https://images.i879.com/image/hanamore/gallery/730005_pc.webp);
}

/* 730006 */
.bg-img-730006-1 {
  background-image: url(https://images.i879.com/image/hanamore/gallery/730006_pc.webp);
}

/* 730007 */
.bg-img-730007-1 {
  background-image: url(https://images.i879.com/image/hanamore/gallery/730007_pc.webp);
}

/* 730008 */
.bg-img-730008-1 {
  background-image: url(https://images.i879.com/image/hanamore/gallery/730008_pc.webp);
}

/* 730009 */
.bg-img-730009-1 {
  background-image: url(https://images.i879.com/image/hanamore/gallery/730009_pc.webp);
}

/* 730010 */
.bg-img-730010-1 {
  background-image: url(https://images.i879.com/image/hanamore/gallery/730010_pc.webp);
}

/* 730011 */
.bg-img-730011-1 {
  background-image: url(https://images.i879.com/image/hanamore/gallery/730011_pc.webp);
}

/* 730012 */
.bg-img-730012-1 {
  background-image: url(https://images.i879.com/image/hanamore/gallery/730012_pc.webp);
}

/* 730013 */
.bg-img-730013-1 {
  background-image: url(https://images.i879.com/image/hanamore/gallery/730013_pc.webp);
}

/* 730014 */
.bg-img-730014-1 {
  background-image: url(https://images.i879.com/image/hanamore/gallery/730014_pc.webp);
}

/* 730015 */
.bg-img-730015-1 {
  background-image: url(https://images.i879.com/image/hanamore/gallery/730015_pc.webp);
}

/* 730016 */
.bg-img-730016-1 {
  background-image: url(https://images.i879.com/image/hanamore/gallery/730016_pc.webp);
}

/* 730017 */
.bg-img-730017-1 {
  background-image: url(https://images.i879.com/image/hanamore/gallery/730017_pc.webp);
}

/* 730018 */
.bg-img-730018-1 {
  background-image: url(https://images.i879.com/image/hanamore/gallery/730018_pc.webp);
}

/* 730019 */
.bg-img-730019-1 {
  background-image: url(https://images.i879.com/image/hanamore/gallery/730019_pc.webp);
}

/* 730020 */
.bg-img-730020-1 {
  background-image: url(https://images.i879.com/image/hanamore/gallery/730020_pc.webp);
}

/* 730021 */
.bg-img-730021-1 {
  background-image: url(https://images.i879.com/image/hanamore/gallery/730021_pc.webp);
}

/* 730022 */
.bg-img-730022-1 {
  background-image: url(https://images.i879.com/image/hanamore/gallery/730022_pc.webp);
}

/* 730023 */
.bg-img-730023-1 {
  background-image: url(https://images.i879.com/image/hanamore/gallery/730023_pc.webp);
}

/* 730024 */
.bg-img-730024-1 {
  background-image: url(https://images.i879.com/image/hanamore/gallery/730024_pc.webp);
}

/* 730025 */
.bg-img-730025-1 {
  background-image: url(https://images.i879.com/image/hanamore/gallery/730025_pc.webp);
}


@media screen and (max-width: 768px) {

  /* 730001 */
  .bg-img-730001-1 {
    background-image: url(https://images.i879.com/image/hanamore/gallery/730001_sp.webp);
  }

  /* 730002 */
  .bg-img-730002-1 {
    background-image: url(https://images.i879.com/image/hanamore/gallery/730002_sp.webp);
  }

  /* 730003 */
  .bg-img-730003-1 {
    background-image: url(https://images.i879.com/image/hanamore/gallery/730003_sp.webp);
  }

  /* 730004 */
  .bg-img-730004-1 {
    background-image: url(https://images.i879.com/image/hanamore/gallery/730004_sp.webp);
  }

  /* 730005 */
  .bg-img-730005-1 {
    background-image: url(https://images.i879.com/image/hanamore/gallery/730005_sp.webp);
  }

  /* 730006 */
  .bg-img-730006-1 {
    background-image: url(https://images.i879.com/image/hanamore/gallery/730006_sp.webp);
  }

  /* 730007 */
  .bg-img-730007-1 {
    background-image: url(https://images.i879.com/image/hanamore/gallery/730007_sp.webp);
  }

  /* 730008 */
  .bg-img-730008-1 {
    background-image: url(https://images.i879.com/image/hanamore/gallery/730008_sp.webp);
  }

  /* 730009 */
  .bg-img-730009-1 {
    background-image: url(https://images.i879.com/image/hanamore/gallery/730009_sp.webp);
  }

  /* 730010 */
  .bg-img-730010-1 {
    background-image: url(https://images.i879.com/image/hanamore/gallery/730010_sp.webp);
  }

  /* 730011 */
  .bg-img-730011-1 {
    background-image: url(https://images.i879.com/image/hanamore/gallery/730011_sp.webp);
  }

  /* 730012 */
  .bg-img-730012-1 {
    background-image: url(https://images.i879.com/image/hanamore/gallery/730012_sp.webp);
  }

  /* 730013 */
  .bg-img-730013-1 {
    background-image: url(https://images.i879.com/image/hanamore/gallery/730013_sp.webp);
  }

  /* 730014 */
  .bg-img-730014-1 {
    background-image: url(https://images.i879.com/image/hanamore/gallery/730014_sp.webp);
  }

  /* 730015 */
  .bg-img-730015-1 {
    background-image: url(https://images.i879.com/image/hanamore/gallery/730015_sp.webp);
  }

  /* 730016 */
  .bg-img-730016-1 {
    background-image: url(https://images.i879.com/image/hanamore/gallery/730016_sp.webp);
  }

  /* 730017 */
  .bg-img-730017-1 {
    background-image: url(https://images.i879.com/image/hanamore/gallery/730017_sp.webp);
  }

  /* 730018 */
  .bg-img-730018-1 {
    background-image: url(https://images.i879.com/image/hanamore/gallery/730018_sp.webp);
  }

  /* 730019 */
  .bg-img-730019-1 {
    background-image: url(https://images.i879.com/image/hanamore/gallery/730019_sp.webp);
  }

  /* 730020 */
  .bg-img-730020-1 {
    background-image: url(https://images.i879.com/image/hanamore/gallery/730020_sp.webp);
  }

  /* 730021 */
  .bg-img-730021-1 {
    background-image: url(https://images.i879.com/image/hanamore/gallery/730021_sp.webp);
  }

  /* 730022 */
  .bg-img-730022-1 {
    background-image: url(https://images.i879.com/image/hanamore/gallery/730022_sp.webp);
  }

  /* 730023 */
  .bg-img-730023-1 {
    background-image: url(https://images.i879.com/image/hanamore/gallery/730023_sp.webp);
  }

  /* 730024 */
  .bg-img-730024-1 {
    background-image: url(https://images.i879.com/image/hanamore/gallery/730024_sp.webp);
  }

  /* 730025 */
  .bg-img-730025-1 {
    background-image: url(https://images.i879.com/image/hanamore/gallery/730025_sp.webp);
  }

}

.box-gallery {
  width: 407px;
  height: 100vh;
  padding: 0 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

/* .box-gallery::before {
	content: '';
	width: 36.25vw;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	background: linear-gradient(to right, rgba(64,24,0,.5) 0%,rgba(64,24,0,0) 100%);
} */

.gallery-product {
  width: 407px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* gap: 10px; */
  color: #fff;
  text-align: left;
  text-shadow: 0 3px 3px rgba(0, 0, 0, .5);
  z-index: 2;
}

.gallery-product__name {
  font-size: 18px;
  text-align: center;
  text-shadow: 0 3px 3px rgba(0, 0, 0, .5);
}

.gallery-product__price {
  font-size: 16px;
  margin: 15px 0;
  padding: 5px 0;
  font-weight: 500;
  text-align: right;
  text-shadow: 0 3px 3px rgba(0, 0, 0, .5);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.gallery-product__price span {
  font-size: 14px;
}

.gallery-product__lead-body {
  margin: 15px 0;
  text-shadow: 0 3px 3px rgba(0, 0, 0, .5);
}

.gallery-product__list {
  margin: 15px 0;
  padding: 5px 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  font-weight: bold;
  text-shadow: 0 3px 3px rgba(0, 0, 0, .5);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 768px) {
  /* .box-gallery::before {
		width: 100vw;
		height: 60vh;
		background: linear-gradient(to bottom, rgba(64,24,0,.5) 0%,rgba(64,24,0,0) 100%);
	} */

  .gallery-product {
    width: auto;
    justify-content: space-between;
  }

  .gallery-product__body {
    min-height: 0;
  }

  .gallery-product__name {
    font-size: 16px;
  }

  .gallery-product__price {
    font-size: 14px;
  }

  .gallery-product__price span {
    font-size: 11px;
  }

  .gallery-product__lead {
    font-size: 13px;
  }

  .gallery-product__list {
    font-size: 13px;
  }
}

.gallery-product-ctl {
  margin-top: 50px;
  text-align: center;
}

.box-color-select {
  display: inline-block;
}

.box-color-select__inr {
  margin-bottom: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.box-color-select__title {
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.1;
  text-align: left;
  color: #fff;
  text-shadow: 0 3px 3px rgba(0, 0, 0, .5);
}

.btn-color-changer {
  width: 35px;
  aspect-ratio: 1;
  background-color: #fff;
  border: 0;
  appearance: none;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 4px;
}

.btn-color-changer__pink {
  background-color: #FFB2D2;
}

.btn-color-changer__vividpink {
  background-color: #FF3A8C;
}

.btn-color-changer__yellow {
  background-color: #FFD966;
}

.btn-color-changer__orange {
  background-color: #F6B26B;
}

.btn-color-changer__blue {
  background-color: #6D9EEB;
}

.hide-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.add-to-cart-btn {
  display: block;
  width: 100%;
  background-color: #da3940;
  color: #FFF;
  text-align: center;
  padding: 10px 0;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .gallery-product-ctl {
    margin-top: 0;
    flex: 0 0 auto;
    width: 100%;
  }
}

.scl-info-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scl-info {
  max-width: 450px;
}

.scl-info__title {
  font-size: 16px;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 1);
}

.lineup-name {
  padding-bottom: 1em;
  font-weight: bold;
  font-size: .95rem;
  line-height: 1.15rem;
  color: #333;
  position: relative;
  text-shadow: rgba(255, 255, 255, .8) 0 0 5px;
}

.box-scl {
  display: grid;
  grid-template-rows: auto 1fr;
  aspect-ratio: 1 / 1.3;
  /* height: calc(100vh - 70px); */
}

.box-scl__body {
  width: 100%;
  overflow-y: auto;
}

.box-lineup {
  height: 80px;
  display: flex;
  align-items: center;
  gap: 10px;

  position: fixed;
  bottom: 10px;
  left: 10px;
  overflow: hidden;
  z-index: 6;
}

.btn-lineup {
  width: 80px;
  aspect-ratio: 1;
  appearance: none;
  border-radius: 100vh;
  border: 0;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  background-color: #F498AD;
  cursor: pointer;
}

.box-lineup__body {
  width: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.box-lineup__body.is-active {
  width: 440px;
}

.local-nav-foot {
  width: auto;
  margin: 0;
  padding: 0;
  height: 100px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.local-nav-foot__item {
  width: 80px;
  aspect-ratio: 1;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .box-lineup {
    height: 42px;
  }

  .btn-lineup {
    width: 42px;
    font-size: 12px;
  }

  .local-nav-foot__item {
    width: 42px;
  }
}

.icon-btn {
  z-index: 10;
  cursor: pointer;
  transition: opacity 0.3s,
    visibility: 0.3s;
}

.icon-btn.hidden {
  opacity: 0;
  visibility: hidden;
}

.vertical-icon {
  position: fixed;
  right: 10px;
  width: 30px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
}

#scroll-down-btn {
  bottom: 60px;
  animation: bounce 2s infinite;
}

#scroll-to-top-btn {
  bottom: 100px;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-15px);
  }

  60% {
    transform: translateY(-10px);
  }
}

.horizontal-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 6;
  display: none !important;
}

.horizontal-icon:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.horizontal-icon.scroll-left-btn {
  left: 10px;
}

.horizontal-icon.scroll-right-btn {
  right: 25px;
}

@media screen and (max-width: 768px) {
  .horizontal-icon.scroll-right-btn {
    right: 10px;
  }
}