@charset "UTF-8";
/* TOPページ専用 */
/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 71px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 全スライドを“少しだけ拡大”した状態を基準にする */
  transform: scale(1.06);
  will-change: transform;
  /* アクティブ中の拡大はtransitionで滑らかに */
  transition: transform 5s ease-out;
}

/* アクティブになったらさらに拡大 */
.hero-slide.swiper-slide-active .hero-bg img,
.hero-slide.swiper-slide-duplicate-active .hero-bg img {
  transform: scale(1.12);
}

/*
  fadeのクロスフェード中、直前スライドはまだ見えてるので
  ここが縮むと“ガクッ”になる
  → prev も拡大状態をキープ
*/
.hero-slide.swiper-slide-prev .hero-bg img,
.hero-slide.swiper-slide-duplicate-prev .hero-bg img {
  transform: scale(1.12);
  transition-duration: 0.8s;
}

/* overlay：最初は透明 */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAAAXNSR0IArs4c6QAAABhJREFUGFdjZEACjHp6ev8vXboEphmRZQBrKwWNTXkrSAAAAABJRU5ErkJggg==), url(https://drive.google.com/uc?export=view&id=1D8WqoRgWao_Ac_xUh9cAmozt6JBE0LUx);
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-blend-mode: overlay;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.25) 100%);
}

/* 1秒後にJSで付くクラスでON */
.hero-slide.is-overlay-on .hero-overlay {
  opacity: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #fff;
  width: 90%;
  max-width: 880px;
  margin: 0 auto;
}

.hero-content h1 {
  color: white;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.3;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 2.5vw, 20px);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background-color: var(--brand-red);
  color: white;
  border-radius: 6px;
  font-weight: 700;
  transition: background-color 0.3s;
  min-width: 200px;
}

.btn-primary:visited {
  color: white;
}

.btn-primary:hover {
  color: white;
  background-color: var(--brand-red-dark);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 6px;
  font-weight: 700;
  transition: all 0.3s;
  min-width: 200px;
}

.btn-secondary:visited {
  color: white;
}

.btn-secondary:hover {
  background-color: white;
  color: var(--brand-red);
}

/* スライダー共通 */
.hero--has-swiper,
.menu-swiper {
  position: relative;
}

/* ラッパーは相対配置 */
.menu-swiper-wrap {
  position: relative;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  height: 100%;
  width: 100%;
}

/* ヒーローナビ（任意で非表示でもOK） */
.hero-nav {
  color: #fff;
}

.hero-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}

.hero-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* 動画 */
.hero--video video.hero-video {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 50%;
  left: 50%;
  width: 100%;
  height: calc(100vh - 71px);
  object-fit: cover;
  transform: translate(-50%, -50%);
}

/* 共通の矢印スタイル */
.menu-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

/* 左右位置（必要に応じて調整） */
.menu-nav-prev {
  left: -20px;
  /* 外側に出したい分だけマイナスに */
}

.menu-nav-next {
  right: -20px;
}

/* 矢印の中身（例：くの字 or ＞ を疑似要素で） */
.menu-nav::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}

.menu-nav-prev::before {
  transform: rotate(-135deg);
}

.menu-nav-next::before {
  transform: rotate(45deg);
}

.rellax {
  position: absolute;
}
@media (min-width: 640px) {
  .rellax .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/*///////////////////////////////////////////////////

こだわり Section Common

///////////////////////////////////////////////////*/
section {
  /* Commitment Section */
  /* 初期状態：まだ見えてないカード */
  /* 表示開始状態：このクラスが付いたカードだけ動く */
  /* SPでは遅延ナシで一気に */
  /* もし元画像が黒などで、白に統一したい場合はこのクラスをcommitment-iconに追加 */
}
section .cloud--left {
  left: -30vw;
}
section .cloud--right {
  right: -30vw;
}
section#commitment h2 {
  color: #fff;
}
section#commitment .commitment-sub {
  color: #fff;
}
section#menu .stores-sub {
  color: #fff;
}
section#stores h2 {
  color: #fff;
}
section#stores .stores-sub {
  color: #fff;
}
section#shop h2 {
  color: #fff;
  margin-bottom: 20px;
}
section#news {
  background: linear-gradient(180deg, #fff3dd 0%, #fffbf4 50%, #fbeed6 100%);
}
section#news .news-sub {
  color: #000;
}
section#note h2 {
  color: #fff;
}
section#insta h2 {
  color: #fff;
}
section#insta .insta-sub {
  margin-bottom: 30px;
}
section#insta #sb_instagram .sbi_photo {
  border-radius: 100%;
  overflow: hidden;
}
section#insta #sb_instagram svg {
  display: none !important;
}
section#insta #sbi_images {
  margin-bottom: 80px;
}
section .bg-gray {
  background: linear-gradient(to bottom, white, #f2e8d7);
}
section .bg-beige {
  background-color: var(--bg-beige);
}
section .sub-text {
  font-size: clamp(16px, 2.5vw, 20px);
  color: #fff;
}
section .commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  margin-bottom: 48px;
}
section .commitment-card {
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  /* JSでここに --stagger-delay を入れる */
  transition-delay: var(--stagger-delay, 0s);
}
section .commitment-card.is-show {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767px) {
  section .commitment-card .commitment-image {
    transition-delay: 0s !important;
  }
}
section .commitment-card .commitment-image {
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
section .commitment-card .commitment-image:hover {
  box-shadow: 0 10px 30px rgba(193, 39, 45, 0.2);
}
section .commitment-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/3;
  border-radius: 100%;
}
section .commitment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
section .commitment-card:hover .commitment-image img {
  transform: scale(1.1);
}
section .commitment-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}
section .commitment-image .commitment-icon {
  position: absolute;
  top: 8px;
  right: 0;
  left: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand-red) 0%, #A81E24 100%);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(193, 39, 45, 0.3);
  z-index: 2;
  transition: transform 0.5s;
}
section .commitment-card:hover .commitment-icon {
  transform: rotate(12deg);
}
section .commitment-image img.commitment-icon__img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  display: block;
}
section .commitment-icon--auto-white .commitment-icon__img {
  filter: brightness(0) invert(1);
  /* 疑似的に白化 */
}
section .commitment-content {
  position: absolute;
  bottom: 0;
}
section .commitment-card h3 {
  font-size: 18px;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.05em;
  color: #fff;
  margin: auto;
  background: rgba(0, 0, 0, 0.5);
  padding: 0px 14px;
}
section .commitment-divider {
  width: 48px;
  height: 2px;
  background-color: var(--brand-red);
  margin-bottom: 12px;
}
section .commitment-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-sub);
  margin-bottom: 16px;
}
section .commitment-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--brand-red);
  transition: color 0.3s;
}
section .commitment-link:hover {
  color: var(--brand-red-dark);
}
section .commitment-link svg {
  transition: transform 0.3s;
}
section .commitment-link:hover svg {
  transform: translateX(4px);
}

.section-title-wrap {
  position: relative;
  display: inline-block;
  isolation: isolate;
  /* z-indexの安全策 */
}

.ring {
  width: 300px;
}

.ring img {
  top: 100px;
}

/*///////////////////////////////////////////////////

店舗一覧 Section store

///////////////////////////////////////////////////*/
#stores .pref-groups {
  max-width: 960px;
  margin: auto;
  padding: 30px 40px;
  border: solid 1px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
  border-radius: 4px;
}
@media (max-width: 767px) {
  #stores .pref-groups {
    padding: 20px 20px;
  }
}
#stores .pref-groups .pref-group {
  width: 100%;
}
#stores .pref-groups .pref-group h3.pref-title {
  color: #fff;
  padding-bottom: 20px;
  margin-bottom: 5px;
  border-bottom: dashed 1px #6c6c6c;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(18px, 2.5vw, 25px);
}
#stores .pref-groups .pref-group .store_list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
#stores .pref-groups .pref-group .store_list a {
  list-style: none;
  margin: 0;
  padding: 10px;
  width: 50%;
  transition: 0.3s all ease;
  border-radius: 10px;
}
@media (max-width: 640px) {
  #stores .pref-groups .pref-group .store_list a {
    width: 100%;
  }
}
#stores .pref-groups .pref-group .store_list a ul {
  list-style: none;
  margin: 0;
}
#stores .pref-groups .pref-group .store_list a li.store-name h4 {
  color: #c4c4c4;
  transition: 0.3s all ease;
}
#stores .pref-groups .pref-group .store_list a li.store-detail-item {
  display: flex;
  align-items: flex-start;
}
#stores .pref-groups .pref-group .store_list a li.store-detail-item span.info-ico {
  margin-top: 4px;
  color: var(--brand-red);
}
#stores .pref-groups .pref-group .store_list a li.store-detail-item span.info-ico svg {
  display: block;
}
#stores .pref-groups .pref-group .store_list a li.store-detail-item span.store-address {
  font-size: 0.92rem;
  color: #7e7e7e;
  text-decoration: none;
  word-break: break-word;
  transition: 0.3s all ease;
}
#stores .pref-groups .pref-group .store_list a:hover {
  background: #464646;
}
#stores .pref-groups .pref-group .store_list a:hover li.store-name h4 {
  color: #ffffff;
}
#stores .pref-groups .pref-group .store_list a:hover li.store-detail-item span.store-address {
  color: #ffffff;
  text-decoration: underline;
}/*# sourceMappingURL=top.css.map */